:root {
  --bg: #09090b;
  --surface: #111114;
  --surface-alt: #18181b;
  --text: #faf6ed;
  --text-muted: #a8a29e;
  --text-dim: #57534e;
  --accent: #f59e0b;
  --accent-dim: #78350f;
  --rule: #27272a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-article-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-article-link:hover {
  color: #fbbf24;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--rule);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.hero-sub em {
  font-style: normal;
  color: var(--text);
}

.hero-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--rule);
  padding-left: 2.5rem;
}

.hero-stat {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.hero-stat:last-child { border-bottom: none; }

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* WHY SECTION */
.why-section {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.why-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.why-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.why-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TOPICS SECTION */
.topics-section {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.topics-header {
  margin-bottom: 3rem;
}

.topics-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.topics-grid {
  max-width: 800px;
}

.topic-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.topic-row:last-child { border-bottom: none; }

.topic-icon {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.5;
}

.topic-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.topic-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing-section {
  padding: 7rem 2.5rem;
  background: var(--surface);
  text-align: center;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.closing-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #09090b;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.closing-cta:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

/* FOOTER */
.site-footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 1.25rem 1.5rem; }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2.5rem;
  }

  .hero-stat-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat { border-bottom: none; border-right: 1px solid var(--rule); padding-right: 1.5rem; }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-size: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }

  .manifesto { padding: 3.5rem 1.5rem; }
  .why-section { padding: 3.5rem 1.5rem; }
  .topics-section { padding: 3.5rem 1.5rem; }
  .closing-section { padding: 4.5rem 1.5rem; }
}