:root {
  --bg: #0f1117;
  --bg-elevated: #171a24;
  --bg-card: #1e2130;
  --fg: #f0ede8;
  --fg-muted: #8b8a87;
  --fg-subtle: #5a5958;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.25);
  --green: #4ade80;
  --amber: #f59e0b;
  --border: rgba(240, 237, 232, 0.08);
  --border-strong: rgba(240, 237, 232, 0.14);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* ===== PIPELINE CARD ===== */
.pipeline-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.08);
}
.pipeline-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.pipeline-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.pipeline-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 3px 8px;
  border-radius: 20px;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.pipeline-list { padding: 8px 0; }
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background 0.15s;
}
.pipeline-row:hover { background: var(--bg-card); }
.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pipeline-dot--amber { background: var(--accent); }
.pipeline-dot--green { background: var(--green); }
.pipeline-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pipeline-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.pipeline-role {
  font-size: 11px;
  color: var(--fg-muted);
}
.pipeline-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.pipeline-score-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.pipeline-score-label {
  font-size: 10px;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
  flex-shrink: 0;
}
.pipeline-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: rgba(245,166,35,0.04);
}
.pipeline-footer-text {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ===== PROOF ===== */
.proof { padding: 80px 0; border-top: 1px solid var(--border); }
.proof-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.proof-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
}
.proof-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.proof-col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.proof-col--old .proof-col-label { color: var(--fg-subtle); }
.proof-col--new .proof-col-label { color: var(--accent); }
.proof-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.proof-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.proof-list--bad li { color: var(--fg-muted); }
.proof-list--bad li::before { content: '—'; position: absolute; left: 0; color: var(--fg-subtle); }
.proof-list--good li { color: var(--fg); }
.proof-list--good li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
}

/* ===== FEATURES ===== */
.features { padding: 80px 0; border-top: 1px solid var(--border); }
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  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: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.2;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-elevated);
  padding: 36px 36px 40px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card); }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  margin-bottom: 20px;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== OBJECTION ===== */
.objection { padding: 80px 0; border-top: 1px solid var(--border); }
.objection-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.objection-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.objection-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.objection-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.objection-body em { font-style: italic; color: var(--fg); }
.objection-facts {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact-stat {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.fact-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing { padding: 96px 0 80px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-text {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-vision {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.closing-vision p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--fg-subtle);
}
.closing-vision p:last-child { color: var(--accent); }

/* ===== FOOTER ===== */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
}
.footer-tagline { font-size: 12px; color: var(--fg-subtle); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .proof-comparison { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .objection-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .closing-headline br { display: none; }
}