/* ================================================================
   Reading Transport v3 — UBER / HUD aesthetic
   Cool blue-black canvas, one lime-green accent, sharp 1px borders,
   Inter + JetBrains Mono, full-bleed, edge-to-edge.
   ================================================================ */

:root {
  --bg: #0a0d0e;
  --bg-elev: #0f1213;
  --bg-row: #0c1011;
  --border: #1d2123;
  --border-hi: #C8FFD6;
  --fg: #e8eced;
  --fg-mute: #7a8285;
  --fg-dim: #6b7376;
  --accent: #C8FFD6;
  --accent-2: #7DFFA2;
  --accent-soft: rgba(200, 255, 214, 0.08);
  --accent-glow: rgba(200, 255, 214, 0.32);
  --danger: #ff6b6b;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans-stack: var(--font-sans);
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
  --container-pad: clamp(16px, 4vw, 56px);
  color-scheme: dark;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

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

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--accent); color: #000;
  padding: 8px 12px; font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

/* ====================== TYPOGRAPHY ============================== */

.mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: 0; }
.mono-small { font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute); line-height: 1.6; letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: lowercase;
  color: var(--fg);
}

.hero-h1, h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
}

.big {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ====================== HEADER / NAV ============================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--container-pad);
  background: linear-gradient(180deg, rgba(10,13,14,0.78) 0%, rgba(10,13,14,0.55) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.brand-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.brand-mark { color: var(--fg); font-weight: 500; }

.desktop-nav {
  display: flex; gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.desktop-nav a { transition: color 0.15s; }
.desktop-nav a:hover { color: var(--fg); }

.header-actions {
  display: flex; align-items: center; gap: 16px;
}

.language-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg-mute);
}
.lang-btn { padding: 4px 2px; color: var(--fg-mute); transition: color 0.15s; }
.lang-btn.active { color: var(--accent); }
.lang-sep { color: var(--fg-dim); }

.lang-btn,
.menu-toggle,
.hud-chip {
  min-width: 44px;
  min-height: 44px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(200,255,214,0.12);
}

.btn-reserve {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  transition: border-color 0.15s, color 0.15s;
}
.btn-reserve:hover { border-color: var(--accent); color: var(--accent); }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.menu-toggle span {
  display: block; width: 20px; height: 1px; background: var(--fg);
}

.mobile-menu {
  position: fixed; top: 56px; right: 0; bottom: 0;
  width: min(86vw, 360px);
  z-index: 40;
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: flex !important; transform: translateX(100%); pointer-events: none; }
body.menu-open .mobile-menu { transform: translateX(0); pointer-events: auto; }
body.menu-open::before {
  content: ""; position: fixed; inset: 56px 0 0; z-index: 39;
  background: rgba(5, 7, 8, 0.62); backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: rtMenuFade 200ms ease-out both;
}
@keyframes rtMenuFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; }
  body.menu-open::before { animation: none; }
}
.mobile-nav { display: flex; flex-direction: column; gap: 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg);
}
.mobile-call {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.mobile-call a {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-mute);
}
.mobile-call a strong { color: var(--fg); letter-spacing: 0.08em; }

@media (max-width: 880px) {
  .desktop-nav, .btn-reserve { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ====================== VIDEO BANNER ============================= */

.video-banner {
  position: relative;
  height: 70vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}

.video-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  pointer-events: none;
}

.video-control {
  position: absolute;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 5;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(200,255,214,0.46);
  border-radius: 999px;
  background: rgba(10,13,14,0.72);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-control[aria-pressed="true"] {
  color: var(--accent);
  border-color: var(--accent);
}

.video-banner-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(
    180deg,
    rgba(10, 13, 14, 0.35) 0%,
    rgba(10, 13, 14, 0.55) 60%,
    var(--bg) 100%
  );
}

.video-banner-h2 {
  margin-top: 12px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

/* ====================== HERO ===================================== */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.85);
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,13,14,0.55) 0%, rgba(10,13,14,0.18) 38%, rgba(10,13,14,0.92) 100%),
    radial-gradient(ellipse at center bottom, var(--accent-glow) 0%, transparent 42%);
  pointer-events: none;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 56px);
}

.hero-left {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10,13,14,0.62) 0%, rgba(10,13,14,0.78) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  display: flex; flex-direction: column;
}

.hero-h1 {
  margin-bottom: 14px;
  color: var(--fg);
}
.hero-sub {
  color: var(--fg-mute);
  margin-bottom: 28px;
  max-width: 52ch;
}

.hud-stack {
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.hud-form {
  display: flex; flex-direction: column;
}

.hud-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hud-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.hud-dot.live {
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
}
.hud-dot.dest {
  background: transparent;
  border: 1px solid var(--accent);
}

.hud-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hud-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.hud-value {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hud-edge {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.18em;
}

.hud-input-wrap { display: block; }
.hud-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  padding: 2px 0;
}
.hud-input::placeholder { color: var(--fg-mute); font-weight: 400; }

.hud-go {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-mono); font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.hud-go:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.hud-suggest {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-top: 0;
  list-style: none; padding: 0; margin: 0;
  z-index: 5;
}
.hud-suggest[hidden] { display: none; }
.hud-suggest li {
  display: grid; grid-template-columns: 56px 1fr; gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-mute);
  cursor: pointer;
  align-items: center;
}
.hud-suggest li:last-child { border-bottom: 0; }
.hud-suggest li b { color: var(--accent); font-weight: 500; letter-spacing: 0.08em; }
.hud-suggest li:hover { background: var(--accent-soft); color: var(--fg); }

.hud-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.hud-cell {
  padding: 14px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hud-cell + .hud-cell { border-left: 1px solid var(--border); }

.hud-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.hud-chip {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg-mute);
  text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.hud-chip:hover, .hud-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.hud-window {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hud-window-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
.hud-window strong { color: var(--fg); }
.hud-window em { color: var(--fg-dim); font-style: normal; letter-spacing: 0.12em; }

.hud-departures {
  list-style: none; padding: 0; margin: 0;
}
.hud-dep {
  display: grid;
  grid-template-columns: 78px 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  min-height: 92px;
}
.hud-dep:hover { background: var(--bg-row); }
.hud-dep[data-dep-selected="true"] {
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
  z-index: 1;
}

.hud-time {
  display: inline-flex; align-items: baseline;
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-family: var(--font-mono);
  background: var(--bg);
}
.hud-dep[data-dep-selected="true"] .hud-time {
  border-color: var(--accent);
  color: var(--accent);
}
.hud-time b { font-size: 26px; font-weight: 500; letter-spacing: 0; line-height: 1; }
.hud-time sup {
  font-size: 9px;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  margin-left: 3px;
  text-transform: uppercase;
}

.hud-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 32px;
  color: var(--fg-mute);
  transition: color 0.15s;
}
.hud-glyph svg { width: 100%; height: 100%; }
.hud-dep:hover .hud-glyph,
.hud-dep[data-dep-selected="true"] .hud-glyph { color: var(--accent); }

.hud-dep-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hud-dep-body strong {
  font-weight: 500; font-size: 15px; color: var(--fg); letter-spacing: -0.01em;
}
.hud-dep-body small {
  font-size: 10px; color: var(--fg-mute); letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hud-dep-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.hud-eta {
  font-size: 10px; color: var(--fg-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hud-price {
  font-family: var(--font-mono);
  font-size: 20px; font-weight: 500;
  color: var(--fg);
  line-height: 1;
}
.hud-dep[data-dep-selected="true"] .hud-price { color: var(--accent); }

.hud-selected {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 6px;
  background: var(--bg);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.hud-dep[data-dep-selected="true"] .hud-selected { opacity: 1; }

@media (max-width: 560px) {
  .hud-dep { grid-template-columns: 70px 1fr auto; }
  .hud-glyph { display: none; }
}

.hud-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 24px;
  align-self: flex-start;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.15s;
}
.hud-cta:hover { background: var(--accent); color: #000; }

/* ====================== HERO MAP — live route streetmap ========= */

.hero-right {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-map-wrap {
  position: absolute; inset: 0;
  background: #e6e8ea;
  overflow: hidden;
}
.hero-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: #e6e8ea;
  /* Uber-style soft grey: keep the CARTO light_all base, mute saturation */
  filter: saturate(0.55) brightness(0.96) contrast(0.96);
  z-index: 0;
}
.hero-map .leaflet-control-attribution {
  background: transparent !important;
  color: rgba(232, 236, 237, 0.45) !important;
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 2px 6px;
}
.hero-map .leaflet-control-attribution a {
  color: rgba(232, 236, 237, 0.55);
}
.hero-map-attr {
  position: absolute;
  right: 24px; bottom: 8px;
  font-size: 9px;
  color: rgba(232, 236, 237, 0.45);
  letter-spacing: 0.08em;
  z-index: 2;
  pointer-events: none;
}

/* ====================== HERO STAGE — legacy (unused) ============ */


.hero-stage {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 65%, #11181a 0%, #080a0b 80%);
  overflow: hidden;
}
.hero-stage-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(29,33,35,0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,33,35,0.6) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 55% 55%, #000 30%, transparent 90%);
  opacity: 0.5;
}
.hero-stage-glow {
  position: absolute;
  left: 50%; top: 65%;
  width: 75%; height: 32%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, rgba(90,242,138,0.06) 40%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-stage-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 120%;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 45%,
    rgba(90,242,138,0.05) 50%,
    transparent 55%,
    transparent 100%);
  animation: scanSweep 7s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes scanSweep {
  0% { transform: translateY(-30%); }
  100% { transform: translateY(20%); }
}
.hero-stage-van {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-46%, -48%);
  width: 105%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.7)) drop-shadow(0 0 22px rgba(90,242,138,0.12));
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hud-dot.live, .brand-live, .hud-window-dot { animation: none; }
  .hero-stage-scan { animation: none; }
}

.hero-pill {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: rgba(10,13,14,0.85);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg);
  text-transform: uppercase;
  z-index: 500;
}
.hero-pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
}

.hero-hud {
  position: absolute;
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px;
  background: rgba(10,13,14,0.88);
  border: 1px solid var(--border);
  font-size: 11px;
  z-index: 500;
  min-width: 120px;
}
.hero-hud small { color: var(--accent); letter-spacing: 0.18em; font-size: 10px; text-transform: uppercase; }
.hero-hud strong { color: var(--fg); letter-spacing: 0.06em; font-weight: 500; font-size: 12px; }
.hero-hud em { color: var(--fg-mute); font-style: normal; letter-spacing: 0.08em; font-size: 10px; }
.hero-hud.hud-tr { top: 24px; right: 24px; }
.hero-hud.hud-bl { bottom: 24px; left: 24px; }
.hero-hud.hud-br { bottom: 24px; right: 24px; }

@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-left { border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-right { min-height: 420px; }
  .hero-stage-van { width: 120%; }
  .hero-map-wrap { position: relative; height: 420px; }
}

/* ====================== SECTION SHELL =========================== */

section {
  padding: clamp(56px, 9vw, 120px) var(--container-pad);
  border-bottom: 1px solid var(--border);
}
.hero { padding: 0; }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity 0.6s, transform 0.6s; }
[data-reveal].in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ====================== CLAIM =================================== */

.section-claim { background: var(--bg); }
.claim-inner { max-width: 1200px; margin: 0 auto; }
.claim-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 1px solid var(--border);
}
.claim-stats span {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.claim-stats span:last-child { border-right: 0; }
.claim-stats small { font-size: 10px; color: var(--fg-mute); letter-spacing: 0.18em; }
.claim-stats b { font-size: 18px; color: var(--fg); font-weight: 500; letter-spacing: 0; }
@media (max-width: 760px) {
  .claim-stats { grid-template-columns: 1fr 1fr; }
  .claim-stats span:nth-child(2) { border-right: 0; }
  .claim-stats span:nth-child(1), .claim-stats span:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ====================== FLEET =================================== */

.section-fleet {
  display: grid; grid-template-columns: 1.8fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.fleet-stage {
  position: relative;
  border: 1px solid var(--border);
  background: radial-gradient(ellipse at center, #14191b 0%, #0a0d0e 80%);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fleet-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(29,33,35,0.55) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,33,35,0.55) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 55%, #000 30%, transparent 90%);
  opacity: 0.5;
  pointer-events: none;
}
.fleet-stage::after {
  content: "";
  position: absolute;
  left: 50%; top: 70%;
  width: 70%; height: 28%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, rgba(90,242,138,0.05) 45%, transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}
.fleet-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 3%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  z-index: 1;
}
.hud-callout { z-index: 2; }
.hud-callout {
  position: absolute;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(10,13,14,0.85);
}
.hud-callout small { color: var(--accent); letter-spacing: 0.18em; font-size: 10px; }
.hud-callout em { color: var(--fg); font-style: normal; letter-spacing: 0; }
.hud-tl { top: 16px; left: 16px; }
.hud-tr { top: 16px; right: 16px; }
.hud-bl { bottom: 16px; left: 16px; }
.hud-br { bottom: 16px; right: 16px; }

.cabin-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
}
.cabin-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite;
}
.cabin-badge em { font-style: normal; color: var(--fg); }
.fleet-copy { display: flex; flex-direction: column; }

@media (max-width: 880px) {
  .section-fleet { grid-template-columns: 1fr; }
}

/* ====================== DRIVER ================================== */

.section-driver {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.driver-bullets {
  list-style: none; padding: 0; margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--fg-mute);
}

.phone-frame {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 12px;
  width: 100%; max-width: 360px;
  justify-self: end;
  position: relative;
}
.phone-screen {
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  min-height: 460px;
}
.app-top {
  display: flex; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-mute);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.app-top strong { color: var(--accent); font-weight: 500; }

.driver-id {
  display: flex; align-items: center; gap: 12px;
}
.driver-avatar {
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0.06em;
}
.driver-id strong { font-weight: 500; }
.driver-id small { font-size: 11px; color: var(--fg-mute); }
.driver-id small b { color: var(--accent); margin-left: 4px; font-weight: 500; }

.driver-vehicle {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-row);
  padding: 12px;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.driver-vehicle img {
  max-height: 100%; width: auto;
}
.plate {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 10px; color: var(--fg-mute);
  letter-spacing: 0.18em;
}

.driver-scanrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-mute);
}
.driver-scanrow strong { color: var(--fg); font-weight: 500; }
.driver-scanrow strong b { color: var(--accent); margin-left: 6px; }

.driver-qrbtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: auto;
}
.qr-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }

@media (max-width: 880px) {
  .section-driver { grid-template-columns: 1fr; }
  .phone-frame { justify-self: stretch; max-width: none; }
}

/* ====================== TRIP ==================================== */

.section-trip {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.trip-route {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trip-line {
  position: relative;
  height: 1px; background: var(--border);
  display: block;
}
.trip-progress {
  position: absolute; left: 0; top: 0;
  height: 1px; width: 60%;
  background: var(--accent);
}
.trip-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite;
}
.trip-node.trip-end { color: var(--fg); }

.trip-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.trip-stats > div {
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.trip-stats > div + div { border-left: 1px solid var(--border); }
.trip-stats small { font-size: 10px; color: var(--fg-mute); letter-spacing: 0.18em; text-transform: uppercase; }
.trip-stats strong { color: var(--fg); font-weight: 500; font-size: 16px; }

.trip-driver {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.12em;
}
.trip-driver strong { color: var(--fg); font-weight: 500; }

.trip-smart {
  display: inline-flex; align-items: center;
  font-size: 10px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  align-self: flex-start;
}

.driver-match {
  margin-top: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 12px;
}
.driver-match-top { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.driver-match-avatar {
  width: 36px; height: 36px;
  border: 1px solid var(--accent); color: var(--accent);
  font-family: var(--font-mono); font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.driver-match-id { display: flex; flex-direction: column; gap: 2px; }
.driver-match-id strong { font-weight: 500; font-size: 14px; }
.driver-match-id small { font-size: 11px; color: var(--fg-mute); }
.driver-match-eta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  font-size: 11px; color: var(--fg-mute);
}
.driver-match-eta b { color: var(--accent); font-weight: 500; font-size: 15px; }
.dm-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.driver-match-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.dm-action {
  padding: 8px;
  border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg);
}
.dm-action:hover { border-color: var(--accent); color: var(--accent); }

.trip-pills {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 20px;
  font-size: 12px; color: var(--fg-mute);
}

@media (max-width: 880px) {
  .section-trip { grid-template-columns: 1fr; }
}

/* ====================== SMART =================================== */

.section-smart {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.smart-meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 20px;
  font-size: 12px; color: var(--fg-mute);
}
.smart-grid {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.smart-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.smart-line { fill: none; stroke-width: 1; }
.smart-line.dim { stroke: var(--border); }
.smart-line.live { stroke: var(--accent); stroke-width: 2; }
.smart-pulse { fill: var(--accent); }

@media (max-width: 880px) {
  .section-smart { grid-template-columns: 1fr; }
}

/* ====================== SCHEDULE ================================ */

.sched-head { margin-bottom: 32px; max-width: 1200px; }
.sched-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border);
}
.sched-list li {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.sched-time {
  display: inline-flex; align-items: baseline;
  border: 1px solid var(--border);
  padding: 8px 12px;
  background: var(--bg-elev);
}
.sched-time b { font-size: 28px; font-weight: 500; line-height: 1; }
.sched-time sup { font-size: 10px; font-variant-caps: all-small-caps; letter-spacing: 0.12em; margin-left: 4px; }
.sched-list li strong { font-weight: 500; font-size: 16px; color: var(--fg); letter-spacing: -0.01em; }
.sched-list li small { font-size: 11px; color: var(--fg-mute); }

@media (max-width: 760px) {
  .sched-list li { grid-template-columns: 1fr; gap: 8px; }
}

/* ====================== TIERS — minimal rows ==================== */

.tiers-head { margin-bottom: 32px; max-width: 900px; }
.tier-list {
  border-top: 1px solid var(--border);
}
.tier-card {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  cursor: pointer;
  transition: background 0.15s, padding 0.15s;
  position: relative;
}
.tier-card:hover { background: var(--bg-row); padding-left: 12px; padding-right: 12px; }
.tier-card[aria-checked="true"] {
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
  padding-left: 16px; padding-right: 16px;
}
.tier-tag { font-size: 10px; letter-spacing: 0.18em; color: var(--accent); display: block; margin-bottom: 6px; }
.tier-card h3 { display: flex; align-items: center; gap: 8px; }
.tier-card p { margin-top: 6px; }
.tier-badge {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 2px 6px;
  font-weight: 500;
}
.tier-row-center {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 11px;
}
.tier-row-center span {
  padding: 4px 8px;
  border: 1px solid var(--border);
  color: var(--fg-mute);
  letter-spacing: 0.08em;
}
.tier-row-right {
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}
.tier-fare { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; }
.tier-fare small { font-size: 10px; color: var(--fg-mute); letter-spacing: 0.18em; }
.tier-fare strong { font-size: 20px; color: var(--fg); font-weight: 500; }
.tier-card[aria-checked="true"] .tier-fare strong { color: var(--accent); }
.tier-select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}
.tier-select:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 880px) {
  .tier-card { grid-template-columns: 1fr; gap: 12px; }
  .tier-row-right { justify-content: space-between; }
}

/* ====================== BOOK ==================================== */

.section-book { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.book-head { position: sticky; top: 80px; }
.call-block {
  display: flex; flex-direction: column;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.call-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.call-line:last-child { border-bottom: 0; }
.call-line strong { color: var(--fg); font-weight: 500; letter-spacing: 0.08em; }
.call-line:hover { background: var(--bg-row); }

.booking-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.booking-form > * { background: var(--bg-elev); padding: 14px 16px; }
.booking-form .wide { grid-column: span 2; }
.booking-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.booking-form label small {
  font-size: 10px; color: var(--fg-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-bottom-color: var(--accent); }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form select { appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%237a8285' d='M2 4l4 4 4-4z'/></svg>") no-repeat right 0 center / 10px; }

.fare-hint {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  font-size: 12px; color: var(--fg-mute);
}
.fare-hint-tag { color: var(--accent); letter-spacing: 0.18em; }
.fare-toggle {
  margin-left: auto;
  color: var(--accent);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
}
.fare-breakdown {
  display: flex; flex-direction: column;
  font-size: 12px; color: var(--fg-mute);
}
.fare-breakdown[hidden] { display: none; }
.fare-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.fare-row b { color: var(--fg); font-weight: 500; }
.fare-total b { color: var(--accent); font-size: 14px; }
.fare-foot { display: block; margin-top: 8px; font-size: 11px; color: var(--fg-dim); }

.payment-note {
  font-size: 11px; color: var(--fg-mute);
  border-top: 1px solid var(--border);
}

.btn-submit {
  padding: 16px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn-submit:hover { background: var(--accent); color: #000; }

.form-status {
  font-size: 12px;
}
.form-status.ok { color: var(--accent); }
.form-status.error { color: var(--danger); }

@media (max-width: 880px) {
  .section-book { grid-template-columns: 1fr; }
  .book-head { position: static; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .wide { grid-column: span 1; }
}

/* ====================== PORTAL ================================== */

.section-portal {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.portal-copy { display: flex; flex-direction: column; }
.login-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 10px 0;
  font-size: 12px; color: var(--accent); letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
}

.portal-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.portal-form {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.portal-form label {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.portal-form label small {
  font-size: 10px; color: var(--fg-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.portal-form input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.portal-form input:focus { border-bottom-color: var(--accent); }
.portal-form .form-status { padding: 8px 16px 14px; }

.portal-session {
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--bg-elev);
  display: flex; flex-direction: column; gap: 12px;
}
.portal-session-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.portal-chip { color: var(--accent); letter-spacing: 0.18em; }
.text-button { color: var(--fg-mute); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.text-button:hover { color: var(--fg); border-bottom-color: var(--accent); }
.portal-summary { font-size: 12px; color: var(--fg-mute); }
.portal-trips { display: flex; flex-direction: column; gap: 8px; }
.portal-trip {
  border: 1px solid var(--border);
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.portal-trip strong { font-weight: 500; }
.portal-trip span, .portal-trip small { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); }
.portal-payment-ok { color: var(--accent); }
.portal-pay-button {
  margin-top: 6px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.portal-pay-button:hover { background: var(--accent); color: #000; }
.portal-empty { font-size: 12px; color: var(--fg-mute); }

@media (max-width: 880px) {
  .section-portal { grid-template-columns: 1fr; }
}

/* ====================== CONTACT ================================= */

.section-contact { text-align: left; }
.contact-headline { margin-top: 8px; margin-bottom: 32px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.contact-block {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--border);
  font-size: 11px; color: var(--fg-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.contact-block:last-child { border-right: 0; }
.contact-block strong {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.04em;
}
.contact-block:hover { background: var(--bg-row); }
.contact-block:hover strong { color: var(--accent); }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-block { border-right: 0; border-bottom: 1px solid var(--border); }
  .contact-block:last-child { border-bottom: 0; }
}

/* ====================== DESTINATIONS MARQUEE ==================== */

.destinations-marquee {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: rt-marquee 38s linear infinite;
  font-family: var(--font-sans);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--fg);
}
.marq-item b { font-weight: 500; }
.marq-item i {
  font-style: normal;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7em;
  letter-spacing: 0.04em;
}
.marq-dot {
  color: var(--accent);
  font-size: 0.4em;
  opacity: 0.6;
}
@keyframes rt-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ====================== TRUST BAND ============================== */

.trust-band {
  background: var(--bg-elev, #0f1213);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--container-pad);
}
.trust-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--accent, #c8ffd6);
}
.trust-item small {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent, #c8ffd6);
}
.trust-item strong {
  font-family: var(--font-sans-stack, Inter, sans-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg, #e8eced);
  line-height: 1.1;
}
.trust-item em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute, #7a8285);
}
@media (max-width: 900px) {
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
  .trust-band-inner { grid-template-columns: 1fr; }
}

/* ====================== STATS COUNTER ============================ */

.stats-row {
  background: linear-gradient(180deg, #fafafa 0%, #f4f5f7 100%);
  color: #0a0d0e;
  padding: 100px var(--container-pad);
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(4,120,87,0.10), transparent 70%);
  pointer-events: none;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.stats-eye { color: #047857 !important; }
.stats-headline {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 16px;
  margin-bottom: 56px;
  color: #0a0d0e;
  text-transform: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1), border-color 200ms ease;
}
.stat-cell:hover {
  transform: translateY(-4px);
  border-color: #047857;
}
.stat-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(4,120,87,0.04));
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.stat-cell:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.0;
  background: linear-gradient(135deg, #0a0d0e 0%, #047857 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-cell small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .stats-row { padding: 64px var(--container-pad); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ====================== MOMENT — full-bleed cinematic =========== */

.moment {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px var(--container-pad);
  isolation: isolate;
}
.moment-bg {
  position: absolute;
  inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=2400&q=85');
  background-size: cover;
  background-position: center;
  filter: contrast(1.1) saturate(0.85) brightness(0.85);
  z-index: -2;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
  transform: scale(1.05);
}
.moment[data-reveal].in-view .moment-bg { transform: scale(1); }
.moment-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,14,0.35) 0%, rgba(10,13,14,0.05) 35%, rgba(10,13,14,0.85) 100%),
    radial-gradient(ellipse at bottom, rgba(4,120,87,0.18), transparent 60%);
  z-index: -1;
}
.moment-content {
  max-width: 920px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.moment-eye {
  color: var(--accent) !important;
  letter-spacing: 0.24em;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.moment-headline {
  font-family: var(--font-sans);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-top: 28px;
  color: #ffffff;
  text-transform: none;
}
.grad-text {
  background: linear-gradient(120deg, #ffffff 0%, #C8FFD6 50%, #7DFFA2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.moment-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin-top: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.moment-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 12px 36px rgba(200,255,214,0.30);
}
.moment-cta i {
  font-style: normal;
  transition: transform 250ms ease;
}
.moment-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(200,255,214,0.45);
}
.moment-cta:hover i { transform: translateX(4px); }

/* ====================== LIGHT CONTENT CANVAS =====================
   Sir feedback: "still dark and dull, brighten things up." Inverts
   the middle-of-page sections to a luxury light canvas so the page
   breathes between the cinematic dark hero/footer. */

.section-claim,
.section-schedule,
.section-tiers,
.section-voices {
  background: #fafafa;
  color: #0a0d0e;
  border-top: 1px solid #e5e7eb;
}
.section-claim .big,
.section-schedule .big,
.section-tiers .big,
.section-voices .big {
  color: #0a0d0e;
  text-transform: none;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
}
.section-claim .mono-small,
.section-schedule .mono-small,
.section-tiers .mono-small {
  color: #6b7280;
}
.section-claim .eyebrow,
.section-schedule .eyebrow,
.section-tiers .eyebrow,
.section-voices .eyebrow {
  color: #047857;
}
.section-claim .claim-stats {
  color: #0a0d0e;
}
.section-claim .claim-stats small {
  color: #6b7280;
}
.section-claim .claim-stats b {
  color: #0a0d0e;
}
.section-schedule .sched-list li {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #0a0d0e;
  transition: border-color 200ms ease, transform 200ms ease;
}
.section-schedule .sched-list li:hover {
  border-color: #047857;
  transform: translateX(4px);
}
.section-schedule .sched-list strong { color: #0a0d0e; }
.section-schedule .sched-list small { color: #6b7280; }
.section-schedule .sched-time { color: #047857; }
.tier-card {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #0a0d0e;
}
.tier-card:hover { border-color: #047857; }
.tier-card h3 { color: #0a0d0e; }
.tier-card .mono-small { color: #6b7280; }
.tier-card .tier-fare strong { color: #0a0d0e; }
.tier-card .tier-fare small { color: #6b7280; }
.tier-card .tier-row-center span { color: #6b7280; }
.tier-card .tier-select {
  color: #047857;
  background: rgba(4,120,87,0.06);
  border: 1px solid rgba(4,120,87,0.25);
}
.tier-card .tier-select:hover {
  background: #047857;
  color: #ffffff;
}
.section-voices { border-bottom: 1px solid #e5e7eb; }
.section-voices .big { color: #0a0d0e; }
.voice-card {
  background: #ffffff;
  border-color: #e5e7eb;
}
.voice-card:hover {
  border-color: #047857;
}
.voice-quote { color: #0a0d0e; }
.voice-foot strong { color: #0a0d0e; }
.voice-foot small { color: #6b7280; }
.voice-rating { color: #047857; }

/* ====================== AMPLIFIED REVEALS =======================
   Pumped reveal animations — bigger transforms, longer easing, blur
   removal. Sir asked for animated storytelling. */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(.2,.8,.2,1),
              transform 900ms cubic-bezier(.2,.8,.2,1),
              filter 700ms cubic-bezier(.2,.8,.2,1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ====================== VOICES ================================== */

.section-voices {
  padding: 80px var(--container-pad);
  background: var(--bg, #0a0d0e);
  border-top: 1px solid var(--border);
}
.voices-head {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.voices-head .eyebrow { color: var(--accent, #c8ffd6); }
.voices-head .big { margin-top: 12px; }

.voices-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}
.voice-card {
  background: var(--bg-elev, #0f1213);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.voice-card:hover {
  border-color: var(--accent, #c8ffd6);
  transform: translateY(-2px);
}
.voice-rating {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent, #c8ffd6);
}
.voice-quote {
  font-family: var(--font-sans-stack, Inter, sans-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg, #e8eced);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
.voice-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0;
}
.voice-foot strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg, #e8eced);
}
.voice-foot small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute, #7a8285);
}
@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-voices { padding: 56px var(--container-pad); }
}

/* ====================== FOOTER ================================== */

.footer {
  padding: 40px var(--container-pad) 24px;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--bg-elev, #0f1213);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--fg, #e8eced);
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--accent, #c8ffd6); }
.footer-col a strong { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; }
.footer-col a em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--fg-mute, #7a8285);
}
.footer-head {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent, #c8ffd6);
  margin-bottom: 4px;
}
.footer-brand .footer-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans-stack, Inter, sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--fg, #e8eced);
  margin-bottom: 4px;
}
.footer-live {
  width: 8px; height: 8px;
  background: var(--accent, #c8ffd6);
  box-shadow: 0 0 8px var(--accent, #c8ffd6);
  border-radius: 50%;
  animation: rt-dot-pulse 2.4s ease-in-out infinite;
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--fg-mute, #7a8285);
}
.footer-license {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--fg-dim, #565c5e);
  margin-top: 6px;
}
.footer-floor {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: var(--accent); }

@keyframes rt-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-floor { flex-direction: column; gap: 6px; }
}

/* ====================== FLOATING CTA ============================
   Sticky "Book a trip" button — appears bottom-right after the
   user scrolls past the hero. Hidden on the booking section so
   it doesn't compete with the form button. */

.floating-cta {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(200,255,214,0.30), 0 0 0 1px rgba(0,0,0,0.12);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  pointer-events: none;
  transition: opacity 300ms ease, transform 350ms cubic-bezier(.2,.8,.2,1);
}
.floating-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.floating-cta i {
  font-style: normal;
  transition: transform 200ms ease;
}
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(200,255,214,0.42); }
.floating-cta:hover i { transform: translateX(4px); }
@media (max-width: 600px) {
  .floating-cta { padding: 12px 20px; font-size: 11px; }
}

/* ====================== LEGACY GUARDS =========================== */
/* Hide any legacy hooks JS may reference but template no longer uses */
.hero-slides, .hero-slide, .hero-slider-controls, .hero-glow, .hero-van { display: none !important; }
