/* ═══════════════════════════════════════════════════════════════
   SMARTBOX AMENITIES — cinematic site styles
   Fonts: Plus Jakarta Sans (display) · Inter (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-950: #05080f;
  --bg-900: #0a1628;
  --surface: #0e1b30;
  --surface-2: #13233d;
  --brand: #4E8FE0;      /* logo blue (bright, for dark bg) */
  --brand-deep: #2358AD;  /* logo blue (deep) */
  --chrome: #D9DEE8;      /* logo ring silver */
  --ink: #f4f6fb;
  --mut: #94a3b8;
  --line: rgba(148, 163, 184, 0.14);
  --font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --r-lg: 26px;
  --r-md: 16px;
  --container: 1200px;
  --nav-h: 76px;
}

@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--bg-950);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-950); }
::-webkit-scrollbar-thumb { background: #22314d; border-radius: 8px; border: 3px solid var(--bg-950); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-deep); }

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

/* skip-link — visible only on keyboard focus (a11y) */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 12000;
  padding: 10px 18px; border-radius: 10px;
  background: var(--brand); color: #fff; font-weight: 600; font-size: 14px;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}
.skip-link:focus-visible { transform: none; outline: 2px solid #fff; }

/* remove the 300ms tap delay + smoother touch on interactive elements */
a, button, input, .faq-q, [data-tilt], .space-card, .fleet-card { touch-action: manipulation; }

/* ── Film grain ────────────────────────────────────────────── */
body::after {
  content: "";
  position: fixed; inset: -60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 240px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9500;
  animation: grain 1.1s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-2%, 1.4%); }
  100% { transform: translate(1.6%, -1%); }
}

/* ── Type & shared bits ────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.h2 em, .hero-title em, .cta-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--brand);
  padding-right: 0.02em; /* italic terminals overhang the line box */
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; padding: 0 24px; }
.section-sub { color: var(--mut); font-size: 17px; margin-top: 20px; max-width: 620px; margin-inline: auto; }
.muted-link { color: var(--mut); text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s; }
.muted-link:hover { color: var(--brand); }
.center { text-align: center; }

section { position: relative; padding: clamp(90px, 12vh, 150px) 24px; scroll-margin-top: 70px; }

/* form success burst */
.spark {
  position: fixed; z-index: 9700;
  width: 7px; height: 7px; border-radius: 50%;
  pointer-events: none;
  animation: spark-fly 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes spark-fly {
  to { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* word-split reveal */
.wmask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.wmask .w {
  display: inline-block;
  transform: translateY(118%) rotate(5deg);
  transform-origin: left bottom;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--wd, 0s);
}
.in-view .wmask .w, .in-view.wmask .w { transform: translateY(0) rotate(0); }

/* generic reveals */
[data-reveal] { opacity: 0; transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--rd, 0s); }
[data-reveal="up"]   { transform: translateY(44px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal="clip"] { clip-path: inset(0 0 100% 0 round var(--r-lg)); transform: translateY(24px); opacity: 1; }
[data-reveal].in-view { opacity: 1; transform: none; clip-path: inset(0 0 0% 0 round var(--r-lg)); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  --mx: 0px; --my: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translate(var(--mx), var(--my));
  transition: box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 4px 24px rgba(78, 143, 224, 0.18);
}
.btn-primary::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { box-shadow: 0 8px 42px rgba(78, 143, 224, 0.4); }
.btn .btn-arrow { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-submit.loading .btn-label { animation: pulse-label 0.9s ease infinite; }
@keyframes pulse-label { 50% { opacity: 0.45; } }
.btn-submit.success {
  background: linear-gradient(135deg, #34d399, #059669);
  color: #04120c;
  box-shadow: 0 8px 42px rgba(52, 211, 153, 0.35);
}

/* ── Preloader ─────────────────────────────────────────────── */
.preloader { position: fixed; inset: 0; z-index: 11000; }
.preloader-door {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  background: linear-gradient(180deg, #060a13, #04070d);
  transition: transform 1.05s cubic-bezier(0.77, 0, 0.18, 1) 0.2s;
}
.preloader-door.left  { left: 0; }
.preloader-door.right { right: 0; }
.preloader.done .preloader-door.left  { transform: translateX(-101%); }
.preloader.done .preloader-door.right { transform: translateX(101%); }
.preloader-core {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center; justify-items: center; gap: 22px;
  transition: opacity 0.4s ease;
}
.preloader.done .preloader-core { opacity: 0; }
/* logo assembly: SMARTBOX letters → AMENITIES + lines → silver ring draws counterclockwise */
.preloader-badge {
  position: relative;
  width: min(400px, 84vw);
  aspect-ratio: 1;
  display: grid; place-content: center; justify-items: center; gap: 12px;
}
.preloader-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(90deg) scaleX(-1); }
.preloader-ring circle {
  fill: none;
  stroke: url(#preRingGrad);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 7px rgba(78, 143, 224, 0.55));
  animation: pre-ring 1.9s cubic-bezier(0.45, 0, 0.25, 1) 1.7s forwards;
}
@keyframes pre-ring { to { stroke-dashoffset: 0; } }
/* comet spark riding the tip of the ring while it draws (same clock as pre-ring) */
.preloader-spark { position: absolute; inset: 0; opacity: 0; pointer-events: none;
  animation: pre-spark-orbit 1.9s cubic-bezier(0.45, 0, 0.25, 1) 1.7s forwards; }
@keyframes pre-spark-orbit {
  0%   { transform: rotate(0deg); opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: rotate(-360deg); opacity: 0; }
}
.preloader-spark i {
  position: absolute; left: 50%; top: 2%;
  width: 10px; height: 10px; margin: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #cfe0f6 40%, rgba(78, 143, 224, 0) 72%);
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.85), 0 0 24px 7px rgba(78, 143, 224, 0.65);
}
.preloader-spark b {
  position: absolute; left: 50%; top: 2%;
  width: 3px; height: 3px; margin: -1.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(140, 185, 245, 0.9);
  opacity: 0;
}
.preloader-spark b:nth-child(2) { --fx: -15px; --fy: -9px;  animation: pre-fleck 0.42s linear 1.7s  infinite; }
.preloader-spark b:nth-child(3) { --fx: 13px;  --fy: -14px; animation: pre-fleck 0.55s linear 1.85s infinite; }
.preloader-spark b:nth-child(4) { --fx: -6px;  --fy: -17px; animation: pre-fleck 0.48s linear 1.98s infinite; }
@keyframes pre-fleck {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--fx), var(--fy)) scale(0.4); }
}
@media (prefers-reduced-motion: reduce) { .preloader-spark { display: none; } }
.preloader-word { font-family: var(--font-display); font-size: clamp(1.9rem, 6vw, 3.1rem); font-weight: 800; letter-spacing: 0.06em; overflow: hidden; display: flex; }
.preloader-word span { display: inline-block; transform: translateY(120%); animation: pre-letter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--i, 0) * 60ms + 150ms); }
.preloader-word span.accent { color: var(--brand); }
@keyframes pre-letter { to { transform: translateY(0); } }
.preloader-amenities {
  display: flex; align-items: center; gap: 13px;
  opacity: 0; transform: translateY(8px);
  animation: pre-fade 0.7s ease 1.05s forwards;
}
.preloader-amenities i { width: 32px; height: 2px; background: #96A2B4; border-radius: 1px; }
.preloader-amenities span {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--brand);
}
@keyframes pre-fade { to { opacity: 1; transform: none; } }
.preloader-bar { width: min(300px, 60vw); height: 2px; background: rgba(148, 163, 184, 0.18); border-radius: 2px; overflow: hidden; }
.preloader-bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand), var(--brand-deep)); transition: width 0.25s ease; }
.preloader-count { font-size: 13px; letter-spacing: 0.3em; color: var(--mut); font-variant-numeric: tabular-nums; }
.preloader.gone { display: none; }

/* ── Cursor ────────────────────────────────────────────────── */
/* z 13000: must float above the lead modal (10500) and preloader (11000) — native cursor is hidden site-wide */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 13000; display: none; }
html.has-cursor .cursor-dot, html.has-cursor .cursor-ring { display: block; }
html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor input, html.has-cursor [data-tilt] { cursor: none; }
.cursor-dot {
  /* a small rotating product shot rides as the pointer (see main.js) */
  width: auto; height: auto;
  max-width: 42px; max-height: 42px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}
.cursor-ring {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(78, 143, 224, 0.55);
  transform: translate(-50%, -50%);
  display: none; place-items: center;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
html.has-cursor .cursor-ring { display: grid; }
.cursor-ring span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; opacity: 0; transition: opacity 0.25s; white-space: nowrap;
}
.cursor-ring.hovering { width: 64px; height: 64px; border-color: var(--brand); background: rgba(78, 143, 224, 0.1); }
.cursor-ring.labeled { width: 92px; height: 92px; background: rgba(78, 143, 224, 0.92); border-color: transparent; }
.cursor-ring.labeled span { opacity: 1; }

/* ── Scroll progress ───────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9600;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  transform-origin: left;
  transform: scaleX(0);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 34px;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.45s ease, backdrop-filter 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 8, 15, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-110%); }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: #EDF1F7; }
.nav-badge { flex: none; width: 52px; height: 52px; }
.nav-logo b { color: var(--brand); font-weight: 800; }
.nav-logo em { font-style: normal; font-weight: 600; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: #9fb0c8; margin-left: 9px; }
.footer-badge { display: block; width: fit-content; margin-bottom: 14px; }
.footer-badge svg { filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45)); }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--mut); position: relative; transition: color 0.25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 100%;
  background: var(--brand); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 22px; font-size: 14px; }
.nav-burger { display: none; width: 40px; height: 40px; position: relative; z-index: 960; }
.nav-burger i { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink); transition: transform 0.35s, top 0.35s; }
.nav-burger i:nth-child(1) { top: 15px; }
.nav-burger i:nth-child(2) { top: 24px; }
.nav-burger.open i:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open i:nth-child(2) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 880;
  background: rgba(5, 8, 15, 0.96);
  backdrop-filter: blur(20px);
  display: grid; place-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 8px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 700;
  padding: 8px 20px; opacity: 0; transform: translateY(26px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open a { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 70ms + 100ms); }
.mobile-menu .mm-cta { color: var(--brand); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 90px;
  overflow: hidden;
}
.cinema-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.5; }
.hero.has-video .cinema-canvas { opacity: 0.6; mix-blend-mode: screen; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 10%, transparent 40%, rgba(5, 8, 15, 0.75) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, 0.45), transparent 30%, transparent 70%, var(--bg-950) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  text-align: left;
}
.hero-copy { max-width: 40rem; }

/* ── Product hero visual (right column) ─────────────────────── */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 420px;
}
.hero-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(45% 45% at 55% 45%, rgba(78, 143, 224, 0.35), transparent 70%);
  filter: blur(10px);
  animation: hv-breathe 6s ease-in-out infinite;
}
@keyframes hv-breathe { 50% { opacity: 0.65; transform: scale(1.06); } }
.hero-cooler-wrap {
  position: relative; z-index: 1;
  width: min(330px, 78%);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(78, 143, 224, 0.28));
  animation: hv-float 5.5s ease-in-out infinite;
}
.hero-cooler { display: block; width: 100%; height: auto; }
/* live ad screen mapped onto the cooler's top banner */
.hero-screen {
  position: absolute;
  left: 4.6%; top: 2.4%; width: 90.8%; height: 10.4%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(96, 156, 235, 0.4);
}
@keyframes hv-float { 50% { transform: translateY(-14px); } }
.hero-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
  color: #eaf1fb;
  background: rgba(10, 22, 40, 0.72);
  border: 1px solid rgba(78, 143, 224, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: hv-float 5.5s ease-in-out infinite;
}
.hero-chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 10px rgba(78, 143, 224, 0.9);
}
.hero-chip.chip-1 { top: 12%; left: 2%; animation-delay: 0.2s; }
.hero-chip.chip-2 { top: 44%; right: -2%; animation-delay: 1.1s; }
.hero-chip.chip-3 { bottom: 12%; left: 8%; animation-delay: 2s; }
/* hero CTA cluster (replaces the in-hero form) */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 4px; }
.btn-hero-cta { font-size: 16px; padding: 17px 34px; }
.btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--ink);
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--brand); color: #fff; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin-bottom: 26px;
  max-width: 13ch;
}
.hero-sub { color: #b9c3d6; font-size: clamp(16px, 1.4vw, 18.5px); max-width: 52ch; }
.hero-sub strong { color: var(--ink); }
.hero-proof {
  margin-top: 40px;
  display: flex; gap: 16px; align-items: flex-start;
  max-width: 470px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(14, 27, 48, 0.55);
  backdrop-filter: blur(10px);
}
.proof-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 0 0 3px rgba(78, 143, 224, 0.25);
}
.proof-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-proof blockquote { font-size: 14px; color: #c4cdde; line-height: 1.55; }
.hero-proof cite { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; color: var(--mut); }
.hero-proof blockquote span, .hero-proof cite, .hero-proof .proof-avatar { transition: opacity 0.28s ease; }
.hero-proof.swapping blockquote span, .hero-proof.swapping cite, .hero-proof.swapping .proof-avatar { opacity: 0; }
.hero-proof { min-height: 118px; }

/* Lead card */
.lead-card {
  position: relative;
  background: linear-gradient(165deg, rgba(19, 35, 61, 0.85), rgba(10, 22, 40, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.lead-card-glow {
  position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--a), transparent 0 62%, rgba(232, 238, 247, 0.92) 74%, transparent 86%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
  animation: ring-spin 5.5s linear infinite;
  pointer-events: none;
}
@keyframes ring-spin { to { --a: 360deg; } }
.lead-card h2 { font-family: var(--font-display); font-size: clamp(1.35rem, 1.8vw, 1.65rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.lead-sub { color: var(--brand); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin: 10px 0 22px; }
.lead-form { display: grid; gap: 12px; }
.lead-form input {
  width: 100%;
  background: rgba(5, 8, 15, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.lead-form input::placeholder { color: #64748b; }
.lead-form input:focus { outline: none; border-color: rgba(78, 143, 224, 0.65); box-shadow: 0 0 0 3px rgba(78, 143, 224, 0.12); background: rgba(5, 8, 15, 0.8); }
.lead-form input.invalid { border-color: rgba(248, 113, 113, 0.7); box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12); }
.lead-form .btn-submit { justify-content: center; margin-top: 6px; width: 100%; }
.lead-consent { margin-top: 16px; font-size: 11.5px; line-height: 1.5; color: #64748b; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: grid; justify-items: center; gap: 10px;
  color: var(--mut); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue-line { width: 1px; height: 52px; background: rgba(148, 163, 184, 0.25); overflow: hidden; }
.scroll-cue-line i { display: block; width: 100%; height: 40%; background: var(--brand); animation: cue-drop 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite; }
@keyframes cue-drop { 0% { transform: translateY(-110%); } 60%, 100% { transform: translateY(260%); } }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 22, 40, 0.45);
  padding: 20px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; flex: none; }
.marquee-set span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.16em; text-transform: uppercase; color: #d7deeb; padding: 0 30px; white-space: nowrap;
}
.marquee-set i { color: var(--brand); font-style: normal; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* operator logo wall — real logos, normalized to white, opposite scroll.
   Distinct blue gradient band so it reads separately from the value bar below. */
.marquee-logos {
  background:
    linear-gradient(100deg, rgba(78, 143, 224, 0.22) 0%, rgba(13, 26, 46, 0.94) 28%, rgba(13, 26, 46, 0.94) 72%, rgba(78, 143, 224, 0.22) 100%),
    linear-gradient(180deg, #10203a, #0b1730);
  border-top: 1px solid rgba(78, 143, 224, 0.35);
  border-bottom: 1px solid rgba(78, 143, 224, 0.2);
  padding: 26px 0;
}
.marquee-logos .marquee-track { animation-duration: 42s; }
.marquee-logos .marquee-set { gap: clamp(44px, 5vw, 80px); padding-inline: clamp(22px, 2.5vw, 40px); }
.marquee-logos .marquee-set img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity 0.3s;
}
.marquee-logos .marquee-set img.tall { height: 54px; }
/* badge-on-color marks (UDR) go muddy when inverted — lighten instead */
.marquee-logos .marquee-set img.no-invert { filter: grayscale(1) brightness(1.75); opacity: 0.85; }
.marquee-logos:hover .marquee-set img { opacity: 0.95; }
.marquee-logos + .marquee { border-top: 0; }
.marquee-reverse .marquee-track { animation-direction: reverse; }

/* ── The Upgrade: scroll-scrubbed smash scene ──────────────── */
.smash { padding: 0; }
.smash-sticky {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: flex; flex-direction: column; align-items: center;
  padding: calc(var(--nav-h) + 24px) 24px 34px;
  background:
    radial-gradient(60% 50% at 50% 58%, rgba(19, 35, 61, 0.9) 0%, transparent 100%),
    linear-gradient(180deg, var(--bg-950), #070d18 50%, var(--bg-950));
}
/* lobby scenery behind the fight */
.smash-scenery { position: absolute; inset: 0; pointer-events: none; }
.scene-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.scenery-wall {
  position: absolute; inset: 0 0 18% 0;
  background:
    linear-gradient(180deg, rgba(20, 34, 56, 0.0) 0%, rgba(22, 37, 60, 0.55) 46%, rgba(16, 28, 47, 0.75) 100%);
}
.scenery-wall::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, transparent, rgba(9, 17, 30, 0.5));
  border-bottom: 2px solid rgba(148, 163, 184, 0.14); /* baseboard */
}
.scenery-floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 18%;
  background: linear-gradient(180deg, #0b1526 0%, #070d18 100%);
}
.scenery-floor::before {
  content: "";
  position: absolute; left: 15%; right: 15%; top: 0; height: 60%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(120, 160, 215, 0.08), transparent 75%);
}
.scenery-light {
  position: absolute; top: -12%; height: 85%; width: 16%;
  background: linear-gradient(180deg, rgba(190, 214, 255, 0.07), transparent 80%);
  transform: skewX(-14deg);
  filter: blur(6px);
}
.scenery-light.one { left: 12%; }
.scenery-light.two { left: 70%; width: 12%; opacity: 0.7; }
.smash-halo {
  position: absolute; left: 50%; top: 58%;
  width: min(900px, 120vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(78, 143, 224, 0.12) 0%, rgba(78, 143, 224, 0.04) 35%, transparent 65%);
  pointer-events: none;
  animation: halo-breathe 7s ease-in-out infinite;
}
@keyframes halo-breathe { 50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.06); } }

.smash-head { position: relative; text-align: center; z-index: 4; margin-bottom: 62px; }
.smash-lines {
  position: relative;
  height: 1.35em;
  margin-top: 14px;
  font-size: clamp(1.9rem, 4.8vw, 3.7rem);
}
.smash-line {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
  /* chrome-and-blue shine sweeping through the words, like light on the badge ring */
  background: linear-gradient(to right, #f6f9fd 20%, #7fb0f0 35%, #4e8fe0 50%, #7fb0f0 65%, #f6f9fd 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: line-shimmer 6.5s linear infinite;
  filter: drop-shadow(0 4px 20px rgba(78, 143, 224, 0.35));
}
.smash-line em { font-style: italic; padding-right: 0.015em; }
@keyframes line-shimmer { to { background-position: 200% center; } }

.smash-stage {
  position: relative;
  flex: 1;
  width: min(1150px, 100%);
  min-height: clamp(320px, 51svh, 620px);
  z-index: 2;
}
.oldvend, .newvend {
  position: absolute; bottom: 3%; left: 0;
  will-change: transform;
}
.oldvend {
  /* transparent cutout — width also capped by height so it never reaches the headline */
  width: min(262px, 44vw, 32svh);
  filter: saturate(0.92) drop-shadow(0 26px 30px rgba(0, 0, 0, 0.6));
}
.oldvend img { width: 100%; height: auto; display: block; }
.newvend { width: min(320px, 52vw, 44svh); z-index: 3; }
.newvend img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 34px rgba(78, 143, 224, 0.28));
}
/* live ad screen mapped onto the champion's top banner — same recipe as the hero */
.vend-screen-video {
  position: absolute;
  left: 4.6%; top: 2.4%; width: 90.8%; height: 10.4%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(96, 156, 235, 0.4);
}

/* floating bubbles — the hero's drifting dust, migrated to the upgrade scene */
.smash-bubbles {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.smash-bubbles span {
  position: absolute;
  left: var(--x); bottom: -30px;
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(240, 246, 253, 0.95), rgba(148, 190, 245, 0.5) 55%, rgba(78, 143, 224, 0.1) 100%);
  box-shadow: 0 0 14px rgba(120, 170, 235, 0.45);
  opacity: 0;
  animation: bubble-rise var(--t) linear infinite;
  animation-delay: var(--d);
  will-change: transform, opacity;
}
@keyframes bubble-rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  8%   { opacity: 0.8; }
  50%  { transform: translate3d(var(--sway), -46vh, 0) scale(1); }
  85%  { opacity: 0.5; }
  100% { transform: translate3d(calc(var(--sway) * -0.6), -94vh, 0) scale(0.85); opacity: 0; }
}

.impact-flash {
  position: absolute; inset: -12%;
  background: radial-gradient(42% 44% at 50% 70%, rgba(255, 240, 200, 0.95), rgba(255, 214, 130, 0.35) 42%, transparent 72%);
  opacity: 0; z-index: 4;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: opacity;
}
.shockwave {
  position: absolute; left: 50%; bottom: 16%;
  width: 70px; aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(78, 143, 224, 0.85);
  transform: translate(-50%, 50%) scale(0);
  opacity: 0; z-index: 4;
  pointer-events: none;
  will-change: transform, opacity;
}
.debris-layer { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.debris { position: absolute; left: 0; top: 0; opacity: 0; will-change: transform, opacity; }
.debris svg { width: var(--dw, 16px); height: auto; }

.smash-footer {
  text-align: center; z-index: 3;
  display: grid; justify-items: center; gap: 16px;
  padding: 14px 0 20px;
  opacity: 0; transform: translateY(30px);
  will-change: transform, opacity;
}
.smash-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 600;
  color: #c9d2e2;
}
.smash-kicker em { color: var(--brand); font-style: italic; }
.smash-replay {
  margin-top: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mut);
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.3s, border-color 0.3s;
}
.smash-replay:hover { color: var(--brand); border-color: rgba(78, 143, 224, 0.5); }

/* reduced-motion fallback: show the aftermath */
.smash.reduced .oldvend, .smash.reduced .line-old, .smash.reduced .smash-replay { display: none; }
.smash.reduced .smash-bubbles { display: none; }
.smash.reduced .smash-line { animation: none; }
.smash.reduced .newvend { position: relative; margin: 20px auto; left: auto; }
.smash.reduced .line-new, .smash.reduced .smash-footer { opacity: 1 !important; transform: none !important; }
.smash.reduced .line-new { position: relative; left: auto; }

.machine-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 40px auto 0;
  max-width: 720px;
}
.machine-chips li {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mut);
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 27, 48, 0.5);
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.machine-chips li:hover { color: var(--brand); border-color: rgba(78, 143, 224, 0.5); transform: translateY(-2px); }

/* ── How it works ──────────────────────────────────────────── */
.how-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  position: relative;
  background: linear-gradient(170deg, var(--surface), rgba(10, 22, 40, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.5s;
}
.how-card:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 143, 224, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(78, 143, 224, 0.06);
}
.how-num {
  position: absolute; top: 16px; right: 22px;
  font-family: var(--font-display); font-size: 74px; font-weight: 800; line-height: 1;
  color: rgba(148, 163, 184, 0.09);
  transition: color 0.4s;
}
.how-card:hover .how-num { color: rgba(78, 143, 224, 0.16); }
.how-icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center;
  color: var(--brand);
  background: rgba(78, 143, 224, 0.09);
  border: 1px solid rgba(78, 143, 224, 0.25);
  margin-bottom: 26px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.how-icon svg { width: 30px; height: 30px; }
.how-card:hover .how-icon { transform: rotate(-6deg) scale(1.08); }
.how-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.how-card p { color: var(--mut); font-size: 15px; }
.how-card p b { color: var(--brand); }

/* Stats */
.stats {
  width: min(var(--container), 100%);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 40px 20px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 34px rgba(78, 143, 224, 0.35);
}
.stat-num b { font-weight: 800; }
.stat-label { display: block; margin-top: 10px; color: var(--mut); font-size: 13.5px; }

/* ── Compare ───────────────────────────────────────────────── */
.compare-grid {
  width: min(1020px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  perspective: 1200px;
}
.compare-card {
  border-radius: var(--r-lg);
  padding: 38px 34px;
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
}
.compare-card.old { background: linear-gradient(170deg, #0d1524, #090f1b); }
.compare-card.new {
  background: linear-gradient(170deg, rgba(78, 143, 224, 0.09), rgba(19, 35, 61, 0.75) 40%), var(--surface);
  border-color: rgba(78, 143, 224, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(78, 143, 224, 0.08);
}
.pill { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; }
.pill-old { background: rgba(148, 163, 184, 0.12); color: var(--mut); }
.pill-new { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; }
/* small machine portrait tucked into the top-right of each card */
.compare-art { float: right; margin: -34px 0 8px 18px; }
.compare-art img { height: 104px; width: auto; }
.compare-card.old .compare-art img {
  height: 92px;
  filter: grayscale(0.35) saturate(0.8) drop-shadow(0 10px 12px rgba(0, 0, 0, 0.55));
}
.compare-card.new .compare-art img {
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(78, 143, 224, 0.3));
}
.compare-card ul { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.compare-card li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: #c8d1e0; }
.compare-card.old li { color: #8b98ad; }
.compare-card li i {
  flex: none; font-style: normal; font-size: 12px; font-weight: 800;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
}
.compare-card li i.x { color: #fb7185; background: rgba(251, 113, 133, 0.1); border: 1px solid rgba(251, 113, 133, 0.3); }
.compare-card li i.c { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }

/* ── Spaces ────────────────────────────────────────────────── */
.spaces-grid {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.space-card {
  --hue: var(--h, 212);
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  background:
    radial-gradient(140% 100% at 100% 0%, hsl(var(--hue) 65% 55% / 0.13), transparent 55%),
    linear-gradient(170deg, var(--surface), rgba(10, 22, 40, 0.55));
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.5s;
}
.space-card:hover {
  transform: translateY(-7px);
  border-color: hsl(var(--hue) 70% 60% / 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}
.space-art {
  width: 66px; height: 66px;
  border-radius: 20px;
  display: grid; place-items: center;
  color: hsl(var(--hue) 85% 72%);
  background: hsl(var(--hue) 70% 55% / 0.1);
  border: 1px solid hsl(var(--hue) 70% 60% / 0.3);
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.space-art svg { width: 34px; height: 34px; }
.space-card:hover .space-art { transform: scale(1.1) rotate(-5deg); }
.space-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.space-card p { color: var(--mut); font-size: 14.5px; min-height: 66px; }
.space-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: hsl(var(--hue) 85% 72%); }
.space-more i { font-style: normal; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.space-card:hover .space-more i { transform: translateX(6px); }

/* ── Reviews (auto-rotating) ───────────────────────────────── */
.review { text-align: center; max-width: 980px; margin: 0 auto; }
.review-stars { color: var(--brand); font-size: 22px; letter-spacing: 0.35em; margin-bottom: 30px; text-shadow: 0 0 24px rgba(78, 143, 224, 0.5); }
.review-carousel { display: grid; }
.review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.review-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.review-quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #e6ebf5;
}
.review-author { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.review-author div { text-align: left; font-size: 14px; }
.review-author b { display: block; }
.review-author span { color: var(--mut); font-size: 13px; }
.review-dots { margin-top: 36px; display: flex; justify-content: center; gap: 10px; }
.review-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
  transition: background 0.3s, transform 0.3s;
}
.review-dot.on { background: var(--brand); transform: scale(1.3); }
.review-dot:hover { background: var(--chrome); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  padding: 26px 6px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq-item:hover .faq-q, .faq-item.open .faq-q { color: var(--brand); }
.faq-icon { position: relative; flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transition: border-color 0.3s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 1.6px; }
.faq-icon::after { width: 1.6px; height: 12px; transition: transform 0.4s; }
.faq-item.open .faq-icon { transform: rotate(180deg); border-color: rgba(78, 143, 224, 0.5); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a-inner p { padding: 0 6px 26px; color: var(--mut); font-size: 15.5px; max-width: 64ch; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ── Final CTA ─────────────────────────────────────────────── */
.cta { overflow: hidden; padding-block: clamp(110px, 16vh, 190px); }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(90% 70% at 50% 100%, transparent 30%, var(--bg-950) 100%);
}
.cta-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.cta-form {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  text-align: left;
}
.cta-form .btn-submit { width: auto; margin-top: 0; padding-inline: 26px; }
.cta .lead-consent { margin-top: 20px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: #04070d; padding: 70px 24px 34px; }
.footer-grid {
  width: min(var(--container), 100%);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 44px;
}
.footer-brand p { color: var(--mut); font-size: 14.5px; margin-top: 18px; max-width: 40ch; }
.footer h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #d7deeb; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a, .footer-contact a { color: var(--mut); font-size: 14.5px; width: fit-content; transition: color 0.25s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--brand); }
.footer-contact p { color: #64748b; font-size: 13.5px; margin-top: 14px; max-width: 36ch; }
.footer-bottom {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: #64748b; font-size: 12.5px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 20px; }
  .hero-title { max-width: none; }
  .hero-visual { min-height: 300px; order: -1; }
  .hero-cooler-wrap { width: min(240px, 60%); }
  .hero-chip { font-size: 12px; padding: 8px 13px; }
  .lead-card { max-width: 560px; }
  .how-grid { grid-template-columns: 1fr; max-width: 640px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .space-card p { min-height: 0; }
  .cta-form { grid-template-columns: 1fr 1fr; }
  .cta-form .btn-submit { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 680px) {
  .nav { gap: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 12px; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .compare-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .hero-proof { display: none; }
  .scroll-cue { display: none; }
  .machine-hint { font-size: 12.5px; padding: 11px 16px; }
  section { padding-inline: 18px; }
}

/* ── The Fleet ─────────────────────────────────────────────── */
.fleet-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fleet-card {
  --hue: var(--h, 210);
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--surface), rgba(10, 22, 40, 0.55));
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.5s;
}
.fleet-card:hover {
  transform: translateY(-7px);
  border-color: hsl(var(--hue) 70% 62% / 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}
.fleet-card.featured {
  border-color: rgba(78, 143, 224, 0.45);
  box-shadow: 0 0 54px rgba(78, 143, 224, 0.1);
}
.fleet-flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #eef2f8, #b9c2d2);
  color: #16233a;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.fleet-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.fleet-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fleet-card:hover .fleet-media img { transform: scale(1.05); }
.fleet-setting {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #e7ecf5;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.66);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.fleet-info { padding: 26px 26px 28px; display: grid; gap: 12px; align-content: start; flex: 1; }
.fleet-tag { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: hsl(var(--hue) 80% 70%); }
.fleet-info h3 { font-family: var(--font-display); font-size: 25px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.fleet-info p { color: var(--mut); font-size: 14.5px; }
.fleet-specs { list-style: none; display: grid; gap: 8px; margin-top: 2px; }
.fleet-specs li { position: relative; padding-left: 24px; font-size: 13.5px; color: #c8d1e0; }
.fleet-specs li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  font-size: 11px; font-weight: 800;
  color: hsl(var(--hue) 80% 70%);
}
.fleet-cta { margin-top: auto; padding-top: 10px; font-size: 14px; font-weight: 600; color: hsl(var(--hue) 85% 72%); display: inline-flex; gap: 8px; align-items: center; }
.fleet-cta i { font-style: normal; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.fleet-card:hover .fleet-cta i { transform: translateX(6px); }

.fleet-video { width: min(920px, 100%); margin: 64px auto 0; }
.fleet-video-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #04070d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.fleet-video-frame video { width: 100%; aspect-ratio: 16 / 9; display: block; }
/* explicit poster overlay — guarantees a bright still shows until real playback,
   regardless of the browser's flaky native <video poster> behavior */
.video-poster-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.45s ease;
}
.fleet-video-frame.playing .video-poster-overlay { opacity: 0; pointer-events: none; }
.video-endcap {
  position: absolute; inset: 0; z-index: 3;
  display: grid; place-content: center; justify-items: center; gap: 16px;
  background: rgba(5, 8, 15, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.fleet-video-frame.done .video-endcap { opacity: 1; pointer-events: auto; }
.video-endcap p { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
.video-replay { color: var(--mut); font-size: 13px; transition: color 0.3s; }
.video-replay:hover { color: var(--brand); }
.fleet-video figcaption { margin-top: 16px; text-align: center; color: var(--mut); font-size: 13.5px; }
.fleet-video figcaption span { display: block; margin-top: 3px; color: #64748b; font-size: 11.5px; }
.fleet-credit { text-align: center; color: #64748b; font-size: 12px; margin-top: 34px; }

/* ── Floating conversion CTA ───────────────────────────────── */
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 860;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 22px rgba(78, 143, 224, 0.4);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s, box-shadow 0.3s;
}
.float-cta.show { transform: none; opacity: 1; }
.float-cta:hover { box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 6px 30px rgba(78, 143, 224, 0.6); }
.float-cta svg { flex: none; }

/* ── Back to top ───────────────────────────────────────────── */
.to-top {
  position: fixed; left: 24px; bottom: 24px; z-index: 860;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 19px; font-weight: 700;
  color: var(--chrome);
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s, border-color 0.3s, color 0.3s;
}
.to-top.show { transform: none; opacity: 1; }
.to-top:hover { color: #fff; border-color: var(--brand); }
@media (max-width: 680px) { .to-top { left: 14px; bottom: 14px; width: 42px; height: 42px; } }

/* ── Responsive: smash + fleet ─────────────────────────────── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 560px; }
  .fleet-media { height: 250px; }
}
@media (max-width: 680px) {
  .oldvend { width: min(168px, 42vw); }
  .newvend { width: min(192px, 50vw); }
  .smash-footer .machine-chips { display: none; }
  .smash-kicker { font-size: 1rem; }
  .float-cta { right: 14px; bottom: 14px; padding: 13px 15px; }
  .float-cta span { display: none; }
  .fleet-video figcaption { font-size: 12px; }
}

/* ── Lead capture modal + 2-step form ─────────────────────────── */
.lead-modal {
  position: fixed; inset: 0; z-index: 10500;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lead-modal.open { opacity: 1; visibility: visible; }
.lead-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 6, 12, 0.72);
  backdrop-filter: blur(6px);
}
.lead-modal-card {
  position: relative; z-index: 1;
  width: min(460px, 100%);
  max-height: 92vh; overflow-y: auto;
  /* solid box: stay wheel-scrollable on short screens but never show
     scrollbars — their pop-in was reflowing the card and making it jump */
  overflow-x: hidden;
  scrollbar-width: none;
  background: linear-gradient(165deg, rgba(19, 35, 61, 0.96), rgba(10, 22, 40, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-modal.open .lead-modal-card { transform: none; }
.lead-modal-card::-webkit-scrollbar { width: 0; height: 0; }
.lead-modal-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.lead-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 24px; line-height: 1; color: var(--mut);
  display: grid; place-items: center;
  transition: color 0.25s, background 0.25s;
}
.lead-modal-close:hover { color: #fff; background: rgba(148, 163, 184, 0.12); }
.form-step { display: none; }
.form-step.is-active { display: grid; gap: 12px; animation: step-in 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes step-in { from { opacity: 0; } to { opacity: 1; } }
.step-q { font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.chip-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.type-chip {
  padding: 15px 14px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 15, 0.5);
  color: #c8d1e0; font-weight: 600; font-size: 14.5px;
  text-align: center; transition: border-color 0.25s, background 0.25s;
}
.type-chip:hover { border-color: rgba(78, 143, 224, 0.6); background: rgba(78, 143, 224, 0.1); }
.form-back { justify-self: start; color: var(--mut); font-size: 13px; padding: 4px 0; transition: color 0.25s; }
.form-back:hover { color: var(--brand); }
html.modal-open { overflow: hidden; }
/* reserve the scrollbar gutter permanently so locking scroll (modal open)
   doesn't reflow the page sideways by the scrollbar width */
html { scrollbar-gutter: stable; }

/* ── UI/UX polish (accessibility, CLS, touch) ──────────────────
   Applied per the ui-ux-pro-max checklist. */
/* consistent, high-visibility focus ring on every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible,
.faq-q:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
/* keep nav taps comfortably ≥44px without changing visual size */
.nav-links a { padding-block: 12px; }
/* prevent layout shift: reserve space for media via intrinsic ratio */
.fleet-media, .fleet-video-frame { contain: layout paint; }
img { height: auto; }
/* smoother font rendering + no italic clipping in headings */
.h2, .hero-title, .cta-title { text-wrap: balance; }

/* ── Per-section color variants ────────────────────────────────
   Each section carries a distinct subtle tint (all within the
   navy/blue brand family) so moving between them reads as a gentle
   color transition. A hairline brand seam marks each boundary. */
#machine, #fleet, #how, #compare, #spaces, #reviews, #faq {
  transition: background-color 0.6s ease;
}
#fleet {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(78, 143, 224, 0.10), transparent 60%),
    linear-gradient(180deg, #091426, #0a1728);
}
#how {
  background:
    radial-gradient(85% 55% at 50% 0%, rgba(45, 212, 191, 0.06), transparent 60%),
    linear-gradient(180deg, #08131f, #0a1522);
}
#compare {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(148, 163, 184, 0.06), transparent 60%),
    linear-gradient(180deg, #070f1c, #091320);
}
#spaces {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(129, 140, 248, 0.08), transparent 60%),
    linear-gradient(180deg, #0a1122, #0b1526);
}
#reviews {
  background:
    radial-gradient(70% 60% at 50% 40%, rgba(78, 143, 224, 0.08), transparent 65%),
    linear-gradient(180deg, #060b15, #080e1a);
}
#faq {
  background:
    radial-gradient(85% 55% at 50% 0%, rgba(56, 189, 248, 0.06), transparent 60%),
    linear-gradient(180deg, #08121f, #0a1524);
}
/* hairline seam between stacked sections */
#fleet, #how, #compare, #spaces, #reviews, #faq, #contact {
  border-top: 1px solid rgba(78, 143, 224, 0.12);
}

/* ── Legal pages ───────────────────────────────────────────── */
.legal-page .nav { position: sticky; top: 0; }
.legal-back { margin-left: auto; font-size: 14px; color: var(--mut); transition: color 0.25s; }
.legal-back:hover { color: var(--brand); }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 70px 24px 90px; }
.legal-wrap h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
.legal-updated { color: #64748b; font-size: 13px; margin: 10px 0 40px; }
.legal-wrap h2 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 36px 0 10px; }
.legal-wrap p, .legal-wrap li { color: #b6c0d2; font-size: 15px; }
.legal-wrap ul { margin: 10px 0 10px 22px; display: grid; gap: 6px; }
.legal-wrap a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.legal-foot { padding: 26px 24px 40px; border-top: 1px solid var(--line); }
.cc-credit { color: #4c5a70; font-size: 11px; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-page {
  background:
    radial-gradient(70% 45% at 80% 0%, rgba(78, 143, 224, 0.12), transparent 60%),
    var(--bg-950);
}
.contact-wrap { max-width: var(--container); margin: 0 auto; padding: 70px 24px 90px; }
.contact-head { max-width: 720px; margin-bottom: 52px; }
.contact-head h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0 18px; }
.contact-lede { color: var(--mut); font-size: 17px; max-width: 60ch; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-details { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, var(--surface), rgba(10, 22, 40, 0.55));
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: rgba(78, 143, 224, 0.4); transform: translateY(-2px); }
.contact-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--brand);
  background: rgba(78, 143, 224, 0.1);
  border: 1px solid rgba(78, 143, 224, 0.25);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-card h2 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9fb0c8; margin-bottom: 6px; }
.contact-big { display: inline-block; font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; transition: color 0.25s; }
.contact-big:hover { color: var(--brand); }
.contact-strong { color: var(--ink); font-weight: 600; }
.contact-card p { color: var(--mut); font-size: 14px; margin-top: 4px; }
.contact-form-wrap .lead-card { position: sticky; top: 96px; }
.contact-form-wrap textarea {
  width: 100%; background: rgba(5, 8, 15, 0.55);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; color: var(--ink); resize: vertical; min-height: 84px;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.contact-form-wrap textarea::placeholder { color: #64748b; }
.contact-form-wrap textarea:focus { outline: none; border-color: rgba(78, 143, 224, 0.65); box-shadow: 0 0 0 3px rgba(78, 143, 224, 0.12); }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap .lead-card { position: static; }
}

/* ── About page ────────────────────────────────────────────── */
.about-page { background: radial-gradient(70% 45% at 20% 0%, rgba(129, 140, 248, 0.1), transparent 60%), var(--bg-950); }
.about-wrap { max-width: 860px; margin: 0 auto; padding: 70px 24px 40px; }
.about-wrap h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.about-lede { color: #b9c3d6; font-size: 19px; line-height: 1.6; margin: 20px 0 12px; }
.about-wrap h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; margin: 44px 0 14px; letter-spacing: -0.01em; }
.about-wrap p { color: var(--mut); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.about-value { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: linear-gradient(170deg, var(--surface), rgba(10, 22, 40, 0.55)); }
.about-value b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--brand); letter-spacing: -0.02em; }
.about-value span { color: var(--mut); font-size: 14px; }
.about-cta { text-align: center; padding: 50px 24px; }
@media (max-width: 680px) { .about-values { grid-template-columns: 1fr; } }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  body::after { display: none; }
  [data-reveal], .wmask .w { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none; }
}

/* ── Mobile-ready pass (phones ≤680px) ─────────────────────────
   Hero: headline → machine → CTA stacked so the machine AND the
   call-to-action share one phone screen (svh-based sizing). */
@media (max-width: 680px) {
  .hero { padding-top: calc(var(--nav-h) + 8px); padding-bottom: 44px; }
  .hero-inner { gap: 0; }
  /* flatten the copy wrapper so title, machine, and CTA can interleave */
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; margin-bottom: 10px; font-size: 11px; }
  .hero-title { order: 2; font-size: clamp(1.65rem, 7.6vw, 2.15rem); margin-bottom: 6px; }
  .hero-visual { order: 3; min-height: 0; margin: 10px 0 16px; }
  .hero-cooler-wrap { width: min(44vw, 15.5svh); }
  .hero-cta { order: 4; flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { justify-content: center; }
  .btn-hero-cta { padding: 15px 20px; font-size: 15.5px; }
  .hero-sub { order: 5; margin-top: 18px; font-size: 15px; }
  .hero-proof { order: 6; }
  .hero-chip { font-size: 10.5px; padding: 7px 11px; gap: 5px; }
  .hero-chip.chip-2 { right: 2%; }

  /* upgrade scene: tighter head, headline that always fits, compact footer */
  .smash-head { margin-bottom: 28px; }
  .smash-lines { font-size: clamp(1.4rem, 6.6vw, 2.4rem); }
  .smash-footer { gap: 12px; padding-bottom: 14px; }
  .smash-footer .btn { padding: 14px 26px; font-size: 14.5px; }
  .smash-replay { padding: 8px 16px; font-size: 11px; }

  /* comfortable tap targets in the modal on small screens */
  .lead-modal { padding: 14px; }
  .lead-modal-card { padding: 24px 20px; }
  .chip-select { gap: 8px; }
  .type-chip { padding: 14px 10px; font-size: 13.5px; }
}

/* tablets (681–1024px): keep machine-first layout but cap its height
   so the CTA stays within the first screen */
@media (min-width: 681px) and (max-width: 1024px) {
  .hero-cooler-wrap { width: min(220px, 24svh); }
  .hero-visual { min-height: 0; margin-bottom: 8px; }
}

/* nav gets cramped below 920px (7 links + CTA) — hand off to the burger earlier */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
}
