:root {
  --bg: #0d0d12;
  --surface: #14141c;
  --surface2: #1e1e28;
  --border: #2a2a38;
  --green: #10b981;
  --green-dim: #0d3d2e;
  --gold: #f59e0b;
  --red: #ef4444;
  --text: #e8e8f0;
  --text-dim: #8888a4;
  --text-muted: #555570;
}

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

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  padding: 80px 24px 72px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-left h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  max-width: 440px;
}

/* Pipeline visual */
.pipeline-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.pv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pv-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pv-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.pv-deals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deal-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.deal-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.deal-score {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.deal-score.healthy { color: var(--green); }
.deal-score.warn { color: var(--gold); }
.deal-score.risk { color: var(--red); }
.deal-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 6px;
}
.bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s;
}
.bar-fill.healthy { background: var(--green); }
.bar-fill.warn { background: var(--gold); }
.bar-fill.risk { background: var(--red); }
.deal-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* How */
.how {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.how-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.8px;
  margin-bottom: 56px;
  max-width: 600px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.step p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* Features */
.features {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.7px;
  margin-bottom: 52px;
  max-width: 540px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  padding: 72px 24px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.outcome-stat {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.outcome-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 80px 24px 100px;
  text-align: center;
}
.closing-inner {
  max-width: 660px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left h1 { font-size: 36px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; }
}