@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --bg-deep: #0B1426;
  --bg-mid: #0F1B33;
  --bg-warm: #F7F5F2;
  --bg-warm-alt: #EDE9E3;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --accent-glow: rgba(0, 212, 170, 0.4);
  --text-light: #E8E6E1;
  --text-muted: #8A9BB5;
  --text-dark: #1A1A1A;
  --text-dark-muted: #5A5A5A;
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--text-light);
  background: var(--bg-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-text h1 .accent { color: var(--accent); }

.hero-text .lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pipeline visualization */
.pipeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 380px;
}

.pipeline-node {
  background: var(--bg-mid);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s;
}

.pipeline-node:hover { border-color: var(--accent); }

.pipeline-node::after {
  content: '';
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  width: 2px;
  height: 1.2rem;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
}

.pipeline-node:last-child::after { display: none; }

.node-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.node-icon.brief { background: rgba(99, 102, 241, 0.2); }
.node-icon.screen { background: rgba(0, 212, 170, 0.2); }
.node-icon.rank { background: rgba(251, 191, 36, 0.2); }
.node-icon.schedule { background: rgba(244, 114, 182, 0.2); }

.node-label {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 500;
}

.node-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--bg-warm);
  color: var(--text-dark);
  padding: 6rem 2rem;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem .section-label {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.problem h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0B1426;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ===== HOW IT WORKS (PLAYBOOK) ===== */
.playbook {
  background: var(--bg-deep);
  padding: 6rem 2rem;
}

.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.playbook .section-label {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.playbook h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.playbook-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.step {
  background: var(--bg-mid);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-step);
  font-family: var(--heading-font);
  font-size: 5rem;
  font-weight: 700;
  position: absolute;
  top: -0.5rem;
  right: 0.8rem;
  color: rgba(0, 212, 170, 0.06);
  line-height: 1;
}

.step h3 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--bg-warm-alt);
  color: var(--text-dark);
  padding: 6rem 2rem;
}

.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.outcomes .section-label {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.outcomes h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.outcome-card {
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 1.8rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.outcome-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.outcome-card h3 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.outcome-card p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* ===== OBJECTIONS ===== */
.objections {
  background: var(--bg-mid);
  padding: 6rem 2rem;
}

.objections-inner {
  max-width: 800px;
  margin: 0 auto;
}

.objections .section-label {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.objections h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.objection {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.objection:last-child { border-bottom: none; }

.objection-q {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.objection-a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-deep);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 40vw;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing h2 .accent { color: var(--accent); }

.closing p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .pipeline { max-width: 100%; }
  .problem-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .playbook-steps { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.75rem; }
  .hero { min-height: auto; padding: 4rem 1.5rem 3rem; }
  .problem, .playbook, .outcomes, .objections { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .pipeline-node { padding: 1rem 1.2rem; }
}