:root {
    --bg: #071521;
    --bg-soft: #0c1f30;
    --surface: rgba(10, 26, 40, 0.82);
    --surface-strong: rgba(14, 33, 48, 0.92);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f2f6fb;
    --muted: #9db0c3;
    --accent: #ff7a59;
    --accent-soft: #ffb347;
    --mint: #7ee8d8;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 89, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(126, 232, 216, 0.12), transparent 24%),
        linear-gradient(180deg, #07131f 0%, #091a29 48%, #06121c 100%);
    color: var(--text);
    overflow-x: hidden;
}

.page-shell {
    position: relative;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.ambient {
    position: fixed;
    inset: auto;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.ambient-one {
    top: 80px;
    right: 8%;
    width: 240px;
    height: 240px;
    background: rgba(255, 122, 89, 0.22);
}

.ambient-two {
    left: 6%;
    bottom: 80px;
    width: 220px;
    height: 220px;
    background: rgba(126, 232, 216, 0.18);
}

.glass-card {
    position: relative;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(14, 31, 46, 0.94), rgba(9, 24, 37, 0.82));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    border-radius: 30px;
}

.topbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 1.3rem;
    margin-bottom: 1.3rem;
    min-height: 96px;
}

.brand-lockup {
    display: flex;
    align-items: center;
}

.brand-mark {
    display: grid;
    place-items: center;
    background: rgba(6, 17, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark-wide {
    width: clamp(164px, 15vw, 200px);
    min-height: 68px;
    padding: 0.7rem 1rem;
    border-radius: 28px;
}

.brand-mark-wide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 153px;
}

.eyebrow {
    display: inline-block;
    color: var(--mint);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.preview-panel h2,
.feature-card h3 {
    font-family: 'Sora', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
}

.hero-copy,
.preview-card {
    padding: 2rem;
}

.hero-copy h1 {
    margin: 0.6rem 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.02;
}

.lead,
.preview-panel p,
.feature-card p,
.footer-row p,
.secondary-copy,
.status-copy {
    color: var(--muted);
}

.lead {
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 62ch;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}

.status-pill {
    border-radius: 999px;
    padding: 0.65rem 1rem;
    background: rgba(126, 232, 216, 0.08);
    border: 1px solid rgba(126, 232, 216, 0.26);
    color: var(--mint);
    font-weight: 700;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 1rem 1.45rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #08131f;
    font-weight: 800;
    box-shadow: 0 20px 44px rgba(255, 122, 89, 0.28);
}

.preview-card {
    display: grid;
    gap: 1rem;
}

.preview-badge {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: max-content;
    min-height: 0;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--mint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    line-height: 1;
    white-space: nowrap;
}

.preview-panel {
    padding: 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-panel h2 {
    margin: 0.6rem 0 0.9rem;
    font-size: 1.8rem;
}

.preview-metrics {
    display: grid;
    gap: 0.85rem;
}

.preview-metrics article {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-metrics strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--mint);
    font-size: 1.05rem;
}

.preview-metrics span {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.feature-card {
    padding: 1.35rem;
}

.feature-card h3 {
    margin: 0.75rem 0 0.75rem;
    font-size: 1.08rem;
}

.footer-row {
    margin-top: 1.2rem;
    padding: 1.2rem 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

.footer-row p,
.footer-row small {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100%, calc(100% - 1rem));
        padding-top: 1rem;
        padding-bottom: 1.2rem;
    }

    .topbar,
    .hero-copy,
    .preview-card,
    .feature-card,
    .footer-row {
        border-radius: 22px;
    }

    .topbar,
    .hero-copy,
    .preview-card {
        padding: 1.2rem;
    }

    .topbar {
        min-height: 84px;
    }

    .brand-mark-wide {
        width: min(184px, 100%);
        min-height: 58px;
        padding: 0.55rem 0.85rem;
        border-radius: 24px;
    }

    .brand-mark-wide img {
        width: 100%;
        max-width: 138px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-row,
    .status-row,
    .cta-row {
        align-items: start;
        flex-direction: column;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }
}

