:root {
  --bg: #0a0d12;
  --bg-2: #0f1318;
  --surface: #141820;
  --accent: #d4a843;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --text: #e8e3d8;
  --text-muted: #8a8a82;
  --border: rgba(255,255,255,0.07);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,67,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 160px 48px 120px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 40%, transparent 100%);
  opacity: 0.25;
}
.hero-inner {
  max-width: 760px;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,67,0.25);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

/* STATS */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1100px;
}
.stat {
  text-align: center;
  flex: 1;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  padding: 100px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.3;
}
.manifesto-attribution {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* PILLARS */
.pillars {
  background: var(--bg-2);
  padding: 100px 48px;
}
.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pillars-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--text);
  margin-bottom: 64px;
  font-weight: 400;
  max-width: 500px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pillar {
  background: var(--surface);
  padding: 40px 36px;
}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.pillar-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* CLOSING */
.closing {
  background: var(--surface);
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,168,67,0.05) 0%, transparent 70%);
}
.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.15;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
}
.footer-sep {
  color: var(--border);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 80px; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .manifesto { padding: 72px 24px; }
  .pillars { padding: 72px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 20px 24px; }
}

@media (max-width: 480px) {
  .stat-number { font-size: 36px; }
  .hero-headline { font-size: 36px; }
  .nav-tag { display: none; }
}