:root {
  --bg: #0e0e0f;
  --fg: #f0ede8;
  --accent: #f5a623;
  --accent-dim: #c47d0e;
  --muted: #6b6b6b;
  --border: #1e1e1f;
  --surface: #161617;
  --surface2: #1c1c1d;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: #c8c4bc;
  max-width: 420px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-rule {
  margin-top: 4rem;
  height: 1px;
  background: var(--border);
}

/* HOW */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.how-header {
  margin-bottom: 4rem;
}
.how-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.how-header p { color: var(--muted); font-size: 1.05rem; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.step p { color: #a8a49c; font-size: 0.95rem; line-height: 1.65; }

/* WHOFOR */
.whofor {
  background: var(--surface);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whofor-inner { max-width: 1100px; margin: 0 auto; }
.whofor h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.who-item { display: flex; flex-direction: column; gap: 0.6rem; }
.who-icon {
  width: 40px;
  height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.who-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.who-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-inner { max-width: 700px; }
blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}
.manifesto-body {
  color: #a8a49c;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* PRICING */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.pricing-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: #c8c4bc;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.15em;
}

/* CLOSING */
.closing {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-inner { max-width: 650px; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.closing p {
  color: #a8a49c;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--surface);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer-note { color: var(--accent); font-size: 0.8rem; font-weight: 600; }

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { padding-top: 0; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .how, .whofor, .manifesto, .pricing, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
}