/* site.css — shared marketing-site stylesheet (DP-7 / RO1).
   Extracted verbatim from homepage.html's 5 page <style> blocks, in document
   order (cascade preserved). Footer styles stay inline in the footer partial.
   Edit here; homepage.html + the split route pages all <link> this file. */

/* ===== block 1 ===== */
*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --base: #F9F7F4;
            --primary: #1C1C1C;
            --accent: #2A4A3E;
            --stone: #9C8E7E;
            --surface: #FFFFFF;
            --border: #E5E0D8;
            --accent-muted: #EDF2EF;
            --stone-light: #F4F0EB;
            --tier-foundation: #2A4A3E;
            --tier-targeted: #6B3A52;
            --tier-optimise: #9C8E7E;
            --tier-foundation-bg: #EDF2EF;
            --tier-targeted-bg: #F7EEF3;
            --tier-optimise-bg: #F4F0EB;
        }

        /* F16: fluid root font-size — matches public-page formula (about /
           methodology / interactions-checker / invite landing). Floors at
           14.5px on narrow viewports (320-380dp), caps at 16px on standard. */
        html { font-size: clamp(14.5px, calc(13.5px + 0.55vw), 16px); scroll-behavior: smooth; }

        body {
            background: var(--base);
            color: var(--primary);
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            scrollbar-gutter: stable;
        }

        /* ─── PAGE SWITCHER ─────────────────────────────── */
        .page-switcher {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            background: var(--primary);
            border-radius: 2px;
            overflow: hidden;
        }

        .switcher-btn {
            padding: 9px 22px;
            background: transparent;
            color: rgba(255,255,255,0.45);
            border: none;
            cursor: pointer;
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .switcher-btn.active {
            background: var(--accent);
            color: white;
        }

        /* DP-7 / RO1: switcher rendered as real-route anchors (shared nav
           partial). Scoped to anchors so the homepage's <button> switcher is
           unaffected; matches the existing "Free checker" anchor treatment. */
        .page-switcher a.switcher-btn {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* DP-7 / RO1: /get-started keeps its bespoke fixed .payment-nav (green)
           as the header, so the shared white .nav (#site-nav) from the stamped
           partial is hidden there. The switcher pill + sticky CTA still show,
           matching exactly what the old payment tab rendered. */
        body.page-get-started #site-nav { display: none; }

        /* ─────────────────────────────────────────────────
           DP-8 C1: MINI-CHECKER (reusable: hero + DP-9 embed widget)
           Real no-ask interaction check, wired to the live /check API.
        ───────────────────────────────────────────────── */
        .hero-checker {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
        }
        .mc {
            width: 100%;
            max-width: 420px;
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 28px 28px 22px;
            box-shadow: 0 8px 40px rgba(42, 74, 62, 0.08);
        }
        .mc-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .mc-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 23px;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .mc-field { position: relative; margin-bottom: 14px; }
        .mc-label {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 6px;
        }
        .mc-input {
            width: 100%;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: var(--primary);
            padding: 11px 13px;
            border: 1px solid var(--border);
            border-radius: 2px;
            background: var(--base);
            transition: border-color 0.2s;
        }
        .mc-input:focus { outline: none; border-color: var(--accent); }
        .mc-input.mc-selected { border-color: var(--accent); background: var(--accent-muted); font-weight: 500; }
        .mc-auto {
            display: none;
            position: absolute;
            top: 100%; left: 0; right: 0;
            z-index: 50;
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-top: 0;
            max-height: 210px;
            overflow-y: auto;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .mc-auto.visible { display: block; }
        .mc-auto-item {
            padding: 10px 13px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }
        .mc-auto-item:hover, .mc-auto-item.active { background: var(--accent-muted); color: var(--accent); }
        .mc-auto-item .mc-auto-class {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--stone);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            white-space: nowrap;
        }
        .mc-auto-empty { padding: 11px 13px; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--stone); font-style: italic; }
        .mc-btn {
            width: 100%;
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #FFFFFF;
            background: var(--accent);
            border: 0;
            border-radius: 2px;
            padding: 13px;
            margin-top: 6px;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .mc-btn:disabled { opacity: 0.4; cursor: not-allowed; }
        .mc-result {
            display: none;
            margin-top: 18px;
            padding: 15px 16px;
            border-left: 3px solid var(--stone);
            background: var(--base);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            line-height: 1.55;
            color: var(--primary);
        }
        .mc-result.show { display: block; }
        .mc-result.red { border-left-color: #B23A3A; background: #FBEEEE; }
        .mc-result.amber { border-left-color: #B7791F; background: #FBF4E6; }
        .mc-result.green { border-left-color: #2A4A3E; background: var(--accent-muted); }
        .mc-result-badge {
            display: inline-block;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 3px 9px;
            border-radius: 1px;
            margin-bottom: 9px;
            color: #FFFFFF;
        }
        .mc-result.red .mc-result-badge { background: #B23A3A; }
        .mc-result.amber .mc-result-badge { background: #B7791F; }
        .mc-result.green .mc-result-badge { background: #2A4A3E; }
        .mc-result-pair { font-weight: 600; margin-bottom: 5px; }
        .mc-result-detail-link { display: inline-block; margin-top: 9px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
        .mc-full {
            display: block;
            margin-top: 16px;
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            text-decoration: none;
            text-align: center;
        }
        .mc-full:hover { text-decoration: underline; }
        @media (max-width: 768px) {
            /* C5: proof above the fold on mobile: lift the mini-checker above the
               hero copy so the live tool is the first thing in view (the sticky
               bottom bar keeps the £49 CTA always reachable). */
            .hero-checker { order: -1; padding: 20px 20px 4px; }
            .mc { max-width: 100%; }
        }

        .page { display: none; }
        .page.active { display: block; }

        /* ─── NAV ───────────────────────────────────────── */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 28px 64px;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .nav.scrolled { border-bottom-color: var(--border); }

        .wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 24px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #0D0D0D;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }

        .wordmark-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.06em;
            text-transform: none;
            color: var(--stone);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--stone);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--primary); }

        .nav-links .nav-cta {
            color: var(--primary);
            padding-bottom: 2px;
            border-bottom: 1px solid var(--primary);
        }

        /* ─── HERO ──────────────────────────────────────── */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            padding: 0 32px 0 64px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            position: relative;
            z-index: 2;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--base) 0%, transparent 30%);
        }

        .hero-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 44px;
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 0.2s;
        }

        .hero-rule {
            width: 40px;
            height: 1px;
            background: var(--accent);
            margin: 0 auto 44px;
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 0.15s;
        }

        .hero-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(36px, 4vw, 64px);
            line-height: 1.05;
            letter-spacing: -0.01em;
            color: var(--primary);
            max-width: 600px;
            margin-bottom: 36px;
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 0.4s;
        }

        .hero-headline em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 16px;
            line-height: 1.75;
            color: var(--stone);
            max-width: 500px;
            margin-bottom: 56px;
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 0.6s;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 17px 40px;
            background: var(--accent);
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.25s;
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 0.8s;
        }

        .btn-primary:hover { background: var(--primary); }

        .btn-arrow { transition: transform 0.2s; }
        .btn-primary:hover .btn-arrow { transform: translateX(5px); }

        .hero-scroll {
            position: absolute;
            bottom: 44px;
            left: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--stone);
            opacity: 0;
            animation: fadeUp 0.9s ease forwards 1.2s;
        }

        .scroll-line {
            width: 1px;
            height: 44px;
            background: linear-gradient(to bottom, var(--stone), transparent);
            animation: scrollPulse 2.2s ease-in-out infinite;
        }

        /* ─── SECTION LABEL ─────────────────────────────── */
        .section-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        /* ─── HOW IT WORKS ──────────────────────────────── */
        .how-it-works {
            padding: 120px 64px;
            max-width: 100%;
            background: var(--base); /* AD6 (Fable 2026-06): flat cream; was off-system targeted.png stock */
        }

        /* On the HIW page the how-it-works section is the first content below the
           fixed nav, with no hero/previous section providing a buffer. Add the nav
           height (~74px desktop / ~61px mobile) to match the top spacing every
           other section gets naturally from the section above it. */
        #page-hiw .how-it-works {
            padding-top: 194px;
        }

        .how-it-works-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border);
        }

        .step {
            padding: 56px 48px;
            border-right: 1px solid var(--border);
        }

        .step:last-child { border-right: none; }

        .step-number {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 72px;
            color: var(--border);
            line-height: 1;
            margin-bottom: 36px;
        }

        .step-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .step-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--stone);
            line-height: 1.75;
        }

        /* ─── REPORT PREVIEW ────────────────────────────── */
        .report-preview {
            padding: 120px 64px;
            background: var(--stone-light);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .preview-inner { max-width: 1280px; margin: 0 auto; }

        .preview-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-bottom: 56px;
        }

        .preview-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 52px;
            line-height: 1.1;
            color: var(--primary);
        }

        .preview-headline em { font-style: italic; }

        .preview-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: var(--stone);
            line-height: 1.85;
            padding-top: 10px;
        }

        /* Full-depth compound card */
        .deep-card {
            background: var(--surface);
            border: 1px solid var(--border);
        }

        .deep-card-header {
            padding: 32px 44px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .deep-card-name {
            font-family: 'DM Mono', monospace;
            font-size: 16px;
            letter-spacing: 0.04em;
            color: var(--primary);
        }

        .deep-card-badges {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .badge-tier {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--stone);
            background: var(--stone-light);
            padding: 4px 10px;
            border-radius: 1px;
        }

        .badge-grade {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 4px 10px;
            border-radius: 1px;
        }

        .deep-card-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .deep-card-left {
            padding: 36px 44px;
            border-right: 1px solid var(--border);
        }

        .deep-card-right {
            padding: 36px 44px;
        }

        .deep-field {
            margin-bottom: 28px;
        }

        .deep-field:last-child { margin-bottom: 0; }

        .deep-field-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .deep-field-value {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.7;
        }

        .deep-field-value strong {
            font-weight: 500;
        }

        .deep-field-mono {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--primary);
            line-height: 1.6;
        }

        .sourcing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 8px;
        }

        .sourcing-box {
            background: var(--stone-light);
            padding: 14px 16px;
            border: 1px solid var(--border);
        }

        .sourcing-box-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 6px;
        }

        .sourcing-box-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--primary);
            line-height: 1.55;
        }

        .more-compounds-hint {
            margin-top: 2px;
            padding: 20px 44px;
            background: var(--stone-light);
            border: 1px solid var(--border);
            border-top: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .more-compounds-hint span {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .more-dots {
            display: flex;
            gap: 6px;
        }

        .more-dots div {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--border);
        }

        /* ─── WHAT'S IN YOUR REPORT ─────────────────────── */
        .report-contents {
            padding: 120px 64px;
            background: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .report-contents::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 55%);
            pointer-events: none;
        }

        .report-contents-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .report-contents .section-label {
            color: rgba(255,255,255,0.45);
            border-left-color: rgba(255,255,255,0.35);
        }

        .contents-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.1);
            margin-top: 0;
        }

        .contents-item {
            background: rgba(255,255,255,0.04);
            border: none;
            padding: 36px 40px;
            transition: background 0.2s;
        }

        @media (hover: hover) {
            .contents-item:hover { background: rgba(255,255,255,0.08); }
        }

        .contents-item-number {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            color: rgba(255,255,255,0.3);
            margin-bottom: 18px;
        }

        .contents-item-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 22px;
            color: white;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .contents-item-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
        }

        .contents-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 18px;
        }

        .contents-tag {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.08);
            padding: 3px 8px;
            border-radius: 1px;
        }

        /* Compound card (old name kept for other uses) */
        .compound-name {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            letter-spacing: 0.04em;
            color: var(--primary);
            font-weight: 400;
        }

        .evidence-grade {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 4px 10px;
            border-radius: 1px;
            white-space: nowrap;
        }

        /* ─── PERSONALISATION SECTION ──────────────────── */
        .personalisation-section {
            background: var(--accent);
            padding: 120px 64px;
            position: relative;
            overflow: hidden;
        }

        .personalisation-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.05) 0%, transparent 55%);
            pointer-events: none;
        }

        .personalisation-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .personalisation-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: end;
            margin-bottom: 72px;
        }

        .personalisation-section .section-label {
            color: rgba(255,255,255,0.45);
            border-left-color: rgba(255,255,255,0.35);
            margin-top: 0;
        }

        .personalisation-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(36px, 4vw, 58px);
            line-height: 1.1;
            color: white;
            margin-top: 20px;
        }

        .personalisation-headline em {
            font-style: italic;
        }

        .personalisation-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: rgba(255,255,255,0.65);
            line-height: 1.85;
            padding-top: 8px;
        }

        .personalisation-count {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-top: 28px;
        }

        .personalisation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.1);
        }

        .factor-card {
            background: rgba(255,255,255,0.04);
            padding: 36px 40px;
            border: none;
            transition: background 0.2s;
        }

        .factor-card:hover {
            background: rgba(255,255,255,0.08);
        }

        .factor-num {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            color: rgba(255,255,255,0.3);
            margin-bottom: 18px;
        }

        .factor-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 22px;
            color: white;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .factor-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
        }

        .factor-tag {
            display: inline-block;
            margin-top: 14px;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.4);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 3px 9px;
        }

        /* ─── COMPARISON PANEL ──────────────────────────── */
        .comparison-section {
            padding: 120px 64px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url('/pipeline/assets/section-supplements-reviewed.png') left center/cover no-repeat; /* AD6 (Fable 2026-06): new-system specimen; was foundations.png stock */
        }

        .comparison-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .comparison-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 48px;
            line-height: 1.1;
            color: var(--primary);
            max-width: 560px;
            margin-bottom: 14px;
        }

        .comparison-headline em { font-style: italic; }

        .comparison-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: rgba(28,28,28,0.7);
            max-width: 560px;
            line-height: 1.75;
            margin-bottom: 64px;
        }

        /* ── STACKED COMPARISON ─────────────────────────── */
        .pd-stacked {
            max-width: 900px;
        }

        /* Generic advice panel */
        .pd-generic-panel {
            border: 1px solid #D8D8D4;
            background: #F4F4F2;
            padding: 36px 44px;
            border-radius: 2px;
        }
        .pd-generic-label {
            font-family: 'DM Mono', monospace;
            font-size: 10.5px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #fff;
            background: #888;
            display: inline-block;
            padding: 5px 10px;
            margin-bottom: 20px;
            border-radius: 2px;
        }
        .pd-generic-compound {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            color: #555;
            margin-bottom: 4px;
        }
        .pd-generic-dose {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: #888;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #E0E0DC;
        }
        .pd-generic-quote {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: #777;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 16px;
        }
        .pd-generic-source {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            color: #aaa;
        }

        /* Connector */
        .pd-connector {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 24px 0;
        }
        .pd-connector-line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }
        .pd-connector-text {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            white-space: nowrap;
        }

        /* Distil compound card */
        .pd-card-preamble {
            font-family: 'DM Mono', monospace;
            font-size: 10.5px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #fff;
            background: var(--accent);
            opacity: 1;
            margin-bottom: 0;
            padding: 10px 40px;
            border: 1px solid var(--accent);
            border-bottom: none;
            border-radius: 2px 2px 0 0;
        }
        .pd-distil-card {
            border: 1px solid rgba(42,74,62,0.18);
            border-radius: 0 0 2px 2px;
            overflow: hidden;
            background:
                linear-gradient(rgba(255,255,255,0.40), rgba(255,255,255,0.40)),
                url('/pipeline/assets/cat-fat-soluble-vitamins.png') center/cover no-repeat;
        }
        .pd-card-header {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 22px 40px;
            border-bottom: 1px solid rgba(42,74,62,0.1);
            background: rgba(255,255,255,0.6);
        }
        .pd-card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
            color: var(--primary);
            flex: 1 0 auto;
        }
        .pd-badge {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 2px;
        }
        .pd-foundation {
            background: var(--accent);
            color: white;
        }
        .pd-grade-a {
            background: rgba(42,74,62,0.1);
            color: var(--accent);
            border: 1px solid rgba(42,74,62,0.2);
        }
        .pd-card-dose-badge {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
        }
        .pd-card-body {
            display: grid;
            grid-template-columns: 1fr 260px;
            gap: 0;
        }
        .pd-card-main {
            padding: 32px 40px;
            border-right: 1px solid rgba(42,74,62,0.08);
        }
        .pd-field-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 12px;
        }
        .pd-field-value {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.8;
        }
        .pd-field-value strong {
            font-weight: 500;
        }
        .pd-card-details {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .pd-detail-row {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .pd-detail-key {
            font-family: 'DM Mono', monospace;
            font-size: 8.5px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--stone);
        }
        .pd-detail-val {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: var(--primary);
            line-height: 1.5;
        }
        .pd-card-footnote {
            padding: 16px 40px;
            border-top: 1px solid rgba(42,74,62,0.08);
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            color: rgba(42,74,62,0.5);
            background: rgba(42,74,62,0.03);
        }

        @media (max-width: 768px) {
            .pd-card-body { grid-template-columns: 1fr; }
            .pd-card-main { border-right: none; border-bottom: 1px solid rgba(42,74,62,0.08); padding: 24px 24px; }
            .pd-card-details { padding: 24px 24px; }
            .pd-card-header { padding: 18px 24px; }
            .pd-card-preamble { padding: 12px 24px; }
            .pd-card-footnote { padding: 14px 24px; }
            .pd-generic-panel { padding: 28px 24px; }
        }

        /* ─── "WHY NOT JUST ASK THE AI" COMPARISON ──────── */
        .ai-compare-section {
            padding: 120px 64px;
            border-top: 1px solid var(--border);
            background: var(--base);
        }
        .ai-compare-inner { max-width: 1080px; margin: 0 auto; }
        .ai-compare-disarm {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: rgba(28,28,28,0.7);
            max-width: 620px;
            line-height: 1.8;
            margin-bottom: 56px;
        }
        /* scale stat row reuses .stats-grid / .stat-item; just space it in this section */
        .ai-scale-grid { margin-top: 8px; border: 1px solid var(--border); }
        /* "checked / clinic" prose blocks */
        .ai-block { max-width: 760px; margin-top: 52px; }
        .ai-block-head {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 14px;
        }
        .ai-block-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            line-height: 1.85;
            color: rgba(28,28,28,0.82);
            margin-bottom: 16px;
        }
        .ai-block-body:last-child { margin-bottom: 0; }
        .ai-block-body strong { font-weight: 500; color: var(--accent); }
        .ai-compare-closer {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 26px;
            line-height: 1.4;
            color: var(--primary);
            max-width: 720px;
            margin-top: 48px;
        }
        .ai-compare-closer em { font-style: italic; }
        .ai-compare-closer a {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 3px;
            white-space: nowrap;
        }

        /* ─── TRUST STATS ───────────────────────────────── */
        .trust-section {
            padding: 120px 64px;
            background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)), url('/assets/distil1.png') center/cover no-repeat;
        }

        .trust-section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border);
            margin-top: 0;
        }

        .stat-item {
            padding: 64px 52px;
            border-right: 1px solid var(--border);
            text-align: center;
        }

        .stat-item:last-child { border-right: none; }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 80px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 14px;
        }

        .stat-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .stat-context {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--stone);
            line-height: 1.7;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
            text-align: left;
        }

        .trust-statement {
            text-align: center;
            margin-top: 88px;
        }

        .trust-quote {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: 40px;
            color: var(--primary);
            max-width: 740px;
            margin: 0 auto 20px;
            line-height: 1.25;
        }

        .trust-attribution {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.18em;
            color: var(--stone);
            text-transform: uppercase;
        }

        /* ─── CTA SECTION ───────────────────────────────── */
        .cta-section {
            padding: 120px 64px;
            background: var(--accent);
            text-align: center;
        }

        .cta-section .section-label {
            color: rgba(255,255,255,0.4);
            justify-content: center;
        }

        .cta-section .section-label::after { display: none; }

        .cta-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(42px, 6vw, 76px);
            color: white;
            line-height: 1.1;
            margin: 28px 0 18px;
        }

        .cta-headline em { font-style: italic; }

        .cta-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 52px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 17px 40px;
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s;
        }

        .btn-outline:hover {
            background: white;
            color: var(--accent);
            border-color: white;
        }

        /* ─── FOOTER ────────────────────────────────────── */
        /* ═══════════════════════════════════════════════
           REPORT PAGE
        ═══════════════════════════════════════════════ */

        .report-page { background: var(--base); min-height: 100vh; padding-top: 120px; }

        .report-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 28px 64px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(14px);
        }

        .report-wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 24px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #0D0D0D;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }

        .report-type {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .report-meta {
            padding: 44px 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 64px;
            align-items: center;
        }

        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .meta-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .meta-value {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--primary);
        }

        .report-intro {
            padding: 56px 64px 44px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .report-intro h1 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 52px;
            color: var(--primary);
            line-height: 1;
        }

        .report-count {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.1em;
            color: var(--stone);
            padding-bottom: 6px;
        }

        .report-body { padding: 0 64px 80px; }

        /* STACK CARDS */
        .stack-card {
            border: 1px solid var(--border);
            border-top: none;
            background: var(--surface);
        }

        .stack-card-header {
            padding: 32px 44px;
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 20px;
            align-items: center;
            border-bottom: 1px solid var(--border);
        }

        .stack-compound-name {
            font-family: 'DM Mono', monospace;
            font-size: 15px;
            color: var(--primary);
            letter-spacing: 0.03em;
        }

        .stack-grade {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.12em;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 5px 12px;
            border-radius: 1px;
        }

        .stack-dose-pill {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            background: var(--stone-light);
            padding: 5px 14px;
            border-radius: 1px;
        }

        .stack-card-body {
            padding: 36px 44px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 64px;
        }

        .stack-rationale-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .stack-rationale {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--primary);
            line-height: 1.8;
        }

        .stack-rationale em {
            display: block;
            margin-top: 16px;
            color: var(--stone);
            font-style: italic;
            font-size: 13px;
        }

        .stack-details {
            border-left: 1px solid var(--border);
            padding-left: 44px;
        }

        .detail-row {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 22px;
        }

        .detail-row:last-child { margin-bottom: 0; }

        .detail-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .detail-value {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--primary);
        }

        /* EVIDENCE SUMMARY */
        .evidence-summary {
            margin-top: 60px;
            border: 1px solid var(--border);
            background: var(--surface);
        }

        .evidence-header {
            padding: 32px 44px;
            border-bottom: 1px solid var(--border);
        }

        .evidence-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 28px;
            color: var(--primary);
        }

        .evidence-grades {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
        }

        .grade-item {
            background: var(--surface);
            padding: 32px 28px;
        }

        .grade-badge {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            background: var(--accent-muted);
            display: inline-block;
            padding: 4px 10px;
            margin-bottom: 14px;
            border-radius: 1px;
        }

        .grade-title {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 13px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .grade-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--stone);
            line-height: 1.65;
        }

        /* ─── ANIMATIONS ────────────────────────────────── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; }
            50%       { opacity: 0.9; }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Accessibility (DP-6): honour prefers-reduced-motion ──
           The hero uses opacity:0 + a fadeUp animation, and section reveals
           use .fade-up (opacity:0 until a JS .visible class is added on
           scroll). Naively cancelling motion would leave BOTH invisible, so
           we force every reveal straight to its final visible state — content
           first, motion is only ever an enhancement. */
        @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;
            }
            .hero-eyebrow, .hero-rule, .hero-headline,
            .hero-sub, .btn-primary, .hero-scroll,
            .fade-up { opacity: 1 !important; transform: none !important; }
        }

        /* ─── INTELLIGENCE SECTION ──────────────────────── */
        .intelligence-section {
            /* H3 + AD2/AD3 — was a 0.75 overlay over the bright fern (optimise.png),
               which collapsed body-text contrast (worst on mobile). Swapped to the
               purpose-built, evenly-lit sage-in-glass study (ad2) behind a darker
               green-tinted overlay. Resolves the contrast at source and gives the
               band a commissioned image instead of the recycled fern. */
            background: linear-gradient(rgba(22,28,25,0.86), rgba(22,28,25,0.86)), url('/pipeline/assets/ad2-standard-band.jpg') center/cover no-repeat;
            padding: 120px 64px;
            position: relative;
            overflow: hidden;
        }

        .intelligence-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 12% 85%, rgba(42,74,62,0.40) 0%, transparent 52%);
            pointer-events: none;
        }

        .intelligence-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .intelligence-header {
            margin-bottom: 72px;
        }

        .intelligence-section .section-label {
            color: rgba(255,255,255,0.32);
            margin-bottom: 24px;
        }

        .intelligence-section .section-label::after {
            background: rgba(255,255,255,0.1);
        }

        .intelligence-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(36px, 4.2vw, 62px);
            line-height: 1.08;
            color: white;
            margin-bottom: 26px;
            max-width: 600px;
        }

        .intelligence-headline em {
            font-style: italic;
            color: rgba(255,255,255,0.65);
        }

        .intelligence-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: rgba(255,255,255,0.66); /* H3 — raised from 0.48 for legibility over the fern band */
            max-width: 600px;
            line-height: 1.8;
        }

        .intelligence-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.08);
        }

        .intelligence-pillar {
            background: rgba(255,255,255,0.03);
            padding: 52px 44px;
            display: flex;
            flex-direction: column;
        }

        .pillar-number {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.22);
            margin-bottom: 22px;
        }

        .pillar-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 24px;
            color: white;
            line-height: 1.25;
            margin-bottom: 18px;
        }

        .pillar-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: rgba(255,255,255,0.74); /* H3 — raised from 0.50 so the body copy holds contrast where the bright fern shows through */
            line-height: 1.82;
            flex: 1;
            margin-bottom: 32px;
        }

        .pillar-stat {
            display: flex;
            align-items: baseline;
            gap: 14px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.09);
        }

        .pillar-stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 48px;
            color: white;
            line-height: 1;
        }

        .pillar-stat-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.30);
            max-width: 130px;
            line-height: 1.55;
        }

        /* ─── SAMPLE REPORT REDESIGN ────────────────────── */
        #page-report .report-view-bar,
        #page-report .report-view { display: none !important; }

        .sr-intro-panel {
            background: linear-gradient(rgba(42,74,62,0.86), rgba(42,74,62,0.86)),
                        url('/pipeline/assets/report-hero.png') center/cover no-repeat;
            padding: 72px 64px 64px;
            color: white;
        }

        .sr-intro-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.40);
            margin-bottom: 28px;
        }

        .sr-intro-name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(54px, 6vw, 80px);
            color: white;
            line-height: 1;
            margin-bottom: 18px;
        }

        .sr-intro-meta {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.50);
            margin-bottom: 24px;
        }

        .sr-intro-goals {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 44px;
        }

        .sr-intro-goals span {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.75);
            border: 1px solid rgba(255,255,255,0.22);
            padding: 5px 13px;
        }

        .sr-intro-body {
            max-width: 740px;
            margin-bottom: 52px;
        }

        .sr-intro-body p {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14.5px;
            color: rgba(255,255,255,0.72);
            line-height: 1.82;
            margin-bottom: 18px;
        }

        .sr-intro-body p:last-child { margin-bottom: 0; }

        .sr-intro-tier-legend {
            display: flex;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.13);
            padding-top: 36px;
        }

        .sr-tier-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            flex: 1;
            padding-right: 32px;
        }

        .sr-tier-item + .sr-tier-item {
            padding-left: 32px;
            padding-right: 32px;
            border-left: 1px solid rgba(255,255,255,0.10);
        }

        .sr-tier-item:last-child { border-right: none; padding-right: 0; }

        .sr-tier-badge {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 1px;
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .sr-tier-badge.foundation { background: rgba(42,74,62,0.7); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); }
        .sr-tier-badge.targeted   { background: rgba(107,58,82,0.7); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); }
        .sr-tier-badge.optimise   { background: rgba(74,94,42,0.7);  color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); }

        .sr-tier-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: rgba(255,255,255,0.50);
            line-height: 1.6;
        }

        .sr-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
        }

        .sr-section-header {
            padding: 40px 64px 28px;
        }

        .sr-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 38px;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .sr-section-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            color: var(--stone);
            line-height: 1.72;
            display: block;
            max-width: 660px;
        }

        .sr-schedule-table-wrap {
            padding: 0 64px 44px;
            overflow-x: auto;
        }

        .sr-daily-table-wrap {
            padding: 0 64px 44px;
            overflow-x: auto;
        }

        .sr-compounds-body {
            padding: 0 64px 0;
        }

        .sr-compounds-body .tier-section-header {
            margin-left: 0;
            margin-right: 0;
        }

        .sr-compounds-body .full-card {
            margin-left: 0;
            margin-right: 0;
        }

        .sr-compounds-body .full-card-header {
            background-size: cover;
            background-position: center;
        }

        .sr-compounds-body .full-card-body {
            padding: 32px 40px;
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 52px;
        }

        .sr-compounds-body .full-card-sourcing {
            margin: 0 40px 32px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            display: block;
            background: none;
        }

        .sr-card-details {
            border-left: 1px solid var(--border);
            padding-left: 40px;
        }

        .sr-detail-row {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 20px;
        }

        .sr-detail-row:last-child { margin-bottom: 0; }

        .sr-detail-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .sr-detail-value {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.65;
        }

        .sr-sourcing-box {
            background: var(--base);
            padding: 18px 22px;
            border: 1px solid var(--border);
        }

        .sr-sourcing-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 8px;
        }

        .sr-sourcing-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.65;
        }

        .sr-sourcing-text em {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            font-style: normal;
            color: var(--accent);
        }

        .sr-lock-wrapper {
            position: relative;
            background: var(--base);
        }

        .sr-lock-fade {
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--base));
            margin-top: -100px;
            position: relative;
            z-index: 2;
        }

        .sr-lock-panel {
            padding: 24px 64px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 18px;
        }

        /* ── Tier section images (banner above tier header label row) ── */
        .tier-section-header {
            overflow: hidden;
        }
        .tier-section-image {
            display: block;
            width: 100%;
            height: 190px;
            object-fit: cover;
        }
        .tier-section-header-inner {
            padding: 14px 40px;
            display: flex;
            align-items: center;
            gap: 22px;
        }
        .tier-section-header:has(.tier-section-label.foundation) .tier-section-header-inner {
            border-left: 4px solid var(--tier-foundation);
            background: var(--tier-foundation-bg);
        }
        .tier-section-header:has(.tier-section-label.targeted) .tier-section-header-inner {
            border-left: 4px solid var(--tier-targeted);
            background: var(--tier-targeted-bg);
        }
        .tier-section-header:has(.tier-section-label.optimise) .tier-section-header-inner {
            border-left: 4px solid var(--tier-optimise);
            background: var(--tier-optimise-bg);
        }

        /* ── Section header images (schedule sections) ── */
        .section-header-image {
            display: block;
            width: 100%;
            height: 160px;
            object-fit: cover;
            margin-bottom: 0;
        }

        /* ── Compound card category image ── */
        .full-card-image {
            display: block;
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        /* ── Grade badge colours ── */
        .full-card-badge.grade-a { color: #1A5E3A; background: #E8F5EE; border-color: #B8DEC8; }
        .full-card-badge.grade-b { color: #8B5E1A; background: #FDF3E3; border-color: #E8D5A8; }
        .full-card-badge.grade-c { color: #5A5A6A; background: #F0F0F4; border-color: #D0D0DC; }

        /* ═══════════════════════════════════════════════
           MOBILE — ≤ 768px
        ═══════════════════════════════════════════════ */
        @media (max-width: 768px) {

            /* Nav — hide links, show wordmark only */
            .nav {
                padding: 14px 20px;
            }
            .wordmark { font-size: 20px; }
            .wordmark-tagline { display: none; }
            .nav-links { display: none; }

            /* Page switcher — sits below the nav (nav ~48px tall) */
            .page-switcher {
                top: 48px;
                left: 0;
                right: 0;
                width: 100%;
                transform: none;
                border-radius: 0;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                justify-content: flex-start;
            }
            .page-switcher::-webkit-scrollbar { display: none; }
            .switcher-btn {
                flex: 0 0 auto;
                padding: 14px 16px;
                font-size: 11px;
                letter-spacing: 0.1em;
                min-height: 44px;
                white-space: nowrap;
            }

            /* Hero — stack image below content, clear nav + switcher */
            .hero {
                grid-template-columns: 1fr;
                padding: 100px 0 0;
                min-height: auto;
            }
            .hero-content {
                padding: 32px 20px 48px;
            }
            .hero-image {
                /* AD1 — taller band so the vertical glass study reads as an image,
                   not a letterbox strip. */
                height: 340px;
            }
            .hero-image::after {
                background: linear-gradient(to bottom, var(--base) 0%, transparent 40%);
            }
            .hero-scroll { display: none; }
            .hero-headline { font-size: clamp(32px, 9vw, 48px); }

            /* Section padding — global reduction */
            .how-it-works,
            .report-preview,
            .report-contents,
            .personalisation-section,
            .comparison-section,
            .trust-section,
            .cta-section {
                padding: 64px 20px;
            }

            /* Restore nav-height buffer on the HIW first section at mobile */
            #page-hiw .how-it-works {
                padding-top: 125px;
            }

            /* How it works steps — 3-col → 1-col */
            .steps {
                grid-template-columns: 1fr;
            }
            .step {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding: 36px 24px;
            }
            .step:last-child { border-bottom: none; }

            /* Report preview */
            .preview-intro {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 32px;
            }
            .preview-headline { font-size: 34px; }

            /* Deep compound card */
            .deep-card-header {
                padding: 20px 20px;
                flex-wrap: wrap;
                gap: 12px;
            }
            .deep-card-body {
                grid-template-columns: 1fr;
            }
            .deep-card-left {
                padding: 24px 20px;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            .deep-card-right { padding: 24px 20px; }
            .sourcing-grid { grid-template-columns: 1fr; }
            .more-compounds-hint { padding: 16px 20px; }

            /* Report contents — 3-col → 1-col */
            .contents-grid { grid-template-columns: 1fr; }
            .contents-item { padding: 28px 24px; }

            /* Personalisation — header + grid */
            .personalisation-header {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }
            .personalisation-grid { grid-template-columns: 1fr; }
            .factor-card { padding: 28px 24px; }

            .comparison-headline { font-size: 30px; }

            /* "Why not just ask the AI": stat row stacks via .stats-grid rule above */
            .ai-compare-section { padding: 80px 24px; }
            .ai-block { margin-top: 40px; }
            .ai-block-body { font-size: 14.5px; }
            .ai-compare-closer { font-size: 23px; }

            /* Stats — 3-col → 1-col */
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item {
                padding: 40px 24px;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            .stat-item:last-child { border-bottom: none; }
            .stat-number { font-size: 64px; }
            .trust-quote { font-size: 28px; }
            .trust-statement { margin-top: 56px; }

            /* CTA */
            .btn-primary, .btn-outline {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
            }

            /* Report page header — fixed like the homepage nav */
            .report-header { padding: 14px 20px; }
            .report-wordmark { font-size: 20px; }
            .report-page { padding-top: 52px; }

            /* Report schedule tables — horizontal scroll */
            .sr-schedule-table-wrap,
            .schedule-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            /* Report sections padding */
            .sr-section { padding-left: 20px; padding-right: 20px; }
            .sr-section-header { padding: 28px 0 20px; }

            /* Report intro panel */
            .sr-intro-panel { padding: 40px 20px; }
            .sr-intro-name { font-size: 52px; }

            /* Report tier legend — stack */
            .sr-intro-tier-legend { gap: 16px; }
            .sr-tier-item { flex-direction: column; gap: 8px; }

            /* View bar tabs */
            .report-view-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }

            /* Compound full cards */
            .full-card-header {
                padding: 20px 20px;
                flex-wrap: wrap;
                gap: 12px;
            }
            .full-card-body { padding: 20px 20px; }
            .full-card-grid { grid-template-columns: 1fr !important; }
            .full-card-grid > div:first-child { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }

            /* Intelligence section — 3-col pillars → 1-col */
            .intelligence-section { padding: 64px 20px; }
            .intelligence-header { margin-bottom: 40px; }
            .intelligence-headline { font-size: clamp(28px, 8vw, 42px); }
            .intelligence-pillars { grid-template-columns: 1fr; }
            .intelligence-pillar { padding: 36px 24px; }
        }

        @media (max-width: 480px) {
            .switcher-btn { font-size: 11px; padding: 14px 14px; }
            .hero-headline { font-size: clamp(28px, 8vw, 38px); }
            .hero-sub { font-size: 14px; }
            .step-number { font-size: 52px; }
            .step-title { font-size: 24px; }
            .contents-item-title { font-size: 18px; }
            .factor-title { font-size: 18px; }
            .stat-number { font-size: 52px; }
        }

        /* Sticky mobile CTA — persistent report + checker entry at any scroll depth */
        .sticky-cta { display: none; }
        @media (max-width: 768px) {
            .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--surface); border-top: 1px solid var(--border); padding: 9px 11px; gap: 9px; box-shadow: 0 -2px 14px rgba(0,0,0,0.09); }
            .sticky-cta-primary { flex: 1; text-align: center; background: var(--accent); color: #fff; font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; padding: 13px 8px; text-decoration: none; border-radius: 2px; }
            .sticky-cta-secondary { display: flex; align-items: center; white-space: nowrap; color: var(--accent); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--accent); border-radius: 2px; padding: 0 13px; }
            body { padding-bottom: 62px; }
        }

/* ===== block 2 ===== */
/* ─── REPORT VIEW TOGGLE ────────────────────────── */
        .report-view-bar {
            padding: 0 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .report-view-tabs {
            display: flex;
            gap: 0;
        }

        .view-tab {
            padding: 18px 28px;
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--stone);
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
        }

        .view-tab.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

        .view-tab:hover:not(.active) { color: var(--primary); }

        .report-view { display: none; }
        .report-view.active { display: block; }

        /* ─── SUMMARY VIEW ──────────────────────────────── */
        .summary-body { padding: 0 64px 80px; }

        .notice-bar {
            margin-top: 32px;
            border: 1px solid #C9A96E;
            background: #FEFBF5;
            padding: 20px 28px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 2px;
        }

        .notice-bar + .notice-bar { margin-top: 0; }

        .notice-icon {
            font-size: 14px;
            line-height: 1.6;
            flex-shrink: 0;
        }

        .notice-content { flex: 1; }

        .notice-title {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #8B6914;
            margin-bottom: 4px;
        }

        .notice-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.65;
        }

        .summary-intro {
            margin-top: 40px;
            margin-bottom: 4px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .summary-intro h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 36px;
            color: var(--primary);
        }

        .summary-hint {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.12em;
            color: var(--stone);
            padding-bottom: 6px;
        }

        /* Stack at a glance table */
        .stack-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid var(--border);
            background: var(--surface);
        }

        .stack-table thead tr {
            border-bottom: 1px solid var(--border);
            background: var(--stone-light);
        }

        .stack-table th {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--stone);
            padding: 14px 24px;
            text-align: left;
            font-weight: 400;
        }

        .stack-table td {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        .stack-table tr:last-child td { border-bottom: none; }

        .stack-table tr:hover td { background: #FAFAF8; }

        .tbl-compound {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--primary);
        }

        .tbl-tier {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            padding: 3px 8px;
            border-radius: 1px;
            white-space: nowrap;
        }

        .tbl-tier.foundation {
            color: var(--accent);
            background: var(--accent-muted);
        }

        .tbl-tier.targeted {
            color: #6B3A52;
            background: #F7EEF3;
        }

        .tbl-tier.optimise {
            color: var(--stone);
            background: var(--stone-light);
        }

        .tbl-dose {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--primary);
        }

        .tbl-when {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
        }

        .tbl-week {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            text-align: center;
        }

        .tbl-grade {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--accent);
            letter-spacing: 0.06em;
        }

        /* Summary sourcing note */
        .sourcing-note {
            margin-top: 32px;
            padding: 24px 32px;
            border: 1px solid var(--border);
            background: var(--surface);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .sourcing-note-icon {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            color: var(--accent);
            text-transform: uppercase;
            padding-top: 2px;
            white-space: nowrap;
        }

        .sourcing-note-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
            line-height: 1.7;
        }

        /* ─── TIER SECTION DIVIDERS ─────────────────────── */
        .tier-section { margin-top: 0; }

        .tier-section-header {
            padding: 16px 44px;
            background: var(--stone-light);
            border: 1px solid var(--border);
            border-bottom: none;
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 52px;
        }

        .tier-section:first-child .tier-section-header { margin-top: 0; }

        .tier-section-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .tier-section-label.foundation { color: var(--accent); }
        .tier-section-label.targeted { color: #6B3A52; }
        .tier-section-label.optimise { color: var(--stone); }

        .tier-section-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--accent); /* H2 — darkened from var(--stone) for legibility over photo bands */
        }

        /* ─── FULL COMPOUND CARDS ───────────────────────── */
        .full-card {
            border: 1px solid var(--border);
            border-top: none;
            background: var(--surface);
        }

        .full-card-header {
            padding: 26px 44px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
        }

        .full-card-name {
            font-family: 'DM Mono', monospace;
            font-size: 15px;
            color: var(--primary);
            letter-spacing: 0.03em;
            flex: 1;
        }

        .full-card-badge {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            padding: 4px 12px;
            border-radius: 1px;
        }

        .full-card-badge.grade {
            color: var(--accent);
            background: var(--accent-muted);
        }

        .full-card-badge.foundation {
            color: var(--accent);
            background: var(--accent-muted);
            opacity: 0.7;
        }

        .full-card-badge.targeted {
            color: #6B3A52;
            background: #F7EEF3;
        }

        .full-card-badge.optimise {
            color: var(--stone);
            background: var(--stone-light);
        }

        .full-card-dose {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            background: var(--stone-light);
            padding: 5px 14px;
            border-radius: 1px;
        }

        .full-card-body {
            padding: 36px 44px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .full-field {
            margin-bottom: 26px;
        }

        .full-field:last-child { margin-bottom: 0; }

        .full-field-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 8px;
        }

        .full-field-value {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            color: var(--primary);
            line-height: 1.75;
        }

        .full-field-value strong {
            font-weight: 500;
            color: var(--accent);
        }

        .full-field-mono {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--primary);
            line-height: 1.7;
            display: block;
        }

        .full-field-note {
            display: block;
            margin-top: 10px;
            font-family: 'Inter', sans-serif;
            font-style: italic;
            font-size: 12.5px;
            color: var(--stone);
            line-height: 1.65;
        }

        .full-card-sourcing {
            margin: 0 44px 36px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
        }

        /* Single-column variant: one sourcing note, no false quality gap implied */
        .full-card-sourcing.sourcing-single {
            grid-template-columns: 1fr;
        }

        /* Two-column with labelled gap explanation */
        .sourcing-gap-note {
            grid-column: 1 / -1;
            background: var(--base);
            padding: 10px 26px;
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            color: var(--stone);
            border-top: 1px solid var(--border);
        }

        .sourcing-box-inner {
            background: var(--base);
            padding: 22px 26px;
        }

        .sourcing-box-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 10px;
        }

        .sourcing-box-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.7;
        }

        .sourcing-box-text em {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            font-style: normal;
            color: var(--accent);
        }

        /* ─── FULL REPORT SECONDARY SECTIONS ─────────────── */
        .full-report-section {
            margin-top: 60px;
            border: 1px solid var(--border);
            background: var(--surface);
        }

        .full-report-section-header {
            padding: 30px 44px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .full-report-section-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 30px;
            color: var(--primary);
        }

        .full-report-section-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--accent); /* H2 — darkened from var(--stone) for AA contrast over photo bands */
            padding-bottom: 4px;
        }

        .full-report-section-body {
            padding: 32px 44px;
        }

        /* Sleep stack table */
        .sleep-stack-table {
            width: 100%;
            border-collapse: collapse;
        }

        .sleep-stack-table th {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--stone);
            padding: 14px 20px;
            text-align: left;
            font-weight: 400;
            border-bottom: 1px solid var(--border);
            background: var(--stone-light);
        }

        .sleep-stack-table td {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            line-height: 1.55;
            vertical-align: top;
        }

        .sleep-stack-table tr:last-child td { border-bottom: none; }

        .sleep-compound-name {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--primary);
        }

        .sleep-stack-intro {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            color: var(--primary);
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .sleep-stack-notice {
            margin-top: 20px;
            padding: 16px 22px;
            border: 1px solid #C9A96E;
            background: #FEFBF5;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: var(--primary);
            line-height: 1.65;
        }

        /* Current supplements */
        .curr-supps-table {
            width: 100%;
            border-collapse: collapse;
        }

        .curr-supps-table th {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--stone);
            padding: 14px 20px;
            text-align: left;
            font-weight: 400;
            border-bottom: 1px solid var(--border);
            background: var(--stone-light);
        }

        .curr-supps-table td {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            line-height: 1.55;
            vertical-align: top;
        }

        .curr-supps-table tr:last-child td { border-bottom: none; }

        .curr-supp-name {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--primary);
        }

        .curr-supp-verdict {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            padding: 3px 10px;
            border-radius: 1px;
            white-space: nowrap;
        }

        .curr-supp-verdict.upgrade {
            color: var(--accent);
            background: var(--accent-muted);
        }

        .curr-supp-verdict.continue {
            color: #7A6A3A;
            background: #FFF8E7;
        }

        .curr-verdict {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 1px;
            white-space: nowrap;
        }

        .curr-verdict.keep    { color: var(--tier-foundation);   background: var(--tier-foundation-bg); }
        .curr-verdict.upgrade { color: #7A6A3A;                  background: #FEFBF5; }
        .curr-verdict.adjust  { color: var(--tier-targeted);     background: var(--tier-targeted-bg); }
        .curr-verdict.drop    { color: #8B2525;                  background: #FEF2F2; }

        /* What to track */
        .track-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
        }

        .track-item {
            background: var(--surface);
            padding: 28px 30px;
        }

        .track-item-when {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .track-item-title {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .track-item-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12.5px;
            color: var(--stone);
            line-height: 1.65;
        }

        /* Reassessment */
        .reassessment-body {
            padding: 32px 44px;
        }

        .reassessment-body p {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--primary);
            line-height: 1.8;
            max-width: 780px;
            margin-bottom: 20px;
        }

        .reassessment-body p:last-child { margin-bottom: 0; }

        /* ─── SCHEDULE TAB ──────────────────────────────── */
        .schedule-view-body {
            padding: 0 64px 80px;
        }

        .schedule-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-top: 48px;
            margin-bottom: 16px;
        }

        .schedule-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 42px;
            color: var(--primary);
        }

        .print-btn {
            padding: 12px 24px;
            background: var(--accent);
            color: white;
            border: none;
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 1px;
            transition: opacity 0.2s;
            margin-bottom: 6px;
        }

        .print-btn:hover { opacity: 0.82; }

        .schedule-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            color: var(--stone);
            margin-bottom: 12px;
            line-height: 1.7;
            max-width: 660px;
        }

        .schedule-cycling-ref {
            margin-bottom: 28px;
            padding: 16px 22px;
            border: 1px solid var(--border);
            background: var(--stone-light);
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            line-height: 1.8;
            letter-spacing: 0.02em;
        }

        .schedule-table-wrap {
            border: 1px solid var(--border);
            background: var(--surface);
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table thead tr {
            background: var(--stone-light);
        }

        .schedule-table th {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--stone);
            padding: 16px 22px;
            text-align: left;
            font-weight: 400;
            border-bottom: 1px solid var(--border);
        }

        .schedule-table td {
            padding: 18px 22px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        .schedule-table tr:last-child td { border-bottom: none; }
        .schedule-table tr:hover td { background: #FAFAF8; }

        .sch-week {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            white-space: nowrap;
        }

        .sch-compound {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--primary);
        }

        .sch-dose {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--primary);
            line-height: 1.5;
        }

        .sch-timing {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
        }

        .sch-notes {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--stone);
            line-height: 1.55;
        }

        .sch-tier {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            padding: 3px 8px;
            border-radius: 1px;
            white-space: nowrap;
        }

        .sch-tier.foundation { color: var(--accent); background: var(--accent-muted); }
        .sch-tier.targeted { color: #5B4A8B; background: #F0EDF8; }
        .sch-tier.optimise { color: var(--stone); background: var(--stone-light); }

        .schedule-cycling-note {
            margin-top: 24px;
            padding: 20px 26px;
            border: 1px solid #C9A96E;
            background: #FEFBF5;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .schedule-cycling-note-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #8B6914;
            white-space: nowrap;
            padding-top: 1px;
        }

        .schedule-cycling-note-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.65;
        }

        /* ─── DAILY SCHEDULE ────────────────────────────── */
        .daily-schedule-section {
            margin-top: 44px;
            padding-top: 36px;
            border-top: 1px solid var(--border);
        }
        .daily-schedule-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.45rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            color: var(--primary);
            margin: 0 0 6px 0;
        }
        .daily-schedule-desc {
            font-size: 0.875rem;
            color: var(--stone);
            margin-bottom: 24px;
            line-height: 1.65;
            max-width: 580px;
            font-weight: 300;
        }
        .daily-table-wrap { overflow-x: auto; margin-bottom: 20px; }
        .daily-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.84rem;
        }
        .daily-table thead tr { border-bottom: 2px solid var(--border); }
        .daily-table th {
            text-align: left;
            padding: 10px 14px;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--stone);
            font-weight: 400;
            white-space: nowrap;
        }
        .daily-table td {
            padding: 14px 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
            line-height: 1.55;
        }
        .daily-table tr:last-child td { border-bottom: none; }
        .daily-table tr:hover td { background: #FAFAF8; }
        .daily-slot {
            font-family: 'DM Mono', monospace;
            font-size: 0.76rem;
            color: var(--stone);
            white-space: nowrap;
            min-width: 150px;
        }
        .daily-compound {
            font-weight: 500;
            color: var(--primary);
            min-width: 160px;
        }
        .daily-dose {
            font-family: 'DM Mono', monospace;
            font-size: 0.76rem;
            color: var(--primary);
            white-space: nowrap;
            min-width: 110px;
        }
        .daily-reason { color: var(--stone); font-size: 0.82rem; max-width: 280px; }
        .timing-tag {
            display: inline-block;
            font-family: 'DM Mono', monospace;
            font-size: 8px;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 2px 7px;
            border-radius: 2px;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .timing-tag.fat-soluble { background: rgba(139,99,47,0.09); color: #8B632F; }
        .timing-tag.stomach { background: rgba(91,74,139,0.09); color: #5B4A8B; }
        .timing-tag.timing-dep { background: rgba(26,107,60,0.09); color: var(--accent); }
        .fat-reference-note {
            background: var(--stone-light);
            border: 1px solid var(--border);
            border-radius: 3px;
            padding: 14px 18px;
            font-size: 0.82rem;
            color: var(--stone);
            line-height: 1.65;
            margin-top: 4px;
        }
        .fat-reference-note strong { color: var(--primary); font-weight: 500; }

        /* ─── RESPONSIVE: hide redundant nav text at narrow widths ─── */
        @media (max-width: 1100px) {
            /* Hide "How it works" and "Sample report" text links —
               the page switcher already handles navigation at all widths */
            .nav-links li:not(:last-child) { display: none; }
            /* Reduce nav padding to give the button more room */
            .nav { padding-left: 32px; padding-right: 32px; }
            /* Hide "Sample Report" type label in report header — button stays */
            .report-type { display: none; }
            /* Reduce report-header padding at narrow widths */
            .report-header { padding: 24px 32px; }
        }

        @media print {
            .page-switcher, .report-view-bar { display: none !important; }
            .report-view { display: none !important; }
            #view-schedule { display: block !important; }
            .print-btn { display: none !important; }
            body { background: white; }
        }

        /* ─── SAMPLE LOCK ELEMENTS ──────────────────────── */
        .sample-lock-wrapper {
            position: relative;
            margin-top: 0;
        }

        .sample-blurred-preview {
            filter: blur(4px);
            opacity: 0.28;
            pointer-events: none;
            user-select: none;
        }

        .sample-lock-panel {
            position: relative;
            margin-top: -2px;
            border: 1px solid var(--border);
            background: linear-gradient(to bottom, rgba(249,247,244,0.92), var(--base));
            padding: 52px 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }

        .sample-lock-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .sample-lock-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 32px;
            color: var(--primary);
            line-height: 1.2;
        }

        .sample-lock-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--stone);
            max-width: 520px;
            line-height: 1.75;
        }

        .sample-lock-features {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 4px 0;
        }

        .sample-lock-feature {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sample-lock-feature::before {
            content: '·';
            color: var(--border);
        }

        .sample-lock-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: var(--accent);
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 1px;
            transition: opacity 0.2s;
            margin-top: 8px;
        }

        .sample-lock-btn:hover { opacity: 0.85; }

        .sample-lock-assurance {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            color: var(--stone);
        }

        @media (max-width: 768px) {
            .sample-lock-panel {
                padding: 40px 24px;
                margin: 0 16px;
            }
            .sample-lock-headline { font-size: 24px; }
            .sample-lock-features { gap: 16px; }
            .sample-lock-btn { padding: 14px 28px; width: 100%; justify-content: center; }

            .sr-final-cta { padding: 40px 20px; }
        }

        /* ── SAMPLE REPORT FULL EMBED ──────────────────── */
        #sr-iframe {
            width: 100%;
            min-height: 400px;
            border: none;
            display: block;
            overflow-x: hidden;
        }

        /* ── CLOSING TEASER ──────────────────────────────── */
        .sr-closing-teaser {
            position: relative;
            overflow: hidden;
            max-height: 440px;
            background:
                linear-gradient(rgba(232,242,236,0.82), rgba(232,242,236,0.82)),
                url('/pipeline/assets/closing-one-last-note.png') center/cover no-repeat;
            border-top: 1px solid rgba(42,74,62,0.15);
            border-bottom: 1px solid rgba(42,74,62,0.15);
        }
        .sr-closing-inner {
            padding: 44px 64px 80px;
            max-width: 820px;
        }
        .sr-closing-from {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            opacity: 0.7;
            margin-bottom: 20px;
        }
        .sr-closing-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .sr-closing-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            color: var(--primary);
            line-height: 1.85;
        }
        .sr-closing-teaser-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(to bottom, transparent, rgba(232,242,236,0.97));
            pointer-events: none;
        }

        /* ── FINAL CTA ───────────────────────────────────── */
        .sr-final-cta {
            padding: 64px;
            text-align: center;
            background: white;
            border-top: 1px solid var(--border);
        }
        .sr-final-cta-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 300;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .sr-final-cta-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--stone);
            margin-bottom: 28px;
        }

/* ===== block 3 ===== */
/* ─── PAYMENT PAGE ──────────────────────────────── */
        .payment-page {
            background-color: var(--base); /* AD6 (Fable 2026-06): flat cream, mirrors the QN8 questionnaire fix; was a 3.9MB fixed foundations.png on the checkout path */
            min-height: 100vh;
            padding-top: 80px;
        }

        .payment-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 26px 64px;
            background: var(--accent); /* AD6 (Fable 2026-06): flat; the section image was invisible under the 0.92 dark wash (473KB on the checkout path) */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .payment-nav-wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 24px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }

        .payment-nav-wordmark .wordmark-tagline {
            color: rgba(255,255,255,0.65);
        }

        .payment-nav-security {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,0.25);
            padding: 7px 16px;
        }

        .payment-nav-security::before {
            content: '🔒';
            font-size: 11px;
        }

        /* Payment layout */
        .payment-layout {
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 32px;
            padding: 48px 64px 64px;
            align-items: flex-start;
        }

        /* Left: what you get */
        .payment-left {
            background: white;
            border: 1px solid var(--border);
            padding: 52px 56px;
        }

        .payment-section-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 24px;
        }

        .payment-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(38px, 3.5vw, 52px);
            color: var(--primary);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .payment-headline em {
            font-style: italic;
        }

        .payment-sub {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: var(--stone);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 52px;
        }

        /* What's included list */
        .payment-includes-title {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .payment-includes-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .payment-include-item {
            display: grid;
            grid-template-columns: 32px 1fr;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            align-items: flex-start;
        }

        .payment-include-num {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            padding-top: 2px;
        }

        .payment-include-body {}

        .payment-include-title {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .payment-include-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
            line-height: 1.65;
        }

        .payment-include-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .payment-include-tag {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 3px 10px;
            border-radius: 1px;
        }

        /* Sample compound preview */
        .payment-sample-card {
            margin-top: 48px;
            border: 1px solid var(--border);
            background: var(--surface);
        }

        .payment-sample-card-label {
            padding: 12px 28px;
            background: var(--stone-light);
            border-bottom: 1px solid var(--border);
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .payment-sample-compound {
            padding: 24px 28px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 16px;
            align-items: center;
            border-bottom: 1px solid var(--border);
        }

        .payment-sample-compound-name {
            font-family: 'DM Mono', monospace;
            font-size: 14px;
            color: var(--primary);
        }

        .payment-sample-compound-dose {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--stone);
            text-align: right;
        }

        .payment-sample-compound-rationale {
            padding: 0 28px 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
            line-height: 1.65;
        }

        /* Right: checkout */
        .payment-right {
            padding: 48px 44px;
            background: white;
            border: 1px solid var(--border);
            position: sticky;
            top: 32px;
        }

        .payment-card {
            background: white;
        }

        .payment-price-block {
            margin-bottom: 36px;
            padding-bottom: 36px;
            border-bottom: 1px solid var(--border);
        }

        .payment-price-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 16px;
        }

        .payment-price {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 58px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

        .payment-price-currency {
            font-size: 28px;
            vertical-align: super;
            font-weight: 300;
        }

        .payment-price-note {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--stone);
            line-height: 1.5;
        }

        .payment-what-included {
            margin: 20px 0 32px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .payment-what-included-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13px;
            color: var(--primary);
            line-height: 1.5;
        }

        .payment-check {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            flex-shrink: 0;
            padding-top: 1px;
        }

        /* Form */
        .payment-form-title {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: var(--base);
            border: 1px solid var(--border);
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: var(--primary);
            border-radius: 1px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-input:focus {
            border-color: var(--accent);
            background: white;
        }

        .form-input::placeholder {
            color: var(--stone);
            opacity: 0.6;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        /* Stripe card mockup */
        .stripe-card-field {
            width: 100%;
            padding: 14px 16px;
            background: var(--base);
            border: 1px solid var(--border);
            border-radius: 1px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stripe-card-icon {
            font-size: 18px;
            opacity: 0.5;
        }

        .stripe-card-placeholder {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--stone);
            opacity: 0.7;
            letter-spacing: 0.08em;
        }

        .payment-submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--accent);
            color: white;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 1px;
            margin-top: 28px;
            transition: opacity 0.2s;
        }

        .payment-submit-btn:hover { opacity: 0.85; }

        .payment-assurance {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .payment-assurance-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--stone);
        }

        .payment-assurance-item::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.6;
        }

        .stripe-badge {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stripe-badge-text {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--stone);
        }

        .stripe-logo {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #635BFF;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            /* Payment nav */
            .payment-nav {
                padding: 18px 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .payment-nav-security { display: none; }
            .payment-nav-wordmark { font-size: 20px; }

            /* Layout — stack left above right */
            .payment-layout {
                grid-template-columns: 1fr;
                padding: 24px 16px 48px;
                gap: 20px;
            }

            /* Left panel */
            .payment-left {
                padding: 28px 20px;
            }
            .payment-includes-list { margin-bottom: 28px; }
            .payment-include-item { padding: 16px 0; }

            /* Right panel (order summary + form) */
            .payment-right {
                padding: 28px 20px;
            }

            /* Price display */
            .payment-price { font-size: 52px; }

            /* Form row — stack side by side fields */
            .form-row { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .payment-layout { padding: 16px 12px 40px; }
            .payment-left,
            .payment-right { padding: 24px 16px; }
        }

/* ===== block 4 ===== */
.pay-trust-faq{max-width:1080px;margin:0 auto;padding:72px 64px 8px;}
              .pay-eyebrow{font-family:'DM Mono',monospace;font-size:9px;letter-spacing:0.2em;text-transform:uppercase;color:var(--accent);margin-bottom:22px;}
              .pay-trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px 36px;margin-bottom:64px;}
              .pay-trust-grid > div{font-family:'Inter',sans-serif;font-weight:300;font-size:14px;line-height:1.55;color:var(--primary);border-left:2px solid #E5E0D8;padding-left:14px;}
              .pay-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 48px;}
              .pay-faq-grid h3{font-family:'Cormorant Garamond',serif;font-weight:500;font-size:18px;color:var(--primary);margin:0 0 7px;}
              .pay-faq-grid p{font-family:'Inter',sans-serif;font-weight:300;font-size:13.5px;line-height:1.6;color:var(--stone);margin:0;}
              @media (max-width:768px){
                .pay-trust-faq{padding:48px 24px 8px;}
                .pay-trust-grid{grid-template-columns:1fr;gap:16px;margin-bottom:48px;}
                .pay-faq-grid{grid-template-columns:1fr;gap:24px;}
              }

/* ===== block 5 ===== */
/* ─── ON YOUR SIDE PAGE ─────────────────────────── */
        .oys-hero {
            background: linear-gradient(rgba(42,74,62,0.86), rgba(42,74,62,0.86)), url('/pipeline/assets/ad6-tier-foundation.jpg') center/cover no-repeat; /* AD6 (Fable 2026-06): fern-in-glass ties to the report hero; was off-system oys-hero.png; 0.86 = canonical report-intro overlay */
            padding: 180px 64px 120px;
            position: relative;
            overflow: hidden;
        }
        .oys-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 55%);
            pointer-events: none;
        }
        .oys-hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 96px;
            align-items: end;
        }
        .oys-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.38);
            margin-bottom: 32px;
        }
        .oys-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(52px, 6vw, 88px);
            line-height: 1.0;
            color: white;
            letter-spacing: -0.01em;
        }
        .oys-manifesto {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(17px, 1.8vw, 22px);
            line-height: 1.75;
            color: rgba(255,255,255,0.7);
            border-left: 1px solid rgba(255,255,255,0.2);
            padding-left: 32px;
            margin-bottom: 44px;
        }
        .oys-hero-note {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: rgba(255,255,255,0.35);
            line-height: 1.7;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
        }

        /* Intro prose */
        .oys-intro {
            padding: 96px 64px;
            border-bottom: 1px solid var(--border);
            background: var(--base);
        }
        .oys-intro-inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .oys-intro-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 15.5px;
            line-height: 1.95;
            color: #3C3C3C;
        }
        .oys-intro-text p { margin-bottom: 22px; }
        .oys-intro-text p:last-child { margin-bottom: 0; }
        .oys-pull-quote {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(21px, 2.4vw, 29px);
            line-height: 1.55;
            color: var(--accent);
            border-left: 2px solid var(--accent);
            padding-left: 32px;
            margin: 52px 0;
        }

        /* Content sections */
        .oys-section {
            padding: 96px 64px;
            border-bottom: 1px solid var(--border);
            background: var(--base);
            background-size: cover;
            background-position: center;
        }
        .oys-section.alt-bg { background-color: var(--stone-light); }
        .oys-section-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 88px;
            align-items: start;
        }
        .oys-section-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 18px;
        }
        .oys-section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(26px, 2.6vw, 38px);
            line-height: 1.12;
            color: var(--primary);
            margin-bottom: 28px;
        }
        .oys-section-heading em { font-style: italic; }
        .oys-section-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 13.5px;
            line-height: 1.9;
            color: #4A4A4A;
        }
        .oys-section-body p { margin-bottom: 16px; }
        .oys-section-body p:last-child { margin-bottom: 0; }

        /* Report excerpt box */
        .oys-excerpt {
            background: var(--surface);
            border: 1px solid var(--border);
        }
        .oys-excerpt-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-excerpt-field {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
        }
        .oys-excerpt-field:last-child { border-bottom: none; }
        .oys-excerpt-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 6px;
        }
        .oys-excerpt-value {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            line-height: 1.7;
            color: var(--primary);
        }
        .oys-excerpt-value strong { font-weight: 500; color: var(--accent); }
        .oys-excerpt-search {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--stone);
            padding: 13px 24px;
            background: var(--stone-light);
            border-top: 1px solid var(--border);
        }
        .oys-excerpt-search em { color: var(--accent); font-style: normal; }

        /* Avoid list */
        .oys-avoid-list { border: 1px solid var(--border); background: var(--surface); }
        .oys-avoid-header {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-avoid-item {
            display: flex;
            gap: 20px;
            padding: 14px 24px;
            border-bottom: 1px solid var(--border);
            align-items: baseline;
        }
        .oys-avoid-item:last-child { border-bottom: none; }
        .oys-avoid-compound {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--primary);
            min-width: 200px;
            flex-shrink: 0;
            line-height: 1.5;
        }
        .oys-avoid-reason {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--stone);
            line-height: 1.65;
        }
        .oys-no-affiliate {
            background: var(--accent);
            padding: 14px 24px;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
            text-align: center;
        }

        /* Deferred compound box */
        .oys-deferred {
            border: 1px solid var(--border);
            background: var(--surface);
        }
        .oys-deferred-header {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-deferred-name {
            padding: 20px 24px 0;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 22px;
            color: var(--primary);
        }
        .oys-deferred-verdict {
            display: inline-block;
            margin: 8px 24px 16px;
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--stone);
            background: var(--stone-light);
            padding: 4px 10px;
            border: 1px solid var(--border);
        }
        .oys-deferred-field {
            padding: 16px 24px;
            border-top: 1px solid var(--border);
        }
        .oys-deferred-field-key {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--stone);
            margin-bottom: 6px;
        }
        .oys-deferred-field-val {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 12px;
            color: var(--primary);
            line-height: 1.7;
        }

        /* Blood work */
        .oys-bw { border: 1px solid var(--border); background: var(--surface); overflow: hidden; }
        .oys-bw-header {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-bw-row {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
        }
        .oys-bw-row:last-child { border-bottom: none; }
        .oys-bw-test {
            font-family: 'DM Mono', monospace;
            font-size: 10.5px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .oys-bw-detail {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 11.5px;
            color: var(--stone);
            line-height: 1.6;
        }
        .oys-bw-detail strong { font-weight: 500; color: var(--primary); }
        .oys-bw-footer {
            background: var(--stone-light);
            border-top: 1px solid var(--border);
            padding: 14px 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 11.5px;
            color: var(--stone);
            line-height: 1.6;
            font-style: italic;
        }

        /* Coordination diagram */
        .oys-coord { border: 1px solid var(--border); background: var(--surface); overflow: hidden; }
        .oys-coord-header {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-muted);
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-coord-row {
            display: grid;
            grid-template-columns: 1fr 28px 1fr;
            align-items: stretch;
            border-bottom: 1px solid var(--border);
        }
        .oys-coord-row:last-child { border-bottom: none; }
        .oys-coord-left {
            padding: 16px 20px;
            border-right: 1px solid var(--border);
        }
        .oys-coord-mid {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--accent);
            border-right: 1px solid var(--border);
        }
        .oys-coord-right { padding: 16px 20px; }
        .oys-coord-compound {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .oys-coord-detail {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 11px;
            color: var(--stone);
            line-height: 1.5;
        }

        /* Sleep grid */
        .oys-sleep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }
        .oys-sleep-type { background: var(--surface); padding: 24px; }
        .oys-sleep-type-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 6px;
        }
        .oys-sleep-type-name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .oys-sleep-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            gap: 8px;
        }
        .oys-sleep-row:last-child { border-bottom: none; }
        .oys-sleep-cmpd {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .oys-sleep-mech {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 10.5px;
            color: var(--stone);
            text-align: right;
            line-height: 1.4;
        }

        /* Dietary fields */
        .oys-diet-count {
            background: var(--accent);
            padding: 28px 32px;
            margin-bottom: 1px;
            display: flex;
            align-items: baseline;
            gap: 16px;
        }
        .oys-diet-count-num {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 64px;
            color: white;
            line-height: 1;
        }
        .oys-diet-count-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }
        .oys-diet-fields {
            border: 1px solid var(--border);
            border-top: none;
            background: var(--surface);
        }
        .oys-diet-field-row {
            display: flex;
            align-items: baseline;
            gap: 16px;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border);
        }
        .oys-diet-field-row:last-child { border-bottom: none; }
        .oys-diet-field-name {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--stone);
            min-width: 160px;
            flex-shrink: 0;
        }
        .oys-diet-field-verdict {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 11.5px;
            color: var(--primary);
            line-height: 1.5;
        }
        .oys-diet-field-verdict.food-first { color: var(--accent); font-weight: 400; }

        /* Closing */
        .oys-closing {
            background: var(--accent);
            padding: 120px 64px;
            position: relative;
            overflow: hidden;
        }
        .oys-closing::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 15% 85%, rgba(255,255,255,0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .oys-closing-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .oys-closing-headline {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(28px, 3.5vw, 48px);
            line-height: 1.35;
            color: white;
        }
        .oys-closing-right {}
        .oys-closing-body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            line-height: 1.9;
            color: rgba(255,255,255,0.6);
            margin-bottom: 40px;
        }
        .oys-closing-body p { margin-bottom: 16px; }
        .oys-closing-body p:last-child { margin-bottom: 0; }

        @media (max-width: 900px) {
            .oys-hero-inner,
            .oys-section-inner,
            .oys-closing-inner { grid-template-columns: 1fr; gap: 48px; }
            .oys-hero,
            .oys-intro,
            .oys-section,
            .oys-closing { padding-left: 24px; padding-right: 24px; }
            .oys-avoid-compound { min-width: 130px; }
            .oys-coord-row { grid-template-columns: 1fr 24px 1fr; }
        }
