:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a26;
  --fg: #f0ede6;
  --fg-muted: #8a8698;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.15);
  --accent-glow: rgba(249, 115, 22, 0.4);
  --winner: #22c55e;
  --winner-dim: rgba(34, 197, 94, 0.15);
  --border: rgba(240, 237, 230, 0.08);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ─── Hero ─── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}

.meta-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.meta-stat:first-child { padding-left: 0; }

.stat-num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Globe illustration */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}

.globe-container {
  position: relative;
  width: 340px;
  height: 340px;
}

.globe-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-svg {
  width: 100%;
  height: 100%;
  animation: globe-spin 60s linear infinite;
}

@keyframes globe-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.globe-orbit-1 {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-pulse 4s ease-in-out infinite;
}

.globe-orbit-2 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-pulse 4s ease-in-out infinite 1s;
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.5; border-color: rgba(249, 115, 22, 0.08); }
  50% { opacity: 1; border-color: rgba(249, 115, 22, 0.25); }
}

.pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pin-1 { top: 60px; left: 20px; }
.pin-2 { top: 20px; right: 30px; }
.pin-3 { bottom: 80px; right: 10px; }

.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-muted);
  border: 2px solid var(--bg);
}

.pin-dot-hot {
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  width: 14px;
  height: 14px;
}

.pin-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pin-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.pin-price-winner {
  color: var(--winner);
}

/* Route ticker bar */
.hero-noise-bar {
  margin-top: 48px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.noise-scroll {
  display: flex;
  gap: 0;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.noise-scroll span {
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.noise-scroll .sep { color: var(--accent); padding: 0 4px; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Proof Strip ─── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.proof-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-route {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.proof-saved {
  font-size: 0.95rem;
  color: var(--winner);
  font-weight: 500;
}

.proof-saved strong {
  font-weight: 700;
}

/* ─── Section Shared ─── */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}

/* ─── Cheapest Lane ─── */
.cheapestlane {
  border-top: 1px solid var(--border);
}

.cl-inner {}

.cl-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.cl-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.cl-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 48px;
}

.cl-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  margin-bottom: 24px;
}

.route-row {
  display: grid;
  grid-template-columns: 160px 80px 1fr;
  align-items: center;
  gap: 16px;
}

.route-city {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.route-price {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}

.route-price-high { color: #ef4444; }
.route-price-mid { color: var(--fg); }
.route-price-winner { color: var(--winner); font-size: 1rem; }

.route-bar {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0.05));
}

.route-row-winner .route-bar {
  background: linear-gradient(to right, var(--winner), rgba(34, 197, 94, 0.1));
}

.route-city-winner { color: var(--winner); font-weight: 500; }

.winner-tag {
  display: inline-block;
  font-size: 0.65rem;
  background: var(--winner-dim);
  color: var(--winner);
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 8px;
}

.cl-cta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── Price Map ─── */
.pricemap {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.pm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pm-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.pm-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.pm-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pm-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-check {
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.pm-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heat-map {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.heat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.heat-cell {
  height: 42px;
  border-radius: 4px;
  transition: transform 0.2s;
}

.heat-cell:hover { transform: scale(1.08); }

.heat-cold { background: #1e3a5f; }
.heat-cool { background: #2d5a7b; }
.heat-warm { background: #7c4a1e; }
.heat-hot { background: #f97316; box-shadow: 0 0 12px rgba(249, 115, 22, 0.4); }

.heat-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.legend-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legend-gradient {
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #f97316, #7c4a1e, #2d5a7b, #1e3a5f);
}

/* ─── Auto-Snipe ─── */
.autosnipe {
  border-top: 1px solid var(--border);
}

.as-inner {}

.as-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.as-headline-row { margin-bottom: 20px; }

.as-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
}

.as-headline em {
  font-style: italic;
  color: var(--accent);
}

.as-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

.as-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
}

.as-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.as-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.as-feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.as-feat-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Closing ─── */
.closing {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 32px;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: #ea6a0a;
  transform: translateY(-1px);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links span {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-illustration { min-height: 280px; }
  .globe-container { width: 260px; height: 260px; }
  .pm-inner { grid-template-columns: 1fr; }
  .as-features { grid-template-columns: 1fr; gap: 28px; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-tagline { display: none; }
}

@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .hero { padding: 48px 20px 40px; }
  .meta-stat { padding: 0 16px; }
  .route-row { grid-template-columns: 130px 70px 1fr; }
  .footer-inner { flex-direction: column; }
}