:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #eef3f8;
    --line: #d8e0ea;
    --text: #122033;
    --muted: #627086;
    --brand: #123f70;
    --brand-strong: #0d3157;
    --brand-soft: #dce9f7;
    --danger-soft: #fdecec;
    --shadow: 0 18px 50px rgba(9, 22, 39, 0.08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(18, 63, 112, 0.06), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-frame {
    min-height: 100vh;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(248, 250, 252, 0.88);
    border-bottom: 1px solid rgba(18, 63, 112, 0.08);
}

.topbar__inner,
.footer__inner,
.page {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand:hover {
    text-decoration: none;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand__text {
    display: flex;
    flex-direction: column;
}

.brand__text strong {
    color: var(--text);
    font-size: 0.98rem;
}

.brand__text small {
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--brand);
    background: var(--brand-soft);
    text-decoration: none;
}

.topbar__cta {
    white-space: nowrap;
}

.page {
    padding: 40px 0 72px;
}

.hero-simple,
.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
    gap: 24px;
    align-items: start;
}

.hero-simple {
    padding: 12px 0 20px;
}

.kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 63, 112, 0.08);
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kicker--dark {
    background: var(--brand-soft);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--text);
    letter-spacing: -0.03em;
}

h1 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: 1.04;
    max-width: 12ch;
}

.lead,
.page-header p,
.card p,
.feature-item p,
.download-card p,
.footer p,
.legal-card p,
.legal-list li {
    color: var(--muted);
    line-height: 1.75;
}

.lead {
    margin: 18px 0 0;
    max-width: 60ch;
    font-size: 1.06rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.button--primary {
    background: var(--brand);
    color: #fff;
}

.button--primary:hover {
    background: var(--brand-strong);
}

.button--secondary {
    background: transparent;
    color: var(--brand);
    border-color: var(--line);
}

.button--wide {
    width: 100%;
}

.status-panel,
.card,
.download-card,
.footer,
.page-header {
    background: var(--surface);
    border: 1px solid rgba(18, 63, 112, 0.08);
    box-shadow: var(--shadow);
}

.status-panel,
.card,
.download-card,
.page-header,
.legal-card {
    border-radius: var(--radius-lg);
}

.status-panel {
    padding: 24px;
}

.status-panel h2 {
    font-size: 1.2rem;
}

.status-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 0;
}

.status-list div {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.status-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.status-list dt {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-list dd {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.section-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.download-card,
.legal-card,
.page-header {
    padding: 26px;
}

.card__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card h2,
.product-strip h2,
.section-split h2,
.page-header h1,
.legal-card h2 {
    margin-bottom: 12px;
}

.product-strip {
    margin-top: 28px;
    padding: 34px 0 6px;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.feature-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid rgba(18, 63, 112, 0.06);
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.section-split {
    margin-top: 30px;
    padding-top: 6px;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.download-card__meta span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 800;
}

.download-card__meta strong {
    font-size: 1.2rem;
    color: var(--brand);
}

.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page--legal .page-header h1 {
    max-width: 20ch;
}

.legal-sections {
    display: grid;
    gap: 18px;
}

.legal-list {
    margin: 0;
    padding-left: 18px;
}

.footer {
    margin-top: 10px;
    border-top: 1px solid rgba(18, 63, 112, 0.08);
    background: #fff;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
    padding: 26px 0 34px;
}

.footer__links,
.footer__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 960px) {
    .topbar__inner,
    .hero-simple,
    .section-split,
    .section-grid,
    .section-grid--two,
    .feature-columns,
    .footer__inner {
        grid-template-columns: 1fr;
    }

    .topbar__inner {
        display: grid;
        justify-items: start;
    }

    .main-nav {
        width: 100%;
    }

    .topbar__cta {
        width: 100%;
    }

    .page {
        padding-top: 28px;
    }

    h1,
    .page-header h1 {
        max-width: none;
    }
}
