:root {
  --bg: #080C14;
  --bg-2: #0C1220;
  --bg-3: #111827;
  --fg: #F8F4EE;
  --fg-muted: #8B8FA3;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --success: #10B981;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.02em; }

/* ─── Section shared ─── */
.section-eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-size: clamp(28px, 4vw, 44px); color: var(--fg); margin-bottom: 0; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1;
}
.hero-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 24px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 28px; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; max-width: 480px; }

/* Signal card */
.signal-card {
  background: var(--bg-2);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 0 60px rgba(245,158,11,0.08), 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.signal-card:hover { transform: translateY(-2px); }
.signal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.signal-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); background: var(--accent-dim); padding: 4px 10px; border-radius: 20px; animation: blink 3s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.signal-time { font-size: 11px; color: var(--fg-muted); }
.signal-company { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; color: var(--fg); margin-bottom: 14px; }
.signal-triggers { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.trigger-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 6px 12px; border-radius: 20px; font-weight: 500; }
.trigger-funding { background: rgba(245,158,11,0.15); color: #F59E0B; border: 1px solid rgba(245,158,11,0.3); }
.trigger-hiring { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.trigger-tech { background: rgba(139,143,163,0.15); color: #8B8FA3; border: 1px solid rgba(139,143,163,0.3); }
.trigger-icon { font-weight: 700; font-size: 11px; }
.signal-msg { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.5; }
.signal-cta { display: inline-block; font-size: 12px; font-weight: 600; color: var(--bg); background: var(--accent); padding: 8px 18px; border-radius: 8px; cursor: pointer; letter-spacing: 0.02em; }
.signal-card-dim { margin-top: 16px; opacity: 0.6; }
.dim-label { color: var(--fg-muted); background: rgba(139,143,163,0.15); }

/* ─── Proof ─── */
.proof { padding: 56px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { display: flex; align-items: center; justify-content: center; gap: 64px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--accent); letter-spacing: -0.04em; }
.stat-label { display: block; font-size: 13px; color: var(--fg-muted); max-width: 180px; margin-top: 8px; line-height: 1.5; }
.proof-divider { width: 1px; height: 64px; background: var(--border); }

/* ─── How it works ─── */
.how { padding: 100px 48px; }
.how-header { max-width: 1200px; margin: 0 auto 64px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1200px; margin: 0 auto; }
.step-num { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; color: var(--accent); opacity: 0.25; display: block; margin-bottom: 20px; letter-spacing: -0.05em; }
.step-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ─── Signals ─── */
.signals { padding: 100px 48px; background: var(--bg-2); }
.signals-inner { max-width: 1200px; margin: 0 auto; }
.signals-header { margin-bottom: 64px; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.signal-type { }
.signal-type-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.signal-type-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.signal-type-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ─── Feed ─── */
.feed { padding: 100px 48px; }
.feed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.feed-left .section-headline { margin-bottom: 24px; }
.feed-desc { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 400px; }
.feed-visual { background: var(--bg-2); border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.feed-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.feed-items { display: flex; flex-direction: column; gap: 4px; }
.feed-item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 10px; transition: background 0.2s; }
.feed-item:hover { background: rgba(255,255,255,0.04); }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-muted); flex-shrink: 0; }
.feed-item-hot .feed-dot { background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.6); }
.feed-item-warm .feed-dot { background: #10B981; }
.feed-content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.feed-co { font-size: 14px; font-weight: 600; color: var(--fg); }
.feed-signal { font-size: 12px; color: var(--fg-muted); }
.feed-t { font-size: 11px; color: var(--fg-muted); flex-shrink: 0; }

/* ─── Pricing ─── */
.pricing { padding: 100px 48px; background: var(--bg-2); }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-inner .section-eyebrow { display: block; }
.pricing-inner .section-headline { margin-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.pricing-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; }
.pricing-card-featured { border-color: rgba(245,158,11,0.3); background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--bg-3) 100%); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bg); background: var(--accent); padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--fg); letter-spacing: -0.04em; margin-bottom: 8px; }
.per-mo { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.pricing-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ─── Closing ─── */
.closing { padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; }
.closing-headline { font-size: clamp(32px, 5vw, 60px); font-weight: 800; color: var(--fg); margin-bottom: 20px; letter-spacing: -0.03em; line-height: 1.1; }
.closing-sub { font-size: 20px; color: var(--accent); font-weight: 600; margin-bottom: 48px; }
.closing-cta-text { font-size: 16px; color: var(--fg-muted); }

/* ─── Footer ─── */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--fg); display: block; margin-bottom: 4px; }
.footer-tagline { font-size: 12px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner, .feed-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 40px; }
  .proof-divider { display: none; }
  .navbar { padding: 16px 24px; }
  .hero, .how, .signals, .feed, .pricing, .closing { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .signal-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 36px; }
  .hero-headline { font-size: 36px; }
}