  :root {
    --bone: #FBFBF9;
    --bone-soft: #F3F3EF;
    --ink: #0A0A0A;
    --ink-soft: #1C1C1A;
    --lime: #CEFF1A;
    --rule: #E5E5E0;
    --hairline: #D8D8D2;
    --muted: #6B6B66;
    --display: "Bricolage Grotesque", system-ui, sans-serif;
    --body: "IBM Plex Sans", system-ui, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-out-expo: cubic-bezier(.16,1,.3,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  html, body { background: var(--bone); color: var(--ink); font-family: var(--body); font-weight: 400; font-size: 18px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
  body { cursor: none; min-height: 100vh; }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; height: auto; }

  .skip-link { position: absolute; top: -40px; left: 16px; background: var(--ink); color: var(--bone); padding: 8px 16px; z-index: 999; text-decoration: none; font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
  .skip-link:focus { top: 16px; }

  /* Custom cursor */
  .cursor { position: fixed; top: 0; left: 0; width: 32px; height: 32px; border: 1.5px solid var(--ink); border-radius: 50%; pointer-events: none; z-index: 200; transform: translate(-50%, -50%); transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease), backdrop-filter 0.2s var(--ease); mix-blend-mode: difference; backdrop-filter: invert(1); -webkit-backdrop-filter: invert(1); }
  .cursor.hovering { width: 64px; height: 64px; background: var(--lime); border-color: var(--lime); mix-blend-mode: normal; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .cursor-dot { position: fixed; top: 0; left: 0; width: 4px; height: 4px; background: var(--ink); border-radius: 50%; pointer-events: none; z-index: 201; transform: translate(-50%, -50%); }

  /* Scroll progress */
  .scroll-bar { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: var(--rule); z-index: 90; }
  .scroll-bar__fill { height: 100%; background: var(--lime); transform-origin: left; transform: scaleX(0); transition: transform 0.05s linear; }

  /* Header */
  .header { position: fixed; top: 16px; left: 24px; right: 24px; z-index: 95; padding: 14px 20px; background: rgba(251,251,249,0.85); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%); border: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: opacity 0.4s var(--ease), transform 0.6s var(--ease-out-expo); transform: translateY(-120%); opacity: 0; }
  .header.is-loaded { transform: translateY(0); opacity: 1; }
  .header__brand { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .header__brand::before { content: ""; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: brand-breathe 3.2s var(--ease-out-expo) infinite; }
  @keyframes brand-breathe { 0% { box-shadow: 0 0 0 0 rgba(206,255,26,0.55); } 70% { box-shadow: 0 0 0 7px rgba(206,255,26,0); } 100% { box-shadow: 0 0 0 0 rgba(206,255,26,0); } }
  .header__brand span { color: var(--muted); font-weight: 400; }
  .header__brand strong { color: var(--ink); font-weight: 600; }
  .header__nav { display: flex; align-items: center; gap: 28px; }
  .header__nav a { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); position: relative; transition: color 0.3s var(--ease); }
  .header__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
  .header__nav a:hover, .header__nav a[aria-current="page"] { color: var(--ink); }
  .header__nav a:hover::after, .header__nav a[aria-current="page"]::after { transform: scaleX(1); }
  .header__lang { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 6px 8px; transition: color 0.2s var(--ease); }
  .header__lang:hover { color: var(--ink); }
  .header__phone { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); padding: 8px 14px; border: 1px solid var(--ink); transition: background 180ms ease-out, color 180ms ease-out, transform 120ms ease-out; }
  .header__phone:hover { background: var(--ink); color: var(--bone); }
  .header__phone:active, .nav-toggle:active { transform: scale(0.97); }
  .nav-toggle { transition: transform 120ms ease-out; }
  .nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; color: var(--ink); }
  .nav-toggle svg { width: 24px; height: 24px; }
  @media (max-width: 880px) {
    .header__nav, .header__lang, .header__phone { display: none; }
    .nav-toggle { display: inline-flex; }
  }
  .nav-drawer { position: fixed; inset: 0; background: var(--bone); padding: 64px 24px 24px; display: flex; flex-direction: column; gap: 24px; transform: translateX(100%); transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1); z-index: 110; }
  .nav-drawer[aria-hidden="false"] { transform: translateX(0); }
  .nav-drawer__close { align-self: flex-end; background: transparent; border: 0; padding: 8px; min-width: 44px; min-height: 44px; cursor: pointer; color: var(--ink); }
  .nav-drawer .nav-list { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; list-style: none; }
  .nav-drawer .nav-list a { font-family: var(--display); font-weight: 800; font-size: 32px; letter-spacing: -0.04em; color: var(--ink); font-variation-settings: "opsz" 32; }

  /* Scaffold */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 600px) { .container { padding: 0 20px; } }
  .eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--ink); }
  section { position: relative; }

  /* Big ghost type — parallax bg layer */
  .ghost { position: absolute; pointer-events: none; user-select: none; font-family: var(--display); font-weight: 800; line-height: 0.85; letter-spacing: -0.07em; white-space: nowrap; will-change: transform; font-variation-settings: "opsz" 96; }
  .ghost--hero { top: 50%; right: -8%; font-size: clamp(220px, 32vw, 460px); color: rgba(10,10,10,0.09); z-index: 1; margin-top: -180px; }
  .ghost--venues { top: 8%; left: 0; font-size: clamp(234px, 31.2vw, 468px); color: rgba(206,255,26,0.08); z-index: 1; margin-top: 0; }
  .ghost--howit { top: 2%; left: 0; right: auto; bottom: auto; font-size: clamp(240px, 32vw, 520px); color: rgba(206,255,26,0.14); z-index: 1; margin-top: 0; }
  .ghost--machines { top: 50%; left: -2%; font-size: clamp(200px, 26vw, 420px); color: rgba(10,10,10,0.09); z-index: 1; margin-top: -140px; }
  .ghost--cta { top: 50%; left: -2%; font-size: clamp(320px, 40vw, 600px); color: rgba(206,255,26,0.16); z-index: 1; margin-top: -220px; }

  /* Hero */
  .hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--hairline); }
  .hero__art { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
  .hero__grid { position: absolute; inset: -10%; background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px); background-size: 48px 48px; opacity: 0.45; mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%); will-change: transform; }
  .hero__dots { position: absolute; inset: 0; will-change: transform; }
  .hero__dot { position: absolute; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }
  .hero__inner { position: relative; z-index: 2; width: 100%; will-change: transform; }
  .hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(60px, 14vw, 200px); line-height: 0.84; letter-spacing: -0.06em; max-width: 14ch; margin: 24px 0 32px; font-variation-settings: "opsz" 96; }
  .hero h1 .word { display: inline-block; overflow: hidden; padding: 0 0.04em; }
  .hero h1 .word > span { display: inline-block; transform: translateY(110%); filter: blur(6px); transition: transform 0.9s var(--ease-out-expo), filter 0.7s var(--ease-out-expo); }
  .hero.is-loaded h1 .word > span { transform: translateY(0); filter: blur(0); }
  .hero h1 em { white-space: nowrap; }
  .hero h1 em .letter { display: inline-block; transform: translateY(110%); filter: blur(6px); transition: transform 0.7s var(--ease-out-expo), filter 0.6s var(--ease-out-expo); will-change: transform, filter; }
  .hero.is-loaded h1 em .letter { transform: translateY(0); filter: blur(0); }
  .hero h1 em { font-style: normal; background: var(--ink); color: var(--lime); padding: 0 0.12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .hero p { font-size: 22px; max-width: 56ch; color: var(--ink-soft); margin-bottom: 40px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.4s var(--ease-out-expo), transform 0.6s 0.4s var(--ease-out-expo); }
  .hero.is-loaded p { opacity: 1; transform: none; }

  .ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.6s var(--ease-out-expo), transform 0.6s 0.6s var(--ease-out-expo); }
  .hero.is-loaded .ctas { opacity: 1; transform: none; }
  .btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 28px; min-height: 56px; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; background: var(--ink); color: var(--bone); border: 1.5px solid var(--ink); transition: background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out, transform 120ms ease-out; }
  .btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
  .btn:hover .btn__arrow { transform: translateX(6px); }
  .btn:active { transform: scale(0.97); }
  .btn__arrow { display: inline-block; transition: transform 200ms ease-out; }
  .btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn--ghost:hover { background: var(--ink); color: var(--bone); }
  .btn--accent { background: var(--lime); color: var(--ink); border-color: var(--lime); }
  .btn--accent:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

  .hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease); }
  .hero.is-loaded .hero__scroll { opacity: 1; transition-delay: 1s; }
  body.is-scrolled .hero__scroll { opacity: 0; transition-delay: 0s; }
  .hero__scroll::after { content: ""; width: 1px; height: 40px; background: var(--muted); animation: scrollHint 2s var(--ease) infinite; transform-origin: top; }
  @keyframes scrollHint { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4) translateY(20px); opacity: 0.3; } }

  .msg-pills { display: inline-flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
  .msg-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--bone-soft); color: var(--ink); font-family: var(--body); font-size: 14px; font-weight: 500; border: 1px solid var(--rule); transition: background 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out, transform 120ms ease-out; }
  .msg-pill:hover { background: var(--bone); border-color: var(--ink); }
  .msg-pill:active { transform: scale(0.97); }
  .msg-pill svg { width: 16px; height: 16px; }

  /* Stats */
  .stats { padding: 156px 0; border-bottom: 1px solid var(--hairline); }
  .stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat { padding: 0 47px; border-left: 1px solid var(--rule); transition: transform 600ms cubic-bezier(.16, 1, .3, 1); will-change: transform; }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(125px, 15.6vw, 187px); line-height: 1; letter-spacing: -0.06em; color: var(--ink); display: flex; align-items: baseline; gap: 8px; font-variation-settings: "opsz" 96; }
  .stat__num em { font-style: normal; background: var(--ink); color: var(--lime); padding: 0 0.06em; box-decoration-break: clone; }
  .stat__sub { font-size: clamp(42px, 5.2vw, 62px); color: var(--muted); font-weight: 500; }
  .stat__label { font-family: var(--mono); font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 31px; }
  .stat p { font-size: 23px; color: var(--muted); margin-top: 31px; max-width: 28ch; line-height: 1.5; }
  @media (prefers-reduced-motion: reduce) { .stat { transform: none !important; transition: none !important; } }

  /* Marquee */
  .marquee { padding: 32px 0; border-bottom: 1px solid var(--hairline); overflow: hidden; }
  .marquee__track { display: flex; gap: 64px; white-space: nowrap; animation: marquee 40s linear infinite; will-change: transform; }
  .marquee span { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 6vw, 64px); letter-spacing: -0.05em; flex-shrink: 0; font-variation-settings: "opsz" 60; }
  .marquee span:nth-child(odd) { color: var(--ink); }
  .marquee span:nth-child(even) { color: var(--muted); }
  .marquee__dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; align-self: center; flex-shrink: 0; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* Section heads */
  .section { padding: 120px 0; border-bottom: 1px solid var(--hairline); }
  .head { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; margin-bottom: 64px; }
  .head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 7vw, 112px); line-height: 0.88; letter-spacing: -0.05em; max-width: 22ch; font-variation-settings: "opsz" 72; }
  .head h2 em { font-style: normal; background: var(--ink); color: var(--lime); padding: 0 0.08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .venues .head h2 em { background: var(--lime); color: var(--ink); }
  .head__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: right; line-height: 1.7; }
  .head__meta strong { color: var(--ink); font-weight: 600; display: block; font-size: 13px; }

  /* Venues — Spotlight Reveal (B). Dark ink bg, cursor spotlights tiles. */
  .venues { overflow: hidden; background: var(--ink); color: var(--bone); border-bottom: 1px solid rgba(251,251,249,0.08); position: relative; }
  .venues::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(206,255,26,0.18) 0%, rgba(206,255,26,0.06) 12%, transparent 28%),
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: cover, 48px 48px, 48px 48px;
    background-attachment: fixed, fixed, fixed;
    pointer-events: none;
    z-index: 1;
    transition: background 60ms linear;
  }

  /*
    Dark Canvas — merges adjacent .venues + .howit into a single visual block
    on index.html. Owns the bg, grid, and lime cursor-spotlight for both
    sections so the gradient flows continuously across the section boundary.
    The child sections become transparent shells; per-section bg layers are
    disabled inside the wrapper.
  */
  .dark-canvas { position: relative; overflow: hidden; background: var(--ink); color: var(--bone); }
  .dark-canvas::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(206,255,26,0.18) 0%, rgba(206,255,26,0.06) 12%, transparent 28%),
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: cover, 48px 48px, 48px 48px;
    background-attachment: fixed, fixed, fixed;
    pointer-events: none;
    z-index: 0;
  }
  .dark-canvas .venues::before { display: none; }
  .dark-canvas .howit__grid { display: none; }
  .dark-canvas .venues,
  .dark-canvas .howit { background: transparent; border: 0; }
  .dark-canvas .venues > :not(.ghost),
  .dark-canvas .howit > :not(.ghost) { position: relative; z-index: 2; }
  .dark-canvas .ghost { z-index: 1; }
  .venues > .container { position: relative; z-index: 2; }
  .venues .eyebrow { color: rgba(251,251,249,0.6); }
  .venues .eyebrow::before { background: rgba(251,251,249,0.4); }
  .venues .head h2 { color: var(--bone); }
  .venues .head__meta { color: rgba(251,251,249,0.5); }
  .venues .head__meta strong { color: var(--lime); }

  .venues__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(251,251,249,0.15); border-left: 1px solid rgba(251,251,249,0.15); position: relative; z-index: 2; }
  @media (max-width: 960px) { .venues__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .venues__grid { grid-template-columns: 1fr; } }
  .venue {
    padding: 32px 24px;
    border-right: 1px solid rgba(251,251,249,0.15);
    border-bottom: 1px solid rgba(251,251,249,0.15);
    position: relative;
    min-height: 220px;
    background: transparent;
    --lit: 0;
    transition: background 280ms var(--ease-out-expo),
                transform 600ms cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
    cursor: pointer;
  }
  .venue::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(10,10,10,0.78);
    opacity: calc(1 - var(--lit));
    transition: opacity 240ms var(--ease-out-expo);
    pointer-events: none;
    z-index: 1;
  }
  .venue > * { position: relative; z-index: 2; }
  .venue.is-lit { background: rgba(206,255,26,0.04); }
  .venue.is-lit h3 { color: var(--lime); }
  .venue.is-lit .venue__dot { transform: scale(2.4); box-shadow: 0 0 12px rgba(206,255,26,0.6); }
  .venue.is-lit .venue__num { color: rgba(251,251,249,0.85); }

  .venue__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: rgba(251,251,249,0.55); margin-bottom: 24px; transition: color 0.3s var(--ease-out-expo); display: flex; justify-content: space-between; align-items: center; }
  .venue__dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo); }
  .venue h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.03em; margin-bottom: 8px; line-height: 1.2; color: var(--bone); transition: color 0.3s var(--ease-out-expo); font-variation-settings: "opsz" 24; }
  .venue p { font-size: 15px; color: rgba(251,251,249,0.55); line-height: 1.55; max-width: 36ch; }
  @media (max-width: 800px) { .venue::before { display: none; } .venue { --lit: 1; } }

  /* How it works */
  .howit { background: var(--ink); color: var(--bone); padding: 120px 0; position: relative; overflow: hidden; }
  .howit__grid { position: absolute; inset: -10%; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 70% 30%, black, transparent 80%); will-change: transform; pointer-events: none; }
  .howit > .container { position: relative; z-index: 2; }
  .howit .eyebrow { color: rgba(251,251,249,0.6); }
  .howit .eyebrow::before { background: var(--lime); }
  .howit h2 { color: var(--bone); }
  .howit h2 em { background: var(--lime); color: var(--ink); }
  .howit__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; counter-reset: step; list-style: none; }
  @media (max-width: 960px) { .howit__list { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .howit__list { grid-template-columns: 1fr; } }
  .step { padding: 32px 24px 32px 0; position: relative; counter-increment: step; transition: transform 600ms cubic-bezier(.16, 1, .3, 1); will-change: transform; }
  .step:not(:last-child)::after { content: ""; position: absolute; top: 64px; right: 0; width: 1px; height: calc(100% - 80px); background: rgba(251,251,249,0.15); }
  .step__num { font-family: var(--display); font-weight: 800; font-size: 56px; line-height: 1; color: var(--bone); margin-bottom: 32px; letter-spacing: -0.05em; display: flex; align-items: baseline; gap: 8px; font-variation-settings: "opsz" 36; }
  .step__num::before { content: counter(step, decimal-leading-zero); }
  .step__num em { font-style: normal; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; transform: translateY(-12px); }
  .step h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; margin-bottom: 8px; color: var(--bone); letter-spacing: -0.03em; font-variation-settings: "opsz" 24; }
  .step p { font-size: 15px; color: rgba(251,251,249,0.6); line-height: 1.6; max-width: 30ch; }

  /* Machines */
  .machines { padding: 120px 0; border-bottom: 1px solid var(--hairline); overflow: hidden; }
  .machines > .container, .machines > .reel-wrap { position: relative; z-index: 2; }
  .machines__hint { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 12px; transition: transform 120ms ease-out, color 200ms ease-out; }
  .machines__hint::after { content: "→"; font-size: 18px; transition: transform 200ms ease-out; }
  .machines__hint:hover { color: var(--ink); }
  .machines__hint:hover::after { transform: translateX(8px); }
  .machines__hint:active { transform: scale(0.97); }

  .reel-wrap { position: relative; }
  .reel { display: flex; gap: 24px; padding: 0 32px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .reel::-webkit-scrollbar { display: none; }
  .machine { flex: 0 0 380px; scroll-snap-align: center; padding: 24px; border: 1px solid var(--rule); background: var(--bone); position: relative; overflow: hidden; transition: border-color 200ms ease-out, transform 0ms; transform-style: preserve-3d; perspective: 1000px; }
  .machine:hover { border-color: var(--ink); }
  .machine.is-resetting { transition: border-color 200ms ease-out, transform 500ms cubic-bezier(0.23, 1, 0.32, 1); }
  .machine.is-resetting .machine__img img { transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1); }
  .machine__img { aspect-ratio: 4/5; background: var(--bone-soft); display: flex; align-items: center; justify-content: center; padding: 24px; margin-bottom: 16px; position: relative; overflow: hidden; }
  .machine__img img { max-width: 100%; max-height: 100%; will-change: transform; }
  .machine__tag { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
  .machine__tag.is-smart { color: var(--ink); }
  .machine__tag.is-smart::before { content: ""; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }
  .machine h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 6px; font-variation-settings: "opsz" 24; }
  .machine p { font-size: 15px; color: var(--muted); }
  .machine__num { position: absolute; top: 24px; right: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted); }
  @media (max-width: 800px) { .machine { flex: 0 0 280px; } }

  /* Commitments */
  .commitments { padding: 120px 0; border-bottom: 1px solid var(--hairline); }
  .commit__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
  @media (max-width: 960px) { .commit__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .commit__grid { grid-template-columns: 1fr; } }
  .commit { padding-top: 24px; position: relative; transition: transform 600ms cubic-bezier(.16, 1, .3, 1); will-change: transform; }
  .commit::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0.4); transform-origin: left; transition: transform 0.6s var(--ease-out-expo); }
  .commit.in::before { transform: scaleX(1); }
  .commit__icon { width: 12px; height: 12px; background: var(--lime); border-radius: 50%; margin-bottom: 16px; }
  .commit h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.03em; font-variation-settings: "opsz" 24; }
  .commit p { font-size: 15px; color: var(--muted); line-height: 1.55; max-width: 32ch; }

  /* FAQ */
  .faq { padding: 120px 0; border-bottom: 1px solid var(--hairline); }
  .faq__list { max-width: 720px; margin-top: 48px; }
  .faq__item { border-bottom: 1px solid var(--rule); }
  .faq__item:first-child { border-top: 1px solid var(--rule); }
  .faq__item summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; letter-spacing: -0.03em; transition: color 0.3s var(--ease); font-variation-settings: "opsz" 24; }
  .faq__item summary:hover { color: var(--muted); }
  .faq__item summary::-webkit-details-marker { display: none; }
  .faq__item summary::after { content: ""; width: 18px; height: 18px; flex-shrink: 0; background: linear-gradient(var(--ink) 0 0) center / 100% 1.5px no-repeat, linear-gradient(var(--ink) 0 0) center / 1.5px 100% no-repeat; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
  .faq__item[open] summary::after { transform: rotate(135deg); }
  .faq__item p { padding: 0 0 24px; max-width: 60ch; color: var(--muted); font-size: 17px; line-height: 1.55; }
  .faq__more { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; transition: transform 120ms ease-out; }
  .faq__more .btn__arrow { transition: transform 200ms ease-out; }
  .faq__more:hover .btn__arrow { transform: translateX(4px); }
  .faq__more:active { transform: scale(0.97); }

  /* CTA */
  .cta { background: var(--ink); color: var(--bone); padding: 140px 0; text-align: center; position: relative; overflow: hidden; }
  .cta__aura { position: absolute; inset: -10% -5%; background: radial-gradient(circle at 30% 50%, rgba(206,255,26,0.20), transparent 50%); pointer-events: none; will-change: transform; }
  .cta__grid { position: absolute; inset: -5%; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; will-change: transform; }
  .cta > .container { position: relative; z-index: 2; max-width: 900px; }
  .cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(48px, 8vw, 128px); line-height: 0.88; letter-spacing: -0.05em; color: var(--bone); margin-bottom: 32px; font-variation-settings: "opsz" 84; }
  .cta h2 em { font-style: normal; background: var(--lime); color: var(--ink); padding: 0 0.08em; box-decoration-break: clone; }
  .cta p { font-size: 22px; max-width: 50ch; margin: 0 auto 48px; color: rgba(251,251,249,0.7); }
  .cta__actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .cta__actions .btn--ghost { color: var(--bone); border-color: rgba(251,251,249,0.3); }
  .cta__actions .btn--ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

  /*
    FAQ-CTA band — wraps .faq + .cta in one continuous dark surface that
    extends the CTA's original background recipe (ink + 64px grid + lime
    aura) upward across both sections so they read as a single block.
    .cta's own grid/aura layers are suppressed inside the band so the
    wrapper layers are the single source for both halves.
  */
  .faq-cta-band { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
  .faq-cta-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(206,255,26,0.20), transparent 50%);
    pointer-events: none; z-index: 0;
  }
  .faq-cta-band::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none; z-index: 0;
  }
  .faq-cta-band > * { position: relative; z-index: 1; }

  /* FAQ re-skinned for the dark surface */
  .faq-cta-band .faq { background: transparent; border: 0; }
  .faq-cta-band .faq .head h2 { color: var(--bone); }
  .faq-cta-band .faq .eyebrow { color: rgba(251,251,249,0.6); }
  .faq-cta-band .faq .eyebrow::before { background: var(--lime); }
  .faq-cta-band .faq h2 em { background: var(--lime); color: var(--ink); }
  .faq-cta-band .faq__item { border-bottom: 1px solid rgba(251,251,249,0.15); }
  .faq-cta-band .faq__item:first-child { border-top: 1px solid rgba(251,251,249,0.15); }
  .faq-cta-band .faq__item summary { color: var(--bone); }
  .faq-cta-band .faq__item summary:hover { color: rgba(251,251,249,0.6); }
  .faq-cta-band .faq__item summary::after {
    background:
      linear-gradient(var(--bone) 0 0) center / 100% 1.5px no-repeat,
      linear-gradient(var(--bone) 0 0) center / 1.5px 100% no-repeat;
  }
  .faq-cta-band .faq__item p { color: rgba(251,251,249,0.6); }
  .faq-cta-band .faq__more { color: var(--bone); border-bottom-color: rgba(251,251,249,0.4); }
  .faq-cta-band .faq__more:hover { color: var(--lime); border-bottom-color: var(--lime); }

  /* CTA — band already provides bg + grid + aura, suppress duplicates */
  .faq-cta-band .cta { background: transparent; }
  .faq-cta-band .cta__grid { display: none; }
  .faq-cta-band .cta__aura { display: none; }

  /* Footer */
  .footer { background: var(--ink); color: var(--bone); padding: 64px 0 32px; }
  .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  @media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
  .footer h6 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,251,249,0.5); font-weight: 500; margin-bottom: 16px; }
  .footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer a { color: var(--bone); transition: color 0.3s var(--ease); font-size: 15px; }
  .footer a:hover { color: var(--lime); }
  .footer__brand { font-family: var(--display); font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .footer__brand::before { content: ""; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; }
  .footer__brand strong { color: var(--bone); font-weight: 600; }
  .footer__brand span { color: rgba(251,251,249,0.5); font-weight: 400; }
  .footer__tagline { color: rgba(251,251,249,0.6); font-size: 14px; max-width: 36ch; line-height: 1.6; margin-top: 8px; }
  .footer .msg-pill { background: rgba(251,251,249,0.06); color: var(--bone); border-color: rgba(251,251,249,0.2); }
  .footer .msg-pill:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
  .footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(251,251,249,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,251,249,0.5); }
  .footer__bottom a { color: rgba(251,251,249,0.7); }

  /* Reveal */
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal-stagger] > * { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
  [data-reveal-stagger].in > * { opacity: 1; transform: none; }
  [data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.04s; }
  [data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.08s; }
  [data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.12s; }
  [data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.16s; }
  [data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.20s; }
  [data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.24s; }
  [data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.28s; }
  [data-reveal-stagger].in > *:nth-child(9) { transition-delay: 0.32s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; animation-iteration-count: 1 !important; }
    [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  }

  /* Keyboard focus visibility */
  :focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 2px; }
  .btn:focus-visible, .header__phone:focus-visible, .msg-pill:focus-visible { outline-offset: 6px; }

  @media (max-width: 800px) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
    .stats__grid { grid-template-columns: 1fr; }
    .stat { border-left: 0; border-top: 1px solid var(--rule); padding: 24px 0 0; }
    .stat:first-child { border-top: 0; padding-top: 0; }
  }

  /* ====== Inner page hero ====== */
  .page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--hairline); }
  .page-hero > .container { position: relative; z-index: 2; }
  .page-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(48px, 9vw, 128px); line-height: 0.88; letter-spacing: -0.05em; max-width: 18ch; margin: 24px 0 32px; opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); font-variation-settings: "opsz" 84; }
  .page-hero.is-loaded h1 { opacity: 1; transform: none; }
  .page-hero h1 em { font-style: normal; background: var(--ink); color: var(--lime); padding: 0 0.12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .page-hero p { font-size: 22px; max-width: 56ch; color: var(--ink-soft); margin-bottom: 40px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.2s var(--ease-out-expo), transform 0.6s 0.2s var(--ease-out-expo); }
  .page-hero.is-loaded p { opacity: 1; transform: none; }
  .page-hero .ctas { opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.4s var(--ease-out-expo), transform 0.6s 0.4s var(--ease-out-expo); }
  .page-hero.is-loaded .ctas { opacity: 1; transform: none; }

  /* ====== Stats-line (replaces hero-metric template) ====== */
  .stats-line { padding: 96px 0; border-bottom: 1px solid var(--hairline); overflow: hidden; position: relative; }
  .stats-line h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.05em; line-height: 0.88; max-width: 18ch; font-variation-settings: "opsz" 84; }
  .stats-line h2 .row { display: block; }
  .stats-line h2 .row--big { font-size: clamp(56px, 9vw, 132px); }
  .stats-line h2 .row--mid { font-size: clamp(40px, 6vw, 88px); margin-top: 8px; padding-left: 1.2ch; }
  .stats-line h2 .row--sm { font-size: clamp(28px, 4.2vw, 60px); margin-top: 8px; padding-left: 2.4ch; color: var(--muted); }
  .stats-line h2 em { font-style: normal; background: var(--ink); color: var(--lime); padding: 0 0.06em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .stats-line__note { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 40px; max-width: 60ch; line-height: 1.7; }
  .stats-line__note strong { color: var(--ink); font-weight: 600; }

  /* ====== Commitments numbered list (replaces card grid) ====== */
  .commit-list { list-style: none; counter-reset: c; max-width: 880px; margin-top: 48px; border-top: 1px solid var(--ink); }
  .commit-list > li { counter-increment: c; display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--rule); align-items: baseline; transition: padding-left 300ms cubic-bezier(.16,1,.3,1); }
  .commit-list > li:hover { padding-left: 16px; }
  .commit-list > li::before { content: counter(c, decimal-leading-zero); font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: 0.18em; color: var(--muted); padding-top: 4px; }
  .commit-list > li h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 8px; display: flex; align-items: baseline; gap: 14px; font-variation-settings: "opsz" 24; }
  .commit-list > li h3::after { content: ""; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; flex-shrink: 0; transform: translateY(-2px); }
  .commit-list > li p { font-size: 16px; color: var(--muted); line-height: 1.55; max-width: 56ch; font-family: var(--body); }
  @media (max-width: 600px) {
    .commit-list > li { grid-template-columns: 1fr; gap: 8px; }
    .commit-list > li::before { padding-top: 0; }
  }
