:root {
  --bg: #080C14;
  --surface: #0D1117;
  --surface-2: #161B27;
  --border: #1E2736;
  --fg: #E8ECF4;
  --fg-muted: #8B95A8;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --green: #34D399;
  --amber: #F59E0B;
}

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

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

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 140px 40px 80px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Deal Funnel */
.deal-funnel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.funnel-stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stage-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.stage-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-2);
  overflow: hidden;
}
.bar-1 { width: 100%; }
.bar-2 { width: 70%; background: linear-gradient(90deg, var(--border) 70%, var(--accent-dim) 100%); }
.bar-3 { width: 45%; background: linear-gradient(90deg, rgba(245,158,11,0.4) 45%, var(--accent-dim) 100%); }
.bar-4 { width: 25%; background: linear-gradient(90deg, var(--green) 100%, rgba(52,211,153,0.15) 100%); }
.stage-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--fg-muted);
}
.tag.highlight {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}
.tag.done {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
}
.funnel-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.15);
}

/* Pipeline */
.pipeline {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pipeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pipeline-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 56px;
}
.pipeline-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
}
.flow-step {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.flow-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.flow-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.flow-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.flow-arrow {
  color: var(--border);
  display: flex;
  justify-content: center;
}

/* Features */
.features {
  padding: 100px 40px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 60px;
}
.features-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  padding: 36px 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.how-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 28px;
}
.how-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.signal-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.signal-header {
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.signal-list {
  display: flex;
  flex-direction: column;
}
.signal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.signal-item:last-child { border-bottom: none; }
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(52,211,153,0.4); }
.signal-dot.amber { background: var(--amber); }
.signal-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signal-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.signal-meta {
  font-size: 12px;
  color: var(--fg-muted);
}
.signal-time {
  font-size: 11px;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Closing */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-content {
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 300px;
  line-height: 1.5;
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .pipeline-flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .nav { padding: 0 20px; }
  .hero, .pipeline, .features, .how, .closing { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .hero-proof { gap: 20px; }
  .stat-num { font-size: 28px; }
  .closing-headline { font-size: 26px; }
}