:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #1c2128;
  --accent: #e85d04;
  --accent-dim: #c44d03;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --border: #30363d;
}

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

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

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 48px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -60px;
  left: 48px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {
  border-right: 1px solid var(--border);
  padding-right: 48px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -3px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.4;
}
.hero-right { }
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  border: 1px solid rgba(232,93,4,0.3);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-card {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-card:last-child { border-right: none; }
.sc-number {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
}
.sc-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CAPABILITIES */
.capabilities {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 600px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.cap-card {
  background: var(--surface);
  padding: 40px;
  transition: background 0.2s;
}
.cap-card:hover { background: var(--surface2); }
.cap-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cap-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* HOW IT WORKS */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
}
.step-track {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.step { padding: 40px; }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* DIFFERENTIATOR */
.differentiator {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-quote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}
.diff-aside p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* VISION */
.vision {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.vision-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vision-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.vision-inner p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 32px; }
  .stat-number { font-size: 56px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .step-track { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-headline { font-size: 36px; }
}