/* ============================================================
   Lozy 2026 — structured edition · DARK ORANGE THEME
   Palette: #C2410C (burnt orange) · #050505 (ink) · #7C2D12 (deep amber) · #FFFFFF
   ============================================================ */

:root {
  --bg: #0A0604;
  --bg-2: #0F0805;
  --bg-elev: #150A06;
  --bg-section: #0C0805;
  --bg-card: rgba(255, 255, 255, 0.03);

  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-mute: rgba(255, 255, 255, 0.45);
  --text-faint: rgba(255, 255, 255, 0.20);
  --text-dark: #050505;

  /* dark orange palette (variable names kept for compatibility) */
  --red: #C2410C;          /* burnt orange — primary */
  --red-bright: #EA580C;   /* vivid dark orange — hover/glow */
  --red-soft: #9A3412;     /* deeper burnt */
  --wine: #7C2D12;         /* dark amber */
  --wine-deep: #431407;    /* near-black amber */
  --white: #FFFFFF;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-red: rgba(194, 65, 12, 0.45);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.30);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow-red: 0 0 60px rgba(234, 88, 12, 0.50);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --font-display: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --font-sub:  "DM Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-indic: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Bengali", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Gujarati", "Noto Sans Kannada", "Noto Sans Gurmukhi", "DM Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --rail-w: 80px;
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--red); color: var(--white); }

/* === DM Sans for all subtext / supporting copy ===
   Sub-headings, body paragraphs, AND small caption-style labels
   (stat labels, pill text, tags) all use DM Sans now.
   Mono is kept only for editorial accents:
     [ kickers in brackets ], "Section X / 13" indices, Q01/Q02 numbers,
     ✦ marquee separators, and "GET IT ON" / "DOWNLOAD ON THE" badge captions
     (mono there reads as part of the official store-badge styling). */
.sec-sub,
.lead,
.hero-sub,
.card-desc,
.bullet strong,
.bullet span,
.step h3,
.step p,
.reg-step h4,
.reg-step p,
.lang-card h4,
.lang-card p,
.faq summary,
.faq-body p,
.quote blockquote,
.zero-card p,
.role-text strong,
.store-pill-text strong,
.fab-opt-text strong,
.reel-meta strong,
.rp-stop strong,
.rp-meta strong,
/* === small caption labels === */
.intro-stats small,
.fp-stat small,
.zero-num span,
.route-stat span,
.route-time,
.rp-stop small,
.rp-meta small,
.reel-meta small,
.role-text small,
.track-meta,
.card-tag,
.lang-card .pill,
.feature-card .card-list li,
.zero-tag,
.commission-badge,
.route-tag,
.rp-tag,
.reel-badge,
.reg-tag,
.faq-num,
.quote figcaption small,
.footer-bottom,
.footer-bottom .muted,
.feedback p {
  font-family: var(--font-sub);
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ===== top scroll progress bar ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; z-index: 200;
}
.scroll-progress::before {
  content: ""; display: block; height: 100%;
  width: var(--p, 0%); background: linear-gradient(90deg, var(--red), var(--red-bright));
  transition: width 0.1s linear;
}

/* ===== loader ===== */
.page-loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0s 0.6s;
}
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-mark { font: 700 64px/1 var(--font-display); color: var(--red-bright); display: flex; align-items: flex-end; gap: 6px; }
.loader-bar { width: 0; height: 3px; background: var(--red-bright); animation: load 1.2s var(--ease-out) forwards; }
@keyframes load { to { width: 80px; } }

/* ===== custom cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  border-radius: 50%; z-index: 9000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-dot { width: 6px; height: 6px; background: var(--red-bright); }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.6); }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(234, 88, 12, 0.18); border-color: var(--red-bright); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ===== bg mesh ===== */
.bg-mesh { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.mesh-blob {
  position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.50;
  animation: float 24s ease-in-out infinite alternate;
}
.mesh-blob-1 { width: 540px; height: 540px; background: radial-gradient(circle, var(--red), transparent 70%); top: -10%; left: -10%; }
.mesh-blob-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--wine), transparent 70%); top: 30%; right: -15%; animation-delay: -7s; }
.mesh-blob-3 { width: 480px; height: 480px; background: radial-gradient(circle, var(--red-bright), transparent 70%); bottom: -15%; left: 30%; opacity: 0.32; animation-delay: -14s; }
@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55; mix-blend-mode: overlay;
}

/* ===== nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 28px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font: 700 22px/1 var(--font-display); letter-spacing: -0.02em; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-mark--img {
  background: transparent;
  overflow: hidden;
  padding: 0;
}
.logo-mark--img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.nav-logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); box-shadow: var(--shadow-glow-red); }
.logo-text { background: linear-gradient(180deg, #fff, rgba(255,255,255,0.7)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-soft);
  padding: 10px 14px; border-radius: 10px; position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 1px; background: var(--red-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* ===== TOP LANGUAGE PICKER (in nav) ===== */
.lang-top { position: relative; }
.lang-top-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  font: 600 12px/1 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-top-trigger svg { width: 14px; height: 14px; flex: 0 0 14px; }
.lang-top-trigger .lang-top-chev {
  width: 12px; height: 12px;
  transition: transform 0.3s var(--ease);
}
.lang-top-trigger:hover { color: var(--text); background: rgba(255, 255, 255, 0.09); border-color: var(--text-soft); }
.lang-top.open .lang-top-trigger {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: 0 6px 24px rgba(194, 65, 12, 0.45);
}
.lang-top.open .lang-top-chev { transform: rotate(180deg); }

.lang-top-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 260px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(10, 6, 4, 0.94);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 200;
}
.lang-top.open .lang-top-menu {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-top-head {
  margin: 6px 12px 8px;
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
}
.lang-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px;
  font: 500 14px/1 var(--font-body);
  color: var(--text-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
  font-family: var(--font-indic), var(--font-body);
  text-align: left;
}
.lang-opt:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.lang-opt.active {
  background: rgba(194, 65, 12, 0.20);
  color: var(--white);
  border: 1px solid var(--line-red);
}
.lang-opt small {
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.14em;
  color: var(--text-mute);
}
.lang-opt.active small { color: var(--red-bright); }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font: 600 14px/1 var(--font-body); letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 0 rgba(0,0,0,0.4), var(--shadow-glow-red);
}
.btn-primary:hover {
  transform: translateY(-2px); background: var(--red-bright);
  box-shadow: 0 8px 0 rgba(0,0,0,0.4), 0 0 80px rgba(234, 88, 12, 0.6);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--text-soft); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.nav-cta { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   STRUCTURE — sections, headers, dividers, scroll rail
   ============================================================ */

main { position: relative; }

/* alternating section backgrounds for clearer rhythm */
.sec {
  position: relative;
  padding: 110px 0 120px;
  border-bottom: 1px solid var(--line);
}
.sec.alt    { background: linear-gradient(180deg, rgba(194, 65, 12, 0.04), transparent 60%); }
.sec.tinted { background: var(--bg-section); }

/* large standardized section header */
.sec-head {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  align-items: start; margin-bottom: 60px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.sec-head .sec-num {
  font: 700 clamp(48px, 6vw, 88px)/0.9 var(--font-display);
  color: transparent; -webkit-text-stroke: 1px var(--red-bright);
  letter-spacing: -0.04em;
  flex: 0 0 auto;
  align-self: start;
  user-select: none;
}
.sec-head .sec-meta {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
}
.sec-meta-row {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
}
.sec-meta-row .sec-kicker { color: var(--red-bright); }
.sec-meta-row .sep { width: 24px; height: 1px; background: var(--line-strong); }
.sec-meta-row .sec-index { color: var(--text-mute); }
.sec-title {
  font: 600 clamp(32px, 4.6vw, 64px)/1 var(--font-display);
  letter-spacing: -0.03em; margin: 8px 0 0;
  max-width: 940px;
}
.sec-title em { font-style: normal; color: var(--red-bright); }
.sec-title .muted { color: var(--text-mute); }
.sec-sub {
  margin: 16px 0 0; max-width: 720px;
  font-size: clamp(14px, 1.05vw, 17px); line-height: 1.6; color: var(--text-soft);
}

/* inline kicker (legacy) */
.kicker {
  font: 500 12px/1 var(--font-mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red-bright); margin: 0 0 16px;
}

/* hairline section divider — used between content blocks within a section */
.hr-line {
  height: 1px; background: var(--line);
  margin: 50px 0; position: relative;
}
.hr-line::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 80px;
  background: var(--red);
}

/* ===== left scroll rail (desktop) ===== */
.sec-rail {
  position: fixed; top: 50%; left: 18px; transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 8px; border-radius: 999px;
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.rail-dot {
  position: relative;
  width: 12px; height: 12px; padding: 0;
  border-radius: 50%; background: transparent;
  border: 1px solid var(--line-strong);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  display: block;
}
.rail-dot:hover { border-color: var(--text-soft); transform: scale(1.2); }
.rail-dot[data-active="true"] {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 12px var(--red-bright);
}
.rail-dot::after {
  content: attr(data-label);
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  white-space: nowrap;
  padding: 5px 10px; border-radius: 6px;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(5, 5, 5, 0.92); color: var(--white);
  border: 1px solid var(--line);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.rail-dot:hover::after { opacity: 1; }
@media (max-width: 1080px) { .sec-rail { display: none; } }

/* ============================================================
   3-WAY ROLE TOGGLE — drives mode-based visibility
   ============================================================ */
.role-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
  width: 100%;
  max-width: 920px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.role-btn {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text-soft);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
  overflow: hidden;
}
.role-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-2px);
}
.role-btn.active {
  background: linear-gradient(135deg, var(--red), var(--wine));
  border-color: var(--red-bright);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(194, 65, 12, 0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.role-btn.active::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px 100px at 50% -50%, rgba(255,255,255,0.25), transparent 60%);
  mix-blend-mode: overlay;
}
.role-icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.role-icon svg { width: 22px; height: 22px; color: currentColor; }
.role-btn.active .role-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.role-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.role-text strong {
  display: block;
  font: 600 15px/1.2 var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: inherit;
}
.role-text small {
  display: block;
  font: 500 11px/1.3 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.role-btn.active .role-text small { color: rgba(255,255,255,0.78); }
.role-check {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  position: relative; z-index: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.role-btn.active .role-check {
  background: var(--white); border-color: var(--white);
}
.role-btn.active .role-check::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg) translate(0, -1px);
}

/* mode-based section/element visibility */
[data-mode="shipper"]  [data-modes]:not([data-modes~="shipper"]):not([data-modes~="all"])   { display: none !important; }
[data-mode="driver"]   [data-modes]:not([data-modes~="driver"]):not([data-modes~="all"])    { display: none !important; }
[data-mode="download"] [data-modes]:not([data-modes~="download"]):not([data-modes~="all"])  { display: none !important; }

/* mode transition — fade visible content gently */
main { transition: opacity 0.25s var(--ease); }
main.swapping { opacity: 0.4; }

/* ===== HERO (sec 01) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: grid; gap: 28px; position: relative;
}
.hero-rule {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 4px;
}
.hero-rule::before, .hero-rule::after { content: ""; height: 1px; background: var(--line); }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-soft);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  width: fit-content;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright);
  box-shadow: 0 0 16px var(--red-bright);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; transform: scale(1.2); } }

.hero-title {
  font: 700 clamp(44px, 8vw, 124px)/0.9 var(--font-display);
  letter-spacing: -0.04em; margin: 0; max-width: 1100px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }
.accent-text {
  background: linear-gradient(120deg, var(--red-bright) 0%, var(--white) 50%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%;
  animation: shift 8s ease-in-out infinite;
}
@keyframes shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; max-width: 640px; color: var(--text-soft); margin: 8px 0 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-visual {
  position: relative; margin-top: 36px;
  display: grid; grid-template-columns: 1fr; gap: 16px; justify-items: end;
}
.route-card {
  width: 100%; max-width: 520px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); padding: 22px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.route-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at top right, rgba(234, 88, 12, 0.22), transparent 60%);
  pointer-events: none;
}
.route-card-head {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 22px;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); animation: pulse 1.4s ease-in-out infinite; }
.route-status { color: var(--text-soft); }
.route-tag { margin-left: auto; padding: 4px 10px; border-radius: 999px; background: var(--red); color: var(--white); font-weight: 600; }
.route-line { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.route-stop { display: flex; align-items: center; gap: 12px; }
.route-stop.end { flex-direction: row-reverse; text-align: right; }
.route-pin {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--wine); color: var(--white); font-weight: 700;
  box-shadow: 0 0 0 4px rgba(124, 45, 18, 0.35);
}
.route-stop.end .route-pin { background: var(--red); box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.30); }
.route-city { display: block; font-weight: 600; font-size: 15px; }
.route-time { font-size: 11px; color: var(--text-mute); font-family: var(--font-mono); letter-spacing: 0.06em; }
.route-track { position: relative; height: 40px; color: var(--text-soft); }
.route-track svg { width: 100%; height: 100%; display: block; }
.moving-truck {
  position: absolute; top: 50%; left: 0;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  color: var(--red-bright);
  animation: drive 4.5s var(--ease-out) infinite;
}
.moving-truck svg { width: 100%; height: 100%; }
@keyframes drive { 0% { left: 0%; } 100% { left: 100%; } }
.route-card-foot {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
}
.route-stat { display: flex; flex-direction: column; gap: 2px; }
.route-stat strong { font: 600 18px/1 var(--font-display); }
.route-stat span { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }

.chip {
  position: absolute;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  animation: bob 6s ease-in-out infinite;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chip:hover {
  background: rgba(194, 65, 12, 0.22);
  border-color: var(--red-bright);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(194, 65, 12, 0.35);
}
/* flash animation for the target feature card after a chip click */
.feature-card.flash {
  animation: cardFlash 1.6s var(--ease-out);
}
@keyframes cardFlash {
  0%   { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); border-color: var(--line); }
  20%  { box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.55), 0 0 60px rgba(234, 88, 12, 0.45); border-color: var(--red-bright); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); border-color: var(--line); }
}
.chip-1 { left: 0; top: 8%; animation-delay: 0s; }
.chip-2 { left: 5%; bottom: 18%; animation-delay: -2s; }
.chip-3 { left: 22%; top: 50%; animation-delay: -4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.marquee-wrap {
  margin-top: 70px; padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: inline-flex; gap: 36px; align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font: 600 clamp(20px, 2.6vw, 36px)/1 var(--font-display);
  letter-spacing: -0.02em; color: var(--text);
}
.marquee-track i { font-style: normal; color: var(--red-bright); font-size: clamp(14px, 1.4vw, 20px); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== ZERO CHARGES (sec 02) ===== */
.zero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--wine) 60%, #1a0307 100%);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-glow-red);
}
.zero-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 200px at 110% -10%, rgba(255,255,255,0.18), transparent 60%);
  mix-blend-mode: overlay;
}
.zero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 18px;
}
.zero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); box-shadow: 0 0 16px var(--white); }
.zero-card h3 {
  font: 700 clamp(32px, 4.4vw, 56px)/1 var(--font-display);
  letter-spacing: -0.03em; margin: 0 0 14px; color: var(--white);
}
.zero-card h3 strong { color: var(--white); }
.zero-card h3 em { font-style: normal; background: linear-gradient(135deg, #fff, rgba(255,255,255,0.5)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.zero-card p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 16px; line-height: 1.55; max-width: 560px; }
.zero-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zero-num {
  position: relative; padding: 22px 20px; border-radius: var(--r-md);
  background: rgba(0,0,0,0.32); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.zero-num strong {
  display: block; font: 700 48px/1 var(--font-display);
  letter-spacing: -0.04em; color: var(--white);
}
.zero-num span {
  display: block; margin-top: 6px;
  font: 500 11px/1.3 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===== INTRO (sec 03) ===== */
.intro-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: end; padding-top: 8px; }
.section-title {
  font: 600 clamp(34px, 5vw, 64px)/1 var(--font-display);
  letter-spacing: -0.03em; margin: 0;
}
.section-title .text-muted { color: var(--text-mute); }
.lead { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; color: var(--text-soft); margin: 0; max-width: 600px; }
.intro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.intro-stats .num { font: 600 44px/1 var(--font-display); letter-spacing: -0.02em; color: var(--red-bright); display: block; }
.intro-stats small { font-family: var(--font-mono); color: var(--text-mute); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== FEATURE CARDS (sec 04) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; padding: 32px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  overflow: hidden; isolation: isolate;
  min-height: 380px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), background 0.4s var(--ease);
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-red);
  background: linear-gradient(180deg, rgba(194, 65, 12, 0.10), rgba(255,255,255,0.02));
}
.card-glow {
  position: absolute; inset: -2px; z-index: -1; border-radius: inherit;
  background: conic-gradient(from 90deg at 50% 50%, transparent, var(--red-bright), transparent 30%);
  opacity: 0; transition: opacity 0.5s var(--ease); filter: blur(8px);
}
.feature-card:hover .card-glow { opacity: 0.65; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease);
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon.insta  { color: var(--red-bright); background: rgba(234, 88, 12, 0.15); }
.card-icon.direct { color: var(--white);      background: rgba(255, 255, 255, 0.08); }
.card-icon.market { color: var(--red);        background: rgba(124, 45, 18, 0.45); }
.feature-card:hover .card-icon { transform: rotate(-6deg) scale(1.05); }
.card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--text-mute); text-transform: uppercase; }
.card-title { font: 600 26px/1.05 var(--font-display); letter-spacing: -0.02em; margin: 4px 0 6px; }
.card-desc { font-size: 14px; line-height: 1.55; color: var(--text-soft); margin: 0; }
.card-list { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 8px; }
.card-list li { font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 10px; color: var(--text-soft); }
.card-list li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--red-bright); flex: 0 0 14px;
  box-shadow: inset 0 0 0 3px var(--bg);
}
.card-arrow {
  position: absolute; top: 28px; right: 24px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--text-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.5s var(--ease);
}
.feature-card:hover .card-arrow { background: var(--red); color: var(--white); border-color: var(--red); transform: rotate(-45deg); }

/* ===== TRANSPORTERS (sec 05) ===== */
.transporter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.commission-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: linear-gradient(120deg, var(--red), var(--wine));
  color: var(--white); font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-glow-red);
  margin-bottom: 18px;
}
.commission-badge::before { content: "₹0"; font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.transporter-text .lead { margin: 18px 0 32px; }
.bullet-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.bullet {
  display: flex; gap: 18px; padding: 18px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.bullet:hover { transform: translateX(4px); border-color: var(--red); }
.bullet-num { font: 600 14px/1 var(--font-mono); color: var(--red-bright); flex: 0 0 auto; padding-top: 4px; }
.bullet strong { display: block; font: 600 16px/1.3 var(--font-display); margin-bottom: 4px; }
.bullet span { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

.transporter-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.route-publish-card {
  width: 100%; max-width: 440px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl); padding: 28px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.rp-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; }
.rp-tag { background: var(--red); color: #fff; padding: 5px 12px; border-radius: 999px; font: 600 10px/1 var(--font-mono); letter-spacing: 0.16em; }
.rp-time { font: 500 11px/1 var(--font-mono); color: var(--text-mute); }
.rp-route { display: flex; flex-direction: column; gap: 10px; padding: 18px; border-radius: var(--r-md); background: rgba(255,255,255,0.03); }
.rp-stop { display: flex; gap: 14px; align-items: center; }
.rp-stop strong { display: block; font: 600 16px/1.2 var(--font-display); }
.rp-stop small { font-size: 11px; color: var(--text-mute); font-family: var(--font-mono); letter-spacing: 0.08em; }
.rp-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--text-mute); flex: 0 0 12px; }
.rp-dot.active { background: var(--red-bright); border-color: var(--red-bright); box-shadow: 0 0 14px var(--red-bright); }
.rp-line { width: 2px; height: 30px; background: linear-gradient(180deg, var(--red-bright), var(--wine)); margin-left: 5px; }
.rp-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.rp-meta small { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.rp-meta strong { font: 600 16px/1 var(--font-display); }
.rp-pings { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.rp-pings p { margin: 0; font-size: 13px; color: var(--text-soft); }
.ping-avatars { display: flex; }
.ping-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: grid; place-items: center; font: 600 12px/1 var(--font-display); color: #fff;
}
.ping-avatars span:first-child { margin-left: 0; }

.orbit {
  position: absolute; inset: 0; pointer-events: none;
  border: 1px dashed var(--line);
  border-radius: 50%;
  width: 90%; height: 90%; margin: auto; top: 0; bottom: 0; left: 0; right: 0;
  animation: spin 30s linear infinite;
}
.orbit::before { content: ""; position: absolute; inset: -40px; border: 1px dashed var(--line); border-radius: 50%; }
.orbit-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--red-bright); top: -6px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 16px var(--red-bright);
}
.orbit-dot:nth-child(2) { background: var(--wine); top: 50%; left: -6px; transform: translateY(-50%); box-shadow: 0 0 16px var(--wine); }
.orbit-dot:nth-child(3) { background: var(--white); bottom: -6px; top: auto; left: 30%; box-shadow: 0 0 16px rgba(255,255,255,0.7); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== INSTAGRAM REEL CARD (in registration section) ===== */
.reel-card {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 18px 14px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.16), rgba(124, 45, 18, 0.10));
  border: 1px solid var(--line-red);
  color: var(--text);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease), background 0.4s var(--ease);
  max-width: 460px;
}
.reel-card:hover {
  transform: translateY(-3px);
  border-color: var(--red-bright);
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.26), rgba(124, 45, 18, 0.16));
}
.reel-play {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 18px rgba(194, 65, 12, 0.5);
  position: relative;
}
.reel-play svg { width: 18px; height: 18px; margin-left: 2px; }
.reel-play::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--red);
  animation: reelPulse 2s ease-out infinite;
}
@keyframes reelPulse {
  0%   { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.reel-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.reel-meta strong { font: 600 14px/1.2 var(--font-display); letter-spacing: -0.01em; }
.reel-meta small { font: 500 11px/1 var(--font-mono); color: var(--text-mute); letter-spacing: 0.06em; }
.reel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  font: 600 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); white-space: nowrap;
}
.reel-badge svg { width: 14px; height: 14px; }

/* ===== VEHICLE REGISTRATION SECTION ===== */
.reg-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.reg-visual {
  position: sticky; top: 100px;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(194, 65, 12, 0.18), rgba(124, 45, 18, 0.10));
  border: 1px solid var(--line-strong);
  padding: 36px 28px;
  display: grid; place-items: center;
  min-height: 380px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.reg-visual img {
  width: 100%; max-width: 360px; height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: bobReg 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes bobReg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.reg-visual-fallback {
  position: absolute; inset: 0;
  place-items: center;
  z-index: 1; opacity: 0.55;
}
.reg-visual-fallback svg { width: 70%; max-width: 320px; height: auto; }
.reg-pulse {
  position: absolute; top: 24px; right: 24px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
  animation: pulseRing 2.4s ease-out infinite;
  z-index: 3;
}
.reg-tag {
  position: absolute; bottom: 22px; left: 22px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--white); color: var(--red);
  font: 700 11px/1 var(--font-mono); letter-spacing: 0.16em;
  z-index: 3;
}
.reg-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.reg-step {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.reg-step:hover {
  transform: translateX(6px);
  border-color: var(--line-red);
  background: linear-gradient(180deg, rgba(194, 65, 12, 0.08), rgba(255,255,255,0.02));
}
.reg-step.highlight {
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.20), rgba(124, 45, 18, 0.12));
  border-color: var(--red);
}
.reg-num {
  font: 700 24px/1 var(--font-display);
  color: transparent; -webkit-text-stroke: 1.5px var(--red-bright);
  letter-spacing: -0.04em;
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(194, 65, 12, 0.10);
  border: 1px solid var(--line-red);
}
.reg-step.highlight .reg-num {
  background: var(--red); color: var(--white);
  -webkit-text-stroke: 0; border-color: var(--red);
}
.reg-step h4 {
  margin: 0 0 4px;
  font: 600 17px/1.2 var(--font-display);
  letter-spacing: -0.01em;
  font-family: var(--font-indic), var(--font-display);
}
.reg-step p {
  margin: 0;
  font-size: 14px; line-height: 1.5;
  color: var(--text-soft);
  font-family: var(--font-indic), var(--font-body);
}
.reg-icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 22px; line-height: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.reg-step:hover .reg-icon { background: rgba(194, 65, 12, 0.18); border-color: var(--red); transform: scale(1.08) rotate(-4deg); }
.reg-step.highlight .reg-icon { background: var(--white); border-color: var(--white); }
.reg-cta { margin-top: 36px; }

/* hero vehicle accents (3 floating PNGs in the hero) */
.hero-vehicle {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-vehicle--truck {
  right: -30px; top: 110px;
  width: 240px;
  opacity: 0.95;
  animation: floatTruck 9s ease-in-out infinite;
}
.hero-vehicle--tuktuk {
  right: 240px; top: 60px;
  width: 170px;
  opacity: 0.92;
  animation: floatTuktuk 11s ease-in-out infinite;
  animation-delay: -2.5s;
}
.hero-vehicle--bike {
  right: 110px; top: 320px;
  width: 160px;
  opacity: 0.93;
  animation: floatBike 10s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatTruck {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  35%      { transform: translate(-6px, -16px) rotate(0.5deg); }
  65%      { transform: translate(4px, 8px) rotate(-1.5deg); }
}
@keyframes floatTuktuk {
  0%, 100% { transform: translate(0, 0) rotate(2deg) scale(1); }
  40%      { transform: translate(-12px, 14px) rotate(-1deg) scale(1.02); }
  70%      { transform: translate(8px, -10px) rotate(3deg) scale(0.98); }
}
@keyframes floatBike {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  30%      { transform: translate(8px, -12px) rotate(0deg); }
  60%      { transform: translate(-6px, 6px) rotate(-4deg); }
}
@media (max-width: 1280px) {
  .hero-vehicle--tuktuk { right: 200px; top: 40px; width: 140px; }
  .hero-vehicle--bike   { right: 80px;  top: 320px; width: 130px; }
}
@media (max-width: 1080px) {
  .hero-vehicle { display: none; }
}

/* === Floating "Lozy" text decorations in the hero === */
.lozy-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  user-select: none;
  will-change: transform, opacity;
}
.lozy-float i {
  font-style: normal;
  color: var(--red-bright);
  margin-left: 4px;
}
/* big outlined Lozy near the truck */
.lozy-float--1 {
  right: 120px; top: 40px;
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  opacity: 0.45;
  animation: lozyDrift 14s ease-in-out infinite;
}
/* solid orange Lozy mid-area */
.lozy-float--2 {
  right: 360px; top: 220px;
  font-size: 36px;
  color: var(--red-bright);
  opacity: 0.55;
  transform: rotate(-8deg);
  animation: lozyPulse 7s ease-in-out infinite;
  animation-delay: -1.5s;
}
/* small white italic Lozy near the bike */
.lozy-float--3 {
  right: 320px; top: 380px;
  font-size: 28px;
  color: var(--white);
  font-style: italic;
  opacity: 0.4;
  animation: lozyOrbit 11s linear infinite;
  animation-delay: -3s;
}
/* tiny outlined Lozy in the corner */
.lozy-float--4 {
  right: 60px; top: 480px;
  font-size: 22px;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-soft);
  opacity: 0.5;
  letter-spacing: 0.4em;
  animation: lozySway 9s ease-in-out infinite;
  animation-delay: -5s;
}
/* gradient Lozy with a · accent, bottom-right */
.lozy-float--5 {
  right: 480px; top: 100px;
  font-size: 30px;
  background: linear-gradient(120deg, var(--red-bright), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  opacity: 0.7;
  animation: lozyTilt 8s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes lozyDrift {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  35%      { transform: translate(-18px, -12px) rotate(-1deg); }
  70%      { transform: translate(12px, 14px) rotate(-6deg); }
}
@keyframes lozyPulse {
  0%, 100% { transform: rotate(-8deg) scale(1);    opacity: 0.55; }
  50%      { transform: rotate(-12deg) scale(1.1); opacity: 0.85; }
}
@keyframes lozyOrbit {
  0%   { transform: translate(0, 0)    rotate(0deg);  opacity: 0.4; }
  25%  { transform: translate(-14px, -10px) rotate(-6deg); opacity: 0.65; }
  50%  { transform: translate(0, -20px) rotate(0deg);  opacity: 0.4; }
  75%  { transform: translate(14px, -10px) rotate(6deg); opacity: 0.65; }
  100% { transform: translate(0, 0)    rotate(0deg);  opacity: 0.4; }
}
@keyframes lozySway {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50%      { transform: translate(-10px, -8px) rotate(-2deg); }
}
@keyframes lozyTilt {
  0%, 100% { transform: translate(0, 0) rotate(6deg); opacity: 0.7; }
  50%      { transform: translate(8px, -14px) rotate(2deg); opacity: 1; }
}

@media (max-width: 1280px) {
  .lozy-float--1 { right: 80px; top: 30px; font-size: 64px; }
  .lozy-float--2 { right: 300px; top: 210px; font-size: 30px; }
  .lozy-float--3 { right: 280px; top: 360px; font-size: 24px; }
  .lozy-float--5 { right: 400px; top: 90px; font-size: 24px; }
}
@media (max-width: 1080px) { .lozy-float { display: none; } }

/* ===== HOW IT WORKS (sec 06) ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 36px 28px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--red); }
.step-num {
  font: 600 60px/1 var(--font-display); letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px var(--red-bright);
  margin-bottom: 6px;
}
.step h3 { font: 600 22px/1.2 var(--font-display); margin: 0; letter-spacing: -0.02em; }
.step p { font-size: 14px; line-height: 1.5; color: var(--text-soft); margin: 0; }
.step-art { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px dashed var(--line); }
.art-pill { padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); font-size: 12px; border: 1px solid var(--line); }
.chat-art { flex-direction: column; align-items: stretch; }
.bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; max-width: 80%; font-family: var(--font-mono); }
.bubble.in  { background: rgba(255,255,255,0.06); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.out { background: var(--red); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble.typing { display: inline-flex; gap: 4px; padding: 14px; }
.bubble.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-soft); animation: typing 1.2s ease-in-out infinite; }
.bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
.track-art { flex-direction: column; gap: 8px; }
.track-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.track-fill { width: 65%; height: 100%; background: linear-gradient(90deg, var(--wine), var(--red-bright)); border-radius: 999px; animation: fill 2.4s var(--ease-out) infinite alternate; }
@keyframes fill { from { width: 0; } to { width: 78%; } }
.track-meta { display: flex; justify-content: space-between; font: 500 11px/1 var(--font-mono); color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== LANGUAGES (sec 07) ===== */
.lang-switch {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 6px; margin-bottom: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  width: fit-content; max-width: 100%;
}
.lang-btn {
  padding: 10px 16px; border-radius: 999px;
  font: 500 14px/1 var(--font-body);
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--red); color: var(--white); box-shadow: 0 6px 20px rgba(194, 65, 12, 0.45); }
.lang-btn span.tiny {
  display: block; font: 500 9px/1 var(--font-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 3px; opacity: 0.6;
}

.lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lang-card {
  padding: 28px 26px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(194, 65, 12, 0.10), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease);
}
.lang-card:hover { transform: translateY(-4px); border-color: var(--line-red); }
.lang-card.featured { grid-column: span 2; background: linear-gradient(135deg, rgba(194, 65, 12, 0.22), rgba(124, 45, 18, 0.18)); }
.lang-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-strong);
  font-size: 22px;
}
.lang-card h4 {
  margin: 0; font: 600 22px/1.15 var(--font-display);
  letter-spacing: -0.01em;
  font-family: var(--font-indic), var(--font-display);
}
.lang-card p {
  margin: 0; font-size: 15px; line-height: 1.55;
  color: var(--text-soft);
  font-family: var(--font-indic), var(--font-body);
}
.lang-card .pill {
  display: inline-flex; align-self: flex-start;
  padding: 4px 10px; border-radius: 999px;
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); color: var(--text-soft);
}
.lang-note {
  margin-top: 28px; padding: 18px 22px;
  border-radius: var(--r-md);
  border: 1px dashed var(--line-strong);
  color: var(--text-soft); font-size: 14px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.lang-note strong { color: var(--white); }
.lang-grid.swapping .lang-card { opacity: 0; transform: translateY(8px); transition: none; }
.lang-grid .lang-card { transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.4s var(--ease); }

/* ===== APP SHOWCASE (sec 08) ===== */
.screens {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  align-items: center; padding: 0 4px;
}
.screen {
  position: relative; aspect-ratio: 9/19;
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease);
  animation: floatY 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.6s);
}
.screen.featured { transform: translateY(-30px); }
.screen img { width: 100%; height: 100%; object-fit: cover; }
.screen:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-lg); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== FOOTPRINT (sec 09) ===== */
.footprint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px; align-items: center;
  max-width: 920px;
}
.footprint-text .lead { margin: 18px 0 32px; }
.footprint-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.fp-stat strong { font: 600 44px/1 var(--font-display); letter-spacing: -0.02em; color: var(--red-bright); display: block; }
.fp-stat small { font: 500 11px/1 var(--font-mono); color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.footprint-map {
  position: relative;
  padding: 24px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(600px 400px at 50% 50%, rgba(194, 65, 12, 0.12), transparent 70%),
    rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
}
.india-map-svg {
  width: 100%; max-width: 480px; height: auto;
  display: block;
  position: relative; z-index: 2;
}
.india-base {
  fill: rgba(194, 65, 12, 0.05);
  stroke: rgba(234, 88, 12, 0.45);
  stroke-width: 2.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.india-sweep {
  fill: none;
  stroke: url(#indiaSweepGrad);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 380 12000;
  filter: drop-shadow(0 0 6px rgba(234, 88, 12, 0.8))
          drop-shadow(0 0 14px rgba(234, 88, 12, 0.45));
  animation: indiaSweep 8s linear infinite;
  vector-effect: non-scaling-stroke;
}
@keyframes indiaSweep {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -12380; }
}

/* Ambient glow drifting behind the map */
.map-glow {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: radial-gradient(180px 180px at 50% 50%, rgba(234, 88, 12, 0.45), transparent 70%);
  opacity: 0.6;
  filter: blur(20px);
  animation: mapGlowDrift 10s ease-in-out infinite;
}
@keyframes mapGlowDrift {
  0%, 100% { transform: translate(-30%, -30%); }
  25%      { transform: translate(20%, -10%); }
  50%      { transform: translate(30%, 25%); }
  75%      { transform: translate(-10%, 30%); }
}

/* ===== TESTIMONIALS (sec 10) ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  margin: 0; padding: 32px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: 8px; right: 22px;
  font: 700 80px/1 var(--font-display); color: var(--red-bright); opacity: 0.25;
}
.quote blockquote { margin: 0; font: 500 18px/1.55 var(--font-display); letter-spacing: -0.01em; color: var(--text); }
.quote figcaption { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.quote figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.quote figcaption strong { display: block; font-weight: 600; font-size: 14px; }
.quote figcaption small { font-size: 12px; color: var(--text-mute); font-family: var(--font-mono); }

/* ===== FAQ (sec 11) ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 920px; }
.faq {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq[open] { background: rgba(194, 65, 12, 0.08); border-color: var(--red); }
.faq.highlight {
  background: linear-gradient(135deg, rgba(194,65,12,0.22), rgba(124,45,18,0.12));
  border-color: var(--line-red);
}
.faq.highlight summary { color: var(--white); font-weight: 600; }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font: 500 16px/1.4 var(--font-display); letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-num {
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-right: 10px;
}
.faq-icon { width: 22px; height: 22px; flex: 0 0 22px; position: relative; transition: transform 0.4s var(--ease); }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--red-bright); border-radius: 2px;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.4s var(--ease); }
.faq[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body { padding: 0 24px 22px; color: var(--text-soft); }
.faq-body p { margin: 0; line-height: 1.6; font-size: 14px; }
.faq-body strong { color: var(--white); }

/* ===== CTA (sec 12) ===== */
.cta-card {
  position: relative; overflow: hidden;
  padding: 68px 64px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 40%, var(--wine) 100%);
  color: var(--white);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow-glow-red);
}
.cta-card h2 { font: 700 clamp(32px, 4.5vw, 56px)/1 var(--font-display); letter-spacing: -0.03em; margin: 0 0 12px; }
.cta-card p { font-size: 17px; line-height: 1.5; color: rgba(255,255,255,0.82); margin: 0; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-actions .btn-primary { background: var(--white); color: var(--red); box-shadow: none; }
.cta-actions .btn-primary:hover { background: #f5f5f5; box-shadow: 0 0 60px rgba(255,255,255,0.4); }
.store-badge img { height: 56px; width: auto; }

/* ===== STORE BADGES (Google Play / Apple App Store) ===== */
.store-badges {
  display: inline-flex; flex-wrap: wrap;
  gap: 10px; align-items: center;
}
.hero-stores {
  margin-top: 20px;
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
}
.store-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 12px;
  background: #050505; color: var(--white);
  border: 1px solid var(--line-strong);
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease), background 0.3s var(--ease);
  min-width: 168px;
}
.store-pill:hover {
  transform: translateY(-2px);
  border-color: var(--text-soft);
  background: #0E0908;
}
.store-pill-ic {
  width: 26px; height: 26px; flex: 0 0 26px;
  display: grid; place-items: center;
}
.store-pill-ic svg { width: 24px; height: 24px; }
.store-pill-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.store-pill-text small {
  font: 500 9px/1 var(--font-mono);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.store-pill-text strong {
  font: 600 16px/1 var(--font-display);
  letter-spacing: -0.01em;
}
.store-pill-tag {
  position: absolute; top: -8px; right: -8px;
  padding: 3px 8px; border-radius: 999px;
  font: 600 9px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.45);
  white-space: nowrap;
}
.store-pill--apple .store-pill-ic { color: var(--white); }
.store-pill--inverted {
  background: var(--white); color: var(--text-dark);
  border-color: var(--white);
}
.store-pill--inverted:hover { background: #f5f5f5; border-color: #f5f5f5; }
.store-pill--inverted .store-pill-text small { color: rgba(5, 5, 5, 0.6); }
.store-pill--inverted .store-pill--apple,
.store-pill--inverted.store-pill--apple .store-pill-ic { color: var(--text-dark); }
.store-pill--inverted .store-pill-tag { background: var(--text-dark); color: var(--white); }
@media (max-width: 460px) {
  .store-pill { min-width: 0; padding: 9px 14px 9px 12px; }
  .store-pill-text strong { font-size: 14px; }
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(800px 200px at 0% 100%, rgba(0, 0, 0, 0.45), transparent 60%),
    radial-gradient(600px 200px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
  mix-blend-mode: overlay;
}
.cta-card > * { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { color: var(--text-soft); font-size: 14px; line-height: 1.55; margin: 16px 0 0; max-width: 320px; }
.footer h5 {
  font: 500 12px/1 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute); margin: 0 0 18px;
}
.footer-grid > div > a {
  display: block; padding: 6px 0; font-size: 14px; color: var(--text-soft);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-grid > div > a:hover { color: var(--red-bright); transform: translateX(4px); }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--line-strong);
  font: 400 13px/1 var(--font-body);
  outline: none; transition: border-color 0.3s var(--ease);
}
.newsletter input:focus { border-color: var(--red-bright); }
.newsletter button {
  padding: 12px 16px; border-radius: 10px;
  background: var(--red); color: var(--white);
  font: 600 13px/1 var(--font-body);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.newsletter button:hover { transform: translateY(-2px); background: var(--red-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-mute);
}
.footer-bottom .muted { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ===== STORE PICKER MODAL ===== */
.store-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.store-modal.open { opacity: 1; pointer-events: auto; }
.store-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 3, 2, 0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.store-modal-card {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(20, 10, 5, 0.98), rgba(10, 5, 3, 0.95));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 80px rgba(194, 65, 12, 0.18);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s var(--ease-out);
}
.store-modal.open .store-modal-card { transform: translateY(0) scale(1); }
.store-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.store-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg);
}
.store-modal-close svg { width: 16px; height: 16px; }
.store-modal-kicker {
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-bright); margin: 0 0 10px;
}
.store-modal-card h3 {
  font: 700 26px/1.1 var(--font-display); letter-spacing: -0.02em;
  margin: 0 0 8px;
  max-width: 320px;
}
.store-modal-sub {
  font-size: 14px; color: var(--text-soft); margin: 0 0 24px; line-height: 1.5;
}
.store-modal-options {
  display: flex; flex-direction: column; gap: 10px;
}
.store-modal-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.store-modal-option:hover {
  background: rgba(194, 65, 12, 0.12);
  border-color: var(--red-bright);
  transform: translateX(3px);
}
.store-modal-option .ic {
  width: 32px; height: 32px; flex: 0 0 32px;
  display: grid; place-items: center;
}
.store-modal-option .ic.apple { color: var(--white); }
.store-modal-option .ic svg { width: 30px; height: 30px; }
.store-modal-option .meta {
  flex: 1; display: flex; flex-direction: column; gap: 3px; line-height: 1; min-width: 0;
}
.store-modal-option .meta small {
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.18em;
  color: var(--text-mute); text-transform: uppercase;
}
.store-modal-option .meta strong {
  font: 600 16px/1.1 var(--font-display); letter-spacing: -0.01em;
}
.store-modal-option .arrow {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--text-mute);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.store-modal-option:hover .arrow {
  color: var(--red-bright); transform: translateX(4px);
}

body.modal-open { overflow: hidden; }

/* ===== STICKY DOWNLOAD FAB (with store picker) ===== */
.fab {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 80;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-out);
  display: flex; flex-direction: column; align-items: flex-end;
}
.fab.show { transform: translateY(0); }
.fab-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-radius: 999px;
  background: var(--red); color: var(--white);
  font: 600 14px/1 var(--font-body);
  border: none; cursor: pointer;
  box-shadow: 0 14px 40px rgba(194, 65, 12, 0.55), 0 0 0 1px rgba(255,255,255,0.12);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.fab-trigger:hover { background: var(--red-bright); transform: translateY(-2px); }
.fab-dl-ic { width: 16px; height: 16px; }
.fab-chev {
  width: 14px; height: 14px;
  transition: transform 0.35s var(--ease);
  opacity: 0.85;
}
.fab.open .fab-chev { transform: rotate(180deg); }

.fab-menu {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(10, 6, 4, 0.96);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  min-width: 280px; max-width: calc(100vw - 44px);
  opacity: 0; pointer-events: none;
  transform: translateY(8px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.fab.open .fab-menu {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.fab-menu-head {
  margin: 6px 12px 8px;
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
}
.fab-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  color: var(--text);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.fab-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  transform: translateX(2px);
}
.fab-opt-ic {
  width: 30px; height: 30px; flex: 0 0 30px;
  display: grid; place-items: center;
}
.fab-opt-ic.apple { color: var(--white); }
.fab-opt-ic svg { width: 28px; height: 28px; }
.fab-opt-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.fab-opt-text small {
  font: 500 9px/1 var(--font-mono); letter-spacing: 0.18em;
  color: var(--text-mute); text-transform: uppercase;
}
.fab-opt-text strong {
  font: 600 15px/1 var(--font-display); letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.fab-opt-text strong em {
  font-style: normal;
  font: 600 9px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 999px;
  background: var(--red); color: var(--white);
}
.fab-opt-arrow {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--text-mute);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.fab-opt:hover .fab-opt-arrow { color: var(--red-bright); transform: translateX(3px); }

@media (min-width: 760px) { .fab { display: none; } }

/* ===== reveal animations ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in  { opacity: 1; transform: none; }

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.hero-title .line.in .word { transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .role-switch { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .transporter-grid, .intro-grid, .footprint-grid { grid-template-columns: 1fr; gap: 36px; }
  .screens { grid-template-columns: repeat(3, 1fr); }
  .screens .screen:nth-child(n+4) { display: none; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .lang-card.featured { grid-column: span 2; }
  .zero-card { grid-template-columns: 1fr; padding: 40px 32px; }
  .reg-layout { grid-template-columns: 1fr; gap: 30px; }
  .reg-visual { position: relative; top: 0; min-height: 280px; }
}

@media (max-width: 760px) {
  .container, .hero-inner { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 18px 20px;
    background: rgba(5, 5, 5, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  }
  .nav.open .nav-links a { padding: 14px 16px; border-radius: 10px; }
  .nav-cta { display: none; }
  .lang-top { margin-left: auto; }
  .lang-top-trigger { padding: 8px 10px; font-size: 11px; }
  .lang-top-menu { right: -8px; width: 240px; }
  .nav-toggle {
    display: grid; place-items: center; gap: 5px;
    margin-left: auto; width: 40px; height: 40px;
    border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  }
  .nav-toggle span { width: 18px; height: 2px; background: var(--text); display: block; transition: transform 0.3s var(--ease); }
  .nav.open .nav-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav.open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { min-height: auto; padding: 120px 0 40px; }
  .role-switch { grid-template-columns: 1fr; gap: 8px; }
  .role-btn { padding: 14px 16px; }
  .hero-visual { margin-top: 28px; justify-items: stretch; }
  .chip-1 { left: -4px; top: -10px; }
  .chip-2 { left: auto; right: 0; top: 50%; bottom: auto; }
  .chip-3 { display: none; }
  .marquee-wrap { margin-top: 50px; }

  .sec { padding: 80px 0 90px; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; padding-bottom: 24px; }
  .cards-grid { grid-template-columns: 1fr; }

  .lang-grid { grid-template-columns: 1fr; }
  .lang-card.featured { grid-column: span 1; }

  .cta-card { padding: 44px 28px; grid-template-columns: 1fr; text-align: left; }
  .cta-actions { align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .screens { grid-template-columns: repeat(2, 1fr); }
  .screens .screen:nth-child(n+3) { display: none; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .quote { padding: 26px 22px; }
  .feature-card { padding: 26px 22px; min-height: auto; }
  .step { padding: 28px 22px; min-height: auto; }
  .route-card { padding: 18px; }
  .route-card-foot { grid-template-columns: 1fr; gap: 8px; }
  .intro-stats, .footprint-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .intro-stats .num, .fp-stat strong { font-size: 32px; }
  .zero-num strong { font-size: 36px; }
  .zero-numbers { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .moving-truck, .marquee-track, .orbit, .mesh-blob { animation: none !important; }
}
