:root {
    color-scheme: light;
    --navy-950: #061a2b;
    --navy-900: #0b2a43;
    --navy-800: #103b5d;
    --orange-500: #f28a00;
    --orange-400: #ff9d1c;
    --ink: #12283a;
    --muted: #5d7180;
    --surface: rgba(255, 255, 255, 0.94);
    --border: rgba(255, 255, 255, 0.56);
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 13% 18%, rgba(242, 138, 0, 0.28), transparent 25rem),
        radial-gradient(circle at 88% 83%, rgba(39, 135, 181, 0.32), transparent 30rem),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

body::before,
body::after {
    position: fixed;
    z-index: -1;
    width: 22rem;
    height: 22rem;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

body::before {
    top: -10rem;
    right: -6rem;
}

body::after {
    bottom: -13rem;
    left: -5rem;
    width: 30rem;
    height: 30rem;
}

.page {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
    padding: 2rem;
}

.card {
    width: min(100%, 54rem);
    padding: clamp(2rem, 6vw, 4.75rem);
    overflow: hidden;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2rem;
    box-shadow: 0 2rem 5rem rgba(0, 10, 22, 0.34);
    backdrop-filter: blur(16px);
}

.brand img {
    display: block;
    width: min(100%, 20rem);
    height: auto;
    margin: 0 auto;
}

.status {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    margin-top: 2.5rem;
    padding: 0.55rem 0.9rem;
    color: var(--navy-800);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #eef4f7;
    border: 1px solid #dce8ee;
    border-radius: 999px;
}

.status__dot {
    width: 0.6rem;
    height: 0.6rem;
    background: var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 0 0 0.3rem rgba(242, 138, 0, 0.14);
}

h1 {
    max-width: 44rem;
    margin: 1.6rem auto 0;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.lead {
    max-width: 39rem;
    margin: 1.35rem auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    line-height: 1.7;
}

.progress {
    width: min(100%, 28rem);
    height: 0.45rem;
    margin: 2.25rem auto 0;
    overflow: hidden;
    background: #dbe6eb;
    border-radius: 999px;
}

.progress span {
    display: block;
    width: 68%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    border-radius: inherit;
}

.soon {
    margin: 1.1rem 0 0;
    color: var(--navy-800);
}

footer {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    color: #70818d;
    font-size: 0.85rem;
}

.separator {
    width: 0.25rem;
    height: 0.25rem;
    background: var(--orange-500);
    border-radius: 50%;
}

@media (max-width: 40rem) {
    .page {
        padding: 1rem;
    }

    .card {
        padding: 2.25rem 1.4rem;
        border-radius: 1.4rem;
    }

    .brand img {
        width: min(100%, 15rem);
    }

    .status {
        margin-top: 2rem;
    }

    footer {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 2.5rem;
    }

    .separator {
        display: none;
    }
}

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