:root {
  --bg: #141416;
  --bg-raised: #1c1c20;
  --bg-card: #222228;
  --fg: #f0eee8;
  --fg-muted: #8a8794;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.06);
  --border: rgba(240, 238, 232, 0.08);
  --teal: #3EC9C0;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  padding: 100px 40px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
  color: var(--fg);
  max-width: 600px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-routes {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.hero-routes svg { color: var(--accent); flex-shrink: 0; }
.hero-routes .sep { color: var(--fg-muted); opacity: 0.4; margin: 0 4px; }

/* Hero metric card */
.hero-metric-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.hero-metric-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%);
  opacity: 0.08;
  z-index: 0;
}
.metric-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
  position: relative;
}
.metric-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}
.metric-card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  position: relative;
}
.metric-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  position: relative;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.metric-row-label {
  font-size: 12px;
  color: var(--fg-muted);
}
.metric-row-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.metric-row-val.accent { color: var(--accent); }

/* STATS */
.stats {
  padding: 64px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-block {
  padding: 0 48px;
}
.stat-block:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-note {
  font-size: 12px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* WORKFLOW */
.workflow {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.workflow-inner { max-width: 1100px; margin: 0 auto; }
.workflow-header { margin-bottom: 72px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--fg);
  max-width: 560px;
}
.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
}
.workflow-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 40px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  margin: -1px;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 4px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.step-meta {
  font-size: 12px;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* PRICING */
.pricing {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { margin-bottom: 64px; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-raised) 100%);
}
.card-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1;
}
.card-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-muted);
}
.card-volumes { margin-bottom: 20px; }
.vol-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.vol-line:last-child { border-bottom: none; }
.card-note {
  font-size: 12px;
  color: var(--teal);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.manifesto-inner { max-width: 720px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 36px;
  font-style: normal;
  position: relative;
  padding-left: 28px;
}
.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-metric-card { display: none; }
  .workflow-steps { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .stat-block { padding: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 24px 56px; }
  .stats, .workflow, .pricing, .manifesto { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
  .workflow-step { padding: 28px 24px; }
  .pricing-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}