/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — Page-specific styles
   ═══════════════════════════════════════════════════════════ */

/* ── HERO (about variant) ──────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  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 h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1.1; letter-spacing: -2.5px;
  max-width: 740px; 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: 540px; margin: 0 auto; line-height: 1.65;
  animation: fadeUp 0.7s ease 0.2s both;
}

/* ── THE JOURNEY — Three acts in editorial prose ───────── */
.journey-section {
  padding: 0 0 var(--section-pad);
}
.journey-prose {
  max-width: 680px; margin: 0 auto;
}
.journey-prose p {
  font-size: 18px; line-height: 1.8; color: var(--ink-muted);
  margin-bottom: 28px;
}
.journey-prose p:last-child { margin-bottom: 0; }
.journey-prose strong { color: var(--ink); font-weight: 600; }

/* Act markers */
.act-marker {
  max-width: 680px; margin: 0 auto 40px;
  padding: 48px 0 0;
}
.act-marker:first-of-type { padding-top: 0; }
.act-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-mid); margin-bottom: 8px;
}
.act-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.15;
}
.act-title em { font-style: italic; color: var(--green); }

/* Inline callout */
.journey-callout {
  max-width: 680px; margin: 40px auto;
  background: var(--cream-deep);
  border-left: 3px solid var(--gray-whisper);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.journey-callout p {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; font-style: italic;
  color: var(--ink-muted); line-height: 1.5;
  margin: 0;
}

/* ── Symptom cards — the three systems built ───────────── */
.symptom-strip {
  max-width: 680px; margin: 40px auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.symptom-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}
.symptom-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.symptom-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin: 0 auto 12px;
  background: var(--red-dim);
}
.symptom-card h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.symptom-card p {
  font-size: 13px; color: var(--gray-warm); line-height: 1.5;
}
.symptom-card .s-verdict {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--red); margin-top: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .symptom-strip { grid-template-columns: 1fr; max-width: 320px; }
}

/* ── The breakthrough callout — green ──────────────────── */
.breakthrough-callout {
  max-width: 680px; margin: 48px auto;
  background: var(--green-wash);
  border-left: 3px solid var(--green);
  padding: 28px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.breakthrough-callout p {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1.4;
  margin: 0; letter-spacing: -0.5px;
}
.breakthrough-callout p em { font-style: italic; color: var(--green); }

/* ── AUTHORITY SIGNALS ─────────────────────────────────── */
.authority-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.authority-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 400px;
  background: radial-gradient(ellipse at center top, rgba(22,163,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.auth-label { text-align: center; margin-bottom: 56px; }
.auth-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;
}
.auth-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;
}

.auth-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.auth-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.auth-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.auth-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 20px;
  background: var(--dark-surface-3); border: 1px solid var(--dark-border);
}
.auth-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--dark-text); letter-spacing: -0.5px; margin-bottom: 10px;
}
.auth-card p {
  font-size: 15px; color: var(--dark-text-dim); line-height: 1.6;
}
@media (max-width: 768px) {
  .auth-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── BELIEFS — What we stand for ───────────────────────── */
.beliefs-section {
  padding: var(--section-pad) 0;
}
.beliefs-label { text-align: center; margin-bottom: 56px; }
.beliefs-label h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--ink); letter-spacing: -1.5px; line-height: 1.1;
}

.beliefs-grid {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.belief-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.belief-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}
.belief-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--green); margin-bottom: 12px;
}
.belief-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px; line-height: 1.25; margin-bottom: 10px;
}
.belief-card p {
  font-size: 14px; color: var(--gray-warm); line-height: 1.65;
}
@media (max-width: 768px) {
  .beliefs-grid { grid-template-columns: 1fr; }
}

/* ── FINAL CTA override ───────────────────────────────── */
.final-cta {
  background: var(--cream-deep);
}
