:root {
    --background: #080411;
    --background-soft: #10071c;

    --text-primary: #ffffff;
    --text-secondary: #bdb2ca;
    --text-muted: #7d7189;

    --purple: #a56dff;
    --purple-light: #d4b5ff;
    --pink: #e878c5;
    --blue: #799cff;

    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(212, 181, 255, 0.25);

    --page-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-width: 320px;
    min-height: 100%;
    overflow: hidden;
    color: var(--text-primary);
    background: var(--background);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: #ffffff;
    background: rgba(165, 109, 255, 0.65);
}

/* BACKGROUND */

#stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(112, 60, 180, 0.15),
            transparent 42%
        ),
        var(--background);
}

.background-effects {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    filter: blur(110px);
    animation:
        glowFloat 14s ease-in-out infinite alternate;
}

.glow-one {
    top: -220px;
    left: -160px;
    width: 600px;
    height: 600px;
    background: #7134d5;
}

.glow-two {
    right: -230px;
    bottom: -180px;
    width: 650px;
    height: 650px;
    background: #bd438c;
    animation-delay: -5s;
}

.glow-three {
    top: 35%;
    left: 45%;
    width: 400px;
    height: 400px;
    background: #3d57ba;
    opacity: 0.12;
    animation-delay: -9s;
}

.background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 75px 75px;
    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 80%
        );
}

/* PAGE */

.coming-soon-page {
    width: min(
        calc(100% - 40px),
        var(--page-width)
    );
    min-height: 100vh;
    margin: 0 auto;
    padding: 25px 0;
    display: grid;
    grid-template-rows:
        auto
        1fr
        auto;
}

/* BRAND */

.brand {
    position: relative;
    z-index: 10;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-symbol {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 13px;
    color: var(--purple-light);
    background:
        linear-gradient(
            135deg,
            rgba(165, 109, 255, 0.24),
            rgba(232, 120, 197, 0.1)
        );
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
    font-size: 0.85rem;
    font-weight: 800;
}

.brand-name {
    font-size: 0.95rem;
    font-weight: 720;
    letter-spacing: -0.025em;
}

/* MAIN CONTENT */

.coming-soon-content {
    display: grid;
    place-items: center;
    padding: 60px 0;
    text-align: center;
}

.floating-wrapper {
    position: relative;
    z-index: 3;
    width: min(100%, 1000px);
    display: flex;
    align-items: center;
    flex-direction: column;
    animation:
        mainFloat 5.5s ease-in-out infinite;
}

.status-badge {
    margin-bottom: 28px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--purple-light);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow:
        0 0 17px rgba(232, 120, 197, 0.7);
}

.status-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(232, 120, 197, 0.35);
    border-radius: 50%;
    animation:
        statusPulse 2s ease-out infinite;
}

h1 {
    font-size: clamp(
        5.2rem,
        16vw,
        12rem
    );
    font-weight: 760;
    line-height: 0.78;
    letter-spacing: -0.09em;
}

h1 span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            105deg,
            #ad79ff,
            #d788ed,
            #ef7ebd
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.construction-label {
    margin-top: 36px;
    color: var(--purple-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.description {
    max-width: 580px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: clamp(
        0.95rem,
        1.7vw,
        1.12rem
    );
    line-height: 1.7;
}

.home-button {
    min-height: 54px;
    margin-top: 34px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border: 1px solid var(--border-strong);
    border-radius: 17px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(165, 109, 255, 0.23),
            rgba(232, 120, 197, 0.15)
        );
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.24);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(18px);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.home-button strong {
    color: var(--purple-light);
    font-size: 1rem;
    transition: transform 0.22s ease;
}

.home-button:hover {
    border-color: rgba(212, 181, 255, 0.48);
    background:
        linear-gradient(
            135deg,
            rgba(165, 109, 255, 0.32),
            rgba(232, 120, 197, 0.22)
        );
    transform: translateY(-4px);
}

.home-button:hover strong {
    transform: translateX(5px);
}

/* ORBITS */

.orbit {
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: -1;
    border: 1px solid rgba(212, 181, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.orbit::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple-light);
    box-shadow:
        0 0 25px rgba(212, 181, 255, 0.8);
}

.orbit-one {
    width: 670px;
    height: 670px;
    transform:
        translate(-50%, -50%);
    animation:
        orbitRotate 30s linear infinite;
}

.orbit-two {
    width: 430px;
    height: 430px;
    transform:
        translate(-50%, -50%);
    animation:
        orbitRotate 21s linear infinite reverse;
}

/* FOOTER */

.page-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--text-muted);
    font-size: 0.66rem;
}

.footer-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
}

/* ANIMATIONS */

@keyframes mainFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowFloat {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(50px, -35px, 0)
            scale(1.12);
    }
}

@keyframes orbitRotate {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes statusPulse {
    from {
        opacity: 0.8;
        transform: scale(0.7);
    }

    to {
        opacity: 0;
        transform: scale(1.8);
    }
}

/* MOBILE */

@media (max-width: 650px) {
    body {
        overflow-y: auto;
    }

    .coming-soon-page {
        width: calc(100% - 28px);
        min-height: 100svh;
        padding: 17px 0;
    }

    .brand-symbol {
        width: 37px;
        height: 37px;
    }

    .coming-soon-content {
        padding: 70px 0;
    }

    h1 {
        font-size: clamp(
            4.5rem,
            25vw,
            7rem
        );
    }

    .description {
        max-width: 360px;
        font-size: 0.93rem;
    }

    .home-button {
        width: 100%;
        max-width: 310px;
        justify-content: space-between;
    }

    .orbit-one {
        width: 480px;
        height: 480px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .page-footer {
        flex-wrap: wrap;
        padding-bottom: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}