/* =====================================================
   SJV VENTURES
   PREMIUM COMING SOON PAGE
   FINAL STYLE SHEET
===================================================== */


/* =====================================================
   1. ROOT VARIABLES
===================================================== */

:root {
    --black: #050608;
    --black-soft: #0a0c10;

    --blue: #155cff;
    --blue-bright: #286cff;

    --gold: #d6b45b;
    --gold-soft: #b99645;

    --white: #f5f7fa;
    --white-soft: rgba(245, 247, 250, 0.75);

    --muted: #8d949f;

    --line: rgba(255, 255, 255, 0.08);

    --container: 1400px;
}


/* =====================================================
   2. RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: var(--black);

    color: var(--white);

    font-family: "Inter", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =====================================================
   3. BACKGROUND
===================================================== */

.background {
    position: fixed;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(21, 92, 255, 0.09),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(214, 180, 91, 0.025),
            transparent 30%
        ),
        var(--black);
}


/* =====================================================
   4. ARCHITECTURAL GRID
===================================================== */

.grid {
    position: absolute;

    inset: -150px;

    width: calc(100% + 300px);
    height: calc(100% + 300px);

    opacity: 0.30;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    transform:
        perspective(700px)
        rotateX(58deg)
        scale(1.5);

    transform-origin: center bottom;

    animation:
        gridMove
        20s
        linear
        infinite;

    pointer-events: none;
}


@keyframes gridMove {

    0% {
        transform:
            perspective(700px)
            rotateX(58deg)
            scale(1.5)
            translateY(0);
    }

    100% {
        transform:
            perspective(700px)
            rotateX(58deg)
            scale(1.5)
            translateY(80px);
    }
}


/* =====================================================
   5. BLUE LIGHT GLOW
===================================================== */

.glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: var(--blue);

    filter: blur(160px);

    opacity: 0.07;

    pointer-events: none;

    animation:
        glowPulse
        6s
        ease-in-out
        infinite;
}


.glow-one {
    top: 15%;
    left: 35%;
}


.glow-two {
    right: -220px;
    bottom: -220px;

    width: 600px;
    height: 600px;

    opacity: 0.04;

    animation-delay: 2s;
}


@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.055;
        transform: scale(1);
    }

    50% {
        opacity: 0.095;
        transform: scale(1.12);
    }
}


/* =====================================================
   6. HEADER
===================================================== */

.header {
    position: relative;

    z-index: 10;

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    height: 100px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   7. BRAND / LOGO
===================================================== */

.brand {
    display: flex;

    align-items: center;

    min-width: 120px;

    height: 55px;
}


.logo {
    display: block;

    width: 145px;

    max-width: 145px;

    max-height: 55px;

    height: auto;

    object-fit: contain;

    object-position: left center;
}


/* =====================================================
   8. LOGO FALLBACK
===================================================== */

.logo-fallback {
    display: none;

    line-height: 1;
}


.logo-fallback span {
    display: block;

    color: var(--white);

    font-size: 26px;

    font-weight: 800;

    letter-spacing: -1px;
}


.logo-fallback small {
    display: block;

    margin-top: 5px;

    color: var(--gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 4px;
}


/* =====================================================
   9. HEADER STATUS
===================================================== */

.header-status {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    white-space: nowrap;
}


.status-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 0 4px rgba(21, 92, 255, 0.12),
        0 0 18px rgba(21, 92, 255, 0.8);

    animation:
        statusPulse
        2s
        ease-in-out
        infinite;
}


@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.85);
    }
}


/* =====================================================
   10. MAIN HERO
===================================================== */

.hero {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    height:
        calc(100vh - 168px);

    min-height: 500px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* =====================================================
   11. HERO CONTENT
===================================================== */

.hero-content {
    width: 900px;

    max-width: 100%;

    padding: 20px 0 60px;
}


/* =====================================================
   12. EYEBROW
===================================================== */

.eyebrow {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 30px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 4px;

    line-height: 1;
}


.eyebrow span {
    display: block;

    width: 28px;
    height: 1px;

    flex: 0 0 28px;

    background: var(--gold);
}


/* =====================================================
   13. MAIN HEADING
===================================================== */

h1 {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    color: var(--white);

    font-size:
        clamp(
            52px,
            8vw,
            112px
        );

    line-height: 0.90;

    font-weight: 800;

    letter-spacing: -0.07em;

    text-transform: uppercase;

    overflow-wrap: normal;

    word-break: normal;
}


h1 span {
    display: block;

    position: relative;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(
            255,
            255,
            255,
            0.65
        );
}


/* =====================================================
   14. BLUE UNDERLINE
===================================================== */

h1 span::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -10px;

    width: 90px;
    height: 3px;

    transform: translateX(-50%);

    background: var(--blue);

    box-shadow:
        0 0 25px
        rgba(
            21,
            92,
            255,
            0.8
        );
}


/* =====================================================
   15. DESCRIPTION
===================================================== */

.description {
    width: 100%;

    max-width: 560px;

    margin:
        40px auto 0;

    color: var(--muted);

    font-size: 15px;

    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 0;

}


/* =====================================================
   16. COMING SOON
===================================================== */

.coming-soon {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 38px;

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;

    line-height: 1;

    white-space: nowrap;
}


.line {
    width: 45px;
    height: 1px;

    flex: 0 0 45px;

    background: var(--gold);

    opacity: 0.7;
}


/* =====================================================
   17. CTA BUTTON
===================================================== */

.cta {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    margin-top: 38px;

    padding:
        17px
        23px
        17px
        25px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cta .arrow {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    background: var(--blue);

    color: var(--white);

    font-size: 15px;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.cta:hover {
    background:
        rgba(
            21,
            92,
            255,
            0.08
        );

    border-color:
        rgba(
            21,
            92,
            255,
            0.7
        );

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 50px
        rgba(
            21,
            92,
            255,
            0.12
        );
}


.cta:hover .arrow {
    transform:
        translate(
            3px,
            -3px
        );

    background:
        var(--blue-bright);
}


/* =====================================================
   18. SIDE INFORMATION
===================================================== */

.side-info {
    position: absolute;

    top: 50%;

    display: flex;

    flex-direction: column;

    gap: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.28
        );

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    line-height: 1;

    pointer-events: none;
}


.side-info span:first-child {
    color: var(--gold);

    font-size: 9px;
}


.side-left {
    left: 0;

    transform:
        translateY(-50%)
        rotate(-90deg);

    transform-origin:
        left center;
}


.side-right {
    right: 0;

    transform:
        translateY(-50%)
        rotate(90deg);

    transform-origin:
        right center;
}


/* =====================================================
   19. FOOTER
===================================================== */

.footer {
    position: fixed;

    left: 0;
    bottom: 0;

    z-index: 20;

    width: 100%;

    min-height: 68px;

    padding:
        20px
        40px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 25px;

    border-top:
        1px solid
        var(--line);

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =====================================================
   20. FOOTER LEFT
===================================================== */

.footer-left {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 8px;

    min-width: 0;

    white-space: nowrap;

    overflow: hidden;
}


.footer-mark {
    flex: 0 0 auto;

    color: var(--white);

    font-size: 12px;

    font-weight: 800;
}


/* =====================================================
   21. FOOTER CENTER
===================================================== */

.footer-center {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    white-space: nowrap;
}


.footer-center i {
    color: var(--gold);

    font-style: normal;
}


/* =====================================================
   22. FOOTER RIGHT
===================================================== */

.footer-right {
    min-width: 0;

    justify-self: end;

    text-align: right;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =====================================================
   23. PAGE REVEAL
===================================================== */

.header,
.hero-content,
.footer {
    animation:
        pageReveal
        1s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        )
        both;
}


.hero-content {
    animation-delay: 0.1s;
}


.footer {
    animation-delay: 0.2s;
}


@keyframes pageReveal {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =====================================================
   24. TABLET
===================================================== */

@media (max-width: 900px) {

    .header {
        width:
            calc(
                100% - 50px
            );

        height: 80px;
    }


    .hero {
        width:
            calc(
                100% - 50px
            );

        height:
            calc(
                100vh - 148px
            );

        min-height: 500px;
    }


    .side-info {
        display: none;
    }


    .footer {
        min-height: 64px;

        padding:
            18px
            25px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 12px;
    }


    .footer-center {
        display: none;
    }


    .footer-left {
        justify-self: start;
    }


    .footer-right {
        justify-self: end;
    }
}


/* =====================================================
   25. MOBILE
===================================================== */

@media (max-width: 600px) {

    body {
        overflow: hidden;
    }


    /* HEADER */

    .header {
        width:
            calc(
                100% - 35px
            );

        height: 72px;
    }


    .logo {
        width: 115px;

        max-width: 115px;

        max-height: 45px;
    }


    .header-status {
        gap: 8px;

        font-size: 7px;

        letter-spacing: 1.5px;
    }


    .status-dot {
        width: 6px;
        height: 6px;

        flex-basis: 6px;
    }


    /* HERO */

    .hero {
        width:
            calc(
                100% - 35px
            );

        height:
            calc(
                100vh - 140px
            );

        min-height: 0;
    }


    .hero-content {
        width: 100%;

        padding:
            20px
            0
            65px;
    }


    /* EYEBROW */

    .eyebrow {
        gap: 10px;

        margin-bottom: 24px;

        font-size: 8px;

        letter-spacing: 3px;
    }


    .eyebrow span {
        width: 22px;

        flex-basis: 22px;
    }


    /* HEADING */

    h1 {
        font-size:
            clamp(
                44px,
                13.5vw,
                70px
            );

        line-height: 0.92;

        letter-spacing: -0.065em;
    }


    h1 span {
        -webkit-text-stroke:
            0.8px
            rgba(
                255,
                255,
                255,
                0.65
            );
    }


    h1 span::after {
        width: 55px;

        height: 2px;

        bottom: -7px;
    }


    /* DESCRIPTION */

    .description {
        max-width: 330px;

        margin-top: 30px;

        font-size: 12px;

        line-height: 1.7;
    }


    /* COMING SOON */

    .coming-soon {
        gap: 10px;

        margin-top: 28px;

        font-size: 7px;

        letter-spacing: 3px;
    }


    .line {
        width: 25px;

        flex-basis: 25px;
    }


    /* CTA */

    .cta {
        gap: 16px;

        margin-top: 28px;

        padding:
            13px
            15px
            13px
            17px;

        font-size: 7.5px;

        letter-spacing: 1.3px;
    }


    .cta .arrow {
        width: 23px;
        height: 23px;

        flex-basis: 23px;

        font-size: 12px;
    }


    /* FOOTER */

    .footer {
        min-height: 58px;

        padding:
            16px
            14px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 8px;

        font-size: 6px;

        letter-spacing: 1px;
    }


    .footer-left {
        gap: 5px;

        overflow: visible;
    }


    .footer-mark {
        font-size: 9px;
    }


    .footer-right {
        font-size: 5.5px;

        letter-spacing: 0.8px;

        overflow: visible;
    }


    /* GRID */

    .grid {
        background-size:
            50px
            50px;
    }


    /* GLOW */

    .glow-one {
        width: 350px;
        height: 350px;

        filter: blur(120px);
    }


    .glow-two {
        width: 400px;
        height: 400px;

        filter: blur(130px);
    }
}


/* =====================================================
   26. EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    /* HEADER */

    .header {
        width:
            calc(
                100% - 28px
            );

        height: 65px;
    }


    .logo {
        width: 100px;

        max-width: 100px;

        max-height: 40px;
    }


    .header-status {
        font-size: 6.5px;

        letter-spacing: 1.2px;
    }


    /* HERO */

    .hero {
        width:
            calc(
                100% - 28px
            );

        height:
            calc(
                100vh - 123px
            );
    }


    .hero-content {
        padding-bottom: 55px;
    }


    /* HEADING */

    h1 {
        font-size:
            clamp(
                39px,
                13vw,
                58px
            );

        line-height: 0.94;
    }


    /* DESCRIPTION */

    .description {
        max-width: 290px;

        margin-top: 27px;

        font-size: 11px;

        line-height: 1.65;
    }


    /* COMING SOON */

    .coming-soon {
        gap: 8px;

        margin-top: 25px;

        font-size: 6px;

        letter-spacing: 2.5px;
    }


    .line {
        width: 20px;

        flex-basis: 20px;
    }


    /* CTA */

    .cta {
        gap: 12px;

        margin-top: 25px;

        padding:
            12px
            13px;

        font-size: 7px;

        letter-spacing: 1px;
    }


    .cta .arrow {
        width: 21px;
        height: 21px;

        flex-basis: 21px;

        font-size: 11px;
    }


    /* FOOTER */

    .footer {
        min-height: 55px;

        padding:
            14px
            10px;

        gap: 8px;

        font-size: 5.5px;

        letter-spacing: 0.7px;
    }


    .footer-left {
        gap: 4px;
    }


    .footer-mark {
        font-size: 8px;
    }


    .footer-right {
        font-size: 5px;

        letter-spacing: 0.4px;
    }
}


/* =====================================================
   27. VERY SMALL SCREENS
===================================================== */

@media (max-width: 340px) {

    .header {
        width:
            calc(
                100% - 22px
            );
    }


    .logo {
        width: 90px;
    }


    .header-status {
        font-size: 6px;

        letter-spacing: 1px;
    }


    .hero {
        width:
            calc(
                100% - 22px
            );
    }


    h1 {
        font-size: 37px;
    }


    .description {
        max-width: 260px;

        font-size: 10px;
    }


    .coming-soon {
        font-size: 5.5px;

        letter-spacing: 2px;
    }


    .cta {
        font-size: 6.5px;

        padding:
            11px
            12px;
    }


    .footer {
        padding:
            13px
            8px;

        font-size: 5px;

        letter-spacing: 0.5px;
    }


    .footer-right {
        font-size: 4.5px;
    }
}


/* =====================================================
   28. LANDSCAPE MOBILE
===================================================== */

@media (max-height: 600px) and (max-width: 900px) {

    .header {
        height: 60px;
    }


    .logo {
        width: 95px;

        max-height: 38px;
    }


    .hero {
        height:
            calc(
                100vh - 118px
            );
    }


    .hero-content {
        padding:
            10px
            0
            45px;
    }


    .eyebrow {
        margin-bottom: 15px;

        font-size: 7px;
    }


    h1 {
        font-size:
            clamp(
                36px,
                9vw,
                58px
            );
    }


    .description {
        margin-top: 20px;

        font-size: 10px;

        line-height: 1.5;
    }


    .coming-soon {
        margin-top: 18px;
    }


    .cta {
        margin-top: 18px;

        padding:
            10px
            14px;
    }


    .footer {
        min-height: 48px;

        padding:
            12px
            15px;
    }
}


/* =====================================================
   29. ACCESSIBILITY
===================================================== */

.cta:focus-visible {

    outline:
        2px solid
        rgba(
            21,
            92,
            255,
            0.9
        );

    outline-offset: 4px;
}


/* =====================================================
   30. REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }
}
