        :root {
            --dark: #1a3c3c;
            --mid: #2d5c5a;
            --light-green: #3a6e6b;
            --cream: #FFFCF0;
            --white: #ffffff;
            --yellow: #f5b731;
            --text: #1a3c3c;
            --text-muted: #5a7a78;
            --text-on-dark: #d1e0df;
            --text-on-dark-bright: #ffffff;
            --petrol: #e8927c;
            --petrol-dark: #c0604d;
            --squiggle: 255px 15px 225px 15px / 15px 225px 15px 255px;
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Rubik', sans-serif;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ═══════════════════════════════════════
           TOPBAR
           ═══════════════════════════════════════ */
        .topbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 200;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 20px; height: 64px;
            background: rgba(26,60,60,0.92);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--yellow);
            transition: background 0.4s;
        }
        .topbar.scrolled { background: rgba(26,60,60,0.98); }
        .topbar-left { display: flex; align-items: center; gap: 16px; }
        .topbar-logo { height: 44px; }
        .topbar-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
        .topbar-label {
            font-size: 12px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 3px; color: var(--yellow);
        }
        .topbar-nav { display: flex; gap: 4px; }
        .topbar-nav a {
            font-size: 13px; font-weight: 500; color: var(--text-on-dark);
            text-decoration: none; padding: 8px 16px; border-radius: 6px;
            transition: background 0.2s, color 0.2s; cursor: pointer;
        }
        .topbar-nav a:hover { background: rgba(245,183,49,0.15); color: var(--yellow); }

        /* ═══════════════════════════════════════
           TICKER
           ═══════════════════════════════════════ */
        .ticker {
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 199;
            background: var(--yellow); height: 40px; overflow: hidden;
            display: none;
        }
        .ticker-flag {
            flex-shrink: 0; background: var(--dark); color: var(--yellow);
            font-weight: 700; font-size: 13px;
            letter-spacing: 3px; text-transform: uppercase;
            padding: 0 22px; height: 100%; display: flex; align-items: center;
            z-index: 1; position: relative;
        }
        .ticker-flag::after {
            content: ''; position: absolute; right: -14px; top: 0; bottom: 0;
            border-left: 14px solid var(--dark); border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
        }
        .ticker-track {
            display: flex; animation: scroll-ticker 45s linear infinite;
            font-weight: 600; font-size: 14px;
            letter-spacing: 0.5px; text-transform: uppercase; color: var(--dark);
            padding-left: 22px;
        }
        .ticker-track span { flex-shrink: 0; padding: 0 36px; white-space: nowrap; }
        .ticker-track span::before { content: '/// '; opacity: 0.35; }
        @keyframes scroll-ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ═══════════════════════════════════════
           HERO — COMPOSITE PARALLAX
           ═══════════════════════════════════════ */
        .hero-wrap {
            position: relative;
            height: 200vh;
            margin-top: 64px;
        }
        .hero-stage {
            position: sticky; top: 64px;
            width: 100%; height: calc(100vh - 64px);
            overflow: hidden;
            background: var(--dark);
            z-index: 1;
        }
        /* Background image */
        .hero-bg {
            position: absolute; inset: -5%;
            width: 110%; height: 110%;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.7;
        }
        .hero-vignette {
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 70% 55% at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%),
                linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.5) 100%);
            pointer-events: none;
        }
        /* Banner from top */
        .hero-banner {
            position: absolute;
            /* top:0 (not -20px) so the banner's top stays inside the stage's
               overflow:hidden clip; transform-origin top so the scroll scale
               grows downward instead of pushing the ropes above the clip. */
            top: 0; left: 50%;
            transform: translateX(-50%) translateY(0%);
            width: clamp(400px, 75vw, 1000px);
            z-index: 3;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
            pointer-events: none;
            transform-origin: center top;
        }
        .hero-banner img { width: 100%; display: block; }
        /* Mike from bottom */
        .hero-mike {
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%) translateY(0%);
            height: 55vh;
            width: auto;
            z-index: 4;
            pointer-events: none;
            transform-origin: center bottom;
        }
        .hero-mike img {
            height: 100%; width: auto; display: block;
            mix-blend-mode: screen;
        }
        /* Text overlay */
        .hero-text {
            position: absolute; bottom: 0; left: 0; right: 0;
            z-index: 10; text-align: center;
            padding: 0 20px 5vh;
            background: linear-gradient(transparent, rgba(10,20,20,0.95) 70%);
        }
        .hero-text { transition: opacity 0.4s ease; }
        .hero-text.hidden { opacity: 0; }
        .hero-text h1 {
            font-size: clamp(2.2rem, 5.5vw, 3.8rem);
            font-weight: 700; line-height: 1.08;
            color: var(--white); margin-bottom: 12px;
        }
        .hero-text h1 .accent { color: var(--yellow); }
        .hero-text .tagline {
            font-size: clamp(0.9rem, 1.8vw, 1.15rem);
            color: var(--text-on-dark); max-width: 580px;
            margin: 0 auto; line-height: 1.7;
        }
        .hero-scroll {
            position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 11;
            animation: bounce 2s ease-in-out infinite;
        }
        .hero-scroll svg { width: 24px; stroke: var(--yellow); opacity: 0.5; }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }
        /* Wavy bottom edge on the intro that overlaps hero.
           The -50vh pull-up is ONLY safe when the video is the element directly
           after the hero. If the block is moved further down the page, that same
           negative margin yanks the video up over whatever section precedes it
           (it was overlapping the cream intro). So scope the overlap to the
           hero-adjacent case only; anywhere else the video sits in normal flow. */
        .hero-intro-overlap { position: relative; }
        .hero-wrap + .hero-intro-overlap {
            z-index: 20;
            margin-top: -50vh;
        }

        /* ═══════════════════════════════════════
           VIDEO SECTION (TCC-style)
           ═══════════════════════════════════════ */
        .video-section {
            background: var(--dark);
            padding: 120px 28px 80px;
            position: relative;
        }
        /* Wavy top edge from cream into dark */
        .video-section::before {
            content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 100vw; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF0' d='M0,30 C360,5 720,55 1080,25 C1260,12 1380,30 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
        }
        .video-section::after {
            content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 100vw; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF0' d='M0,30 C360,55 720,5 1080,30 C1260,45 1380,30 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
        }
        .video-layout {
            max-width: 900px; margin: 0 auto;
            text-align: center;
            padding: 0 28px;
        }
        .video-frame {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            border: solid 4px var(--yellow);
            overflow: hidden;
            background: #000;
            margin-bottom: 40px;
        }
        .video-frame video {
            width: 100%; height: 100%; object-fit: cover; display: block;
        }
        /* Custom play overlay */
        .video-frame { position: relative; cursor: pointer; }
        .video-play-btn {
            position: absolute; inset: 0; z-index: 5;
            display: flex; align-items: center; justify-content: center;
            background: rgba(26,60,60,0.4);
            transition: background 0.3s, opacity 0.4s;
        }
        .video-play-btn:hover { background: rgba(26,60,60,0.25); }
        .video-play-btn.hidden { opacity: 0; pointer-events: none; }
        .video-play-btn svg {
            width: 72px; height: 72px; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
        }
        .video-text {
            max-width: 680px; margin: 0 auto;
        }
        .video-text h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700; color: var(--yellow);
            margin-bottom: 8px; line-height: 1.15;
        }
        .video-text .vid-squiggle {
            width: clamp(100px, 16vw, 160px); height: auto;
            filter: brightness(0) invert(1);
            opacity: 0.5;
            margin: -4px auto 20px; display: block;
        }
        .video-text p {
            font-size: 1.05rem; line-height: 1.8;
            color: var(--text-on-dark); margin-bottom: 16px;
        }
        .video-text .vid-btn {
            display: inline-block; cursor: pointer;
            font-family: 'Rubik', sans-serif; font-size: 13px; font-weight: 600;
            padding: 12px 28px; text-decoration: none;
            color: var(--yellow); background: transparent;
            border: 2px dashed var(--yellow);
            border-radius: var(--squiggle);
            transition: background 0.3s, color 0.3s;
            margin-top: 8px;
        }
        .video-text .vid-btn:hover { background: var(--yellow); color: var(--dark); }

        @media (max-width: 768px) {
            .video-section { padding: 80px 16px 60px; }
            .video-layout { padding: 0 8px; }
            .video-frame { border-radius: 12px; border-width: 3px; }
        }

        /* ═══════════════════════════════════════
           SECTIONS
           ═══════════════════════════════════════ */
        .section { padding: 100px 28px; }
        .section-lg { padding: 120px 28px; }
        .container { max-width: 900px; margin: 0 auto; }

        .section-label {
            font-size: 1rem; font-weight: 600;
            color: var(--yellow); margin-bottom: 12px;
        }
        .section-heading {
            font-size: clamp(1.7rem, 4vw, 2.5rem);
            font-weight: 700; line-height: 1.12; margin-bottom: 8px;
        }
        .heading-squiggle {
            width: clamp(100px, 16vw, 160px); height: auto;
            margin: -4px 0 28px; opacity: 0.5;
        }
        .section-dark-bg .heading-squiggle { filter: brightness(0) invert(1); opacity: 0.5; }

        p.body-text {
            font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px;
        }
        .section-dark-bg p.body-text { color: var(--text-on-dark); }
        .hl { color: var(--yellow); font-weight: 600; }

        /* Pants down illustration */
        .pants-down-img {
            float: right;
            width: clamp(180px, 28vw, 300px);
            margin: -20px -10px 20px 32px;
            shape-outside: margin-box;
            filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
        }
        @media (max-width: 600px) {
            .pants-down-img {
                float: none;
                display: block;
                margin: 0 auto 28px;
                width: 200px;
            }
        }

        /* Section backgrounds */
        .section-cream { background: var(--cream); }
        .section-white { background: var(--white); }

        .section-dark-bg {
            background: var(--mid); color: var(--white);
            position: relative;
        }
        /* Subtle noise texture on all dark green sections */
        .section-dark-bg::after,
        .video-section::after,
        .policy-section::after,
        .topbar::after {
            pointer-events: none;
        }
        .section-dark-bg, .video-section, .policy-section, .policy-content, .pullquote, .ceo-card, .stat-card, .three-card {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
        }
        .section-dark-bg .section-heading { color: var(--white); }
        /* Organic wavy top */
        .section-dark-bg::before {
            content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 100vw; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF0' d='M0,30 C360,5 720,55 1080,25 C1260,12 1380,30 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
        }
        /* Organic wavy bottom */
        .section-dark-bg::after {
            content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 100vw; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF0' d='M0,30 C360,55 720,5 1080,30 C1260,45 1380,30 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
        }

        /* ═══════════════════════════════════════
           QUOTE BLOCK (squiggle)
           ═══════════════════════════════════════ */
        .pullquote {
            background: var(--dark);
            border-radius: var(--squiggle);
            border: dashed 4px var(--yellow);
            padding: 48px 40px;
            margin: 48px 0;
            text-align: center;
        }
        .pullquote p {
            font-size: clamp(1.15rem, 2.5vw, 1.5rem);
            font-style: italic; line-height: 1.6;
            color: var(--white); max-width: 640px; margin: 0 auto;
        }
        .pullquote cite {
            display: block; margin-top: 16px;
            font-size: 12px; font-weight: 600; font-style: normal;
            color: var(--yellow); letter-spacing: 1px;
        }

        /* ═══════════════════════════════════════
           STATS STRIP
           ═══════════════════════════════════════ */
        .stats-strip {
            background: var(--dark); padding: 80px 28px;
            position: relative;
        }
        /* Wavy edges on stats */
        .stats-strip::before {
            content: ''; position: absolute; top: -58px; left: 0; right: 0; height: 60px; z-index: 1;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%231a3c3c' d='M0,60 C240,20 480,50 720,35 C960,20 1200,45 1440,60 L1440,60 L0,60 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
        }
        .stats-strip::after {
            content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 100vw; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF0' d='M0,30 C360,55 720,5 1080,30 C1260,45 1380,30 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
        }
        .stats-grid {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
            text-align: center;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--squiggle);
            border: dashed 3px var(--yellow);
            padding: 40px 20px;
        }
        .stat-card:nth-child(1) { transform: rotate(-1.5deg); }
        .stat-card:nth-child(2) { transform: rotate(1deg); }
        .stat-card:nth-child(3) { transform: rotate(-0.8deg); }
        .stat-card:nth-child(4) { transform: rotate(1.2deg); }
        .stat-val {
            font-size: clamp(2.4rem, 5vw, 3.5rem);
            font-weight: 700; color: var(--yellow); line-height: 1;
        }
        .stat-desc {
            font-size: 0.95rem; color: var(--text-on-dark);
            margin-top: 10px; line-height: 1.5;
        }

        /* ═══════════════════════════════════════
           POLICY CARDS (image + text side by side)
           ═══════════════════════════════════════ */
        .policy-section { background: var(--dark); }
        .policy-card {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0;
            margin-bottom: 3px; overflow: hidden;
            border-radius: 0;
        }
        .policy-card:nth-child(even) .policy-img { order: -1; }
        .policy-img {
            aspect-ratio: 16 / 9;
            background-size: cover; background-position: center;
            position: relative;
        }
        .policy-img::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(90deg, var(--dark) 0%, transparent 20%, transparent 80%, var(--dark) 100%);
        }
        .policy-card:nth-child(even) .policy-img::after {
            background: linear-gradient(90deg, var(--dark) 0%, transparent 20%, transparent 80%, var(--dark) 100%);
        }
        .policy-content {
            background: var(--dark);
            padding: 60px 48px;
            display: flex; flex-direction: column; justify-content: center;
        }
        .policy-num {
            font-size: 100px; font-weight: 700;
            color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 8px;
        }
        .policy-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
            color: var(--yellow); margin-bottom: 16px; line-height: 1.2;
        }
        .policy-text {
            font-size: 1.1rem; line-height: 1.8; color: var(--text-on-dark);
        }

        /* ═══════════════════════════════════════
           COMPARE — DIRECT FACE-OFF
           ═══════════════════════════════════════ */
        .compare-section {
            padding: 80px 0 0;
            background: var(--cream);
        }
        .compare-header {
            text-align: center;
            padding: 0 28px 48px;
        }

        /* Image strip — two images side by side */
        .compare-images {
            display: grid; grid-template-columns: 1fr 1fr;
            height: 240px;
            max-width: 900px; margin: 0 auto;
            border-radius: 12px; overflow: hidden;
        }
        .compare-images .ci {
            background-size: cover; background-position: center;
            position: relative;
        }
        .compare-images .ci::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
        }
        .compare-images .ci-label {
            position: absolute; bottom: 16px; left: 0; right: 0;
            text-align: center; z-index: 2;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 700; text-transform: uppercase;
            letter-spacing: 2px;
        }
        .ci.bad .ci-label { color: var(--petrol); }
        .ci.good .ci-label { color: var(--yellow); }
        /* Diagonal divider between images */
        .compare-images .ci.good {
            border-left: 3px solid var(--yellow);
        }

        /* Row-by-row comparison table */
        .compare-table {
            max-width: 900px; margin: 0 auto;
            padding: 0 28px;
        }
        .compare-row {
            display: grid; grid-template-columns: 1fr 44px 1fr;
            align-items: center;
            border-bottom: 1px solid rgba(26,60,60,0.08);
        }
        .compare-row:nth-child(odd) { background: rgba(26,60,60,0.03); }
        .compare-row .cr-bad, .compare-row .cr-good {
            padding: 18px 24px;
            font-size: 1.05rem; line-height: 1.55;
        }
        .compare-row .cr-bad {
            text-align: right;
            color: var(--petrol-dark);
        }
        .compare-row .cr-good {
            text-align: left;
            color: var(--mid);
            font-weight: 600;
        }
        .compare-row .cr-vs {
            text-align: center;
            font-size: 12px; font-weight: 700;
            color: var(--white);
            background: var(--dark);
            width: 32px; height: 32px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto;
        }
        /* Topic label row */
        .compare-row.topic-row {
            border-bottom: none;
        }
        .compare-row.topic-row .cr-topic {
            grid-column: 1 / -1;
            text-align: center;
            padding: 24px 20px 8px;
            font-size: 11px; font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--text-muted);
        }

        /* Big money face-off */
        .compare-money {
            display: grid; grid-template-columns: 1fr 44px 1fr;
            align-items: center;
            padding: 40px 28px;
            max-width: 900px; margin: 0 auto;
        }
        .compare-money .cm-side {
            text-align: center;
            padding: 28px 20px;
        }
        .compare-money .cm-amount {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700; line-height: 1;
        }
        .compare-money .cm-bad .cm-amount { color: var(--petrol-dark); }
        .compare-money .cm-good .cm-amount { color: var(--mid); }
        .compare-money .cm-desc {
            font-size: 0.85rem; line-height: 1.4;
            margin-top: 8px; color: var(--text-muted);
        }
        .compare-money .cm-vs {
            text-align: center;
            font-size: 12px; font-weight: 700;
            color: var(--white);
            background: var(--dark);
            width: 32px; height: 32px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto;
        }
        /* Squiggle border on the good side */
        .compare-money .cm-good {
            border: 2px dashed var(--yellow);
            border-radius: var(--squiggle);
            background: rgba(245,183,49,0.06);
        }
        .compare-money .cm-bad {
            border: 2px dashed var(--petrol);
            border-radius: var(--squiggle);
            background: rgba(232,146,124,0.06);
        }

        /* ═══════════════════════════════════════
           COMPARE CARDS — NORMAL SCROLL
           ═══════════════════════════════════════ */
        .compare-cards {
            padding: 20px 0;
        }
        .cc-spacer { display: none; }

        .cc-round {
            display: flex; flex-direction: column;
            align-items: center;
            padding: 80px 24px;
            will-change: transform;
        }

        .cc-round-label {
            text-align: center; margin-bottom: 24px;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700;
            color: var(--text); line-height: 1.2;
        }
        .cc-arena {
            display: grid; grid-template-columns: 1fr 80px 1fr;
            align-items: stretch;
            width: 100%;
            max-width: 1100px;
            position: relative;
        }

        /* Cards — fill the viewport height */
        .cc-card {
            position: relative;
            height: clamp(300px, 55vh, 600px);
            background-size: cover; background-position: center;
            border-radius: 20px;
            overflow: hidden;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 40px;
            box-shadow: 0 16px 50px rgba(0,0,0,0.2);
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.8s ease,
                        filter 0.8s ease;
            transform-style: preserve-3d;
        }
        .cc-card::before {
            content: ''; position: absolute; inset: 0;
            border-radius: 20px; z-index: 0;
            background: inherit; background-size: cover; background-position: center;
            transition: transform 0.8s ease-out;
        }
        .cc-card:hover::before { transform: scale(1.06); }
        .cc-card { cursor: pointer; }
        .cc-card.cc-bad { transform: rotateY(2deg); }
        .cc-card.cc-good { transform: rotateY(-2deg); }
        .cc-card.cc-bad::before { background: linear-gradient(180deg, transparent 20%, rgba(40,15,10,0.9) 100%); }
        .cc-card.cc-good::before { background: linear-gradient(180deg, transparent 20%, rgba(26,60,60,0.9) 100%); }
        .cc-card > * { position: relative; z-index: 1; }

        .cc-card .cc-tag {
            font-size: 13px; font-weight: 600;
            margin-bottom: 12px;
        }
        .cc-bad .cc-tag { color: var(--petrol); }
        .cc-good .cc-tag { color: var(--yellow); }
        .cc-card h4 {
            font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--white);
            line-height: 1.2; margin-bottom: 12px;
        }
        .cc-card p {
            font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.85); line-height: 1.7;
            max-width: 440px;
        }

        /* VS badge — oversized, overlapping cards */
        .cc-vs-badge {
            display: flex; align-items: center; justify-content: center;
            z-index: 30;
            margin: 0 -30px;
        }
        .cc-vs-badge span {
            display: inline-flex; align-items: center; justify-content: center;
            width: 90px; height: 90px;
            background: var(--dark); color: var(--yellow);
            border: 4px solid var(--yellow);
            border-radius: 50%;
            font-size: 22px; font-weight: 700;
            text-transform: uppercase;
            transition: all 0.6s 0.2s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        /* Tick/cross icon stamps — positioned on arena, not clipped by card */
        .cc-icon-stamp {
            position: absolute;
            top: -40px; width: 140px; height: 140px;
            z-index: 30; pointer-events: none;
            filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
            animation: icon-wiggle 2.5s ease-in-out infinite;
        }
        .cc-icon-stamp img { width: 100%; height: 100%; object-fit: contain; }
        .cc-icon-cross { right: calc(50% + 40px); animation-delay: 0s; }
        .cc-icon-tick { right: -40px; animation-delay: 0.3s; }
        /* Money variant cards — no image, solid bg with big numbers */
        .cc-card-money {
            background: var(--dark) !important;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .cc-card-money h4 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--yellow);
        }
        .cc-card-money.cc-bad { background: #2a1510 !important; }
        .cc-card-money.cc-bad h4 { color: var(--petrol); }
        .cc-card-money p { max-width: 320px; }

        @keyframes icon-wiggle {
            0%, 100% { transform: rotate(0deg); }
            20% { transform: rotate(8deg); }
            40% { transform: rotate(-6deg); }
            60% { transform: rotate(4deg); }
            80% { transform: rotate(-2deg); }
        }

        /* ═══════════════════════════════════════
           BOSS FIGHT — MONEY
           ═══════════════════════════════════════ */
        .boss-fight {
            perspective: 1200px;
            position: sticky;
            top: 64px;
            height: calc(100vh - 64px);
            display: flex; flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 5;
            background: var(--cream);
            padding: 0 24px;
            transition: opacity 0.05s linear, transform 0.05s linear;
        }
        .boss-arena {
            display: grid; grid-template-columns: 1fr 80px 1fr;
            align-items: center;
            width: 100%; max-width: 1000px;
        }
        .boss-card {
            text-align: center;
            padding: 60px 40px;
            border-radius: 24px;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.8s ease,
                        filter 0.8s ease;
            transform-style: preserve-3d;
        }
        .boss-card.boss-bad {
            background: rgba(232,146,124,0.06);
            border: 2px dashed var(--petrol);
            border-radius: var(--squiggle);
            transform: rotateY(2deg);
        }
        .boss-card.boss-good {
            background: rgba(245,183,49,0.05);
            border: 3px dashed var(--yellow);
            border-radius: var(--squiggle);
            transform: rotateY(-2deg);
        }
        .boss-card .boss-amount {
            font-weight: 700; line-height: 1;
            transition: font-size 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .boss-bad .boss-amount { font-size: clamp(2rem, 4vw, 3rem); color: var(--petrol-dark); }
        .boss-good .boss-amount { font-size: clamp(2rem, 4vw, 3rem); color: var(--mid); }
        .boss-card .boss-desc {
            font-size: 0.9rem; line-height: 1.5;
            margin-top: 12px; color: var(--text-muted);
        }
        .boss-vs {
            display: flex; align-items: center; justify-content: center;
        }
        .boss-vs span {
            display: inline-flex; align-items: center; justify-content: center;
            width: 64px; height: 64px;
            background: var(--dark); color: var(--yellow);
            border: 3px solid var(--yellow);
            border-radius: 50%;
            font-size: 16px; font-weight: 700;
            transition: all 0.7s 0.3s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .cc-round { padding: 40px 16px; }
            .cc-arena { grid-template-columns: 1fr !important; gap: 20px; }
            .cc-card { height: 320px; transform: none !important; }
            .cc-card h4 { font-size: 1.4rem; }
            .cc-vs-badge { display: none; }
            /* Hide arena-level icons on mobile */
            .cc-icon-stamp { display: none; }
            .cc-card::after {
                content: ''; position: absolute;
                top: 12px; right: 12px;
                width: 60px; height: 60px;
                background-size: contain; background-repeat: no-repeat;
                z-index: 20; pointer-events: none;
                filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
                animation: icon-wiggle 2.5s ease-in-out infinite;
            }
            .cc-card.cc-bad::after { background-image: url('/nz-made-energy-assets/icon-cross-sm.png'); }
            .cc-card.cc-good::after { background-image: url('/nz-made-energy-assets/icon-tick-sm.png'); animation-delay: 0.3s; }
            .cc-round-label { font-size: 1.4rem; }
            .stats-grid { grid-template-columns: 1fr 1fr !important; }
        }

        /* ═══════════════════════════════════════
           CEO CARD
           ═══════════════════════════════════════ */
        .ceo-card {
            display: grid; grid-template-columns: 280px 1fr;
            gap: 0; align-items: center;
            background: var(--dark);
            border-radius: var(--squiggle);
            border: dashed 4px var(--yellow);
            padding: 0 44px 0 0;
            margin: 48px 0;
            overflow: hidden;
            text-align: center;
        }
        .ceo-card img {
            width: 100%; display: block;
            filter: drop-shadow(8px -4px 20px rgba(0,0,0,0.5));
        }
        .ceo-card > div { padding: 44px 0; }
        .ceo-card blockquote {
            font-size: 1.1rem; font-style: italic; line-height: 1.8; color: var(--white);
        }
        .ceo-card cite {
            display: block; margin-top: 14px;
            font-size: 12px; font-weight: 600; font-style: normal;
            color: var(--yellow); letter-spacing: 1px;
        }

        /* ═══════════════════════════════════════
           PILLAR CARDS
           ═══════════════════════════════════════ */
        .pillar-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
            margin: 40px 0;
        }
        .pillar-card {
            background: var(--white);
            border: solid 3px var(--dark);
            border-radius: var(--squiggle);
            padding: 32px 28px;
        }
        .pillar-num {
            font-size: 2rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 8px;
        }
        .pillar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
        .pillar-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); }

        /* ═══════════════════════════════════════
           THREE-COL POLICY GRID
           ═══════════════════════════════════════ */
        .three-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
            margin: 40px 0;
        }
        .three-card {
            background: var(--white);
            border-radius: var(--squiggle);
            border: 2px dashed var(--dark);
            padding: 36px 28px;
            text-align: center;
        }
        .three-card:nth-child(1) { transform: rotate(-1deg); }
        .three-card:nth-child(2) { transform: rotate(0.8deg); }
        .three-card:nth-child(3) { transform: rotate(-0.5deg); }
        .three-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
        .three-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }

        /* ═══════════════════════════════════════
           CTA
           ═══════════════════════════════════════ */
        .cta-section {
            background: var(--yellow); padding: 64px 28px; text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 700; color: var(--dark); margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 1.05rem; color: var(--dark); opacity: 0.75;
            max-width: 540px; margin: 0 auto 28px; line-height: 1.7;
        }
        .cta-btn {
            display: inline-block; cursor: pointer;
            font-family: 'Rubik', sans-serif; font-size: 14px; font-weight: 600;
            padding: 14px 36px; text-decoration: none;
            background: var(--dark); color: var(--yellow);
            border-radius: var(--squiggle);
            border: 3px solid var(--dark);
            transition: background 0.3s, color 0.3s;
        }
        .cta-btn:hover { background: transparent; color: var(--dark); }

        /* Signup form */
        .signup-form {
            display: flex; gap: 12px;
            max-width: 480px; margin: 0 auto;
            justify-content: center;
        }
        .signup-form input {
            flex: 1; padding: 14px 20px;
            font-family: 'Rubik', sans-serif; font-size: 1rem;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            background: rgba(255,255,255,0.08); color: var(--white);
            outline: none; transition: border-color 0.2s;
        }
        .signup-form input::placeholder { color: var(--text-on-dark); }
        .signup-form input:focus { border-color: var(--yellow); }
        .signup-form button {
            padding: 14px 28px; cursor: pointer;
            font-family: 'Rubik', sans-serif; font-size: 1rem; font-weight: 600;
            background: var(--yellow); color: var(--dark);
            border: none; border-radius: 8px;
            transition: background 0.2s, transform 0.2s;
        }
        .signup-form button:hover { background: #e0a520; transform: scale(1.03); }
        @media (max-width: 500px) {
            .signup-form { flex-direction: column; }
        }

        /* ═══════════════════════════════════════
           IMAGE BAND
           ═══════════════════════════════════════ */
        .image-band {
            width: 100%; max-height: 420px; overflow: hidden; position: relative;
        }
        .image-band img {
            width: 100%; display: block; object-fit: cover; max-height: 420px;
        }
        .image-band-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(180deg, var(--cream) 0%, transparent 20%, transparent 70%, var(--cream) 100%);
            pointer-events: none;
        }

        /* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */
        footer {
            background: var(--dark); padding: 40px 20px 60px; text-align: center;
        }
        footer img { height: 24px; margin-bottom: 10px; }
        footer p { font-size: 12px; color: var(--text-muted); }

        /* ═══════════════════════════════════════
           SCROLL REVEAL
           ═══════════════════════════════════════ */
        .sr { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .sr.vis { opacity: 1; transform: translateY(0); }

        /* ═══════════════════════════════════════
           FOCUS / A11Y
           ═══════════════════════════════════════ */
        a:focus-visible, button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html { scroll-behavior: auto; }
            .sr { opacity: 1; transform: none; }
            .ticker-track { animation: none; }
            .compare-panel-content li { opacity: 1; transform: none; animation: none !important; }
            .compare-panel { transition: none; }
        }

        /* ═══════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════ */
        @media (max-width: 900px) {
            .policy-card { grid-template-columns: 1fr; }
            .policy-card:nth-child(even) .policy-img { order: 0; }
            .policy-img { aspect-ratio: 16 / 10; }
            .policy-img::after { background: linear-gradient(180deg, var(--dark) 0%, transparent 20%, transparent 80%, var(--dark) 100%) !important; }
            .compare-grid, .pillar-grid { grid-template-columns: 1fr; }
            .three-grid { grid-template-columns: 1fr; }
            .three-card { transform: none !important; }
            .ceo-card { grid-template-columns: 1fr; padding: 0; }
            .ceo-card img { max-width: 200px; margin: 0 auto; padding-top: 28px; }
            .ceo-card > div { padding: 28px; }
        }
        @media (max-width: 600px) {
            .topbar { padding: 0 16px; height: 56px; }
            .topbar-logo { height: 24px; }
            .topbar-nav { display: none; }
            .topbar-divider { display: none; }
            .topbar-label { font-size: 10px; letter-spacing: 2px; }
            .ticker { height: 36px; }
            .ticker-track { font-size: 12px; }
            .hero-wrap { margin-top: 56px; }
            .hero-stage { top: 56px; height: calc(100vh - 56px); }
            .hero-mike { height: 45vh; }
            .hero-banner { width: 95vw; }
            .hero-text h1 { font-size: 1.8rem; }
            .hero-text .tagline { font-size: 0.85rem; }
            .video-section { padding: 80px 16px 60px; }
            .video-text h2 { font-size: 1.3rem; }
            .stats-grid { grid-template-columns: 1fr !important; }
            .stat-card { transform: none !important; }
            .section { padding: 64px 16px; }
            .section-lg { padding: 80px 16px; }
            .section-heading { font-size: 1.5rem; }
            .body-text { font-size: 0.95rem; }
            .policy-content { padding: 28px 20px; }
            .policy-title { font-size: 1.3rem; }
            .policy-num { font-size: 60px; }
            .pants-down-img { float: none; display: block; margin: 0 auto 20px; width: 160px; }
            .pullquote { padding: 32px 24px; }
            .pullquote p { font-size: 1rem; }
            .cc-round { padding: 30px 12px; }
            .cc-card { height: 280px; padding: 24px; }
            .cc-card h4 { font-size: 1.2rem; }
            .cc-card p { font-size: 0.9rem; }
            .cc-card-money h4 { font-size: 2rem; }
            .cc-icon-stamp { width: 80px; height: 80px; top: -20px; }
            .cta-section { padding: 48px 16px; }
            .cta-btn { padding: 12px 28px; font-size: 13px; }
            footer { padding: 32px 16px 72px; }
            .signup-form input { padding: 12px 16px; font-size: 0.9rem; }
            .signup-form button { padding: 12px 20px; font-size: 0.9rem; }
        }

        /* ═══════════════════════════════════════
           NZME REPORT (gated download)
           ═══════════════════════════════════════ */
        .nzme-report { padding: 96px 28px; }
        .nzme-report-inner {
            max-width: 760px; margin: 0 auto;
        }
        .nzme-report-eyebrow {
            font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
            color: var(--yellow); font-weight: 600; margin-bottom: 14px;
        }
        .nzme-report-heading {
            font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700;
            line-height: 1.15; margin-bottom: 24px;
        }
        .nzme-report-body p { margin-bottom: 16px; line-height: 1.75; }
        .nzme-report-body p:last-child { margin-bottom: 0; }
        .nzme-report--dark .nzme-report-heading { color: var(--white); }
        .nzme-report--dark .nzme-report-body { color: var(--text-on-dark); }
        .nzme-report--cream .nzme-report-heading { color: var(--dark); }
        .nzme-report--cream .nzme-report-body { color: var(--text); }

        .nzme-report-card {
            margin-top: 44px;
            display: flex; gap: 30px; align-items: flex-start;
            background: var(--cream); color: var(--text);
            border: 3px dashed var(--yellow); border-radius: var(--squiggle);
            padding: 30px 32px;
        }
        .nzme-report--cream .nzme-report-card { background: var(--white); }
        .nzme-report-card-body { flex: 1 1 auto; }
        .nzme-report-cover { flex: 0 0 150px; margin-bottom: 0; }
        .nzme-report-cover img {
            width: 100%; display: block; border-radius: 6px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .nzme-report-title { font-size: 1.3rem; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 6px; }
        .nzme-report-meta {
            font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
            color: var(--text-muted); margin-bottom: 16px;
        }
        .nzme-report-formheading { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
        .nzme-report-form { display: flex; flex-direction: column; gap: 10px; }
        .nzme-report-form input {
            padding: 14px 16px; font-family: 'Rubik', sans-serif; font-size: 1rem;
            border: 2px solid rgba(26,60,60,0.18); border-radius: 8px;
            background: #fff; color: var(--text); outline: none; transition: border-color 0.2s;
        }
        .nzme-report-form input:focus { border-color: var(--yellow); }
        .nzme-report-form button {
            padding: 14px 20px; cursor: pointer;
            font-family: 'Rubik', sans-serif; font-size: 1rem; font-weight: 600;
            background: var(--dark); color: var(--yellow); border: none; border-radius: 8px;
            transition: background 0.2s, transform 0.2s;
        }
        .nzme-report-form button:hover { background: var(--mid); transform: scale(1.02); }
        .nzme-report-form button:disabled { opacity: 0.7; cursor: default; transform: none; }
        .nzme-report-download {
            display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
            padding: 14px 20px; text-decoration: none; font-weight: 600;
            background: var(--yellow); color: var(--dark); border-radius: 8px; transition: background 0.2s;
        }
        .nzme-report-download:hover { background: #e0a520; }
        .nzme-report-success { margin-top: 14px; color: var(--dark); font-weight: 600; line-height: 1.5; }
        .nzme-report-fineprint { margin-top: 14px; font-size: 0.78rem; color: var(--text-muted); }

        /* Stack to one column early — below ~1080px the two-column grid pushed
           the download card off-screen (clipped by body overflow-x:hidden). */
        @media (max-width: 640px) {
            .nzme-report { padding: 64px 20px; }
            .nzme-report-card { flex-direction: column; align-items: flex-start; gap: 20px; text-align: left; }
            .nzme-report-cover { flex-basis: auto; width: 160px; }
        }

        /* NZME report — rich body (headings + lists) + secondary link */
        .nzme-report-body h3 {
            font-size: 1.15rem; font-weight: 700; line-height: 1.3;
            margin: 28px 0 12px; color: var(--yellow);
        }
        .nzme-report--cream .nzme-report-body h3 { color: var(--dark); }
        .nzme-report-body ul {
            list-style: none; margin: 0 0 16px; padding: 0;
        }
        .nzme-report-body ul li {
            position: relative; padding-left: 26px; margin-bottom: 12px; line-height: 1.7;
        }
        .nzme-report-body ul li::before {
            content: ""; position: absolute; left: 0; top: 11px;
            width: 9px; height: 9px; border-radius: 2px;
            background: var(--yellow); transform: rotate(45deg);
        }
        .nzme-report-body ul li:last-child { margin-bottom: 0; }
        .nzme-report-secondary {
            display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
            font-weight: 600; font-size: 0.92rem; color: var(--dark);
            text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
            transition: opacity 0.2s;
        }
        .nzme-report-secondary:hover { opacity: 0.7; }

        /* NZME report — subscribe opt-in checkbox */
        .nzme-report-subscribe {
            display: flex; align-items: flex-start; gap: 9px;
            font-size: 0.85rem; line-height: 1.4; color: var(--text-muted);
            cursor: pointer; margin: -2px 0 2px;
        }
        .nzme-report-subscribe input[type="checkbox"] {
            margin-top: 2px; width: 16px; height: 16px;
            accent-color: var(--dark); flex-shrink: 0; cursor: pointer;
        }

        /* ═══════════════════════════════════════
           TEXT WORDMARK (topbar + footer, logo-less pages)
           ═══════════════════════════════════════ */
        .topbar-wordmark {
            font-size: 17px; font-weight: 700; letter-spacing: 0.3px;
            color: var(--white);
        }
        .footer-wordmark {
            display: inline-block; margin-bottom: 10px;
            font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
            color: var(--yellow);
        }

        /* Inline pill buttons (e.g. the two CTAs under Mike's house tour) */
        .nzme-pill-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
        .nzme-pill-btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 11px 20px; border-radius: 999px;
            font-size: 0.9rem; font-weight: 600; text-decoration: none;
            background: var(--yellow); color: var(--dark);
            border: 2px solid var(--yellow); transition: background 0.2s, color 0.2s;
        }
        .nzme-pill-btn:hover { background: transparent; color: var(--yellow); }
        .nzme-pill-btn.is-ghost { background: transparent; color: var(--dark); border-color: rgba(26,60,60,0.25); }
        .nzme-pill-btn.is-ghost:hover { border-color: var(--dark); }
        .video-text .nzme-pill-btn.is-ghost { color: var(--text); }

        /* ═══════════════════════════════════════
           NZME CHART BLOCK (chart + placeholder)
           ═══════════════════════════════════════ */
        .nzme-chart-intro { max-width: 760px; margin: 0 auto 36px; }
        .nzme-chart-intro p.body-text { margin-bottom: 16px; }
        .nzme-chart-figure { margin: 0 auto; max-width: 980px; }
        .nzme-chart-img {
            background: var(--white); border-radius: 14px; padding: 18px;
            box-shadow: 0 18px 50px rgba(26,60,60,0.12);
            border: 1px solid rgba(26,60,60,0.08);
        }
        .nzme-chart-img img { display: block; width: 100%; height: auto; border-radius: 6px; }
        .section-dark-bg .nzme-chart-img {
            background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12);
        }
        /* Placeholder card (shown until ImageURL is set) */
        .nzme-chart-placeholder {
            display: flex; flex-direction: column; align-items: center; text-align: center;
            gap: 10px; padding: 48px 28px;
            background: rgba(26,60,60,0.03);
            border: 2.5px dashed rgba(26,60,60,0.28);
            border-radius: 16px; color: var(--text);
        }
        .section-dark-bg .nzme-chart-placeholder {
            background: rgba(255,255,255,0.04);
            border-color: rgba(245,183,49,0.45); color: var(--text-on-dark);
        }
        .nzme-chart-ph-icon { color: var(--yellow); }
        .nzme-chart-ph-icon svg { width: 48px; height: 48px; }
        .nzme-chart-ph-title {
            font-size: 1.1rem; font-weight: 700; color: inherit; max-width: 560px;
        }
        .section-dark-bg .nzme-chart-ph-title { color: var(--white); }
        .nzme-chart-ph-source { font-size: 0.82rem; color: var(--text-muted); max-width: 560px; }
        .nzme-chart-ph-badge {
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
            color: var(--dark); background: var(--yellow);
            padding: 5px 12px; border-radius: 999px;
        }
        .nzme-chart-ph-data {
            margin-top: 8px; max-width: 640px; width: 100%;
            font-family: 'Rubik', sans-serif; font-size: 0.8rem; line-height: 1.6;
            white-space: pre-wrap; text-align: left; color: var(--text-muted);
            background: rgba(26,60,60,0.04); border-radius: 10px; padding: 14px 16px;
        }
        .section-dark-bg .nzme-chart-ph-data { background: rgba(0,0,0,0.18); color: var(--text-on-dark); }
        .nzme-chart-caption {
            margin-top: 16px; text-align: center;
            font-size: 0.85rem; color: var(--text-muted); max-width: 720px;
            margin-left: auto; margin-right: auto;
        }
        .section-dark-bg .nzme-chart-caption { color: var(--text-on-dark); }
        @media (max-width: 600px) {
            .nzme-chart-placeholder { padding: 32px 16px; }
            .topbar-wordmark { font-size: 14px; }
            .topbar-label { display: none; }
        }
