:root {
  --bg-primary: #07080d;
  --bg-secondary: #0e1018;
  --bg-card: #12141c;
  --text-primary: #f0f0f2;
  --text-secondary: #8b8d97;
  --text-muted: #5a5c66;
  --accent: #d4a039;
  --accent-glow: rgba(212, 160, 57, 0.15);
  --accent-soft: #b8892f;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── STATS BAR ─── */
.stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--bg-secondary);
  padding: 40px 36px;
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── SECTION ─── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-label {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.15;
}

/* ─── PIPELINE ─── */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pipeline-step {
  background: var(--bg-secondary);
  padding: 40px 28px;
  position: relative;
}

.pipeline-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1px;
  width: 2px;
  height: 24px;
  background: var(--accent);
  opacity: 0.4;
}

.pipeline-step:last-child::after { display: none; }

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-secondary);
  padding: 48px 40px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── CLOSING ─── */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
}

.closing-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.25;
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
}

.footer-brand span { color: var(--accent); }

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── LANDING CTAs ─── */
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

.hero-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #07080d;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta-primary:hover { background: var(--accent-soft); transform: translateY(-1px); }

.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--accent); color: var(--text-primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 50px; }
  .stats-bar { grid-template-columns: 1fr; padding: 0 24px 50px; }
  .section { padding: 50px 24px; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline-step::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .footer { padding: 30px 24px; flex-direction: column; gap: 12px; }
  .nav-cta { display: none; }
}