/* Fonts */
:root {
  --bg: #0A0F1A;
  --bg-2: #0F1629;
  --bg-3: #141D33;
  --fg: #F0F4FF;
  --fg-muted: #8A96B0;
  --accent: #F6B93B;
  --teal: #00D4AA;
  --purple: #8B5CF6;
  --gold: #F6B93B;
  --red: #EF4444;
  --green: #22C55E;
}

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

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-3);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.nav-spacer { flex: 1; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 0.8; }

/* Section shared */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-headline em { color: var(--accent); font-style: normal; }
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--fg-muted); max-width: 160px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  margin: 0 32px;
}

/* Hero pipeline visual */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pipeline-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}
.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pipeline-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
.pipeline-badge {
  background: rgba(0, 212, 170, 0.15);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}
.pipeline-stages { display: flex; flex-direction: column; gap: 10px; }
.stage { display: flex; align-items: center; gap: 10px; }
.stage-label { font-size: 12px; color: var(--fg-muted); width: 100px; flex-shrink: 0; }
.stage-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-3);
  flex: 1;
  max-width: 160px;
}
.stage-bar--cyan { background: linear-gradient(90deg, #00D4AA, #00E5BB); width: 85%; }
.stage-bar--blue { background: linear-gradient(90deg, #3B82F6, #60A5FA); width: 55%; }
.stage-bar--gold { background: linear-gradient(90deg, #F6B93B, #F9C74F); width: 40%; }
.stage-bar--purple { background: linear-gradient(90deg, #8B5CF6, #A78BFA); width: 25%; }
.stage-bar--green { background: linear-gradient(90deg, #22C55E, #4ADE80); width: 65%; }
.stage-count {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  width: 28px;
  text-align: right;
}

.deal-cards { display: flex; flex-direction: column; gap: 12px; }
.deal-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.deal-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.deal-addr { font-size: 13px; font-weight: 600; color: var(--fg); }
.deal-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.deal-tag--hot { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.deal-tag--warm { background: rgba(249, 115, 22, 0.15); color: #F97316; }
.deal-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.deal-meta span::before { content: '→ '; }
.deal-meta span:first-child::before { content: ''; }

/* PAIN */
.pain { padding: 100px 24px; background: var(--bg-2); }
.pain-inner { max-width: 1200px; margin: 0 auto; }
.pain-text { margin-bottom: 60px; }
.pain-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-card {
  background: var(--bg-3);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.comparison-card--right { border-color: rgba(0, 212, 170, 0.2); }
.comparison-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.comparison-card--wrong .comparison-icon { background: rgba(239,68,68,0.15); color: #EF4444; }
.comparison-card--right .comparison-icon { background: rgba(0,212,170,0.15); color: var(--teal); }
.comparison-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comparison-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.comparison-card--wrong .comparison-list li::before { content: '—'; position: absolute; left: 0; color: #EF4444; }
.comparison-card--right .comparison-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); }

/* HOW */
.how { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.how-header { margin-bottom: 60px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 0 24px; }
.step:first-child { padding-left: 0; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  display: block;
}
.step-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 32px;
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--bg-2);
}
.features-header { max-width: 1200px; margin: 0 auto 56px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.14); }
.feature-icon { margin-bottom: 16px; }
.feature-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* PRICING */
.pricing { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
.price-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a1500 0%, var(--bg-2) 40%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A0F1A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-tier { font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--fg); }
.price-period { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.price-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--bg-2);
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 24px;
}
.closing-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.closing-num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--accent); }
.closing-label { font-size: 13px; color: var(--fg-muted); }
.closing-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; display: block; margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links { font-size: 13px; color: var(--fg-muted); }
.footer-sep { margin: 0 8px; opacity: 0.4; }

/* Responsive */
@media (max-width: 768px) {
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .hero-visual { grid-template-columns: 1fr; }
  .pain-comparison { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .closing-stats { gap: 16px; }
  .closing-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}