/* ═══════════════════════════════════════════════════════════
   HERO — Revelation
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 140px 0 var(--section-pad);
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--green);
  margin-bottom: 32px;
  animation: fadeDown 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800; line-height: 1.08; letter-spacing: -2.5px;
  max-width: 780px; margin: 0 auto 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px); color: var(--gray-warm);
  max-width: 600px; margin: 0 auto 20px; line-height: 1.6;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-insight {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500; font-style: italic;
  color: var(--ink-muted); max-width: 640px; margin: 0 auto;
  line-height: 1.5;
  animation: fadeUp 0.7s ease 0.3s both;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: TWO JOURNEYS — Side by Side
   ═══════════════════════════════════════════════════════════ */
.journeys-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.journeys-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(22,163,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.journeys-label { text-align: center; margin-bottom: 56px; }
.journeys-label .overline { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--dark-text-muted); margin-bottom: 12px; }
.journeys-label h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--dark-text); letter-spacing: -1.5px; line-height: 1.1; }

.journeys-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 960px; margin: 0 auto;
}

/* Journey column */
.journey-col { position: relative; }
.journey-header {
  text-align: center; padding: 16px; margin-bottom: 24px;
  border-radius: 12px;
  font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
}
.journey-header.old { background: var(--red-dim); color: var(--red); border: 1px solid rgba(239,68,68,0.15); }
.journey-header.new { background: var(--green-glow); color: var(--green-bright); border: 1px solid rgba(22,163,74,0.2); }

.journey-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  margin-bottom: 4px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
}
.journey-step:hover { transform: translateX(3px); }
.j-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 1px;
}
.journey-step .j-text { flex: 1; }
.journey-step .j-label { font-weight: 600; color: var(--dark-text); margin-bottom: 2px; }
.journey-step .j-desc { font-size: 12px; color: var(--dark-text-dim); line-height: 1.45; }

/* Old journey styling */
.journey-col.old .journey-step { background: rgba(239,68,68,0.03); }
.journey-col.old .j-icon { background: var(--red-dim); color: var(--red); }
.journey-col.old .journey-step.dead { background: rgba(239,68,68,0.08); }
.journey-col.old .journey-step.dead .j-label { color: var(--red); }

/* New journey styling */
.journey-col.new .journey-step { background: rgba(22,163,74,0.03); }
.journey-col.new .j-icon { background: var(--green-glow); color: var(--green-bright); }
.journey-col.new .journey-step.win { background: rgba(22,163,74,0.08); }
.journey-col.new .journey-step.win .j-label { color: var(--green-bright); }

.journey-connector {
  text-align: center; padding: 4px 0;
  font-size: 14px; color: var(--dark-text-muted);
}

/* Journey outcome */
.journey-outcome {
  margin-top: 16px; padding: 16px;
  border-radius: 12px; text-align: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
}
.journey-outcome.bad { background: rgba(239,68,68,0.08); color: var(--red); border: 1px solid rgba(239,68,68,0.12); }
.journey-outcome.good { background: rgba(22,163,74,0.1); color: var(--green-bright); border: 1px solid rgba(22,163,74,0.15); }

@media (max-width: 768px) { .journeys-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   SECTION 3: WHY IT WORKS — The Mechanism
   ═══════════════════════════════════════════════════════════ */
.mechanism-section { padding: var(--section-pad) 0; }
.mechanism-inner { max-width: 720px; margin: 0 auto; }
.mechanism-inner .overline { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.mechanism-inner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 28px; }

.mech-block {
  margin-bottom: 32px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: var(--radius);
}
.mech-block h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.mech-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--green-wash); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}
.mech-block p { font-size: 15px; color: var(--gray-warm); line-height: 1.65; }
.mech-block .mech-highlight {
  margin-top: 16px; padding: 14px 16px;
  background: var(--green-dim); border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: 14px; font-weight: 500; color: var(--green);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4: THE DATA WALL
   ═══════════════════════════════════════════════════════════ */
.data-section {
  background: var(--dark); padding: var(--section-pad) 0;
  position: relative;
}
.data-label { text-align: center; margin-bottom: 56px; }
.data-label .overline { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.data-label h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--dark-text); letter-spacing: -1.5px; line-height: 1.1; }

.data-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 800px; margin: 0 auto;
}
.data-card {
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s;
}
.data-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.1); }
.data-card .dc-stat {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
}
.data-card .dc-stat.good { color: var(--green-bright); }
.data-card .dc-stat.bad { color: var(--red); }
.data-card .dc-stat.neutral { color: var(--dark-text); }
.data-card h3 { font-size: 15px; font-weight: 700; color: var(--dark-text); margin-bottom: 6px; }
.data-card p { font-size: 13px; color: var(--dark-text-dim); line-height: 1.5; }
.data-card .dc-source { margin-top: 12px; font-size: 11px; color: var(--dark-text-muted); font-style: italic; }
@media (max-width: 640px) { .data-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   SECTION 5: THE MANDATES — Timeline
   ═══════════════════════════════════════════════════════════ */
.mandates-section { padding: var(--section-pad) 0; }
.mandates-inner { max-width: 720px; margin: 0 auto; }
.mandates-inner .overline { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.mandates-inner h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 38px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 12px; }
.mandates-inner > p { font-size: 16px; color: var(--gray-warm); line-height: 1.65; margin-bottom: 40px; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; background: var(--gray-whisper);
}
.tl-item { position: relative; margin-bottom: 28px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -32px; top: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
}
.tl-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.tl-date { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.tl-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 4px; }
.tl-desc { font-size: 14px; color: var(--gray-warm); line-height: 1.55; }

.mandates-takeaway {
  margin-top: 40px; padding: 24px 28px;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  border-radius: var(--radius);
}
.mandates-takeaway p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.mandates-takeaway strong { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   SECTION 6: THE EMOTIONAL CLOSE
   ═══════════════════════════════════════════════════════════ */
.close-section {
  background: var(--dark); padding: var(--section-pad) 0;
  text-align: center;
}
.close-inner { max-width: 700px; margin: 0 auto; }
.close-inner .big-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700; font-style: italic;
  color: var(--dark-text);
  letter-spacing: -1.5px; line-height: 1.2;
  margin-bottom: 24px;
}
.close-inner .big-quote em { font-style: normal; color: var(--green-bright); }
.close-inner p {
  font-size: 17px; color: var(--dark-text-dim);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.6;
}
.close-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.close-note { margin-top: 24px; font-size: 13px; color: var(--dark-text-muted); }
