:root {
  --bg: #0c0c0f;
  --bg-alt: #111116;
  --surface: #18181f;
  --surface-hover: #222230;
  --fg: #f4f4f6;
  --fg-muted: #8a8a9a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --accent-hover: #fbbf24;
  --green: #22c55e;
  --border: rgba(255,255,255,0.07);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

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;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* DASHBOARD WIDGET */
.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.dash-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-hover);
}
.dash-dots span:first-child { background: #ef4444; }
.dash-dots span:nth-child(2) { background: var(--accent); }
.dash-dots span:last-child { background: #22c55e; }
.dash-title { font-size: 12px; color: var(--fg-muted); font-family: 'DM Sans', monospace; }
.dash-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.dash-metric { display: flex; justify-content: space-between; align-items: baseline; }
.dash-metric-label { font-size: 11px; color: var(--fg-muted); }
.dash-metric-value { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--fg); }
.dash-metric-value.accent { color: var(--accent); }
.dash-bar-row { display: flex; justify-content: space-between; }
.dash-bar-label { font-size: 11px; color: var(--fg-muted); }
.dash-bar-value { font-size: 14px; font-weight: 600; color: var(--accent); }
.dash-bar { height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.dash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #fbbf24); border-radius: 3px; }
.dash-spike { text-align: right; }
.dash-spike-text { font-size: 11px; color: var(--green); font-weight: 600; }
.dash-leads { border-top: 1px solid var(--border); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.dash-lead { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-muted); }
.dash-lead span:first-of-type { flex: 1; }
.dash-lead-dot { width: 6px; height: 6px; border-radius: 50%; background: #4b5563; flex-shrink: 0; }
.dash-lead-dot.green { background: var(--green); }
.dash-lead-dot.amber { background: var(--accent); }
.dash-lead-time { font-size: 10px; color: var(--surface-hover); }

/* HERO STATS */
.hero-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat { flex: 1; padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* PROOF */
.proof { padding: 40px 40px 60px; border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; }
.proof-logos { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.proof-item { display: flex; align-items: center; gap: 10px; color: var(--fg-muted); font-size: 14px; }
.proof-icon { width: 20px; height: 20px; opacity: 0.5; }
.proof-icon svg { width: 100%; height: 100%; }

/* PROBLEM */
.problem { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.problem-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-top: 20px;
}
.problem-list { display: flex; flex-direction: column; gap: 28px; }
.problem-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--surface); border-radius: 6px; border: 1px solid var(--border); }
.problem-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.problem-icon svg { width: 14px; height: 14px; color: #ef4444; stroke-width: 2; }
.problem-title { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.problem-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* SYSTEM */
.system { padding: 100px 40px; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.system-inner { max-width: 1200px; margin: 0 auto; }
.centered { text-align: center; }
.section-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.system-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
.system-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 60px; }
.system-flow { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: grid; grid-template-columns: 80px 1fr 120px; gap: 32px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--border); }
.flow-step:last-child { border-bottom: none; }
.flow-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; color: var(--fg-muted); }
.flow-number.accent { color: var(--accent); }
.flow-title { font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.flow-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; max-width: 540px; }
.flow-visual { display: flex; justify-content: flex-end; }
.flow-icon-box { width: 56px; height: 56px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.flow-icon-box svg { width: 24px; height: 24px; color: var(--fg-muted); }
.flow-icon-box.amber { background: var(--accent-dim); border-color: rgba(245,158,11,0.25); }
.flow-icon-box.amber svg { color: var(--accent); }
.flow-arrow { display: flex; justify-content: center; padding: 8px 0; }
.flow-arrow svg { width: 20px; height: 20px; color: var(--fg-muted); opacity: 0.4; }

/* NUMBERS */
.numbers { padding: 80px 40px; border-bottom: 1px solid var(--border); }
.numbers-inner { max-width: 1200px; margin: 0 auto; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.num-card { background: var(--bg); padding: 36px 28px; }
.num-value { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.num-label { font-size: 13px; color: var(--fg); line-height: 1.5; margin-bottom: 12px; }
.num-source { font-size: 11px; color: var(--fg-muted); }

/* PRICING */
.pricing { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
.pricing-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 40px; position: relative; }
.price-card.featured { border-color: rgba(245,158,11,0.4); background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--surface) 100%); }
.price-badge { position: absolute; top: -1px; right: 32px; background: var(--accent); color: #000; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 0 0 4px 4px; }
.price-tier { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--fg-muted); margin-bottom: 12px; }
.price-range { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; color: var(--fg); line-height: 1; margin-bottom: 16px; }
.price-range-note { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.price-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.6; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; color: var(--fg); padding-left: 20px; position: relative; }
.price-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.pricing-cta { text-align: center; }
.pricing-cta-text { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }

/* CLOSING */
.closing { padding: 120px 40px; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-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); margin-bottom: 40px; }
.closing-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); letter-spacing: 2px; line-height: 1; margin-bottom: 28px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); max-width: 640px; margin: 0 auto 60px; line-height: 1.7; }
.closing-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.closing-stat { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; text-align: left; }
.closing-stat-val { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.closing-stat-label { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* FOOTER */
.footer { padding: 80px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.footer-logo-accent { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--fg-muted); max-width: 280px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--fg-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-built { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-dashboard { max-width: 520px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-step { grid-template-columns: 60px 1fr; }
  .flow-visual { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; width: 100%; }
  .stat-divider { display: none; }
  .proof { padding: 40px 24px; }
  .proof-logos { gap: 24px; }
  .problem { padding: 80px 24px; }
  .system { padding: 80px 24px; }
  .numbers { padding: 60px 24px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-proof { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-inner { padding: 14px 24px; }
}