/* ── reset & base ── */
        .carbon_content-wrapper *,
        .carbon_content-wrapper *::before,
        .carbon_content-wrapper *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }
        .carbon_content-wrapper {
            font-family: 'Morion', sans-serif;
            background: #fff;
            color: #1a1410;
            line-height: 1.6;
            overflow-x: hidden;

            width: 100vw;
            margin-top: 50px;
            margin-left: calc(-20px);
            margin-right: calc(-20px);
            margin-bottom: 50px;
        }

        /* ── scrollbar ── */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #ece6df;
        }
        ::-webkit-scrollbar-thumb {
            background: #c2410c;
            border-radius: 4px;
        }

        /* ── container ── */
        .carbon_content-wrapper .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ── sections ── */
        .carbon_content-wrapper section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        .carbon_content-wrapper section:last-of-type {
            border-bottom: none;
        }

        .carbon_content-wrapper .section-content {
            width: 100%;
            opacity: 0;
            transform: translateY(48px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .carbon_content-wrapper .section-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── typography ── */
        .carbon_content-wrapper .section-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #b35e1a;
            margin-bottom: 12px;
        }
        .carbon_content-wrapper h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #1a1410;
        }
        .carbon_content-wrapper h2 .highlight {
            background: linear-gradient(135deg, #c2410c, #e6732e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .lead {
            font-size: 1.1rem;
            font-weight: 300;
            color: #3d322b;
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .carbon_content-wrapper .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 24px;
            margin: 24px 0 12px;
        }
        .carbon_content-wrapper .stat-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .carbon_content-wrapper .stat-card .number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #c2410c;
            letter-spacing: -0.02em;
            line-height: 1;
        }
        .carbon_content-wrapper .stat-card .number.gold {
            color: #b87333;
        }
        .carbon_content-wrapper .stat-card .number.red {
            color: #b33a2a;
        }
        .carbon_content-wrapper .stat-card .label {
            font-size: 0.85rem;
            color: #5a4d42;
            margin-top: 6px;
        }
        .carbon_content-wrapper .stat-card .sub {
            font-size: 0.75rem;
            color: #7a6b60;
            margin-top: 4px;
        }

        /* ── horizontal bar (county) ── */
        .carbon_content-wrapper .hbar-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 20px 0 12px;
        }
        .carbon_content-wrapper .hbar-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .carbon_content-wrapper .hbar-label {
            width: 80px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #2d241e;
            flex-shrink: 0;
            text-align: right;
        }
        .carbon_content-wrapper .hbar-track {
            flex: 1;
            height: 28px;
            background: #eae3db;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }
        .carbon_content-wrapper .hbar-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #c2410c, #e6732e);
            width: 0%;
            transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .carbon_content-wrapper .hbar-fill.visible {
            width: var(--target, 0%);
        }
        .carbon_content-wrapper .hbar-fill .val {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.7rem;
            font-weight: 600;
            color: #1a1410;
            font-family: 'JetBrains Mono', monospace;
            opacity: 0;
            transition: opacity 0.6s ease 0.8s;
        }
        .carbon_content-wrapper .hbar-fill.visible .val {
            opacity: 1;
        }

        /* ── responsive ── */
        @media (max-width: 768px) {
            .carbon_content-wrapper section {
                padding: 60px 0 40px;
                min-height: auto;
            }
            .carbon_content-wrapper .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .carbon_content-wrapper .hbar-label {
                width: 60px;
                font-size: 0.75rem;
            }
            .carbon_content-wrapper .donut-wrap {
                flex-direction: column;
                gap: 24px;
            }
            .carbon_content-wrapper .chart-bars {
                height: 140px;
                gap: 6px;
            }
            .carbon_content-wrapper .snapshot-grid {
                grid-template-columns: 1fr 1fr;
            }
            .carbon_content-wrapper .container {
                padding: 0 16px;
            }
        }
        @media (max-width: 480px) {
            .carbon_content-wrapper .stat-grid {
                grid-template-columns: 1fr;
            }
            .carbon_content-wrapper .snapshot-grid {
                grid-template-columns: 1fr 1fr;
            }
            .carbon_content-wrapper .hbar-label {
                width: 48px;
                font-size: 0.7rem;
            }
        }

        /* ── utilities ── */
        .carbon_content-wrapper .text-center {
            text-align: center;
        }
        .carbon_content-wrapper .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        .carbon_content-wrapper .mt-8 {
            margin-top: 8px;
        }
        .carbon_content-wrapper .mt-16 {
            margin-top: 16px;
        }
        .carbon_content-wrapper .mt-24 {
            margin-top: 24px;
        }
        .carbon_content-wrapper .gap-8 {
            gap: 8px;
        }
        .carbon_content-wrapper .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .carbon_content-wrapper .op-6 {
            opacity: 0.6;
        }
        .carbon_content-wrapper .text-sm {
            font-size: 0.85rem;
            color: #5a4d42;
        }
        .carbon_content-wrapper .border-t {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 20px;
            margin-top: 20px;
        }

        .carbon_content-wrapper .footnote {
            font-size: 0.75rem;
            color: #7a6b60;
            margin-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 16px;
        }

        /* ── key number reveal ── */
        .carbon_content-wrapper .big-number {
            font-size: clamp(4rem, 12vw, 7rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
            background: linear-gradient(135deg, #c2410c, #e6732e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .carbon_content-wrapper .big-number.gold {
            background: linear-gradient(135deg, #b87333, #d4a259);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number.red {
            background: linear-gradient(135deg, #b33a2a, #d95a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number.white {
            background: none;
            -webkit-text-fill-color: #1a1410;
            color: #1a1410;
        }

        .carbon_content-wrapper .inline-block {
            display: inline-block;
        }

        .carbon_content-wrapper .tag {
            display: inline-block;
            background: rgba(194, 65, 12, 0.08);
            border: 1px solid rgba(194, 65, 12, 0.12);
            border-radius: 100px;
            padding: 2px 14px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #b35e1a;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        /* light theme overrides for dark elements */
        .carbon_content-wrapper .stat-card,
        .carbon_content-wrapper .snapshot-item {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.06);
        }
        
        .carbon_content-wrapper .hbar-track {
            background: #eae3db;
        }
        .carbon_content-wrapper .chart-bar {
            background: linear-gradient(180deg, #c2410c, #e6732e);
        }
        .carbon_content-wrapper .chart-label,
        .carbon_content-wrapper .text-sm,
        .carbon_content-wrapper .footnote,
        .carbon_content-wrapper .meta,
        .carbon_content-wrapper .sub,
        .carbon_content-wrapper .lbl,
        .carbon_content-wrapper .label {
            color: #5a4d42;
        }
        .carbon_content-wrapper .lead {
            color: #3d322b;
        }
        .carbon_content-wrapper .section-label {
            color: #b35e1a;
        }
        
        .carbon_content-wrapper .hbar-label {
            color: #2d241e;
        }
        .carbon_content-wrapper .hbar-fill .val {
            color: #1a1410;
        }
        .carbon_content-wrapper .stat-card .label,
        .carbon_content-wrapper .stat-card .sub {
            color: #5a4d42;
        }
        .carbon_content-wrapper .stat-card .number {
            color: #c2410c;
        }
        .carbon_content-wrapper .stat-card .number.gold {
            color: #b87333;
        }
        .carbon_content-wrapper .stat-card .number.red {
            color: #b33a2a;
        }
        .carbon_content-wrapper .snapshot-item .num {
            color: #c2410c;
        }
        .carbon_content-wrapper .snapshot-item .num.gold {
            color: #b87333;
        }
        .carbon_content-wrapper .snapshot-item .num.red {
            color: #b33a2a;
        }
        .carbon_content-wrapper .snapshot-item .lbl {
            color: #5a4d42;
        }
        
        .carbon_content-wrapper h2 .highlight {
            background: linear-gradient(135deg, #c2410c, #e6732e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number {
            background: linear-gradient(135deg, #c2410c, #e6732e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number.gold {
            background: linear-gradient(135deg, #b87333, #d4a259);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number.red {
            background: linear-gradient(135deg, #b33a2a, #d95a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .carbon_content-wrapper .big-number.white {
            background: none;
            -webkit-text-fill-color: #1a1410;
            color: #1a1410;
        }
        .carbon_content-wrapper .tag {
            background: rgba(194, 65, 12, 0.08);
            border-color: rgba(194, 65, 12, 0.12);
            color: #b35e1a;
        }
        
        .carbon_content-wrapper .section-content {
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        