/* ============================================================
   COMPTECH VX1 — cinematic scroll site
   Brand system: Comptech Design System v1.0
   #111111 Night Black · #23262B Graphite · #ECECEC Cool Grey
   #FF5A1F Energy Orange (single accent) · 45° chamfers
   Archivo (Expanded) / Inter / IBM Plex Mono
   ============================================================ */

@font-face {
  font-family: 'Archivo Var';
  src: url('../fonts/archivo-latin-wdth-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --ct-black: #111111;
  --ct-graphite: #23262B;
  --ct-grey: #ECECEC;
  --ct-white: #FFFFFF;
  --ct-red: #FF5A1F;           /* Energy Orange — accent only */
  --chamfer: 18px;
  --hud-w: 92px;
  --font-head: 'Archivo Var', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --line: rgba(255,255,255,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ct-black);
  color: var(--ct-white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); }

/* ---------- ambient sky (graded via JS) ---------- */
.sky {
  position: fixed; inset: 0; z-index: -2;
  background: var(--ct-black);
}

/* ---------- V7 ghost motif ---------- */
.v7-ghost {
  position: fixed; top: -6vh; right: -8vw; width: 46vw; height: 46vw;
  color: var(--ct-white); opacity: 0.05; z-index: 0; pointer-events: none;
  transition: opacity 0.6s;
}
body[data-chapter="factory"] .v7-ghost { opacity: 0.07; color: var(--ct-red); }

/* ---------- masthead ---------- */
.masthead {
  position: fixed; top: 28px; left: 34px; z-index: 60;
  display: flex; align-items: baseline; gap: 10px;
  mix-blend-mode: difference;
}
.masthead-lockup { height: 40px; display: block; }
.masthead-tag { font-size: 10px; letter-spacing: 0.34em; color: var(--ct-white); opacity: 0.75; }

/* ============================================================
   HUD — instrument cluster, right edge
   ============================================================ */
.hud {
  position: fixed; top: 0; right: 0; height: 100vh; width: var(--hud-w);
  z-index: 50; display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: opacity 0.5s, transform 0.5s;
}
body.at-footer .hud { opacity: 0; transform: translateX(30px); }
.hud-inner {
  width: 100%; padding: 22px 14px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 22px;
  border-left: 1px solid var(--line);
  background: linear-gradient(270deg, rgba(17,17,17,0.55), rgba(17,17,17,0));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - var(--chamfer)), 0 var(--chamfer));
}
.hud-brand { font-size: 11px; letter-spacing: 0.4em; color: var(--ct-red); font-weight: 600; }

.hud-zone { text-align: right; }
.hud-zone-label {
  font-size: 9px; letter-spacing: 0.26em; color: var(--ct-white);
  writing-mode: vertical-rl; text-orientation: mixed;
  max-height: 150px; opacity: 0.9;
}
.hud-rule { width: 3px; height: 34px; background: var(--ct-red); margin: 10px 0 0 auto; }

.hud-odo { text-align: right; }
.hud-odo-value { font-size: 17px; font-weight: 600; letter-spacing: 0.04em; }
.hud-odo-unit { font-size: 9px; letter-spacing: 0.3em; opacity: 0.6; }

.hud-speed { font-size: 9px; opacity: 0.65; letter-spacing: 0.12em; }

.hud-batt { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.hud-batt-bolt { display: flex; align-items: center; gap: 5px; color: var(--ct-red); font-size: 9px; }
.hud-batt-bolt .mono { color: var(--ct-white); letter-spacing: 0.08em; }
.hud-batt-cells { display: flex; flex-direction: column-reverse; gap: 3px; }
.hud-batt-cells i {
  display: block; width: 22px; height: 7px;
  background: var(--ct-white); opacity: 0.9;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4px 100%, 0 calc(100% - 4px));
  transition: opacity 0.3s, background 0.3s;
}
.hud-batt-cells i.off { opacity: 0.12; }
.hud-batt-cells i.low { background: var(--ct-red); }

.hud-ticks { width: 22px; height: 90px; background:
  repeating-linear-gradient(to bottom, var(--line) 0 1px, transparent 1px 9px);
}

/* factory-mode HUD */
.hud-station { display: none; text-align: right; }
.hud-station-label { font-size: 8px; letter-spacing: 0.3em; opacity: 0.6; }
.hud-station-count { font-size: 16px; font-weight: 600; color: var(--ct-red); }
.hud-station-name { font-size: 9px; letter-spacing: 0.2em; margin-top: 2px; }
.hud-build-stat { font-size: 9px; margin-top: 8px; }
.hud-build-stat span { font-size: 12px; font-weight: 600; display: block; }
.hud-build-stat em { font-style: normal; font-size: 7px; opacity: 0.55; letter-spacing: 0.14em; }

body[data-chapter="factory"] .hud-batt,
body[data-chapter="factory"] .hud-speed,
body[data-chapter="factory"] .hud-ticks { display: none; }
body[data-chapter="factory"] .hud-station { display: block; }
body[data-chapter="factory"] .hud-zone-label { color: var(--ct-red); }

/* ============================================================
   typography
   ============================================================ */
.display {
  font-family: var(--font-head);
  font-stretch: 122%;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 6.2vw, 92px);
  text-transform: none;
}
.display b { color: var(--ct-red); font-weight: 700; }
.display.xl { font-size: clamp(44px, 7.6vw, 118px); }

.kicker {
  font-size: 11px; letter-spacing: 0.32em; color: var(--ct-red);
  font-weight: 500; margin-bottom: 18px;
}
.kicker::after {
  content: ""; display: block; width: 44px; height: 3px;
  background: var(--ct-red); margin-top: 10px;
}

/* ============================================================
   CHAPTER 1 — ride scrub
   ============================================================ */
.ride { position: relative; height: 1400vh; }
.ride-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#rideCanvas, #droneCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.grain {
  position: absolute; inset: -60px; pointer-events: none; opacity: 0.07;
  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'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)} 25%{transform:translate(-18px,12px)}
  50%{transform:translate(12px,-16px)} 75%{transform:translate(-10px,-8px)} 100%{transform:translate(14px,10px)}
}

.overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 max(6vw, 60px); padding-right: calc(var(--hud-w) + 4vw);
  opacity: 0; visibility: hidden; transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
  pointer-events: none;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.overlay.on {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-overlay .hero-sub { margin-top: 26px; font-size: 17px; opacity: 0.85; max-width: 420px; }
.scroll-cue {
  margin-top: 8vh; font-size: 10px; letter-spacing: 0.34em; opacity: 0.8;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.cue-line { width: 1px; height: 54px; background: var(--ct-white); position: relative; overflow: hidden; display: block; }
.cue-line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--ct-red); animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue { 0%{top:-100%} 60%{top:100%} 100%{top:100%} }

.hero-since { margin-top: 18px; font-size: 10px; letter-spacing: 0.32em; color: var(--ct-red); }
.load-hint {
  position: absolute; right: calc(var(--hud-w) + 3vw); bottom: 6vh;
  font-size: 9px; letter-spacing: 0.3em; color: var(--ct-red); opacity: 0.9;
  transition: opacity 0.6s;
}
.load-hint.done { opacity: 0; }

.fact { margin-top: 30px; font-size: 16px; line-height: 1.55; opacity: 0.92; max-width: 460px; }
.fact-stat {
  display: block; width: fit-content;
  font-size: 13px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ct-black); background: var(--ct-red);
  padding: 8px 14px; margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
}

/* ============================================================
   vehicle / specs
   ============================================================ */
.vehicle {
  position: relative; z-index: 6;
  background: var(--ct-graphite);
  padding: 16vh max(6vw, 60px) 14vh; padding-right: calc(var(--hud-w) + 4vw);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.section-head { margin-bottom: 7vh; }
.vehicle-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; margin-bottom: 7vh; align-items: stretch; }
.vehicle-cluster {
  position: relative; overflow: hidden; background: #101215;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
}
.vehicle-cluster video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.cluster-note {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  font-size: 9px; letter-spacing: 0.3em; color: var(--ct-white); opacity: 0.8;
}
.vehicle-media {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
  background: #1a1c20; min-height: 280px;
}
.vehicle-media img { width: 100%; display: block; }
.vehicle-media.missing img { display: none; }
.media-missing {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.28em; color: var(--ct-red);
  border: 1px dashed rgba(255,90,31,0.5); text-align: center; padding: 20px;
}
.vehicle-media.missing .media-missing,
.station-media.missing .media-missing,
.legacy-media.missing .media-missing { display: flex; }

.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.spec {
  background: var(--ct-graphite); padding: 32px 26px 26px;
  display: flex; flex-direction: column; gap: 14px; min-height: 150px;
}
.spec-num { font-size: 44px; font-weight: 600; letter-spacing: -0.01em; }
.spec-num em { font-style: normal; font-size: 17px; opacity: 0.6; margin-left: 6px; letter-spacing: 0.1em; }
.spec-name { font-size: 16px; opacity: 0.78; line-height: 1.5; }
.spec.accent .spec-num { color: var(--ct-red); }

/* ============================================================
   warranty USP
   ============================================================ */
.warranty {
  position: relative; z-index: 6; background: var(--ct-black);
  padding: 16vh max(6vw, 60px); padding-right: calc(var(--hud-w) + 4vw);
  border-top: 1px solid var(--line); overflow: hidden;
}
.warranty::after {
  content: "5"; position: absolute; right: -2vw; bottom: -14vh;
  font-family: var(--font-mono); font-weight: 600;
  font-size: 60vh; line-height: 1; color: rgba(255,90,31,0.05);
  pointer-events: none;
}
.warranty-inner { position: relative; z-index: 2; max-width: 980px; }
.warranty-big { display: flex; align-items: center; gap: 4vw; margin: 4vh 0 5vh; }
.warranty-num {
  font-size: clamp(140px, 24vw, 320px); font-weight: 600; line-height: 0.85;
  color: var(--ct-red);
}
.warranty-lines .display { font-size: clamp(34px, 4.6vw, 68px); }
.warranty-body { font-size: 18px; line-height: 1.7; opacity: 0.85; max-width: 640px; }
.warranty-body em { font-style: normal; color: var(--ct-red); }
.warranty-tag {
  margin-top: 30px; font-size: 13px; letter-spacing: 0.24em; color: var(--ct-red); font-weight: 600;
}
.warranty-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.warranty-chips span {
  font-size: 11px; letter-spacing: 0.18em; padding: 10px 16px;
  border: 1px solid var(--line); color: var(--ct-white); opacity: 0.85;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
}

/* ============================================================
   CHAPTER 2 — factory
   ============================================================ */
.factory { position: relative; z-index: 6; background: #0b0c0e; }

.matchcut {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 0 max(6vw, 60px); padding-right: calc(var(--hud-w) + 4vw);
  position: relative; overflow: hidden;
}
.matchcut-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5; filter: saturate(1.1) contrast(1.12) brightness(0.7);
}
.matchcut-glow {
  position: absolute; left: 50%; top: 50%; width: 60vw; height: 60vw;
  transform: translate(-50%,-50%); pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,31,0.22) 0%, rgba(255,90,31,0.0) 60%);
  opacity: 0; transition: opacity 1s;
}
.matchcut.lit .matchcut-glow { opacity: 1; }
.factory-sub { margin-top: 30px; font-size: 16px; line-height: 1.6; opacity: 0.8; max-width: 520px; }

/* drone scrub */
.drone { position: relative; height: 500vh; }
.drone-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.drone-sticky::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background:
    linear-gradient(180deg, rgba(11,12,14,0.55) 0%, rgba(11,12,14,0) 22%, rgba(11,12,14,0) 62%, rgba(11,12,14,0.72) 100%),
    radial-gradient(120% 90% at 50% 45%, rgba(11,12,14,0) 55%, rgba(11,12,14,0.38) 100%);
}
.drone-caption {
  position: absolute; left: max(6vw,60px); bottom: 7vh; z-index: 5;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.drone-stat { font-size: 13px; letter-spacing: 0.22em; opacity: 0.9; margin-top: 10px; }
.drone-area {
  font-family: var(--font-head); font-stretch: 122%; font-weight: 600;
  font-size: clamp(52px, 7vw, 110px); line-height: 0.95; margin-top: 12px;
}
.drone-area b { color: var(--ct-red); font-weight: 700; }
.drone-area span { font-size: 0.35em; font-weight: 500; opacity: 0.85; letter-spacing: 0.06em; }
.drone-area-sub {
  font-family: var(--font-head); font-stretch: 116%; font-weight: 500;
  font-size: clamp(18px, 2vw, 30px); opacity: 0.9; margin-top: 6px;
}

/* stations */
.station {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1.25fr 1fr; align-items: stretch;
}
.station:nth-child(even) { grid-template-columns: 1fr 1.25fr; }
.station:nth-child(even) .station-media { order: 2; }

.station-media {
  position: relative; background: #101215; overflow: hidden; min-height: 60vh;
}
.station-media video, .station-media img.kb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.92);
}
.station-media img.kb { transform-origin: center; }
/* blueprint overlay */
.station-media::after {
  content: ""; position: absolute; inset: 18px; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.16);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.station-media::before {
  content: attr(data-part); position: absolute; top: 30px; left: 34px; z-index: 3;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em;
  color: var(--ct-white); opacity: 0.75;
}
.station-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 12vh max(4vw, 44px); padding-right: calc(var(--hud-w) + 2vw);
  border-top: 1px solid var(--line);
}
.station:nth-child(even) .station-copy { padding-right: max(4vw, 44px); padding-left: max(4vw, 44px); }
.station-body { margin-top: 24px; font-size: 15.5px; line-height: 1.6; opacity: 0.8; max-width: 420px; }
.callout {
  margin-top: 30px; font-size: 11px; letter-spacing: 0.18em; line-height: 2;
  color: var(--ct-white); opacity: 0.85;
  border-left: 3px solid var(--ct-red); padding-left: 16px;
}
.callout.accent-text { color: var(--ct-red); opacity: 1; }

/* legacy close */
.legacy { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.legacy-media { position: absolute; inset: 0; }
.legacy-media video, .legacy-media img.kb {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.55);
}
.legacy-copy {
  position: relative; z-index: 4; padding: 14vh max(6vw, 60px);
  padding-right: calc(var(--hud-w) + 4vw);
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

/* ============================================================
   closing
   ============================================================ */
.closing {
  position: relative; z-index: 6; background: var(--ct-black);
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 16vh max(6vw, 60px); padding-right: calc(var(--hud-w) + 4vw);
  border-top: 1px solid var(--line); overflow: hidden;
}
.closing-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: saturate(0.9) contrast(1.1) brightness(0.75);
  pointer-events: none;
}
.closing > *:not(.closing-bg) { position: relative; z-index: 2; }
.price { font-size: clamp(60px, 10vw, 150px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.price-note { font-size: 11px; letter-spacing: 0.26em; opacity: 0.6; margin: 18px 0 6vh; }
.cta-row { display: flex; gap: 22px; margin-top: 7vh; flex-wrap: wrap; }
.cta {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; padding: 20px 44px; display: inline-block;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cta.primary { background: var(--ct-red); color: var(--ct-black); font-weight: 600; }
.cta.primary:hover { transform: translateY(-3px); }
.cta.ghost { color: var(--ct-white); border: 1px solid var(--line); background: transparent; }
.cta.ghost:hover { border-color: var(--ct-red); color: var(--ct-red); }
/* ============================================================
   mega footer — mirrors comptechmotocorp.com
   ============================================================ */
.mega-footer {
  position: relative; z-index: 6; background: #060607;
  padding: 8vh 4vw 0; overflow: hidden;
}
.footer-card {
  background: #17181a; border-radius: 28px;
  padding: 64px 64px 40px; position: relative; z-index: 2;
  max-width: 1560px; margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.3fr; gap: 48px;
}
.footer-lockup { height: 52px; display: block; margin-bottom: 26px; }
.footer-tag { font-size: 17px; line-height: 1.6; color: #cfcfcf; max-width: 340px; }
.socials { display: flex; gap: 18px; margin-top: 34px; }
.socials a { color: #9a9a9a; transition: color 0.25s; }
.socials a:hover { color: var(--ct-white); }
.socials svg { width: 24px; height: 24px; display: block; }

.footer-col h4 { font-size: 18px; font-weight: 700; color: var(--ct-white); margin-bottom: 26px; }
.footer-col a {
  display: block; color: #b9b9b9; text-decoration: none;
  font-size: 16px; line-height: 1.5; margin-bottom: 18px; transition: color 0.25s;
}
.footer-col a:hover { color: var(--ct-red); }
.footer-addr { color: #b9b9b9; font-size: 16px; line-height: 1.7; max-width: 420px; }

.footer-rule { height: 1px; background: rgba(255,255,255,0.14); margin: 44px 0 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-legal { display: flex; align-items: center; gap: 16px; color: #b9b9b9; font-size: 15px; flex-wrap: wrap; }
.footer-legal i { font-style: normal; opacity: 0.4; }
.footer-legal a { color: #b9b9b9; text-decoration: none; }
.footer-legal a:hover { color: var(--ct-white); }
.heart { color: var(--ct-red); font-style: normal; }

.footer-ctas { display: flex; gap: 16px; }
.pill {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; padding: 14px 30px; border-radius: 999px;
  transition: transform 0.25s, opacity 0.25s; display: inline-block;
}
.pill:hover { transform: translateY(-2px); }
.pill.solid { background: var(--ct-red); color: var(--ct-white); }
.pill.light { background: var(--ct-white); color: var(--ct-red); }

.footer-ghost {
  margin: 6vh 0 -6px; position: relative; z-index: 1;
  user-select: none; pointer-events: none;
}
.footer-ghost svg { display: block; width: 100%; height: auto; }
.footer-ghost text {
  font-family: var(--font-head); font-stretch: 125%; font-weight: 700;
  font-size: 235px; fill: #1b1c1e;
}

.footer-since { font-size: 10px; letter-spacing: 0.3em; color: var(--ct-red); margin-top: 18px; }

/* floating WhatsApp button */
.wa-float {
  position: fixed; left: 26px; bottom: 26px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }

@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .footer-card { padding: 40px 28px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  :root { --hud-w: 64px; }
  .vehicle-row { grid-template-columns: 1fr; }
  .vehicle-cluster { min-height: 40vh; }
  .station, .station:nth-child(even) { grid-template-columns: 1fr; }
  .station:nth-child(even) .station-media { order: 0; }
  .station-media { min-height: 46vh; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .overlay { padding: 0 6vw; padding-right: calc(var(--hud-w) + 5vw); }
}
@media (max-width: 560px) {
  :root { --hud-w: 58px; }
  .hud-inner { padding: 16px 8px; gap: 16px; }
  .hud-odo-value { font-size: 13px; letter-spacing: 0; }
  .hud-odo-unit { font-size: 8px; }
  .hud-batt-cells i { width: 16px; height: 6px; }
  .hud-zone-label { font-size: 8px; max-height: 110px; }
  .hud-speed { font-size: 8px; }
  .hud-ticks { width: 16px; height: 60px; }
  .hud-station-count { font-size: 13px; }
  .kicker { font-size: 9px; letter-spacing: 0.2em; }
  .display { font-size: clamp(30px, 9.4vw, 44px); }
  .display.xl { font-size: clamp(34px, 10.5vw, 52px); }
  .fact { font-size: 14px; }
  .fact-stat { font-size: 11px; letter-spacing: 0.1em; padding: 7px 11px; }
  .masthead { top: 16px; left: 18px; }
  .masthead-lockup { height: 30px; }
  .masthead-tag { display: none; }
  .overlay { padding-left: 6vw; padding-right: calc(var(--hud-w) + 5vw); }
  .hero-sub { font-size: 14px; }
  .warranty-num { font-size: clamp(110px, 34vw, 160px); }
  .warranty-big { gap: 6vw; margin: 3vh 0; }
  .warranty-body { font-size: 15px; }
  .drone-area { font-size: clamp(40px, 11vw, 60px); }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-num { font-size: 36px; }
  .price { font-size: clamp(48px, 15vw, 80px); }
  .wa-float { width: 50px; height: 50px; left: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .grain, .cue-line::after { animation: none; }
}
