/* ============================================================
   Monkefy landing — brand tokens
   citrus on ink, per the Monkefy brand kit
   ============================================================ */
:root {
  --ink-950: #05050a;
  --ink-900: #0b0d13;
  --ink-850: #14161d;
  --ink-800: #1f212a;
  --ink-700: #323540;
  --ink-600: #525561;
  --ink-500: #777a85;
  --ink-400: #9c9ea7;
  --ink-300: #c2c4cb;
  --ink-100: #f1f1f5;

  --citrus-300: #ddf84d;
  --citrus-400: #c9ea00;
  --citrus-500: #b5db00;
  --citrus-600: #90b600;

  --amber-400: #ffb726;
  --amber-500: #ff9900;

  --ok: #49de78;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 16px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink-950);
  color: var(--ink-100);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--citrus-500); color: var(--ink-950); }

a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); }
img, svg { display: block; }

/* ---------- shared bits ---------- */
.grad {
  background: linear-gradient(92deg, var(--citrus-300) 0%, var(--citrus-500) 55%, var(--amber-500) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
  border: 1px solid var(--ink-800);
  border-radius: 999px;
  padding: 7px 14px;
  background: color-mix(in srgb, var(--ink-900) 70%, transparent);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--citrus-500);
  box-shadow: 0 0 10px var(--citrus-500);
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe { 50% { opacity: 0.45; transform: scale(0.8); } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 12px;
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-lg { padding: 14px 26px; font-size: 15.5px; border-radius: 14px; }
.btn-primary {
  background: var(--citrus-500);
  color: var(--ink-950);
  box-shadow: 0 0 0 rgba(181, 219, 0, 0);
}
.btn-primary:hover {
  background: var(--citrus-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(181, 219, 0, 0.35);
}
.btn-ghost {
  border-color: var(--ink-700);
  color: var(--ink-300);
  background: color-mix(in srgb, var(--ink-900) 60%, transparent);
}
.btn-ghost:hover { border-color: var(--ink-500); color: var(--ink-100); transform: translateY(-2px); }
.btn-ghost .mono { color: var(--citrus-500); font-size: 13px; }

/* ---------- reveal on scroll ---------- */
.reveal, .reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in, .reveal-group.in > * { opacity: 1; transform: none; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--ink-950) 72%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink-800) 70%, transparent);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 28px; height: 28px; color: var(--citrus-500); }
.brand-word { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.nav-links {
  display: flex; gap: 26px; margin-left: 12px;
  font-size: 14px; font-weight: 500; color: var(--ink-400);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink-100); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(color-mix(in srgb, var(--ink-700) 26%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--ink-700) 26%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
}
.hero-glow-a {
  width: 620px; height: 620px;
  right: -140px; top: -80px;
  background: var(--citrus-500);
  animation: drift 14s ease-in-out infinite alternate;
}
.hero-glow-b {
  width: 420px; height: 420px;
  left: -160px; bottom: -120px;
  background: var(--amber-500);
  opacity: 0.10;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift { to { transform: translate(60px, 40px) scale(1.08); } }

.hero-inner {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
}
.hero-title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 22px 0 20px;
}
.hero-sub {
  font-size: 17.5px;
  color: var(--ink-400);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-sub strong { color: var(--citrus-500); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 30px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13.5px; color: var(--ink-500);
}
.hero-meta b { color: var(--ink-300); font-weight: 600; }
.hero-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-700); }

/* ---------- Tally stage ---------- */
.hero-stage { display: flex; justify-content: center; }
.tally-scene {
  position: relative;
  width: min(480px, 92vw);
  aspect-ratio: 1 / 1.12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tally-ring {
  position: absolute;
  top: 6%;
  left: 50%;
  translate: -50% 0;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--ink-600) 55%, transparent);
  animation: ringspin 90s linear infinite;
}
@keyframes ringspin { to { transform: rotate(360deg); } }

.tally-hit {
  position: relative;
  z-index: 3;
  background: none;
  border: 0;
  cursor: pointer;
  width: 62%;
  margin-top: -4%;
  -webkit-tap-highlight-color: transparent;
}
.tally-hit:focus-visible { outline: 2px solid var(--citrus-500); outline-offset: 12px; border-radius: 24px; }
.tally { width: 100%; height: auto; overflow: visible; }
#tallyBody { transform-box: fill-box; transform-origin: 50% 100%; }

/* bars boot in like an equalizer, then JS drives the live-ledger idle */
.tbar rect {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0.04);
  animation: barboot 1.15s cubic-bezier(0.34, 1.56, 0.5, 1) forwards;
}
#barEarL rect   { animation-delay: 0.55s; }
#barCrownL rect { animation-delay: 0.20s; }
#barMuzzle rect { animation-delay: 0.42s; }
#barCrownR rect { animation-delay: 0.30s; }
#barEarR rect   { animation-delay: 0.65s; }
@keyframes barboot {
  0%   { transform: scaleY(0.04); }
  62%  { transform: scaleY(1.12); }
  82%  { transform: scaleY(0.96); }
  100% { transform: scaleY(1); }
}

/* eyes pop in after the bars — the chart becomes a face */
.teye {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  opacity: 0;
  animation: eyepop 0.5s cubic-bezier(0.34, 1.8, 0.5, 1) 1.55s forwards;
}
@keyframes eyepop {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}
.teye circle { transform-box: fill-box; transform-origin: 50% 50%; transition: transform 0.09s ease; }
.teyes.blink .teye circle { transform: scaleY(0.08); }

#tallyBaseline {
  stroke-dashoffset: 60;
  animation: baseline 1.1s ease 0.1s forwards;
}
@keyframes baseline { to { stroke-dashoffset: 0; } }

/* happy hop when clicked */
.tally-hit.hop #tallyBody { animation: hop 0.55s cubic-bezier(0.34, 1.56, 0.5, 1); }
@keyframes hop {
  0% { transform: translateY(0) scale(1, 1); }
  25% { transform: translateY(0.6px) scale(1.06, 0.9); }
  55% { transform: translateY(-3.2px) scale(0.97, 1.06); }
  100% { transform: translateY(0) scale(1, 1); }
}

/* ---------- orbit chips ---------- */
.tally-orbits { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.orbit-chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink-700);
  background: color-mix(in srgb, var(--ink-900) 88%, transparent);
  color: var(--ink-300);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: chipin 0.6s ease forwards, floaty 5.4s ease-in-out infinite;
}
@keyframes chipin { to { opacity: 1; } }
@keyframes floaty { 50% { translate: 0 -7px; } }
.chip-card     { top: 7%;  left: 4%;  animation-delay: 1.9s, 0s;   }
.chip-x402     { top: 2%;  right: 6%; animation-delay: 2.05s, 1.2s; }
.chip-mpp      { top: 46%; right: -3%; animation-delay: 2.2s, 2.6s; }
.chip-transfer { top: 40%; left: -5%; animation-delay: 2.35s, 3.4s; }
.orbit-chip.firing {
  border-color: var(--citrus-500);
  color: var(--citrus-300);
  box-shadow: 0 0 22px rgba(181, 219, 0, 0.35);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ---------- pulse layer (payment dots flying into Tally) ---------- */
.pulse-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* ---------- caption + mini ledger ---------- */
.tally-caption {
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--ink-500);
  opacity: 0;
  animation: chipin 0.8s ease 2.1s forwards;
}
.tally-name { color: var(--citrus-500); font-weight: 700; }

.mini-ledger {
  width: 88%;
  margin-top: 14px;
  border: 1px solid var(--ink-800);
  border-radius: 14px;
  background: color-mix(in srgb, var(--ink-900) 82%, transparent);
  backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  animation: chipin 0.8s ease 2.3s forwards;
}
.mini-ledger-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  padding: 9px 14px;
  border-bottom: 1px solid var(--ink-800);
}
.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  animation: breathe 1.8s ease-in-out infinite;
}
.mini-ledger-bal { margin-left: auto; color: var(--citrus-500); font-size: 12.5px; letter-spacing: 0; }
.mini-ledger-rows {
  list-style: none;
  height: 92px;
  overflow: hidden;
  padding: 4px 0;
}
.mini-ledger-rows li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  padding: 4.5px 14px;
  animation: rowin 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes rowin { from { opacity: 0; transform: translateY(-10px); } }
.mini-ledger-rows .amt { margin-left: auto; color: var(--ink-100); }
.mini-ledger-rows .ok { color: var(--ok); }
.mini-ledger-rows .rail { color: var(--citrus-500); }

/* ---------- scroll hint ---------- */
.scroll-hint {
  position: absolute;
  left: 50%; bottom: 22px;
  translate: -50% 0;
  width: 26px; height: 42px;
  border: 1.5px solid var(--ink-600);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
}
.scroll-hint span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--citrus-500);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 55% { transform: translateY(12px); opacity: 0.2; } 100% { transform: translateY(0); opacity: 1; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 24px; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--ink-900) 55%, transparent) 18%, color-mix(in srgb, var(--ink-900) 55%, transparent) 82%, transparent); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 20px 0 18px;
}
.section-sub { color: var(--ink-400); font-size: 17px; max-width: 640px; }

/* ---------- rail cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.card {
  border: 1px solid var(--ink-800);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: color-mix(in srgb, var(--ink-900) 70%, transparent);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--citrus-500) 45%, var(--ink-800));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(181, 219, 0, 0.06);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--citrus-500);
  background: color-mix(in srgb, var(--citrus-500) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--citrus-500) 24%, transparent);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--ink-400); }
.card p a { color: var(--citrus-500); border-bottom: 1px dotted color-mix(in srgb, var(--citrus-500) 50%, transparent); }
.card em { color: var(--ink-200); font-style: normal; font-weight: 600; }
.card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rails-footnote {
  margin-top: 44px;
  font-size: 15.5px;
  color: var(--ink-400);
  max-width: 720px;
  border-left: 3px solid var(--citrus-500);
  padding-left: 18px;
}
.rails-footnote b { color: var(--ink-100); }

/* ---------- agents split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.check-list { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink-300);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--citrus-500) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--citrus-500) 40%, transparent);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 7px; height: 4.5px;
  border-left: 2px solid var(--citrus-500);
  border-bottom: 2px solid var(--citrus-500);
  transform: rotate(-45deg);
}
.check-list code { color: var(--citrus-400); font-size: 13px; }

.terminal {
  border: 1px solid var(--ink-800);
  border-radius: var(--radius);
  background: var(--ink-900);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-800);
}
.terminal-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-700); }
.terminal-bar span:first-child { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: var(--amber-400); }
.terminal-bar span:nth-child(3) { background: var(--ok); }
.terminal-bar em { margin-left: auto; font-style: normal; font-size: 11.5px; color: var(--ink-500); }
.terminal-body {
  padding: 20px 20px 24px;
  font-size: 12.8px;
  line-height: 1.75;
  min-height: 305px;
  color: var(--ink-300);
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-body .c-dim { color: var(--ink-600); }
.terminal-body .c-cit { color: var(--citrus-400); }
.terminal-body .c-amb { color: var(--amber-400); }
.terminal-body .c-ok  { color: var(--ok); }
.terminal-body .cursor {
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--citrus-500);
  vertical-align: -2px;
  animation: breathe 1s steps(2) infinite;
}

/* ---------- ledger ---------- */
.ledger-table {
  margin-top: 44px;
  border: 1px solid var(--ink-800);
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in srgb, var(--ink-900) 70%, transparent);
}
.lt-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 16px;
  padding: 18px 24px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--ink-800);
  align-items: center;
}
.lt-row:last-child { border-bottom: 0; }
.lt-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  background: color-mix(in srgb, var(--ink-850) 80%, transparent);
  padding-block: 12px;
}
.lt-name { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.lt-row .mono { font-size: 12.5px; color: var(--ink-500); }
.lt-row span:last-child { color: var(--ink-400); }
.swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.s-citrus { background: var(--citrus-500); }
.s-amber { background: var(--amber-500); }
.s-ink { background: var(--ink-500); }

.stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  border-top: 1px solid var(--ink-800);
  padding-top: 18px;
}
.stat b {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--citrus-500);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat span { font-size: 13.5px; color: var(--ink-500); }

/* ---------- platform grid ---------- */
.feature-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid var(--ink-800);
  border-radius: var(--radius);
  padding: 24px;
  background: color-mix(in srgb, var(--ink-950) 55%, transparent);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature:hover { border-color: var(--ink-600); transform: translateY(-4px); }
.feature h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--ink-400); }

/* ---------- CTA ---------- */
.cta { padding-block: 140px; text-align: center; overflow: hidden; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-inner .section-sub { margin-bottom: 34px; }
.cta-mark {
  width: 64px; height: 64px;
  color: var(--citrus-500);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 26px rgba(181, 219, 0, 0.45));
  animation: floaty 5s ease-in-out infinite;
}
.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--ink-800); padding: 48px 24px 56px; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 26px; height: 26px; }
.footer-brand b { display: block; font-size: 15px; }
.footer-brand .mono { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-500); }
.footer-note { font-size: 12.5px; color: var(--ink-600); max-width: 560px; }
.footer-legal { font-size: 11.5px; color: var(--ink-700); }

/* ---------- confetti ---------- */
.confetti {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cards-3, .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .cards-3, .feature-grid { grid-template-columns: 1fr; }
  .lt-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .lt-head { display: none; }
  .section { padding: 80px 20px; }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
}
