@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600;700&family=Comic+Neue:wght@400;700&display=swap');

    /* reset & base – scoped inside .carbon_content-wrapper */
    .carbon_content-wrapper {
      --navy: #1B2A4A;
      --gold: #E8A33D;
      --coral: #E8553D;
      --paper: #F5F1E8;
      --ink: #14161A;
      --line: rgba(20, 22, 26, 0.12);
      --ease: cubic-bezier(0.34, 1.56, 0.64, 1);

      --bubble__radius--1: 48% 42% 50% 47%/48% 45% 48% 50%;
      --bubble__radius--2: 54% 70% 60% 52%/62% 60% 60% 49%;
      --bubble__radius--3: 60% 39% 54% 50%/42% 49% 45% 56%;
      --bubble__radius--4: 48% 42% 50% 47%/48% 45% 48% 50%;
      --bubble__radius--5: 49% 40% 51% 46%/52% 48% 49% 55%;
      --bubble__radius--6: 46% 47% 47% 53%/50% 43% 50% 48%;
      --bubble__radius--7: 56% 44% 55% 49%/44% 47% 50% 54%;
      --bubble__radius--square: 0%;
      --bubble__radius--circle: 100%;

      --bubble__padding--l: 3.125rem 3.5rem 3.125rem 3.5rem;
      --bubble__padding--m: 1.75rem 1.875rem 2rem 1.875rem;
      --bubble__padding--s: 1.375rem 1.75rem 1.625rem 1.75rem;
      --bubble__padding--xs: 1rem 2rem;
      --bubble__padding--xxs: 0.5rem 0.5rem;

      --outlines: #000;
      --fill: #fff;

      all: initial;
      display: block;
      font-family: 'Morion', 'Inter', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    .carbon_content-wrapper h1,
    .carbon_content-wrapper h2,
    .carbon_content-wrapper h3 {
      font-family: 'Archivo Black', sans-serif;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.01em;
    }

    .carbon_content-wrapper .mono {
      font-family: 'JetBrains Mono', monospace;
    }

    .carbon_content-wrapper a {
      color: inherit;
    }

    /* ---------- Wage counter ---------- */
    .carbon_content-wrapper #wage-counter {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 500;
      background: var(--ink);
      color: var(--paper);
      padding: 14px 22px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom-left-radius: 6px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    }
    .carbon_content-wrapper #wage-counter .label {
      opacity: 0.55;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .carbon_content-wrapper #wage-counter .val {
      font-weight: 700;
      color: var(--gold);
      font-size: 16px;
      min-width: 62px;
      text-align: right;
    }
    .carbon_content-wrapper #wage-counter .bar {
      width: 60px;
      height: 4px;
      background: rgba(245, 241, 232, 0.18);
      border-radius: 2px;
      overflow: hidden;
    }
    .carbon_content-wrapper #wage-counter .bar-fill {
      height: 100%;
      width: 0%;
      background: var(--gold);
      transition: width .15s linear;
    }
    @media (max-width:640px) {
      .carbon_content-wrapper #wage-counter {
        padding: 10px 14px;
        font-size: 11px;
      }
      .carbon_content-wrapper #wage-counter .bar {
        display: none;
      }
      .carbon_content-wrapper #wage-counter .val {
        font-size: 14px;
        min-width: 50px;
      }
    }

    /* ---------- Progress rail ---------- */
    .carbon_content-wrapper #progress-rail {
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 4px;
      z-index: 499;
      background: rgba(20, 22, 26, 0.08);
    }
    .carbon_content-wrapper #progress-rail .fill {
      width: 100%;
      background: var(--coral);
      height: 0%;
      transition: height .1s linear;
    }

    /* ---------- Sections ---------- */
    .carbon_content-wrapper section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 120px 8vw;
    }

    .carbon_content-wrapper .parallax-layer {
      position: absolute;
      inset: -10%;
      will-change: transform;
      pointer-events: none;
      z-index: 0;
    }

    .carbon_content-wrapper .content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .carbon_content-wrapper .eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .carbon_content-wrapper .eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--coral);
      display: inline-block;
    }

    /* ---------- HERO ---------- */
    .carbon_content-wrapper #hero {
      background: var(--navy);
      color: var(--paper);
      padding-top: 0;
      align-items: flex-end;
      padding-bottom: 14vh;
    }
    .carbon_content-wrapper #hero .content {
      max-width: 900px;
    }
    .carbon_content-wrapper #hero h1 {
      font-size: clamp(46px, 9vw, 96px);
      color: var(--paper);
    }
    .carbon_content-wrapper #hero h1 .hl {
      color: var(--gold);
    }
    .carbon_content-wrapper #hero .dek {
      font-size: clamp(16px, 2vw, 22px);
      margin-top: 28px;
      max-width: 800px;
      color: rgba(245, 241, 232, 0.78);
      font-weight: 500;
      line-height: 1.3;
    }
    .carbon_content-wrapper #hero .byline {
      margin-top: 40px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: rgba(245, 241, 232, 0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .carbon_content-wrapper .scroll-cue {
      position: absolute;
      bottom: 36px;
      left: 8vw;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245, 241, 232, 0.55);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2;
    }
    .carbon_content-wrapper .scroll-cue .arrow {
      width: 18px;
      height: 18px;
      border-right: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      transform: rotate(45deg);
      animation: bob 1.6s ease-in-out infinite;
    }
    @keyframes bob {
      0%,
      100% {
        transform: translateY(0) rotate(45deg);
      }
      50% {
        transform: translateY(8px) rotate(45deg);
      }
    }

    /* coin stack illustration (hero) */
    .carbon_content-wrapper .coin {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--ink);
    }
    .carbon_content-wrapper .coin::after {
      content: 'Sh';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Morion';
      color: var(--paper);
      font-size: 102%;
    }

    /* ---------- Unified background slide 2+ ---------- */
    .carbon_content-wrapper .section-standard {
      background: var(--paper);
      color: var(--ink);
    }

    /* ---------- Scene layout ---------- */
    .carbon_content-wrapper .scene-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .carbon_content-wrapper .scene-img {
      position: relative;
      width: 100%;
      aspect-ratio: 1920/960;
      border: 3px solid var(--ink);
      border-radius: 10px;
      overflow: visible;
      box-shadow: 10px 10px 0 rgba(20, 22, 26, 0.08);
      background: var(--paper);
    }
    .carbon_content-wrapper .scene-img .img-clip {
      width: 100%;
      height: 100%;
      border-radius: 7px;
      overflow: hidden;
      display: block;
    }
    .carbon_content-wrapper .scene-img .img-clip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .carbon_content-wrapper .scene-copy {
      max-width: 680px;
      margin: 0 auto;
    }
    .carbon_content-wrapper .scene-copy.align-right {
      margin-left: auto;
      text-align: left;
    }

    @media (max-width:720px) {
      .carbon_content-wrapper .scene-img {
        border-radius: 6px;
        box-shadow: 6px 6px 0 rgba(20, 22, 26, 0.08);
      }
      .carbon_content-wrapper .scene-img .img-clip {
        border-radius: 4px;
      }
    }

    /* ---------- STANDARD CONTENT STYLES (no id overrides) ---------- */
    .carbon_content-wrapper .section-standard .content h2 {
      font-size: clamp(34px, 5vw, 64px);
    }

    .carbon_content-wrapper .section-standard .content .lead {
      margin-top: 22px;
      font-size: 18px;
      line-height: 1.65;
      color: rgba(20, 22, 26, 0.78);
      max-width: 600px;
    }

    .carbon_content-wrapper p.lead {
      margin-top: 22px;
      font-size: 1.1875rem;
      line-height: 1.75rem;
      font-weight: 300;
      color: rgba(20, 22, 26, 0.78);
      max-width: 580px;
    }

    .carbon_content-wrapper .stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
      max-width: 620px;
    }
    .carbon_content-wrapper .stat-box {
      border: 2px solid var(--ink);
      padding: 22px;
      background: var(--paper);
    }
    .carbon_content-wrapper .stat-box .num {
      font-family: 'JetBrains Mono';
      font-weight: 700;
      font-size: clamp(28px, 3.4vw, 40px);
      color: var(--coral);
    }
    .carbon_content-wrapper .stat-box .num.gold {
      color: var(--gold);
      -webkit-text-stroke: 0.6px var(--ink);
    }
    .carbon_content-wrapper .stat-box .desc {
      margin-top: 6px;
      font-size: 13px;
      color: rgba(20, 22, 26, 0.7);
    }

    .carbon_content-wrapper .quote-block {
      margin-top: 34px;
      padding-left: 24px;
      border-left: 4px solid var(--coral);
      font-family: 'Archivo Black';
      text-transform: none;
      font-size: clamp(20px, 2.6vw, 28px);
      line-height: 1.3;
    }
    .carbon_content-wrapper .quote-attr {
      margin-top: 14px;
      font-family: 'JetBrains Mono';
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.6;
    }

    .carbon_content-wrapper .ledger-table {
        margin-top: 34px;
        width: 100%;
        max-width: 100%;
        border-collapse: collapse;
        font-family: 'JetBrains Mono', monospace;
        font-size: 14px;
    }
    .carbon_content-wrapper .ledger-table tr {
        border-bottom: 1px solid var(--line, #ddd);
    }
    .carbon_content-wrapper .ledger-table th,
    .carbon_content-wrapper .ledger-table td {
        padding: 12px 8px;
        text-align: left;
        vertical-align: top;
    }
    .carbon_content-wrapper .ledger-table th {
        font-weight: 700;
        background-color: #f5f5f5;
    }
    .carbon_content-wrapper .ledger-table td:last-child {
        text-align: right;
        font-weight: 700;
    }
    .carbon_content-wrapper .ledger-table tr.total td {
        color: var(--coral, #e74c3c);
        border-top: 2px solid var(--ink, #000);
        border-bottom: none;
        padding-top: 16px;
    }
    /* Responsive: stack on small screens */
    @media (max-width: 600px) {
        .carbon_content-wrapper .ledger-table,
        .carbon_content-wrapper .ledger-table tbody,
        .carbon_content-wrapper .ledger-table tr,
        .carbon_content-wrapper .ledger-table td,
        .carbon_content-wrapper .ledger-table th {
            display: block;
            width: 100%;
        }
        .carbon_content-wrapper .ledger-table tr {
            border-bottom: 2px solid #ccc;
            margin-bottom: 12px;
        }
        .carbon_content-wrapper .ledger-table td,
        .carbon_content-wrapper .ledger-table th {
            text-align: left !important;
            padding: 8px 4px;
            border-bottom: 1px solid #eee;
        }
        .carbon_content-wrapper .ledger-table td:last-child {
            text-align: left !important;
            font-weight: 700;
        }
        .carbon_content-wrapper .ledger-table td:before {
            content: attr(data-label);
            font-weight: 600;
            display: inline-block;
            width: 60%;
            color: #555;
        }
        .carbon_content-wrapper .ledger-table td:last-child:before {
            width: 60%;
        }
    }

    .carbon_content-wrapper .ripple-tags {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .carbon_content-wrapper .ripple-tags span {
      font-family: 'JetBrains Mono';
      font-size: 12px;
      padding: 8px 14px;
      border: 1.5px solid var(--ink);
      border-radius: 20px;
    }

    .carbon_content-wrapper .outlook-stats {
      display: flex;
      gap: 40px;
      margin-top: 50px;
      flex-wrap: wrap;
    }
    .carbon_content-wrapper .outlook-stats .item .n {
      font-family: 'JetBrains Mono';
      font-weight: 700;
      font-size: clamp(30px, 3.6vw, 46px);
      color: var(--coral);
    }
    .carbon_content-wrapper .outlook-stats .item .l {
      font-family: 'JetBrains Mono';
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.55;
      margin-top: 6px;
    }

    .carbon_content-wrapper footer {
      background: var(--ink);
      color: rgba(245, 241, 232, 0.5);
      padding: 50px 8vw;
      font-family: 'JetBrains Mono';
      font-size: 12px;
      letter-spacing: 0.04em;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* ---------- Reveal ---------- */
    .carbon_content-wrapper .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .carbon_content-wrapper .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width:720px) {
      .carbon_content-wrapper section {
        padding: 100px 6vw;
      }
      .carbon_content-wrapper .stat-row {
        grid-template-columns: 1fr;
      }
      .carbon_content-wrapper .outlook-stats {
        gap: 28px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .carbon_content-wrapper * {
        animation: none !important;
        transition: none !important;
      }
      .carbon_content-wrapper .parallax-layer {
        transform: none !important;
      }
    }

    /* --------- Speech Bubble System --------- */
    .carbon_content-wrapper .bubble {
      text-align: center;
      background-color: var(--fill);
      color: var(--outlines);
      hyphens: manual;
      font-family: 'Comic Neue', cursive;
      text-transform: uppercase;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.4;
      border: 3px solid var(--outlines);
      box-shadow: 0 0 0 0 var(--outlines);
      position: relative;
      z-index: 2;
    }
    .carbon_content-wrapper .bubble--sm {
      font-size: 0.8rem;
      padding: var(--bubble__padding--s);
      border-radius: var(--bubble__radius--3);
      max-width: 18rem;
    }
    .carbon_content-wrapper .bubble--md {
      font-size: 0.95rem;
      padding: var(--bubble__padding--m);
      border-radius: var(--bubble__radius--4);
      max-width: 22rem;
    }
    .carbon_content-wrapper .bubble--lg {
      font-size: 1.1rem;
      padding: var(--bubble__padding--l);
      border-radius: var(--bubble__radius--2);
      max-width: 26rem;
    }
    .carbon_content-wrapper .bubble--xl {
      font-size: 1.25rem;
      padding: var(--bubble__padding--l);
      border-radius: var(--bubble__radius--1);
      max-width: 30rem;
    }

    .carbon_content-wrapper .bubble-tail-container {
      position: absolute;
      width: fit-content;
      height: max-content;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10;
      opacity: 0;
      transform: translateY(20px) scale(0.85);
      transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
      pointer-events: none;
      will-change: transform, opacity;
    }

    .carbon_content-wrapper .bubble-tail-container.visible-bubble {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition-delay: 0.2s;
    }

    .carbon_content-wrapper .bubble-tail-container .bubble {
      filter: drop-shadow(0.125rem 0.125rem 0rem var(--outlines)) drop-shadow(0.0625rem -0.0625rem 0rem var(--outlines)) drop-shadow(-0.0625rem 0.0625rem 0rem var(--outlines));
    }

    .carbon_content-wrapper .tail {
      width: 120px;
      margin-top: -0.5rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .carbon_content-wrapper .tail path {
      fill: var(--fill);
      stroke: var(--outlines);
      stroke-width: 6;
      stroke-linejoin: round;
    }
    .carbon_content-wrapper .bubble-tail-container svg.tail {
      filter: drop-shadow(0.046875rem 0rem 0rem var(--outlines));
      max-width: 8rem;
      margin: 0 auto;
    }

    /* Tail direction flips */
    .carbon_content-wrapper .tail[data-tail-direction="left"] {
      transform: scaleX(-1);
    }
    .carbon_content-wrapper .tail[data-tail-direction="right"] {
      transform: scaleX(1);
    }
    .carbon_content-wrapper .tail[data-tail-direction="up"] {
      transform: scaleY(-1);
    }
    .carbon_content-wrapper .tail[data-tail-direction="down"] {
      transform: scaleY(1);
    }

    /* Responsive bubble tweaks */
    @media (max-width:768px) {
      .carbon_content-wrapper .bubble {
        font-size: 0.75rem !important;
        padding: var(--bubble__padding--s) !important;
        max-width: 14rem !important;
      }
      .carbon_content-wrapper .tail {
        width: 80px;
      }
      .carbon_content-wrapper .bubble-tail-container svg.tail {
        max-width: 5rem;
      }
    }
    @media (max-width:480px) {
      .carbon_content-wrapper .bubble {
        font-size: 0.65rem !important;
        padding: var(--bubble__padding--xs) !important;
        max-width: 11rem !important;
      }
      .carbon_content-wrapper .tail {
        width: 60px;
      }
      .carbon_content-wrapper .bubble-tail-container svg.tail {
        max-width: 4rem;
      }
    }

    /* ledger-lines background for law section */
    .carbon_content-wrapper .ledger-lines {
      background-image: repeating-linear-gradient(to bottom, transparent, transparent 58px, var(--line) 59px);
    }