   /* ─── RESET ──────────────────────────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --amber:    #C8860A;
      --amber-lt: #E8A020;
      --steel:    #8A8A8A;
      --red:      #7a0000;
      --bg:       #0a0a0a;
      --bg-deep:  #050505;
      --text:     #F0F0F0;
      --muted:    #555555;
      --ease:     cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: auto; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CANVAS ─────────────────────────────────────────────────────────────── */
    #main-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      display: block;
      background: #000;
    }

    /* ─── SCANLINES ──────────────────────────────────────────────────────────── */
    #scanlines {
      position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 3px
      );
    }

    /* ─── VIGNETTE ───────────────────────────────────────────────────────────── */
    /* BUG 2 FIX: Stronger vignette to fully cover hero */
    #vignette {
      position: fixed;
      inset: 0;
      z-index: 3;
      background:
        radial-gradient(ellipse 100% 100% at 50% 50%,
          transparent 0%,
          rgba(0,0,0,0.25) 35%,
          rgba(0,0,0,0.65) 60%,
          rgba(0,0,0,0.92) 100%),
        linear-gradient(to bottom,
          rgba(0,0,0,0.55) 0%,
          transparent 18%,
          transparent 78%,
          rgba(0,0,0,0.55) 100%);
      pointer-events: none;
    }

    /* BUG 2 FIX: Hero bottom vignette element */
    #hero-vignette-bottom {
      position: fixed;
      bottom: 0; left: 0;
      width: 100%; height: 45%;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.98) 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* ─── THREE.JS PARTICLE CANVAS ───────────────────────────────────────────── */
    #gl-canvas {
      position: fixed;
      inset: 0;
      z-index: 5;
      pointer-events: none;
    }

    /* ─── GRAIN ──────────────────────────────────────────────────────────────── */
    #grain {
      position: fixed;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
      animation: grainShift 0.7s steps(2) infinite;
    }
    @keyframes grainShift {
      0%  { transform: translate(0, 0); }
      33% { transform: translate(-1%, 1%); }
      66% { transform: translate(1%, -1%); }
    }

    /* ─── CURSOR ─────────────────────────────────────────────────────────────── */
    #cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      border: 1.5px solid var(--amber);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9000;
      transform: translate(-50%, -50%);
      transition: width .3s var(--ease), height .3s var(--ease),
                  border-radius .3s var(--ease), background .3s,
                  border .25s;
      will-change: transform;
    }
    #cursor.cursor-big {
      width: 50px;
      height: 50px;
      background: rgba(200,134,10,0.06);
    }
    #cursor.cursor-caret {
      width: 26px;
      height: 2px;
      border-radius: 1px;
      background: var(--amber);
      border: none;
    }
    #cursor-dot {
      position: fixed;
      width: 4px;
      height: 4px;
      background: var(--amber);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9001;
      transform: translate(-50%, -50%);
      will-change: transform;
    }
    #cursor-view {
      position: fixed;
      font-family: 'Inter', sans-serif;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .18em;
      color: var(--amber);
      pointer-events: none;
      z-index: 9002;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity .2s;
      will-change: transform;
    }
    #cursor-view.visible { opacity: 1; }

    /* ─── LOADER ─────────────────────────────────────────────────────────────── */
    #loader {
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 8000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    #loader-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 72px);
      letter-spacing: .18em;
      color: #fff;
      opacity: 0;
      -webkit-font-smoothing: antialiased;
    }
    #loader-pct {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .36em;
      text-transform: uppercase;
      color: var(--steel);
    }
    #loader-bar-track {
      width: 260px;
      height: 1px;
      background: rgba(255,255,255,.08);
      position: relative;
      overflow: hidden;
    }
    #loader-bar-fill {
      position: absolute;
      top: 0; left: 0;
      width: 0%;
      height: 100%;
      background: var(--amber);
    }

    /* ─── AMBER TOP BORDER ───────────────────────────────────────────────────── */
    #top-border {
      position: relative;
      z-index: 100;
      width: 100%;
      height: 1px;
      background: var(--amber);
    }

    /* ─── NAVBAR — natural page flow, scrolls away ───────────────────────────── */
    #navbar {
      position: relative;
      z-index: 100;
      padding: 26px 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: .16em;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      -webkit-font-smoothing: antialiased;
    }
    .nav-logo svg { width: 20px; height: 20px; fill: var(--amber); flex-shrink: 0; }
    .nav-links { list-style: none; display: flex; gap: 40px; }
    .nav-links a {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--steel);
      text-decoration: none;
      position: relative;
      transition: color .3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--amber);
      transition: width .35s var(--ease);
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }

    /* ─── SCROLL PROGRESS INDICATOR ─────────────────────────────────────────── */
    #scroll-progress {
      position: fixed;
      right: 28px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      pointer-events: none;
      opacity: 0;
      transition: opacity .5s;
    }
    #scroll-progress.visible { opacity: 1; }
    #sp-act {
      font-size: 7px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--amber);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      overflow: hidden;
      height: 50px;
      display: flex;
      align-items: center;
    }
    #sp-act-inner {
      display: block;
    }
    #sp-bar-track {
      width: 1px;
      height: 80px;
      background: rgba(255,255,255,.1);
      position: relative;
    }
    #sp-bar-fill {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 0%;
      background: var(--amber);
    }
    #sp-frame {
      font-size: 7px;
      font-weight: 400;
      letter-spacing: .12em;
      color: var(--steel);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    /* ─── SECTION TRANSITION LINE ────────────────────────────────────────────── */
    #sec-transition-line {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 2px;
      background: var(--amber);
      z-index: 60;
      transform-origin: left;
      transform: scaleX(0);
      pointer-events: none;
      opacity: 0;
    }

    /* ─── FIXED OVERLAY BASE ─────────────────────────────────────────────────── */
    .phrase {
      position: fixed;
      pointer-events: none;
      z-index: 10;
      opacity: 0;
      will-change: transform, opacity;
    }

    /* ─── HERO CONTENT ───────────────────────────────────────────────────────── */
    /* BUG 2 FIX: Removed duplicate background gradient from #hero-content */
    #hero-content {
      position: fixed;
      inset: 0;
      z-index: 10;
      pointer-events: none;
      opacity: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 6% 10%;
    }
    .hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 20px;
      display: block;
    }
    #hero-content h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 10vw, 140px);
      letter-spacing: .05em;
      line-height: .88;
      color: #fff;
      margin-bottom: 24px;
      -webkit-font-smoothing: antialiased;
    }
    .hero-line-wrap {
      display: block;
      overflow: hidden;
    }
    .hero-line-inner {
      display: block;
      transform: translateY(105%);
    }
    #hero-sub {
      font-size: clamp(13px, 1.4vw, 16px);
      font-weight: 300;
      color: var(--steel);
      letter-spacing: .06em;
      margin-bottom: 40px;
      line-height: 1.8;
      max-width: 480px;
      opacity: 0;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 32px;
      border: 1px solid var(--amber);
      background: transparent;
      color: var(--amber);
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      cursor: none;
      pointer-events: all;
      transition: background .3s, color .3s;
      width: fit-content;
      transform-origin: center;
    }
    .hero-cta:hover { background: var(--amber); color: #000; }

    #hero-scroll-indicator {
      position: fixed;
      bottom: 6%;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
    }
    #hero-scroll-indicator span {
      font-size: 8px;
      font-weight: 500;
      letter-spacing: .38em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }
    .drag-icon {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .drag-line {
      width: 24px;
      height: 1px;
      background: rgba(255,255,255,.15);
      position: relative;
    }
    .drag-arrow-l {
      width: 0; height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-right: 6px solid rgba(200,134,10,.6);
      animation: nudgeLeft 1.8s ease-in-out infinite;
    }
    .drag-arrow-r {
      width: 0; height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 6px solid rgba(200,134,10,.6);
      animation: nudgeRight 1.8s ease-in-out infinite;
    }
    .drag-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--amber);
      opacity: .5;
    }
    @keyframes nudgeLeft {
      0%,100% { transform: translateX(0); opacity: .4; }
      50%      { transform: translateX(-5px); opacity: 1; }
    }
    @keyframes nudgeRight {
      0%,100% { transform: translateX(0); opacity: .4; }
      50%      { transform: translateX(5px); opacity: 1; }
    }

    /* ─── PHRASE POSITIONING ─────────────────────────────────────────────────── */
    .pos-bottom-left  { bottom: 11%; left: 6%; max-width: 520px; }
    .pos-right-center { top: 50%; right: 6%; transform: translateY(-50%); text-align: right; max-width: 420px; }
    .pos-center       { top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 80%; max-width: 1000px; }
    .pos-bottom-right { bottom: 11%; right: 6%; text-align: right; max-width: 520px; }
    .pos-top-left     { top: 20%; left: 6%; max-width: 520px; }
    .pos-top-center   { top: 20%; left: 50%; transform: translateX(-50%); text-align: center; max-width: 800px; }
    .pos-left-vert    {
      top: 50%; left: 5%;
      writing-mode: vertical-rl;
      transform: translateY(-50%) rotate(180deg);
      text-align: center;
    }
    .pos-right-stat   { top: 50%; right: 6%; transform: translateY(-50%); text-align: right; max-width: 380px; }
    .pos-left-stat    { top: 50%; left: 6%; max-width: 380px; }
    .pos-right-mid    { top: 50%; right: 6%; transform: translateY(-50%); text-align: right; max-width: 340px; }

    /* ─── PHRASE TYPOGRAPHY ──────────────────────────────────────────────────── */
    .ph-eyebrow {
      display: block;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 14px;
    }
    .ph-headline {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 6.5vw, 92px);
      letter-spacing: .05em;
      line-height: .92;
      color: #fff;
      text-shadow: 0 4px 48px rgba(0,0,0,.95), 0 2px 8px rgba(0,0,0,.8);
      margin-bottom: 16px;
      -webkit-font-smoothing: antialiased;
    }
    .ph-headline-lg {
      font-size: clamp(60px, 9vw, 130px);
    }
    .ph-headline-xl {
      font-size: clamp(72px, 12vw, 180px);
      line-height: .88;
    }
    .ph-body {
      display: block;
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 400;
      line-height: 1.8;
      color: #c0c0c0;
      text-shadow: 0 2px 24px rgba(0,0,0,.95), 0 0 60px rgba(0,0,0,.7);
      max-width: 480px;
    }
    .ph-number {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 11vw, 152px);
      line-height: .85;
      color: var(--amber);
      letter-spacing: -.01em;
      -webkit-font-smoothing: antialiased;
    }
    .ph-number-label {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(20px, 3vw, 40px);
      letter-spacing: .1em;
      color: #fff;
      margin-bottom: 8px;
      -webkit-font-smoothing: antialiased;
    }
    .ph-stat-num {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 7vw, 96px);
      letter-spacing: .06em;
      color: var(--amber);
      line-height: 1;
      -webkit-font-smoothing: antialiased;
    }
    .ph-stat-label {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(18px, 2.5vw, 32px);
      letter-spacing: .08em;
      color: #fff;
      margin-bottom: 10px;
      -webkit-font-smoothing: antialiased;
    }
    .ph-rule {
      display: block;
      width: 100%;
      height: 1px;
      background: var(--amber);
      margin-bottom: 16px;
      transform-origin: left;
    }
    .ph-underline {
      display: block;
      height: 2px;
      background: var(--amber);
      margin-top: 6px;
      transform-origin: left;
      transform: scaleX(0);
    }
    .ph-vert-text {
      font-size: clamp(11px, 1.3vw, 15px);
      font-weight: 500;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--amber);
    }
    .ph-red-glow {
      text-shadow: 0 0 80px rgba(160,0,0,.45), 0 4px 48px rgba(0,0,0,.9);
    }
    .ph-italic {
      font-style: italic;
      font-weight: 300;
      color: var(--steel);
    }
    .char { display: inline-block; will-change: transform, opacity; }
    .char-space { display: inline-block; width: .28em; }

    /* ─── STACKED WORD LAYOUT ────────────────────────────────────────────────── */
    .stack-word {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 130px);
      letter-spacing: .05em;
      line-height: .92;
      color: #fff;
      text-shadow: 0 4px 48px rgba(0,0,0,.9);
      -webkit-font-smoothing: antialiased;
      opacity: 0;
      transform: translateY(20px);
    }

    /* ─── WIPE WORD ──────────────────────────────────────────────────────────── */
    .wipe-line {
      display: block;
      position: relative;
      overflow: hidden;
    }
    .wipe-bar-el {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: var(--amber);
      z-index: 1;
      transform: translateX(-101%);
    }
    .wipe-text {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 130px);
      letter-spacing: .05em;
      line-height: .92;
      color: #fff;
      -webkit-font-smoothing: antialiased;
      clip-path: inset(0 100% 0 0);
    }

    /* ─── TWO COLUMN LAYOUT ──────────────────────────────────────────────────── */
    .two-col {
      display: flex;
      gap: clamp(40px, 8vw, 120px);
      align-items: flex-start;
      text-align: left;
    }
    .two-col-left, .two-col-right { flex: 1; }

    /* ─── PUNCH WORD ─────────────────────────────────────────────────────────── */
    .punch-word {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 130px);
      letter-spacing: .05em;
      line-height: .92;
      color: #fff;
      text-shadow: 0 4px 48px rgba(0,0,0,.9);
      -webkit-font-smoothing: antialiased;
      opacity: 0;
      transform: scale(1.2);
    }

    /* ─── GAP OVERLAYS ───────────────────────────────────────────────────────── */
    .gap-overlay {
      position: fixed;
      inset: 0;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
      opacity: 0;
      pointer-events: none;
      background: rgba(0,0,0,.6);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }
    .gap-words-row {
      display: flex;
      align-items: baseline;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .gap-word {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 7vw, 96px);
      letter-spacing: .06em;
      color: #fff;
      opacity: 0;
      -webkit-font-smoothing: antialiased;
    }
    .gap-sub {
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 400;
      letter-spacing: .12em;
      color: #c0c0c0;
      text-align: center;
      line-height: 1.8;
      max-width: 480px;
      opacity: 0;
    }
    .gap-heartbeat {
      width: 120px;
      height: 1px;
      background: var(--amber);
      animation: heartbeat 2.4s ease-in-out infinite;
    }
    @keyframes heartbeat {
      0%, 100% { opacity: .3; }
      50%       { opacity: .6; }
    }
    .gap-rule {
      width: 60vw;
      height: 1px;
      background: var(--amber);
      transform-origin: center;
      transform: scaleX(0);
    }

    /* ─── FINALE OVERLAY ─────────────────────────────────────────────────────── */
    #finale-overlay {
      position: fixed;
      inset: 0;
      z-index: 12;
      background: #000;
      opacity: 0;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    #finale-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 110px);
      letter-spacing: .2em;
      color: #fff;
      opacity: 0;
      -webkit-font-smoothing: antialiased;
    }
    #finale-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .42em;
      text-transform: uppercase;
      color: var(--amber);
      opacity: 0;
    }
    #finale-line {
      height: 1px;
      background: var(--amber);
      opacity: 0;
      width: 0;
      max-width: 50vw;
    }

    /* ─── SCROLL SECTIONS ────────────────────────────────────────────────────── */
#hero-section  { height: 100vh;  position: relative; z-index: 1; }
#act1-section  { height: 450vh;  position: relative; z-index: 1; }
#gap1-section  { height: 20vh;   position: relative; z-index: 1; }
#act2-section  { height: 450vh;  position: relative; z-index: 1; }
#gap2-section  { height: 20vh;   position: relative; z-index: 1; }
#act3-section  { height: 650vh;  position: relative; z-index: 1; }
#gap3-section  { height: 20vh;   position: relative; z-index: 1; }
#act4-section  { height: 500vh;  position: relative; z-index: 1; background: transparent; }

    /* ─── INTERSTITIAL — TRUST + CURIOSITY ──────────────────────────────────── */
    #interstitial-section {
      position: relative;
      z-index: 20;
      background: var(--bg);
      overflow: hidden;
    }
    #interstitial-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--red) 30%, var(--red) 70%, transparent);
    }

    /* Trust bar */
    #trust-bar {
      padding: 36px 6%;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 52px;
    }
    .trust-eyebrow {
      font-size: 8px;
      font-weight: 500;
      letter-spacing: 0.44em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-row {
      display: flex;
      align-items: center;
      flex: 1;
    }
    .trust-row span {
      flex: 1;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.14);
      padding: 0 20px;
      border-right: 1px solid rgba(255,255,255,0.06);
      transition: color 0.5s;
    }
    .trust-row span:last-child { border-right: none; }
    .trust-row.revealed span  { color: rgba(255,255,255,0.32); }

    /* Curiosity block */
    #curiosity-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 0;
      padding: 110px 6% 130px;
      max-width: 1600px;
    }
    .curio-left {
      display: flex;
      flex-direction: column;
      gap: 36px;
      padding-right: 80px;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .curio-act-label {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .curio-act-tag {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.44em;
      text-transform: uppercase;
      color: var(--amber);
    }
    .curio-act-rule {
      flex: 1;
      height: 1px;
      background: rgba(200,134,10,0.3);
      max-width: 56px;
    }
    .curio-act-sub {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.44em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
    }
    .curio-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 9vw, 138px);
      line-height: 0.88;
      letter-spacing: 0.03em;
      color: #f4f4f4;
      -webkit-font-smoothing: antialiased;
    }
    .curio-body {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(255,255,255,0.48);
      max-width: 460px;
    }
    .curio-cue {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 8px;
    }
    .curio-cue-line {
      width: 38px;
      height: 1px;
      background: var(--amber);
    }
    .curio-cue span {
      font-size: 8px;
      font-weight: 500;
      letter-spacing: 0.44em;
      text-transform: uppercase;
      color: var(--amber);
    }

    /* Curiosity stats (right column) */
    .curio-right {
      padding-left: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .curio-stat-item {
      padding: 34px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .curio-stat-item:last-child { border-bottom: none; }
    .curio-num {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(54px, 6vw, 88px);
      line-height: 1;
      letter-spacing: 0.04em;
      color: #f4f4f4;
      -webkit-font-smoothing: antialiased;
    }
    .curio-unit {
      display: block;
      font-size: 8px;
      font-weight: 500;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      margin-top: 8px;
    }

    /* ─── SERVICES SECTION ───────────────────────────────────────────────────── */
    #services-section {
      position: relative;
      z-index: 20;
      background: var(--bg);
      padding: 120px 6% 100px;
    }
    #services-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--red) 30%, var(--red) 70%, transparent);
    }
    .sec-eyebrow {
      display: block;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .42em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 16px;
    }
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 110px);
      letter-spacing: .05em;
      line-height: .9;
      margin-bottom: 16px;
      -webkit-font-smoothing: antialiased;
    }
    .sec-title-rule {
      width: 80px;
      height: 2px;
      background: var(--amber);
      margin-bottom: 80px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1400px;
    }
    .svc-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(200,134,10,.25);
      border-radius: 6px;
      padding: 48px 44px 40px;
      position: relative;
      overflow: hidden;
      transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
      cursor: none;
      will-change: transform, opacity;
    }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--amber), transparent);
      opacity: 0;
      transition: opacity .45s;
    }
    .svc-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 40px rgba(200,134,10,.08);
      border-color: var(--amber);
    }
    .svc-card:hover::before { opacity: 1; }
    .svc-card:hover .svc-tagline { color: var(--amber); }
    .svc-icon { width: 40px; height: 40px; color: var(--amber); margin-bottom: 28px; }
    .svc-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: .1em;
      margin-bottom: 6px;
      -webkit-font-smoothing: antialiased;
    }
    .svc-tagline {
      font-size: 12px;
      font-weight: 400;
      font-style: italic;
      color: var(--steel);
      margin-bottom: 18px;
      letter-spacing: .03em;
      transition: color .35s;
    }
    .svc-desc {
      font-size: 14.5px;
      font-weight: 400;
      line-height: 1.8;
      color: #b4b4b4;
      margin-bottom: 32px;
      max-width: 480px;
    }
    .svc-rule {
      width: 100%;
      height: 1px;
      background: rgba(200,134,10,.3);
      margin-bottom: 16px;
    }
    .svc-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .svc-cta {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--amber);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .svc-cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
    .svc-card:hover .svc-cta svg { transform: translateX(4px); }
    .svc-arrow {
      font-size: 18px;
      color: var(--amber);
      opacity: 0;
      transform: translateX(-14px);
      transition: opacity .35s var(--ease), transform .35s var(--ease);
      line-height: 1;
    }
    .svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

    /* ─── STATS BAR ──────────────────────────────────────────────────────────── */
    #stats-section {
      position: relative;
      z-index: 20;
      background: var(--bg-deep);
      padding: 80px 6%;
      border-top: 1px solid rgba(255,255,255,.04);
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .stats-row {
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }
    .stat-item { text-align: center; }
    .stat-num {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 80px);
      color: var(--amber);
      line-height: 1;
      margin-bottom: 8px;
      -webkit-font-smoothing: antialiased;
    }
    .stat-label {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 4px;
    }
    .stat-sub {
      font-size: 9px;
      font-weight: 300;
      font-style: italic;
      letter-spacing: .08em;
      color: var(--muted);
    }

    /* ─── FOOTER ─────────────────────────────────────────────────────────────── */
    #footer {
      position: relative;
      z-index: 20;
      background: var(--bg-deep);
      padding: 80px 6% 48px;
    }
    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-bottom: 56px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      letter-spacing: .18em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 12px;
      -webkit-font-smoothing: antialiased;
    }
    .footer-logo svg { width: 28px; height: 28px; fill: var(--amber); }
    .footer-taglines {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .footer-tagline-line {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: .28em;
      color: var(--steel);
      text-transform: uppercase;
      opacity: 0;
    }
    .footer-quote {
      font-size: 13px;
      font-weight: 300;
      font-style: italic;
      letter-spacing: .06em;
      color: var(--amber);
      opacity: 0;
      margin-top: 14px;
    }
    .footer-rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--amber) 30%, var(--amber) 70%, transparent);
      margin-bottom: 40px;
    }
    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 36px;
      list-style: none;
      margin-bottom: 40px;
    }
    .footer-nav a {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--steel);
      text-decoration: none;
      transition: color .3s;
    }
    .footer-nav a:hover { color: var(--amber); }
    .footer-social {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-bottom: 48px;
    }
    .social-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--steel);
      cursor: none;
      transition: border-color .35s, color .35s, box-shadow .35s;
    }
    .social-btn:hover {
      border-color: var(--amber);
      color: var(--amber);
      box-shadow: 0 0 20px rgba(200,134,10,.3);
    }
    .social-btn svg { width: 17px; height: 17px; }
    .footer-copy {
      text-align: center;
      font-size: 9px;
      letter-spacing: .14em;
      color: rgba(255,255,255,.1);
    }

    /* ─── ACT 4 — SPEC REVEAL ────────────────────────────────────────────────── */
    #act4-section {
      height: 320vh;
      position: relative;
      z-index: 1;
      background: transparent;
    }

    /* spec overlay typography */
    .spec-eyebrow {
      display: block;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .44em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 18px;
    }
    .spec-eyebrow::before {
      content: '';
      display: inline-block;
      width: 26px; height: 1px;
      background: var(--amber);
      vertical-align: middle;
      margin-right: 14px;
    }
    .spec-num-huge {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(90px, 14vw, 200px);
      letter-spacing: .03em;
      line-height: .85;
      color: #fff;
      display: block;
      -webkit-font-smoothing: antialiased;
    }
    .spec-num-huge .a { color: var(--amber); }
    .spec-unit {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(20px, 2.6vw, 42px);
      letter-spacing: .14em;
      color: var(--amber);
      display: block;
      margin-top: 8px;
    }
    .spec-sub {
      font-size: 9px;
      font-weight: 400;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(255,255,255,.26);
      display: block;
      margin-top: 18px;
    }
    .spec-sprint {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(140px, 24vw, 360px);
      letter-spacing: -.01em;
      line-height: 1;
      color: #fff;
      display: block;
      text-align: center;
      -webkit-font-smoothing: antialiased;
    }
    .spec-sprint-unit {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 4vw, 64px);
      letter-spacing: .24em;
      color: rgba(255,255,255,.38);
      display: block;
      text-align: center;
      margin-top: -4px;
    }
    #a4sg {
      position: fixed;
      bottom: 8vh;
      left: 6%; right: 6%;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
    }
    .spec-grid-rule {
      height: 1px;
      background: linear-gradient(to right, rgba(200,134,10,.7), rgba(200,134,10,.06));
      margin-bottom: 26px;
      transform-origin: left;
      transform: scaleX(0);
    }
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .spec-grid-cell {
      padding-right: 32px;
      border-right: 1px solid rgba(255,255,255,.06);
    }
    .spec-grid-cell:last-child { border-right: none; padding-right: 0; }
    .spec-grid-n {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 62px);
      letter-spacing: .04em;
      line-height: 1;
      color: #fff;
      -webkit-font-smoothing: antialiased;
    }
    .spec-grid-n.a { color: var(--amber); }
    .spec-grid-l {
      display: block;
      font-size: 8px;
      font-weight: 500;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: rgba(255,255,255,.24);
      margin-top: 8px;
    }
    .spec-close-l {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(58px, 9.5vw, 138px);
      letter-spacing: .04em;
      line-height: .88;
      color: #fff;
      display: block;
      text-align: center;
      -webkit-font-smoothing: antialiased;
    }
    .spec-close-l.a { color: var(--amber); }
    .spec-close-b {
      font-size: clamp(12px, 1.1vw, 15px);
      font-weight: 300;
      letter-spacing: .1em;
      color: rgba(255,255,255,.3);
      display: block;
      text-align: center;
      margin-top: 26px;
      line-height: 1.9;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr; }
      #navbar { padding-left: 24px; padding-right: 24px; }
      .nav-links { gap: 20px; }
      .stats-row { flex-wrap: wrap; gap: 48px 20%; }
      .stat-item { flex: 1 1 40%; }
      .pos-left-vert { display: none; }
      .pos-right-mid { display: none; }
      .spec-grid { grid-template-columns: repeat(2, 1fr); }
      .spec-grid-cell { padding: 0 20px 20px 0; }
    }
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .ph-headline-xl { font-size: clamp(52px, 14vw, 80px); }
      .wipe-text, .stack-word, .punch-word { font-size: clamp(40px, 12vw, 80px); }
      .spec-sprint { font-size: clamp(100px, 20vw, 200px); }
      .spec-num-huge { font-size: clamp(72px, 16vw, 140px); }
    }

    /* ─── MUSTANG 3D INTRO ───────────────────────────────────────────────────── */
    #mustang-intro {
      position: fixed; inset: 0;
      z-index: 9500;
      background: #000;
      overflow: hidden;
    }
    #mustang-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      display: block;
    }
    /* cinematic letterbox — 2.39:1 black bars */
    .mi-bar {
      position: absolute; left: 0; right: 0;
      height: 12vh; background: #000;
      z-index: 4; pointer-events: none;
    }
    .mi-bar-top { top: 0; }
    .mi-bar-bot { bottom: 0; }
    /* radial vignette — darkens edges, pulls focus to centre */
    .mi-vignette {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.62) 100%);
    }
    /* bottom gradient so text is always readable */
    .mi-bot-grad {
      position: absolute; left: 0; right: 0; bottom: 0;
      height: 52%; z-index: 2; pointer-events: none;
      background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 100%);
    }
    #mi-overlay-text {
      position: absolute;
      bottom: calc(12vh + 7%); left: 7%;
      z-index: 5; pointer-events: none;
    }
    #mi-badge {
      font-size: 9px; font-weight: 500;
      letter-spacing: .44em; text-transform: uppercase;
      color: var(--amber); margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
      opacity: 0;
    }
    #mi-badge::before {
      content: '';
      display: inline-block;
      width: 30px; height: 1px;
      background: var(--amber);
      flex-shrink: 0;
    }
    #mi-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 12vw, 180px);
      letter-spacing: .03em; line-height: .88;
      color: #fff; -webkit-font-smoothing: antialiased;
      opacity: 0;
    }
    #mi-spec {
      font-size: 11px; font-weight: 300;
      letter-spacing: .28em; text-transform: uppercase;
      color: rgba(255,255,255,.40); margin-top: 20px;
      opacity: 0;
    }
    #mi-amber-line {
      position: absolute;
      bottom: calc(12vh + 6.5%); left: 7%;
      width: 0; height: 1px;
      background: var(--amber);
      z-index: 5;
    }
    #mi-skip {
      position: absolute;
      bottom: calc(12vh + 28px); left: 50%; transform: translateX(-50%);
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: .42em; text-transform: uppercase;
      color: var(--amber);
      background: none; border: 1px solid rgba(200,134,10,.55);
      padding: 11px 36px; cursor: none;
      transition: color .25s, border-color .25s, background .25s;
      z-index: 5;
      opacity: 0; /* revealed by GSAP at t=4s */
    }
    #mi-skip:hover {
      color: #000; background: var(--amber); border-color: var(--amber);
    }
