:root {
  --bg: #0B1120;
  --bg-2: #111827;
  --fg: #F9FAFB;
  --fg-muted: #9CA3AF;
  --accent: #B8FF57;
  --accent-dim: rgba(184, 255, 87, 0.12);
  --border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.03);
}

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

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

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* NAV */
.nav { padding: 24px 48px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.nav-tagline { color: var(--fg-muted); font-size: 13px; font-weight: 400; }

/* HERO */
.hero { padding: 80px 48px 80px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-label { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-size: clamp(32px, 3.5vw, 52px); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-lede { color: var(--fg-muted); font-size: 17px; line-height: 1.65; max-width: 480px; }

/* BROWSER MOCKUP */
.hero-browser { background: var(--bg-2); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 32px 64px rgba(0,0,0,0.4); }
.browser-chrome { background: #1C2333; padding: 12px 16px; display: flex; gap: 8px; align-items: center; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.browser-screen { padding: 24px; }
.mock-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.mock-logo { width: 80px; height: 20px; background: var(--accent); border-radius: 3px; }
.mock-links { display: flex; gap: 8px; margin-left: 16px; flex: 1; }
.mock-link { width: 56px; height: 10px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.mock-cta { width: 72px; height: 28px; background: var(--accent); border-radius: 4px; }
.mock-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.mock-headline-block { display: flex; flex-direction: column; gap: 10px; }
.mock-h1 { height: 22px; background: rgba(255,255,255,0.85); border-radius: 3px; width: 90%; }
.mock-h1-short { width: 65%; background: rgba(184, 255, 87, 0.3); }
.mock-sub { height: 12px; background: rgba(255,255,255,0.08); border-radius: 2px; width: 100%; }
.mock-sub-short { width: 75%; }
.mock-btn-row { display: flex; gap: 10px; margin-top: 8px; }
.mock-btn-primary { width: 100px; height: 34px; background: var(--accent); border-radius: 4px; }
.mock-btn-secondary { width: 80px; height: 34px; background: transparent; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; }
.mock-image-block { border-radius: 8px; overflow: hidden; }
.mock-image-inner { width: 100%; height: 180px; background: linear-gradient(135deg, #1C2A1C 0%, #2A3A1A 50%, #3A4A20 100%); }

/* STATS */
.stats-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; }
.stat-item { text-align: center; padding: 0 32px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-star { font-size: 24px; }
.stat-label { font-size: 13px; color: var(--fg-muted); line-height: 1.4; max-width: 140px; margin: 0 auto; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* PROBLEM */
.problem-section { padding: 100px 48px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.problem-headline { font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.02em; margin-bottom: 64px; max-width: 600px; line-height: 1.2; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.problem-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.problem-icon { font-size: 20px; color: #FF6B6B; margin-bottom: 16px; }
.problem-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.problem-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* SOLUTION */
.solution-section { padding: 100px 48px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-headline { font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.02em; margin-bottom: 64px; max-width: 640px; line-height: 1.2; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.solution-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.solution-icon { font-size: 18px; color: var(--accent); margin-bottom: 16px; }
.solution-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.solution-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* OUTCOMES */
.outcomes-section { padding: 100px 48px; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-headline { font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.02em; margin-bottom: 64px; max-width: 640px; line-height: 1.2; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.outcome-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.outcome-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.outcome-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.outcome-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* PRICING NOTE */
.pricing-note { background: var(--accent-dim); border: 1px solid rgba(184, 255, 87, 0.2); border-radius: 12px; padding: 32px 40px; display: inline-block; }
.pricing-row { display: flex; align-items: center; gap: 24px; margin-bottom: 12px; }
.pricing-item { display: flex; align-items: baseline; gap: 6px; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--accent); }
.pricing-label { font-size: 14px; color: var(--fg-muted); }
.pricing-divider { font-size: 20px; color: var(--accent); font-weight: 300; }
.pricing-sub { font-size: 13px; color: var(--fg-muted); }

/* MANIFESTO */
.manifesto-section { padding: 100px 48px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-text { font-size: clamp(18px, 2.2vw, 26px); line-height: 1.6; color: var(--fg-muted); max-width: 820px; }
.manifesto-text em { color: var(--fg); font-style: normal; }

/* CLOSING */
.closing-section { padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 54px); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; }

/* FOOTER */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.footer-tagline { color: var(--fg-muted); font-size: 13px; flex: 1; }
.footer-copy { font-size: 12px; color: rgba(156,163,175,0.5); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-lede { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
  .manifesto-section, .closing-section, .outcomes-section, .solution-section, .problem-section { padding: 80px 24px; }
}

@media (max-width: 500px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-note { width: 100%; }
}