/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07070F;
  --bg-raised: #0D0D1A;
  --bg-card: #111122;
  --fg: #F0EFF9;
  --fg-muted: #7A7899;
  --fg-dim: #3D3C58;
  --accent: #FBB03B;
  --accent-dim: rgba(251, 176, 59, 0.12);
  --border: rgba(240, 239, 249, 0.08);
  --signal-hot: #FBB03B;
  --signal-warm: #8B5CF6;
  --signal-neutral: #5A8FBA;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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;
}

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 520px; }

.hero-eyebrow {
  margin-bottom: 20px;
}
.eyebrow-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(251, 176, 59, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Pipeline Visual */
.hero-visual { justify-self: end; }
.pipeline-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  width: 380px;
  box-shadow: 0 0 0 1px rgba(251,176,59,0.04), 0 24px 48px rgba(0,0,0,0.5);
}
.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.pipeline-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.pipeline-count {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.pipeline-list { display: flex; flex-direction: column; gap: 2px; }
.pipeline-item {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg-card);
  transition: background 0.2s;
}
.pipeline-item:hover { background: rgba(255,255,255,0.04); }
.pipeline-item-dim { opacity: 0.5; }
.pipeline-signal { display: flex; align-items: center; gap: 6px; }
.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-hot .signal-dot { background: var(--signal-hot); box-shadow: 0 0 6px var(--signal-hot); }
.signal-warm .signal-dot { background: var(--signal-warm); }
.signal-neutral .signal-dot { background: var(--signal-neutral); }
.signal-label { font-size: 11px; color: var(--fg-muted); font-weight: 500; white-space: nowrap; }
.company-name { font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.company-role { font-size: 11px; color: var(--fg-muted); display: block; }
.pipeline-score {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}
.score-high { color: #22C55E; }
.score-mid { color: var(--accent); }
.score-low { color: var(--fg-muted); }
.pipeline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-dim);
}
.pipeline-ai-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Background Orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251,176,59,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  bottom: -100px;
  left: 200px;
}

/* ─── Proof Strip ─── */
.proof-section {
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 500;
  white-space: nowrap;
}
.proof-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.proof-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
}

/* ─── Features Section ─── */
.features-section {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card-main { grid-column: span 1; }
.feature-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.25s, background 0.25s;
}
.feature-card:hover { border-color: rgba(251,176,59,0.25); background: var(--bg-card); }
.feature-card-main { border-color: rgba(251,176,59,0.2); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(251,176,59,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.feature-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.f-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Process Section ─── */
.process-section {
  padding: 96px 32px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.process-item { padding: 0; }
.process-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.process-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}
.process-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-block { display: flex; flex-direction: column; gap: 10px; }
.stat-bar {
  height: 3px;
  background: var(--bg-card);
  border-radius: 100px;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #8B5CF6 100%);
  border-radius: 100px;
}
.stat-body { display: flex; align-items: baseline; gap: 12px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-desc { font-size: 13px; color: var(--fg-muted); font-weight: 400; }

/* ─── Manifesto Section ─── */
.manifesto-section {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-quote {
  border-left: 3px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 48px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.manifesto-body { padding-left: 32px; }
.manifesto-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── Closing Section ─── */
.closing-section {
  padding: 96px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-raised) 100%);
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 680px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.closing-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.pricing-card-emph {
  border-color: rgba(251,176,59,0.25);
  background: rgba(251,176,59,0.04);
}
.pricing-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── Footer ─── */
.site-footer {
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--fg-dim); font-weight: 400; }
.footer-copy { font-size: 12px; color: var(--fg-dim); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-self: start; }
  .pipeline-card { width: 100%; max-width: 460px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing-pricing { grid-template-columns: 1fr; max-width: 360px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 20px 72px; }
  .features-section, .process-section, .manifesto-section, .closing-section { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-divider { display: none; }
}