:root {
  --bg: #0d0d0d;
  --bg-alt: #111111;
  --bg-light: #fafafa;
  --fg: #f0ece6;
  --fg-muted: #8a8580;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 236, 230, 0.08);
  --radius: 8px;
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 820px;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.55;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.manifesto-inner {
  max-width: 740px;
}
.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 500px;
}

/* HOW IT WORKS */
.how {
  padding: 120px 48px;
}
.how-inner { max-width: 900px; }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 72px;
  color: var(--fg);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.how-step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.2s;
}
.how-step:hover { border-color: var(--accent); }
.step-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
}
.how-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.how-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 120px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1100px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 120px 48px;
}
.outcomes-inner { max-width: 900px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
}
.outcome-stat {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.outcome-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 120px 48px 140px;
}
.closing-inner { max-width: 760px; }
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
  font-style: italic;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 60px; }
  .manifesto { padding: 64px 24px; }
  .how { padding: 80px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px 100px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
