﻿/*
:root {
    --bg0: #05070c;
    --bg1: #070b13;
    --card: #0b1220cc;
    --card2: #0b1220f2;
    --stroke: #1b2a44;
    --stroke2: #223454;
    --text: #e8edf7;
    --muted: #a7b2c8;
    --muted2: #7f8aa3;
    --accent: #6d6bff;
    --accent2: #8a5cff;
    --green: #20c997;
    --amber: #f3b74e;
    --blue: #6ea8fe;
    --shadow: 0 18px 50px rgba(0,0,0,.55);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}
*/

/* 1) body no longer owns the background */
html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* 2) Fixed background layer */
.bg-fixed {
    background: var(--bg-fixed);
}
.hero-title,
.section-head h2,
.gov-main h2,
.gov-main h3,
.focus-title,
.compare-title,
.policy-title {
    color: var(--text);
}
.hero-card {
    color: var(--text);
}
/* Fill the hero gap with a decorative SVG */
.hero-gap-svg {
    margin-top: 18px;
    max-width: 680px;
    opacity: .92;
}

.ai-ribbon {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.08);
    overflow: hidden;
}
.ai-ledger {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.08);
}

.ledger-labels text {
    fill: rgba(234,240,255,.78);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.2px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.chip {
    fill: rgba(16,26,51,.20);
    stroke: rgba(124,92,255,.24);
}

.chipText {
    fill: rgba(234,240,255,.70);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.row {
    fill: rgba(16,26,51,.14);
    stroke: rgba(255,255,255,.10);
}

.hash {
    fill: rgba(255,255,255,.06);
    stroke: rgba(255,255,255,.10);
}

.ledger-line {
    stroke: url(#lg);
    stroke-width: 2.6;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(34,211,238,.16));
}

.check {
    stroke: rgba(52,211,153,.92);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 0 14px rgba(52,211,153,.22));
}

.caption {
    fill: rgba(184,195,230,.78);
    font-size: 13px;
    font-weight: 600;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* Animation */
.draw {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawLine 1.0s ease forwards;
}

.d1 {
    animation-delay: .12s;
}

.d2 {
    animation-delay: .36s;
}

.d3 {
    animation-delay: .52s;
}

.d4 {
    animation-delay: .78s;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .draw {
        animation: none;
        stroke-dashoffset: 0;
    }
}


.container {
    width: min(1120px, calc(100% - 56px));
    margin: 0 auto;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 78%, transparent), color-mix(in srgb, var(--bg) 30%, transparent));
    border-bottom: 1px solid var(--card-border);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.contact-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 18px;
}

.contact-hero {
    padding: 52px 0 18px;
    background: var(--hero-bg);
}

.contact-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(124,92,255,.35);
    background: rgba(124,92,255,.12);
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-hero h1 {
    margin: 0;
    font-size: 40px;
    color: var(--text);
}

.contact-sub {
    margin-top: 12px;
    color: var(--muted);
}

.contact-section {
    padding: 18px 0 60px;
}

.contact-card {
    padding: 22px;
}

.contact-section .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-section .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-section label {
    font-size: 12px;
    color: var(--muted2);
    font-weight: 650;
}

.contact-section .input,
.contact-section .textarea {
    border-radius: 16px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text);
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}

    .contact-section .input:focus,
    .contact-section .textarea:focus {
        border-color: rgba(124,92,255,.55);
        box-shadow: 0 0 0 4px rgba(124,92,255,.12);
    }

.contact-section .btn-wide {
    width: 100%;
    height: 48px;
    margin-top: 8px;
}

.contact-section .validation {
    color: var(--danger);
    font-size: 12px;
}

/* Notices (reuse your existing notice styles if you have them; keeping scoped here) */
.contact-section .notice {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,77,109,.25);
    background: rgba(255,77,109,.08);
    margin-bottom: 14px;
}

.contact-section .notice-ok {
    border-color: rgba(78,229,154,.25);
    background: rgba(78,229,154,.08);
}

.contact-alt {
    margin-top: 12px;
    font-size: 13px;
}

    .contact-alt a {
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px dashed rgba(124,92,255,.45);
    }

        .contact-alt a:hover {
            border-bottom-color: rgba(124,92,255,.95);
        }

/* Responsive */
@media (max-width: 800px) {
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
    }
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .2px;
    user-select: none;
}
/* Topbar nav */
.topbar-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    opacity: .88;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
}

    .nav-link:hover {
        background: rgba(255,255,255,.06);
        color: var(--text);
        opacity: 1;
    }

    .nav-link.active {
        background: rgba(124,92,255,.18);
        color: #fff;
    }

.brand__mark {
    font-weight: 800;
    font-size: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(109,107,255,.35);
    border-radius: 12px;
    background: rgba(109,107,255,.2);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* remove underline */
    color: inherit; /* keep original text color */
}

    .brand:visited,
    .brand:active {
        color: inherit;
    }

    .brand:hover {
        opacity: .9; /* subtle hover without looking like a link */
        cursor: pointer;
    }

.brand__name {
    font-weight: 700;
    font-size: 14px;
    opacity: .92;
}

.brand--small .brand__mark {
    padding: 6px 9px;
    border-radius: 10px;
}

.brand--small .brand__name {
    font-size: 13px;
    opacity: .86;
}

.topbar__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Layout */
.grid {
    display: grid;
    gap: 22px;
}

.hero {
    grid-template-columns: 1.35fr .95fr;
    margin-top: 32px;
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.grid.compare {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .grid.three {
        grid-template-columns: 1fr;
    }

    .grid.compare {
        grid-template-columns: 1fr;
    }
}

/* Card */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 2%;
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(600px 220px at 20% 0%, rgba(109,107,255,.08), transparent 60%), radial-gradient(500px 240px at 90% 10%, rgba(32,201,151,.05), transparent 60%);
        opacity: .85;
        pointer-events: none;
    }

    .card > * {
        position: relative;
    }

.hero-card {
    padding: 34px 34px 28px;
    min-height: 290px;
}

.focus-card {
    padding: 22px;
}

.hero-title {
    margin: 0 0 10px 0;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -.8px;
}

.hero-subtitle {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-microtrust {
    margin-top: 18px;
    color: var(--muted2);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sep {
    opacity: .55;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(109,107,255,.9);
    box-shadow: 0 0 0 4px rgba(109,107,255,.14);
}

.dot2 {
    background: rgba(32,201,151,.9);
    box-shadow: 0 0 0 4px rgba(32,201,151,.12);
}

.dot3 {
    background: rgba(243,183,78,.9);
    box-shadow: 0 0 0 4px rgba(243,183,78,.12);
}

.focus-title {
    margin: 10px 0 8px;
    font-size: 18px;
    letter-spacing: -.2px;
}

.focus-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-card {
    border: 1px solid rgba(34,52,84,.55);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(7,10,18,.45);
}

.mini-text {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Pills */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .2px;
    border: 1px solid rgba(34,52,84,.55);
    background: rgba(7,10,18,.45);
    color: var(--muted);
}

.pill-muted {
    opacity: .9;
}

.pill-green {
    color: rgba(32,201,151,.95);
    border-color: rgba(32,201,151,.25);
    background: rgba(32,201,151,.08);
}

.pill-amber {
    color: rgba(243,183,78,.95);
    border-color: rgba(243,183,78,.25);
    background: rgba(243,183,78,.08);
}

.pill-blue {
    color: rgba(110,168,254,.95);
    border-color: rgba(110,168,254,.25);
    background: rgba(110,168,254,.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(34,52,84,.65);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
    user-select: none;
}

    .btn:hover {
        transform: translateY(-1px);
        border-color: rgba(109,107,255,.45);
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
    }

    .btn:active {
        transform: translateY(0px);
    }

.btn-primary {
    background: linear-gradient(135deg, rgba(109,107,255,.95), rgba(138,92,255,.92));
    border-color: rgba(109,107,255,.55);
}

    .btn-primary:hover {
        border-color: rgba(138,92,255,.65);
    }

.btn-secondary {
    background: rgba(9,14,26,.55);
}

.btn-ghost {
    background: rgba(9,14,26,.35);
    padding: 10px 14px;
    border-radius: 14px;
}
/* ============================
   Kicker (section pre-title)
   ============================ */

.kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 8px;
}
/* Sections */
.section {
    margin-top: 28px;
    padding-top: 10px;
}

.section-head {
    margin: 10px 0 14px;
}

    .section-head h2 {
        margin: 0 0 8px 0;
        font-size: 22px;
        letter-spacing: -.2px;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        max-width: 92ch;
    }
/* ===== Policy Stack: Make the flow obvious ===== */
.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.policy-title {
    font-size: 24px; /* ↑ bigger */
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--text);
}
.policy-stack {
    position: relative;
    display: grid;
    gap: 20px; /* more breathing room between cards */
    margin-top: 22px;
    padding-left: 64px; /* room for the vertical rail */
}

    /* Vertical rail that runs through the whole stack */
    .policy-stack::before {
        content: "";
        position: absolute;
        left: 30px; /* rail position */
        top: 16px;
        bottom: 16px;
        width: 2px;
        background: linear-gradient( 180deg, rgba(124,92,255,.55), rgba(34,211,238,.45), rgba(124,92,255,.25) );
        box-shadow: 0 0 0 6px rgba(124,92,255,.06), 0 0 22px rgba(124,92,255,.18);
        border-radius: 999px;
    }

/* Cards align with the rail */
.policy-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(16,26,51,.38);
    padding: 22px 22px;
}

    /* Node (dot) that "plugs" each card into the rail */
    .policy-card::before {
        content: "";
        position: absolute;
        left: -46px; /* aligns with rail at 30px */
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,1));
        box-shadow: 0 0 0 6px rgba(124,92,255,.12), 0 0 22px rgba(34,211,238,.18);
    }

/* Connector area between cards */
.policy-connector {
    position: relative;
    height: 28px; /* space between cards */
}

    /* Draw the connector line + arrowhead using pseudo-elements */
    .policy-connector::before {
        content: "";
        position: absolute;
        left: 30px; /* same as rail */
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(124,92,255,.35));
        border-radius: 999px;
    }

    .policy-connector::after {
        content: "";
        position: absolute;
        left: 30px;
        bottom: 2px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 10px solid rgba(34,211,238,.9); /* arrow color */
        filter: drop-shadow(0 0 12px rgba(34,211,238,.30));
    }

/* Make the badges feel more "step-like" */
.policy-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .6px;
    background: rgba(124,92,255,.12);
    border: 1px solid rgba(124,92,255,.35);
    color: var(--text);
    box-shadow: 0 0 0 4px rgba(124,92,255,.10), 0 0 22px rgba(124,92,255,.18);
}
.policy-desc {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}


/* Optional: emphasize the middle card subtly */
.policy-card:nth-of-type(3),
.policy-card:nth-of-type(5) {
    /* nth-of-type counts all elements; if you only have policy-card elements,
     you can remove this. Otherwise skip this rule. */
}

/* ===== Optional: subtle "follow-the-flow" pulse ===== */
@media (prefers-reduced-motion: no-preference) {
    .policy-stack::before {
        animation: railPulse 2.2s ease-in-out infinite;
    }

    .policy-connector::after {
        animation: arrowPulse 1.8s ease-in-out infinite;
    }
}

@keyframes railPulse {
    0%,100% {
        opacity: .85;
    }

    50% {
        opacity: 1;
    }
}

@keyframes arrowPulse {
    0%,100% {
        transform: translateX(-50%) translateY(0);
        opacity: .9;
    }

    50% {
        transform: translateX(-50%) translateY(2px);
        opacity: 1;
    }
}

/* Mobile: reduce left padding so rail doesn't feel cramped */
@media (max-width: 720px) {
    .policy-stack {
        padding-left: 52px;
    }

        .policy-stack::before {
            left: 24px;
        }

    .policy-card::before {
        left: -40px;
    }

    .policy-connector::before {
        left: 24px;
    }

    .policy-connector::after {
        left: 24px;
    }
}


/* Info cards */
.info-card {
    padding: 18px 18px 16px;
}

    .info-card h3 {
        margin: 8px 0 6px;
        font-size: 16px;
    }

    .info-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
        font-size: 14px;
    }

.icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34,52,84,.55);
    background: rgba(7,10,18,.45);
    color: rgba(110,168,254,.95);
    font-weight: 800;
}

/* Evidence strip */
.evidence-strip {
    margin-top: 16px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 980px) {
    .evidence-strip {
        grid-template-columns: 1fr;
    }
}

.evidence-item {
    border: 1px solid rgba(34,52,84,.50);
    background: rgba(7,10,18,.35);
    border-radius: 14px;
    padding: 10px 12px;
}

    .evidence-item .k {
        display: block;
        color: var(--muted2);
        font-size: 12px;
        margin-bottom: 3px;
    }

    .evidence-item .v {
        display: block;
        font-size: 13px;
    }

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* Compare */
.compare-card {
    padding: 18px 18px 16px;
}

.compare-card--accent {
    border-color: rgba(109,107,255,.55);
    background: linear-gradient(180deg, rgba(11,18,32,.86), rgba(9,14,26,.96));
}

.compare-title {
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: -.2px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

    .list li {
        margin: 6px 0;
    }

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.fineprint {
    margin-top: 12px;
    color: rgba(167,178,200,.65);
    font-size: 12px;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin: 34px 0 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(34,52,84,.35);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-note {
    color: rgba(167,178,200,.72);
    font-size: 13px;
    margin-top: 10px;
    max-width: 70ch;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(167,178,200,.78);
        text-decoration: none;
        font-size: 13px;
        border-bottom: 1px solid transparent;
    }

        .footer-links a:hover {
            color: var(--text);
            border-bottom-color: rgba(109,107,255,.55);
        }
/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 16px;
    align-items: stretch;
}
    .pricing-grid > .card {
        overflow: visible; /* prevent clipping at card level */
    }
@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.price-band {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(34,52,84,.45);
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 22px;
}

.band-list {
    margin: 6px 0 0;
    padding-left: 18px;
}

    .band-list li {
        margin: 4px 0;
    }


/* Pricing cards should never clip CTAs */
.price-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 0;
    height: auto; /* let content define height */
    overflow: hidden; /* keep glow clipped, prevents overlap */
}
.price-top {
    flex: 0 0 auto;
}

.price-list {
    flex: 1 1 auto;
}

.price-band {
    flex: 0 0 auto;
}

.price-cta {
    flex: 0 0 auto;
}

.price-foot {
    flex: 0 0 auto;
}

.price-card--featured {
    border-color: rgba(110,168,254,.55);
    box-shadow: 0 22px 60px rgba(0,0,0,.62);
}

.price-top {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(34,52,84,.35);
    margin-bottom: 12px;
}

.price-name {
    margin-top: 10px;
    font-weight: 900;
    letter-spacing: -.2px;
    font-size: 18px;
}

.price-amount {
    margin-top: 8px;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: -.6px;
}

.price-currency {
    font-size: 18px;
    opacity: .9;
    margin-right: 2px;
    vertical-align: top;
}

.price-period {
    font-size: 13px;
    font-weight: 700;
    color: rgba(167,178,200,.70);
    margin-left: 6px;
}

.price-note {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    max-width: 52ch;
}

.price-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

    .price-list{ 
  flex: 1 1 auto;
}

/* CTA area sticks to bottom */
.price-cta {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(34,52,84,.25); /* or var(--card-border) if you prefer */
}
    .price-cta .btn {
        width: 100%;
        box-sizing: border-box;
    }

.price-foot {
    margin-top: 12px;
}

.w-100 {
    width: 100%;
}

.pricing-disclaimer {
    margin-top: 12px;
    color: rgba(167,178,200,.55);
    font-size: 12px;
    line-height: 1.6;
}
/* ===== Animated Hero SVG (Attest flow) ===== */

.hero-card {
    position: relative;
    overflow: hidden; /* keeps the illustration clean */
}

.hero-illustration {
    margin-top: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

/* Keep it subtle — the copy stays dominant */
.attest-svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* Base styling */
.svg-box {
    stroke: rgba(124,92,255,.22);
    fill: rgba(16,26,51,.18);
}

.svg-evidence {
    stroke: rgba(34,211,238,.22);
    fill: rgba(16,26,51,.16);
}

.svg-hash {
    stroke: rgba(255,255,255,.10);
    fill: rgba(255,255,255,.06);
}

.svg-labels text {
    fill: rgba(234,240,255,.70);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.svg-line {
    stroke: rgba(34,211,238,.85);
    stroke-width: 2.25;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(34,211,238,.18));
}

.svg-arrow {
    stroke: rgba(34,211,238,.90);
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 0 10px rgba(34,211,238,.20));
}

.svg-check {
    stroke: rgba(52,211,153,.92);
    stroke-width: 3.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 0 12px rgba(52,211,153,.22));
}

.svg-dot {
    fill: rgba(124,92,255,.95);
    opacity: 0;
}

/* Draw animation */
.draw {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawLine 1.0s ease forwards;
}

/* Stagger timing (sequence reads AUP->DLP->AIP->Evidence->Check) */
.d1 {
    animation-delay: .10s;
}

.d2 {
    animation-delay: .22s;
}

.d3 {
    animation-delay: .34s;
}

.d4 {
    animation-delay: .46s;
}

.d5 {
    animation-delay: .60s;
}

.d6 {
    animation-delay: .78s;
}

.d7 {
    animation-delay: .90s;
}

.d8 {
    animation-delay: 1.05s;
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
}
.price-value {
    font-weight: 950;
    letter-spacing: -0.8px;
}
/* ============================
   Pricing band: aligned + standout
   ============================ */

.price-band {
    margin-top: 14px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    background: var(--card-bg-soft);
}

.price-band-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 10px;
}

/* Row grid: left label + right price aligned */
.band-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.band-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: baseline;
    padding: 6px 8px;
    border-radius: 12px;
}

    .band-row:hover {
        background: rgba(124,92,255,.06);
    }

.band-left {
    color: var(--muted);
    font-size: 13px;
}

.band-right {
    font-weight: 950;
    font-size: 14px;
    letter-spacing: -.2px;
    /* subtle standout */
    color: var(--text);
}

/* Optional: make prices pop with a tiny gradient */
.band-right {
    background: linear-gradient(135deg, rgba(109,107,255,.98), rgba(138,92,255,.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pop dots after each node is "established" */
.pop {
    animation: popDot .55s ease forwards;
}

.p1 {
    animation-delay: .22s;
}

.p2 {
    animation-delay: .46s;
}

.p3 {
    animation-delay: .70s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popDot {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .draw {
        animation: none;
        stroke-dashoffset: 0;
    }

    .pop {
        animation: none;
        opacity: 1;
    }
}
/* ===== Governance Gap Section Layout ===== */
.gov-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 26px;
    align-items: start;
    margin-top: 18px;
}

.gov-main h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.4px;
}

.gov-main h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: rgba(234,240,255,.92);
}

.gov-main p {
    margin: 0 0 12px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
}

.gov-main .lede {
    font-size: 17px;
    color: rgba(184,195,230,.95);
}

.bullets {
    margin: 8px 0 14px 18px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
}

    .bullets li {
        margin: 6px 0;
    }

.micro-callout {
    margin: 12px 0 6px;
    padding: 12px 14px;
    border-left: 3px solid rgba(124,92,255,.75);
    border-radius: 12px;
    background: rgba(124,92,255,.06);
    color: rgba(234,240,255,.86);
}

/* ===== Side quotes ===== */
.gov-aside {
    position: sticky;
    top: 90px; /* stays visible as they read */
    display: grid;
    gap: 14px;
}

.side-quote {
    position: relative;
    padding: 14px 14px 14px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    overflow: hidden;
}

    .side-quote::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(500px 220px at 0% 0%, rgba(124,92,255,.16), transparent 60%);
        pointer-events: none;
    }

.side-quote--alt::before {
    background: radial-gradient(500px 220px at 0% 0%, rgba(34,211,238,.14), transparent 60%);
}

.quote-mark {
    font-size: 26px;
    font-weight: 900;
    color: rgba(234,240,255,.65);
    line-height: 1;
}

.quote-text {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -0.2px;
    color: rgba(234,240,255,.92);
    line-height: 1.45;
}

/* ===== Mini diagram ===== */
.mini-diagram {
    margin-top: 6px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(0,0,0,.10);
}

.mini-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(184,195,230,.9);
    margin-bottom: 10px;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-pill {
    width: 44px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    color: rgba(234,240,255,.95);
    border: 1px solid rgba(124,92,255,.32);
    background: rgba(124,92,255,.10);
}

.mini-line {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(34,211,238,.75), rgba(124,92,255,.55));
    border-radius: 999px;
    position: relative;
}

    .mini-line::after {
        content: "";
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 7px solid rgba(34,211,238,.8);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

.mini-caption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(184,195,230,.88);
}

.mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mini-badge {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    font-size: 12px;
    color: rgba(184,195,230,.92);
}

/* Mobile: stack and remove sticky */
@media (max-width: 980px) {
    .gov-grid {
        grid-template-columns: 1fr;
    }

    .gov-aside {
        position: static;
        top: auto;
    }
}
/* ===== AI page (scoped) ===== */
.ai-page {
    padding: 42px 0 80px;
}

    .ai-page .content {
        max-width: 1120px;
    }

    .ai-page .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 22px;
        align-items: start;
        margin-top: 18px;
    }

@media (max-width: 980px) {
    .ai-page .hero-grid {
        grid-template-columns: 1fr;
    }
}

.ai-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(184,195,230,.95);
    font-size: 13px;
}

    .ai-page .eyebrow .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(34,211,238,.90);
        box-shadow: 0 0 0 6px rgba(34,211,238,.12);
    }

.ai-page .title {
    margin: 14px 0 10px;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -1px;
    line-height: 1.04;
}

.ai-page .lede {
    margin: 0;
    color: rgba(184,195,230,.95);
    font-size: 18px;
    line-height: 1.7;
    max-width: 78ch;
}

.ai-page .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.ai-page .microtrust {
    margin-top: 12px;
    color: rgba(184,195,230,.78);
    font-size: 13px;
}

    .ai-page .microtrust .sep {
        opacity: .45;
        padding: 0 8px;
    }

.ai-page .fineprint {
    margin-top: 12px;
    color: rgba(184,195,230,.70);
    font-size: 13px;
}

.ai-page .rule {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 28px 0;
}

/* Scoped typography (replaces global h2/h3/p/ul/li) */
.ai-page h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.ai-page h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: rgba(234,240,255,.92);
}

.ai-page p {
    margin: 0 0 14px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
    font-size: 17px;
}

.ai-page ul {
    margin: 8px 0 14px 18px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
    font-size: 17px;
}

.ai-page li {
    margin: 6px 0;
}

/* Right rail: lead form */
.ai-page .aside {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(0,0,0,.10);
    padding: 16px;
}

.ai-page .aside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

/* IMPORTANT: you already have .pill globally; this version matches the AI design without breaking others */
.ai-page .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: rgba(184,195,230,.92);
    font-size: 12px;
    font-weight: 700;
}

.ai-page .aside-title {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: rgba(234,240,255,.94);
}

.ai-page .aside-sub {
    margin: 0 0 12px;
    font-size: 14px;
    color: rgba(184,195,230,.86);
    line-height: 1.55;
}

.ai-page .form {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.ai-page .field {
    display: grid;
    gap: 6px;
}

.ai-page label {
    font-size: 13px;
    color: rgba(184,195,230,.90);
    font-weight: 650;
}

.ai-page input,
.ai-page select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(16,26,51,.55);
    color: rgba(234,240,255,.92);
    outline: none;
}

    .ai-page input::placeholder {
        color: rgba(184,195,230,.55);
    }

    .ai-page input:focus,
    .ai-page select:focus {
        border-color: rgba(34,211,238,.45);
        box-shadow: 0 0 0 4px rgba(34,211,238,.12);
    }

.ai-page .hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ai-page .form-note {
    margin: 0;
    font-size: 12px;
    color: rgba(184,195,230,.75);
}

.ai-page .status {
    min-height: 18px;
    font-size: 13px;
    color: rgba(184,195,230,.86);
}

/* Side quotes */
.ai-page .side-quote {
    margin-top: 14px;
    border-left: 3px solid rgba(124,92,255,.75);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(124,92,255,.06);
    color: rgba(234,240,255,.90);
    font-weight: 750;
    letter-spacing: -0.2px;
    line-height: 1.5;
}

    .ai-page .side-quote.alt {
        border-left-color: rgba(34,211,238,.75);
        background: rgba(34,211,238,.06);
    }

    .ai-page .side-quote small {
        display: block;
        margin-top: 8px;
        font-size: 13px;
        font-weight: 550;
        color: rgba(184,195,230,.80);
    }

/* CTA band */
.ai-page .cta-band {
    margin-top: 26px;
    padding: 18px 0 0;
}
/* ============================
   AI PAGE (scoped, theme-safe)
   ============================ */

.ai-page {
    padding: 42px 0 80px;
}

    .ai-page .content {
        max-width: 1120px;
    }

    .ai-page .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 22px;
        align-items: start;
        margin-top: 18px;
    }

@media (max-width: 980px) {
    .ai-page .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Eyebrow chip */
.ai-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: var(--card-bg-soft);
    color: var(--muted);
    font-size: 13px;
}

    .ai-page .eyebrow .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(34,211,238,.90);
        box-shadow: 0 0 0 6px rgba(34,211,238,.12);
    }

.ai-page .title {
    margin: 14px 0 10px;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -1px;
    line-height: 1.04;
    color: var(--text);
}

.ai-page .lede {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 78ch;
}

.ai-page .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.ai-page .microtrust {
    margin-top: 12px;
    color: var(--muted2);
    font-size: 13px;
}

    .ai-page .microtrust .sep {
        opacity: .45;
        padding: 0 8px;
    }

.ai-page .fineprint {
    margin-top: 12px;
    color: var(--muted2);
    font-size: 13px;
}

.ai-page .rule {
    height: 1px;
    background: var(--card-border);
    opacity: .55;
    margin: 28px 0;
}

/* Scoped typography */
.ai-page h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.4px;
    line-height: 1.2;
    color: var(--text);
}

.ai-page h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: var(--text);
}

.ai-page p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
}

.ai-page ul {
    margin: 8px 0 14px 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
}

.ai-page li {
    margin: 6px 0;
}

/* Replacements for removed inline styles */
.ai-page .ai-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.ai-page .ai-steps {
    margin: 8px 0 0 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.ai-page .ai-lede-sm {
    font-size: 17px;
}

/* Right rail */
.ai-page .aside {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: var(--card-bg-soft);
    padding: 16px;
}

.ai-page .aside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

/* Keep AI pill aligned to theme */
.ai-page .pill {
    border: 1px solid var(--card-border);
    background: var(--card-bg-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.ai-page .aside-title {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.ai-page .aside-sub {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.ai-page .form {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.ai-page .field {
    display: grid;
    gap: 6px;
}

.ai-page label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 650;
}

.ai-page input,
.ai-page select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text);
    outline: none;
}

    .ai-page input::placeholder {
        color: color-mix(in srgb, var(--muted) 70%, transparent);
    }

    .ai-page input:focus,
    .ai-page select:focus {
        border-color: rgba(34,211,238,.45);
        box-shadow: 0 0 0 4px rgba(34,211,238,.12);
    }

.ai-page .hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ai-page .form-note {
    margin: 0;
    font-size: 12px;
    color: var(--muted2);
}

.ai-page .status {
    min-height: 18px;
    font-size: 13px;
    color: var(--muted);
}

/* Side quotes */
.ai-page .side-quote {
    margin-top: 14px;
    border-left: 3px solid rgba(124,92,255,.55);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(124,92,255,.08);
    color: var(--text);
    font-weight: 750;
    letter-spacing: -0.2px;
    line-height: 1.5;
}

    .ai-page .side-quote small {
        display: block;
        margin-top: 8px;
        font-size: 13px;
        font-weight: 550;
        color: var(--muted);
    }

    .ai-page .side-quote.alt {
        border-left-color: rgba(34,211,238,.55);
        background: rgba(34,211,238,.08);
    }
/* ============================
WHY PAGE (scoped, no inline)
============================ */

.why-page {
    padding: 42px 0 80px;
}

.why-content {
    max-width: 880px;
}

/* Eyebrow chip */
.why-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: var(--card-bg-soft);
    color: var(--muted);
    font-size: 13px;
}

    .why-page .eyebrow .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(34,211,238,.90);
        box-shadow: 0 0 0 6px rgba(34,211,238,.12);
    }

.why-page .page-title {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -1px;
    color: var(--text);
}

.why-page .lede {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 78ch;
}

.why-page .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.why-page .fineprint {
    margin-top: 12px;
    color: var(--muted2);
    font-size: 13px;
}

/* Section rhythm */
.why-page .rule {
    height: 1px;
    background: var(--card-border);
    opacity: .55;
    margin: 28px 0;
}

.why-page h2 {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin: 0 0 14px;
    color: var(--text);
}

.why-page p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.why-page ul {
    margin: 0 0 14px 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.why-page li {
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.7;
}

/* Callout */
.why-page .callout {
    border-left: 3px solid rgba(124,92,255,.65);
    padding: 14px 16px;
    margin: 16px 0 18px;
    background: rgba(124,92,255,.08);
    border-radius: 12px;
}

    .why-page .callout strong {
        color: var(--text);
    }

.why-page .quote {
    margin: 0;
    font-weight: 750;
    font-size: 18px;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.5;
}

    .why-page .quote small {
        display: block;
        margin-top: 8px;
        font-weight: 550;
        font-size: 14px;
        color: var(--muted);
    }

/* Comparison table */
.why-page .table-wrap {
    margin-top: 10px;
    overflow-x: auto;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: var(--card-bg-soft);
}

.why-page table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.why-page th,
.why-page td {
    padding: 14px 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--card-border) 70%, transparent);
    vertical-align: top;
}

.why-page th {
    text-align: left;
    font-size: 13px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--muted2);
    background: color-mix(in srgb, var(--card-bg-soft) 80%, transparent);
}

.why-page td {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.why-page tr:last-child td {
    border-bottom: none;
}

/* Bottom CTA */
.why-page .bottom-cta {
    margin-top: 34px;
    padding: 18px 0 0;
}
/* ===== AI Ledger SVG: themeable primitives ===== */

.ledger-panel {
    fill: var(--ai-ledger-panel, rgba(0,0,0,.10));
    stroke: var(--ai-ledger-stroke, rgba(255,255,255,.10));
}

.ledger-rail {
    stroke: var(--ai-ledger-rail, rgba(255,255,255,.10));
}

.ledger-dot.d1 {
    fill: rgba(124,92,255,.95);
}

.ledger-dot.d2 {
    fill: rgba(34,211,238,.90);
}

.ledger-dot.d3 {
    fill: rgba(52,211,153,.85);
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 24px);
    }

    .topbar__inner {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 0;
    }

    .topbar-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 2px;
    }

    .topbar__actions {
        margin-left: auto;
        gap: 8px;
    }

    .hero-card {
        padding: 20px 16px 16px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle,
    .lead {
        font-size: 15px;
    }

    .card {
        padding: 16px;
    }

    .price-cta .btn {
        width: 100%;
    }
}


@media (max-width: 860px) {
    .why-page {
        padding: 32px 0 70px;
    }
}

/* CTA band */
.ai-page .cta-band {
    margin-top: 26px;
    padding: 18px 0 0;
}


/* ============================
   LIGHT THEME OVERRIDES (Public)
   ============================ */
html[data-theme="light"] .topbar {
    background: rgba(246,247,251,.82);
    border-bottom: 1px solid rgba(215,220,232,.90);
}

html[data-theme="light"] .nav-link {
    color: rgba(11,18,32,.82);
}

    html[data-theme="light"] .nav-link:hover {
        background: rgba(124,92,255,.08);
        color: rgba(11,18,32,1);
    }

    html[data-theme="light"] .nav-link.active {
        background: rgba(124,92,255,.14);
        color: rgba(11,18,32,1);
    }

/* Background layers */
html[data-theme="light"] .bg-fixed {
    background: var(--bg-fixed);
}

/* Main cards */
html[data-theme="light"] .card {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(215,220,232,.95);
    box-shadow: 0 18px 50px rgba(13,18,32,.10);
}

    html[data-theme="light"] .card::before {
        opacity: .55; /* keep glow, reduce haze */
    }

/* Nested cards (cards within cards) */
html[data-theme="light"] .mini-card,
html[data-theme="light"] .evidence-item,
html[data-theme="light"] .ai-page .aside,
html[data-theme="light"] .policy-card,
html[data-theme="light"] .side-quote,
html[data-theme="light"] .mini-diagram {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(215,220,232,.95);
}

/* Typography */
html[data-theme="light"] .hero-title,
html[data-theme="light"] .focus-title,
html[data-theme="light"] .section-head h2,
html[data-theme="light"] .gov-main h2,
html[data-theme="light"] .gov-main h3,
html[data-theme="light"] .policy-title,
html[data-theme="light"] .compare-title,
html[data-theme="light"] .quote-text {
    color: rgba(11,18,32,1);
}

html[data-theme="light"] .hero-subtitle,
html[data-theme="light"] .focus-subtitle,
html[data-theme="light"] .mini-text,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .gov-main p,
html[data-theme="light"] .bullets,
html[data-theme="light"] .policy-desc,
html[data-theme="light"] .list,
html[data-theme="light"] .footer-note,
html[data-theme="light"] .pricing-disclaimer,
html[data-theme="light"] .fineprint {
    color: rgba(75,85,107,.95);
}

/* Pills */
html[data-theme="light"] .pill {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(215,220,232,.95);
    color: rgba(75,85,107,.95);
}

html[data-theme="light"] .pill-green {
    background: rgba(15,143,94,.10);
    border-color: rgba(15,143,94,.25);
    color: rgba(15,143,94,1);
}

html[data-theme="light"] .pill-amber {
    background: rgba(243,183,78,.18);
    border-color: rgba(243,183,78,.30);
    color: rgba(128,86,0,1);
}

html[data-theme="light"] .pill-blue {
    background: rgba(110,168,254,.16);
    border-color: rgba(110,168,254,.30);
    color: rgba(35,86,170,1);
}

/* Buttons (keep primary as-is, improve secondary/ghost) */
html[data-theme="light"] .btn {
    border-color: rgba(215,220,232,.95);
}

html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .btn-ghost {
    background: rgba(255,255,255,.75);
    color: rgba(11,18,32,.92);
}

/* Policy rail + connectors */
html[data-theme="light"] .policy-stack::before {
    box-shadow: 0 0 0 6px rgba(124,92,255,.08), 0 0 22px rgba(124,92,255,.14);
}

html[data-theme="light"] .policy-connector::before {
    background: linear-gradient(180deg, rgba(124,92,255,.18), rgba(34,211,238,.22));
}

html[data-theme="light"] .policy-connector::after {
    border-top-color: rgba(34,211,238,.85);
}

/* Evidence strip */
html[data-theme="light"] .evidence-strip {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(215,220,232,.95);
}
/* ===== Hero SVG: Light theme palette ===== */
html[data-theme="light"] .svg-labels text {
    fill: rgba(11,18,32,.70);
}

html[data-theme="light"] .svg-box {
    stroke: rgba(124,92,255,.25);
    fill: rgba(124,92,255,.08);
}

html[data-theme="light"] .svg-evidence {
    stroke: rgba(34,211,238,.25);
    fill: rgba(34,211,238,.06);
}

html[data-theme="light"] .svg-hash {
    stroke: rgba(11,18,32,.12);
    fill: rgba(11,18,32,.06);
}

html[data-theme="light"] .svg-line {
    stroke: rgba(34,211,238,.80);
    filter: drop-shadow(0 0 8px rgba(34,211,238,.12));
}

html[data-theme="light"] .svg-arrow {
    stroke: rgba(34,211,238,.85);
    filter: drop-shadow(0 0 10px rgba(34,211,238,.12));
}

html[data-theme="light"] .svg-check {
    stroke: rgba(15,143,94,.92);
    filter: drop-shadow(0 0 12px rgba(15,143,94,.14));
}

html[data-theme="light"] .svg-dot {
    fill: rgba(124,92,255,.95);
    opacity: 0;
}
html[data-theme="light"] .hero-illustration {
    border: 1px solid rgba(215,220,232,.95);
    background: rgba(255,255,255,.85);
}
/* ============================
   Mini diagram: LIGHT MODE FIX
   ============================ */
html[data-theme="light"] .mini-pill {
    color: rgba(11,18,32,.92);
    border-color: rgba(124,92,255,.22);
    background: rgba(124,92,255,.10);
}

html[data-theme="light"] .mini-line {
    background: linear-gradient(90deg, rgba(34,211,238,.55), rgba(124,92,255,.45));
}
html[data-theme="light"] .micro-callout {
    .micro-callout {
        margin: 12px 0 6px;
        padding: 12px 14px;
        border-left: 3px solid rgba(124,92,255,.75);
        border-radius: 12px;
        background: rgba(124,92,255,.10);
        color: rgba(11,18,32,.92);
    }
}
/* ===== AI Ledger SVG: LIGHT MODE ===== */
html[data-theme="light"] {
    --ai-ledger-panel: rgba(255,255,255,.70);
    --ai-ledger-stroke: rgba(215,220,232,.95);
    --ai-ledger-rail: rgba(11,18,32,.12);
}

    /* Labels & caption: increase contrast */
    html[data-theme="light"] .ledger-labels text {
        fill: rgba(11,18,32,.70);
    }

    html[data-theme="light"] .caption {
        fill: rgba(75,85,107,.85);
    }

    /* Chips & rows: brighten */
    html[data-theme="light"] .chip {
        fill: rgba(124,92,255,.10);
        stroke: rgba(124,92,255,.22);
    }

    html[data-theme="light"] .chipText {
        fill: rgba(11,18,32,.75);
    }

    html[data-theme="light"] .row {
        fill: rgba(11,18,32,.05);
        stroke: rgba(11,18,32,.12);
    }

    html[data-theme="light"] .hash {
        fill: rgba(11,18,32,.06);
        stroke: rgba(11,18,32,.10);
    }

    /* Line glow toned for light */
    html[data-theme="light"] .ledger-line {
        filter: drop-shadow(0 0 8px rgba(34,211,238,.10));
    }

    /* Checkmark pop for light */
    html[data-theme="light"] .check {
        stroke: rgba(15,143,94,.92);
        filter: drop-shadow(0 0 10px rgba(15,143,94,.12));
    }
    html[data-theme="light"] .ai-ledger {
        border: 1px solid rgba(215,220,232,.95);
        background: rgba(255,255,255,.70);
    }
html[data-theme="light"] {
    --ai-ledger-panel: rgba(255,255,255,.70);
    --ai-ledger-stroke: rgba(215,220,232,.95);
    --ai-ledger-rail: rgba(11,18,32,.12);
}
    html[data-theme="light"] .ledger-labels text {
        fill: rgba(11,18,32,.70);
    }

    html[data-theme="light"] .caption {
        fill: rgba(75,85,107,.85);
    }

    html[data-theme="light"] .chip {
        fill: rgba(124,92,255,.10);
        stroke: rgba(124,92,255,.22);
    }

    html[data-theme="light"] .chipText {
        fill: rgba(11,18,32,.75);
    }

    html[data-theme="light"] .row {
        fill: rgba(11,18,32,.05);
        stroke: rgba(11,18,32,.12);
    }

    html[data-theme="light"] .hash {
        fill: rgba(11,18,32,.06);
        stroke: rgba(11,18,32,.10);
    }

    html[data-theme="light"] .ledger-line {
        filter: drop-shadow(0 0 8px rgba(34,211,238,.10));
    }

    html[data-theme="light"] .check {
        stroke: rgba(15,143,94,.92);
        filter: drop-shadow(0 0 10px rgba(15,143,94,.12));
    }