/* === TOKENS === */
:root {
  --bg: #050D1A;
  --surface: #0B1F3A;
  --surface-alt: #0F2847;
  --fg: #E8F0FB;
  --fg-muted: #7A92B4;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --danger: #FF4D6D;
  --tag-funding-bg: rgba(139, 92, 246, 0.15);
  --tag-funding-text: #A78BFA;
  --tag-hire-bg: rgba(245, 158, 11, 0.12);
  --tag-hire-text: #FCD34D;
  --tag-tech-bg: rgba(0, 229, 160, 0.1);
  --tag-tech-text: #00E5A0;
  --tag-hiring-bg: rgba(59, 130, 246, 0.12);
  --tag-hiring-text: #60A5FA;
  --border: rgba(255, 255, 255, 0.07);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.1; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-badge {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* === HERO === */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0, 229, 160, 0); }
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-visual {
  max-width: 760px;
}
.signal-stream {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stream-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}
.stream-row {
  display: grid;
  grid-template-columns: 120px 160px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.stream-row:last-child { border-bottom: none; }
.stream-row:hover { background: var(--surface-alt); }
.stream-row.row-dim { opacity: 0.6; }
.signal-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.tag-funding { background: var(--tag-funding-bg); color: var(--tag-funding-text); }
.tag-hire { background: var(--tag-hire-bg); color: var(--tag-hire-text); }
.tag-tech { background: var(--tag-tech-bg); color: var(--tag-tech-text); }
.tag-hiring { background: var(--tag-hiring-bg); color: var(--tag-hiring-text); }
.signal-company {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.signal-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.signal-status {
  font-size: 0.75rem;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

/* === SIGNALS SECTION === */
.signals-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.signals-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.signals-header { margin-bottom: 3rem; }
.signals-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.signal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.signal-card:hover { border-color: rgba(0, 229, 160, 0.25); }
.signal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.ic-funding { background: var(--tag-funding-bg); border: 1px solid rgba(139,92,246,0.3); }
.ic-hire { background: var(--tag-hire-bg); border: 1px solid rgba(245,158,11,0.2); }
.ic-tech { background: var(--accent-dim); border: 1px solid rgba(0,229,160,0.2); }
.ic-hiring { background: var(--tag-hiring-bg); border: 1px solid rgba(59,130,246,0.2); }
.signal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.signal-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === HOW SECTION === */
.how-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.how-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 1rem; }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 0.25rem;
}

/* === WHY SECTION === */
.why-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.why-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.compare-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.compare-side { padding: 1.5rem; }
.compare-old { background: rgba(122, 146, 180, 0.05); }
.compare-new { background: rgba(0, 229, 160, 0.05); }
.compare-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.compare-stat {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}
.compare-old .compare-stat { color: var(--fg-muted); }
.compare-new .compare-stat { color: var(--accent); }
.compare-note { font-size: 0.8rem; color: var(--fg-muted); }
.compare-divider {
  width: 1px;
  background: var(--border);
}
.why-footnote {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* === MANIFESTO === */
.manifesto-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  margin-bottom: 2.5rem;
}
.manifesto-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--fg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.manifesto-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === CLOSING === */
.closing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.closing-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.closing-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step-divider { display: none; }
  .stream-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .signal-status { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: 2rem; }
  .signals-section, .how-section, .why-section, .manifesto-section, .closing-section { padding: 3rem 1.5rem; }
  .steps-row { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0.875rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .compare-block { grid-template-columns: 1fr; }
  .compare-divider { display: none; }
}