:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface-2: #222637;
  --fg: #f0ede8;
  --fg-muted: #8b8a87;
  --fg-subtle: #5a5957;
  --accent: #e8882a;
  --accent-dim: rgba(232, 136, 42, 0.12);
  --border: #2d3143;
  --success: #3ecf8e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-dot { color: var(--accent); }
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-subtle);
  font-weight: 500;
}
.hero-proof-sep { color: var(--border); }

/* Dispatch card mock */
.hero-visual { display: flex; justify-content: center; }
.dispatch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}
.dispatch-header {
  background: var(--surface-2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.dispatch-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.dispatch-status {
  font-size: 11px;
  color: var(--success);
  font-weight: 500;
}
.dispatch-feed { padding: 12px 0; }
.dispatch-item {
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  font-size: 13px;
  border-left: 2px solid;
}
.dispatch-item--incoming { border-color: var(--accent); }
.dispatch-item--assigned { border-color: #3b82f6; }
.dispatch-item--sent { border-color: var(--success); }
.dispatch-item--done { border-color: var(--fg-subtle); opacity: 0.7; }
.dispatch-time {
  color: var(--fg-subtle);
  font-size: 11px;
  min-width: 50px;
  padding-top: 2px;
}
.dispatch-text { color: var(--fg-muted); line-height: 1.4; }

/* Stats */
.stats {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 8px;
  max-width: 160px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Shared section styles */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* What It Does */
.what-it-does { padding: 80px 0; }
.wid-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.wid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.wid-card {
  background: var(--surface);
  padding: 40px;
}
.wid-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.wid-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.wid-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How It Works */
.how-it-works { padding: 80px 0; background: var(--surface); }
.htw-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.htw-steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.htw-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.htw-step:last-child { border-bottom: none; }
.htw-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}
.htw-step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.htw-step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* Difference */
.difference { padding: 80px 0; }
.diff-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.diff-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 720px;
  margin: 28px 0 40px;
}
.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.diff-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
}

/* Closing */
.closing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-dot { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .wid-grid { grid-template-columns: 1fr; }
  .htw-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .htw-num { font-size: 36px; }
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .wid-inner, .htw-inner, .diff-inner, .closing-inner { padding: 0 20px; }
}