:root {
  --bg: #0D1B2A;
  --surface: #162233;
  --surface-alt: #1D2D40;
  --fg: #F4F4F0;
  --fg-muted: #8B9CB3;
  --accent: #F97316;
  --accent-light: #FB923C;
  --border: rgba(244,244,240,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.nav-cta {
  margin-left: auto;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.nav-cta:hover { opacity: 0.8; }

/* HERO */
.hero {
  padding: 100px 48px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pill {
  font-size: 13px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* STATS */
.stats {
  padding: 48px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: var(--surface);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-label, .how-label, .pricing-label, .manifesto-mark {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline, .how-headline, .pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.problem-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.problem-icon {
  width: 36px;
  height: 36px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW */
.how {
  padding: 100px 48px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--surface);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-model {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pricing-block {
  flex: 1;
  min-width: 240px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.pricing-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg-muted);
  padding: 0 24px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.pricing-takeaway {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-alt);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-mark {
  display: block;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 40px;
}
blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-sig {
  margin-top: 40px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* FOOTER */
footer {
  padding: 60px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 360px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-sub { font-size: 17px; }
  .stats { padding: 36px 24px; }
  .stats-inner { justify-content: center; }
  .stat-divider { display: none; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-plus { display: none; }
  .pricing-block { padding: 28px; }
  .manifesto { padding: 64px 24px; }
  footer { padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 32px; }
  .pricing-amount { font-size: 40px; }
  .hero-headline { font-size: 44px; }
}