:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --fg: #f5f0e8;
  --fg-muted: #8a8478;
  --accent: #c9a87c;
  --accent-dim: rgba(201, 168, 124, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Nav */
nav {
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 6rem 3rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-accent {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.accent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
}
.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
.card-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
}
.card-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 3rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
}

/* How */
.how {
  padding: 6rem 3rem;
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--fg);
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Why */
.why {
  padding: 6rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.why-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.stats-row {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.platforms {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.platforms-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.platform-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.platform-logos span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Closing */
.closing {
  padding: 7rem 3rem;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-accent { flex-direction: row; flex-wrap: wrap; }
  .accent-card { flex: 1; min-width: 140px; }
  .steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  nav, .hero, .manifesto, .how, .why, .closing, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.75rem; }
  .accent-card { min-width: 100%; }
}