/* ===== TOKENS ===== */
:root {
  --bg: #080d0f;
  --bg-alt: #0d1418;
  --surface: #111c22;
  --surface-2: #162028;
  --fg: #e8f0f2;
  --fg-muted: #6b8a96;
  --accent: #b4ff4b;
  --accent-dim: rgba(180, 255, 75, 0.12);
  --border: #1a2a32;
  --terminal-green: #4dff91;
  --terminal-amber: #ffcc4d;
  --terminal-blue: #4dc3ff;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; }
section { padding: 100px 0; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 13, 15, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(180, 255, 75, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero {
  padding-top: 164px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ===== TERMINAL ===== */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(180, 255, 75, 0.04);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }
.terminal-title {
  margin-left: 8px;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: 'DM Sans', monospace;
}
.terminal-body { padding: 20px 20px 24px; }
.t-line {
  font-family: 'DM Sans', monospace;
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.9;
}
.t-label { color: var(--terminal-blue); }
.t-line:nth-child(3) .t-label { color: var(--terminal-amber); }
.t-line:nth-child(4) .t-label { color: var(--fg-muted); }
.t-line:nth-child(5) .t-label { color: var(--terminal-green); }
.t-line:nth-child(6) .t-label { color: var(--terminal-green); }
.t-highlight .t-label { color: var(--accent); }
.t-highlight { color: var(--fg) !important; font-weight: 600; }
.terminal-body::after {
  content: '█';
  display: inline-block;
  color: var(--accent);
  animation: blink 1.2s step-end infinite;
  margin-left: 4px;
  font-size: 14px;
  vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== FEED SECTION ===== */
.feed-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feed-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.feed-header { margin-bottom: 56px; }
.feed-title { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.feed-sub { font-size: 16px; color: var(--fg-muted); max-width: 540px; }
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.feed-card {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid var(--border);
}
.feed-stat {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.feed-label { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 700px;
}

/* ===== FEATURES ===== */
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(180, 255, 75, 0.2); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(180, 255, 75, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ===== PROCESS ===== */
.process { background: var(--bg-alt); }
.process-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ===== RESULTS ===== */
.results { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.results-header { margin-bottom: 64px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.result {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
}
.result-big {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.result-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ===== MANIFESTO ===== */
.manifesto { background: var(--bg-alt); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
  font-style: normal;
}
.manifesto-body { font-size: 18px; color: var(--fg-muted); max-width: 700px; line-height: 1.7; }

/* ===== CLOSING ===== */
.closing { padding: 120px 0; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; text-align: center; }
.closing-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 8px; display: block; }
.footer-desc { font-size: 14px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .feed-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero-inner, .features-inner, .feed-inner, .process-inner, .results-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 0 24px; }
  .feed-grid, .results-grid, .feature-grid, .process-steps { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .hero { padding-top: 120px; }
  .feed-stat, .result-big { font-size: 40px; }
}