/* ── LOCAL FONTS ────────────────────────────────────────── */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-300.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-400.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-500.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-600.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-700.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-800.ttf") format("truetype");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/space-mono-400.ttf") format("truetype");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-mono-700.ttf") format("truetype");
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:    #0f1117;
  --deep:     #161b22;
  --panel:    #1c2128;
  --border:   #21262d;
  --muted:    #464f5c;
  --subtle:   #768390;
  --body:     #cdd9e5;
  --strong:   #e6edf3;
  --amber:    #e68e0e;
  --amber-hi: #ffb340;
  --amber-lo: #a8650a;
  --green:    #3fb950;
  --red:      #f85149;

  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.mono { font-family: var(--font-mono); }
.amber { color: var(--amber); }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: oklch(8% 0.02 255 / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(24% 0.02 255 / 0.5);
  height: 56px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon {
  width: 24px; height: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav-icon span:nth-child(1) { background: var(--amber); }
.nav-icon span:nth-child(2) { background: var(--panel); }
.nav-icon span:nth-child(3) { background: var(--panel); }
.nav-icon span:nth-child(4) { background: var(--amber); }
.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--strong);
}
.nav-name span { color: var(--amber); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--subtle);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--body); }
.nav-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  background: var(--amber);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a.nav-cta { color: var(--strong); }
.nav-cta:hover { background: var(--amber-hi); }
.nav-links a.nav-cta:hover { color: var(--strong); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.36;
  pointer-events: none;
}
/* Fade grid at edges */
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, var(--black) 80%);
}
/* Amber glow */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, oklch(55% 0.18 67 / 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber-lo);
}

.hero-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}
.hero-icon {
  width: 72px; height: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-icon span:nth-child(1) { background: var(--amber); }
.hero-icon span:nth-child(2) { background: var(--deep); }
.hero-icon span:nth-child(3) { background: var(--deep); }
.hero-icon span:nth-child(4) { background: var(--amber); }

.hero-wordmark {
  text-align: left;
  line-height: 1;
}
.hero-taxi {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 68px;
  color: var(--amber);
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
}
.hero-dispatch {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 68px;
  color: var(--strong);
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
}

.hero-tagline {
  font-size: 22px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero-tagline strong {
  font-weight: 600;
  color: var(--strong);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

/* Hero form */
.hero-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.hero-form:focus-within { border-color: var(--amber-lo); }
.hero-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: var(--deep);
  border: none;
  color: var(--strong);
  padding: 14px 18px;
  outline: none;
}
.hero-form input::placeholder { color: var(--muted); }
.hero-form button {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  background: var(--amber);
  color: var(--strong);
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.hero-form button:hover { background: var(--amber-hi); }
.hero-form button:disabled { opacity: 0.6; cursor: default; }
.hero-form-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.hero-form-note a { color: var(--subtle); }
.form-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 10px;
  min-height: 18px;
  letter-spacing: 0.04em;
}
.form-msg.success { color: var(--green); }
.form-msg.error   { color: var(--red); }

/* ── SIGNUP CONSENT ──────────────────────────────────── */
.signup-consent {
  max-width: 560px;
  margin: 10px auto 0;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: left;
}
.signup-consent-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.signup-consent-copy {
  font-size: 12px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 12px;
}
.signup-consent-button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--strong);
  background: var(--amber);
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
}
.signup-consent-button:hover {
  background: var(--amber-hi);
  color: var(--black);
}
.signup-consent-button:disabled {
  cursor: wait;
  opacity: 0.75;
}
.signup-consent-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}
.signup-consent-note a {
  color: var(--subtle);
  text-underline-offset: 2px;
}
.signup-consent-error {
  border-color: var(--red);
}

/* ── BREVO EMBED OVERRIDES ───────────────────────────── */
.brevo-embed {
  margin: 10px auto 0;
  max-width: 560px;
  background: transparent !important;
}
.brevo-embed #sib-form-container,
.brevo-embed #sib-container {
  max-width: 560px !important;
}
.brevo-embed #sib-form-container {
  padding: 0 !important;
}
.brevo-embed #sib-container {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.brevo-embed #sib-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}
.brevo-embed #sib-form > div {
  padding: 0 !important;
}
.brevo-embed #sib-form > div:nth-of-type(1) {
  min-width: 0;
}
.brevo-embed #sib-form > div:nth-of-type(2),
.brevo-embed #sib-form > div:nth-of-type(3) {
  grid-column: 1 / -1;
}
.brevo-embed #sib-form > div:nth-of-type(4) {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 28px !important;
}
.brevo-embed .sib-input,
.brevo-embed .sib-form-block {
  padding: 0 !important;
  margin: 0 !important;
}
.brevo-embed .entry__field {
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden;
  background: var(--deep) !important;
  transition: border-color 0.15s;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.brevo-embed .entry__field:focus-within {
  border-color: var(--amber) !important;
}
.brevo-embed .brevo-form-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: left;
  margin: 0 0 10px;
}
.brevo-embed .input,
.brevo-embed #EMAIL,
.brevo-embed input.input,
.brevo-embed input#EMAIL,
.brevo-embed .entry__field input {
  width: 100%;
  height: auto;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--strong) !important;
  -webkit-text-fill-color: var(--strong) !important;
  background: var(--deep) !important;
  background-color: var(--deep) !important;
  caret-color: var(--strong) !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  appearance: none !important;
  min-height: 56px !important;
  padding: 0 28px !important;
}
.brevo-embed .input::placeholder,
.brevo-embed #EMAIL::placeholder,
.brevo-embed input.input::placeholder,
.brevo-embed .entry__field input::placeholder {
  color: var(--muted) !important;
  opacity: 1 !important;
  letter-spacing: 0;
}
.brevo-embed .input--hidden,
.brevo-embed input[name="email_address_check"],
.brevo-embed .brevo-submit-frame {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.brevo-embed .entry__specification {
  display: block;
  margin-top: 7px !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.03em;
  color: var(--muted) !important;
  background: transparent !important;
  border: 0 !important;
}
.brevo-embed .sib-form-block[style*="text-align: right"] {
  text-align: center !important;
}
.brevo-embed .sib-form-block__button {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--strong) !important;
  background: var(--amber) !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 0 28px !important;
  min-height: unset !important;
  line-height: 1.4 !important;
  height: 56px !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-align: center !important;
  cursor: pointer;
}
.brevo-embed .sib-form-block__button:hover {
  background: var(--amber-hi) !important;
  color: #0f1117 !important;
}
.brevo-embed .sib-form-block__button svg,
.brevo-embed .sib-form-block__button .icon,
.brevo-embed .sib-form-block__button .progress-indicator__icon {
  display: none !important;
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}
.brevo-embed .sib-form-message-panel {
  max-width: 560px !important;
  margin: 0 auto 12px !important;
  border-radius: 8px !important;
  border-width: 1px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
}
.brevo-embed #error-message {
  color: var(--red) !important;
  background: oklch(26% 0.08 25) !important;
  border-color: var(--red) !important;
}
.brevo-embed #success-message {
  color: var(--green) !important;
  background: oklch(30% 0.08 145) !important;
  border-color: var(--green) !important;
}
.brevo-embed .sib-form-message-panel__inner-text,
.brevo-embed .sib-form-message-panel__text {
  font-family: var(--font-body) !important;
}
.brevo-embed .sib-form__declaration {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  max-width: 560px;
  margin-top: 2px;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.brevo-embed .declaration-block-icon {
  width: 18px;
  min-width: 18px;
  margin: 2px 0 0 !important;
  color: var(--muted);
}
.brevo-embed .svgIcon-sphere {
  width: 18px !important;
  height: 18px !important;
  opacity: 0.55;
}
.brevo-embed .path1 {
  fill: currentColor !important;
}
.brevo-embed .sib-form__declaration div[style] {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: var(--body) !important;
}
.brevo-embed .sib-form__declaration p {
  margin: 0;
}
.brevo-embed .sib-form__declaration p + p {
  margin-top: 2px;
}
.brevo-embed #sib-container a,
.brevo-embed .sib-form__declaration a {
  color: var(--subtle) !important;
  text-decoration-color: var(--muted) !important;
  text-underline-offset: 2px;
}
.brevo-embed .entry__error {
  margin-top: 7px !important;
  color: var(--red) !important;
  background: oklch(26% 0.08 25) !important;
  border-color: var(--red) !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
}
.signup-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--green);
  background: oklch(30% 0.08 145);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.signup-status.error {
  color: var(--red);
  background: oklch(26% 0.08 25);
  border-color: var(--red);
}

/* Status bar decorative */
.hero-status {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.hero-stat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.hero-stat-dot.green { background: var(--green); }

/* ── SECTION BASE ─────────────────────────────────────── */
section { padding: 100px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--strong);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  max-width: 520px;
}

/* ── DIVIDER ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* ── HOW IT WORKS ────────────────────────────────────── */
#how { background: var(--deep); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.step {
  background: var(--panel);
  padding: 32px 28px;
  position: relative;
  transition: background 0.15s;
}
.step:hover { background: oklch(18% 0.02 255); }
.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
}
.step-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--strong);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
}
/* Connector arrow */
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  z-index: 1;
}

/* ── SCREENSHOT ──────────────────────────────────────── */
#screenshot {
  padding: 100px 0;
}
.screenshot-wrap {
  margin-top: 48px;
  position: relative;
}
.screenshot-frame {
  overflow: hidden;
}
.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  /* Compensate for baked-in drop shadow in the screenshot asset. */
  transform: scale(1.025);
  transform-origin: center center;
}
.screenshot-titlebar {
  height: 36px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.titlebar-dot { width: 10px; height: 10px; border-radius: 50%; }
.titlebar-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.screenshot-img-wrap {
  position: relative;
  background: #1a2030;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Mini map visualization */
.mini-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.mini-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(oklch(20% 0.03 210) 1px, transparent 1px),
    linear-gradient(90deg, oklch(20% 0.03 210) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}
.mini-road { position: absolute; background: oklch(22% 0.04 210); }
.mini-road.h { left:0;right:0; height:4px; }
.mini-road.v { top:0;bottom:0; width:4px; }
.mini-road.major { background: oklch(26% 0.05 210); }
.mini-road.h.major { height: 6px; }
.mini-road.v.major { width: 6px; }
.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.map-marker.taxi {
  width: 12px; height: 12px;
  background: var(--amber);
  box-shadow: 0 0 12px oklch(68% 0.18 67 / 0.6);
}
.map-marker.pickup {
  width: 10px; height: 10px;
  background: transparent;
  border: 2px solid var(--green);
  box-shadow: 0 0 8px oklch(50% 0.12 145 / 0.4);
}
.map-marker.dest {
  width: 10px; height: 10px;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
}
.map-route {
  position: absolute;
  pointer-events: none;
}
/* UI overlay */
.map-left-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 160px;
  background: oklch(11% 0.02 255 / 0.9);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  backdrop-filter: blur(4px);
}
.map-panel-row {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.map-panel-row + .map-panel-row { border-top: 1px solid var(--border); }
.map-panel-id { font-family: var(--font-mono); color: var(--amber); width: 32px; font-size: 10px; }
.map-panel-status { font-size: 10px; padding: 2px 6px; border-radius: 3px; }
.map-panel-status.avail { background: oklch(25% 0.05 145); color: var(--green); }
.map-panel-status.busy  { background: oklch(22% 0.05 60);  color: var(--amber); }
.map-topbar {
  position: absolute;
  left: 160px; right: 220px; top: 0;
  height: 36px;
  background: oklch(11% 0.02 255 / 0.85);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 14px;
  backdrop-filter: blur(4px);
}
.map-topbar-item {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.map-topbar-val { font-size: 12px; color: var(--strong); }
.map-topbar-lbl { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.map-right-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 220px;
  background: oklch(11% 0.02 255 / 0.9);
  border-left: 1px solid var(--border);
  padding: 12px;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.map-req-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber-lo);
  padding: 9px 10px;
  margin-bottom: 6px;
  border-radius: 2px;
}
.map-req-card.urgent { border-left-color: var(--red); }
.map-req-from { font-size: 10px; color: var(--body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-req-to   { font-size: 10px; color: var(--amber); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.map-req-meta { display: flex; justify-content: space-between; margin-top: 5px; font-family: var(--font-mono); font-size: 9px; color: var(--subtle); }
.map-req-wait { color: var(--red); }
.screenshot-caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── ERAS ────────────────────────────────────────────── */
#eras { background: var(--deep); }
.eras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.era-card {
  background: var(--panel);
  padding: 32px 28px 28px;
  border-top: 3px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.era-card:hover { border-top-color: var(--amber); background: oklch(18% 0.02 255); }
.era-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--amber);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
}
.era-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.era-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.era-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.era-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--deep);
  border: 1px solid var(--border);
  color: var(--subtle);
  border-radius: 2px;
}
.era-card.future .era-year { color: var(--subtle); }
.era-card.future { opacity: 0.6; }
.era-thumb { border-radius: 2px; }

/* ── CTA SECTION ─────────────────────────────────────── */
#notify {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#notify::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, oklch(55% 0.18 67 / 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.notify-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.notify-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--strong);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.notify-title span { color: var(--amber); }
.notify-body {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 40px;
  line-height: 1.7;
}
/* Reuse hero form styles */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.notify-form:focus-within { border-color: var(--amber-lo); }
.notify-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--deep);
  border: none;
  color: var(--strong);
  padding: 15px 20px;
  outline: none;
}
.notify-form input::placeholder { color: var(--muted); }
.notify-form button {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  background: var(--amber);
  color: var(--strong);
  border: none;
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.notify-form button:hover { background: var(--amber-hi); }
.notify-form button:disabled { opacity: 0.6; cursor: default; }
.notify-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.notify-brevo-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--strong);
  background: var(--amber);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  transition: background 0.15s;
}
.notify-brevo-link:hover { background: var(--amber-hi); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-icon {
  width: 18px; height: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-icon span:nth-child(1) { background: var(--amber); }
.footer-icon span:nth-child(2) { background: var(--panel); }
.footer-icon span:nth-child(3) { background: var(--panel); }
.footer-icon span:nth-child(4) { background: var(--amber); }
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--body); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
  min-height: 100vh;
  padding: 112px 0 80px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.legal-content h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--strong);
  margin-bottom: 12px;
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 18px;
  color: var(--strong);
  margin: 32px 0 10px;
}
.legal-content p,
.legal-content li {
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}
.legal-content ul {
  margin: 10px 0 0 18px;
}
.legal-content a {
  color: var(--amber-hi);
  text-underline-offset: 3px;
}
.legal-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  margin: 20px 0;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.pulse { animation: pulse-dot 2s ease-in-out infinite; }
.pulse-2 { animation: pulse-dot 2s ease-in-out 0.6s infinite; }
.pulse-3 { animation: pulse-dot 2s ease-in-out 1.2s infinite; }

@keyframes blink-cursor {
  0%, 100% { opacity: 1 } 50% { opacity: 0 }
}
.blink { animation: blink-cursor 1s step-end infinite; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── EXTRACTED INLINE STYLES ─────────────────────────── */
.hero-lead {
  font-size: 17px;
  color: var(--body);
  margin: 0 auto 40px;
  line-height: 1.7;
  max-width: 560px;
}
.screenshot-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}
.screenshot-title { margin-bottom: 0; }
.screenshot-subnote {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.screenshot-outer {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.eras-grid-spaced { margin-top: 56px; }
.section-label-center { justify-content: center; }
.era-thumb-1970 {
  background: #0d0900;
  border: 1px solid #2e2000;
  margin-bottom: 20px;
  padding: 10px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  position: relative;
  overflow: hidden;
  height: 110px;
}
.era-overlay { position: absolute; inset: 0; }
.era-overlay-scanlines {
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.18) 2px, rgba(0, 0, 0, 0.18) 4px);
  pointer-events: none;
  z-index: 2;
}
.era-text-amber-header {
  color: #ff9900;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-size: 8px;
  opacity: 0.8;
}
.era-row { display: flex; }
.era-row-6 { gap: 6px; }
.era-row-8 { gap: 8px; }
.era-row-2 { gap: 2px; }
.era-row-mb4 { margin-bottom: 4px; }
.era-code-amber { color: #ff9900; width: 28px; }
.era-text-yellow { color: #ffcc00; }
.era-text-orange { color: #ff6600; }
.era-status-bottom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #ff6600;
  font-size: 8px;
  opacity: 0.6;
}
.era-status-top {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #ffcc00;
  font-size: 8px;
}
.era-thumb-1990 {
  background: #c0c0c0;
  border: 2px solid #fff;
  border-right-color: #808080;
  border-bottom-color: #808080;
  margin-bottom: 20px;
  height: 110px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 9px;
}
.era-win-titlebar {
  background: #000080;
  color: #fff;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.era-win-title { font-size: 9px; font-weight: bold; }
.era-win-btn {
  background: #c0c0c0;
  color: #000;
  width: 12px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-right-color: #808080;
  border-bottom-color: #808080;
  font-size: 8px;
}
.era-pad-6 { padding: 6px; }
.era-win-row {
  background: #fff;
  border: 1px solid #808080;
  padding: 4px;
  display: flex;
  justify-content: space-between;
}
.era-win-row-mb { margin-bottom: 4px; }
.era-text-green-bold { color: #008000; font-weight: bold; }
.era-text-brown { color: #804040; }
.era-thumb-2010 {
  background: #151922;
  border: 1px solid #2e3440;
  margin-bottom: 20px;
  height: 110px;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  font-size: 9px;
}
.era-modern-top {
  background: #1e2230;
  border-bottom: 1px solid #2e3440;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.era-modern-title { color: #cdd9e5; font-size: 9px; font-weight: 600; }
.era-modern-accent { color: #4f8ef7; font-size: 9px; }
.era-modern-row {
  background: #1e2230;
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
}
.era-modern-row-mb { margin-bottom: 4px; }
.era-text-slate { color: #cdd9e5; }
.era-text-red { color: #f05252; }
.era-thumb-2040 {
  background: #030a14;
  border: 1px solid rgba(0, 150, 220, 0.2);
  margin-bottom: 20px;
  height: 110px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  position: relative;
}
.era-overlay-grid {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0, 100, 200, 0.04) 30px, rgba(0, 100, 200, 0.04) 31px),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 100, 200, 0.04) 20px, rgba(0, 100, 200, 0.04) 21px);
}
.era-hud-inner {
  padding: 8px;
  position: relative;
  z-index: 1;
}
.era-hud-title {
  color: #00b8ff;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-size: 8px;
  text-shadow: 0 0 8px #00b8ff80;
}
.era-text-cyan-id { color: rgba(0, 184, 255, 0.5); width: 24px; }
.era-text-cyan-glow { color: #00b8ff; text-shadow: 0 0 6px #00b8ff60; }
.era-text-green-glow { color: #00ff88; text-shadow: 0 0 6px #00ff8860; }
.era-hud-meta {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: rgba(0, 184, 255, 0.4);
  font-size: 7px;
  letter-spacing: .1em;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-inner,
  .container,
  .screenshot-outer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 24px 64px;
  }

  .hero-logo-mark {
    gap: 16px;
  }

  .hero-icon {
    width: 54px;
    height: 54px;
  }

  .hero-taxi,
  .hero-dispatch {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .brevo-embed #sib-form {
    grid-template-columns: 1fr;
  }

  .brevo-embed #sib-form > div:nth-of-type(4) {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 0 !important;
  }

  .brevo-embed .sib-form-block__button {
    width: 100% !important;
  }

  .steps-grid,
  .eras-grid,
  .systems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .container,
  .screenshot-outer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-name {
    display: none;
  }

  .hero-logo-mark {
    align-items: flex-start;
  }

  .hero-icon {
    width: 44px;
    height: 44px;
  }

  .hero-taxi,
  .hero-dispatch {
    font-size: 38px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .section-title,
  .notify-title {
    font-size: 34px;
  }

  .steps-grid,
  .eras-grid,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-links {
    justify-content: center;
  }
}

/* ── Systems grid ─────────────────────────────────── */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.system-card {
  background: var(--panel);
  padding: 32px 28px;
  position: relative;
  transition: background 0.15s;
}
.system-card:hover { background: oklch(18% 0.02 255); }
.system-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: block;
}
.system-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--strong);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.system-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
