/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --accent: #F5E500;
  --accent-dim: rgba(245, 229, 0, 0.12);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #444;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-shop-btn {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(245, 229, 0, 0.4);
  transition: background 0.2s, color 0.2s;
}

.nav-shop-btn:hover {
  background: var(--accent);
  color: #000;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
  pointer-events: none;
}

.hero-bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(245, 229, 0, 0.04) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-line { display: block; }

.hero-line--accent { 
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
}

.hero-deco {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.3;
}

.hero-circle {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(245, 229, 0, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.hero-line-graphic {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-line-graphic span {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--accent);
  opacity: 0.4;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 40px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.manifesto-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 40px;
}

.manifesto-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.manifesto-sigil {
  position: absolute;
  top: 0;
  right: -80px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent-dim);
  line-height: 1;
  user-select: none;
}

/* Pillars */
.pillars {
  padding: 120px 40px;
}

.pillars-header {
  text-align: center;
  margin-bottom: 80px;
}

.pillars-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  background: var(--surface);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.pillar:hover { background: #1a1a1a; }

.pillar-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text);
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.pillar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pillar-tags span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 229, 0, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

/* The Gap */
.thegap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}

.thegap-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.thegap-stat {
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.thegap-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.thegap-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.thegap-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.breakdown-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.breakdown-bar {
  height: 2px;
  background: #222;
  border-radius: 1px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  width: var(--w, 0%);
  background: var(--accent);
  border-radius: 1px;
}

.breakdown-val {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  text-align: right;
}

.thegap-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245, 229, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.closing-sigil {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--accent);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.footer-message {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-sep { color: var(--text-dim); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-deco { display: none; }
  .manifesto { padding: 80px 24px; }
  .manifesto-sigil { display: none; }
  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar { padding: 36px 24px; }
  .thegap { padding: 80px 24px; }
  .thegap-inner { grid-template-columns: 1fr; gap: 48px; }
  .thegap-stat { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 40px; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 24px; }
  .footer-meta { justify-content: center; }
  .breakdown-row { grid-template-columns: 120px 1fr 50px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(64px, 18vw, 120px); }
  .manifesto-headline { font-size: 32px; }
}
