/* Career Revolution — careerevolution.co.uk */

:root {
  --bg: #FAFAF7;
  --bg-recognition: #F2F0EA;
  --bg-dark: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #555555;
  --primary: #1F3864;
  --primary-hover: #16294A;
  --divider: #E5E2DC;
  --accent: #B5651D;
  --content-narrow: 720px;
  --content-wide: 1140px;
  --section-pad: 96px;
  --section-pad-mobile: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--text);
  text-wrap: balance;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-wide {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
  display: block;
}
.eyebrow-accent { color: var(--accent); }

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-hover); text-decoration: none; }

.link-secondary {
  display: inline-block;
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-muted);
}
.link-secondary:hover { color: var(--primary); text-decoration: underline; }

.divider { border: none; border-top: 1px solid var(--divider); margin: 0; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: #ffffff;
  border-bottom-color: var(--divider);
}
.nav-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  color: var(--text);
}
.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
}
.logo-slot {
  display: inline-flex;
  align-items: center; justify-content: center;
  height: 36px; min-width: 180px;
  padding: 0 14px;
  background: repeating-linear-gradient(45deg, #ECE9E1, #ECE9E1 8px, #E5E2DC 8px, #E5E2DC 16px);
  border: 1px dashed #C9C5BB;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.nav-links {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav-links a { color: var(--text); font-size: 15px; text-decoration: none; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
}

/* ===== HERO ===== */
.hero { padding-top: 40px; padding-bottom: 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 80px; align-items: center;
}
.hero h1 {
  font-size: 60px; font-weight: 500; line-height: 1.08;
  letter-spacing: -0.015em; margin: 12px 0 28px;
}
.hero-sub {
  font-size: 21px; line-height: 1.5;
  max-width: 640px; margin: 0 0 32px; color: var(--text);
}
.hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; }
.risk-reversal {
  margin-top: 16px;
  font-size: 14px; color: var(--text-muted);
  font-style: italic;
}
.hero-image {
  width: 100%; aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #ECE9E1, #ECE9E1 12px, #E5E2DC 12px, #E5E2DC 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PROOF STRIP (above fold) ===== */
.proof-bar {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
  background: var(--bg);
}
.proof-bar-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 40px;
  font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.proof-stats {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 18px;
  flex-shrink: 0;
}
.proof-stats strong { color: var(--text); font-weight: 600; }
.proof-bar-divider { color: var(--divider); }
.proof-logos {
  display: flex; align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}
.proof-logos-label {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 14px;
}
.client-logo {
  display: inline-block;
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.client-logo-wide { max-width: 150px; }
@media (max-width: 960px) {
  .proof-bar-inner { gap: 12px 24px; }
  .proof-logos { width: 100%; flex-wrap: wrap; }
}

/* ===== RECOGNITION ===== */
.recognition { background: var(--bg-recognition); }
.recognition h2 { font-size: 40px; margin-bottom: 32px; }
.recognition p { max-width: 680px; margin-bottom: 1.2em; }

/* ===== THE SHIFT (pain cards) ===== */
.shift h2 { font-size: 44px; margin-bottom: 18px; max-width: 820px; }
.shift-sub {
  font-size: 21px; color: var(--text-muted);
  max-width: 680px; margin: 0 0 56px;
}
.shift-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.shift-card {
  border-top: 2px solid var(--text);
  padding-top: 28px;
}
.shift-card .num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 18px; color: var(--accent);
  margin-bottom: 12px;
}
.shift-card h3 { font-size: 24px; margin: 0 0 14px; }
.shift-card p { font-size: 16px; line-height: 1.6; color: var(--text); margin: 0; }

/* ===== COMPARISON TABLE ===== */
.compare h2 { font-size: 44px; margin-bottom: 18px; max-width: 760px; }
.compare-sub {
  font-size: 21px; color: var(--text-muted);
  max-width: 680px; margin: 0 0 48px;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  border-top: 1px solid var(--divider);
  font-size: 17px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 22px 24px;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}
.compare-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 20px; padding-bottom: 20px;
}
.compare-table th:first-child { padding-left: 0; }
.compare-table th:last-child { color: var(--accent); }
.compare-table td:first-child {
  padding-left: 0;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(85,85,85,0.4);
  text-decoration-thickness: 1px;
}
.compare-table td:last-child { color: var(--text); font-weight: 500; }

/* ===== AUTHORITY ANCHOR (elevated, dark) ===== */
.authority {
  text-align: center;
  background: var(--bg-dark);
  color: #F0EFEA;
  padding: 120px 0;
}
.authority .eyebrow {
  margin-bottom: 36px;
  color: var(--accent);
}
.authority blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 54px; line-height: 1.22;
  letter-spacing: -0.015em;
  max-width: 1000px; margin: 0 auto 28px;
  color: #ffffff; text-wrap: balance;
}
.authority cite {
  display: block; font-style: normal;
  font-size: 16px; color: #B8B6AE;
  margin-bottom: 52px;
}
.authority-body {
  max-width: 680px; margin: 0 auto; text-align: left;
}
.authority-body p { color: #D8D6CF; }

/* ===== MIGRATION PATH ===== */
.migration h2 { font-size: 48px; margin-bottom: 18px; }
.migration-sub {
  font-size: 21px; color: var(--text-muted);
  max-width: 640px; margin: 0 0 48px;
}
.migration-graphic {
  width: 100%;
  margin: 4px 0 64px;
  padding: 4px 0;
}
.mig-ends {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.mig-ends span:last-child { color: var(--accent); }
.mig-ends span:last-child::after { content: " →"; }
.mig-stations {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.mig-stations::before {
  content: "";
  position: absolute;
  top: 6px;
  left: calc(100% / 6); right: calc(100% / 6);
  height: 1px; background: var(--divider);
}
.mig-station {
  position: relative;
  padding: 0 24px;
  text-align: center;
}
.mig-dot {
  position: relative; z-index: 1;
  display: block;
  width: 14px; height: 14px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.mig-station:nth-child(2) .mig-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(181, 101, 29, 0.12);
}
.mig-station:nth-child(3) .mig-dot {
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(181, 101, 29, 0.16);
}
.mig-meta {
  display: block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.mig-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 27px; font-weight: 500;
  margin: 0 0 10px; color: var(--text);
}
.mig-benefit {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 17px;
  color: var(--text-muted);
  margin: 0 auto; max-width: 230px; line-height: 1.4;
}
@media (max-width: 640px) {
  .mig-ends { display: none; }
  .mig-stations { grid-template-columns: 1fr; }
  .mig-stations::before {
    top: 6px; bottom: 6px; left: 6px; right: auto;
    width: 2px; height: auto;
  }
  .mig-station {
    text-align: left;
    padding: 0 0 36px 38px;
  }
  .mig-station:last-child { padding-bottom: 0; }
  .mig-dot { position: absolute; left: 0; top: 2px; margin: 0; }
  .mig-benefit { margin: 0; max-width: none; }
}
.migration-intro { max-width: 680px; margin: 0 auto 64px; }

.stage {
  max-width: 760px; margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--divider);
}
.stage:last-of-type { border-bottom: 1px solid var(--divider); }
.stage-meta {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  margin-bottom: 24px; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.stage-meta span strong { color: var(--text); font-weight: 600; }
.stage h3 { font-size: 30px; margin: 8px 0 6px; }
.stage-title { font-size: 36px !important; margin: 8px 0 4px !important; letter-spacing: -0.02em; }
.stage-program-label {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.stage-program-label strong {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.stage .promise {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 22px;
  color: var(--text-muted); margin: 0 0 28px;
}
.stage p { margin-bottom: 1em; }
.stage p strong { font-weight: 600; }

/* Feature→Benefit table inside stage 1 */
.fb-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 8px;
  font-size: 15px;
}
.fb-table td {
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}
.fb-table td:first-child {
  font-weight: 500; color: var(--text);
  width: 38%; padding-right: 24px;
}
.fb-table td:last-child { color: var(--text-muted); }
.stage .investment { margin-top: 24px; font-size: 16px; }
.stage .investment strong { font-weight: 600; color: var(--text); }
.stage-learn-more {
  margin: 26px 0 0;
  font-size: 16px; font-weight: 500;
}
.stage-learn-more a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.stage-learn-more a:hover {
  text-decoration: none;
  border-bottom-color: var(--accent);
}

.migration-cta {
  max-width: 760px; margin: 72px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--divider);
}
.migration-cta h3 { font-size: 32px; margin-bottom: 20px; }

/* ===== FRAMEWORK ===== */
.framework h2 { font-size: 44px; margin-bottom: 18px; max-width: 820px; }
.framework-sub {
  font-size: 21px; color: var(--text-muted);
  max-width: 700px; margin: 0 0 56px;
}
.pillars {
  max-width: 760px;
  display: flex; flex-direction: column;
}
.pillar {
  padding: 32px 0;
  border-top: 1px solid var(--divider);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px; align-items: baseline;
}
.pillar:last-of-type { border-bottom: 1px solid var(--divider); }
.pillar-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 24px;
  color: var(--accent); font-weight: 400;
}
.pillar h3 { font-size: 26px; margin: 0 0 10px; }
.pillar p { margin: 0; font-size: 17px; }
.framework-close {
  max-width: 680px; margin: 56px 0 0;
  font-style: italic; color: var(--text-muted);
}

/* ===== PROOF / TESTIMONIALS ===== */
.proof h2 { font-size: 40px; margin-bottom: 18px; }
.proof-intro {
  font-size: 19px; color: var(--text-muted);
  max-width: 680px; margin: 0 0 56px;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1040px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--divider);
  padding: 32px;
  display: flex; flex-direction: column;
}
.testimonial-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.bir-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px 16px;
  margin-bottom: 12px;
  font-size: 15px;
}
.bir-row dt {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}
.bir-row dd { margin: 0; color: var(--text); }
.testimonial-quote {
  font-size: 17px; line-height: 1.55;
  margin: 0 0 24px;
  color: var(--text);
  flex: 1;
}
.testimonial-name { font-weight: 600; font-size: 15px; margin: 0; }
.testimonial-context {
  font-style: italic; font-size: 14px;
  color: var(--text-muted); margin: 2px 0 0;
}
.testimonial-author {
  display: flex; align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-recognition);
  flex-shrink: 0;
}
.proof-strip {
  margin-top: 64px; padding-top: 36px;
  border-top: 1px solid var(--divider);
  text-align: center;
  font-size: 14px; color: var(--text-muted);
  letter-spacing: 0.02em; line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 80px; align-items: start;
}
.about h2 { font-size: 44px; margin-bottom: 32px; }
.about p { margin-bottom: 1.4em; }
.about p:last-child {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 22px;
  color: var(--text); margin-top: 2em;
}
.about-photo {
  width: 100%; aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(45deg, #ECE9E1, #ECE9E1 12px, #E5E2DC 12px, #E5E2DC 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  position: sticky; top: 100px;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CALL EXPLAINER BLOCK ===== */
.call-block {
  background: var(--bg-recognition);
}
.call-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px; align-items: start;
}
.call-grid h2 { font-size: 44px; margin-bottom: 20px; }
.call-grid > div:first-child > p {
  font-size: 19px; max-width: 480px;
}
.call-details {
  background: #fff;
  border: 1px solid var(--divider);
  padding: 36px;
}
.call-details .label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.call-details h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.call-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.call-list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px; line-height: 1.5;
}
.call-list li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}
.call-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.call-meta strong { color: var(--text); font-weight: 600; }

/* ===== FINAL CTA ===== */
.final-cta h2 { font-size: 48px; max-width: 820px; margin-bottom: 32px; }
.final-cta p { font-size: 19px; max-width: 680px; margin-bottom: 32px; }

/* ===== PODCAST (demoted) ===== */
.podcast {
  background: var(--bg-dark);
  color: #F0EFEA;
  padding: 88px 0;
}
.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px; align-items: center;
}
.podcast-poster-wrap {
  display: flex;
  justify-content: center;
}
.podcast-poster {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 12px 24px -10px rgba(0,0,0,0.4);
}
.podcast .eyebrow { color: #888; }
.podcast h2 { font-size: 40px; color: #ffffff; margin-bottom: 14px; }
.podcast-sub { font-size: 18px; color: #B8B6AE; margin: 0 0 22px; }
.podcast p { color: #D8D6CF; margin-bottom: 1.6em; font-size: 16px; max-width: 520px; }
.podcast-form {
  display: flex; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.podcast-form input {
  flex: 1 1 200px;
  background: #2A2A2A;
  border: 1px solid #3A3A3A;
  color: #fff;
  font-family: inherit; font-size: 15px;
  padding: 12px 16px; border-radius: 8px;
}
.podcast-form input::placeholder { color: #888; }
.podcast-form input:focus { outline: none; border-color: #888; }
.podcast-form .btn-primary {
  background: #fff; color: var(--bg-dark);
  padding: 12px 22px; font-size: 15px;
}
.podcast-form .btn-primary:hover { background: #E5E2DC; }
.podcast-note { font-size: 13px; color: #999791; margin: 0; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--divider);
  padding: 64px 0 32px;
  font-size: 14px; color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; color: var(--text);
  margin-bottom: 10px; display: block;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); margin: 0 0 16px;
}
.footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ===== WHO THIS IS FOR ===== */
.who-for { border-bottom: 1px solid var(--divider); }
.who-for h2 { font-size: 40px; margin-bottom: 36px; max-width: 620px; }
.who-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.who-list li {
  position: relative;
  padding: 19px 0 19px 40px;
  border-top: 1px solid var(--divider);
  font-size: 18px; line-height: 1.4;
}
.who-list li::before {
  content: "✓";
  position: absolute; left: 4px; top: 18px;
  color: var(--accent);
  font-size: 17px; font-weight: 600;
}
@media (max-width: 640px) {
  .who-list { grid-template-columns: 1fr; gap: 0; }
}

/* ===== ABOUT GARY (credentials snapshot) ===== */
.about-gary { border-bottom: 1px solid var(--divider); }
.about-gary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; align-items: center;
}
.about-gary-intro h2 { font-size: 40px; margin-bottom: 22px; }
.about-gary-intro p {
  font-size: 19px; color: var(--text-muted);
  max-width: 460px; margin: 0 0 32px;
}
.cred-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.cred-list li {
  position: relative;
  padding: 20px 0 20px 40px;
  border-top: 1px solid var(--divider);
  font-size: 18px; line-height: 1.4;
}
.cred-list li:last-child { border-bottom: 1px solid var(--divider); }
.cred-list li::before {
  content: "→";
  position: absolute; left: 0; top: 20px;
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}

/* ===== WHY MOST CAREER ADVICE FAILS ===== */
.why-fails { background: var(--bg-recognition); }
.why-fails h2 { font-size: 40px; margin-bottom: 24px; max-width: 640px; }
.why-fails-lead {
  font-size: 19px; color: var(--text-muted);
  max-width: 640px; margin: 0 0 48px;
}
.why-fails-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.why-fails-list li {
  padding: 28px 0;
  border-top: 1px solid var(--divider);
}
.why-fails-list li:last-child { border-bottom: 1px solid var(--divider); }
.why-fails-list h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 23px; margin: 0 0 10px;
}
.why-fails-list p { font-size: 17px; color: var(--text); margin: 0; }

/* ===== FAQ ===== */
.faq h2 { font-size: 40px; margin-bottom: 40px; }
.faq-list { border-top: 1px solid var(--divider); }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item summary {
  list-style: none; cursor: pointer;
  position: relative;
  padding: 26px 48px 26px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 500; line-height: 1.25;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 4px; top: 22px;
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 26px; line-height: 1; color: var(--accent);
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 48px 30px 0; max-width: 660px; }
.faq-answer p { font-size: 17px; color: var(--text-muted); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .call-grid, .podcast-grid, .about-gary-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .about-photo { position: static; max-width: 360px; }
  .shift-cards { grid-template-columns: 1fr; gap: 24px; }
  .testimonials { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav.mobile-open .nav-links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--divider);
  }
  .nav.mobile-open .nav-cta {
    display: inline-block;
    position: absolute;
    top: 100%; left: 24px; right: 24px;
    text-align: center; margin-top: 200px;
  }
  .hero { padding-top: 28px; padding-bottom: 56px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .proof-bar-inner { gap: 10px 20px; font-size: 11px; }
  .recognition h2, .proof h2 { font-size: 30px; }
  .shift h2, .compare h2, .framework h2, .call-grid h2, .about h2,
  .about-gary-intro h2, .why-fails h2, .faq h2, .who-for h2 { font-size: 30px; }
  .migration h2, .final-cta h2 { font-size: 32px; }
  .cred-list li { font-size: 16px; }
  .why-fails-list h3 { font-size: 20px; }
  .faq-item summary { font-size: 19px; }
  .authority blockquote { font-size: 30px; }
  .shift-sub, .compare-sub, .migration-sub, .framework-sub { font-size: 17px; }
  .stage h3 { font-size: 24px; }
  .stage .promise { font-size: 19px; }
  .pillar { grid-template-columns: 56px 1fr; gap: 16px; }
  .pillar h3 { font-size: 22px; }
  .compare-table th, .compare-table td { padding: 16px 12px; font-size: 15px; }
  .compare-table th:first-child, .compare-table td:first-child { padding-left: 0; }
  .call-details { padding: 28px; }
  .final-cta p { font-size: 17px; }
  .bir-row { grid-template-columns: 72px 1fr; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
}
