/* The Catalyst — Marketing site */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0c0c0e;
    --bg-elevated: #131316;
    --bg-card: #18181c;
    --bg-panel: #111114;
    --border: #27272a;
    --border-light: #3f3f46;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --accent: #4a9eff;
    --accent-hover: #3a8eef;
    --accent-soft: rgba(74, 158, 255, 0.14);
    --accent-glow: rgba(74, 158, 255, 0.1);
    --green: #4ade80;
    --red: #f87171;
    --radius: 14px;
    --radius-sm: 8px;
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-mono: 'Fira Code', ui-monospace, monospace;
    --nav-h: 68px;
    --max-w: 1140px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
}

a { color: inherit; text-decoration: none; }

.container {
    width: min(var(--max-w), calc(100% - 48px));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.container-narrow {
    width: min(720px, calc(100% - 48px));
}

/* ── Nav ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(12, 12, 14, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo {
    height: 32px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.nav-wordmark {
    height: 22px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, border-color 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-dim);
}
.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

/* ── Hero ── */
.hero {
    padding: calc(var(--nav-h) + 64px) 0 88px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-chart-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.28;
    mask-image: linear-gradient(105deg, transparent 20%, rgba(0,0,0,0.7) 55%, transparent 95%);
    -webkit-mask-image: linear-gradient(105deg, transparent 20%, rgba(0,0,0,0.7) 55%, transparent 95%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 60% at 85% 40%, var(--accent-glow), transparent),
        linear-gradient(180deg, transparent 60%, var(--bg) 100%);
    pointer-events: none;
}
.hero-grid {
    display: block;
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 680px;
}
.hero-showcase {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    padding-bottom: 8px;
}
.hero-showcase-inner {
    max-width: min(1280px, 96vw);
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    max-width: 14ch;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    color: var(--text-muted);
    max-width: 52ch;
    margin-bottom: 16px;
    line-height: 1.75;
}
.hero-sub-secondary {
    margin-bottom: 28px;
}
.hero-price-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-dim);
}
.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.hero-panel-head {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.hero-panel-stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.hero-panel-stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-panel-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.flow-arrow {
    color: var(--accent);
    font-family: var(--font-mono);
}

/* ── Sections ── */
.section {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}
.section-features {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.section-education {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(74, 158, 255, 0.04) 45%, var(--bg) 100%);
}
.section-vault {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}
.section-reviews {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-intro {
    max-width: 560px;
    margin-bottom: 64px;
}
.section-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-vault .section-kicker {
    color: var(--text-dim);
}
.section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}
.section-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Feature rows (alternating) ── */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-reverse .feature-copy { order: 2; }
.feature-row-reverse .feature-visual { order: 1; }
.feature-index {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}
.feature-copy h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.feature-copy p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 44ch;
}
.feature-visual {
    position: relative;
}
.feature-visual::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
    opacity: 0.5;
    z-index: 0;
}
.feature-mock {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}
.feature-mock-brief {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mock-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}
.mock-row:last-child { border-bottom: none; }
.mock-head {
    color: var(--text-dim);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mock-pos { color: var(--green); }
.mock-neg { color: var(--red); }
.mock-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.62rem;
    margin-right: 6px;
}

/* ── Vault UI previews (marketing) ── */
.vault-preview {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: #18181c;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}
.vault-preview-stack {
    gap: 10px;
    padding: 10px;
    background: #131316;
}

.vp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.vp-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: lowercase;
}
.vp-toolbar {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.vp-tabs {
    display: flex;
    gap: 2px;
    margin-right: 4px;
}
.vp-tab {
    padding: 4px 10px;
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
}
.vp-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.vp-btn {
    padding: 3px 7px;
    background: #111114;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.62rem;
    white-space: nowrap;
}

.vp-filters {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 12, 14, 0.55);
}
.vp-filter {
    display: block;
    padding: 6px 10px;
    background: #18181c;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-dim);
    font-family: var(--font);
    font-size: 0.68rem;
}

.vp-body {
    overflow: hidden;
}
.vp-body-scroll {
    overflow-x: auto;
}

.vp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}
.vp-table th {
    padding: 7px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    background: #131316;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.vp-table th.sorted {
    color: var(--accent);
    background: #111a24;
}
.vp-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    white-space: nowrap;
}
.vp-table tbody tr:last-child td {
    border-bottom: none;
}
.vp-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.vp-ticker {
    font-weight: 600;
    color: var(--accent) !important;
}
.vp-theme-name {
    color: var(--accent);
    font-weight: 600;
}
.vp-theme-row td:first-child {
    cursor: default;
}
.vp-sub-row td {
    padding-left: 18px;
    background: rgba(74, 158, 255, 0.03);
    font-size: 0.66rem;
}
.vp-sub-row .vp-ticker {
    font-weight: 500;
}

.vp-pos { color: var(--green) !important; font-weight: 600; }
.vp-neg { color: var(--red) !important; font-weight: 600; }
.vp-warn { color: #eab308 !important; }

.vp-col-src,
.vp-src {
    text-align: center;
    width: 28px;
    max-width: 28px;
    padding-left: 4px !important;
    padding-right: 4px !important;
}
.vp-src {
    font-weight: 600;
    font-size: 0.62rem;
    color: var(--text-dim) !important;
}

/* Morning brief stack */
.vp-digest {
    background: #18181c;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.vp-digest-head {
    padding: 10px 12px;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--green);
    border-bottom: 1px solid var(--border);
}
.vp-digest-list {
    margin: 0;
    padding: 10px 12px 12px 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vp-digest-list li {
    font-family: var(--font);
    font-size: 0.68rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.vp-digest-list strong {
    color: var(--text);
    font-weight: 600;
}

.vp-brief {
    background: #18181c;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.vp-brief-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #111114;
    border-bottom: 1px solid var(--border);
}
.vp-brief-title {
    font-family: var(--font);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.vp-brief-time {
    font-family: var(--font);
    font-size: 0.62rem;
    color: var(--text-dim);
}
.vp-brief-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vp-mb-group {
    background: #131316;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.vp-mb-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    padding: 5px 10px;
    background: #111114;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid var(--border);
}
.vp-mb-label span {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.58rem;
}
.vp-mb-large { border-left-color: #4a9eff; }
.vp-mb-small { border-left-color: #f5a623; }
.vp-mb-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
}
.vp-mb-item {
    font-family: var(--font);
    font-size: 0.66rem;
    line-height: 1.4;
    color: var(--text-muted);
    padding: 5px 6px 5px 0;
    border-bottom: 1px solid var(--border);
}
.vp-mb-items .vp-mb-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.vp-recap .vp-recap-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    flex-wrap: wrap;
}
.vp-stat {
    font-family: var(--font);
    font-size: 0.62rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}
.vp-stat-up { background: rgba(74, 222, 128, 0.12); color: var(--green); }
.vp-stat-down { background: rgba(248, 113, 113, 0.12); color: var(--red); }
.vp-stat-sum { background: var(--accent-soft); color: var(--accent); }

/* Database preview */
.vp-db-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 12, 14, 0.55);
    flex-wrap: wrap;
}
.vp-db-count {
    font-family: var(--font);
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-right: auto;
}
.vp-db-table th,
.vp-db-table td {
    padding: 5px 8px;
    font-size: 0.66rem;
}
.vp-grp-end {
    border-right: 2px solid rgba(74, 158, 255, 0.2) !important;
}

@media (max-width: 900px) {
    .vp-mb-items {
        grid-template-columns: 1fr;
    }
    .vp-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Hero Vault dashboard showcase (actual UI capture) ── */
.vault-showcase-shot {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #0c0c0e;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(74, 158, 255, 0.1),
        0 0 120px rgba(74, 158, 255, 0.06);
}
.vault-showcase-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.vault-showcase-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    -webkit-user-drag: none;
    user-select: none;
}

@media (max-width: 640px) {
    .hero-showcase {
        margin-top: 32px;
    }
    .hero-showcase-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .vault-showcase-shot {
        min-width: 960px;
    }
}

/* ── Quote wall ── */
.quote-wall {
    columns: 2;
    column-gap: 24px;
}
.quote {
    break-inside: avoid;
    margin-bottom: 24px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.quote::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.35;
}
.quote p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.quote-lead {
    column-span: all;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 158, 255, 0.06) 100%);
    border-color: rgba(74, 158, 255, 0.2);
}
.quote-lead p {
    font-size: 1.05rem;
    color: var(--text);
}
.quote-by {
    display: block;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    font-style: normal;
}
.reviews-trust {
    margin-top: 8px;
    font-size: 0.88rem;
    color: var(--accent);
    font-weight: 600;
}

/* ── Inline CTA (mid-page) ── */
.cta-inline {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.cta-inline-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-inline-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.cta-inline-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── Pricing split ── */
.pricing-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}
.pricing-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.pricing-copy-lead {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.65;
}
.pricing-checkout {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.plan-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}
.plan-option:hover { border-color: var(--border-light); }
.plan-option.selected,
.plan-option:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.plan-option input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.plan-option-body {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    pointer-events: none;
}
.plan-price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}
.plan-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.plan-monthly {
    flex-basis: 100%;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: -2px;
}
.plan-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.12);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
}
.plan-radio {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    position: relative;
    pointer-events: none;
}
.plan-option.selected .plan-radio,
.plan-option:has(input:checked) .plan-radio {
    border-color: var(--accent);
}
.plan-option.selected .plan-radio::after,
.plan-option:has(input:checked) .plan-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent);
}
.pricing-continue {
    width: 100%;
    padding: 16px;
}
.pricing-continue[aria-disabled="true"] {
    opacity: 0.45;
    pointer-events: none;
}
.pricing-trust {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pricing-trust li {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}
.pricing-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.pricing-benefit-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pricing-benefit-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.pricing-includes {
    list-style: none;
}
.pricing-includes li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.5;
}
.pricing-includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}
.pricing-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 28px;
}
.pricing-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── FAQ ── */
.faq-list { margin-top: 8px; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.2s;
    font-family: var(--font);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    display: none;
    padding-bottom: 22px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA band ── */
.cta-band {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
    position: relative;
    z-index: 1;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.cta-inner p {
    color: var(--text-muted);
}

/* ── Mobile sticky CTA ── */
.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(12, 12, 14, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.mobile-cta-bar.is-visible {
    display: flex;
}
.mobile-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mobile-cta-price {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}
.mobile-cta-note {
    font-size: 0.68rem;
    color: var(--text-dim);
}
.mobile-cta-bar .btn {
    flex-shrink: 0;
    padding: 10px 18px;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Footer ── */
.site-footer {
    padding: 40px 0 32px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-dim);
}
.footer-links a:hover { color: var(--text-muted); }
.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.risk-disclosure {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.risk-disclosure-title {
    margin: 0 0 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.risk-disclosure-text {
    margin: 0;
    max-width: 72ch;
    font-size: 0.72rem;
    line-height: 1.65;
    color: var(--text-dim);
    opacity: 0.9;
}
.risk-disclosure-link {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.risk-disclosure-link:hover {
    color: var(--accent);
}

.legal-section-risk .risk-disclosure {
    padding-top: 0;
    border-top: none;
}
.legal-section-risk .risk-disclosure-text {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 1;
}
.legal-section-risk .risk-disclosure-title {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* ── Legal page ── */
.legal-page-body {
    padding-top: var(--nav-h);
}
.legal-page {
    padding: 56px 0 24px;
    position: relative;
    z-index: 1;
}
.legal-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.legal-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.legal-updated {
    font-size: 0.85rem;
    color: var(--text-dim);
}
.legal-prose {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 48px;
}
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.legal-section p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.legal-section p:last-child {
    margin-bottom: 0;
}

/* ── Mobile ── */
@media (max-width: 900px) {
    .hero-grid {
        gap: 0;
    }
    .hero h1 { max-width: none; }
    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0;
    }
    .feature-row-reverse .feature-copy,
    .feature-row-reverse .feature-visual { order: unset; }
    .feature-copy p { max-width: none; }
    .pricing-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-checkout { position: static; }
    .quote-wall { columns: 1; }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-inline-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    body.has-mobile-cta {
        padding-bottom: 72px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: block; }
    .site-nav.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 16px;
    }
    .nav-logo { height: 28px; }
    .nav-wordmark { height: 18px; }
    .hero { padding-top: calc(var(--nav-h) + 40px); }
    .hero h1 { max-width: none; }
    .section { padding: 72px 0; }
}
