:root {
  --bg: #0b0d10;
  --surface: #13161c;
  --surface2: #1a1e28;
  --fg: #e8e6df;
  --fg-muted: #8a8a8a;
  --accent: #e8a44a;
  --accent-dim: rgba(232, 164, 74, 0.12);
  --border: rgba(232, 230, 223, 0.08);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
nav { display: flex; gap: 2rem; }
nav a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-headline {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}
.hero-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-tickers {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ticker { display: flex; flex-direction: column; gap: 0.25rem; }
.ticker-val {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.ticker-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 18ch;
  line-height: 1.4;
}
.ticker-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}
.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* STATS ROW */
.stats-row {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* SECTION COMMON */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

/* HOW */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.how .section-header { margin-bottom: 3rem; }
.loop-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.loop-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
}
.loop-step:nth-child(2n) { border-right: none; }
.loop-step:nth-child(3),
.loop-step:nth-child(4) { border-bottom: none; }
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 2rem;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* WHAT */
.what {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.what-left,
.what-right { padding: 5rem 3rem; }
.what-left { border-right: 1px solid var(--border); }
.what-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 40ch;
  margin-top: 1.25rem;
}
.deliverables { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.975rem;
  line-height: 1.5;
}
.del-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* MANIFESTO */
.manifesto {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.45;
  color: var(--fg);
  max-width: 60ch;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.01em;
}
.manifesto-quote p::before { content: '\201C'; }
.manifesto-quote p::after { content: '\201D'; }
.manifesto-attr {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.closing-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 45ch;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  max-width: 30ch;
}
.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 5rem 0 4rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .loop-steps { grid-template-columns: 1fr; }
  .loop-step { border-right: none; }
  .loop-step:nth-child(3),
  .loop-step:nth-child(4) { border-bottom: 1px solid var(--border); }
  .loop-step:last-child { border-bottom: none; }
  .what { grid-template-columns: 1fr; }
  .what-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .what-right { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-tickers { gap: 1.5rem; }
}