*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --surface: #1c1c1c;
  --fg: #f5f0e8;
  --fg-muted: #a09585;
  --accent: #e8a020;
  --accent-dim: #8a5f10;
  --border: #2a2a2a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.nav { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.nav-tag { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.hero { padding: 6rem 2rem 5rem; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 700; line-height: 1.08; color: var(--fg); margin-bottom: 1.75rem; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.125rem; color: var(--fg-muted); max-width: 540px; line-height: 1.7; margin-bottom: 2rem; }
.hero-cta-row { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #0d0d0d; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; padding: 0.85rem 1.75rem; border-radius: 4px; text-decoration: none; transition: background 0.2s, transform 0.1s; }
.btn-primary:hover { background: #f0b040; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.hero-cta-note { font-size: 0.85rem; color: var(--fg-muted); }
.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.02em; }
.stat-div { width: 1px; height: 48px; background: var(--border); }
.proof { padding: 5rem 2rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.proof-quote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic; color: var(--fg); line-height: 1.45; margin-bottom: 1.5rem; }
.proof-meta { font-size: 0.85rem; color: var(--fg-muted); }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; color: var(--fg); margin-bottom: 3rem; max-width: 600px; }
.features { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.feat { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 1.75rem; transition: border-color 0.2s; }
.feat:hover { border-color: var(--accent-dim); }
.feat-icon { color: var(--accent); margin-bottom: 1rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(232,160,32,0.1); border-radius: 4px; }
.feat-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.6rem; }
.feat-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.how { padding: 6rem 2rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 2rem; max-width: 600px; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); opacity: 0.35; line-height: 1; min-width: 60px; padding-top: 0.1rem; }
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.manifesto { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-text { font-family: var(--font-display); font-size: clamp(1.1rem, 2.5vw, 1.45rem); color: var(--fg); line-height: 1.7; margin-bottom: 1.5rem; }
.manifesto-text:last-child { color: var(--accent); font-style: italic; }
.outcomes { padding: 6rem 2rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.outcome { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; }
.outcome-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.outcome-text { font-size: 0.95rem; color: var(--fg); line-height: 1.5; }
.closing { padding: 7rem 2rem; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.2; color: var(--fg); margin-bottom: 1.5rem; max-width: 720px; }
.closing-sub { font-size: 1.1rem; color: var(--fg-muted); max-width: 480px; }
.footer { padding: 3rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 0.75rem; align-items: center; font-size: 0.8rem; color: var(--fg-muted); }
@media (max-width: 640px) {
  .hero, .proof, .features, .how, .manifesto, .outcomes { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.6rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .step-num { font-size: 1.8rem; min-width: 44px; }
  .closing-headline { font-size: 1.8rem; }
}