:root {
    color-scheme: dark;
    --ink: #080908;
    --paper: #f1eee8;
    --muted: #b9b4aa;
    --gold: #c9a56d;
    --gold-soft: rgba(201, 165, 109, 0.26);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    background: var(--ink);
}

body {
    color: var(--paper);
    font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.coming-soon {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

.coming-soon__grain {
    position: absolute;
    z-index: 6;
    inset: 0;
    pointer-events: none;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.coming-soon__light {
    position: absolute;
    z-index: 1;
    top: -22vh;
    left: 29%;
    width: 13rem;
    height: 82vh;
    opacity: .52;
    filter: blur(32px);
    transform: rotate(7deg);
    background: linear-gradient(180deg, rgba(217, 181, 119, .48), rgba(167, 119, 59, .08) 55%, transparent);
    animation: light-drift 9s ease-in-out infinite alternate;
}

.coming-soon__header {
    position: absolute;
    z-index: 8;
    top: clamp(2rem, 6vh, 4.75rem);
    right: clamp(1.5rem, 6.5vw, 7rem);
    left: clamp(1.5rem, 6.5vw, 7rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: reveal-down .9s .1s both;
}

.coming-soon__brand {
    color: #e0be8c;
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 300;
    letter-spacing: .48em;
    line-height: 1;
    text-decoration: none;
}

.coming-soon__edition {
    color: rgba(241, 238, 232, .4);
    font-size: .65rem;
    letter-spacing: .32em;
}

.coming-soon__visual {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
}

.coming-soon__visual img {
    position: absolute;
    right: -3%;
    bottom: -1%;
    width: min(73vw, 1180px);
    height: 94%;
    object-fit: cover;
    object-position: 60% center;
    opacity: .96;
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
    animation: athlete-in 1.5s .15s cubic-bezier(.2, .75, .2, 1) both, athlete-float 7s 1.65s ease-in-out infinite alternate;
}

.coming-soon__rings {
    position: absolute;
    top: 17%;
    right: -2%;
    width: min(55vw, 850px);
    aspect-ratio: 1;
    animation: rings-in 1.8s .25s ease-out both, rings-breathe 8s 2s ease-in-out infinite alternate;
}

.coming-soon__rings span {
    position: absolute;
    inset: calc(var(--ring, 0) * 6%);
    border: 1px solid rgba(201, 165, 109, calc(.25 - var(--ring, 0) * .025));
    border-radius: 50%;
}

.coming-soon__rings span:nth-child(1) { --ring: 0; }
.coming-soon__rings span:nth-child(2) { --ring: 1; }
.coming-soon__rings span:nth-child(3) { --ring: 2; }
.coming-soon__rings span:nth-child(4) { --ring: 3; }
.coming-soon__rings span:nth-child(5) { --ring: 4; }

.coming-soon__content {
    position: relative;
    z-index: 7;
    width: min(48rem, 54vw);
    padding-top: clamp(13rem, 30vh, 20rem);
    margin-left: clamp(1.5rem, 6.5vw, 7rem);
}

.coming-soon__content h1 {
    max-width: 11ch;
    margin: 0;
    color: var(--paper);
    font-size: clamp(4.35rem, 7.2vw, 8rem);
    font-weight: 300;
    letter-spacing: -.065em;
    line-height: .88;
}

.coming-soon__content h1 span {
    display: block;
    animation: reveal-up 1s cubic-bezier(.2, .75, .2, 1) both;
}

.coming-soon__content h1 span:nth-child(2) {
    animation-delay: .12s;
}

.coming-soon__lead {
    max-width: 33rem;
    margin: clamp(2rem, 4vh, 3.25rem) 0 0;
    color: #d5b27b;
    font-size: clamp(1.05rem, 1.55vw, 1.45rem);
    font-weight: 300;
    letter-spacing: .015em;
    line-height: 1.55;
    animation: reveal-up .9s .36s both;
}

.coming-soon__follow {
    margin: 1.6rem 0 0;
    color: var(--muted);
    font-size: .95rem;
    letter-spacing: .08em;
    animation: reveal-up .9s .5s both;
}

.coming-soon__footer {
    position: absolute;
    z-index: 8;
    right: clamp(1.5rem, 6.5vw, 7rem);
    bottom: clamp(1.5rem, 4vh, 3rem);
    left: clamp(1.5rem, 6.5vw, 7rem);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    color: rgba(201, 165, 109, .76);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    animation: reveal-up .9s .75s both;
}

.coming-soon__line {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: var(--gold-soft);
}

.coming-soon__line i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 16%;
    background: var(--gold);
    animation: line-travel 5s ease-in-out infinite;
}

@keyframes reveal-up {
    from { opacity: 0; transform: translateY(2rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-down {
    from { opacity: 0; transform: translateY(-1rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes athlete-in {
    from { opacity: 0; transform: translateX(5%) scale(1.025); }
    to { opacity: .96; transform: translateX(0) scale(1); }
}

@keyframes athlete-float {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-.65%, -.45%, 0) scale(1.008); }
}

@keyframes rings-in {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes rings-breathe {
    from { transform: scale(.99) rotate(-1deg); }
    to { transform: scale(1.025) rotate(1deg); }
}

@keyframes light-drift {
    from { transform: translateX(-8%) rotate(7deg); opacity: .36; }
    to { transform: translateX(18%) rotate(10deg); opacity: .58; }
}

@keyframes line-travel {
    0% { transform: translateX(-110%); }
    50%, 100% { transform: translateX(700%); }
}

@media (max-width: 900px) {
    .coming-soon__content {
        width: min(37rem, calc(100vw - 3rem));
        padding-top: 24vh;
    }

    .coming-soon__content h1 {
        font-size: clamp(3.6rem, 12vw, 6.2rem);
    }

    .coming-soon__visual img {
        right: -27%;
        bottom: 0;
        width: 100vw;
        height: 68%;
        opacity: .5;
        object-position: 60% center;
        mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
    }

    .coming-soon__rings {
        top: 33%;
        right: -35%;
        width: 100vw;
        opacity: .7;
    }
}

@media (max-width: 540px) {
    .coming-soon__header {
        top: 2rem;
    }

    .coming-soon__brand {
        font-size: 1.55rem;
    }

    .coming-soon__content {
        padding-top: 20vh;
    }

    .coming-soon__content h1 {
        font-size: clamp(3.5rem, 18vw, 5rem);
        line-height: .9;
    }

    .coming-soon__lead {
        max-width: 25rem;
        font-size: 1rem;
    }

    .coming-soon__visual img {
        right: -52%;
        width: 155vw;
        height: 62%;
        opacity: .45;
    }

    .coming-soon__footer {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .coming-soon__footer > :last-child {
        display: none;
    }
}

@media (max-height: 700px) and (min-width: 700px) {
    .coming-soon__content {
        padding-top: 25vh;
    }

    .coming-soon__content h1 {
        font-size: clamp(3.6rem, 7vw, 5.6rem);
    }

    .coming-soon__lead {
        margin-top: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Resilient hero layer: avoids delayed <img> animation/decode races. */
.coming-soon__visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url("../images/coming-soon/lux-athlete.png") no-repeat right -3vw bottom -1vh / auto 94%;
    opacity: .96;
    animation: athlete-in 1.5s .15s cubic-bezier(.2, .75, .2, 1) both, athlete-float 7s 1.65s ease-in-out infinite alternate;
}
.coming-soon__visual img { display: none; }
.coming-soon__rings { z-index: 1; }
@keyframes athlete-in {
    from { clip-path: inset(0 0 0 100%); transform: translateX(5%) scale(1.025); }
    to { clip-path: inset(0); transform: translateX(0) scale(1); }
}
@media (max-width: 900px) {
    .coming-soon__visual::after {
        opacity: .5;
        background-position: right -34vw bottom;
        background-size: auto 68%;
        mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
    }
}
@media (max-width: 540px) {
    .coming-soon__visual::after {
        opacity: .58;
        background-position: right -45vw bottom;
        background-size: auto 62%;
        mask-image: none;
    }
}