@charset "UTF-8";

:root {
    --bg: #050712;
    --surface: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --text: #f8f9ff;
    --muted: rgba(238, 241, 255, 0.66);
    --pink: #ff2f92;
    --violet: #7a5cff;
    --cyan: #35d9ff;
    --green: #7dffbf;
    --yellow: #ffe16b;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(45, 65, 130, 0.14), transparent 42%),
        linear-gradient(180deg, #090c1d 0%, var(--bg) 58%, #02030a 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.coming-soon {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    min-height: 100svh;
    padding: 32px 24px 78px;
    overflow: hidden;
}

.liquid-canvas,
.grid-overlay,
.noise-overlay,
.ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.liquid-canvas {
    z-index: -5;
    width: 100%;
    height: 100%;
}

.grid-overlay {
    z-index: -3;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.noise-overlay {
    z-index: -2;
    opacity: .045;
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.ambient {
    z-index: -4;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .24;
    mix-blend-mode: screen;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.ambient-1 {
    width: 34vw;
    height: 34vw;
    left: -8vw;
    top: 2vh;
    background: #8a4dff;
}

.ambient-2 {
    width: 30vw;
    height: 30vw;
    right: -7vw;
    top: 32vh;
    background: #05c7ff;
    animation-delay: -4s;
}

.ambient-3 {
    width: 28vw;
    height: 28vw;
    left: 34vw;
    bottom: -16vw;
    background: #ff2f92;
    animation-delay: -7s;
}

.hero {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    text-align: center;
    animation: reveal .9s ease both;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 28px;
}

.brand-core {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.19), rgba(255,255,255,.04));
    box-shadow:
        0 18px 60px rgba(28, 40, 100, .45),
        inset 0 1px 0 rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
}

.orbit-one {
    width: 88px;
    height: 48px;
    transform: rotate(28deg);
    animation: orbitOne 8s linear infinite;
}

.orbit-two {
    width: 48px;
    height: 88px;
    transform: rotate(-28deg);
    animation: orbitTwo 10s linear infinite;
}

.eyebrow {
    margin: 0 0 16px;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    line-height: .98;
}

.brand-name {
    display: block;
    font-size: clamp(58px, 10vw, 126px);
    font-weight: 850;
    letter-spacing: -.075em;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #9be8ff 18%,
            #9e87ff 42%,
            #ff58a8 67%,
            #ffe381 86%,
            #ffffff 100%
        );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 10px 45px rgba(101, 117, 255, .18));
    animation: textFlow 7s linear infinite;
}

.coming-text {
    display: block;
    margin-top: 18px;
    color: rgba(255,255,255,.92);
    font-size: clamp(26px, 4.2vw, 48px);
    font-weight: 600;
    letter-spacing: -.04em;
}

.subtitle {
    width: min(680px, 92%);
    margin: 30px auto 0;
    color: var(--muted);
    font-size: clamp(15px, 1.8vw, 20px);
    line-height: 1.7;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dffbf;
    box-shadow: 0 0 0 6px rgba(125,255,191,.09), 0 0 18px rgba(125,255,191,.7);
    animation: pulse 1.8s ease-in-out infinite;
}

.site-footer {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    color: rgba(255,255,255,.33);
    font-size: 12px;
    letter-spacing: .02em;
}

.footer-separator {
    opacity: .5;
}

@keyframes textFlow {
    to { background-position: -220% center; }
}

@keyframes floatGlow {
    0%   { transform: translate3d(-2%, -2%, 0) scale(.94); }
    100% { transform: translate3d(7%, 8%, 0) scale(1.08); }
}

@keyframes orbitOne {
    to { transform: rotate(388deg); }
}

@keyframes orbitTwo {
    to { transform: rotate(-388deg); }
}

@keyframes pulse {
    0%,100% { opacity: .55; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes reveal {
    from { opacity: 0; transform: translateY(16px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
    .coming-soon {
        padding-inline: 18px;
        padding-bottom: 92px;
    }

    .brand-mark {
        width: 78px;
        height: 78px;
        margin-bottom: 22px;
    }

    .brand-core {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 28px;
    }

    .orbit-one {
        width: 76px;
        height: 40px;
    }

    .orbit-two {
        width: 40px;
        height: 76px;
    }

    .eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: .17em;
    }

    .brand-name {
        font-size: clamp(52px, 18vw, 78px);
    }

    .coming-text {
        margin-top: 14px;
        font-size: clamp(26px, 9vw, 36px);
    }

    .subtitle {
        width: 100%;
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .site-footer {
        flex-wrap: wrap;
        row-gap: 4px;
        bottom: 18px;
    }
}

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