/* ──────────────────────────────────────────────────────────────────────────
   GazeSite — homepage sections only. Loaded on / via the `extra_head` block
   in layouts/index.html, on top of main.css. Design tokens, resets and the
   shared header/footer chrome all live in main.css — do not redeclare them
   here or the two will drift apart again.
   ────────────────────────────────────────────────────────────────────── */

    /* ── Hero ── */
    .hero-bg {
        position: relative;
        background:
            radial-gradient(1200px 600px at 70% -100px, rgba(176,32,32,0.08), transparent 70%),
            radial-gradient(900px 500px at 10% 40%, rgba(81,69,205,0.05), transparent 70%),
            linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
        overflow: hidden;
    }
    .hero-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(26,24,20,0.03) 1px, transparent 0);
        background-size: 24px 24px;
        pointer-events: none;
    }

    .hero { padding: 4.5rem 0 3.5rem; position: relative; }
    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
        align-items: center;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.9rem;
        background: rgba(176,32,32,.08);
        border: 1px solid rgba(176,32,32,.18);
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--red);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        margin-bottom: 1.6rem;
    }
    .eyebrow .stars {
        color: var(--gold);
        font-size: 0.85rem;
        letter-spacing: 2px;
        line-height: 1;
    }
    .eyebrow strong { font-weight: 800; }
    .eyebrow .pulse-dot {
        width: 7px; height: 7px;
        background: var(--red);
        border-radius: 50%;
        position: relative;
    }
    .eyebrow .pulse-dot::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--red);
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.7; }
        50% { transform: scale(2.2); opacity: 0; }
    }

    h1.hero-title {
        font-size: clamp(2.3rem, 4.6vw, 3.4rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 1.15rem;
    }
    h1.hero-title em {
        font-style: normal;
        color: var(--red);
        position: relative;
    }
    h1.hero-title em::after {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: -4px;
        height: 3px;
        background: linear-gradient(90deg, var(--red), var(--red-deep));
        border-radius: 2px;
        opacity: 0.35;
    }
    .hero-sub {
        font-size: 1.1rem;
        color: var(--ink-soft);
        max-width: 540px;
        margin-bottom: 2rem;
    }
    .hero-sub strong { color: var(--ink); font-weight: 600; }

    /* ── Halo URL input (the site's one and only URL field) ── */
    .scan-wrap { max-width: 540px; }
    .scan-card {
        position: relative;
        padding: 2px;
        border-radius: 18px;
        background: var(--cream);
        isolation: isolate;
    }
    .scan-card::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 20px;
        background: conic-gradient(from 220deg,
            rgba(176,32,32,0.55) 0deg,
            rgba(200,148,30,0.35) 90deg,
            rgba(81,69,205,0.4) 180deg,
            rgba(176,32,32,0.55) 270deg,
            rgba(176,32,32,0.55) 360deg);
        filter: blur(14px);
        opacity: 0.5;
        z-index: -1;
        transition: opacity .3s;
    }
    .scan-card.is-focused::before { opacity: 0.95; filter: blur(18px); }

    .scan-inner {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: #ffffff;
        border-radius: 16px;
        padding: 0.45rem 0.45rem 0.45rem 1rem;
        box-shadow: var(--shadow-2);
    }
    .scan-prefix { color: var(--mute); font-size: 0.95rem; font-weight: 500; user-select: none; }
    .scan-input {
        flex: 1;
        min-width: 0;
        border: none;
        outline: none;
        background: transparent;
        font-size: 1.05rem;
        font-family: inherit;
        color: var(--ink);
        padding: 0.85rem 0.25rem;
        font-weight: 500;
    }
    .scan-input::placeholder { color: #B8B0A2; font-weight: 400; }
    .scan-btn {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.8rem 1.35rem;
        background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
        color: #fff;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.98rem;
        transition: transform .12s, box-shadow .15s, filter .15s;
        box-shadow: 0 4px 12px rgba(176,32,32,.35);
    }
    .scan-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(176,32,32,.45); }
    .scan-btn:active { transform: translateY(0); }

    .scan-hints {
        display: flex;
        gap: 1.25rem;
        margin-top: 1rem;
        font-size: 0.82rem;
        color: var(--mute);
        flex-wrap: wrap;
    }
    .scan-hints span { display: inline-flex; align-items: center; gap: 0.35rem; }
    .scan-hints .tick {
        width: 14px; height: 14px;
        border-radius: 50%;
        background: var(--ok);
        color: #fff;
        font-size: 0.6rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    .scan-error {
        display: none;
        margin-top: 0.75rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--red);
    }
    .scan-error.is-visible { display: block; }
    @keyframes scan-card-nudge {
        0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,.06); }
        50%      { box-shadow: 0 0 0 4px rgba(176,32,32,.28); }
    }
    .scan-card.is-nudged { animation: scan-card-nudge 900ms ease-in-out 2; }

    /* ── Hero video: the founder clip in the right column ── */
    .hero-video-stage { padding: 0 0 0 1rem; }
    .founder-video {
        width: 100%;
        display: block;
        border-radius: var(--radius);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-3);
        background: #000;
    }
    .hero-video-caption {
        margin-top: 1rem;
        text-align: center;
        font-size: 0.8rem;
        color: var(--mute);
    }
    .hero-video-caption strong { color: var(--ink-soft); font-weight: 600; }

    /* ── Security strip inside hero-bg ── */
    .security {
        padding: 2.5rem 0 5rem;
        position: relative;
    }
    .sec-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
        margin-bottom: 2rem;
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: var(--red);
        text-transform: uppercase;
    }
    .sec-label::before, .sec-label::after {
        content: "";
        flex: 0 0 2.5rem;
        height: 1px;
        background: rgba(176,32,32,.25);
    }
    .sec-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .sec-tile {
        position: relative;
        padding: 1.4rem 1.15rem;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow-1);
        transition: transform .2s, box-shadow .2s, border-color .2s;
        overflow: hidden;
    }
    .sec-tile::before {
        content: "";
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 3px;
        background: var(--accent, var(--red));
        opacity: 0.85;
    }
    .sec-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-soft); }
    .sec-tile.ok      { --accent: var(--ok); }
    .sec-tile.indigo  { --accent: var(--indigo); }
    .sec-tile.red     { --accent: var(--red); }
    .sec-tile.slate   { --accent: var(--slate); }

    .sec-top { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.55rem; }
    .sec-icon {
        width: 30px; height: 30px;
        border-radius: 8px;
        background: color-mix(in srgb, var(--accent) 12%, transparent);
        color: var(--accent);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .sec-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); letter-spacing: -0.01em; }
    .sec-body { font-size: 0.82rem; color: var(--mute); line-height: 1.5; }
    .stripe-wordmark {
        font-weight: 800;
        color: #635BFF;
        letter-spacing: -0.02em;
        font-size: 0.92rem;
    }

    /* ── Section base ── */
    section { position: relative; }
    .eyebrow-section {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: var(--red);
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }
    h2.section-title {
        text-align: center;
        font-size: clamp(1.85rem, 3.5vw, 2.6rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: var(--ink);
        margin-bottom: 0.85rem;
    }
    h2.section-title em { font-style: normal; color: var(--red); }
    .section-sub {
        text-align: center;
        font-size: 1.05rem;
        color: var(--ink-soft);
        max-width: 640px;
        margin: 0 auto 3rem;
    }

    /* ── Value grid: what you actually get ── */
    .value { padding: 5rem 0 4.5rem; }
    .value-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
    }
    .value-card {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.5rem 1.35rem;
        box-shadow: var(--shadow-1);
        transition: transform .18s ease, box-shadow .18s ease;
    }
    .value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
    .value-icon {
        width: 36px; height: 36px;
        background: var(--red-glow);
        color: var(--red);
        border-radius: 9px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.8rem;
    }
    .value-card h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
    .value-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }

    /* ── Findings wall: trouble it catches before it costs you ── */
    .findings { padding: 4.5rem 0 5rem; background: var(--cream-2); border-top: 1px solid var(--line-soft); }
    .findings-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 920px;
        margin: 0 auto;
    }
    .finding {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 1.1rem 1.25rem;
        box-shadow: var(--shadow-1);
    }
    .finding-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.55rem;
    }
    .sev {
        font-family: var(--mono);
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        padding: 0.18rem 0.5rem;
        border-radius: 999px;
    }
    .sev-high { color: var(--red); background: rgba(176,32,32,.1); border: 1px solid rgba(176,32,32,.25); }
    .sev-med  { color: var(--gold); background: rgba(200,148,30,.12); border: 1px solid rgba(200,148,30,.3); }
    .finding-cat {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--mute);
    }
    .finding p {
        font-family: var(--mono);
        font-size: 0.83rem;
        line-height: 1.55;
        color: var(--ink-soft);
    }
    .finding p strong { color: var(--ink); font-weight: 600; }
    .findings-note {
        max-width: 920px;
        margin: 1.5rem auto 0;
        text-align: center;
        font-size: 0.88rem;
        color: var(--mute);
    }
    .findings-note a { color: var(--red); font-weight: 600; }
    .findings-note a:hover { text-decoration: underline; }

    /* ── Testimonials ── */
    .testimonials { padding: 4.5rem 0 5rem; }
    .testi-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 900px;
        margin: 0 auto;
    }
    .testi {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.6rem;
        box-shadow: var(--shadow-1);
        display: flex;
        flex-direction: column;
    }
    .testi-quote { font-size: 0.96rem; color: var(--ink); line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }
    .testi-by {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line-soft);
    }
    .testi-avatar {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    .testi-who { display: flex; flex-direction: column; }
    .testi-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
    .testi-where { font-size: 0.78rem; color: var(--mute); }
    .testi-where a { color: var(--red); font-weight: 500; }
    .testi-where a:hover { text-decoration: underline; }

    /* ── Stats strip ── */
    .stats {
        padding: 3rem 0;
        background: var(--ink);
        color: var(--cream);
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    .stat-num {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #fff;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .stat-num em { font-style: normal; color: var(--red); font-weight: 800; }
    .stat-label {
        font-size: 0.82rem;
        color: rgba(255,252,245,0.65);
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    /* ── How ── */
    .how { padding: 5rem 0 4rem; }
    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .step {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.75rem 1.5rem;
        position: relative;
        box-shadow: var(--shadow-1);
    }
    .step-num {
        position: absolute;
        top: -14px;
        left: 1.5rem;
        width: 28px;
        height: 28px;
        background: var(--red);
        color: #fff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 4px 10px rgba(176,32,32,.3);
    }
    .step h3 {
        font-size: 1.08rem;
        font-weight: 700;
        letter-spacing: -0.015em;
        margin-bottom: 0.45rem;
    }
    .step p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

    /* ── Reviewers ── */
    .reviewers { padding: 4.5rem 0; background: var(--cream-2); border-top: 1px solid var(--line-soft); }
    .rev-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .rev-card {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.4rem 1.25rem;
        box-shadow: var(--shadow-1);
        border-top: 3px solid var(--accent, var(--red));
    }
    .rev-card.consumer  { --accent: var(--ok); }
    .rev-card.executive { --accent: var(--indigo); }
    .rev-card.technical { --accent: var(--slate); }
    .rev-card.custom    { --accent: var(--gold); }
    .rev-card h3 { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.35rem; }
    .rev-card > p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 0.8rem; }
    .rev-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
    .rev-chips span {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--accent);
        background: color-mix(in srgb, var(--accent) 10%, transparent);
        border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
        padding: 0.2rem 0.55rem;
        border-radius: 999px;
    }

    /* ── Categories ── */
    .categories { padding: 4.5rem 0 4rem; }
    .cat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .cat {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.25rem;
        transition: transform .15s, box-shadow .15s;
    }
    .cat:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
    .cat-icon {
        width: 34px; height: 34px;
        background: var(--red-glow);
        color: var(--red);
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.7rem;
    }
    .cat h3 { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
    .cat p { font-size: 0.86rem; color: var(--mute); line-height: 1.5; }

    /* ── Report anatomy ── */
    .report { padding: 4.5rem 0 5rem; background: var(--cream-2); border-top: 1px solid var(--line-soft); }
    .report-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
        align-items: center;
        max-width: 980px;
        margin: 0 auto;
    }
    .report .eyebrow-section, .report h2.rg-title { text-align: left; }
    h2.rg-title {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }
    h2.rg-title em { font-style: normal; color: var(--red); }
    .report-list { list-style: none; margin: 1.3rem 0 1.6rem; }
    .report-list li {
        display: flex;
        gap: 0.7rem;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        color: var(--ink-soft);
        align-items: flex-start;
    }
    .report-list li strong { color: var(--ink); font-weight: 700; }
    .report-list .tick {
        width: 18px; height: 18px;
        flex-shrink: 0;
        margin-top: 3px;
        border-radius: 50%;
        background: var(--ok);
        color: #fff;
        font-size: 0.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    .report-link {
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--red);
    }
    .report-link:hover { text-decoration: underline; }

    /* Mini report mock (same idiom as sample cards) */
    .report-mock {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-3);
        transform: rotate(1.2deg);
    }
    .report-mock-cover {
        background: var(--ink);
        padding: 1.4rem;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
    }
    .report-mock-grade {
        width: 56px; height: 56px;
        border-radius: 10px;
        background: #9a6c00;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.9rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #fff;
        flex-shrink: 0;
    }
    .report-mock-cat {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,.5);
        margin-bottom: 0.3rem;
    }
    .report-mock-site {
        font-family: var(--mono);
        font-size: 0.8rem;
        color: rgba(255,255,255,.85);
    }
    .report-mock-body { padding: 1.2rem 1.4rem 1.4rem; }
    .report-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.55rem 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 0.85rem;
    }
    .report-row:last-child { border-bottom: none; }
    .report-row .label { color: var(--ink-soft); font-weight: 500; }
    .report-row .score {
        font-family: var(--mono);
        font-weight: 700;
        font-size: 0.8rem;
    }
    .score.good { color: var(--ok); }
    .score.warn { color: var(--gold); }
    .score.bad  { color: var(--red); }

    /* ── Sample reports ── */
    .samples { padding: 4.5rem 0 3.5rem; }
    .samples .section-sub { margin-bottom: 2rem; }
    .sample-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
    }
    .sample {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(20,12,8,.05);
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .sample:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(20,12,8,.10);
        border-color: rgba(176,32,32,.3);
    }
    .sample-cover {
        background: var(--ink);
        padding: 1.4rem 1.4rem 1.2rem;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
    }
    .sample-grade-badge {
        width: 56px; height: 56px;
        border-radius: 10px;
        background: var(--red);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.9rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #fff;
        flex-shrink: 0;
    }
    .sample-grade-badge.grade-green  { background: #1a7a44; }
    .sample-grade-badge.grade-yellow { background: #9a6c00; }
    .sample-grade-badge.grade-red    { background: #b02020; }
    .sample-cover-meta { flex: 1; }
    .sample-cover-category {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,.5);
        margin-bottom: 0.3rem;
    }
    .sample-cover-site {
        font-family: var(--mono);
        font-size: 0.8rem;
        color: rgba(255,255,255,.85);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .sample-lines {
        padding: 1rem 1.2rem 0.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
    }
    .sample-line {
        height: 7px;
        border-radius: 4px;
        background: var(--line);
    }
    .sample-line:nth-child(1) { width: 85%; }
    .sample-line:nth-child(2) { width: 70%; }
    .sample-line:nth-child(3) { width: 90%; background: rgba(176,32,32,.18); }
    .sample-line:nth-child(4) { width: 60%; }
    .sample-body {
        padding: 1rem 1.2rem 1.3rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        flex: 1;
    }
    .sample-blurb {
        font-size: 0.875rem;
        line-height: 1.55;
        color: var(--ink-soft);
        margin: 0;
    }
    .sample-cta {
        margin-top: auto;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--red);
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    .sample:hover .sample-cta { gap: 0.5rem; }

    /* ── Pricing ── */
    .pricing { padding: 4.5rem 0 5rem; }
    .price-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        max-width: 980px;
        margin: 0 auto;
        align-items: stretch;
    }
    .plan {
        position: relative;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.9rem 1.6rem 1.7rem;
        box-shadow: var(--shadow-1);
        display: flex;
        flex-direction: column;
    }
    .plan.featured {
        border: 2px solid var(--red);
        box-shadow: var(--shadow-2);
    }
    .plan-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--red);
        color: #fff;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.25rem 0.8rem;
        border-radius: 999px;
        white-space: nowrap;
    }
    .plan h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 0.2rem; }
    .plan-for { font-size: 0.85rem; color: var(--mute); margin-bottom: 1rem; }
    .plan-price {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        color: var(--ink);
    }
    .plan-price .per { font-size: 0.85rem; font-weight: 500; color: var(--mute); letter-spacing: 0; }
    .plan-note { font-size: 0.78rem; color: var(--mute); margin-top: 0.35rem; margin-bottom: 1.1rem; }
    .plan-list { list-style: none; margin: 0 0 1.4rem; }
    .plan-list li {
        display: flex;
        gap: 0.55rem;
        padding: 0.32rem 0;
        font-size: 0.88rem;
        color: var(--ink-soft);
        align-items: flex-start;
    }
    .plan-list .tick {
        width: 16px; height: 16px;
        flex-shrink: 0;
        margin-top: 3px;
        border-radius: 50%;
        background: var(--ok);
        color: #fff;
        font-size: 0.58rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    .plan-btn {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.75rem 1.2rem;
        border-radius: 11px;
        font-weight: 600;
        font-size: 0.92rem;
        border: 1.5px solid var(--ink);
        color: var(--ink);
        transition: transform .12s, box-shadow .15s, background .15s, color .15s;
    }
    .plan-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
    .plan.featured .plan-btn {
        background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 12px rgba(176,32,32,.35);
    }
    .plan.featured .plan-btn:hover { box-shadow: 0 8px 20px rgba(176,32,32,.45); }
    .pricing-foot {
        text-align: center;
        margin-top: 1.75rem;
        font-size: 0.88rem;
        color: var(--mute);
    }
    @media (max-width: 880px) {
        .price-grid { grid-template-columns: 1fr; max-width: 440px; }
    }

    /* ── FAQ ── */
    .faq { padding: 4rem 0 5rem; background: var(--cream-2); border-top: 1px solid var(--line-soft); }
    .faq-card {
        max-width: 760px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 0.5rem 1.75rem;
        box-shadow: var(--shadow-1);
    }
    .faq-item {
        border-bottom: 1px solid var(--line-soft);
        padding: 1.1rem 0;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--ink);
        padding: 0.25rem 0;
    }
    .faq-q:hover { color: var(--red); }
    .faq-q .chev {
        transition: transform .2s;
        color: var(--mute);
        flex-shrink: 0;
        margin-left: 1rem;
    }
    .faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--red); }
    .faq-a {
        display: none;
        padding: 0.6rem 0 0.2rem;
        font-size: 0.93rem;
        color: var(--ink-soft);
        line-height: 1.65;
    }
    .faq-item.open .faq-a { display: block; }

    /* ── Blog preview ── */
    .blog-preview { padding: 4.5rem 0 3.5rem; }
    .blog-preview-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
        margin-top: 2rem;
    }
    .blog-card-mini {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        text-decoration: none;
        color: inherit;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .blog-card-mini:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(20,12,8,.08);
        border-color: rgba(176,32,32,.3);
    }
    .blog-card-date {
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--mute);
    }
    .blog-card-title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.4;
        color: var(--ink);
    }
    .blog-card-summary {
        font-size: 0.875rem;
        line-height: 1.55;
        color: var(--ink-soft);
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-card-read {
        margin-top: auto;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--red);
    }
    .blog-all-link {
        text-align: center;
        margin-top: 1.8rem;
    }
    .blog-all-link a {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--red);
        text-decoration: none;
    }
    .blog-all-link a:hover { text-decoration: underline; }


    /* ── CTA band ── */
    .cta {
        position: relative;
        padding: 5rem 0;
        background: var(--ink);
        color: var(--cream);
        overflow: hidden;
        text-align: center;
    }
    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(800px 400px at 50% 50%, rgba(176,32,32,.22), transparent 70%);
    }
    .cta-inner { position: relative; }
    .cta h2 {
        font-size: clamp(1.85rem, 3.5vw, 2.6rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }
    .cta h2 em { font-style: normal; color: var(--red); }
    .cta p {
        font-size: 1.05rem;
        color: rgba(255,252,245,0.75);
        margin-bottom: 2rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.75rem;
        background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
        color: #fff !important;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.02rem;
        transition: transform .15s, box-shadow .15s;
        box-shadow: 0 6px 20px rgba(176,32,32,.4);
    }
    .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(176,32,32,.55); }
    .cta-price-link {
        display: block;
        margin-top: 1.25rem;
        font-size: 0.88rem;
        color: rgba(255,252,245,0.55);
    }
    .cta-price-link a {
        color: rgba(255,252,245,0.8);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .cta-price-link a:hover { color: #fff; }

    /* ── Responsive ── */
    @media (max-width: 980px) {
        .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
        .hero-video-stage { padding: 0; max-width: 560px; margin: 0 auto; }
    }
    @media (max-width: 880px) {
        .sample-grid { grid-template-columns: 1fr; }
        .blog-preview-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 860px) {
        .hero { padding: 3rem 0 2rem; }
        .security { padding: 2rem 0 3.5rem; }
        .sec-grid { grid-template-columns: repeat(2, 1fr); }
        .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
        .steps { grid-template-columns: 1fr; }
        .cat-grid { grid-template-columns: repeat(2, 1fr); }
        .value-grid { grid-template-columns: repeat(2, 1fr); }
        .findings-grid { grid-template-columns: 1fr; }
        .rev-grid { grid-template-columns: repeat(2, 1fr); }
        .report-grid { grid-template-columns: 1fr; gap: 2rem; }
        .report-mock { transform: none; max-width: 440px; }
        .testi-grid { grid-template-columns: 1fr; }
        .scan-inner { flex-wrap: wrap; padding: 0.55rem; }
        .scan-input { width: 100%; padding: 0.75rem; }
        .scan-prefix { display: none; }
        .scan-btn { width: 100%; justify-content: center; }
    }
    @media (max-width: 620px) {
        .sec-grid { grid-template-columns: 1fr; }
        .cat-grid { grid-template-columns: 1fr; }
        .value-grid { grid-template-columns: 1fr; }
        .rev-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

/* The homepage ends on the dark full-bleed CTA band, so the 4rem breathing
   room main.css puts above the footer (right for white content pages) would
   show as a cream stripe between two dark blocks. */
body > footer { margin-top: 0; }

.hero-video-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.hero-video-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red);
}
.hero-video-links a:hover { text-decoration: underline; }
