/* ================================================================
       CRITICAL: Prevent white page — force dark background
       These rules override any conflicting styles from default.hbs
       ================================================================ */
    html, body {
        background-color: #050505 !important;
        color: #F5F5F5 !important;
    }



   @font-face {
            font-family: 'Departure Mono';
            src: url('../fonts/DepartureMono-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            /* Palette */
            --void: #000000;
            --surface: #0A0A0A;
            --border: #1F1F1F;
            --triage-green: #00FF00;
            --hemorrhage-red: #B91C1C; /* Darkened deep red */
            --prestige-gold: #D4AF37;
            --surgical-white: #F5F5F5;
            --muted-steel: #8A8A8A;

            /* Contrast Readability Hierarchy */
            --text-primary: #F5F5F5;
            --text-secondary: #D4D4D4;
            --text-tertiary: #A3A3A3;
            --text-error-bright: #FF5555;

            /* Spacing */
            --sp-xs: 8px;
            --sp-sm: 16px;
            --sp-md: 32px;
            --sp-lg: 64px;
            --sp-xl: 120px;

            /* Typography */
            --font-heading: 'Departure Mono', monospace;
            --font-body: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
            background-color: #000000;
            overscroll-behavior: none;
        }

        body {
            background-color: #000000;
            color: var(--surgical-white);
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.5;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            overscroll-behavior: none;
        }

        /* Scroll Reveal: Progressive Enhancement via .js-enabled */
        .js-enabled .reveal-box {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(35px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 1s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .js-enabled .reveal-box.visible {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        /* Staggered Scroll Reveal Delay Utilities */
        .js-enabled .reveal-stagger > .reveal-box:nth-child(1),
        .js-enabled .reveal-stagger > *:nth-child(1) .reveal-box,
        .js-enabled .reveal-stagger > *:nth-child(1) {
            transition-delay: 0.1s;
        }
        .js-enabled .reveal-stagger > .reveal-box:nth-child(2),
        .js-enabled .reveal-stagger > *:nth-child(2) .reveal-box,
        .js-enabled .reveal-stagger > *:nth-child(2) {
            transition-delay: 0.25s;
        }
        .js-enabled .reveal-stagger > .reveal-box:nth-child(3),
        .js-enabled .reveal-stagger > *:nth-child(3) .reveal-box,
        .js-enabled .reveal-stagger > *:nth-child(3) {
            transition-delay: 0.4s;
        }
        .js-enabled .reveal-stagger > .reveal-box:nth-child(4),
        .js-enabled .reveal-stagger > *:nth-child(4) .reveal-box,
        .js-enabled .reveal-stagger > *:nth-child(4) {
            transition-delay: 0.55s;
        }
        .js-enabled .reveal-stagger > .reveal-box:nth-child(5),
        .js-enabled .reveal-stagger > *:nth-child(5) .reveal-box,
        .js-enabled .reveal-stagger > *:nth-child(5) {
            transition-delay: 0.7s;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 80px;
            position: relative;
        }

        /* Layer 3: Content wrapper above film grain (z-index 50) */
        .page-content-layer {
            position: relative;
            z-index: 100;
        }

        /* LAUNCH STRIP */
        .launch-strip {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 36px;
            z-index: 10000;
            background: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
        }

        .launch-strip-text {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.12em;
            color: var(--muted-steel);
            text-align: center;
            padding-right: 24px;
        }

        .launch-strip-text em {
            font-style: normal;
            color: var(--text-secondary);
        }

        .launch-strip-close {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--muted-steel);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            transition: color 0.2s ease;
        }

        .launch-strip-close:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        /* NAVIGATION */
        .custom-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            z-index: 9999;
            background: transparent;
            border-bottom: 1px solid transparent;
            display: flex;
            align-items: center;
            transition: background 0.3s ease,
                        border-bottom-color 0.3s ease,
                        backdrop-filter 0.3s ease,
                        -webkit-backdrop-filter 0.3s ease;
        }

        .nav-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 20px;
            color: #FFF;
            text-decoration: none;
            letter-spacing: -0.05em;
        }

        .nav-logo img {
            height: 24px;
            width: auto;
            vertical-align: middle;
        }

        .nav-right {
            display: grid;
            grid-template-areas: "stack";
            align-items: center;
        }

        .nav-cta {
            padding: 10px 20px;
            background: #FFF;
            color: #000;
            font-family: var(--font-heading);
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            border: 1px solid #FFF;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
            border-radius: 8px;
        }

        .nav-cta:hover {
            background: transparent;
            color: #FFF;
        }

        /* Hero Load Entrance Animation: Blur-to-Unblur Fade-Up */
        @keyframes heroFadeUpBlur {
            0% {
                opacity: 0;
                filter: blur(15px);
                transform: translateY(45px);
            }
            100% {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }

        /* Lighter mobile version — no blur filter (causes GPU freeze on mobile) */
        @keyframes heroFadeUpLight {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-load-animate {
            opacity: 0;
        }

        .hero-headline.hero-load-animate {
            animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.15s;
        }

        .hero-subhead.hero-load-animate {
            animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.35s;
        }

        .cta-container.hero-load-animate {
            animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.55s;
        }

        /* HERO SECTION */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: var(--sp-xl);
            padding-bottom: var(--sp-xl);
        }

        .hero-headline {
            font-size: 88px;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.04em;
            margin-bottom: 32px;
            color: #FFFFFF;
            max-width: 1200px;
        }

        /* French: Reduce headline size (more words) */
        html[lang="fr"] .hero-headline {
            font-size: 76px;
            letter-spacing: -0.03em;
        }

        /* Mobile-only line breaks (hidden on desktop) */
        .mobile-only-br {
            display: none;
        }

        /* Fixed height to prevent layout shift during typing */
        .hero-headline .objection-line {
            display: inline-block;
            min-height: 1.1em;
        }

        /* English: objection on a new line, doesn't shift, never goes up */
        body.en-mode .hero-headline .objection-line {
            display: block;
            min-height: 1.1em;
        }

        /* French: keep on same line, wraps inline word-by-word if needed */
        body.fr-mode .hero-headline .objection-line {
            display: inline;
        }

        .human-highlight {
            font-family: 'Cardo', serif;
            font-style: italic;
            font-weight: 400;
            color: #FFFFFF;
            letter-spacing: -0.02em;
        }

        /* Typewriter cursor */
        .typewriter-cursor {
            display: inline-block;
            width: 3px;
            height: 0.85em;
            background: var(--hemorrhage-red);
            box-shadow: 0 0 10px rgba(185, 28, 28, 0.7);
            margin-left: 4px;
            vertical-align: baseline;
            animation: blink 0.8s step-end infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-subhead {
            font-size: 24px;
            line-height: 1.4;
            color: var(--text-secondary);
            max-width: 900px;
            margin-bottom: 64px;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        /* BUTTONS */
        .cta-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }

        .cta-group {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #FFFFFF;
            color: #000000;
            padding: 18px 36px;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid #FFFFFF;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 8px;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #FFFFFF;
            color: #000000;
            border-color: #FFFFFF;
            transform: translateY(-3px) scale(1.02);
            box-shadow: none;
        }

        .btn-primary:hover .btn-arrow {
            transform: translate(2px, -2px);
        }

        .btn-arrow {
            transition: transform 0.3s ease;
            display: inline-block;
        }

        /* CTA TRUST ANCHOR */
        .cta-trust-anchor {
            position: relative;
            display: flex;
            align-items: center;
            gap: 16px;
            padding-left: 8px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            /* LAUNCH STRIP — mobile */
            .launch-strip {
                height: auto;
                min-height: 36px;
                padding: 8px 40px 8px 12px;
            }

            .launch-strip-text {
                font-size: 9px;
                letter-spacing: 0.08em;
                padding-right: 0;
                line-height: 1.4;
            }

            .launch-strip-close {
                right: 10px;
                padding: 8px;
            }

            /* NAV — mobile */
            .custom-nav {
                height: 60px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-right {
                gap: 12px;
            }

            .nav-cta {
                padding: 10px 16px;
                font-size: 10px;
                white-space: nowrap;
            }

            /* HERO SECTION — mobile */
            .hero-section {
                text-align: center;
                align-items: center;
                padding-top: 160px;
                padding-bottom: 80px;
                min-height: auto;
            }

            .hero-headline {
                font-size: 42px;
                line-height: 1.1;
                margin-bottom: 24px;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                word-break: break-word;
                overflow-wrap: break-word;
            }

            /* Force rotating text to its own line with fixed height to prevent layout shift */
            .hero-headline .objection-line {
                display: block !important;
                min-height: 2.3em;
            }

            html[lang="fr"] .hero-headline {
                font-size: 42px;
            }

            .mobile-hide-br {
                display: none;
            }

            .mobile-only-br {
                display: inline !important;
            }

            .hero-subhead {
                font-size: 18px;
                max-width: none;
                margin-bottom: 32px;
                margin-left: auto;
                margin-right: auto;
            }

            /* CTA — mobile: stack vertically, full-width */
            .cta-container {
                width: 100%;
                align-items: center;
            }

            .cta-group {
                flex-direction: column;
                gap: 24px;
                width: 100%;
                align-items: center;
                justify-content: center;
            }

            .btn-primary {
                width: 100%;
                max-width: 360px;
                justify-content: center;
                padding: 16px 24px;
                font-size: 13px;
                min-height: 48px;
            }

            /* Trust anchor — stack and center */
            .cta-trust-anchor {
                justify-content: center;
                padding-left: 0;
                gap: 12px;
            }

            .trust-title {
                font-size: 12px;
            }

            .trust-credential {
                font-size: 13px;
            }


            /* Glass circle — hide on mobile for performance */
            .glass-circle {
                display: none;
            }

            /* Film grain — hide entirely on mobile (user preference + GPU savings) */
            .film-grain {
                display: none !important;
            }

            /* Mouse-only hover effects — irrelevant on touch devices */
            .static-switcher-glow {
                display: none !important;
            }

            /* Hero load animation — restore full blur fade up on mobile (user request) */
            .hero-headline.hero-load-animate {
                animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards !important;
            }
            .hero-subhead.hero-load-animate {
                animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards !important;
            }
            .cta-container.hero-load-animate {
                animation: heroFadeUpBlur 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards !important;
            }

            /* Background wrapper — hide entirely on mobile to remove 100vh absolute layer */
            .hero-bg-wrapper {
                display: none !important;
            }

            #sandbox-canvas {
                display: none !important;
            }

            /* Container — mobile padding */
            .container {
                padding: 0 20px;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }
        }


        .trust-avatar-wrapper {
            position: relative;
            width: 46px;
            height: 46px;
            flex-shrink: 0;
        }

        .trust-avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: center 15%;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            background: #111;
        }

        .trust-badge-mini {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 22px;
            height: 22px;
            background: #FFFFFF;
            border: 1px solid rgba(212, 175, 55, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.6);
        }

        .trust-badge-mini img {
            width: 14px;
            height: 14px;
            object-fit: contain;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .trust-title {
            font-size: 13px;
            font-weight: 500;
            color: var(--surgical-white);
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .trust-credential {
            font-family: 'Cardo', serif;
            font-style: italic;
            font-size: 14px;
            color: var(--prestige-gold);
            line-height: 1.2;
        }

        /* RESPONSIVE — Tablet */
        @media (max-width: 1024px) {
            .hero-headline {
                font-size: 72px;
            }

            html[lang="fr"] .hero-headline {
                font-size: 64px;
            }

            .hero-subhead {
                font-size: 20px;
            }

            .container {
                padding: 0 40px;
            }

            .nav-container {
                padding: 0 40px;
            }

            .cta-group {
                gap: 24px;
                flex-direction: column;
                align-items: center;
            }

            /* Ghost theme consolidated 1024px rules */
            .problem-headline,
            .section-headline,
            .cta-headline {
                font-size: 32px !important;
            }

            .culm-punch {
                font-size: 20px !important;
                padding: 0 10px;
                line-height: 1.3;
            }

            .problem-section,
            .evidence-section {
                padding: 40px 0 !important;
            }

            .diagnosis-carousel::before,
            .diagnosis-carousel::after {
                display: none !important;
            }
        }

        @media (max-width: 900px) {
            .cta-container {
                align-items: center !important;
                text-align: center !important;
                width: 100% !important;
            }
            .cta-group {
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                flex-direction: column !important;
                gap: 20px !important;
            }
            .cta-trust-anchor {
                justify-content: center !important;
                text-align: center !important;
                padding-left: 0 !important;
                flex-wrap: wrap !important;
                gap: 12px !important;
            }
            .cta-container p[style] {
                text-align: center !important;
                margin: 14px auto 0 !important;
                padding-left: 0 !important;
            }
            .btn-primary {
                width: 100% !important;
                max-width: 340px !important;
                justify-content: center !important;
            }
        }

        /* DIAGNOSIS SECTION */
        .problem-section {
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: clip; /* Clip the carousel track without creating a scroll container (overflow-x:hidden creates one on iOS) */
        }

        .problem-headline {
            font-size: 56px;
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: #FFFFFF;
        }

        .problem-sub {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 600px;
            font-weight: 400;
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
        }

        /* Infinite Carousel Wrapper (Vignettes stay here) */
        .diagnosis-carousel {
            position: relative;
            width: 100%;
            margin-bottom: 40px;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .diagnosis-carousel {
                margin-bottom: 20px !important;
            }
        }

        /* Scroll container (Actually moves) */
        .diagnosis-scroll-container {
            width: 100%;
            overflow: clip; /* Clip carousel track without creating a scroll container on iOS */
            padding: 40px 0;
            cursor: grab;
            touch-action: pan-y;
            -webkit-user-select: none;
            user-select: none;
            pointer-events: auto;
        }

        .diagnosis-scroll-container:active {
            cursor: grabbing;
        }

        /* Fade edges */
        .diagnosis-carousel::before,
        .diagnosis-carousel::after {
            display: none !important;
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 10;
            pointer-events: none;
        }

        .diagnosis-carousel::before {
            left: 0;
            background: linear-gradient(to right, var(--void), transparent);
        }

        .diagnosis-carousel::after {
            right: 0;
            background: linear-gradient(to left, var(--void), transparent);
        }

        /* Scrolling track */
        .diagnosis-list {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .objection-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: rgba(10, 10, 10, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px;
            text-align: left;
            width: 300px;
            flex-shrink: 0;
            white-space: normal;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .objection-row:hover {
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .objection-said {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .objection-label {
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            letter-spacing: 0.12em;
            font-weight: 600;
        }

        .objection-label.muted-tag {
            color: var(--muted-steel);
        }

        .objection-label.active-tag {
            color: var(--triage-green);
        }

        .objection-said-text {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: var(--text-tertiary);
            line-height: 1.5;
        }

        .objection-transition {
            display: flex;
            align-items: center;
            height: 12px;
            color: rgba(255, 255, 255, 0.15);
            padding-left: 2px;
        }

        .objection-transition svg {
            width: 14px;
            height: 14px;
        }

        .objection-meant {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .objection-meant-text {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
        }

        .culm-punch {
            font-size: 24px;
            line-height: 1.4;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 40px auto;
            text-align: center;
        }

        .culm-punch .punch-highlight {
            color: #FFFFFF;
            font-weight: 500;
            display: block;
            margin-top: 8px;
        }



        /* BACKGROUND WRAPPER AND SHARP RENDERING CANVAS */
        .hero-bg-wrapper {
            position: absolute;
            inset: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        #sandbox-canvas {
            display: block;
            width: 100vw;
            height: 100vh;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        /* 3D LIQUID GLASS CIRCLE LENS - Matches CodePen Crystal Button */
        .glass-circle {
            position: fixed;
            top: 0;
            left: 0;
            width: 70px; /* 35px Radius */
            height: 70px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10;
            will-change: transform, opacity;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            
            /* Refraction blur using the SVG filter - invisible except for organic refraction/distortion! */
            backdrop-filter: url(#glass);
            -webkit-backdrop-filter: url(#glass);
        }

        /* SECTION 03: THE PROTOCOL */
        .protocol-section {
            background: transparent;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            height: 400vh; /* 4 screens of scroll track */
        }

        .protocol-sticky-wrapper {
            position: sticky;
            top: 108px;
            height: calc(100vh - 108px);
            width: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
            padding-top: 40px;
        }

        .protocol-sticky-wrapper .container {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
            width: 100%;
        }

        .protocol-header {
            position: relative;
            padding-bottom: 20px;
        }

        .section-tag {
            font-family: 'Departure Mono', monospace;
            font-size: 11px;
            color: var(--triage-green);
            letter-spacing: 0.25em;
            display: block;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .protocol-headline {
            font-size: 52px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .protocol-sub {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 0;
        }

        .protocol-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: start; /* Aligns tops of left card and right steps container */
            flex-grow: 1;
            margin-top: 24px;
        }

        @media (max-width: 900px) {
            .protocol-section {
                height: auto !important;
                padding: 40px 0 80px 0 !important;
            }
            .protocol-sticky-wrapper {
                position: relative !important;
                height: auto !important;
                overflow: visible !important;
            }
            .protocol-sticky-wrapper .container {
                height: auto !important;
                display: block !important;
                padding: 0 40px;
            }
            .protocol-grid {
                grid-template-columns: 1fr;
                gap: 48px;
                margin-top: 40px;
                display: flex;
                flex-direction: column;
            }
            .protocol-headline {
                font-size: 36px;
            }
            .second-section-glow,
            .protocol-section-glow,
            .evidence-section-glow {
                display: none !important;
                will-change: auto !important;
                animation: none !important;
            }
            .protocol-card {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(10, 10, 10, 0.95) !important;
            }
        }

        /* Visual card stack on Desktop */
        .protocol-visual-wrapper {
            display: grid;
            grid-template-areas: "stack";
            align-items: start;
        }

        .visual-state {
            grid-area: stack;
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .visual-state.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            z-index: 10;
        }

        .protocol-sticky-wrapper.not-locked .visual-state[data-state="1"] {
            opacity: 0.15 !important;
            transform: translateY(10px) scale(0.99) !important;
            pointer-events: none !important;
        }

        .protocol-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 16px;
            margin-bottom: 24px;
        }

        .card-title {
            font-family: 'Departure Mono', monospace;
            font-size: 11px;
            color: var(--muted-steel);
            letter-spacing: 0.15em;
        }

        .status-indicator-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .red-glow-dot {
            background: var(--hemorrhage-red);
            box-shadow: 0 0 10px rgba(185, 28, 28, 0.8);
            animation: pulse-glow 2s infinite ease-in-out;
        }

        .green-glow-dot {
            background: var(--triage-green);
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
            animation: pulse-glow 2s infinite ease-in-out;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Ingestion State specific styles */
        .dropzone-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            width: 100%;
        }

        .url-input-container {
            position: relative;
            width: 100%;
        }

        .card-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 12px 16px 12px 40px;
            font-size: 11px;
            color: #FFFFFF;
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
            box-sizing: border-box;
            letter-spacing: 0.05em;
        }

        .card-input:focus {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.04);
        }

        .url-input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            color: var(--muted-steel);
        }

        .card-divider {
            display: flex;
            align-items: center;
            text-align: center;
            width: 100%;
            margin: 4px 0;
            color: rgba(255, 255, 255, 0.15);
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            letter-spacing: 0.15em;
        }

        .card-divider::before, .card-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-divider:not(:empty)::before {
            margin-right: 12px;
        }

        .card-divider:not(:empty)::after {
            margin-left: 12px;
        }

        .dropzone-box {
            border: 2px dashed rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            width: 100%;
            padding: 28px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.005);
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .mobile-only-cta {
            display: none;
        }

        .dropzone-icon {
            width: 28px;
            height: 28px;
            color: var(--muted-steel);
            margin-bottom: 12px;
        }

        .dropzone-text {
            font-family: var(--font-heading);
            font-size: 9px;
            color: #FFFFFF;
            letter-spacing: 0.15em;
            margin-bottom: 6px;
            text-align: center;
        }

        .dropzone-sub {
            font-size: 10px;
            color: var(--muted-steel);
            text-align: center;
            line-height: 1.4;
        }

        .security-badge-container {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--triage-green);
            font-size: 10px;
            font-family: var(--font-heading);
            letter-spacing: 0.12em;
            opacity: 0.7;
        }

        .shield-icon {
            width: 12px;
            height: 12px;
        }

        /* Timeline Diagnostic specific styles (Deal Triage Console) */
        .deal-telemetry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .telemetry-node {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;
        }

        .telemetry-node.pass {
            border-color: rgba(0, 255, 0, 0.06);
        }

        .telemetry-node.fault {
            border-color: rgba(185, 28, 28, 0.25);
            background: rgba(185, 28, 28, 0.02);
        }

        .node-time {
            font-family: 'Departure Mono', monospace;
            font-size: 7.5px;
            letter-spacing: 0.05em;
            color: var(--muted-steel);
            opacity: 0.6;
        }

        .node-title {
            font-family: 'Departure Mono', monospace;
            font-size: 9.5px;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.9);
        }

        .node-status {
            font-family: 'Departure Mono', monospace;
            font-size: 7.5px;
            letter-spacing: 0.08em;
            display: inline-block;
            margin-top: 4px;
            width: fit-content;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        .telemetry-node.pass .node-status {
            background: rgba(0, 255, 0, 0.08);
            color: var(--triage-green);
        }

        .telemetry-node.fault .node-status {
            background: rgba(185, 28, 28, 0.15);
            color: #FF5555;
            animation: pulse-red-node 2s infinite ease-in-out;
        }

        @keyframes pulse-red-node {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Analyzing and resolving simulation styles */
        .status-indicator-dot.analyzing {
            background: #FFB300 !important;
            box-shadow: 0 0 10px rgba(255, 179, 0, 0.6) !important;
            animation: pulse-amber-node 1.2s infinite ease-in-out !important;
        }

        @keyframes pulse-amber-node {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .layer-matrix-row.analyzing {
            border-color: rgba(255, 255, 255, 0.08) !important;
            background: rgba(255, 255, 255, 0.03) !important;
        }

        .layer-matrix-row.analyzing .layer-status-tag {
            background: rgba(255, 255, 255, 0.05) !important;
            color: var(--muted-steel) !important;
            font-family: 'Departure Mono', monospace;
        }

        .layer-matrix-row.resolved-flash {
            animation: row-flash-highlight 0.5s ease-out;
        }

        @keyframes row-flash-highlight {
            0% {
                background: rgba(255, 255, 255, 0.15);
                box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
            }
            100% {
                background: inherit;
                box-shadow: none;
            }
        }

        /* 6-Layer Protocol Matrix styles */
        .protocol-layers-matrix {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .visual-state.active .layer-matrix-row,
        .step-row.active .layer-matrix-row {
            opacity: 1;
            transform: translateY(0);
        }
        .visual-state.active .layer-matrix-row:nth-child(1),
        .step-row.active .layer-matrix-row:nth-child(1) { transition-delay: 0.1s; }
        .visual-state.active .layer-matrix-row:nth-child(2),
        .step-row.active .layer-matrix-row:nth-child(2) { transition-delay: 0.22s; }
        .visual-state.active .layer-matrix-row:nth-child(3),
        .step-row.active .layer-matrix-row:nth-child(3) { transition-delay: 0.34s; }
        .visual-state.active .layer-matrix-row:nth-child(4),
        .step-row.active .layer-matrix-row:nth-child(4) { transition-delay: 0.46s; }
        .visual-state.active .layer-matrix-row:nth-child(5),
        .step-row.active .layer-matrix-row:nth-child(5) { transition-delay: 0.58s; }
        .visual-state.active .layer-matrix-row:nth-child(6),
        .step-row.active .layer-matrix-row:nth-child(6) { transition-delay: 0.7s; }

        .layer-matrix-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            padding: 8px 12px;
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s ease, border-color 0.2s ease;
        }

        .layer-matrix-row:hover {
            background: rgba(255, 255, 255, 0.03) !important;
            border-color: rgba(255, 255, 255, 0.08) !important;
        }

        .layer-matrix-row.pass {
            border-color: rgba(0, 255, 0, 0.06);
            background: rgba(0, 255, 0, 0.005);
        }

        .layer-matrix-row.fail {
            border-color: rgba(232, 168, 56, 0.12);
            background: rgba(232, 168, 56, 0.01);
        }

        .layer-matrix-row.critical {
            border-color: rgba(255, 85, 85, 0.16);
            background: rgba(255, 85, 85, 0.015);
        }

        .layer-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .layer-num {
            color: rgba(255, 255, 255, 0.35);
            font-size: 8px;
            font-weight: bold;
            min-width: 14px;
        }

        .layer-name {
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.02em;
        }

        .layer-status-tag {
            font-size: 8px;
            padding: 2px 6px;
            border-radius: 3px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .layer-status-tag.pass {
            background: rgba(0, 255, 0, 0.08);
            color: var(--triage-green);
        }

        .layer-status-tag.fail {
            background: rgba(232, 168, 56, 0.10);
            color: #E8A838;
        }

        .layer-status-tag.critical {
            background: rgba(255, 85, 85, 0.10);
            color: #FF5555;
            border: 1px solid rgba(255, 85, 85, 0.15);
        }

        /* Friction → Fix Transform Visual */
        .synthesis-layout {
            display: flex;
            gap: 20px;
            align-items: stretch;
            font-family: 'Departure Mono', monospace;
        }

        /* Desktop side-by-side, mobile vertical stack */
        @media (min-width: 901px) {
            .synthesis-layout {
                flex-direction: row;
            }
            .synthesis-divider {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 20px;
            }
            .divider-line {
                width: 1px;
                flex: 1;
                background: rgba(255, 255, 255, 0.06);
            }
            .divider-indicator {
                font-size: 10px;
                color: rgba(255, 255, 255, 0.3);
                margin: 12px 0;
            }
        }

        @media (max-width: 900px) {
            .synthesis-layout {
                flex-direction: column;
            }
            .synthesis-divider {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 20px;
                margin: 4px 0;
            }
            .divider-line {
                height: 1px;
                flex: 1;
                background: rgba(255, 255, 255, 0.06);
            }
            .divider-indicator {
                font-size: 10px;
                color: rgba(255, 255, 255, 0.3);
                margin: 0 12px;
            }
        }

        /* Left Side: Friction Log */
        .friction-log {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .log-header {
            font-size: 8px;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 2px;
        }

        .friction-item {
            display: flex;
            flex-direction: column;
            padding: 8px 10px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .visual-state.active .friction-item,
        .step-row.active .friction-item {
            opacity: 1;
            transform: translateX(0);
        }

        .visual-state.active .friction-item:nth-child(2),
        .step-row.active .friction-item:nth-child(2) { transition-delay: 0.10s; }
        .visual-state.active .friction-item:nth-child(3),
        .step-row.active .friction-item:nth-child(3) { transition-delay: 0.20s; }
        .visual-state.active .friction-item:nth-child(4),
        .step-row.active .friction-item:nth-child(4) { transition-delay: 0.30s; }
        .visual-state.active .friction-item:nth-child(5),
        .step-row.active .friction-item:nth-child(5) { transition-delay: 0.40s; }

        .friction-meta {
            display: flex;
            justify-content: space-between;
            font-size: 8px;
            margin-bottom: 2px;
        }

        .friction-id {
            color: rgba(255, 255, 255, 0.35);
        }

        .friction-status {
            color: #EF4444;
            letter-spacing: 0.05em;
        }

        .friction-title {
            font-size: 9px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            letter-spacing: 0.04em;
        }

        /* Divider animation */
        .synthesis-divider {
            opacity: 0;
            transition: opacity 0.35s ease 0.50s;
        }

        .visual-state.active .synthesis-divider,
        .step-row.active .synthesis-divider {
            opacity: 1;
        }

        /* Right Side: Playbook Solution */
        .solution-playbook {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            padding: 16px 12px 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.4s ease 0.60s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.60s;
        }

        .visual-state.active .solution-playbook,
        .step-row.active .solution-playbook {
            opacity: 1;
            transform: translateY(0);
        }

        .playbook-tab {
            position: absolute;
            top: -9px;
            left: 10px;
            font-size: 7px;
            font-family: 'Departure Mono', monospace;
            background: #0D0D11;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: none;
            border-radius: 3px 3px 0 0;
            padding: 1px 6px;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        .playbook-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 8px;
            margin-bottom: 10px;
        }

        .playbook-title {
            font-size: 9px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.05em;
        }

        .playbook-tag {
            font-size: 7px;
            font-weight: bold;
            padding: 1px 5px;
            border-radius: 2px;
            background: rgba(0, 255, 0, 0.05);
            color: var(--triage-green);
            border: 1px solid rgba(0, 255, 0, 0.15);
            letter-spacing: 0.05em;
        }

        .playbook-sections {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .playbook-section-card {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: 6px 8px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 4px;
        }

        .playbook-section-header {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sec-num {
            font-size: 8px;
            font-weight: bold;
            color: var(--triage-green);
            background: rgba(0, 255, 0, 0.04);
            border: 1px solid rgba(0, 255, 0, 0.12);
            padding: 1px 3px;
            border-radius: 2px;
        }

        .sec-title {
            font-size: 8.5px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.03em;
        }

        .section-skeleton-lines {
            display: flex;
            flex-direction: column;
            gap: 3px;
            padding-left: 20px;
        }

        .sk-line {
            height: 2px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 1px;
        }
        .sk-line.l-90 { width: 90%; }
        .sk-line.l-80 { width: 80%; }
        .sk-line.l-70 { width: 70%; }
        .sk-line.l-50 { width: 50%; }

        .playbook-footer {
            margin-top: 10px;
            border-top: 1px dashed rgba(255, 255, 255, 0.05);
            padding-top: 8px;
            font-size: 7.5px;
            color: var(--muted-steel);
            display: flex;
            justify-content: space-between;
        }

        .playbook-footer strong {
            color: rgba(255, 255, 255, 0.65);
            font-weight: normal;
        }



        /* Playbook Calibration Console styles */
        .calibration-console {
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-family: 'Departure Mono', monospace;
        }

        .objection-header-row {
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            padding-bottom: 8px;
        }

        .objection-label {
            font-size: 7.5px;
            color: var(--muted-steel);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .objection-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 11px;
            margin: 4px 0 0 0;
            font-weight: 500;
        }

        /* Script Diff Window */
        .script-diff-window {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            overflow: hidden;
        }

        .diff-header {
            display: flex;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.02);
            padding: 6px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 7.5px;
            color: var(--muted-steel);
            letter-spacing: 0.05em;
        }

        .diff-file-name {
            font-weight: bold;
        }

        .diff-body {
            display: flex;
            flex-direction: column;
            font-size: 9px;
            line-height: 1.4;
        }

        .diff-line {
            display: flex;
            gap: 8px;
            padding: 8px 12px;
            align-items: start;
        }

        .diff-line.line-removed {
            background: rgba(255, 77, 77, 0.04);
            border-bottom: 1px solid rgba(255, 77, 77, 0.02);
        }

        .diff-line.line-removed .diff-sign {
            color: #FF5555;
            font-weight: bold;
        }

        .diff-line.line-removed .diff-text {
            color: rgba(255, 77, 77, 0.65);
            text-decoration: line-through;
        }

        .diff-line.line-added {
            background: rgba(0, 255, 0, 0.03);
        }

        .diff-line.line-added .diff-sign {
            color: var(--triage-green);
            font-weight: bold;
        }

        .diff-line.line-added .diff-text {
            color: rgba(255, 255, 255, 0.85);
        }

        .diff-sign {
            width: 10px;
            text-align: center;
        }

        /* Impact Dashboard */
        .impact-metrics-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            padding: 8px 12px;
        }

        .impact-col {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .impact-col.default {
            align-items: flex-start;
        }

        .impact-col.calibrated {
            align-items: flex-end;
        }

        .impact-label {
            font-size: 7px;
            color: var(--muted-steel);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .impact-value {
            font-size: 9.5px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .impact-value.text-error {
            color: #FF5555;
        }

        .impact-value.text-success {
            color: var(--triage-green);
        }

        .impact-arrow {
            width: 14px;
            height: 14px;
            color: rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Diagnostic Metrics Block styles */
        .diagnostic-metrics-block {
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .metrics-content {
            display: grid;
            grid-template-columns: 1fr 1px 1.5fr;
            gap: 16px;
            align-items: center;
        }

        .metric-divider {
            background: rgba(255, 255, 255, 0.06);
            height: 55px;
            align-self: center;
        }

        .metric-column {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .metric-label {
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            color: var(--muted-steel);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .score-display {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-family: 'Departure Mono', monospace;
            line-height: 1.1;
            margin-top: 4px;
        }

        .score-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .score-num {
            font-size: 34px;
            font-weight: 700;
            color: var(--muted-steel);
            transition: color 0.4s ease, text-shadow 0.4s ease;
        }

        .score-num.active {
            color: #FF4D4D;
            text-shadow: 0 0 12px rgba(255, 77, 77, 0.35);
        }

        .score-den {
            font-size: 11px;
            color: var(--muted-steel);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .grade-badge-container {
            display: flex;
            align-items: center;
            margin-top: 2px;
        }

        .grade-badge {
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            font-weight: 700;
            color: var(--triage-green);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .grade-badge::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--triage-green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--triage-green);
        }

        .grade-badge.visible {
            opacity: 1;
        }

        .grade-badge.failed {
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .stat-val.text-success {
            color: var(--muted-steel);
            transition: color 0.4s ease;
        }

        .stat-val.text-success.active {
            color: var(--triage-green);
        }

        .attribution-stats {
            display: flex;
            justify-content: space-between;
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            margin-bottom: 2px;
        }

        .stat-item {
            display: flex;
            gap: 6px;
        }

        .stat-name {
            color: var(--muted-steel);
        }

        .attribution-bar-wrapper {
            width: 100%;
        }

        .attribution-bar {
            display: flex;
            height: 6px;
            border-radius: 3px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .bar-fill {
            transition: width 1.0s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, box-shadow 0.4s ease;
        }

        .bar-fill.seller-fill {
            background: var(--muted-steel);
        }

        .bar-fill.seller-fill.active {
            background: var(--triage-green);
            box-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
        }

        .bar-fill.context-fill {
            background: rgba(255, 255, 255, 0.2);
        }

        .attribution-desc {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 4px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .attribution-desc.visible {
            opacity: 1;
        }

        .leverage-badge {
            display: inline-block;
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            color: var(--triage-green);
            background: rgba(0, 255, 0, 0.08);
            border: 1px solid rgba(0, 255, 0, 0.2);
            padding: 2px 6px;
            border-radius: 3px;
            text-transform: uppercase;
            margin-bottom: 6px;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .metrics-content {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .metric-divider {
                display: none;
            }
        }

        /* Calibration State specific styles (Playbook Matrix) */
        .playbook-console {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .playbook-focus {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .focus-label {
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            color: var(--muted-steel);
            letter-spacing: 0.1em;
        }

        .focus-value {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
        }

        .playbook-matrix {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .matrix-column {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .matrix-column.error-track {
            background: rgba(185, 28, 28, 0.02);
            border-color: rgba(185, 28, 28, 0.08);
        }

        .matrix-column.fix-track {
            background: rgba(0, 255, 0, 0.02);
            border-color: rgba(0, 255, 0, 0.08);
        }

        .matrix-header {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            letter-spacing: 0.08em;
            font-weight: 600;
        }

        .matrix-column.error-track .matrix-header {
            color: var(--text-error-bright);
        }

        .matrix-column.fix-track .matrix-header {
            color: var(--triage-green);
        }

        .matrix-icon {
            font-size: 9px;
        }

        .matrix-text {
            font-size: 11px;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.55);
        }

        .prescription-box {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 4px;
        }

        .prescription-label {
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            color: var(--triage-green);
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .prescription-quote {
            font-size: 14px;
            line-height: 1.5;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
        }

        .prescription-quote .highlight-green {
            color: var(--triage-green);
            font-weight: 500;
        }

        .card-status-badge {
            font-family: 'Departure Mono', monospace;
            font-size: 8px;
            color: var(--triage-green);
            background: rgba(0, 255, 0, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        /* ===== VIDEO REPORT SIMULATION CARD ===== */

        .vr-card-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* Bezel frame container to break flatness */
        .vr-player-bezel {
            position: relative;
            padding: 5px;
            border-radius: 8px;
            background: #0d0d12;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }

        /* Screen - Styled as a Video Preview (height increased) */
        .vr-video-thumb {
            position: relative;
            width: 100%;
            height: 270px;
            border-radius: 4px;
            overflow: hidden;
            background: #09090d;
            border: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95);
        }

        /* Clean High-Contrast Play Button */
        .vr-play-btn {
            position: absolute;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #ffffff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .vr-play-btn svg {
            width: 22px;
            height: 22px;
            margin-left: 4px;
            fill: #000;
        }

        .vr-video-thumb:hover .vr-play-btn {
            background: var(--triage-green);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.15);
        }

        .vr-preview-timecode {
            position: absolute;
            bottom: 12px;
            right: 12px;
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            color: rgba(255, 255, 255, 0.85);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            letter-spacing: 0.05em;
            z-index: 2;
        }

        .vr-download-btn {
            background: none;
            border: none;
            color: var(--muted-steel);
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .vr-download-btn:hover {
            color: #fff;
            transform: translateY(-1px);
        }

        .vr-download-btn svg {
            width: 14px;
            height: 14px;
        }

        /* Deliverables Section (formerly files block) */
        .vr-deliverables-block {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .vr-deliverable-card {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px 16px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        /* Hover effect on deliverable cards */
        .vr-deliverable-card:hover {
            background: rgba(255, 255, 255, 0.035);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        /* Make the solution card (Playbook) stand out as highly attractive */
        .vr-deliverable-card.solution-card {
            border-color: rgba(0, 255, 0, 0.15);
            background: linear-gradient(180deg, rgba(0, 255, 0, 0.01) 0%, rgba(0, 0, 0, 0) 100%);
            box-shadow: 0 4px 20px rgba(0, 255, 0, 0.02);
        }

        .vr-deliverable-card.solution-card:hover {
            border-color: rgba(0, 255, 0, 0.3);
            background: linear-gradient(180deg, rgba(0, 255, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
            box-shadow: 0 8px 30px rgba(0, 255, 0, 0.04);
        }

        .deliv-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            padding-bottom: 8px;
        }

        .vr-deliverable-card.solution-card .deliv-header {
            border-bottom-color: rgba(0, 255, 0, 0.08);
        }

        .deliv-title {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.85);
        }

        .vr-deliverable-card.solution-card .deliv-title {
            color: #fff;
        }

        .deliv-badge {
            font-family: 'Departure Mono', monospace;
            font-size: 7px;
            font-weight: bold;
            padding: 1px 5px;
            border-radius: 2px;
            letter-spacing: 0.05em;
        }

        .deliv-badge.video {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .deliv-badge.solution {
            background: rgba(0, 255, 0, 0.05);
            color: var(--triage-green);
            border: 1px solid rgba(0, 255, 0, 0.18);
        }

        .deliv-desc {
            font-size: 10.5px;
            line-height: 1.5;
            color: var(--text-tertiary);
        }

        .vr-deliverable-card.solution-card .deliv-desc {
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .vr-video-thumb {
                height: 200px;
            }
            .vr-play-btn {
                width: 60px;
                height: 60px;
            }
            .vr-play-btn svg {
                width: 18px;
                height: 18px;
            }
            .vr-deliverables-block {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* ===== END VIDEO REPORT CARD ===== */

        @media (max-width: 480px) {
            .playbook-matrix {
                grid-template-columns: 1fr;
            }
        }

        /* Timeline / Steps Styling */
        .protocol-steps {
            display: flex;
            flex-direction: column;
            gap: 56px;
            padding-top: 10px;
            position: relative;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .protocol-steps .step-row.reveal-box {
            display: flex;
            gap: 32px;
            align-items: start;
            opacity: 0.15;
            filter: blur(0) !important;
            transform: scale(0.92) translateX(-15px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: left center;
        }

        .js-enabled .protocol-steps .step-row.reveal-box {
            opacity: 0.15;
            filter: blur(0) !important;
            transform: scale(0.92) translateX(-15px);
        }

        .protocol-steps .step-row.reveal-box.active,
        .js-enabled .protocol-steps .step-row.reveal-box.active {
            opacity: 1;
            filter: blur(0) !important;
            transform: scale(1) translateX(0);
        }

        .step-num {
            font-family: 'Departure Mono', monospace;
            font-size: 16px;
            color: var(--muted-steel);
            line-height: 1;
            padding-top: 6px;
        }

        .step-title {
            font-size: 24px;
            font-weight: 600;
            color: #FFFFFF;
            margin: 0 0 12px 0;
            letter-spacing: -0.02em;
        }

        .step-desc {
            font-size: 15px;
            color: var(--muted-steel);
            line-height: 1.6;
            margin: 0;
        }

        .protocol-cta-btn {
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
            pointer-events: none;
            margin-top: 24px;
        }

        .protocol-cta-btn.cta-visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .protocol-cta-btn.cta-visible:hover {
            transform: translateY(-2px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s ease, border-color 0.3s ease;
        }

        /* Step metrics details */
        .step-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .step-metric-badge {
            font-family: var(--font-heading);
            font-size: 9px;
            letter-spacing: 0.1em;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 600;
        }

        .step-metric-badge.friction-badge {
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .step-metric-badge.cost-badge {
            background: rgba(0, 255, 0, 0.015);
            color: var(--triage-green);
            border: 1px solid rgba(0, 255, 0, 0.08);
        }

        .step-metric-badge.dissect-badge {
            background: rgba(185, 28, 28, 0.02);
            color: var(--text-error-bright);
            border: 1px solid rgba(185, 28, 28, 0.1);
        }

        .step-metric-badge.reward-badge {
            background: rgba(212, 175, 55, 0.02);
            color: var(--prestige-gold);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }



        /* Mobile visual overrides */
        .mobile-step-visual {
            display: none;
            margin-top: 24px;
            width: 100%;
        }

        @media (max-width: 900px) {
            .protocol-visual-wrapper {
                display: none !important;
            }
            .mobile-step-visual {
                display: block !important;
            }
            .protocol-steps .step-row.reveal-box {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* --- SECTION 05: THE EVIDENCE (Social Proof) --- */
        .evidence-section {
            padding-top: 60px;
            padding-bottom: 140px;
            max-width: 1360px; /* Increased from 1200px to make the box/layout wider */
            width: 100%;
            padding-left: 24px;
            padding-right: 24px;
            box-sizing: border-box;
            margin: 0 auto;
            position: relative;
        }

        .evidence-intro-card {
            padding: 40px 32px 32px 32px;
            background: transparent;
            border: none;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .evidence-intro-card .intro-tag {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--muted-steel);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .evidence-intro-card .intro-heading {
            font-family: var(--font-body);
            font-size: 28px;
            font-weight: 600;
            color: var(--surgical-white);
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .evidence-intro-card .intro-text {
            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-tertiary);
        }

        .evidence-title {
            font-family: var(--font-body);
            font-size: 40px;
            font-weight: 600;
            color: var(--surgical-white);
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .evidence-subtitle {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        /* --- Manifesto & Personal Letter Section --- */
        .manifesto-split-container {
            display: flex;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 80px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            min-height: 480px;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            cursor: pointer;
        }

        .manifesto-video-column {
            flex: 0 0 45%;
            position: relative;
            background: #000;
        }

        .manifesto-video-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .manifesto-video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
        }

        .manifesto-video-wrapper:hover .manifesto-video-thumbnail {
            transform: scale(1.03);
            opacity: 0.85;
        }

        .manifesto-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            box-sizing: border-box;
        }

        .manifesto-play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #FFF;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: none;
            transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            outline: none;
            margin-bottom: 20px;
        }

        .manifesto-play-btn svg {
            color: #000;
            transform: translateX(2px);
            transition: transform 0.3s ease;
        }

        .manifesto-video-wrapper:hover .manifesto-play-btn,
        .manifesto-split-container:hover .manifesto-play-btn {
            transform: scale(1.15);
            box-shadow: none;
        }

        .manifesto-video-wrapper:hover .manifesto-play-btn svg,
        .manifesto-split-container:hover .manifesto-play-btn svg {
            transform: scale(1.05) translateX(2px);
        }

        .manifesto-video-wrapper:hover .manifesto-video-thumbnail,
        .manifesto-split-container:hover .manifesto-video-thumbnail {
            transform: scale(1.03);
            opacity: 0.85;
        }

        .manifesto-video-duration {
            font-family: 'Departure Mono', monospace;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 16px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .manifesto-letter-column {
            flex: 0 0 55%;
            display: flex;
            align-items: center;
            padding: 50px 40px;
            box-sizing: border-box;
            border-left: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .manifesto-letter-content {
            width: 100%;
        }

        .manifesto-letter-subtitle {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--muted-steel);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .manifesto-letter-title {
            font-family: var(--font-body);
            font-size: 24px;
            font-weight: 600;
            color: var(--surgical-white);
            letter-spacing: -0.01em;
            margin-bottom: 24px;
        }

        .manifesto-letter-body {
            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .manifesto-letter-body p {
            margin-bottom: 16px;
        }

        .manifesto-letter-body p:last-child {
            margin-bottom: 24px;
        }

        .manifesto-signature-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            margin-top: 20px;
        }

        .signature-details {
            display: flex;
            flex-direction: column;
        }

        .signature-name {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--surgical-white);
        }

        .signature-title {
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            color: var(--muted-steel);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .manifesto-split-container {
                flex-direction: column;
                min-height: auto;
            }
            .manifesto-video-column {
                flex: 0 0 100%;
                width: 100%;
                height: 360px;
            }
            .manifesto-letter-column {
                flex: 0 0 100%;
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.07);
                padding: 40px;
            }
        }

        .evidence-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 0;
            max-width: 1140px; /* Testimonials grid should be narrower than the 1300px personal box */
            margin-left: auto;
            margin-right: auto;
        }

        .evidence-col {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .evidence-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        }

        .evidence-card:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .evidence-author-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-pfp {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-pfp img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-pfp-initials {
            font-family: var(--font-heading);
            font-size: 13px;
            color: var(--muted-steel);
            font-weight: normal;
            letter-spacing: -0.05em;
        }

        .author-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .author-name {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--surgical-white);
        }

        .author-role {
            font-family: var(--font-heading);
            font-size: 9px;
            color: var(--muted-steel);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .card-brand-logo {
            position: absolute;
            top: 32px;
            right: 32px;
            height: 24px;
            width: auto;
            opacity: 0.15;
            filter: grayscale(100%);
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .evidence-card:hover .card-brand-logo {
            opacity: 0.45;
        }

        .card-brand-logo.remove-bg {
            filter: invert(1) grayscale(100%);
            mix-blend-mode: screen;
        }

        .quote-block {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .quote-punchline {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 600;
            line-height: 1.45;
            color: var(--surgical-white);
        }

        .quote-context {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 1024px) {
            .evidence-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .evidence-col {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .evidence-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .evidence-col {
                gap: 20px;
            }
            .evidence-section {
                padding-top: 80px;
                padding-bottom: 100px;
            }
            .evidence-title {
                font-size: 32px;
            }
        }

        /* --- SECTION 06: FAQ (Clarification) --- */
        .faq-section {
            padding-top: 120px;
            padding-bottom: 140px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .faq-header-block {
            text-align: center;
            margin-bottom: 64px;
        }

        .faq-title {
            font-family: var(--font-body);
            font-size: 40px;
            font-weight: 600;
            color: var(--surgical-white);
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .faq-subtitle {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            padding: 24px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 16px;
            color: #FFFFFF;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--triage-green);
        }

        .faq-icon {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--muted-steel);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: rgba(255, 255, 255, 0.72);
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px; /* ample space */
            padding-bottom: 24px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--triage-green);
        }

        .faq-inline-cta {
            color: var(--triage-green);
            text-decoration: underline;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .faq-inline-cta:hover {
            color: #2ecc71;
        }

        /* --- SECTION 05.5: THE SECURITY (Data Protection) --- */
        .security-section {
            padding-top: 100px;
            padding-bottom: 80px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .security-header-block {
            margin-bottom: 48px;
        }

        .security-title {
            font-family: var(--font-body);
            font-size: 40px;
            font-weight: 600;
            color: var(--surgical-white);
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .security-subtitle {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .security-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .security-node {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.01);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            flex: 1 1 calc(50% - 10px);
            min-width: 280px;
            box-sizing: border-box;
            text-align: left;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .security-node:hover {
            border-color: rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.02);
        }

        .security-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(46, 204, 113, 0.05);
            border: 1px solid rgba(46, 204, 113, 0.15);
            color: var(--triage-green);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .security-node:hover .security-icon-wrapper {
            background: rgba(46, 204, 113, 0.1);
            border-color: rgba(46, 204, 113, 0.3);
        }

        .security-node-label {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--triage-green);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 4px;
        }

        .security-node-value {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--surgical-white);
        }

        .security-node-desc {
            font-family: var(--font-body);
            font-size: 12px;
            color: var(--text-tertiary);
            line-height: 1.5;
            margin-top: 6px;
        }

        /* --- SECTION 07: FINAL OBJECTION (Urgency & Objection Handling) --- */
        .final-objection-section {
            padding-top: 120px;
            padding-bottom: 160px;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at center, rgba(255,255,255,0.015) 0%, transparent 70%);
            border-top: 1px solid rgba(255,255,255,0.03);
        }

        .final-objection-container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 24px;
            box-sizing: border-box;
        }

        .final-objection-label {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--triage-green);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .final-objection-title {
            font-family: var(--font-body);
            font-size: 38px;
            font-weight: 500;
            color: var(--surgical-white);
            letter-spacing: -0.02em;
            line-height: 1.35;
            margin-bottom: 28px;
        }

        .final-objection-body {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--text-tertiary);
            line-height: 1.6;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .final-objection-body p {
            margin-bottom: 20px;
        }

        .final-objection-body strong {
            color: var(--surgical-white);
        }

        .final-objection-cta {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .final-objection-btn {
            min-width: 280px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255,255,255,0.2) inset;
        }

        .cta-loss-highlight {
            font-family: 'Departure Mono', monospace;
            color: var(--text-error-bright);
            display: inline;
        }

        .final-objection-title .cta-loss-highlight {
            font-size: 0.65em;
            vertical-align: baseline;
            display: inline;
        }

        .cta-loss-cursor {
            display: inline-block;
            width: 0.35em;
            height: 0.85em;
            background-color: currentColor;
            margin-left: 6px;
            vertical-align: baseline;
            animation: cta-cursor-blink 0.8s step-end infinite;
        }

        @keyframes cta-cursor-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        @media (max-width: 768px) {
            .security-section {
                padding-top: 60px;
                padding-bottom: 60px;
                padding-left: 20px;
                padding-right: 20px;
            }
            .security-title {
                font-size: 32px;
            }
            .final-objection-section {
                padding-top: 80px;
                padding-bottom: 100px;
                padding-left: 20px;
                padding-right: 20px;
            }
            .final-objection-title {
                font-size: 26px;
                line-height: 1.4;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .final-objection-title br {
                display: none;
            }
            .final-objection-title .cta-loss-highlight {
                font-size: 18px;
                display: inline-block;
                margin-top: 12px;
                white-space: nowrap;
            }
            .faq-section {
                padding-top: 80px;
                padding-bottom: 100px;
                padding-left: 20px;
                padding-right: 20px;
            }
            .faq-title {
                font-size: 32px;
            }
        }

        /* Boiling Cinematic Monochrome Film Grain Overlay */
        .film-grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-repeat: repeat;
            background-size: 128px 128px;
            pointer-events: none;
            z-index: 50; /* Layer 2: Grain sits between background (Layer 1) and content (Layer 3) */
            mix-blend-mode: overlay; /* Hides on pitch black, textures glows and text */
            opacity: 0.72; /* Extremely strong textured cinematic grain opacity */
            animation: fadeInGrain 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes fadeInGrain {
            0% { opacity: 0; }
            100% { opacity: 0.72; }
        }

        /* LAYER 1.5: GLOBAL AMBIENT GLOWS SYSTEM (Below Film Grain z-index 50) */
        .ambient-glows-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 2; /* Renders above base canvas (z-index 0/1) but below grain (z-index 50) */
        }



        /* Dynamic Background Hover Glow (Layer 1.5, below grain) */
        /* Transparent card-shaped element — glow radiates from edges via box-shadow only */
        .bg-hover-glow {
            position: absolute;
            pointer-events: none;
            z-index: 3; /* Below grain (z-index 50) and content (z-index 100) */
            border-radius: 16px; /* Matches objection-row card shape */
            background: transparent; /* Card interior stays untouched */
            opacity: 0;
            mix-blend-mode: screen;
            will-change: left, top, width, height, opacity, box-shadow;
            transition:
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .bg-hover-glow.active {
            opacity: 1;
        }

        /* Color presets — glow emanates from card edges via box-shadow */
        .bg-hover-glow.glow-gold {
            box-shadow:
                0 0 90px 2px rgba(235, 198, 70, 0.12),
                0 0 180px 6px rgba(220, 185, 60, 0.05),
                0 0 300px 12px rgba(220, 185, 60, 0.015);
        }

        .bg-hover-glow.glow-green {
            box-shadow:
                0 0 90px 2px rgba(46, 204, 113, 0.11),
                0 0 180px 6px rgba(39, 174, 96, 0.04),
                0 0 300px 12px rgba(39, 174, 96, 0.015);
        }

        .bg-hover-glow.glow-red {
            box-shadow:
                0 0 100px 2px rgba(185, 28, 28, 0.12),
                0 0 200px 6px rgba(185, 28, 28, 0.05),
                0 0 320px 12px rgba(185, 28, 28, 0.015);
        }

        .bg-hover-glow.glow-red-bright {
            box-shadow:
                0 0 60px 4px rgba(255, 77, 77, 0.45),
                0 0 120px 8px rgba(255, 77, 77, 0.25),
                0 0 200px 16px rgba(255, 77, 77, 0.10);
        }

        @media (max-width: 768px) {
            .bg-hover-glow.glow-red {
                box-shadow:
                    0 0 60px 1px rgba(185, 28, 28, 0.10),
                    0 0 120px 3px rgba(185, 28, 28, 0.04);
            }
            .bg-hover-glow.glow-red-bright {
                box-shadow:
                    0 0 40px 2px rgba(255, 77, 77, 0.35),
                    0 0 80px 4px rgba(255, 77, 77, 0.15);
            }
        }

        .static-switcher-glow {
            display: none;
        }

        /* Second Section (Diagnosis) Organic Red Glow (Layer 1.5, below grain z-index 50) */
        .second-section-glow {
            position: absolute;
            width: 2600px;
            height: 2400px;
            border-radius: 35% 65% 50% 50% / 40% 45% 55% 60%; /* Organic squircle shape */
            background: radial-gradient(ellipse at 50% 38%, rgba(165, 15, 15, 0.22) 0%, rgba(165, 15, 15, 0.05) 40%, transparent 55%); /* Deeper crimson red, shifted to balance hero and section bleed */
            filter: blur(240px);
            z-index: 2; /* Below film grain (z-index 50) and content (z-index 100) */
            pointer-events: none;
            transform: translate(-50%, -50%);
            animation: organicMorphRed 54s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes organicMorphRed {
            0% {
                border-radius: 35% 65% 50% 50% / 40% 45% 55% 60%;
                transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.97);
            }
            25% {
                transform: translate(-50%, -50%) translate(40px, -30px) rotate(3deg) scale(1.02);
            }
            50% {
                border-radius: 60% 40% 55% 45% / 55% 55% 45% 45%;
                transform: translate(-50%, -50%) translate(-20px, 40px) rotate(-4deg) scale(0.99);
            }
            75% {
                transform: translate(-50%, -50%) translate(-40px, -20px) rotate(2deg) scale(1.01);
            }
            100% {
                border-radius: 35% 65% 50% 50% / 40% 45% 55% 60%;
                transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.97);
            }
        }

        /* Protocol Section (Timeline) Organic Green Glow (Layer 1.5, below grain z-index 50) */
        .protocol-section-glow {
            position: fixed; /* Fixed position coordinates for zero-jitter compositing */
            width: 1900px; /* Slightly wider for better screen coverage */
            height: 1200px;
            border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; /* Start with an organic squircle shape */
            background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 102, 0.09) 0%, rgba(0, 255, 102, 0.02) 55%, transparent 75%);
            filter: blur(260px); /* Increased blur for super soft falloff */
            z-index: 2; /* Below film grain (z-index 50) and content (z-index 100) */
            pointer-events: none;
            opacity: 0; /* Animated dynamically by timeline lock states */
            transform: translate(-50%, -50%);
            animation: organicMorphGreen 60s ease-in-out infinite;
            will-change: transform, left, top, opacity;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes organicMorphGreen {
            0% {
                border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
                transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
            }
            33% {
                transform: translate(-50%, -50%) rotate(1deg) scale(1.02);
            }
            66% {
                border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
                transform: translate(-50%, -50%) rotate(-1deg) scale(0.99);
            }
            100% {
                border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
                transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
            }
        }

        /* Testimonials Section (Evidence) Organic Gold Glow (Layer 1.5, below grain z-index 50) */
        .evidence-section-glow {
            position: absolute;
            width: 1800px;
            height: 1800px;
            border-radius: 45% 55% 50% 50% / 45% 45% 55% 55%; /* Organic squircle shape */
            background: radial-gradient(circle, rgba(255, 185, 40, 0.02) 0%, rgba(255, 140, 0, 0.005) 40%, transparent 70%); /* Bright warm gold/amber */
            filter: blur(180px);
            z-index: 2; /* Below film grain (z-index 50) and content (z-index 100) */
            pointer-events: none;
            transform: translate(-50%, -50%);
            animation: organicMorphGold 48s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes organicMorphGold {
            0% {
                border-radius: 45% 55% 50% 50% / 45% 45% 55% 55%;
                transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.96);
            }
            30% {
                transform: translate(-50%, -50%) translate(-30px, 20px) rotate(-2deg) scale(1.02);
            }
            60% {
                border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
                transform: translate(-50%, -50%) translate(20px, -40px) rotate(3deg) scale(0.98);
            }
            100% {
                border-radius: 45% 55% 50% 50% / 45% 45% 55% 55%;
                transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.96);
            }
        }

        /* Bottom Viewport Green Arc Glow — positioned above footer */
        .bottom-arc-glow {
            position: relative;
            width: 100%;
            height: 300px;
            margin-top: -300px; /* Fully overlap — no extra space */
            margin-bottom: 0;
            background: radial-gradient(ellipse 100vw 260px at 50% 100%, rgba(0, 255, 102, 0.32) 0%, rgba(0, 255, 102, 0.05) 55%, transparent 100%);
            filter: blur(80px);
            pointer-events: none;
            transform-origin: bottom center;
            animation: bottomGlowBreath 8s ease-in-out infinite;
        }

        @keyframes bottomGlowBreath {
            0% {
                transform: scaleY(0.96);
                opacity: 0.9;
            }
            50% {
                transform: scaleY(1.04);
                opacity: 1;
            }
            100% {
                transform: scaleY(0.96);
                opacity: 0.9;
            }
        }

        @media (max-width: 768px) {
            .second-section-glow {
                width: 1200px;
                height: 1100px;
                filter: blur(180px);
                /* Wider, softer crimson — emulates desktop's 2600×2400 organic glow at mobile scale */
                background: radial-gradient(ellipse at 50% 38%, 
                    rgba(185, 15, 30, 0.16) 0%, 
                    rgba(130, 10, 25, 0.06) 30%, 
                    rgba(60, 0, 80, 0.02) 55%, 
                    transparent 70%);
                /* Keep organicMorphRed animation from desktop — don't override */
            }
            .protocol-section-glow {
                position: fixed;
                width: 1100px;
                height: 900px;
                filter: blur(160px);
                /* Larger, softer green — emulates desktop's 1900×1200 glow */
                background: radial-gradient(ellipse at 50% 50%, 
                    rgba(0, 255, 102, 0.08) 0%, 
                    rgba(0, 200, 100, 0.03) 35%, 
                    rgba(0, 100, 80, 0.01) 60%, 
                    transparent 80%);
            }
            .evidence-section-glow {
                width: 1100px;
                height: 1000px;
                filter: blur(140px);
                /* Larger, warmer gold — emulates desktop's 1800×1800 glow */
                background: radial-gradient(ellipse at 50% 50%, 
                    rgba(255, 185, 40, 0.06) 0%, 
                    rgba(255, 120, 0, 0.02) 35%, 
                    rgba(100, 0, 80, 0.006) 60%, 
                    transparent 80%);
            }
            .bottom-arc-glow {
                height: 300px;
                background: radial-gradient(ellipse 100vw 200px at 50% 100%, 
                    rgba(0, 255, 102, 0.35) 0%, 
                    rgba(0, 200, 100, 0.10) 40%, 
                    rgba(0, 80, 80, 0.02) 70%, 
                    transparent 100%);
                filter: blur(70px);
            }
        }


        /* ==========================================================================
           AUDIT REQUEST MODAL STYLES
           ========================================================================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            z-index: 10000; /* Ensure overlay is above all content including film grain */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 24px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: #0A0A0A;
            border: 1px solid #1F1F1F;
            border-radius: 12px;
            width: 100%;
            max-width: 520px;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 80px rgba(255, 77, 77, 0.05);
            display: flex;
            flex-direction: column;
            transform: scale(0.95) translateY(10px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 40px;
            background: none;
            border: none;
            color: var(--muted-steel);
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: color 0.2s ease;
        }

        .modal-close:hover {
            color: #FFFFFF;
        }

        .modal-status-badge {
            position: absolute;
            top: 24px;
            left: 40px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            font-weight: 500;
            color: #00FF00;
            letter-spacing: 0.05em;
            z-index: 10;
        }

        .modal-status-dot {
            width: 6px;
            height: 6px;
            background-color: #00FF00;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
            animation: modalStatusPulse 2s infinite ease-in-out;
        }

        @keyframes modalStatusPulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        .modal-status-alert {
            color: var(--muted-steel);
            font-size: 8px;
            opacity: 0.85;
            margin-left: 2px;
        }

        .modal-header {
            padding: 56px 40px 24px 40px;
            border-bottom: 1px solid #1F1F1F;
            flex-shrink: 0;
            background: #0A0A0A;
            z-index: 5;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
            font-family: var(--font-body);
            letter-spacing: -0.02em;
        }

        .modal-subtitle {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            font-family: var(--font-body);
        }

        .audit-form {
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            overflow-y: auto;
            flex: 1;
            min-height: 0;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-group label {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .optional-label {
            color: var(--muted-steel);
            text-transform: none;
            letter-spacing: 0;
            font-family: var(--font-body);
            font-style: italic;
        }

        .form-group input,
        .form-group select {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 16px;
            color: #FFFFFF;
            font-family: var(--font-body);
            font-size: 14px;
            border-radius: 8px;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.04);
        }

        /* Validation errors */
        .form-group input.field-error,
        .form-group select.field-error,
        .form-group textarea.field-error {
            border-color: #FF4D4D !important;
            background: rgba(255, 77, 77, 0.03) !important;
            box-shadow: 0 0 15px rgba(255, 77, 77, 0.05) !important;
        }

        /* Micro-feedback: field completed */
        .form-group input.field-completed,
        .form-group select.field-completed {
            border-color: rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 14px;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-group select option {
            background: #0A0A0A;
            color: #FFFFFF;
        }

        .form-footer {
            margin-top: 12px;
        }

        .split-footer {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 16px;
        }

        .btn-secondary {
            display: inline-flex;
            background: transparent;
            color: var(--muted-steel);
            text-decoration: none;
            padding: 12px 24px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #1F1F1F;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font-body);
            text-transform: uppercase;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
        }

        /* Modal specific button styling override to ensure it matches landing page buttons */
        .modal-container .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 14px 24px;
        }

        /* MULTI-STEP STYLES */
        .form-step {
            display: none;
            flex-direction: column;
            gap: 24px;
        }

        .form-step.active {
            display: flex;
            animation: modalStepFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes modalStepFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Step 0 Clean Minimalist Styles */
        .intro-step {
            display: none;
            flex-direction: column;
            gap: 24px;
        }

        .intro-step.active {
            display: flex;
        }

        .intro-rules {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .intro-rule-item {
            display: flex;
            align-items: flex-start;
            position: relative;
            padding-left: 20px;
        }

        .intro-rule-item::before {
            content: "–";
            color: #FF4D4D;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 14px;
            line-height: 1.6;
            font-weight: bold;
        }

        .rule-text {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .progress-bar-container {
            padding: 24px 40px 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-shrink: 0;
        }

        .progress-track {
            flex-grow: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: #FFFFFF; /* High-contrast surgical white/light */
            width: 33%;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .step-indicator {
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--muted-steel);
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        /* Shake animation for invalid fields */
        @keyframes modalFieldShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-4px); }
            75% { transform: translateX(4px); }
        }

        .modal-shake {
            animation: modalFieldShake 0.3s ease-in-out;
            border-color: #FF4D4D !important;
            box-shadow: 0 0 8px rgba(255, 77, 77, 0.25) !important;
        }

        /* Custom Dropzone inside Step 3 */
        .modal-dropzone {
            border: 1px dashed rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.01);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .modal-dropzone:hover, .modal-dropzone.dragover {
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.03);
        }

        .modal-dropzone-icon {
            color: var(--muted-steel);
            width: 24px;
            height: 24px;
            transition: color 0.3s ease;
        }

        .modal-dropzone:hover .modal-dropzone-icon {
            color: #FFFFFF;
        }

        .modal-dropzone-text {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 500;
            color: #FFFFFF;
        }

        .modal-dropzone-sub {
            font-family: var(--font-body);
            font-size: 11px;
            color: var(--muted-steel);
        }

        .modal-divider {
            text-align: center;
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            color: rgba(255, 255, 255, 0.2);
            letter-spacing: 0.1em;
            margin: 4px 0;
        }

        .modal-privacy-note {
            font-size: 10px;
            color: var(--muted-steel);
            text-align: center;
            line-height: 1.5;
            margin-top: 8px;
        }

        /* Conversion Rate Radio Pill Grid */
        .conversion-rate-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .conversion-rate-option {
            cursor: pointer;
        }

        .conversion-rate-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            pointer-events: none;
        }

        .conversion-rate-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 12px 8px;
            border: 1px solid #1F1F1F;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.25s ease;
            text-align: center;
        }

        .conversion-rate-pill:hover {
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.04);
        }

        .conversion-rate-option input[type="radio"]:checked + .conversion-rate-pill {
            border-color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
        }

        .conversion-rate-num {
            font-family: 'Departure Mono', monospace;
            font-size: 16px;
            font-weight: 600;
            color: #FFFFFF;
            letter-spacing: 0.02em;
        }

        .conversion-rate-label {
            font-family: var(--font-body);
            font-size: 10px;
            color: var(--muted-steel);
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .conversion-rate-option input[type="radio"]:checked + .conversion-rate-pill .conversion-rate-label {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Link Repeater */
        .links-repeater {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .link-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .link-row-input-wrapper {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
        }

        .link-row-icon {
            position: absolute;
            left: 14px;
            color: var(--muted-steel);
            pointer-events: none;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .link-row-input-wrapper:focus-within .link-row-icon {
            color: rgba(255, 255, 255, 0.5);
        }

        .link-row-input-wrapper .link-input {
            padding-left: 38px !important;
        }

        .remove-link-btn {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 1px solid transparent;
            border-radius: 6px;
            color: var(--muted-steel);
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 0;
        }

        .remove-link-btn:hover {
            color: #FF4D4D;
            border-color: rgba(255, 77, 77, 0.2);
            background: rgba(255, 77, 77, 0.06);
        }

        .add-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--muted-steel);
            font-family: var(--font-body);
            font-size: 12px;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.02em;
            width: 100%;
            justify-content: center;
        }

        .add-link-btn:hover {
            color: #FFFFFF;
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
        }

        .add-link-btn svg {
            transition: transform 0.2s ease;
        }

        .add-link-btn:hover svg {
            transform: rotate(90deg);
        }

        /* Textarea styling (matches inputs) */
        .form-group textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 16px;
            color: #FFFFFF;
            font-family: var(--font-body);
            font-size: 14px;
            border-radius: 8px;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
            resize: vertical;
            min-height: 72px;
            max-height: 160px;
            line-height: 1.5;
        }

        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .form-group textarea:focus {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.04);
        }

        .form-group textarea.field-completed {
            border-color: rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
        }

        /* Success Step styling */
        .success-wrapper {
            padding: 56px 40px 40px 40px;
            text-align: center;
            animation: modalStepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            display: flex;
            flex-direction: column;
            align-items: center;
        }


        .success-title {
            font-size: 28px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
            font-family: var(--font-body);
            letter-spacing: -0.02em;
        }

        .success-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            font-family: var(--font-body);
            margin-bottom: 24px;
            max-width: 360px;
        }

        .success-ticket {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            margin-bottom: 32px;
        }

        .success-ticket-label {
            font-family: 'Departure Mono', monospace;
            font-size: 9px;
            color: var(--muted-steel);
            letter-spacing: 0.05em;
        }

        .success-ticket-id {
            font-family: 'Departure Mono', monospace;
            font-size: 12px;
            color: #FFFFFF;
            letter-spacing: 0.02em;
        }

        .success-expect {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .success-expect-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.02);
        }

        .success-expect-item.highlight-step {
            border-color: rgba(255, 159, 0, 0.25);
            background: rgba(255, 159, 0, 0.02);
        }

        .success-expect-item.highlight-step .success-expect-num {
            color: #FF9F00;
        }

        .success-expect-num {
            flex-shrink: 0;
            font-family: 'Departure Mono', monospace;
            font-size: 10px;
            color: var(--muted-steel);
            letter-spacing: 0.05em;
            padding-top: 2px;
        }

        .success-expect-text {
            font-size: 13px;
            color: var(--text-tertiary);
            font-family: var(--font-body);
            line-height: 1.4;
        }

        .success-close-btn {
            width: 100%;
            padding: 14px 24px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--muted-steel);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .success-close-btn:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
        }

        /* ==========================================================================
           DIAGNOSIS SECTION — MOBILE RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            .problem-section {
                padding: 60px 0 32px 0;
            }
            .problem-section .container {
                padding: 0 20px;
            }
            .problem-headline {
                font-size: clamp(28px, 7vw, 56px);
                margin-bottom: 16px;
            }
            .problem-sub {
                font-size: 16px;
                max-width: 100%;
                margin-bottom: 32px;
            }
            .diagnosis-scroll-container {
                padding: 24px 0;
            }
            .objection-row {
                width: 260px;
                padding: 20px;
                gap: 10px;
            }
            .culm-punch {
                font-size: 20px;
                line-height: 1.35;
                max-width: 100%;
                padding: 0 20px;
            }
        }

        /* ==========================================================================
           PROTOCOL SECTION — MOBILE RESPONSIVE (Card internals)
           ========================================================================== */
        @media (max-width: 768px) {
            /* Protocol container padding */
            .protocol-section {
                padding: 32px 0 100px 0;
            }
            .protocol-sticky-wrapper .container {
                padding: 0 20px;
            }
            .protocol-header {
                text-align: center;
            }
            .protocol-headline {
                font-size: clamp(28px, 7vw, 52px);
            }
            .protocol-sub {
                font-size: 16px;
                max-width: 100%;
            }
            .protocol-grid {
                gap: 32px;
            }
            /* Protocol cards — tighter padding on mobile */
            .protocol-card {
                padding: 20px;
                border-radius: 16px;
            }
            .card-header {
                padding-bottom: 12px;
                margin-bottom: 16px;
            }
            /* Deal telemetry grid — stack on mobile */
            .deal-telemetry-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .telemetry-node {
                padding: 10px;
            }
            /* Subtext matrix overrides removed */
            /* Playbook matrix — single column */
            .playbook-matrix {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            /* Script diff window */
            .diff-line {
                padding: 6px 10px;
                font-size: 8px;
            }
            /* Step rows — mobile layout: number on top of headline */
            .step-row {
                flex-direction: column !important;
                gap: 4px !important;
                align-items: flex-start !important;
            }
            .step-num {
                font-size: 28px;
                padding-top: 0;
                margin-bottom: 2px;
                color: var(--muted-steel);
            }
            .step-content {
                width: 100%;
            }
            .step-content h3 {
                font-size: 20px;
            }
            .step-content p {
                font-size: 14px;
            }
            /* Mobile step visual cards */
            .mobile-step-visual .protocol-card {
                margin-top: 16px;
            }
            /* Step 4 CTA: hide desktop button, show mobile button inside card, add card padding */
            .step-row[data-step="4"] .step-content {
                display: flex;
                flex-direction: column;
            }
            .step-row[data-step="4"] .step-content > .protocol-cta-btn {
                display: none !important;
            }
            .mobile-only-cta {
                display: inline-flex !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                transform: none !important;
                align-items: center;
                justify-content: center;
                align-self: center;
                background: #FFF !important;
                color: #000 !important;
                border-color: #FFF !important;
                font-weight: 700;
                letter-spacing: 0.05em;
                font-size: 14px;
                padding: 12px 24px;
                border-radius: 8px;
                cursor: pointer;
                margin-top: 16px;
                margin-bottom: 8px;
                width: 100%;
                max-width: 280px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255,255,255,0.2) inset;
            }
            .mobile-step-visual .protocol-card .card-body {
                padding-bottom: 32px !important;
            }
            .mobile-step-visual {
                margin-bottom: 60px;
            }
        }

        /* ==========================================================================
           EVIDENCE SECTION — MOBILE RESPONSIVE (Manifesto + Grid)
           ========================================================================== */
        @media (max-width: 768px) {
            .evidence-section {
                padding-top: 100px !important;
                padding-left: 20px;
                padding-right: 20px;
            }
            /* Manifesto split — reduce inner padding */
            .manifesto-split-container {
                border-radius: 16px;
                margin-bottom: 48px;
            }
            .manifesto-video-column {
                height: 240px;
            }
            .manifesto-letter-column {
                padding: 28px 20px;
            }
            .manifesto-letter-title {
                font-size: 20px;
                margin-bottom: 16px;
            }
            .manifesto-letter-body {
                font-size: 13px;
            }
            .manifesto-video-overlay {
                display: none; /* No hover overlay on mobile — video autoplays on scroll */
            }
            .manifesto-split-container {
                cursor: default; /* No pointer cursor on mobile */
            }
            /* Evidence cards */
            .evidence-card {
                padding: 24px 20px;
                gap: 16px;
            }
            .quote-punchline {
                font-size: 16px;
            }
            .quote-context {
                font-size: 13px;
            }
            .card-brand-logo {
                top: 24px;
                right: 20px;
                height: 18px;
            }
            /* Evidence intro card */
            .evidence-intro-card {
                padding: 24px 20px;
            }
            .evidence-intro-card .intro-heading {
                font-size: 22px;
            }
            /* Evidence grid — side padding so cards don't touch edges */
            .evidence-grid {
                padding: 0 4px;
            }
        }

        /* ==========================================================================
           SECURITY SECTION — MOBILE RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            .security-section {
                padding-left: 20px;
                padding-right: 20px;
            }
            .security-grid {
                max-width: 100%;
            }
            .security-node {
                flex: 1 1 100%;
                min-width: 0;
                padding: 16px 20px;
            }
        }

        /* ==========================================================================
           FAQ SECTION — MOBILE RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            .faq-section {
                padding-left: 20px;
                padding-right: 20px;
            }
            .faq-header-block {
                margin-bottom: 40px;
            }
            .faq-question {
                padding: 20px 0;
                font-size: 15px;
                min-height: 44px;
            }
            .faq-answer {
                font-size: 14px;
            }
            .faq-icon {
                font-size: 18px;
                min-width: 24px;
                text-align: center;
            }
        }

        /* ==========================================================================
           FINAL OBJECTION & FINAL CTA — MOBILE RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            .final-objection-container {
                padding: 0 20px;
            }
            .final-objection-body {
                font-size: 14px;
            }
            .final-objection-btn {
                min-width: 100%;
                width: 100%;
            }
            /* Final CTA section */
            .final-cta-section {
                padding: 80px 0;
            }
            .final-cta-section .container {
                padding: 0 20px;
            }
            .final-cta-section h2 {
                font-size: clamp(28px, 7vw, 64px) !important;
                max-width: 100% !important;
            }
            .final-cta-section p {
                font-size: 16px !important;
                max-width: 100% !important;
                padding: 0 !important;
            }
            .final-cta-section .cta-group {
                flex-direction: column;
                gap: 12px;
            }
            .final-cta-section .btn-primary,
            .final-cta-section .btn-ghost {
                width: 100%;
                min-width: 0 !important;
                max-width: 360px;
                margin: 0 auto;
            }
        }

        /* ==========================================================================
           AUDIT MODAL — MOBILE RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            /* Full-screen takeover on mobile */
            .modal-overlay {
                padding: 0;
                align-items: stretch;
            }

            .modal-container {
                width: 100%;
                max-width: 100%;
                height: 100%;
                max-height: 100vh;
                border-radius: 0;
                border: none;
            }

            /* Close button — 44×44 minimum tap target */
            .modal-close {
                top: 16px;
                right: 16px;
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
            }

            /* Status badge repositioned for mobile */
            .modal-status-badge {
                top: 16px;
                left: 20px;
            }

            /* Header — reduced padding for mobile */
            .modal-header {
                padding: 48px 20px 20px 20px;
            }

            .modal-title {
                font-size: 22px;
            }

            /* Progress bar — full width with mobile padding */
            .progress-bar-container {
                padding: 20px 20px 0 20px;
            }

            /* Form — mobile padding */
            .audit-form {
                padding: 24px 20px;
                gap: 20px;
            }

            /* Inputs & selects — 48px height for touch targets */
            .form-group input,
            .form-group select {
                padding: 14px 16px;
                min-height: 48px;
                font-size: 16px; /* Prevents iOS zoom on focus */
            }

            /* Dropzone — full width, proper mobile padding */
            .modal-dropzone {
                padding: 24px 16px;
                width: 100%;
            }

            /* Form footer buttons — stack vertically on mobile */
            .split-footer {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            /* Reorder so NEXT/SUBMIT is on top, BACK is below */
            .split-footer .btn-primary {
                order: -1;
            }

            /* Both button types — full width and 48px touch target */
            .modal-container .btn-primary,
            .btn-secondary {
                width: 100%;
                min-height: 48px;
                padding: 14px 24px;
            }

            /* Privacy note — allow natural line wrap on mobile */
            .modal-privacy-note br {
                display: none;
            }

            /* Success step — mobile padding */
            .success-wrapper {
                padding: 40px 20px 24px 20px;
            }

            .success-title {
                font-size: 24px;
            }

            .success-close-btn {
                min-height: 48px;
            }

            .success-expect-item {
                padding: 10px 14px;
            }

            /* Conversion rate grid \u2014 2 columns on mobile */
            .conversion-rate-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }

            .conversion-rate-pill {
                padding: 10px 6px;
            }

            .conversion-rate-num {
                font-size: 14px;
            }

            /* Link rows \u2014 mobile touch targets */
            .remove-link-btn {
                width: 44px;
                height: 44px;
            }

            .add-link-btn {
                padding: 10px 0;
                font-size: 13px;
            }

            /* Textarea \u2014 prevent iOS zoom */
            .form-group textarea {
                font-size: 16px;
                min-height: 80px;
            }
        }
    
        /* ==========================================================================
           MULTILINGUAL AND LANGUAGE TOGGLE STYLES
           ========================================================================== */
        /* Language Visibility Controls */
        html:not([lang="fr"]) [lang="fr"] {
            display: none !important;
        }

        html[lang="fr"] [lang="en"] {
            display: none !important;
        }

        /* Premium sliding language pill switcher */
        .nav-lang-toggle {
            grid-area: stack;
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 0;
            margin-right: 4px;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .nav-lang-toggle .globe-icon {
            width: 15px;
            height: 15px;
            color: var(--muted-steel);
            opacity: 0.6;
            transition: color 0.3s ease, opacity 0.3s ease;
            cursor: pointer;
        }

        .nav-lang-toggle:hover .globe-icon,
        .nav-lang-toggle.active .globe-icon {
            color: #FFFFFF;
            opacity: 1;
        }

        .lang-pill-container {
            display: flex;
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid transparent;
            border-radius: 20px;
            padding: 2px 0;
            user-select: none;
            overflow: hidden;
            width: 0;
            height: 26px;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            margin-right: 0;
            transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                        margin-right 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.35s ease;
            will-change: width, opacity, margin-right;
        }

        .nav-lang-toggle.active .lang-pill-container {
            width: 76px;
            opacity: 1;
            pointer-events: auto;
            border-color: rgba(255, 255, 255, 0.08);
            padding: 2px;
            margin-right: 8px;
        }

        .lang-pill-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 34px;
            height: 20px;
            background: #FFFFFF;
            border-radius: 18px;
            transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            z-index: 1;
        }

        body.fr-mode .lang-pill-slider {
            transform: translateX(36px);
        }

        .lang-btn-item {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--muted-steel);
            font-family: var(--font-heading);
            font-size: 10px;
            font-weight: 700;
            padding: 2px 0;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: color 0.3s ease;
            outline: none;
        }

        body.en-mode .lang-btn-item[data-lang-val="en"] {
            color: #000000;
        }
        body.fr-mode .lang-btn-item[data-lang-val="fr"] {
            color: #000000;
        }

        /* Nav CTA transition and grid stack positioning */
        .nav-cta {
            grid-area: stack;
            justify-self: end;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                        background 0.3s ease, 
                        color 0.3s ease;
            will-change: opacity, transform;
        }

        /* Default state (within Hero): CTA hidden, Lang visible */
        .custom-nav:not(.scrolled-past-hero) .nav-cta {
            opacity: 0;
            pointer-events: none;
            transform: translateX(15px);
        }

        .custom-nav:not(.scrolled-past-hero) .nav-lang-toggle {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0);
        }

        /* Scrolled state: CTA visible, Lang hidden */
        .custom-nav.scrolled-past-hero .nav-cta {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0);
        }

        .custom-nav.scrolled-past-hero .nav-lang-toggle {
            opacity: 0;
            pointer-events: none;
            transform: translateX(-15px);
        }

        /* Scrolled past hero state: position lock (blur background handled by ::before pseudo-element) */
        body .custom-nav.scrolled-past-hero {
            position: fixed;
            top: 0;
        }

        @media (max-width: 768px) {
            .nav-lang-toggle {
                margin-right: 0;
            }
            .lang-pill-container {
                width: 0;
                height: 24px;
                padding: 2px 0;
            }
            .nav-lang-toggle.active .lang-pill-container {
                width: 70px;
                border-color: rgba(255, 255, 255, 0.08);
                padding: 2px;
            }
            .lang-pill-slider {
                width: 31px;
                height: 18px;
            }
            body.fr-mode .lang-pill-slider {
                transform: translateX(33px);
            }
            .lang-btn-item {
                font-size: 9px;
            }
        }

        /* Seamless fade & slide up transition */
        @keyframes langFade {
            from {
                opacity: 0.8;
                transform: translateY(1px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lang-fade-active {
            animation: langFade 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }


        /* ==========================================================================
           MOBILE RESPONSIVE — FINAL OVERRIDES (placed last to win cascade)
           Targets ≤768px and ≤480px. Uses !important where default.hbs conflicts.
           ========================================================================== */
        @media (max-width: 768px) {

            /* --- GLOBAL OVERFLOW PREVENTION --- */
            html {
                overflow-x: clip !important;
                /* Overlay scrollbar prevents it from consuming content width */
                scrollbar-gutter: auto !important;
            }

            body {
                overflow-x: clip !important;
                /* Prevent anything from pushing body wider than viewport */
                max-width: 100vw !important;
            }

            /* Disable language fade/slide transition on mobile to prevent viewport/layer compositing scroll lag */
            .lang-fade-active {
                animation: none !important;
            }

            /* Force text to wrap — prevent any single line from exceeding viewport */
            h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, blockquote {
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }

            /* --- HERO SECTION --- */
            .hero-section {
                padding-top: 130px !important;
                padding-bottom: 60px !important;
                min-height: auto !important;
                text-align: center !important;
                align-items: center !important;
                /* Break out of .container's 20px padding so the gradient covers full viewport width */
                margin-left: -20px !important;
                margin-right: -20px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
                /* Soft multi-layered ambient background — hero only, not the whole page */
                background: radial-gradient(circle at 50% 35%, 
                    rgba(255, 59, 48, 0.14) 0%, 
                    rgba(185, 28, 28, 0.06) 35%, 
                    rgba(76, 5, 25, 0.02) 65%, 
                    transparent 80%) !important;
            }

            /* Container padding — override the 80px base */
            .container {
                padding: 0 20px !important;
            }

            .hero-headline {
                font-size: clamp(26px, 8vw, 42px) !important;
                line-height: 1.12 !important;
                margin-bottom: 20px !important;
                max-width: 100% !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                hyphens: auto !important;
            }

            body.fr-mode .hero-headline,
            html[lang="fr"] .hero-headline {
                font-size: clamp(24px, 7vw, 36px) !important;
                /* FR headline wraps more — tighten gap to subhead */
                margin-bottom: 12px !important;
            }

            .hero-subhead {
                font-size: 16px !important;
                line-height: 1.55 !important;
                max-width: 100% !important;
                margin-bottom: 28px !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            /* CTA group */
            .cta-group {
                flex-direction: column !important;
                gap: 20px !important;
                width: 100% !important;
                align-items: center !important;
            }

            .btn-primary {
                width: 100% !important;
                max-width: 340px !important;
                justify-content: center !important;
                padding: 16px 20px !important;
                font-size: 13px !important;
                font-weight: 700 !important;
                min-height: 48px !important;
            }

            /* Trust anchor — stack below CTA */
            .cta-trust-anchor {
                justify-content: center !important;
                flex-wrap: wrap !important;
                gap: 12px !important;
                padding-left: 0 !important;
            }

            .trust-title {
                font-size: 12px !important;
            }

            .trust-credential {
                font-size: 12px !important;
            }

            /* Hero disclaimer */
            .cta-container p[style] {
                font-size: 10px !important;
                text-align: center !important;
            }

            /* --- PROBLEM / DIAGNOSIS SECTION --- */
            .problem-section {
                padding: 60px 20px 24px 20px !important;
                overflow: clip !important; /* Prevent iOS from creating a separate scroll container */
            }

            .problem-headline {
                font-size: clamp(24px, 7vw, 40px) !important;
                margin-bottom: 16px !important;
                line-height: 1.15 !important;
            }

            .problem-sub {
                font-size: 15px !important;
                max-width: 100% !important;
                line-height: 1.55 !important;
                margin-bottom: 28px !important;
            }

            .diagnosis-carousel {
                margin-left: -20px !important;
                margin-right: -20px !important;
                width: calc(100% + 40px) !important;
            }

            .diagnosis-carousel::before,
            .diagnosis-carousel::after {
                display: none !important;
            }

            .culm-punch {
                font-size: 18px !important;
                line-height: 1.4 !important;
                max-width: 100% !important;
                padding: 0 !important;
            }

            /* Objection cards — one full + peek of next on mobile */
            .objection-row {
                width: 280px !important;
                min-width: 280px !important;
                padding: 18px !important;
                gap: 8px !important;
            }

            /* Diagnosis carousel wrapper */
            .diagnosis-list {
                gap: 12px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }

            .objection-said-text,
            .objection-meant-text {
                font-size: 13px !important;
            }

            .objection-label {
                font-size: 8px !important;
            }

            /* --- SOLUTION SECTION --- */
            .solution-headline {
                font-size: clamp(24px, 7vw, 36px) !important;
                max-width: 100% !important;
            }

            .solution-section {
                padding: 20px 0 !important;
                height: auto !important;
                margin-bottom: 40px !important;
            }

            /* --- PROTOCOL SECTION --- */
            .protocol-section {
                padding: 24px 0 60px 0 !important;
            }

            .protocol-headline {
                font-size: clamp(24px, 7vw, 40px) !important;
            }

            .protocol-sub {
                font-size: 15px !important;
                max-width: 100% !important;
                line-height: 1.55 !important;
            }

            .protocol-steps {
                gap: 28px !important;
            }

            .step-row {
                flex-direction: column !important;
                gap: 4px !important;
                align-items: flex-start !important;
            }

            .step-num {
                font-size: 24px !important;
                min-width: unset !important;
                padding-top: 0 !important;
                margin-bottom: 2px !important;
                color: var(--muted-steel) !important;
            }

            .step-content {
                width: 100% !important;
            }

            .step-content h3 {
                font-size: 18px !important;
            }

            .step-content p {
                font-size: 14px !important;
                line-height: 1.5 !important;
            }

            .mobile-step-visual {
                margin-top: 12px !important;
                margin-bottom: 16px !important;
            }

            .mobile-step-visual .protocol-card {
                margin-top: 0 !important;
            }

            /* Protocol cards */
            .protocol-card {
                padding: 16px !important;
                border-radius: 14px !important;
            }

            .card-header {
                padding-bottom: 10px !important;
                margin-bottom: 14px !important;
            }

            .card-header h4 {
                font-size: 13px !important;
            }

            .deal-telemetry-grid {
                grid-template-columns: 1fr !important;
                gap: 6px !important;
            }

            .telemetry-node {
                padding: 8px 10px !important;
                font-size: 11px !important;
            }

            .playbook-matrix {
                grid-template-columns: 1fr !important;
                gap: 8px !important;
            }

            .diff-line {
                padding: 5px 8px !important;
                font-size: 8px !important;
            }

            /* --- EVIDENCE SECTION --- */
            .evidence-section {
                padding: 60px 20px !important;
            }

            .evidence-title {
                font-size: clamp(24px, 7vw, 36px) !important;
            }

            .evidence-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
                padding: 0 !important;
            }

            .evidence-card {
                padding: 20px 16px !important;
                gap: 14px !important;
            }

            .quote-punchline {
                font-size: 15px !important;
                line-height: 1.45 !important;
            }

            .quote-context {
                font-size: 12px !important;
            }

            /* Manifesto */
            .manifesto-split-container {
                border-radius: 14px !important;
                margin-bottom: 40px !important;
            }

            .manifesto-video-column {
                height: 220px !important;
            }

            .manifesto-letter-column {
                padding: 24px 18px !important;
            }

            .manifesto-letter-title {
                font-size: 18px !important;
            }

            .manifesto-letter-body {
                font-size: 13px !important;
                line-height: 1.6 !important;
            }

            .evidence-intro-card {
                padding: 20px 16px !important;
            }

            .evidence-intro-card .intro-heading {
                font-size: 20px !important;
            }

            /* --- SECURITY SECTION --- */
            .security-section {
                padding: 60px 20px !important;
            }

            .security-grid {
                max-width: 100% !important;
            }

            .security-node {
                flex: 1 1 100% !important;
                min-width: 0 !important;
                padding: 14px 16px !important;
            }

            /* --- FAQ SECTION --- */
            .faq-section {
                padding: 60px 20px !important;
            }

            .faq-title {
                font-size: clamp(24px, 7vw, 36px) !important;
            }

            .faq-question {
                padding: 18px 0 !important;
                font-size: 14px !important;
                min-height: 44px !important;
                gap: 12px !important;
            }

            .faq-answer {
                font-size: 13px !important;
                line-height: 1.6 !important;
            }

            .faq-icon {
                font-size: 16px !important;
                min-width: 24px !important;
            }

            /* --- FINAL OBJECTION + FINAL CTA --- */
            .final-objection-container {
                padding: 0 20px !important;
            }

            .final-objection-body {
                font-size: 14px !important;
                line-height: 1.6 !important;
            }

            .final-objection-headline {
                font-size: clamp(22px, 6vw, 32px) !important;
            }

            .final-cta-section {
                padding: 60px 0 !important;
            }

            .final-cta-section .container {
                padding: 0 20px !important;
            }

            .final-cta-section h2 {
                font-size: clamp(24px, 7vw, 48px) !important;
                max-width: 100% !important;
            }

            .final-cta-section p {
                font-size: 15px !important;
                max-width: 100% !important;
                padding: 0 !important;
            }

            .final-cta-section .btn-primary,
            .final-cta-section .btn-ghost {
                width: 100% !important;
                max-width: 340px !important;
                margin: 0 auto !important;
                min-width: 0 !important;
            }

            .final-objection-btn {
                width: 100% !important;
                max-width: 340px !important;
            }

            /* --- FOOTER MOVED TO DEFAULT.HBS --- */

            /* --- NAV --- */
            .custom-nav {
                height: 56px !important;
                top: 0 !important;
            }

            .nav-container {
                padding: 0 16px !important;
            }

            .nav-logo img {
                height: 24px !important;
            }

            .nav-cta {
                padding: 8px 14px !important;
                font-size: 9px !important;
            }

            /* --- LAUNCH STRIP & BANNER --- */
            .launch-strip,
            .launch-banner {
                display: none !important;
            }

            /* --- BOTTOM GLOW --- */
            .bottom-arc-glow {
                height: 200px !important;
                margin-top: -200px !important;
            }

            /* --- FOOTER OVERRIDES (Centered & Stacked) --- */
            .footer-main {
                padding: 60px 20px 40px 20px !important;
                background: #000000 !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .footer-main .container {
                padding: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }

            .footer-top {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                width: 100% !important;
                gap: 40px !important;
                margin-bottom: 40px !important;
            }

            .footer-brand {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .footer-logo {
                margin: 0 auto 16px auto !important;
                display: block !important;
            }

            .footer-tagline {
                text-align: center !important;
                max-width: 290px !important;
                margin: 0 auto !important;
                font-size: 13px !important;
                line-height: 1.6 !important;
            }

            .footer-nav {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
                gap: 32px !important;
            }

            .footer-col {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                width: 100% !important;
                gap: 12px !important;
            }

            .footer-col-label {
                text-align: center !important;
                margin-bottom: 4px !important;
                width: 100% !important;
                display: block !important;
            }

            .footer-link {
                text-align: center !important;
                width: 100% !important;
                display: block !important;
            }

            .footer-bottom {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                width: 100% !important;
                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
                padding-top: 32px !important;
                margin-top: 0 !important;
                gap: 20px !important;
            }

            .footer-legal {
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }

            .footer-copyright {
                text-align: center !important;
                width: 100% !important;
                display: block !important;
            }
        }


        /* ==========================================================================
           SMALL PHONE OVERRIDES (≤480px)
           Extra size reductions for very small screens
           ========================================================================== */
        @media (max-width: 480px) {
            .hero-headline {
                font-size: clamp(26px, 8.5vw, 36px) !important;
            }

            body.fr-mode .hero-headline,
            html[lang="fr"] .hero-headline {
                font-size: clamp(24px, 7.5vw, 34px) !important;
            }

            .hero-subhead {
                font-size: 15px !important;
            }

            .btn-primary {
                font-size: 12px !important;
                font-weight: 700 !important;
                padding: 14px 16px !important;
            }

            .trust-title {
                font-size: 11px !important;
            }

            .trust-credential {
                font-size: 11px !important;
            }

            .trust-avatar-wrapper {
                width: 38px !important;
                height: 38px !important;
            }

            .problem-headline {
                font-size: clamp(22px, 6.5vw, 32px) !important;
            }

            .culm-punch {
                font-size: 16px !important;
            }

            .protocol-headline {
                font-size: clamp(22px, 6.5vw, 36px) !important;
            }

            .step-num {
                font-size: 22px !important;
                color: var(--muted-steel) !important;
            }

            .step-content h3 {
                font-size: 16px !important;
            }

            .step-content p {
                font-size: 13px !important;
            }

            .evidence-title {
                font-size: clamp(22px, 6.5vw, 32px) !important;
            }

            .faq-title {
                font-size: clamp(22px, 6.5vw, 32px) !important;
            }

            .faq-question {
                font-size: 13px !important;
            }

            .final-cta-section h2 {
                font-size: clamp(22px, 6.5vw, 40px) !important;
            }

            .objection-row {
                width: 230px !important;
                padding: 14px !important;
            }
        }

        /* Hide file upload elements on mobile */
        @media (max-width: 768px) {
            .card-divider,
            .dropzone-box {
                display: none !important;
            }
        }