
  :root {
    --bg: #0F0F10;
    --bg-2: #18181A;
    --surface: #FAFAF7;
    --surface-2: #EFEDE5;
    --ink: #0F0F10;
    --ink-soft: #2A2A2C;
    --paper: #F5F2EA;
    --accent: #C8FF3E;
    --accent-warm: #FF5B2E;
    --line: rgba(255,255,255,0.10);
    --line-dark: rgba(15,15,16,0.10);
    --radius: 18px;
    --radius-lg: 28px;
    --max: 1440px;
    --body-bg: var(--bg);
    --body-fg: var(--surface);
  }
  html[data-theme="light"] {
    --body-bg: #FAFAF7;
    --body-fg: #0F0F10;
    --bg: #FAFAF7;        /* dark sections become off-white */
    --bg-2: #FFFFFF;
    --line: rgba(15,15,16,0.10);
  }
  * { box-sizing: border-box; }
  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--surface);
    font-family: 'Geist', system-ui, -apple-system, sans-serif;
    font-feature-settings: "ss01", "ss02";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100vw;
  }
  html, body { overflow-x: hidden; overflow-x: clip; }
  body { position: relative; }
  /* Belt-and-braces: any direct section/footer can't push width */
  body > * { max-width: 100vw; overflow-x: clip; }
  img, video, svg { display: block; max-width: 100%; }
  button { font-family: inherit; }
  a { color: inherit; text-decoration: none; }

  ::selection { background: var(--accent); color: var(--ink); }

  .serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; letter-spacing: -0.01em; }
  .mono { font-family: 'Geist Mono', ui-monospace, monospace; }

  /* Marquee */
  @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-track { display: inline-flex; gap: 64px; padding-right: 64px; animation: mq 35s linear infinite; }
  .marquee-wrap { display: flex; overflow: hidden; white-space: nowrap; max-width: 100%; }
  .pause-anim .marquee-track { animation-play-state: paused; }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .pause-anim .reveal { opacity: 1; transform: none; transition: none; }

  /* Pulse dot */
  @keyframes ring { 0%{ box-shadow: 0 0 0 0 rgba(200,255,62,0.7);} 70%{ box-shadow: 0 0 0 14px rgba(200,255,62,0);} 100%{ box-shadow: 0 0 0 0 rgba(200,255,62,0);} }
  .pulse { animation: ring 2.4s infinite; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
    border: 1px solid transparent;
    cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--accent); color: var(--ink); }
  .btn-primary:hover { background: #d8ff66; }
  .btn-ghost { background: transparent; color: var(--surface); border-color: rgba(255,255,255,0.22); }
  .btn-ghost:hover { background: rgba(255,255,255,0.06); }
  .btn-dark { background: var(--ink); color: var(--surface); }
  .btn-dark:hover { background: #1f1f22; }

  .arrow { width: 16px; height: 16px; }

  /* Container */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .container { padding: 0 20px; } }

  /* Section */
  section { position: relative; }
  .light { background: var(--surface); color: var(--ink); }
  .paper { background: var(--paper); color: var(--ink); }
  .dark  { background: var(--bg);     color: var(--surface); }
  .darker { background: #0a0a0b; color: var(--surface); }

  /* ============ ALTERNATING SECTION TONES ============
     Sections opt in via `section-toned` + an explicit tone (`tone-a` / `tone-b`).
     Default flow: A = dark, B = light. Reverse swaps them.
     Stats ticker, Logos and other "pass-through" bands carry no tone class. */
  .section-toned { transition: background 220ms ease, color 220ms ease; }
  body.tone-flow-default .section-toned.tone-a,
  body.tone-flow-reversed .section-toned.tone-b { background: var(--bg);      color: var(--surface); }
  body.tone-flow-default .section-toned.tone-b,
  body.tone-flow-reversed .section-toned.tone-a { background: var(--surface); color: var(--ink); }

  /* Light theme: pin explicit values so accents read on both tones */
  html[data-theme="light"] body.tone-flow-default  .section-toned.tone-a,
  html[data-theme="light"] body.tone-flow-reversed .section-toned.tone-b { background: #0F0F10; color: #FAFAF7; }
  html[data-theme="light"] body.tone-flow-default  .section-toned.tone-b,
  html[data-theme="light"] body.tone-flow-reversed .section-toned.tone-a { background: #FAFAF7; color: #0F0F10; }

  /* ============ LIGHT-SECTION OVERRIDES ============
     Form fields, pill buttons, map card and FAQ borders pick up colors based on
     the SECTION's tone, not the global theme. So whichever tone resolves to a
     light surface gets these contrast-aware overrides. */
  body.tone-flow-default  .section-toned.tone-b .field input,
  body.tone-flow-default  .section-toned.tone-b .field textarea,
  body.tone-flow-default  .section-toned.tone-b .field select,
  body.tone-flow-reversed .section-toned.tone-a .field input,
  body.tone-flow-reversed .section-toned.tone-a .field textarea,
  body.tone-flow-reversed .section-toned.tone-a .field select {
    color: #0F0F10; border-bottom-color: rgba(15,15,16,0.18);
  }
  body.tone-flow-default  .section-toned.tone-b .field select option,
  body.tone-flow-reversed .section-toned.tone-a .field select option { background: #FAFAF7; color: #0F0F10; }
  body.tone-flow-default  .section-toned.tone-b .pill-choice button,
  body.tone-flow-reversed .section-toned.tone-a .pill-choice button {
    color: #0F0F10; border-color: rgba(15,15,16,0.18);
  }
  body.tone-flow-default  .section-toned.tone-b .pill-choice button:hover,
  body.tone-flow-reversed .section-toned.tone-a .pill-choice button:hover { border-color: rgba(15,15,16,0.4); }

  /* Map card */
  body.tone-flow-default  .section-toned.tone-b .map-card,
  body.tone-flow-reversed .section-toned.tone-a .map-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0EEE6 100%);
    border-color: rgba(15,15,16,0.10);
    color: #0F0F10;
  }
  body.tone-flow-default  .section-toned.tone-b .map-card::before,
  body.tone-flow-reversed .section-toned.tone-a .map-card::before {
    background-image:
      linear-gradient(rgba(15,15,16,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,15,16,0.06) 1px, transparent 1px);
  }

  /* FAQ borders read against light surface */
  body.tone-flow-default  .section-toned.tone-b .faq-item,
  body.tone-flow-reversed .section-toned.tone-a .faq-item { border-top-color: rgba(15,15,16,0.12); }
  body.tone-flow-default  .section-toned.tone-b .faq-item:last-child,
  body.tone-flow-reversed .section-toned.tone-a .faq-item:last-child { border-bottom-color: rgba(15,15,16,0.12); }
  body.tone-flow-default  .section-toned.tone-b .faq-toggle,
  body.tone-flow-reversed .section-toned.tone-a .faq-toggle { border-color: rgba(15,15,16,0.18); }

  /* Eyebrow dot opacity reads better on light */
  body.tone-flow-default  .section-toned.tone-b .eyebrow,
  body.tone-flow-reversed .section-toned.tone-a .eyebrow { opacity: 0.7; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.06em;
    text-transform: uppercase; opacity: .8;
  }
  .eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); display: inline-block; }

  /* Headline scale */
  h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; font-weight: 600; }
  .h-display { font-size: clamp(56px, 9vw, 168px); line-height: 0.92; letter-spacing: -0.045em; font-weight: 600; }
  .h-1 { font-size: clamp(40px, 6vw, 96px); line-height: 0.96; letter-spacing: -0.035em; }
  .h-2 { font-size: clamp(32px, 4vw, 64px); line-height: 1; }
  .h-3 { font-size: clamp(22px, 2vw, 30px); line-height: 1.15; font-weight: 500; }
  p { margin: 0; line-height: 1.5; }

  /* Utility */
  .row { display: flex; }
  .col { display: flex; flex-direction: column; }
  .between { justify-content: space-between; }
  .center { align-items: center; }
  .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; } .gap-10 { gap: 40px; } .gap-16 { gap: 64px; }
  .grow { flex: 1; }
  .small { font-size: 13px; opacity: .7; }
  .muted { opacity: .65; }

  /* Hide scrollbar but keep scroll */
  .no-scrollbar::-webkit-scrollbar { display: none; }
  .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

  /* Hero */
  .hero { position: relative; height: 100vh; min-height: 720px; overflow: hidden; max-width: 100%; }
  @media (max-width: 720px) { .hero { min-height: 600px; } }
  .hero video, .hero .hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  }
  /* YouTube cover — iframe sized to fill viewport without letterboxing */
  .yt-cover { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: #000; }
  .yt-frame {
    position: absolute;
    top: 50%; left: 50%;
    /* Oversize so 16:9 video covers any aspect ratio (use vmax to scale up on tall screens) */
    width: 177.78vh;   /* 16/9 of 100vh */
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw; /* 9/16 of 100vw */
    transform: translate(-50%, -50%) scale(1.05);
    border: 0; pointer-events: none;
  }
  .yt-shield { position: absolute; inset: 0; z-index: 1; pointer-events: auto; background: transparent; }
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
      radial-gradient(120% 80% at 70% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.65) 100%),
      linear-gradient(180deg, rgba(15,15,16,0.55) 0%, rgba(15,15,16,0.15) 30%, rgba(15,15,16,0.85) 100%);
  }
  .hero-fallback {
    background:
      radial-gradient(70% 60% at 30% 30%, rgba(200,255,62,0.18), transparent 60%),
      radial-gradient(60% 60% at 80% 70%, rgba(255,91,46,0.18), transparent 60%),
      linear-gradient(180deg, #131316 0%, #0a0a0b 100%);
  }
  .hero-stripes {
    position: absolute; inset: 0; z-index: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px);
  }

  /* Top nav */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 18px 0;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(15,15,16,0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: var(--line);
  }
  /* Tone-aware nav glass: default flow → light glass after scroll (opposite of dark hero).
     Reversed flow → dark glass (matches now-light hero alternation). */
  body.tone-flow-default .nav.scrolled {
    background: rgba(250,250,247,0.78);
    border-bottom-color: rgba(15,15,16,0.10);
    color: #0F0F10;
  }
  body.tone-flow-default .nav.scrolled .nav-links a,
  body.tone-flow-default .nav.scrolled .brand,
  body.tone-flow-default .nav.scrolled .theme-toggle { color: #0F0F10; }
  body.tone-flow-default .nav.scrolled .theme-toggle { border-color: rgba(15,15,16,0.18); }
  body.tone-flow-default .nav.scrolled .lang-toggle { border-color: rgba(15,15,16,0.18); color: #0F0F10; }
  body.tone-flow-default .nav.scrolled .lang-toggle button.active { background: #0F0F10; color: #FAFAF7; }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 20px; }
  .brand-logo { width: 36px; height: 36px; display: block; }
  .brand-logo svg, .brand-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
  .brand-mark {
    width: 28px; height: 28px; border-radius: 8px; background: var(--accent);
    display: grid; place-items: center; color: var(--ink); font-weight: 800; font-size: 14px;
    box-shadow: 0 0 0 4px rgba(200,255,62,0.15);
  }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { font-size: 14px; opacity: .85; transition: opacity .2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .lang-toggle {
    display: inline-flex; padding: 4px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
    font-family: 'Geist Mono', monospace; font-size: 11px;
  }
  .lang-toggle button { background: transparent; border: 0; color: inherit; padding: 6px 10px; border-radius: 999px; cursor: pointer; opacity: .65; }
  .lang-toggle button.active { background: var(--surface); color: var(--ink); opacity: 1; }
  @media (max-width: 880px) {
    .nav-links { display: none; }
  }

  /* Hero content */
  .hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 56px;
  }
  .hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); }
  .hero-meta .label { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-bottom: 6px; }
  .hero-meta .val { font-size: 18px; }
  @media (max-width: 720px) { .hero-meta { grid-template-columns: 1fr 1fr; } }

  .live-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: .04em;
  }
  .live-pill .d { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }

  .scroll-cue {
    position: absolute; left: 32px; bottom: 24px; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    opacity: .8;
  }
  .scroll-cue .line { width: 40px; height: 1px; background: var(--surface); position: relative; overflow: hidden; }
  .scroll-cue .line::after { content: ''; position: absolute; inset: 0 60% 0 0; background: var(--accent); animation: cue 2s infinite ease-in-out; }
  @keyframes cue { 0%{ transform: translateX(-100%);} 50%{ transform: translateX(60%);} 100%{ transform: translateX(160%);} }

  /* Stats ticker */
  .ticker {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 22px 0;
  }
  .ticker .item { display: inline-flex; align-items: baseline; gap: 14px; font-size: clamp(22px, 2.4vw, 36px); letter-spacing: -0.02em; }
  .ticker .item b { color: var(--accent); font-weight: 600; }
  .ticker .sep { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--accent-warm); margin: 0 36px; transform: translateY(-6px); }

  /* Cards */
  .card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
  }
  .card:hover { transform: translateY(-3px); border-color: rgba(200,255,62,0.35); }
  .card.light-card { background: var(--surface); border-color: var(--line-dark); color: var(--ink); }
  .card.paper-card { background: #fff; border-color: var(--line-dark); color: var(--ink); }

  /* Models grid */
  .models {
    display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px;
  }
  @media (max-width: 1080px) { .models { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px)  { .models { grid-template-columns: 1fr; } }

  .model {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-dark);
    background: var(--surface);
    color: var(--ink);
    min-height: 520px;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 28px;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .model:hover { transform: translateY(-4px); }
  .model.dark { background: var(--ink); color: var(--surface); border-color: rgba(255,255,255,0.12); }
  .model.lime { background: var(--accent); color: var(--ink); border-color: transparent; }
  .model .placeholder {
    flex: 1; margin: 18px -28px 0; border-radius: 0;
    background:
      repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px),
      var(--surface-2);
    display: grid; place-items: center;
    font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .7;
    position: relative;
  }
  .model.dark .placeholder {
    background:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 8px, transparent 8px 16px),
      #1c1c1f;
    color: rgba(255,255,255,0.7);
  }
  .model.lime .placeholder {
    background:
      repeating-linear-gradient(45deg, rgba(0,0,0,0.07) 0 8px, transparent 8px 16px),
      #b8eb39;
  }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 10px; border-radius: 999px;
    font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
    background: rgba(0,0,0,0.06); color: inherit; border: 1px solid rgba(0,0,0,0.08);
  }
  .model.dark .tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }

  /* Benefits — old grid styles removed; see "Benefits — editorial split layout" below */

  /* Segment toggle */
  .seg-toggle { display: inline-flex; padding: 6px; border-radius: 999px; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); gap: 4px; flex-wrap: wrap; }
  .seg-toggle button { background: transparent; border: 1px solid transparent; color: inherit; padding: 12px 20px; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .25s; }
  .seg-toggle button:hover:not(.active) { background: rgba(0,0,0,0.04); }
  html[data-theme="light"] .seg-toggle { background: rgba(15,15,16,0.04); }

  /* Products marquee row */
  .product-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  @media (max-width: 1080px) { .product-row { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px)  { .product-row { grid-template-columns: repeat(2, 1fr); } }
  .product {
    aspect-ratio: 1; border-radius: 22px;
    background: #fff; border: 1px solid var(--line-dark);
    padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
    transition: transform .3s ease;
  }
  .product:hover { transform: translateY(-3px); }
  .product .swatch {
    flex: 1; border-radius: 14px; margin-bottom: 12px;
    background:
      repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 6px, transparent 6px 12px),
      var(--surface-2);
    display: grid; place-items: center;
    font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; opacity: .65;
  }
  .product .label { font-size: 14px; font-weight: 500; color: var(--ink); }
  .product .price { font-family: 'Geist Mono', monospace; font-size: 11px; opacity: .55; }

  /* Logos */
  .logos {
    display: grid; grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  }
  @media (max-width: 980px) { .logos { grid-template-columns: repeat(3, 1fr); } }
  .logo-cell {
    aspect-ratio: 2.4 / 1;
    display: grid; place-items: center;
    border-right: 1px solid var(--line-dark);
    transition: background .3s ease;
    font-family: 'Geist Mono', monospace; font-size: 13px; letter-spacing: .04em;
    color: var(--ink); opacity: .7;
  }
  .logo-cell:hover { background: rgba(0,0,0,0.03); opacity: 1; }
  .logo-cell:nth-child(6n) { border-right: 0; }
  @media (max-width: 980px) { .logo-cell:nth-child(6n) { border-right: 1px solid var(--line-dark); } .logo-cell:nth-child(3n) { border-right: 0; } }

  /* Google Reviews */
  .google-summary {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
  }
  .google-summary-g { flex-shrink: 0; }
  .google-summary-text { display: flex; flex-direction: column; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 1080px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px)  { .reviews-grid { grid-template-columns: 1fr; } }
  .review-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    display: flex; flex-direction: column; gap: 6px;
    transition: border-color .2s ease, transform .2s ease;
  }
  .review-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
  html[data-theme="light"] .review-card:hover { border-color: rgba(15,15,16,0.22); }
  .review-head { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; font-weight: 600; font-size: 14px;
    flex-shrink: 0;
  }
  .review-author { display: flex; flex-direction: column; min-width: 0; flex: 1; }
  .review-name { font-weight: 600; font-size: 14px; }
  .review-meta { opacity: 0.6; }
  .review-google { flex-shrink: 0; opacity: 0.85; }
  .review-body {
    margin: 12px 0 4px; font-size: 14.5px; line-height: 1.55;
    opacity: 0.86;
  }
  .review-foot { opacity: 0.55; padding-top: 6px; border-top: 1px solid var(--line); margin-top: 8px; }

  /* Footer Google Maps */
  .footer-map {
    position: relative;
    width: 100%;
    height: 380px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .footer-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.3) contrast(0.95);
  }
  html[data-theme="dark"] body.tone-flow-default .footer-map iframe { filter: grayscale(0.6) contrast(0.85) invert(0.92) hue-rotate(180deg); }
  .footer-map-card {
    position: absolute;
    top: 50%; left: 6%;
    transform: translateY(-50%);
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.35);
  }
  @media (max-width: 720px) {
    .footer-map { height: auto; display: flex; flex-direction: column; }
    .footer-map iframe { height: 280px; }
    .footer-map-card { position: static; transform: none; margin: 0; border-radius: 0; border-left: 0; border-right: 0; min-width: 0; max-width: none; }
  }

  /* Testimonials (legacy) */
  .testi-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
  @media (max-width: 1080px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px)  { .testi-grid { grid-template-columns: 1fr; } }
  .testi {
    border-radius: var(--radius-lg);
    background: var(--paper);
    padding: 28px; color: var(--ink);
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 320px;
    border: 1px solid var(--line-dark);
  }
  .testi.dark { background: var(--ink); color: var(--surface); border-color: rgba(255,255,255,0.10); }
  .testi.lime { background: var(--accent); color: var(--ink); border-color: transparent; }
  .testi q { display: block; font-family: 'Instrument Serif', serif; font-size: 28px; line-height: 1.2; letter-spacing: -0.01em; }
  .testi q::before, .testi q::after { content: ''; }
  .avatar { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, #FF5B2E, #C8FF3E); display: inline-block; }
  .testi.dark .avatar { background: linear-gradient(135deg, #C8FF3E, #FF5B2E); }

  /* FAQ */
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
  .faq-q h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; line-height: 1.25; }
  .faq-toggle { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: background .2s, transform .3s; }
  .faq-item.open .faq-toggle { background: var(--accent); color: var(--ink); transform: rotate(45deg); border-color: var(--accent); }
  .faq-a {
    overflow: hidden; max-height: 0;
    transition: max-height .4s ease, margin-top .4s ease, opacity .3s ease;
    opacity: 0;
  }
  .faq-item.open .faq-a { max-height: 800px; margin-top: 16px; opacity: 0.85; }
  .faq-a p { max-width: 680px; line-height: 1.6; }
  @media (max-width: 720px) {
    .faq-grid { display: block !important; }
    .faq-grid > :first-child { margin-bottom: 32px; }
    .faq-item { padding: 18px 0; }
    .faq-q { gap: 16px; align-items: flex-start; }
    .faq-q h3 { font-size: 17px; line-height: 1.35; padding-top: 4px; }
    .faq-toggle { width: 32px; height: 32px; }
    .faq-item.open .faq-a { max-height: 1200px; margin-top: 12px; opacity: 0.9; }
    .faq-a p { font-size: 15px; line-height: 1.55; }
  }

  /* Contact */
  .contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
  @media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
  .field input, .field textarea, .field select {
    background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.18);
    color: var(--surface); padding: 12px 0; font-size: 16px; font-family: inherit;
    outline: none; transition: border-color .2s ease;
  }
  .field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
  .field textarea { resize: vertical; min-height: 96px; }
  .field select option { background: var(--bg); }
  .pill-choice { display: flex; flex-wrap: wrap; gap: 8px; }
  .pill-choice button {
    background: transparent; border: 1px solid rgba(255,255,255,0.18);
    color: var(--surface); padding: 10px 14px; border-radius: 999px;
    font-family: inherit; font-size: 13px; cursor: pointer; transition: all .2s ease;
  }
  .pill-choice button:hover { border-color: rgba(255,255,255,0.4); }
  .pill-choice button.active { background: var(--accent); color: var(--ink); border-color: var(--accent); }

  /* Footer */
  footer { background: var(--bg); color: var(--surface); border-top: 1px solid var(--line); padding: 0 0 32px; transition: background 220ms ease, color 220ms ease; }
  body.tone-flow-reversed footer { background: var(--surface); color: var(--ink); }
  /* Light theme: pin explicit values */
  html[data-theme="light"] body.tone-flow-default footer  { background: #0F0F10; color: #FAFAF7; }
  html[data-theme="light"] body.tone-flow-reversed footer { background: #FAFAF7; color: #0F0F10; }
  .footer-map { margin-bottom: 96px; }
  footer > .container { padding-top: 16px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 720px) {
    .footer-map { margin-bottom: 56px; }
    footer > .container { padding-top: 48px; }
  }
  .footer-col h4 { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .55; margin-bottom: 16px; font-weight: 500; }
  .footer-col a { display: block; padding: 6px 0; opacity: .8; font-size: 15px; }
  .footer-col a:hover { opacity: 1; color: var(--accent); }
  .footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal-links a { opacity: 0.55; transition: opacity .15s ease, color .15s ease; }
  .footer-legal-links a:hover { opacity: 1; color: var(--accent); }
  .big-wordmark {
    /* "VENDINGO" = 8 glyphs. Target ~96vw single-line. */
    font-size: clamp(64px, 19vw, 320px);
    letter-spacing: -0.06em;
    line-height: 0.9;
    font-weight: 700;
    /* Default (dark footer) — deep tonal gradient */
    background: linear-gradient(180deg, #1f1f22 0%, #0a0a0b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    user-select: none;
    margin-top: 80px;
    padding: 0 24px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
  }
  /* Reversed flow → footer is light, give wordmark a soft warm-gray tint */
  body.tone-flow-reversed .big-wordmark {
    background: linear-gradient(180deg, #E8E4D8 0%, #FAFAF7 100%);
    -webkit-background-clip: text; background-clip: text;
  }

  /* Decorative model SVG (placeholder vending machine) */
  .machine-svg { width: 100%; height: 100%; }

  /* Pulse on accent dots */
  .accent-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--accent); display: inline-block; }

  /* Section paddings */
  .pad { padding: 120px 0; }
  .pad-sm { padding: 80px 0; }
  @media (max-width: 720px) { .pad { padding: 80px 0; } .pad-sm { padding: 56px 0; } }

  /* Number stat blocks */
  .stat-block { display: flex; flex-direction: column; gap: 8px; }
  .stat-num { font-size: clamp(56px, 8vw, 128px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.9; }
  .stat-num .acc { color: var(--accent); }
  .stat-label { font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; max-width: 220px; }

  /* Bento for "how it works" lite */
  .bento { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
  @media (max-width: 980px) { .bento { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px)  { .bento { grid-template-columns: 1fr; } }

  /* Map-ish */
  .map-card {
    background: linear-gradient(135deg, #0f0f10 0%, #18181a 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 28px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
  }
  .map-card::before {
    content: ''; position: absolute; inset: 0;
    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: 32px 32px;
    mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 75%);
  }

  /* Print/SVG vending machine styling */
  .vm-icon { width: 22px; height: 22px; }

  /* ============ COOKIE BAR + MODAL ============ */
  .cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
    background: rgba(15,15,16,0.96); color: #FAFAF7;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 24px;
    animation: cookieBarUp 320ms cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  }
  @keyframes cookieBarUp { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }
  .cookie-bar-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  }
  @media (max-width: 880px) {
    .cookie-bar-inner { grid-template-columns: 1fr; gap: 14px; }
  }
  .cookie-bar-text { min-width: 0; }
  .cookie-bar-title { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; letter-spacing: -0.01em; }
  .cookie-bar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .cookie-bar-lead { font-size: 13px; line-height: 1.5; opacity: 0.78; max-width: 720px; margin: 0; }
  .cookie-link { color: var(--accent); text-decoration: none; white-space: nowrap; }
  .cookie-link:hover { text-decoration: underline; }
  .cookie-bar-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .cookie-btn {
    font: inherit; font-size: 13px; font-weight: 500;
    padding: 10px 16px; border-radius: 999px; cursor: pointer;
    border: 1px solid transparent; transition: all .18s ease;
    white-space: nowrap;
  }
  .cookie-btn-ghost { background: transparent; color: #FAFAF7; border-color: rgba(255,255,255,0.18); }
  .cookie-btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
  .cookie-btn-primary { background: var(--accent); color: #0F0F10; }
  .cookie-btn-primary:hover { filter: brightness(1.08); }

  /* Modal */
  .cookie-modal-overlay {
    position: fixed; inset: 0; z-index: 9100;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: grid; place-items: center; padding: 24px;
    animation: cookieFadeIn 200ms ease;
  }
  @keyframes cookieFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .cookie-modal {
    background: #18181A; color: #FAFAF7;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    width: 100%; max-width: 560px;
    padding: 28px;
    max-height: 85vh; overflow-y: auto;
    animation: cookieModalIn 280ms cubic-bezier(.2,.7,.2,1);
  }
  @keyframes cookieModalIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
  .cookie-modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
  .cookie-modal-title { font-size: 22px; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
  .cookie-close {
    background: transparent; border: 0; color: inherit; cursor: pointer; padding: 6px;
    border-radius: 8px; opacity: 0.65; transition: opacity .15s ease, background .15s ease;
  }
  .cookie-close:hover { opacity: 1; background: rgba(255,255,255,0.06); }
  .cookie-modal-lead { font-size: 13px; line-height: 1.55; opacity: 0.7; margin: 0 0 20px; }

  .cookie-cats { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,0.08); }
  .cookie-cat {
    display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
  }
  .cookie-cat.locked { cursor: default; }
  .cookie-cat-text { min-width: 0; }
  .cookie-cat-name { font-weight: 500; font-size: 14px; display: flex; align-items: center; gap: 10px; }
  .cookie-required {
    font-size: 10px; padding: 2px 8px; border-radius: 999px;
    background: rgba(255,255,255,0.08); opacity: 0.7;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .cookie-cat-desc { font-size: 12px; opacity: 0.6; margin-top: 4px; line-height: 1.5; }

  /* iOS-style switch */
  .cookie-switch {
    position: relative; width: 40px; height: 22px; border-radius: 999px;
    background: rgba(255,255,255,0.14);
    transition: background .2s ease;
    flex-shrink: 0; display: inline-block;
  }
  .cookie-switch.locked { opacity: 0.55; }
  .cookie-switch input { position: absolute; inset: 0; opacity: 0; cursor: inherit; }
  .cookie-switch-knob {
    position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
    background: #FAFAF7; border-radius: 50%;
    transition: transform .2s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  .cookie-switch.on .cookie-switch-knob { transform: translateX(18px); }

  .cookie-modal-actions {
    display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; justify-content: flex-end;
  }

  /* ============ BENEFITS — editorial split layout ============ */
  .bn-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start;
  }
  @media (max-width: 1080px) {
    .bn-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  .bn-rail { position: sticky; top: 96px; }
  @media (max-width: 1080px) { .bn-rail { position: static; top: auto; } }
  .bn-title { font-size: clamp(40px, 4.4vw, 72px); line-height: 0.96; letter-spacing: -0.025em; }
  .bn-rail-meta { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 20px; }
  .bn-rail-meta-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 12px; border-bottom: 1px dashed var(--line); }
  .bn-rail-meta-row:last-child { border-bottom: 0; }
  .bn-rail-key { opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em; }
  .bn-rail-val { opacity: 0.95; }
  .bn-rail-foot { margin-top: 24px; }
  .bn-rail-line { width: 56px; height: 2px; }

  .bn-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
  .bn-row {
    display: grid;
    grid-template-columns: 64px 1fr 160px;
    gap: 32px;
    align-items: baseline;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: padding-left 320ms cubic-bezier(.2,.7,.2,1);
  }
  .bn-row::before {
    content: ''; position: absolute; left: -8px; top: 0; bottom: 0; width: 2px;
    background: var(--accent); transform: scaleY(0); transform-origin: top;
    transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  }
  .bn-row:hover { padding-left: 16px; }
  .bn-row:hover::before { transform: scaleY(1); }
  .bn-row:hover .bn-metric-val { transform: translateX(-4px); }

  .bn-num {
    font-size: 13px; opacity: 0.45; letter-spacing: 0.08em;
    padding-top: 6px; align-self: start;
  }
  .bn-body { min-width: 0; }
  .bn-h { font-size: clamp(22px, 2.1vw, 30px); line-height: 1.15; letter-spacing: -0.015em; font-weight: 600; }
  .bn-p { margin-top: 10px; opacity: 0.7; font-size: 15px; line-height: 1.55; max-width: 56ch; }

  .bn-metric { text-align: right; align-self: start; padding-top: 4px; }
  .bn-metric-val {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: clamp(28px, 2.6vw, 40px);
    font-weight: 600; line-height: 1; letter-spacing: -0.02em;
    transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  }
  .bn-metric-lbl { font-size: 11px; margin-top: 8px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em; }

  @media (max-width: 720px) {
    .bn-row { grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 0; }
    .bn-metric { grid-column: 2; text-align: left; padding-top: 12px; }
    .bn-metric-val { font-size: 24px; }
  }

  /* ============ LIGHT THEME OVERRIDES ============ */
  html[data-theme="light"] body { background: #FAFAF7; color: #0F0F10; }
  html[data-theme="light"] .dark,
  html[data-theme="light"] .darker { background: #FAFAF7; color: #0F0F10; }
  html[data-theme="light"] .darker { background: #F0EEE6; }
  html[data-theme="light"] .light { background: #FFFFFF; color: #0F0F10; }
  html[data-theme="light"] .paper { background: #F5F2EA; color: #0F0F10; }

  /* Nav */
  html[data-theme="light"] .nav.scrolled { background: rgba(250,250,247,0.78); border-bottom-color: rgba(15,15,16,0.08); }
  html[data-theme="light"] .nav-links a { color: #0F0F10; }
  html[data-theme="light"] .lang-toggle { border-color: rgba(15,15,16,0.18); color: #0F0F10; }
  html[data-theme="light"] .lang-toggle button.active { background: #0F0F10; color: #FAFAF7; }

  /* Hero overlay reads on light too — keep gradient subtle */
  html[data-theme="light"] .hero { color: #fff; } /* hero stays dark; video bg */

  /* Buttons */
  html[data-theme="light"] .btn-ghost { color: #0F0F10; border-color: rgba(15,15,16,0.22); }
  html[data-theme="light"] .btn-ghost:hover { background: rgba(15,15,16,0.05); }
  html[data-theme="light"] .btn-dark { background: #0F0F10; color: #FAFAF7; }

  /* Ticker */
  html[data-theme="light"] .ticker { background: #FAFAF7; border-color: rgba(15,15,16,0.12); }

  /* Cards / models */
  html[data-theme="light"] .card { background: #FFFFFF; border-color: rgba(15,15,16,0.08); color: #0F0F10; }
  html[data-theme="light"] .model.dark { background: #0F0F10; color: #FAFAF7; }

  /* Benefits grid — removed (editorial split layout used now) */

  /* Testimonials background-section */
  html[data-theme="light"] .testi.dark { background: #0F0F10; color: #FAFAF7; }

  /* FAQ */
  html[data-theme="light"] .faq-item { border-top-color: rgba(15,15,16,0.12); }
  html[data-theme="light"] .faq-item:last-child { border-bottom-color: rgba(15,15,16,0.12); }
  html[data-theme="light"] .faq-toggle { border-color: rgba(15,15,16,0.18); }

  /* Form fields on (now-light) "dark" section */
  html[data-theme="light"] .field input,
  html[data-theme="light"] .field textarea,
  html[data-theme="light"] .field select {
    color: #0F0F10; border-bottom-color: rgba(15,15,16,0.18);
  }
  html[data-theme="light"] .field select option { background: #FAFAF7; color: #0F0F10; }
  html[data-theme="light"] .pill-choice button { color: #0F0F10; border-color: rgba(15,15,16,0.18); }
  html[data-theme="light"] .pill-choice button:hover { border-color: rgba(15,15,16,0.4); }

  /* Map card */
  html[data-theme="light"] .map-card { background: linear-gradient(135deg, #FFFFFF 0%, #F0EEE6 100%); border-color: rgba(15,15,16,0.10); color: #0F0F10; }
  html[data-theme="light"] .map-card::before {
    background-image:
      linear-gradient(rgba(15,15,16,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,15,16,0.06) 1px, transparent 1px);
  }

  /* Footer */
  html[data-theme="light"] footer { background: #FAFAF7; border-top-color: rgba(15,15,16,0.10); color: #0F0F10; }
  html[data-theme="light"] footer .footer-col a { color: #0F0F10; }
  html[data-theme="light"] .big-wordmark {
    background: linear-gradient(180deg, #E8E4D8 0%, #FAFAF7 100%);
    -webkit-background-clip: text; background-clip: text;
  }

  /* Live pill (hero only — stays dark, leave alone) */

  /* Logos cell — keep dark on dark text since .light section is white in light mode */
  html[data-theme="light"] .logo-cell { color: #0F0F10; }

  /* Theme toggle button in nav */
  .theme-toggle {
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--surface);
    cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .theme-toggle:hover { background: rgba(255,255,255,0.06); transform: rotate(15deg); }
  html[data-theme="light"] .theme-toggle { border-color: rgba(15,15,16,0.18); color: #0F0F10; }
  html[data-theme="light"] .theme-toggle:hover { background: rgba(15,15,16,0.05); }

  /* ===== Social section ===== */
  .social-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-width: 380px; }
  @media (min-width: 1080px) { .social-platforms { grid-template-columns: 1fr 1fr 1fr; min-width: 540px; } }
  @media (max-width: 720px) { .social-platforms { min-width: 0; grid-template-columns: 1fr; width: 100%; } }
  .social-plat {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-2);
    transition: border-color .25s, transform .25s, background .25s;
    color: inherit;
  }
  .social-plat:hover { border-color: var(--accent); transform: translateY(-2px); }
  .social-plat-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.06); flex-shrink: 0; }
  html[data-theme="light"] .social-plat-icon { background: rgba(15,15,16,0.06); }
  .social-plat > div { flex: 1; min-width: 0; }
  .social-plat-name { font-size: 14px; font-weight: 500; }
  .social-plat-meta { font-size: 11px; opacity: .6; letter-spacing: .04em; margin-top: 2px; }
  .social-plat-arrow { opacity: .5; transition: opacity .25s, transform .25s; }
  .social-plat:hover .social-plat-arrow { opacity: 1; transform: translate(2px, -2px); color: var(--accent); }

  .social-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px;
    gap: 16px;
  }
  @media (max-width: 1080px) { .social-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; } }
  @media (max-width: 720px)  { .social-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
  .social-tile { position: relative; border-radius: 22px; overflow: hidden; display: block; transition: transform .35s; }
  .social-tile:hover { transform: translateY(-4px); }
  .social-tile.tall { grid-row: span 2; }
  .social-tile.wide { grid-column: span 2; }
  @media (max-width: 720px) { .social-tile.wide, .social-tile.tall { grid-column: span 1; grid-row: span 1; } }
  .social-tile-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .social-tile:hover .social-tile-bg { transform: scale(1.04); }
  .social-tile-overlay {
    position: relative; flex: 1;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.78) 100%);
    color: #fff;
    display: flex; flex-direction: column;
  }
  .social-tile-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 9px; border-radius: 999px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
    font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  }
  .social-tile-live {
    padding: 5px 9px; border-radius: 999px;
    background: var(--accent-warm); color: #fff;
    font-size: 10px; letter-spacing: .08em;
  }
  .social-tile-caption {
    font-size: 14px; line-height: 1.35; max-width: 92%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  }
  .social-tile.tt .social-tile-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.95) 0 22px, rgba(0,0,0,0) 23px);
    opacity: .85;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, transparent 0 18px, black 24px);
            mask-image: radial-gradient(circle at 50% 45%, transparent 0 18px, black 24px);
    pointer-events: none;
  }
  /* TikTok play triangle */
  .social-tile.tt .social-tile-bg::before {
    content: ''; position: absolute; left: 50%; top: 45%;
    transform: translate(-40%, -50%);
    border-style: solid; border-width: 9px 0 9px 14px;
    border-color: transparent transparent transparent #0F0F10;
    z-index: 1;
  }
  .social-tile.yt .social-tile-bg::after {
    content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 40px; border-radius: 10px;
    background: rgba(255,40,40,0.92);
  }
  .social-tile.yt .social-tile-bg::before {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform: translate(-30%, -50%); z-index: 1;
    border-style: solid; border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
  }

  .social-cta {
    margin-top: 64px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    flex-wrap: wrap;
  }
  html[data-theme="light"] .social-cta { background: #FFFFFF; border-color: rgba(15,15,16,0.08); }

  /* ===== MOBILE: nav above hero, content below video ===== */
  @media (max-width: 720px) {
    /* Nav: static at top (above video), becomes sticky on scroll */
    .nav { position: sticky; top: 0; padding: 12px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
    .nav.scrolled { background: rgba(15,15,16,0.92); }
    html[data-theme="light"] .nav { background: #FAFAF7; }
    html[data-theme="light"] .nav.scrolled { background: rgba(250,250,247,0.95); }

    /* Hero: video-only block, shorter, content lives below */
    .hero { height: 56vh; min-height: 360px; max-height: 500px; }
    .hero-content {
      position: relative;
      padding-bottom: 0;
      justify-content: flex-end;
    }
    /* Hide overlay text/CTA inside the video on mobile */
    .hero-grid,
    .hero .hero-meta,
    .hero-content > div:first-child { display: none; }
    /* Keep the live-pill visible as a corner badge */
    .hero-content .live-pill-mobile { display: inline-flex !important; position: absolute; top: 16px; left: 20px; }
    /* Soften the heavy gradient overlay since text moved out */
    .hero::before {
      background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
    }

    /* Mobile hero copy block (rendered below video) */
    .hero-copy-mobile { display: block !important; padding: 32px 20px 48px; background: var(--bg); color: var(--surface); }
    html[data-theme="light"] .hero-copy-mobile { background: #FAFAF7; color: #0F0F10; }
    .hero-copy-mobile .h-display { font-size: clamp(44px, 11vw, 72px); line-height: 0.95; }
    .hero-copy-mobile .lead { font-size: 16px; line-height: 1.5; opacity: .8; margin-top: 20px; }
    .hero-copy-mobile .ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .hero-copy-mobile .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
    .hero-copy-mobile .meta .label { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin-bottom: 4px; }
    .hero-copy-mobile .meta .val { font-size: 14px; }
    .scroll-cue { display: none; }
  }
  /* Hide mobile copy block on desktop */
  .hero-copy-mobile { display: none; }
  .live-pill-mobile { display: none; }
  .noise::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
    opacity: .04; mix-blend-mode: overlay;
  }
