:root {
    --navy: #071a3d;
    --navy-soft: #152b50;
    --blue: #146bff;
    --blue-light: #70a9ff;
    --text-muted: #66738a;
    --surface: rgba(255, 255, 255, 0.82);
    --border: rgba(7, 26, 61, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #f7faff;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--navy);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 sans-serif;
    background:
        radial-gradient(circle at 8% 10%, rgba(20, 107, 255, 0.12), transparent 30rem),
        radial-gradient(circle at 95% 88%, rgba(112, 169, 255, 0.15), transparent 28rem),
        linear-gradient(145deg, #ffffff 0%, #f5f9ff 55%, #edf4ff 100%);
    overflow-x: hidden;
}

.page-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    padding: 42px 24px 28px;
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
}

.glow {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.glow-one {
    width: 340px;
    height: 340px;
    top: -130px;
    right: -90px;
    background: rgba(20, 107, 255, 0.13);
}

.glow-two {
    width: 270px;
    height: 270px;
    left: -100px;
    bottom: -80px;
    background: rgba(112, 169, 255, 0.16);
}

.coming-soon-card {
    width: min(840px, 100%);
    padding: clamp(38px, 7vw, 76px);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow:
        0 30px 80px rgba(7, 26, 61, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.brand-logo {
    display: block;
    width: min(330px, 72vw);
    height: auto;
    margin: 0 auto 28px;
}

.status-pill {
    width: fit-content;
    margin: 0 auto 24px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    background: rgba(20, 107, 255, 0.08);
    border: 1px solid rgba(20, 107, 255, 0.14);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(20, 107, 255, 0.10);
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.intro {
    max-width: 620px;
    margin: 25px auto 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.8;
}

.feature-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px 14px;
    color: var(--navy-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.separator {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--blue-light);
}

footer {
    margin-top: 30px;
    color: #7c879a;
    font-size: 0.82rem;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.82);
        opacity: 0.68;
    }
}

@media (max-width: 620px) {
    .page-shell {
        padding: 20px 14px;
    }

    .coming-soon-card {
        padding: 42px 22px;
        border-radius: 25px;
    }

    .brand-logo {
        width: min(260px, 76vw);
        margin-bottom: 24px;
    }

    .feature-row {
        flex-direction: column;
        gap: 9px;
    }

    .separator {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .status-dot {
        animation: none;
    }
}
