:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --border: #2e2e2e;
  --text: #f0ede6;
  --text-muted: #8a8578;
  --accent: #ff6b2b;
  --accent-light: #ff8c4b;
  --green: #4ade80;
  --red: #f87171;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 120px;
  line-height: 1.4;
  margin-top: 6px;
}

/* LEAD FUNNEL WIDGET */
.lead-funnel-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  font-family: var(--font-body);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.widget-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.widget-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.funnel-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.funnel-step:last-child { border-bottom: none; }
.step-label { font-size: 13px; color: var(--text-muted); }
.step-value { font-size: 13px; font-weight: 600; }
.step-value.green { color: var(--green); }
.step-value.red { color: var(--red); }
.funnel-step.missed .step-label { text-decoration: line-through; color: #555; }
.funnel-step.missed .step-value { color: var(--red); }

/* PROOF */
.proof {
  padding: 60px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: none; }
.proof-stat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}
.proof-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 600px;
}
.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 {
  background: var(--surface);
  padding: 36px 32px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* PRICING */
.pricing {
  padding: 80px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-card {
  max-width: 520px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 16px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.price-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: 18px;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.pricing-tagline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-list li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-list .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .navbar, .hero, .proof, .features, .pricing, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 48px; padding-bottom: 48px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 32px 24px; }
  .price-number { font-size: 56px; }
}