/* ============ Toro — Dark, tech-forward, data-dense ============ */

:root {
  /* Deep navy/teal base */
  --bg: oklch(0.16 0.028 230);
  --bg-elev: oklch(0.20 0.030 225);
  --bg-elev-2: oklch(0.24 0.032 225);
  --line: oklch(0.32 0.030 220);
  --line-soft: oklch(0.28 0.025 220 / 0.5);
  --text: oklch(0.97 0.008 220);
  --text-dim: oklch(0.80 0.018 220);
  --text-mute: oklch(0.62 0.025 220);

  /* Accent — luminous teal/cyan */
  --accent: oklch(0.82 0.12 210);
  --accent-soft: oklch(0.82 0.12 210 / 0.14);
  --accent-line: oklch(0.82 0.12 210 / 0.35);
  --accent-text: oklch(0.86 0.10 215);
  --accent-serif: oklch(0.82 0.10 220);

  /* Secondary signals */
  --signal-green: oklch(0.82 0.14 170);
  --signal-blue: oklch(0.75 0.12 230);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --font-sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.rule { height: 1px; background: var(--line); width: 100%; }
.rule-soft { height: 1px; background: var(--line-soft); width: 100%; }

/* ---------- Micro labels ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.kicker .num {
  color: var(--accent-text);
  font-weight: 500;
}

/* ---------- Nav ---------- */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent;
  border-bottom: none;
}
.nav.scrolled {
  position: fixed;
  background: oklch(0.16 0.028 230 / 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
  height: 18px;
}
.logo-img {
  height: 18px !important;
  width: auto !important;
  max-width: 120px;
  display: block;
  object-fit: contain;
}
.footer .logo { height: 24px; }
.footer .logo-img { height: 24px !important; max-width: 160px; }
.logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, oklch(0.78 0.12 215), oklch(0.60 0.13 225));
  color: oklch(0.18 0.03 230);
  border-radius: 9px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 10px oklch(0.70 0.12 215 / 0.25);
}
.logo-text { font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.logo-text .v {
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-left: 6px;
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--text-dim);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }

/* Mobile nav (hamburger + drawer) */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid oklch(0.45 0.03 220 / 0.4);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .15s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-scrim {
  display: none;
  position: fixed; inset: 0;
  background: oklch(0.08 0.02 230 / 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 38;
}
.nav-mobile-scrim.open { opacity: 1; pointer-events: auto; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: oklch(0.14 0.026 230 / 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .22s ease;
  z-index: 39;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner {
  padding: 16px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-section { border-bottom: 1px solid var(--line-soft); padding-bottom: 8px; margin-bottom: 8px; }
.nav-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-cap-toggle .nav-mobile-caret { transition: transform .2s ease; color: var(--text-dim); }
.nav-mobile-cap-toggle.open .nav-mobile-caret { transform: rotate(180deg); }
.nav-mobile-cap-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.nav-mobile-cap-list.open { max-height: 600px; }
.nav-mobile-cap-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 4px 12px 16px;
  border-left: 1px solid var(--line-soft);
  margin-left: 4px;
}
.nav-mobile-cap-item.active { border-left-color: var(--text); }
.nav-mobile-cap-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
.nav-mobile-cap-label { font-size: 15px; color: var(--text); }
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--text);
  color: oklch(0.18 0.03 230);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  transition: all .15s ease;
  white-space: nowrap;
}
.btn:hover { border-color: var(--text-mute); background: var(--bg-elev); }
.btn-primary {
  background: var(--text); color: oklch(0.18 0.03 230);
  border-color: var(--text);
  border-radius: 100px;
  font-weight: 500;
}
.btn-primary:hover { background: oklch(0.90 0.03 220); }
.btn-accent {
  background: var(--text); color: oklch(0.18 0.03 230);
  border-color: var(--text);
  border-radius: 100px;
  font-weight: 500;
}
.btn-accent:hover { background: oklch(0.90 0.03 220); }
.btn-ghost {
  background: oklch(0.20 0.03 225 / 0.6);
  border-color: oklch(0.45 0.03 220 / 0.4);
  color: var(--text);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: oklch(0.25 0.03 225 / 0.7); border-color: oklch(0.55 0.03 220 / 0.5); }
.btn-pill { border-radius: 100px; }
.btn-lg { height: 48px; padding: 0 24px; font-size: 14px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(2px); }

.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  padding-right: 8px;
  border-right: 1px solid var(--line);
  height: 24px;
  padding: 0 14px 0 0;
  margin-right: 6px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 3px oklch(0.80 0.15 155 / 0.15);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  display: block;
  background: var(--bg);
}
.hero-globe {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.5;
}
.hero-globe iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 48%, transparent 0%, oklch(0.14 0.028 230 / 0.35) 60%, oklch(0.12 0.025 230) 100%);
  pointer-events: none;
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 120px;
  text-align: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid oklch(0.45 0.03 220 / 0.4);
  border-radius: 100px;
  background: oklch(0.20 0.03 225 / 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.hero-pill svg { color: var(--accent); }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(54px, 8.4vw, 128px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0 0 36px;
  max-width: 18ch;
  color: var(--text);
  text-wrap: balance;
}
.hero h1 .italic {
  font-style: italic;
  background: linear-gradient(100deg, oklch(0.88 0.10 215) 0%, oklch(0.70 0.14 245) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 58ch;
  font-weight: 400;
  margin: 0 auto 40px;
  text-wrap: balance;
}
.hero-ctas {
  display: inline-flex; gap: 12px;
  margin-bottom: 64px;
}

.hero-inline-stats {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 0 40px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-inline-stats .item {
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-inline-stats .item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.82 0.12 210 / 0.18);
}
.hero-inline-stats .item:not(:first-child)::before { display: none; }
.hero-inline-stats .sep { color: var(--text-mute); opacity: 0.5; }
.hero-inline-stats b { color: var(--text); font-weight: 500; }

/* ---------- Live panel (legacy, unused) ---------- */
.hero-live-legacy {
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  overflow: hidden;
}
.live-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.live-header-left { display: flex; align-items: center; gap: 16px; }
.live-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.live-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  padding: 4px 10px;
  border-radius: 4px;
}
.live-tab.active {
  background: var(--bg-elev-2);
  color: var(--text);
}
.live-ts {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.live-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}
.live-col {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.live-col:last-child { border-right: none; }
.live-col h5 {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  font-weight: 500;
}
.feed { display: flex; flex-direction: column; gap: 10px; }
.feed-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 12.5px;
  padding: 6px 0;
}
.feed-row .t {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.feed-row .msg { color: var(--text); }
.feed-row .msg b { font-weight: 500; color: var(--text); }
.feed-row .msg em { font-style: normal; color: var(--text-dim); }
.feed-row .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-g { background: oklch(0.80 0.15 155 / 0.13); color: var(--signal-green); }
.tag-a { background: var(--accent-soft); color: var(--accent-text); }
.tag-b { background: oklch(0.72 0.13 240 / 0.13); color: var(--signal-blue); }

.kpi {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
}
.kpi:last-child { margin-bottom: 0; }
.kpi-lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); }
.kpi-val {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.kpi-val .unit { font-size: 14px; color: var(--text-mute); font-weight: 400; margin-left: 4px; }
.kpi-delta {
  font-family: var(--font-mono); font-size: 11px;
  display: flex; align-items: center; gap: 6px;
}
.kpi-delta.up { color: var(--signal-green); }
.kpi-delta.down { color: var(--accent-text); }

.sparkline { width: 100%; height: 40px; margin-top: 4px; }

/* ---------- Stats / ticker ---------- */
.stats-wrap {
  padding: 0 40px;
}
.stats {
  max-width: 1360px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  overflow: hidden;
}
.stats-head {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.stats-head h3 {
  margin: 0;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  transition: background .2s ease;
}
.stat-cell:hover { background: var(--bg-elev-2); }
.stat-cell:nth-child(4n) { border-right: none; }
.stat-cell:nth-last-child(-n+4) { border-bottom: none; }
.stat-val {
  font-size: 52px;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}
.stat-val .unit { color: var(--accent-text); }
.stat-lbl {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}
.stat-code {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

/* ---------- Section shell ---------- */
.section { padding: 120px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 16px 0 0;
  max-width: 14ch;
}
.section-head h2 .serif {
  font-style: italic;
  background: linear-gradient(100deg, oklch(0.88 0.10 215) 0%, oklch(0.70 0.14 245) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head .lede {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 56ch;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  align-self: end;
}

/* ---------- Capabilities ---------- */
.caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cap {
  background: var(--bg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  position: relative;
  transition: background .2s ease;
}
.cap:hover { background: var(--bg-elev); }
.cap-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.cap-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-elev);
  color: var(--accent-text);
}
.cap h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.cap-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cap-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cap p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.cap-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text);
}
.cap-foot .cap-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.cap-foot .cap-stat b { color: var(--accent-text); font-weight: 500; }
.cap-foot .link {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--text);
}
.cap-foot .link:hover { color: var(--accent-text); }

/* ---------- Network / Map ---------- */
.net {
  background: transparent;
  padding: 0 40px;
}
.net-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 0;
}
.net-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}
.net-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-weight: 400;
  margin: 16px 0 24px;
}
.net-side p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.net-side .legend {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.legend-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.legend-dot.hq { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.legend-dot.mfg { background: var(--signal-blue); box-shadow: 0 0 0 3px oklch(0.72 0.13 240 / 0.18); }
.legend-dot.wh { background: var(--signal-green); box-shadow: 0 0 0 3px oklch(0.80 0.15 155 / 0.18); }
.legend-row .lbl { color: var(--text); }
.legend-row .num { color: var(--text-mute); }

.map-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 40%, oklch(0.22 0.012 250) 0%, var(--bg) 60%);
  overflow: hidden;
}
.map-frame {
  position: absolute; inset: 0;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-header {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  pointer-events: none;
  z-index: 3;
}
.map-header .chip {
  padding: 4px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.map-footer {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  pointer-events: none;
  z-index: 3;
}

.node {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.node-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.node-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--accent);
  animation: pulsewave 2.5s ease-out infinite;
}
.node.mfg .node-dot { background: var(--signal-blue); }
.node.mfg .node-pulse { border-color: var(--signal-blue); }
.node.wh .node-dot { background: var(--signal-green); }
.node.wh .node-pulse { border-color: var(--signal-green); }
@keyframes pulsewave {
  0% { width: 10px; height: 10px; opacity: 0.7; }
  100% { width: 56px; height: 56px; opacity: 0; }
}
.node-label {
  position: absolute;
  top: 14px; left: 14px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.node-label .c { color: var(--text-mute); margin-left: 6px; }

/* Flight/route animation on SVG handled in component */

/* ---------- Why Toro ---------- */
.why-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.why-row {
  display: grid;
  grid-template-columns: 100px 1.3fr 2fr 1fr;
  gap: 32px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .2s ease;
}
.why-row:hover { background: var(--bg-elev); }
.why-row .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.why-row h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.1;
}
.why-row h4 .serif {
  font-style: italic;
  background: linear-gradient(100deg, oklch(0.88 0.10 215) 0%, oklch(0.70 0.14 245) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-row p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.why-proof {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.why-proof .val {
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.why-proof .val .unit { color: var(--accent-text); }
.why-proof .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 140px 0 140px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-glow {
  position: absolute;
  bottom: -240px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; }
.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 108px);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 24px 0 32px;
  font-weight: 400;
  max-width: 20ch;
  margin-left: auto; margin-right: auto;
}
.cta h2 .serif {
  font-style: italic;
  background: linear-gradient(100deg, oklch(0.88 0.10 215) 0%, oklch(0.70 0.14 245) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 58ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.cta-row {
  display: inline-flex; gap: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 32ch;
}
.footer-locs { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); }
.footer-locs b { color: var(--text); font-weight: 500; }
.footer-col h6 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-dim); transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.footer-bot-r { display: flex; gap: 20px; }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  width: 300px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  font-size: 13px;
}
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev-2);
}
.tweaks-head h6 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}
.tweaks-head .close {
  background: none; border: none; color: var(--text-mute);
  font-size: 16px; cursor: pointer;
}
.tweaks-body { padding: 14px; display: flex; flex-direction: column; gap: 16px; }
.tweak-group { display: flex; flex-direction: column; gap: 8px; }
.tweak-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .15s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active { outline: 2px solid var(--text); outline-offset: 2px; }
.seg {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px;
}
.seg button {
  background: none;
  border: none;
  padding: 6px;
  font-size: 11px;
  color: var(--text-dim);
  border-radius: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.seg button.active {
  background: var(--bg-elev-2);
  color: var(--text);
}

/* Density */
body.dense .section { padding: 80px 0; }
body.dense .hero { padding: 48px 0 80px; }
body.dense .cta { padding: 90px 0; }
body.dense .cap { min-height: 300px; padding: 28px; }
body.dense .stat-cell { padding: 24px 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-sub-row { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { justify-self: start; }
  .hero-meta-row { grid-template-columns: repeat(2, 1fr); }
  .live-body { grid-template-columns: 1fr; }
  .live-col { border-right: none; border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .caps { grid-template-columns: 1fr; }
  .net-layout { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .why-row p, .why-proof { grid-column: 2 / -1; }
  .stats-wrap { padding: 0 24px; }
  .net { padding: 0 24px; }
  .net-inner { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell { border-right: 1px solid var(--line) !important; }
  .stat-cell:nth-child(2n) { border-right: none !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: block; }
  .nav-mobile-scrim { display: block; }
}
@media (max-width: 640px) {
  .hero-meta-row { grid-template-columns: 1fr; }
  .stats-wrap { padding: 0 16px; }
  .net { padding: 0 16px; }
  .stats-head { padding: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .tweaks { width: calc(100vw - 32px); right: 16px; bottom: 16px; }

  /* Hero — stack stats below CTAs in mobile */
  .hero { height: auto; min-height: 100vh; }
  .hero-inner {
    position: relative;
    inset: auto;
    padding: 120px 20px 40px;
    justify-content: flex-start;
    min-height: calc(100vh - 180px);
  }
  .hero-ctas { margin-bottom: 32px; }
  .hero-inline-stats {
    position: relative;
    bottom: auto;
    padding: 32px 20px 40px;
    gap: 18px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid var(--line-soft);
    margin-top: 32px;
  }
  .hero-inline-stats .item::before { display: none; }
}