:root {
  --bg: #0d0f13;
  --bg-alt: #13161c;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.site-nav {
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 96px 48px 80px;
}
.hero-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}
.hero-stat {
  text-align: center;
  padding: 36px 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 4px;
  min-width: 200px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}
.stat-pct {
  font-size: 48px;
}
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── SHARED SECTION ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -1px;
  color: var(--fg);
  line-height: 1.15;
}
.section-lede {
  margin-top: 16px;
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
}
.centered { text-align: center; }

/* ── PROBLEM ── */
.problem {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header { margin-bottom: 64px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.problem-card {
  background: var(--bg);
  padding: 36px 36px 40px;
  border: 1px solid var(--border);
}
.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0 12px;
}
.problem-card p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SOLUTION ── */
.solution { padding: 96px 48px; }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-header { margin-bottom: 64px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.solution-card {
  background: var(--bg);
  padding: 32px 32px 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 2px;
  width: fit-content;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  line-height: 1.2;
}
.solution-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.howitworks-inner { max-width: 1000px; margin: 0 auto; }
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step { padding: 0 32px; }
.step-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 12px 0 10px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote { margin-bottom: 40px; }
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.05;
}
.closing-body {
  margin-top: 24px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}
.closing-pricing {
  margin-top: 56px;
  padding: 40px 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
}
.pricing-block {
  display: flex;
  gap: 48px;
}
.pricing-setup, .pricing-retainer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent);
}
.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--fg);
}
.footer-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 340px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-nav { padding: 18px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat { min-width: unset; padding: 28px 32px; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution { padding: 64px 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 64px 24px; }
  .steps-row { grid-template-columns: 1fr; gap: 0; }
  .step-connector { display: none; }
  .step { padding: 0 0 40px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .closing-pricing { padding: 28px 24px; }
  .pricing-block { flex-direction: column; gap: 20px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-headline { font-size: 38px; }
  .stat-number { font-size: 64px; }
}