/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0E;
  --bg-alt: #111117;
  --bg-card: #0E0E14;
  --fg: #F2EFE9;
  --fg-muted: rgba(242,239,233,0.5);
  --fg-subtle: rgba(242,239,233,0.25);
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.12);
  --accent-glow: rgba(245,166,35,0.06);
  --border: rgba(242,239,233,0.08);
  --border-accent: rgba(245,166,35,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8vw 100px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  top: 30%; right: 30%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 900px; }

.manifesto-tag, .thegap-tag, .how-tag, .principles-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.7;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 760px;
}

.manifesto-blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  max-width: 640px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  opacity: 0.4;
}

.manifesto-blockquote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  font-style: italic;
}

/* ===== THE GAP ===== */
.thegap {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.thegap-inner { max-width: 1000px; }

.thegap-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.gap-side { display: flex; flex-direction: column; gap: 24px; }
.gap-side.left { align-items: flex-end; }
.gap-side.right { align-items: flex-start; }

.gap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 340px;
  width: 100%;
  border-radius: 2px;
}

.gap-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 10px;
}

.gap-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.gap-score {
  margin-top: 20px;
  height: 2px;
  background: var(--fg-subtle);
  border-radius: 1px;
  overflow: hidden;
}

.score-bar {
  display: block;
  height: 100%;
  background: var(--fg-muted);
  border-radius: 1px;
  transition: width 0.6s ease;
}

.score-bar-full { width: 100%; background: var(--accent); }

.score-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.gap-card.card-full { border-color: var(--border-accent); background: rgba(245,166,35,0.04); }
.gap-card.card-full .score-label { color: var(--accent); }

.gap-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 12px;
}

.divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  min-height: 40px;
}

.divider-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== HOW ===== */
.how {
  background: var(--bg-alt);
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.how-inner { max-width: 900px; }

.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 72px;
}

.how-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ===== PRINCIPLES ===== */
.principles {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.principles-inner { max-width: 900px; }

.principles-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 72px;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.principle { display: flex; flex-direction: column; gap: 12px; }

.principle-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245,166,35,0.5);
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.principle p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 8vw;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.orb-closing {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}

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

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.closing-highlight { color: var(--accent); }

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  padding: 60px 8vw 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-bottom { display: flex; align-items: center; }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw 80px; }
  .manifesto, .thegap, .how, .principles, .closing { padding: 80px 6vw; }
  .footer { padding: 40px 6vw 30px; }

  .hero-title { font-size: clamp(40px, 10vw, 60px); }
  .hero-stat-row { gap: 24px; }
  .stat-divider { display: none; }

  .gap-grid { grid-template-columns: 1fr; gap: 32px; }
  .gap-side.left, .gap-side.right { align-items: center; }
  .gap-card { max-width: 100%; }
  .gap-divider { display: none; }

  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-num { display: none; }

  .principles-grid { grid-template-columns: 1fr; gap: 36px; }

  .manifesto-blockquote p { font-size: 18px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: rgba(245,166,35,0.2); color: var(--fg); }