:root {
  --bg: #0c0f1a;
  --bg-2: #131729;
  --surface: #1a1f35;
  --surface-2: #212742;
  --border: rgba(255,255,255,0.07);
  --text: #f0f2f8;
  --text-2: #8890aa;
  --text-3: #5a6080;
  --accent: #F97316;
  --accent-dim: rgba(249,115,22,0.15);
  --on: #22c55e;
  --on-dim: rgba(34,197,94,0.15);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(12,15,26,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text-2); text-decoration: none; padding: 6px 12px; border-radius: 8px; transition: color 0.15s, background 0.15s; }
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 100px;
  background: var(--accent-dim);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #F97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── PLATFORM GRID ── */
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 680px;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-3);
  transition: all 0.3s ease;
}
.platform-chip.loaded { color: var(--text); }
.platform-chip svg { flex-shrink: 0; opacity: 0.7; }
.platform-chip.loaded svg { opacity: 1; }

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-3);
}
.status-dot.on {
  background: var(--on);
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
}

/* ── RESULT BAR ── */
.hero-result-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.result-label { font-size: 0.8rem; color: var(--text-2); }
.result-count {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.result-links { display: flex; flex-wrap: wrap; gap: 6px; }
.link-chip {
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  font-size: 0.75rem;
  color: var(--accent);
  font-family: 'DM Mono', 'Courier New', monospace;
}

/* ── HOW ── */
.how {
  padding: 80px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 24px; }
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.step-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ── MANIFESTO ── */
.manifesto { padding: 100px 32px; }
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.manifesto-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.manifesto-stat-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing { padding: 100px 32px; background: var(--bg-2); border-top: 1px solid var(--border); }
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer { padding: 48px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-2);
}
.footer-tagline { font-size: 0.85rem; color: var(--text-3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-divider { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 90px 20px 60px; }
  .hero-visual { padding: 24px 20px; }
  .hero-title { font-size: 2rem; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav { padding: 0 20px; }
}
@media (max-width: 480px) {
  .how, .manifesto, .closing, .footer { padding: 64px 20px; }
}