/* ============================================================
   UMAX FLEET — Operator-grade SaaS design system
   Brand-aligned: green network mark, dark professional surfaces
   Typography: Satoshi (display+body) · JetBrains Mono (data)
   ============================================================ */

:root {
  /* Surfaces */
  --bg-0:       #07090C;
  --bg-1:       #0B0F14;
  --bg-2:       #11161D;
  --bg-3:       #161C25;
  --bg-4:       #1E2530;
  --surface:    #131922;
  --surface-2:  #1A2230;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.06);
  --line-2:      rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --line-brand:  rgba(74, 222, 128, 0.28);

  /* Brand — matches logo gradient */
  --brand:       #4ADE80;
  --brand-2:     #22C55E;
  --brand-3:     #16A34A;
  --brand-soft:  rgba(74, 222, 128, 0.12);
  --teal:        #5EEAD4;

  /* Text */
  --text:        #ECEEF2;
  --text-2:      #C8CCD3;
  --text-dim:    #8A93A1;
  --text-mute:   #5A6271;

  --warn:        #F59E0B;
  --neg:         #EF4444;

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;

  --container: 1280px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; background: var(--bg-1); }
body {
  margin: 0;
  font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-2);
  background: var(--bg-1);
  overflow-x: hidden;
  letter-spacing: -0.005em;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Typography utilities ---------- */
.mono { font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-feature-settings: "tnum", "zero"; letter-spacing: 0; }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum", "zero"; }

.display {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
}
.display-strong { font-weight: 900; letter-spacing: -0.045em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brand);
}

/* ---------- Background atmosphere ---------- */
.bg-atmos {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(74, 222, 128, 0.08), transparent 60%),
    radial-gradient(700px 500px at -5% 25%, rgba(94, 234, 212, 0.05), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 35%, var(--bg-1) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---------- TOP STATUS BAR ---------- */
.statusbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.statusbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.statusbar .live {
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.statusbar .live .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--brand);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 55;
  transition: top .25s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.brand img { height: 36px; width: auto; mix-blend-mode: screen; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav-link.active { color: var(--brand); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text);
  border-radius: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand);
  color: #04140A;
  box-shadow: 0 10px 30px -10px rgba(74, 222, 128, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-brand:hover { background: var(--brand-2); transform: translateY(-1px); color: #04140A; }

.btn-light {
  background: var(--text);
  color: var(--bg-0);
}
.btn-light:hover { background: #fff; color: var(--bg-0); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }

.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-brand);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--brand);
  animation: livePulse 1.8s ease-out infinite;
}
.pill-warn { color: var(--warn); border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.1); }
.pill-warn .dot { background: var(--warn); animation: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text);
  margin: 28px 0 28px;
}
.hero h1 .brand-text {
  background: linear-gradient(95deg, #5EEAD4 0%, #4ADE80 50%, #22C55E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 560px;
}
.hero p.lede b { color: var(--text); font-weight: 600; }

.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-meta {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .item svg { color: var(--brand); flex-shrink: 0; }
.hero-meta b { color: var(--text); font-weight: 600; }

/* Hero phone + HUD */
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30px -60px;
  background: radial-gradient(closest-side, rgba(74, 222, 128, 0.18), transparent 70%);
  z-index: -1;
}
.phone {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(160deg, #232938 0%, #0e1218 100%);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.phone img { width: 100%; border-radius: 30px; }

.hud {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
  min-width: 180px;
}
.hud .lbl { color: var(--text-mute); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
.hud .val { font-family: 'Satoshi', sans-serif; font-size: 24px; font-weight: 800; line-height: 1; letter-spacing: -0.025em; color: var(--text); }
.hud .val .green { color: var(--brand); }
.hud .val .strike { color: var(--text-mute); text-decoration: line-through; font-weight: 500; font-size: 16px; margin-left: 8px; }
.hud .sub { margin-top: 8px; color: var(--text-mute); font-size: 10px; letter-spacing: 0.1em; }
.hud .badge { display: inline-flex; padding: 2px 7px; background: var(--brand-soft); color: var(--brand); border-radius: 4px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; }

.hud-1 { top: -2%; left: -16%; }
.hud-2 { bottom: 8%; left: -22%; }
.hud-3 { top: 36%; right: -14%; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hud-1 { top: -10px; left: 0; }
  .hud-2 { bottom: 10%; left: -10px; }
  .hud-3 { top: 40%; right: 0; }
}

/* ---------- LIVE TICKER ---------- */
.ticker {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-0);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-0), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-0), transparent); }

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  color: var(--text-2);
}
.ticker-item .marker { color: var(--brand); }
.ticker-item .stop { color: var(--text-dim); }
.ticker-item .price { color: var(--text); font-weight: 700; font-size: 15px; }
.ticker-item .delta { color: var(--brand); font-size: 11px; }
.ticker-item .delta.down { color: var(--neg); }

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

/* ---------- SECTIONS ---------- */
.section { position: relative; padding: 120px 0; }
.section-sm { padding: 80px 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section-head {
  max-width: var(--container);
  margin: 0 auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section-head h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 18px 0 0;
}
.section-head .lede {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 460px;
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
}

/* ---------- DASHBOARD STATS ---------- */
.dashboard {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
}
.dcell {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  position: relative;
}
.dcell:last-child { border-right: none; }
.dcell .head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.dcell .head .tag {
  background: var(--brand);
  color: var(--bg-0);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 9.5px;
}
.dcell .head .tag.warn { background: var(--warn); }
.dcell .figure {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.dcell .figure .unit { color: var(--brand); font-size: 55%; vertical-align: super; margin-left: 2px; }
.dcell .desc {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.5;
}
.dcell.pri { background: linear-gradient(150deg, rgba(74, 222, 128, 0.08), transparent 60%); }
.dcell.pri .figure { color: var(--brand); }

@media (max-width: 1000px) {
  .dashboard { grid-template-columns: 1fr 1fr; }
  .dcell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .dcell:nth-child(2n) { border-right: none; }
  .dcell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .dashboard { grid-template-columns: 1fr; }
  .dcell { border-right: none; }
  .dcell:last-child { border-bottom: none; }
}

/* ---------- BENTO FEATURES ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.bento-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.bento-card:hover { border-color: var(--line-brand); transform: translateY(-3px); }
.bento-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.bento-card h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 10px;
}
.bento-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 360px;
}
.bento-card .icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid var(--line-brand);
}

.bento-card.b1 { grid-column: span 3; grid-row: span 2; background: linear-gradient(160deg, rgba(74, 222, 128, 0.10) 0%, var(--surface) 60%); border-color: var(--line-brand); }
.bento-card.b1 h3 { font-size: 36px; line-height: 1.05; }
.bento-card.b1 .figure-inline { font-family: 'Satoshi', sans-serif; font-weight: 900; font-size: 80px; line-height: 1; color: var(--brand); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.bento-card.b2 { grid-column: span 3; }
.bento-card.b3 { grid-column: span 2; }
.bento-card.b4 { grid-column: span 4; }
.bento-card.b5 { grid-column: span 2; }
.bento-card.b6 { grid-column: span 2; }
.bento-card.b7 { grid-column: span 2; }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-card.b1, .bento-card.b2, .bento-card.b3, .bento-card.b4, .bento-card.b5, .bento-card.b6, .bento-card.b7 { grid-column: span 2; grid-row: span 1; }
  .bento-card.b1 { grid-row: span 2; }
  .bento-card.b1 h3 { font-size: 28px; }
  .bento-card.b1 .figure-inline { font-size: 56px; }
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: 180px 1fr;
}
.step .numeral {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.055em;
  padding: 52px 30px 52px 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.step .body { padding: 52px 0 52px 50px; border-top: 1px solid var(--line); }
.steps .step:last-child .numeral, .steps .step:last-child .body { border-bottom: 1px solid var(--line); }
.step .body h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 14px;
}
.step .body p { color: var(--text-dim); font-size: 15.5px; line-height: 1.65; max-width: 560px; margin: 0; }
.step .body .meta {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.step .body .meta b { color: var(--brand); font-weight: 500; }
.step { display: contents; }

@media (max-width: 800px) {
  .steps { grid-template-columns: 70px 1fr; }
  .step .numeral { font-size: 52px; padding: 32px 14px 32px 0; }
  .step .body { padding: 32px 0 32px 22px; }
  .step .body h3 { font-size: 22px; }
}

/* ---------- PREVIEW ---------- */
.preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.preview h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 18px 0 18px;
}
.preview p.l { color: var(--text-dim); font-size: 16px; max-width: 500px; margin: 0 0 36px; line-height: 1.6; }

.checks { padding: 0; margin: 0; list-style: none; }
.checks li {
  display: flex; gap: 18px; padding: 22px 0;
  border-top: 1px solid var(--line);
}
.checks li:last-child { border-bottom: 1px solid var(--line); }
.checks .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.18em;
  flex-shrink: 0;
  padding-top: 4px;
}
.checks h4 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 4px;
}
.checks p { color: var(--text-dim); margin: 0; font-size: 14.5px; line-height: 1.55; }

@media (max-width: 1000px) { .preview { grid-template-columns: 1fr; gap: 50px; } }

/* ---------- WHY US / PRINCIPLES (replaces fake reviews) ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.principle {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  background: var(--surface);
  position: relative;
  transition: border-color .25s, transform .25s;
}
.principle:hover { border-color: var(--line-brand); transform: translateY(-3px); }
.principle .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand);
}
.principle h4 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 20px 0 14px;
}
.principle p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .principles { grid-template-columns: 1fr; } }

/* ---------- EARLY ACCESS BANNER ---------- */
.early-banner {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line-brand);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(94, 234, 212, 0.10), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(74, 222, 128, 0.08), transparent 60%),
    var(--surface);
  padding: 56px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.early-banner h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 12px 0 12px;
}
.early-banner p { color: var(--text-dim); max-width: 520px; margin: 0; }
@media (max-width: 900px) {
  .early-banner { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ---------- CTA RECEIPT ---------- */
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: stretch;
}
.cta-main {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.cta-main h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 16px 0 18px;
}
.cta-main p { color: var(--text-dim); max-width: 480px; margin: 0 0 32px; font-size: 16px; }

/* Receipt panel */
.receipt {
  background: #F4EFE3;
  color: #0B0F14;
  padding: 30px 28px 0;
  border-radius: 18px 18px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  position: relative;
}
.receipt::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 14px;
  background:
    radial-gradient(circle at 7px 0, var(--bg-1) 7px, transparent 8px) repeat-x;
  background-size: 14px 14px;
}
.receipt .head { text-align: center; font-weight: 800; font-size: 12.5px; letter-spacing: 0.22em; border-bottom: 1.5px dashed #0B0F14; padding-bottom: 12px; margin-bottom: 12px; }
.receipt .row { display: flex; justify-content: space-between; padding: 4px 0; }
.receipt .row.b { border-top: 1.5px dashed #0B0F14; margin-top: 8px; padding-top: 10px; font-weight: 700; }
.receipt .v { font-weight: 600; }
.receipt .total {
  font-family: 'Satoshi', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-align: right;
  margin: 12px 0 4px;
  letter-spacing: -0.025em;
}
.receipt .total .neg { color: #16703B; }
.receipt .foot { text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; padding: 6px 0 22px; }

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-0);
  color: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  transition: border-color .2s, transform .2s, background .2s;
  min-width: 170px;
}
.store-badge:hover { border-color: var(--brand); transform: translateY(-2px); color: #fff; }
.store-badge .lt { font-size: 9.5px; letter-spacing: 0.06em; opacity: 0.75; line-height: 1; }
.store-badge .lm { font-size: 15px; font-weight: 700; line-height: 1.1; margin-top: 2px; }
.store-badge .soon {
  background: var(--brand-soft);
  color: var(--brand);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  margin-left: 6px;
}

@media (max-width: 1000px) { .cta-wrap { grid-template-columns: 1fr; } .cta-main { padding: 40px 28px; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 4px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 18px;
  align-items: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-q .idx { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; color: var(--brand); }
.faq-q .toggle {
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--text);
  transition: transform .3s, background .2s, color .2s, border-color .2s;
}
.faq-q.open .toggle { background: var(--brand); color: var(--bg-0); border-color: var(--brand); transform: rotate(45deg); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > div { overflow: hidden; padding-left: 74px; }
.faq-a .inner { color: var(--text-dim); font-size: 15.5px; line-height: 1.65; padding-bottom: 28px; max-width: 720px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

@media (max-width: 700px) {
  .faq-q { grid-template-columns: 32px 1fr 30px; gap: 12px; font-size: 16px; }
  .faq-a > div { padding-left: 44px; }
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line-2);
  background: linear-gradient(180deg, transparent, var(--bg-0));
  padding: 80px 0 32px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }

.footer-brand img { height: 40px; margin-bottom: 18px; mix-blend-mode: screen; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 320px; line-height: 1.6; margin: 0 0 18px; }
.footer-status {
  display: grid;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.footer-status .row { display: flex; justify-content: space-between; color: var(--text-mute); }
.footer-status .row .v { color: var(--text-2); }
.footer-status .row .v.live { color: var(--brand); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.footer-bottom a { color: var(--text-mute); text-decoration: none; }
.footer-bottom a:hover { color: var(--brand); }
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text-dim);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-bottom .socials a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 34px; left: 0; right: 0;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line-brand);
  z-index: 54;
  padding: 90px 24px 30px;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu.open { display: block; }

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 600px) {
  .statusbar-inner { padding: 8px 16px; gap: 8px; font-size: 9px; }
  .statusbar-inner .hide-sm { display: none; }
  .nav-inner { padding: 12px 16px; }
  .container { padding: 0 16px; }
  .hero { padding: 130px 0 60px; }
  .cta-main { padding: 32px 22px; }
  .early-banner { padding: 32px 22px; }
}

/* ============================================================
   LEGAL / DOCS pages
   ============================================================ */
.doc-hero {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--line-2);
}
.doc-hero .container { max-width: 1000px; }
.doc-hero h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 22px 0 14px;
}
.doc-hero .lede { color: var(--text-dim); font-size: 17px; max-width: 640px; line-height: 1.6; }
.doc-hero .meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.doc-hero .meta b { color: var(--text); font-weight: 500; }

.doc-body { padding: 70px 0 120px; }
.doc-body .container { max-width: 1100px; }

.doc-toc {
  position: sticky;
  top: 120px;
  padding: 24px 0;
}
.doc-toc h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}
.doc-toc a {
  display: block;
  padding: 7px 0;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13.5px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  transition: color .2s, border-color .2s;
}
.doc-toc a:hover { color: var(--text); border-color: var(--brand); }

.doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; } .doc-toc { display: none; } }

.doc-content h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 56px 0 18px;
  padding-top: 8px;
}
.doc-content h2:first-child { margin-top: 0; }
.doc-content h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 28px 0 12px;
  letter-spacing: -0.02em;
}
.doc-content p, .doc-content li { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; }
.doc-content p { margin: 0 0 16px; }
.doc-content ul { padding-left: 22px; margin: 0 0 16px; }
.doc-content li { margin-bottom: 6px; }
.doc-content strong { color: var(--text); font-weight: 600; }
.doc-content a { color: var(--brand); text-decoration: none; border-bottom: 1px solid var(--line-brand); }
.doc-content a:hover { border-color: var(--brand); }

.doc-content .note {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 10px 10px 0;
  color: var(--text-2);
  font-size: 14.5px;
}
.doc-content .note b { color: var(--brand); }

/* API docs specific */
.api-endpoint {
  margin: 26px 0;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.api-endpoint .head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}
.api-endpoint .method {
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.api-endpoint .method.GET    { background: rgba(74, 222, 128, 0.18); color: var(--brand); }
.api-endpoint .method.POST   { background: rgba(245, 158, 11, 0.18); color: var(--warn); }
.api-endpoint .method.PATCH  { background: rgba(94, 234, 212, 0.18); color: var(--teal); }
.api-endpoint .method.DELETE { background: rgba(239, 68, 68, 0.18); color: var(--neg); }
.api-endpoint .path { color: var(--text); font-weight: 500; }
.api-endpoint .body { padding: 18px; }
.api-endpoint .body p { margin: 0 0 12px; font-size: 14.5px; }

pre.code {
  background: var(--bg-0);
  color: #C8CCD3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.55;
  overflow-x: auto;
  margin: 12px 0;
  white-space: pre;
}
code.inline {
  background: var(--bg-2);
  color: var(--brand);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border: 1px solid var(--line);
}

.code .k { color: #FF7B72; }
.code .s { color: #82F76C; }
.code .n { color: #79C0FF; }
.code .c { color: #6B6960; }
.code .p { color: #C8CCD3; }
