    /* Open Sauce One — the brand's paragraph typeface (self-hosted, SIL OFL). */
    @font-face { font-family: "Open Sauce One"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/open-sauce-one-400.woff2") format("woff2"); }
    @font-face { font-family: "Open Sauce One"; font-style: normal; font-weight: 500; font-display: swap; src: url("/fonts/open-sauce-one-500.woff2") format("woff2"); }
    @font-face { font-family: "Open Sauce One"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/open-sauce-one-600.woff2") format("woff2"); }
    @font-face { font-family: "Open Sauce One"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/open-sauce-one-700.woff2") format("woff2"); }
    /* Motor — the brand's display/heading typeface (licensed, self-hosted). */
    @font-face { font-family: "Motor"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/fonts/motor-regular.woff2") format("woff2"); }
    /* Rumble Brave — the brand's signature script (licensed, self-hosted). */
    @font-face { font-family: "Rumble Brave"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/rumble-brave.woff2") format("woff2"); }

    :root {
      /* ---- COVERED brand palette (warm orange · peach · forest green · olive) ---- */
      --paper: #FFF8EC;        /* canvas — warm cream (peach-tinted) */
      --paper-2: #FFEFDA;      /* deeper cream — alt sections, inputs */
      --band-grass: #EEF4CC;   /* light olive band */
      /* logo asset colours — fixed by the logo artwork, not part of the UI palette */
      --logo-green: #3A5641;
      --logo-sage: #94AB8D;
      --logo-orange: #F0A35C;
      --white: #FFFFFF;
      --ink: #2F4D19;          /* FOREST GREEN — body text + dark-section backgrounds */
      --ink-deep: #1C3110;     /* deeper forest — footer, heading depth */
      --ink-soft: #3D5A28;     /* softer forest — subheads */
      --muted: #566B42;        /* muted olive — secondary text */
      --red: #FC7130;          /* WARM ORANGE — primary accent / CTA fill */
      --red-deep: #BB4A12;     /* deep orange — text on light + buttons (white text) */
      --red-dark: #963A0B;     /* dark orange — accessible text on light */
      --green: #6E8B2E;        /* OLIVE — decorative dots / states on dark */
      --green-dark: #4C6720;   /* dark olive — olive text on light */
      --sage: #E2F099;         /* LIGHT OLIVE — pills, soft fills */
      --line: rgba(47, 77, 25, 0.20);
      --radius: 20px;
      --shadow: 0 10px 30px rgba(47, 77, 25, 0.12);
      --text-sm: 0.93rem;
      --band-lav: #FFECD3;     /* peach beige band (brand swatch) */
      --band-rosa: #FBE3C6;    /* warm peach band */
      --peach: #FBD9B3;        /* light peach */
      --kicker-band: #963A0B;  /* dark orange — kicker text */
      --font-display: "Motor", "Oswald", "Arial Narrow", Arial, sans-serif;
      --font-head: "Open Sauce One", "Helvetica Neue", Helvetica, Arial, sans-serif;
      --font-body: "Open Sauce One", "Helvetica Neue", Helvetica, Arial, sans-serif;
      --font-script: "Rumble Brave", "Dancing Script", cursive;
      --font-stamp: "Motor", "Oswald", "Arial Narrow", Arial, sans-serif;
      color-scheme: light;
    }

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

    html { scroll-behavior: smooth; scroll-padding-top: 86px; }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -0.02em; }

    a { color: inherit; }

    .container { width: min(1120px, 92%); margin: 0 auto; }

    section { padding: clamp(6rem, 12vh, 10rem) 0; }

    .kicker {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red-dark);
      margin-bottom: 1rem;
    }

    .section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 400; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 1.2rem; }
    .section-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 58ch; }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1rem;
      padding: 0.85rem 1.6rem;
      border-radius: 999px;
      border: 2px solid var(--ink);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-primary { background: var(--red-deep); border-color: var(--red-deep); color: #fff; box-shadow: 0 6px 18px rgba(252, 113, 48, 0.35); }
    .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
    .btn-outline { background: transparent; color: var(--paper); border-color: var(--paper); }
    .btn-outline:hover { background: var(--paper); color: var(--ink); }
    .btn-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
    .btn-light:hover { background: #fff; }

    /* ---------- Scroll progress ---------- */
    #progress {
      position: fixed; top: 0; left: 0; height: 4px; width: 0;
      background: var(--red); z-index: 200;
    }

    /* ---------- Nav ---------- */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 248, 236, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.9rem 0;
    }
    .logo {
      font-family: var(--font-head);
      font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em;
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.55rem;
    }
    .logo-mark {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border: 3px solid var(--red); border-radius: 9px;
      color: var(--red); font-weight: 700; font-size: 1.05rem;
      transform: rotate(-6deg);
    }
    .nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
    .nav-links a:not(.btn) {
      text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft);
      transition: color 0.15s ease;
    }
    .nav-links a:not(.btn):hover { color: var(--red-deep); }
    .nav-links .btn { padding: 0.5rem 1.15rem; font-size: 0.9rem; }

    .burger {
      display: none; background: none; border: none; cursor: pointer; padding: 8px;
    }
    .burger span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
    .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    @media (max-width: 840px) {
      .burger { display: block; }
      .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 0;
        background: var(--paper-2); border-bottom: 1px solid var(--line);
        padding: 0.5rem 4%;
      }
      .nav-links.open { display: flex; max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto; }
      .nav-links li { width: 100%; }
      .nav-links a:not(.btn) { display: block; padding: 0.85rem 0; font-size: 1.05rem; }
      .nav-links .btn { margin: 0.75rem 0 1rem; }
    }

    /* ---------- Hero ---------- */
    /* Scroll-scrub hero: the dispenser video IS the background. The section
       grows to (scrollLength+1)×100vh of track (set by JS); .hero-pin stays
       stuck to the viewport while the canvas scrubs through the frames. */
    .hero {
      position: relative;
      padding: 0;
      background-color: var(--band-lav);
      border-bottom: 1px solid var(--line);
    }
    .hero-pin {
      position: sticky; top: 0;
      height: 100vh; width: 100%;
      overflow: hidden;
      display: flex; align-items: center;
      /* keeps the copy top visible if it's taller than the viewport
         (unsupported browsers fall back to plain center) */
      align-items: safe center;
      /* clear the sticky translucent header */
      padding-top: 88px;
    }
    @supports (height: 100dvh) { .hero-pin { height: 100dvh; } }
    .hero-bg {
      position: absolute; inset: 0; display: block;
      width: 100%; height: 100%; object-fit: cover;
    }
    /* Legibility scrim: cream wash rising from the left under the copy,
       fading out over the dispenser side. */
    .hero-scrim {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(90deg,
        rgba(255, 248, 236, 0.94) 0%,
        rgba(255, 248, 236, 0.72) 34%,
        rgba(255, 248, 236, 0.25) 56%,
        rgba(255, 248, 236, 0) 74%);
    }
    .hero-inner { position: relative; z-index: 1; text-align: left; }
    .hero-copy { max-width: 660px; padding: 1rem 0; }
    /* The pin is always exactly one viewport tall, so the type scales with
       BOTH axes: vw keeps it proportional, the vh guard guarantees the whole
       stack — badge → h1 → stamp → sub → CTAs — fits the pinned viewport on
       any screen. Big on big screens, never clipped on short ones. */
    .hero-pin .hero-copy h1 { font-size: clamp(2.6rem, min(7.2vw, 10.5vh), 5.6rem); }
    .hero-pin .stamp { font-size: clamp(1.3rem, min(4vw, 4.2vh), 2.6rem); }
    .hero-pin .hero-sub { font-size: clamp(0.95rem, min(2.2vw, 2.4vh), 1.25rem); }
    /* Scrub-driven stamp: hidden until the pack lands in the tray, then the
       existing stampIn slam plays. Only when the scrub is active (JS adds
       .hero--scrubbing) — no-JS and reduced-motion keep the stamp visible.
       The CMS motion-off switch also keeps it visible (its stamp animation
       is disabled globally further down). */
    .hero--scrubbing #heroStamp { opacity: 0; }
    .hero--scrubbing #heroStamp.stamp-in { opacity: 1; }
    body.motion-off .hero--scrubbing #heroStamp { opacity: 1; }
    /* tighten the copy's tall flow rhythm inside the fixed-height pin */
    .hero-pin .hero-badge { margin-bottom: 1.1rem; }
    .hero-pin .hero-stamp-row { margin: 1.2rem 0 1rem; min-height: 70px; }
    .hero-pin .hero-sub { margin-bottom: 1.4rem; }
    .hero-pin .hero-scroll { margin-top: 1.2rem; }
    @media (max-width: 900px) {
      .hero-scrim {
        background: linear-gradient(180deg,
          rgba(255, 248, 236, 0.94) 0%,
          rgba(255, 248, 236, 0.78) 55%,
          rgba(255, 248, 236, 0.3) 82%,
          rgba(255, 248, 236, 0.05) 100%);
      }
      .hero-copy { padding: 0.5rem 0 1rem; }
    }
    /* Shorter laptops: reclaim fixed chrome so the type can stay big — the
       vh-guarded clamps above handle the text itself. The scroll hint goes;
       the scrub is its own invitation to scroll. */
    @media (max-height: 860px) {
      .hero-pin { padding-top: 72px; }
      .hero-pin .hero-badge { margin-bottom: 0.9rem; }
      .hero-pin .hero-stamp-row { margin: 1rem 0 0.9rem; min-height: 56px; }
      .hero-pin .hero-scroll { display: none; }
      .hero-copy { padding: 0.5rem 0; }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1.5px solid var(--line); background: #fff;
      border-radius: 999px; padding: 0.45rem 1.05rem;
      font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
      margin-bottom: 2rem;
    }
    .hero-badge .dot-pulse {
      width: 8px; height: 8px; border-radius: 50%; background: var(--green);
      animation: pulse 2.2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(110, 139, 46, 0.45); }
      70% { box-shadow: 0 0 0 9px rgba(110, 139, 46, 0); }
      100% { box-shadow: 0 0 0 0 rgba(110, 139, 46, 0); }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 8.5vw, 6.5rem);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 0.92;
      max-width: 12ch;
      margin: 0;
    }
    .hero h1 .accent { color: var(--red-deep); }

    .hero-stamp-row { margin: 2.4rem 0 1.8rem; min-height: 90px; display: flex; justify-content: flex-start; }

    .stamp {
      display: inline-block;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      letter-spacing: 0.12em;
      color: var(--ink);
      border: 4px solid var(--ink);
      border-radius: 14px;
      padding: 0.35em 0.8em;
      transform: rotate(-6deg);
      position: relative;
      text-transform: uppercase;
      box-shadow: inset 0 0 0 2px rgba(47, 77, 25, 0.25);
    }
    .stamp::after {
      content: ""; position: absolute; inset: 4px;
      border: 1.5px dashed rgba(47, 77, 25, 0.4); border-radius: 9px;
      pointer-events: none;
    }
    .stamp.stamp-in { animation: stampIn 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) both; }
    @keyframes stampIn {
      0% { opacity: 0; transform: rotate(-6deg) scale(2.6); }
      60% { opacity: 1; transform: rotate(-6deg) scale(0.94); }
      80% { transform: rotate(-6deg) scale(1.04); }
      100% { opacity: 1; transform: rotate(-6deg) scale(1); }
    }

    .hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; margin: 0 0 2.6rem; }

    .hero-ctas { display: flex; gap: 0.9rem; justify-content: flex-start; flex-wrap: wrap; }

    .hero-scroll { margin-top: 3.2rem; font-size: 0.85rem; color: var(--muted); }
    .hero-scroll a { text-decoration: none; }
    .hero-scroll a:hover { color: var(--red-deep); }

    /* ---------- Marquee ---------- */
    .marquee {
      background: var(--sage); color: var(--ink-deep);
      padding: 0.9rem 0; overflow: hidden; white-space: nowrap;
      border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    }
    .marquee-track { display: inline-flex; animation: scrollX 36s linear infinite; }
    .marquee span {
      font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0 1.4rem; display: inline-flex; align-items: center; gap: 1.4rem;
    }
    .marquee span::after { content: "●"; color: rgba(47, 77, 25, 0.6); font-size: 0.55rem; }
    @keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee { position: relative; }
    .marquee:hover .marquee-track, .marquee.paused .marquee-track { animation-play-state: paused; }
    .marquee-pause {
      position: absolute; right: 10px; top: 50%; transform: translateY(-50%); z-index: 2;
      width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(255, 248, 236, 0.4);
      background: var(--ink); color: var(--paper); cursor: pointer; font-size: 0.7rem; line-height: 1;
    }
    .marquee-pause:hover, .marquee-pause:focus-visible { border-color: var(--paper); }

    .visually-hidden {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
    }

    /* ---------- Problem / stats ---------- */
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem;
    }
    @media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }

    .stat-card {
      background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
      padding: 1.8rem 1.5rem; box-shadow: var(--shadow);
    }
    .stat-num {
      font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.4rem);
      font-weight: 700; color: var(--red-deep); line-height: 1;
    }
    .stat-label { margin-top: 0.7rem; font-size: var(--text-sm); color: var(--ink-soft); }
    .stats-source { margin-top: 1.6rem; font-size: 0.82rem; color: var(--muted); }
    .stats-source a { color: var(--muted); }

    /* ---------- Model loop ---------- */
    .model-band { background: var(--sage); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .model-band .section-sub, .model-band .loop-arrow { color: var(--ink); }
    #how { background: var(--band-rosa); border-bottom: 1px solid var(--line); }
    #partners { background: var(--band-grass); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .loop { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-top: 3rem; flex-wrap: wrap; }
    .loop-step {
      flex: 1 1 240px; max-width: 320px;
      background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
      padding: 1.9rem 1.6rem; box-shadow: var(--shadow); text-align: center;
    }
    .loop-emoji { font-size: 2rem; }
    .loop-step h3 { font-size: 1.2rem; margin: 0.8rem 0 0.5rem; }
    .loop-step p { font-size: var(--text-sm); color: var(--ink-soft); }
    .loop-arrow {
      display: flex; align-items: center; padding: 0 1rem;
      font-size: 1.8rem; color: var(--red-deep); font-weight: 700;
      animation: nudge 1.6s ease-in-out infinite;
    }
    @keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
    @media (max-width: 860px) {
      .loop { flex-direction: column; align-items: center; }
      .loop-arrow { transform: rotate(90deg); padding: 0.6rem 0; animation: none; }
    }

    /* ---------- How it works / demo ---------- */
    .stepper { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 2.6rem 0 2rem; list-style: none; padding: 0; }
    .step-chip {
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1.5px solid var(--line); background: var(--white);
      border-radius: 999px; padding: 0.5rem 1.1rem;
      font-size: 0.88rem; font-weight: 600; color: var(--muted);
      transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .step-chip .n {
      display: inline-flex; align-items: center; justify-content: center;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--paper-2); color: var(--muted); font-size: 0.75rem; font-family: var(--font-head);
    }
    .step-chip.active { border-color: var(--red); color: var(--ink); box-shadow: 0 4px 14px rgba(252, 113, 48, 0.18); }
    .step-chip.active .n { background: var(--red-deep); color: #fff; }
    .step-chip.done { color: var(--green-dark); border-color: rgba(110, 139, 46, 0.4); }
    .step-chip.done .n { background: var(--green-dark); color: #fff; }

    .demo-card {
      background: var(--white); border: 2px solid var(--ink); border-radius: 28px;
      box-shadow: 0 18px 50px rgba(34, 58, 19, 0.12);
      padding: 2.6rem 2rem;
      display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap;
    }

    /* Machine */
    .machine-stage { position: relative; }
    .machine {
      width: 250px; background: linear-gradient(180deg, #FFFFFF, #FFEFDA);
      border: 3px solid var(--ink); border-radius: 22px;
      padding: 14px; position: relative;
    }
    .m-screen {
      height: 150px; background: var(--ink); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--paper); overflow: hidden; position: relative;
    }
    .m-screen .qr {
      width: 76px; height: 76px; border-radius: 8px; background:
        conic-gradient(var(--ink) 0 25%, #fff 0 50%, var(--ink) 0 75%, #fff 0) 0 0/50% 50%,
        #fff;
      outline: 6px solid #fff;
      animation: qrPulse 1.6s ease-in-out infinite;
    }
    @keyframes qrPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
    .m-screen .ad-live { text-align: center; font-family: var(--font-head); padding: 0 10px; }
    .m-screen .ad-live small { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,248,236,0.6); margin-bottom: 6px; }
    .m-screen .ad-live strong { font-size: 1.05rem; }
    .m-label {
      text-align: center; font-family: var(--font-head); font-weight: 700;
      letter-spacing: 0.14em; font-size: 0.8rem; color: var(--red-deep);
      padding: 10px 0 8px; text-transform: uppercase;
    }
    .m-slot {
      height: 58px; background: var(--ink); border-radius: 12px;
      position: relative; overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .m-slot::before {
      content: ""; position: absolute; top: 8px; left: 14px; right: 14px; height: 5px;
      background: rgba(255, 248, 236, 0.16); border-radius: 3px;
    }
    .pack {
      width: 74px; height: 34px; background: #fff;
      border: 2.5px solid var(--red); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-weight: 700; font-size: 0.55rem;
      letter-spacing: 0.1em; color: var(--red-deep);
      margin-bottom: 6px;
      opacity: 0; transform: translateY(-70px) rotate(-4deg);
    }
    .pack.drop { animation: packDrop 0.7s cubic-bezier(0.3, 1.3, 0.5, 1) both; }
    @keyframes packDrop {
      0% { opacity: 0; transform: translateY(-70px) rotate(-6deg); }
      60% { opacity: 1; transform: translateY(4px) rotate(2deg); }
      100% { opacity: 1; transform: translateY(0) rotate(0deg); }
    }
    .machine .led {
      position: absolute; top: 20px; right: 22px; width: 8px; height: 8px; border-radius: 50%;
      background: var(--green); box-shadow: 0 0 8px rgba(110, 139, 46, 0.8);
    }
    .machine-stamp {
      position: absolute; top: 42%; left: 50%;
      translate: -50% -50%;
      font-size: 1.1rem; padding: 0.3em 0.7em;
      background: rgba(255, 248, 236, 0.94);
      opacity: 0; pointer-events: none; z-index: 5;
    }
    .machine-stamp.show { opacity: 1; animation: stampIn 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) both; }

    .confetti-bit {
      position: absolute; top: 30%; width: 8px; height: 12px; border-radius: 2px;
      pointer-events: none; z-index: 4;
      animation: confettiFall 1.3s ease-in forwards;
    }
    /* Mini-pack confetti: tiny wrapped packs with a coloured band. */
    .confetti-pack {
      width: 15px; height: 10px; border-radius: 2.5px;
      background: #FFF3E2; border: 0.5px solid rgba(28, 49, 16, 0.28);
      overflow: hidden;
    }
    .confetti-pack::after {
      content: ""; position: absolute; left: 5px; top: 0; width: 4.5px; height: 100%;
      background: var(--confetti-band, var(--red));
    }
    @keyframes confettiFall {
      0% { opacity: 1; transform: translateY(0) rotate(0); }
      100% { opacity: 0; transform: translateY(190px) rotate(320deg); }
    }

    /* Phone */
    .phone {
      width: 230px; border: 3px solid var(--ink); border-radius: 30px;
      background: #fff; padding: 12px; position: relative;
    }
    .phone::before {
      content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
      width: 72px; height: 16px; background: var(--ink); border-radius: 0 0 12px 12px; z-index: 2;
    }
    .p-screen {
      border-radius: 20px; background: var(--paper-2); min-height: 300px;
      padding: 2.2rem 1rem 1.2rem; display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 0.8rem; text-align: center;
    }
    .p-screen h3 { font-size: 1.02rem; }
    .p-screen p { font-size: 0.8rem; color: var(--ink-soft); }
    .p-screen .btn { font-size: 0.85rem; padding: 0.6rem 1.2rem; }
    .p-input {
      pointer-events: none;
      width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
      padding: 0.6rem 0.8rem; font-size: 0.82rem; font-family: var(--font-body);
      background: #fff; color: var(--ink-soft); text-align: center;
    }
    .ad-box {
      width: 100%; background: var(--ink); color: var(--paper); border-radius: 12px; padding: 1rem 0.8rem;
    }
    .ad-box small { display: block; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
    .ad-box strong { font-family: var(--font-head); font-size: 0.95rem; }
    .ad-progress { width: 100%; height: 7px; background: var(--paper-2); border-radius: 4px; overflow: hidden; }
    .ad-progress .bar { height: 100%; width: 0; background: var(--red); border-radius: 4px; }
    .ad-progress .bar.run { animation: fillBar 3s linear forwards; }
    @keyframes fillBar { to { width: 100%; } }
    .p-stamp { font-size: 0.95rem; padding: 0.3em 0.7em; }

    .demo-note { text-align: center; margin-top: 1.6rem; font-size: 0.86rem; color: var(--muted); }

    /* ---------- Audience sections ---------- */
    .dark { background: var(--ink); color: var(--paper-2); }
    .dark .section-sub { color: rgba(255, 248, 236, 0.75); }
    .dark .kicker { color: var(--red); }

    .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    @media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

    .benefit {
      border: 1.5px solid rgba(255, 248, 236, 0.16); border-radius: var(--radius);
      padding: 1.7rem 1.5rem; background: rgba(255, 248, 236, 0.04);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .benefit:hover { transform: translateY(-4px); border-color: rgba(252, 113, 48, 0.6); }
    .benefit .b-icon { font-size: 1.6rem; }
    .benefit h3 { font-size: 1.08rem; margin: 0.8rem 0 0.45rem; }
    .benefit p { font-size: var(--text-sm); color: rgba(255, 248, 236, 0.72); }

    .chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem; }
    .chip {
      border: 1.5px solid rgba(255, 248, 236, 0.25); border-radius: 999px;
      padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 500; color: rgba(255, 248, 236, 0.85);
    }

    /* ---------- Forms ---------- */
    .form-card {
      background: rgba(255, 248, 236, 0.05);
      border: 1.5px solid rgba(255, 248, 236, 0.16);
      border-radius: var(--radius);
      padding: 2rem;
      margin-top: 3rem;
    }
    .form-card h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
    .field { display: flex; flex-direction: column; gap: 0.35rem; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-size: 0.82rem; font-weight: 600; }
    .field input, .field select, .field textarea {
      font-family: var(--font-body); font-size: 1rem;
      padding: 0.75rem 0.9rem; border-radius: 12px;
      border: 1.5px solid var(--line); background: var(--paper); color: var(--ink);
    }
    .field textarea { resize: vertical; min-height: 90px; }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: 2px solid var(--red-deep); outline-offset: 1px; border-color: var(--red-deep);
    }
    .form-actions { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .form-hint { font-size: 0.85rem; color: rgba(255, 248, 236, 0.74); }
    .light-form .form-hint { color: var(--muted); }

    .light-form { background: var(--white); border: 1.5px solid var(--line); box-shadow: var(--shadow); }
    .light-form .field input, .light-form .field select, .light-form .field textarea {
      border-color: rgba(34, 58, 19, 0.45);
      background: #fff;
    }

    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 300;
      background: var(--red-deep); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
      font-weight: 700; text-decoration: none;
    }
    .skip-link:focus { left: 0; }

    :focus-visible {
      outline: 2.5px solid var(--red-dark, #963A0B);
      outline-offset: 2px;
      border-radius: 4px;
    }
    /* band-aware focus colour — dark-orange fails 3:1 on the full-strength bands */
    .dark :focus-visible, .cta-banner :focus-visible, footer :focus-visible { outline-color: var(--paper-2); }
    .model-band :focus-visible, .vision-band :focus-visible, .marquee :focus-visible { outline-color: var(--ink-deep); }
    ::selection { background: var(--ink); color: #fff; }

    .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
    .form-success {
      margin-top: 2rem; padding: 1.2rem 1.5rem; border-radius: 14px;
      background: rgba(110, 139, 46, 0.12); border: 1.5px solid rgba(110, 139, 46, 0.4);
      font-weight: 600;
    }

    .nav-links--static {
      display: flex !important;
      position: static !important;
      flex-direction: row !important;
      background: none !important;
      border: 0 !important;
      padding: 0 !important;
      max-height: none !important;
    }

    /* ---------- Venues ---------- */
    .pilot-ribbon {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--sage); border: 1.5px solid rgba(47, 77, 25, 0.35);
      color: var(--ink); border-radius: 999px; padding: 0.5rem 1.2rem;
      font-weight: 600; font-size: 0.88rem; margin-bottom: 1.4rem;
    }
    .cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 3rem; }
    @media (max-width: 760px) { .cols-2 { grid-template-columns: 1fr; } }
    .list-card {
      background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
      padding: 1.9rem 1.7rem; box-shadow: var(--shadow);
    }
    .list-card h3 { font-size: 1.15rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.55rem; }
    .list-card ul { list-style: none; }
    .list-card li {
      padding: 0.5rem 0; font-size: var(--text-sm); color: var(--ink-soft);
      display: flex; gap: 0.6rem; align-items: baseline;
    }
    .list-card li::before { content: "✓"; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }
    .list-card.wants li::before { content: "→"; color: var(--red-deep); }

    /* ---------- Vision ---------- */
    .vision-band { background: var(--red); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .vision-band .section-sub, .vision-band .stats-source, .vision-band .stats-source a { color: var(--ink-deep); }
    .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    @media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
    .milestone {
      background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
      padding: 1.8rem 1.6rem; box-shadow: var(--shadow); position: relative;
    }
    .milestone .phase-tag {
      display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
      letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: var(--red-deep);
      border-radius: 999px; padding: 0.3rem 0.85rem; margin-bottom: 1rem;
    }
    .milestone:nth-child(2) .phase-tag { background: var(--ink); }
    .milestone:nth-child(3) .phase-tag { background: var(--green-dark); }
    .milestone h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
    .milestone p { font-size: var(--text-sm); color: var(--ink-soft); }

    /* ---------- Build in public ---------- */
    .bip {
      margin-top: 4rem; text-align: center;
      border: 2px dashed rgba(34, 58, 19, 0.25); border-radius: var(--radius);
      padding: 2.2rem 1.6rem;
    }
    .bip h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .bip p { color: var(--ink-soft); font-size: var(--text-sm); max-width: 52ch; margin: 0 auto 1.2rem; }
    .soon-chips { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
    .soon-chips .chip { border-color: var(--line); color: var(--muted); }

    /* ---------- FAQ ---------- */
    .faq-list { margin-top: 2.6rem; max-width: 760px; margin-left: auto; margin-right: auto; }
    .faq-item {
      background: var(--white); border: 1.5px solid var(--line); border-radius: 16px;
      margin-bottom: 0.8rem; overflow: hidden;
    }
    .faq-q {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink);
      padding: 1.15rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    }
    .faq-q .indicator { color: var(--red-deep); font-size: 1.3rem; font-weight: 500; transition: transform 0.25s ease; flex-shrink: 0; }
    .faq-item.open .indicator { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-a-inner { padding: 0 1.4rem 1.25rem; font-size: var(--text-sm); color: var(--ink-soft); }

    /* ---------- CTA banner ---------- */
    .cta-banner {
      background: var(--ink); color: #fff; border-radius: 28px;
      padding: 3.4rem 2.4rem; text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: "COVERED."; position: absolute; font-family: var(--font-head); font-weight: 700;
      font-size: 9rem; opacity: 0.08; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-6deg);
      white-space: nowrap; pointer-events: none;
    }
    .cta-banner .btn-light { background: var(--red); border-color: var(--red); color: var(--ink-deep); }
    .cta-banner .btn-light:hover { background: var(--peach); border-color: var(--peach); }
    .cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.8rem; position: relative; }
    .cta-banner p { opacity: 0.9; margin-bottom: 1.8rem; position: relative; }
    .cta-banner .btn { position: relative; }

    /* ---------- Footer ---------- */
    footer { background: var(--ink-deep); color: rgba(255, 248, 236, 0.75); padding: 3.5rem 0 2.5rem; }
    .foot-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
    .foot-brand .logo { color: var(--paper); }
    .foot-brand p { margin-top: 0.9rem; font-size: 0.9rem; max-width: 34ch; }
    .foot-col .foot-head { font-family: var(--font-head); font-weight: 700; color: var(--paper); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
    .foot-col ul { list-style: none; }
    .foot-col li { margin-bottom: 0.55rem; }
    .foot-col a { text-decoration: none; font-size: var(--text-sm); color: rgba(255, 248, 236, 0.75); }
    .foot-col a:hover { color: var(--green); }
    .foot-col a:hover { color: var(--peach); }
    .foot-bottom {
      margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 248, 236, 0.12);
      display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
      font-size: 0.8rem; color: rgba(255, 248, 236, 0.68);
    }

    /* ---------- Reveal on scroll ---------- */
    /* Reveal = the dispense: content drops in and settles, same easing as the
       demo machine's packDrop — the system's own native motion, not a stock fade.
       (Duration is re-scaled by the CMS motion-speed control further down.) */
    .reveal { opacity: 0; transform: translateY(-18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.3, 1.3, 0.5, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ---------- Manifesto — words light up as you scroll through them.
                  "Poster" treatment: display type + the pack macro beside it. ---------- */
    .manifesto-duo {
      display: grid; grid-template-columns: 1.8fr 1fr;
      gap: clamp(1.25rem, 2.5vw, 2rem); align-items: center;
      margin: 1.75rem 0 1.25rem;
    }
    .manifesto {
      font-family: var(--font-display); font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(1.5rem, 2.9vw, 2.5rem); line-height: 1.22;
      letter-spacing: 0.015em; max-width: 36ch;
      margin: 0; color: var(--ink);
    }
    .manifesto-photo { margin: 0; transform: rotate(1.5deg); }
    .manifesto-photo img {
      display: block; width: 100%; max-width: 360px; height: auto; margin-left: auto;
      border-radius: var(--radius); box-shadow: 0 14px 30px rgba(28, 49, 16, 0.18);
    }
    @media (max-width: 800px) {
      .manifesto-duo { grid-template-columns: 1fr; }
      .manifesto-photo img { max-width: 300px; margin: 0 auto; }
    }
    .manifesto .man-w { opacity: 0.18; transition: opacity 0.35s ease, color 0.35s ease; }
    .manifesto .man-w.lit { opacity: 1; }
    .manifesto .man-w.man-key.lit { color: var(--red-deep); }
    .motion-off .manifesto .man-w, .no-js .manifesto .man-w { opacity: 1; }

    /* ---------- Model concept film (pack in the tray) ---------- */
    .model-video { display: block; width: 100%; height: auto; }
    .polaroid-video { display: block; width: 100%; height: auto; }

    /* ---------- Story strip — how it works in four moments ---------- */
    .story-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: clamp(0.9rem, 2vw, 1.6rem); margin: 3rem 0 3.5rem;
    }
    .story-card {
      background: var(--white); border: 1.5px solid var(--line);
      border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    }
    .story-card img { display: block; width: 100%; height: auto; }
    .story-card figcaption { padding: 0.85rem 1rem 1.05rem; }
    .story-card figcaption strong {
      display: block; font-family: var(--font-display); font-weight: 500;
      font-size: 1.05rem; letter-spacing: 0.02em; margin-bottom: 0.15rem;
    }
    .story-card figcaption span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.45; }
    @media (max-width: 780px) {
      .story-strip { grid-template-columns: 1fr 1fr; }
    }

    /* ---------- The brand period — display lines end in the logo's dot ---------- */
    .brand-period { color: var(--red-deep); }
    .dark .brand-period, .cta-banner .brand-period { color: var(--red); }
    .model-band .brand-period, .vision-band .brand-period { color: var(--ink-deep); }

    /* ---------- Brand ident video (above the CTA banner) ---------- */
    .ident-video {
      max-width: 760px; margin: 0 auto 3rem; cursor: pointer;
    }
    .ident-video video {
      display: block; width: 100%; height: auto;
      border-radius: var(--radius); border: 1.5px solid var(--line);
      box-shadow: var(--shadow);
      background: #FFECD3;
    }

    /* ---------- Model visual: dispenser collage left, receipt right ---------- */
    .model-visual {
      display: grid; grid-template-columns: 1.2fr 0.8fr;
      gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
      margin-top: 3.5rem;
    }
    .model-photo { margin: 0; }
    .model-photo img {
      display: block; width: 100%; height: auto;
      border-radius: var(--radius); border: 1.5px solid var(--line);
      box-shadow: var(--shadow);
    }
    .model-visual .receipt { margin: 0 auto; }
    @media (max-width: 900px) {
      .model-visual { grid-template-columns: 1fr; }
      .model-visual .receipt { margin-top: 0.5rem; }
    }

    /* ---------- Receipt — proof of the model: your total is £0.00 ---------- */
    .receipt {
      width: 280px; margin: 3rem auto 0; background: var(--white);
      padding: 1.4rem 1.3rem 1.7rem; box-shadow: var(--shadow);
      transform: rotate(-1.5deg);
      font-family: var(--font-head); color: var(--ink);
      font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), 95% 100%, 90% calc(100% - 7px), 85% 100%, 80% calc(100% - 7px), 75% 100%, 70% calc(100% - 7px), 65% 100%, 60% calc(100% - 7px), 55% 100%, 50% calc(100% - 7px), 45% 100%, 40% calc(100% - 7px), 35% 100%, 30% calc(100% - 7px), 25% 100%, 20% calc(100% - 7px), 15% 100%, 10% calc(100% - 7px), 5% 100%, 0 calc(100% - 7px));
    }
    .receipt .r-brand { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.16em; text-align: center; margin-bottom: 0.2rem; }
    .receipt .r-meta { text-align: center; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.14em; margin-bottom: 0.9rem; }
    .receipt .r-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; border-top: 1px dashed var(--line); }
    .receipt .r-total { border-top: 1.5px solid var(--ink); font-weight: 700; }
    .receipt .r-paid { text-align: center; font-size: 0.6rem; letter-spacing: 0.14em; color: var(--red-dark); margin: 0.7rem 0 0.9rem; }
    .receipt .r-code { height: 30px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 7px, transparent 7px 9px, var(--ink) 9px 10px, transparent 10px 14px); margin-bottom: 0.8rem; }
    .receipt .r-script { font-family: var(--font-script); text-transform: none; letter-spacing: 0.02em; font-size: 1.05rem; text-align: center; color: var(--ink); }

    /* ---------- Partners wall ---------- */
    .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    @media (max-width: 820px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .partner-grid { grid-template-columns: 1fr; } }
    .p-slot {
      border: 2px dashed rgba(34, 58, 19, 0.28); border-radius: var(--radius);
      min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.5rem; text-align: center; padding: 1.4rem; color: var(--muted);
      background: rgba(255, 255, 255, 0.55);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .p-slot:hover { transform: rotate(-1.2deg) translateY(-3px); border-color: var(--red-deep); }
    .p-slot .slot-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
    .p-slot small { font-size: 0.8rem; }
    .p-slot.founding { border-style: solid; border-color: var(--red-deep); background: #fff; box-shadow: var(--shadow); }
    .p-slot.founding .stamp { font-size: 0.95rem; padding: 0.3em 0.7em; }

    /* ---------- Locations / map ---------- */
    .loc-grid { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
    @media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
    .uk-map-wrap { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; }
    .uk-map { width: 100%; height: auto; display: block; }
    .uk-land { fill: var(--sage); stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
    .uk-neighbor { fill: var(--paper-2); stroke: rgba(34, 58, 19, 0.28); stroke-width: 1; stroke-linejoin: round; }
    .map-pin { cursor: pointer; }
    .map-pin .pin-ground { fill: rgba(28, 49, 16, 0.22); }
    .map-pin .pin-body { stroke: rgba(28, 49, 16, 0.35); stroke-width: 0.75; transition: transform 0.15s ease; }
    .map-pin .pin-dot { fill: #fff; opacity: 0.92; }
    .map-pin .pin-dot.live { fill: #FFE9D8; }
    .map-pin.selected .pin-body, .map-pin.selected .pin-dot { transform-box: view-box; transform-origin: center; }
    .map-pin.selected { filter: brightness(1.08) saturate(1.15); }
    .map-pin:hover .pin-body { stroke-width: 1.5; }
    .map-pin .ring { fill: none; stroke: var(--red-deep); stroke-width: 2; opacity: 0; }
    .map-pin.live .ring { animation: ringPulse 2.2s ease-out infinite; }
    @keyframes ringPulse {
      0% { rx: 10; ry: 4; opacity: 0.75; }
      70% { rx: 26; ry: 10; opacity: 0; }
      100% { rx: 26; ry: 10; opacity: 0; }
    }
    .map-legend { display: flex; gap: 1.2rem; margin-top: 0.9rem; font-size: 0.8rem; color: var(--muted); justify-content: center; flex-wrap: wrap; }
    .map-legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.4rem; vertical-align: middle; }
    .map-legend .dot.live { background: var(--red-deep); }
    .map-legend .dot.soon { background: #fff; border: 2px solid var(--ink); }

    .city-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
    .city-chip {
      font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
      border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft);
      border-radius: 999px; padding: 0.45rem 1rem; cursor: pointer;
      transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }
    .city-chip:hover { border-color: var(--red-deep); color: var(--ink); }
    .city-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
    .city-chip .badge-live { color: var(--red-deep); font-size: 0.72rem; margin-left: 0.25rem; }
    .city-chip[aria-pressed="true"] .badge-live { color: var(--peach); }
    .city-detail {
      background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
      box-shadow: var(--shadow); padding: 1.6rem 1.5rem; min-height: 130px;
    }
    .city-detail h3 { font-size: 1.2rem; margin-bottom: 0.45rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
    .city-detail .status-tag { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; padding: 0.25rem 0.7rem; }
    .city-detail .status-tag.live { background: var(--red-deep); color: #fff; }
    .city-detail .status-tag.soon { background: var(--paper-2); color: var(--ink-soft); border: 1px solid var(--line); }
    .city-detail p { font-size: var(--text-sm); color: var(--ink-soft); }
    .loc-types { margin-top: 1.6rem; }
    .loc-types .loc-types-title { font-family: var(--font-head); font-weight: 600; margin-bottom: 0.8rem; }
    .loc-types .chip { border-color: var(--line); color: var(--ink-soft); }
    .loc-types .chip-row { margin-top: 0; }
    .loc-cta { margin-top: 1.6rem; }

    /* ---------- Decorative visuals ---------- */
    .texture-dots { background-image: radial-gradient(rgba(34, 58, 19, 0.06) 1.5px, transparent 1.5px); background-size: 24px 24px; }
    .float-deco { position: absolute; pointer-events: none; z-index: 0; }
    .float-deco.blob { border-radius: 50%; filter: blur(2px); }
    .floaty { animation: floatY 7s ease-in-out infinite alternate; }
    .floaty.slow { animation-duration: 10s; }
    @keyframes floatY {
      from { transform: translateY(-8px) rotate(var(--tilt, -6deg)); }
      to { transform: translateY(10px) rotate(var(--tilt, -6deg)); }
    }
    @media (max-width: 900px) { .float-deco { display: none; } }
    @media (max-width: 1080px) { .nav-links { gap: 1.05rem; } }

    /* ---------- Photos / polaroids ---------- */
    .photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.4rem; }
    @media (max-width: 780px) { .photo-strip { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }
    .polaroid {
      margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 6px;
      padding: 12px 12px 14px; box-shadow: 0 14px 34px rgba(34, 58, 19, 0.16);
      transform: rotate(var(--tilt, -2deg)); position: relative;
      transition: transform 0.25s ease;
    }
    .polaroid:hover { transform: rotate(0deg) scale(1.02); }
    .polaroid::before {
      content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
      width: 92px; height: 26px; background: rgba(252, 113, 48, 0.28); border-radius: 2px; z-index: 1;
    }
    .polaroid img { width: 100%; height: 220px; object-fit: cover; border-radius: 3px; display: block; }
    .polaroid figcaption { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; text-align: center; padding-top: 0.8rem; color: var(--ink-soft); }
    .brands-head { display: grid; grid-template-columns: 1fr 250px; gap: 2.5rem; align-items: center; }
    @media (max-width: 940px) { .brands-head { grid-template-columns: 1fr; } .brands-head .polaroid { display: none; } }
    .brands-head .polaroid { --tilt: 3deg; }
    .brands-head .polaroid img { height: 260px; }

    /* ---------- Hero entrance ---------- */
    .w-rise { display: inline-block; opacity: 0; transform: translateY(0.6em); animation: wRise 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) forwards; }
    @keyframes wRise { to { opacity: 1; transform: translateY(0); } }
    .hero-shake { animation: heroShake 0.4s ease-out 1; }
    @keyframes heroShake {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(1px, 2px); }
      50% { transform: translate(-2px, -1px); }
      75% { transform: translate(1px, -2px); }
    }

    /* ---------- Map pin drop ---------- */
    .map-pin { transform-box: fill-box; transform-origin: center; }
    .pins-prep .map-pin { opacity: 0; }
    .pins-go .map-pin { animation: pinDrop 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) forwards; animation-delay: var(--pin-delay, 0s); }
    @keyframes pinDrop {
      0% { opacity: 0; transform: translateY(-26px) scale(0.4); }
      70% { opacity: 1; transform: translateY(2px) scale(1.08); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    .uk-map-wrap { position: relative; overflow: hidden; }

    /* ---------- Production line ---------- */
    .conveyor {
      margin-top: 3rem; overflow: hidden; padding: 1.1rem 0;
      border-top: 2px dashed rgba(34, 58, 19, 0.22); border-bottom: 2px dashed rgba(34, 58, 19, 0.22);
    }
    .belt-track { display: inline-flex; white-space: nowrap; animation: beltMove 24s linear infinite; }
    .belt-pack {
      flex: none; width: 92px; height: 44px; margin-right: 2.4rem;
      background: #fff; border: 2.5px solid var(--red-deep); border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--red-deep);
      box-shadow: var(--shadow);
    }
    .belt-pack:nth-child(odd) { transform: rotate(-2deg); }
    .belt-pack:nth-child(even) { transform: rotate(2deg); }
    @keyframes beltMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ---------- Stamped section titles ---------- */
    .reveal.visible .section-title { animation: titleStamp 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) both; }
    @keyframes titleStamp {
      0% { opacity: 0; transform: scale(1.35) rotate(-1.5deg); }
      100% { opacity: 1; transform: scale(1) rotate(0deg); }
    }

    @media print {
      #progress, header, .burger, .marquee, .hero-scroll { display: none !important; }
      .reveal { opacity: 1 !important; transform: none !important; }
      .dark, footer { background: #fff !important; color: var(--ink) !important; }
      body, .hero, .model-band, .vision-band, #how, #partners { background: #fff !important; }
      .vision-band .section-sub, .model-band .section-sub { color: var(--ink-soft) !important; }
      .dark .section-sub, .benefit p, .chip, .form-hint, .foot-col a, footer { color: var(--ink-soft) !important; }
      .benefit h3, .form-card h3, .foot-col .foot-head, .foot-brand .logo { color: var(--ink) !important; }
      .faq-a, .faq-a[hidden] { display: block !important; max-height: none !important; }
      .cta-banner { background: #fff !important; color: var(--ink) !important; border: 2px solid var(--ink); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
      .reveal { opacity: 1; transform: none; }
      .marquee-track { animation: none; }
    }

    /* ================= Brand board layer (pastel skin) ================= */
    .stamp, .machine-stamp, .p-stamp, .logo, .m-label, .belt-pack, .slot-logo, .phase-tag, .status-tag {
      font-family: var(--font-display);
      letter-spacing: 0.08em;
    }
    h1, h2, .section-title, .cta-banner h2 {
      font-family: var(--font-display);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.015em;
    }
    .section-title { line-height: 1.04; }
    .hero h1 { font-weight: 600; line-height: 1.05; letter-spacing: 0.01em; max-width: 15ch; }
    .hero h1 .accent {
      color: inherit;
      background: linear-gradient(transparent 58%, var(--sage) 58%);
      padding: 0 0.08em;
    }
    .script { font-family: var(--font-script); text-transform: none; letter-spacing: 0; }
    /* Rumble Brave (signature script) on the non-title accent text so the brand
       voice is visible. Long body paragraphs stay Open Sauce for readability. */
    .polaroid figcaption, .cta-banner p, .pilot-ribbon {
      font-family: var(--font-script);
      letter-spacing: 0;
      text-transform: none;
    }
    .polaroid figcaption { font-size: 1.2rem; }
    .cta-banner p { font-size: 1.3rem; opacity: 1; }
    .pilot-ribbon { font-size: 1.05rem; }

    /* grid-paper motif from the brand board */
    .hero, .bip {
      background-image:
        linear-gradient(rgba(47, 77, 25, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 77, 25, 0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .bip { background-color: var(--white); border-color: rgba(47, 77, 25, 0.3); }

    /* hero overline: sticker, not pill */
    .hero-badge {
      border: 2px solid var(--ink); background: var(--paper-2); color: var(--ink);
      border-radius: 10px; transform: rotate(-2deg);
      font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
    }

    /* logo lockup — official brand asset colours (fixed, exempt from site palette) */
    .logo { color: var(--logo-green); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.12em; font-size: 1.4rem; }
    .logo .logo-mark { display: inline-flex; width: 26px; height: 26px; border: 0; border-radius: 0; transform: none; background: none; }
    .logo .logo-mark svg { width: 100%; height: 100%; }
    .logo .logo-dot { color: var(--logo-orange); margin-left: 0.05em; }
    .foot-brand .logo { color: var(--paper-2); }

    /* icon system */
    .icon { display: inline-block; vertical-align: -0.32em; }
    .loop-emoji, .b-icon { color: var(--red-deep); }
    .loop-emoji .icon, .b-icon .icon { width: 30px; height: 30px; }
    .dark .b-icon { color: var(--sage); }
    .list-card h3 .icon { color: var(--red-deep); }
    .loc-types .chip .icon { width: 17px; height: 17px; margin-right: 4px; color: var(--red-deep); }

    .kicker { color: var(--red-dark); }
    .dark .kicker { color: var(--sage); }
    .model-band .kicker, .vision-band .kicker { color: var(--ink-deep); }

    .btn-outline { color: var(--ink); border-color: var(--ink); }
    .btn-outline:hover { background: var(--ink); color: #fff; }
    .hero-scroll, .hero-scroll a, .stats-source, .stats-source a, .demo-note { color: var(--muted); }
    .loc-types-title { color: var(--ink); }
    .loc-types .chip { border-color: var(--line); color: var(--ink-soft); }
    .p-slot { background: rgba(255, 255, 255, 0.75); border-color: rgba(47, 77, 25, 0.3); }
    .p-slot.founding { background: #fff; }

    .btn-primary::after { content: "\2192"; margin-left: 0.45rem; display: inline-block; transition: transform 0.2s ease; }
    .btn-primary:hover::after { transform: translateX(3px); }

    .marquee-pause { background: transparent; border-color: rgba(47, 77, 25, 0.55); color: var(--ink-deep); width: 44px; height: 44px; font-size: 0.85rem; }

    /* floating hearts */
    .heart-deco { position: absolute; pointer-events: none; color: var(--red); opacity: 0.85; z-index: 0; }
    .heart-deco svg { width: 100%; height: 100%; }
    @media (max-width: 900px) { .heart-deco { display: none; } }

    /* UX: touch targets (44px) */
    .city-chip { min-height: 44px; padding: 0.6rem 1.15rem; }
    .nav-links .btn { padding: 0.62rem 1.25rem; }

    /* Demo devices hold their natural size (the machine sits in a wrapper whose
       width follows it, so min(…,100%) collapsed it — keep fixed widths and let
       them wrap/shrink only on genuinely tiny screens). */
    .machine-stage, .phone { flex: 0 0 auto; max-width: 100%; }
    .demo-card { padding: 2.6rem clamp(1rem, 4vw, 2rem); gap: clamp(2rem, 5vw, 3.5rem); }
    @media (max-width: 340px) { .machine, .phone { width: 100%; } }

    /* UX: readable FAQ measure */
    .faq-a-inner { max-width: 65ch; }

    /* forms: required markers + launch-notify */
    .req { color: var(--red-deep); }
    .notify-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
    .notify-form input[type="email"] {
      font-family: var(--font-body); font-size: 1rem; padding: 0.7rem 1.1rem; border-radius: 999px;
      border: 2px solid var(--ink); min-width: min(280px, 70vw); background: #fff; color: var(--ink);
    }

    /* scrollspy */
    .nav-links a.active:not(.btn) {
      color: var(--red-deep);
      text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px;
    }

    @media print {
      body { background: #fff !important; color: #2F4D19 !important; }
      .section-sub, .hero-sub { color: #3D5A28 !important; }
    }

    /* ================= CMS animation controls (src/_data/motion.json) =================
       The template writes classes onto <body> from the editor's choices, so all
       CSS-driven motion obeys the CMS with no JavaScript involved. With default
       settings no class is present and --motion-scale resolves to 1, so every
       rule below computes to exactly today's values — zero behavioural change.
       prefers-reduced-motion (above) still wins over everything here: its
       !important duration overrides beat these non-!important declarations. */

    /* ---- Speed dial: decorative durations scale with --motion-scale ---- */
    body.m-speed-slower { --motion-scale: 1.6; }
    body.m-speed-faster { --motion-scale: 0.6; }
    .marquee-track { animation-duration: calc(36s * var(--motion-scale, 1)); }
    .belt-track { animation-duration: calc(24s * var(--motion-scale, 1)); }
    .floaty { animation-duration: calc(7s * var(--motion-scale, 1)); }
    .floaty.slow { animation-duration: calc(10s * var(--motion-scale, 1)); }
    .reveal { transition-duration: calc(0.6s * var(--motion-scale, 1)), calc(0.6s * var(--motion-scale, 1)); }
    .w-rise { animation-duration: calc(0.55s * var(--motion-scale, 1)); }
    .stamp.stamp-in { animation-duration: calc(0.55s * var(--motion-scale, 1)); }
    .machine-stamp.show { animation-duration: calc(0.5s * var(--motion-scale, 1)); }
    .pins-go .map-pin { animation-duration: calc(0.5s * var(--motion-scale, 1)); }
    .reveal.visible .section-title { animation-duration: calc(0.5s * var(--motion-scale, 1)); }
    .hero-badge .dot-pulse { animation-duration: calc(2.2s * var(--motion-scale, 1)); }
    .loop-arrow { animation-duration: calc(1.6s * var(--motion-scale, 1)); }
    .m-screen .qr { animation-duration: calc(1.6s * var(--motion-scale, 1)); }
    /* (confettiFall and fillBar stay at fixed speed — their JS cleanup/fallback
       timers are hardcoded, so re-pacing them would cut the effect short.) */

    /* ---- Reveal style: fade (no rise) or off (always visible) ---- */
    body.reveal-fade .reveal, body.reveal-fade .reveal.visible { transform: none; }
    body.reveal-off .reveal { opacity: 1; transform: none; transition: none; }
    body.reveal-off .reveal .section-title, body.reveal-off .reveal.visible .section-title { animation: none; }

    /* ---- Per-effect switches (CSS-only animations stop without JS) ---- */
    body.no-floaty .floaty { animation: none; }
    /* marquee autoplay off: strip stays visible but still; pause button would
       do nothing, so it is hidden */
    body.no-marquee .marquee-track { animation-play-state: paused; }
    body.no-marquee .marquee-pause { display: none; }
    body.no-conveyor .belt-track { animation: none; }
    body.no-progress #progress { display: none; }

    /* ---- Master switch: all decorative motion off. Functional transitions
            (FAQ max-height, button/link hovers, burger) keep working — only
            the decorative animations are killed, mirroring the reduced-motion
            block's effect without breaking JS-coupled behaviour. ---- */
    body.motion-off .floaty,
    body.motion-off .marquee-track,
    body.motion-off .belt-track,
    body.motion-off .hero-badge .dot-pulse,
    body.motion-off .loop-arrow,
    body.motion-off .m-screen .qr,
    body.motion-off .map-pin.live .ring,
    body.motion-off .stamp.stamp-in,
    body.motion-off .machine-stamp.show,
    body.motion-off .hero-shake,
    body.motion-off .pins-go .map-pin,
    body.motion-off .confetti-bit,
    body.motion-off .ad-progress .bar.run,
    body.motion-off .reveal.visible .section-title { animation: none !important; }
    /* w-rise spans start hidden and animate in — if any exist, show them flat */
    body.motion-off .w-rise { animation: none !important; opacity: 1; transform: none; }
    /* pins are never hidden waiting for a drop that will not come */
    body.motion-off .pins-prep .map-pin { opacity: 1; }
    body.motion-off .reveal { opacity: 1; transform: none; transition: none; }
    body.motion-off .marquee-pause { display: none; }

/* CMS theme overrides (src/_data/theme.json). Every value passes through the
   safeColor filter, so only a well-formed hex colour can reach this block —
   anything malformed falls back to the shipped default. The defaults below
   mirror :root in site-styles.css exactly, so with an untouched theme.json
   this block re-states the palette and the rendered site is unchanged.
   The logo colours (--logo-green/sage/orange) are fixed brand artwork and
   are deliberately not themeable. */
:root {
  --paper: #FFF8EC;
  --paper-2: #FFEFDA;
  --band-grass: #EEF4CC;
  --band-lav: #FFECD3;
  --band-rosa: #FBE3C6;
  --peach: #FBD9B3;
  --ink: #2F4D19;
  --ink-deep: #1C3110;
  --ink-soft: #3D5A28;
  --muted: #566B42;
  --red: #FC7130;
  --red-deep: #BB4A12;
  --red-dark: #963A0B;
  --kicker-band: #963A0B;
  --green: #6E8B2E;
  --green-dark: #4C6720;
  --sage: #E2F099;
  /* hairline + shadow derive from the ink colour (defaults: rgba(47, 77, 25, …)) */
  --line: rgba(47, 77, 25, 0.2);
  --shadow: 0 10px 30px rgba(47, 77, 25, 0.12);
}
