:root {
  --bg: #08080f;
  --surface: #0f0f1a;
  --surface2: #16162a;
  --purple: #8B5CF6;
  --purple-dim: rgba(139, 92, 246, 0.15);
  --orange: #FF6B35;
  --text: #f0f0f8;
  --text-muted: #8888aa;
  --text-dim: #55557a;
  --border: rgba(139, 92, 246, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8, 8, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--text); }
.nav-tagline { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(139, 92, 246, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #08080f 0%, #0c0c1a 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 700px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  font-weight: 500;
}
.manifesto-text {
  font-size: 26px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}

/* STATS */
.stats { padding: 80px 40px; background: var(--bg); }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--purple);
  letter-spacing: 1px;
}
.stat-label { display: block; font-size: 13px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* CHAPTERS */
.chapters { padding: 100px 40px; background: var(--surface); }
.chapters-inner { max-width: 1100px; margin: 0 auto; }
.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 60px;
}
.chapter-list { display: flex; flex-direction: column; gap: 0; }
.chapter-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.chapter-row:hover { color: var(--text); }
.chapter-city { flex: 1; }
.chapter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

/* WHAT */
.what { padding: 100px 40px; background: var(--bg); }
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.what-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.what-card:hover { background: var(--surface2); border-color: rgba(139, 92, 246, 0.5); }
.what-icon {
  display: block;
  width: 24px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 20px;
  border-radius: 2px;
}
.what-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.what-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* VISION */
.vision { padding: 100px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.vision-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.vision-quote {
  font-size: 28px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}
.vision-attr { font-size: 13px; color: var(--orange); margin-bottom: 48px; letter-spacing: 1px; }
.vision-body { font-size: 17px; color: var(--text-muted); line-height: 1.8; }

/* FOOTER */
.footer { padding: 60px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.footer-note { font-size: 12px; color: var(--text-dim); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 80px; }
  .manifesto { padding: 70px 24px; }
  .manifesto-text { font-size: 20px; }
  .stats { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .chapters { padding: 70px 24px; }
  .what { padding: 70px 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .vision { padding: 70px 24px; }
  .vision-quote { font-size: 22px; }
}