:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --surface-2: #22223a;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #e8e8f0;
  --text-dim: #8a8aa8;
  --text-muted: #5a5a72;
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.15);
  --border: #2a2a42;
}

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

html { scroll-behavior: smooth; }

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
  border-radius: 6px;
}
.brand-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.nav-links { display: flex; gap: 2rem; }
.nav-link { color: var(--text-dim); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }

/* HERO */
.hero { padding: 5rem 3rem 4rem; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 500; margin-bottom: 1rem; }
.hero-headline { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--text); margin-bottom: 1.25rem; }
.hero-sub { color: var(--text-dim); font-size: 1.0625rem; max-width: 440px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-stats-row { display: flex; align-items: center; gap: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.125rem; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border); }

/* DASHBOARD MOCK */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.08);
}
.mock-topbar { background: var(--surface-2); padding: 0.625rem 1rem; display: flex; align-items: center; gap: 0.375rem; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }
.mock-title { margin-left: 0.5rem; font-size: 0.75rem; color: var(--text-dim); font-family: 'DM Sans', sans-serif; }
.mock-body { padding: 1.25rem; }
.mock-kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.mock-kpi { background: var(--surface-2); border-radius: 8px; padding: 0.875rem; }
.kpi-label { font-size: 0.6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.kpi-val { font-family: 'Syne', sans-serif; font-size: 1.375rem; font-weight: 700; color: var(--text); }
.kpi-delta { font-size: 0.75rem; color: var(--green); font-weight: 500; }
.mock-chart { background: var(--surface-2); border-radius: 8px; padding: 0.875rem; margin-bottom: 1rem; }
.chart-label { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 48px; }
.bar { flex: 1; background: var(--accent); border-radius: 3px 3px 0 0; opacity: 0.7; transition: opacity 0.2s; }
.bar:last-child { opacity: 1; }
.mock-recent { background: var(--surface-2); border-radius: 8px; padding: 0.875rem; }
.recent-label { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.recent-row { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 0; border-bottom: 1px solid var(--border); font-size: 0.75rem; }
.recent-row:last-child { border-bottom: none; }
.recent-email { color: var(--text-dim); font-family: monospace; }
.recent-amount { color: var(--text); font-weight: 600; }
.recent-badge { color: var(--green); font-size: 0.6875rem; }

/* PROOF STRIP */
.proof { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem; }
.proof-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; }
.proof-stat { flex: 1; }
.proof-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 0.375rem; }
.proof-text { font-size: 0.875rem; color: var(--text-dim); line-height: 1.5; }
.proof-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* HOW SECTION */
.how { padding: 5rem 3rem; }
.how-header { max-width: 1200px; margin: 0 auto 4rem; text-align: left; }
.section-eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 500; margin-bottom: 0.875rem; }
.section-headline { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--text); margin-bottom: 1rem; }
.section-sub { color: var(--text-dim); font-size: 1rem; max-width: 500px; }
.steps-row { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { border: 1px solid var(--border); border-radius: 12px; padding: 2rem; background: var(--surface); transition: border-color 0.2s; }
.step-card:hover { border-color: var(--accent); }
.step-num { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1rem; }
.step-title { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.step-body { color: var(--text-dim); font-size: 0.9375rem; line-height: 1.65; }

/* FEATURES */
.features { padding: 5rem 3rem; background: var(--surface); border-top: 1px solid var(--border); }
.features-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { padding: 1.75rem; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); transition: border-color 0.2s; }
.feature-card:hover { border-color: var(--accent-dim); }
.feature-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.feature-title { font-family: 'Syne', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: 0.625rem; }
.feature-body { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }

/* PRICING */
.pricing { padding: 5rem 3rem; }
.pricing-header { max-width: 1200px; margin: 0 auto 3rem; }
.pricing-cards { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; background: var(--surface); position: relative; transition: border-color 0.2s, transform 0.2s; }
.pricing-card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(245,166,35,0.1); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.875rem; border-radius: 20px; }
.plan-name { font-family: 'Syne', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 0.375rem; }
.per-mo { font-size: 1rem; font-weight: 400; color: var(--text-dim); }
.plan-desc { color: var(--text-dim); font-size: 0.875rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li { color: var(--text-dim); font-size: 0.9rem; padding-left: 1.5rem; position: relative; }
.plan-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.875rem; }

/* CLOSING */
.closing { padding: 6rem 3rem; background: var(--surface); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--text); margin-bottom: 1.25rem; }
.closing-sub { color: var(--text-dim); font-size: 1.0625rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
.footer { padding: 2.5rem 3rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-copy { color: var(--text-muted); font-size: 0.875rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .steps-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .proof-inner { flex-direction: column; gap: 1.5rem; }
  .proof-divider { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .hero, .how, .features, .pricing, .closing { padding: 3.5rem 1.5rem; }
  .proof { padding: 2rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats-row { flex-wrap: wrap; }
}