/* ═══════════════════════════════════════════════════════════════
   What Patients Actually Say — 2026 Sentiment Report
   Interactive single-page landing · PatientPartner
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --navy:        #0E2A44;
  --navy-deep:   #0B1F33;
  --navy-2:      #183857;
  --ink:         #1A2F48;
  --teal:        #419DA5;
  --teal-dark:   #2F7B84;
  --mint:        #72CBCF;
  --mint-light:  #9BE0E3;
  --cream:       #F3F8F8;
  --cream-2:     #EAF3F3;
  --paper:       #FBFFFF;
  --line:        #DCEBEA;
  --line-soft:   #E8F1F1;
  --rule:        rgba(14,42,68,0.10);
  --rule-strong: rgba(14,42,68,0.18);
  --body:        #1A2F48;
  --muted:       #526D87;
  --muted-2:     #7A8FA6;
  --warm:        #D94A4A;
  --warm-soft:   #F3DADA;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.55, 0.06, 0.68, 0.19);

  --wrap:        1200px;
  --wrap-narrow: 960px;
  --nav-h:       72px;

  --shadow-sm: 0 2px 8px rgba(14,42,68,0.06);
  --shadow-md: 0 10px 30px rgba(14,42,68,0.10);
  --shadow-lg: 0 24px 60px rgba(14,42,68,0.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* ── Sticky side section navigator (desktop) ── */
.sidenav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 14px;
  background: rgba(251,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.sidenav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.sidenav__item {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.sidenav__item:hover { background: var(--teal); transform: scale(1.3); }
.sidenav__item.is-active { background: var(--navy); transform: scale(1.35); }
.sidenav__label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 6px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.sidenav__label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.sidenav__item:hover .sidenav__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 1100px) {
  .sidenav { display: none; }
}
.section--navy .sidenav,
.section--cta .sidenav {
  /* Keep sidenav light regardless of section bg */
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(114,203,207,0.5);
}

/* ── Sticky nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 90;
  background: rgba(251,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251,255,255,0.92);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand img { height: 22px; width: auto; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--navy); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta {
  padding: 9px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav__cta:hover { background: var(--teal); transform: translateY(-1px); }

.nav__menu { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.nav__menu span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); margin: 0 auto; }
.nav.is-menu-open .nav__menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-menu-open .nav__menu span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Typography ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--mint { color: var(--mint); }

.section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.h-display {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 28px;
  max-width: 18ch;
}
.h-display em { font-style: normal; color: var(--teal); }

.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  max-width: 20ch;
}
.h1 em { font-style: normal; color: var(--teal); }

.h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.kicker {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 60ch;
}

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
.p--lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--navy-2); font-weight: 400; }
.p--small { font-size: 14px; line-height: 1.6; margin: 0 0 10px; color: var(--body); }
strong { font-weight: 700; color: var(--navy); }

.source {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.divider-strong {
  border: 0;
  height: 2px;
  background: var(--navy);
  margin: 8px 0 36px;
  width: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 12px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--mint {
  background: var(--mint);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(114,203,207,0.35);
}
.btn--mint:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(114,203,207,0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.section--navy .btn--ghost,
.section--cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.section--navy .btn--ghost:hover,
.section--cta .btn--ghost:hover { background: #fff; color: var(--navy); }
.btn__arrow { font-size: 18px; transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── Reveal animation (JS adds .is-visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: #fff;
  padding: calc(var(--nav-h) + 80px) 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 110%, rgba(114,203,207,0.22), transparent 60%),
    radial-gradient(700px 400px at 0% -10%, rgba(65,157,165,0.18), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 120% 80% at 50% 40%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 40%, #000 40%, transparent 90%);
  pointer-events: none;
  animation: heroGridDrift 40s linear infinite;
}
@keyframes heroGridDrift {
  to { background-position: 56px 56px; }
}
.hero__mark {
  position: absolute;
  right: -120px;
  bottom: -260px;
  font-size: 780px;
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(155,224,227,0.055);
  pointer-events: none;
  user-select: none;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
/* Split hero layout */
.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero__left { min-width: 0; }
.hero__convo { min-width: 0; }
@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr; gap: 48px; }
  .hero__convo { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* Conversation card */
.convo {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(114,203,207,0.08);
  display: flex;
  flex-direction: column;
  height: 540px;
  position: relative;
}
.convo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(114,203,207,0.10), transparent 60%);
  pointer-events: none;
}
.convo__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.convo__head-dots { display: flex; gap: 6px; }
.convo__head-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.convo__head-dots span:first-child { background: rgba(217, 74, 74, 0.55); }
.convo__head-dots span:nth-child(2) { background: rgba(244, 199, 84, 0.55); }
.convo__head-dots span:nth-child(3) { background: rgba(114, 203, 207, 0.55); }
.convo__head-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-right: auto;
}
.convo__head-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.04em;
}
.convo__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  position: relative;
}
.convo__pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  opacity: 0;
  animation: convoPulse 2s ease-out infinite;
}
@keyframes convoPulse {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.convo__body {
  flex: 1;
  padding: 24px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.convo__msg {
  max-width: 86%;
  padding: 12px 16px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(8px);
  animation: convoMsgIn 0.4s var(--ease-out) forwards;
  word-wrap: break-word;
}
@keyframes convoMsgIn {
  to { opacity: 1; transform: translateY(0); }
}
.convo__msg--patient {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.convo__msg--mentor {
  align-self: flex-end;
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(65,157,165,0.3);
}
.convo__msg-meta {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.55;
}
.convo__msg--patient .convo__msg-meta { color: var(--mint); opacity: 0.9; }
.convo__msg--mentor .convo__msg-meta { color: rgba(255,255,255,0.85); }
.convo__foot {
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.convo__typing {
  display: inline-flex;
  gap: 5px;
  height: 14px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.convo__typing.is-on { opacity: 1; }
.convo__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: convoType 1.4s ease-in-out infinite;
}
.convo__typing span:nth-child(2) { animation-delay: 0.2s; }
.convo__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes convoType {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}
.convo__caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-align: right;
  flex: 1;
}

@media (max-width: 600px) {
  .convo { height: 480px; }
  .convo__msg { font-size: 13px; }
}

.hero__kicker {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.hero__meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-block;
}

.hero__title {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 36px;
}
.hero__title .reveal-line {
  display: block;
  overflow: hidden;
}
.hero__title .reveal-line > * { display: inline-block; }
.hero__title-em em {
  font-style: normal;
  color: var(--mint);
}
.hero__title .reveal-line {
  transform: translateY(100%);
  opacity: 0;
  animation: heroLineIn 1s var(--ease-out) forwards;
}
.hero__title .reveal-line:nth-child(2) { animation-delay: 0.15s; }
@keyframes heroLineIn {
  to { transform: translateY(0); opacity: 1; }
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero__sub strong { color: var(--mint); font-weight: 600; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.55s forwards;
}
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.hero__actions .btn--ghost:hover { background: #fff; color: var(--navy); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}
.hero__stat-num { font-size: clamp(32px, 2.6vw, 44px) !important; }
.hero__stat-num {
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.hero__stat-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--mint));
  animation: scrollHint 2.4s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { top: -44px; }
  100% { top: 100%; }
}

/* ── Section base ── */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.section--light { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--navy {
  background: var(--navy);
  color: #fff;
}

/* New section variants for visual rhythm */
.section--teal-wash {
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(216, 237, 238, 0.55) 50%, var(--paper) 100%);
  position: relative;
}
.section--mint-tint {
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(155, 224, 227, 0.18) 100%);
  position: relative;
}
.section--navy-soft {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  position: relative;
}
.section--navy-soft h2, .section--navy-soft .h1, .section--navy-soft .h3,
.section--navy-soft strong, .section--navy-soft .section-num { color: #fff; }
.section--navy-soft .section-num,
.section--navy-soft .eyebrow { color: var(--mint); }
.section--navy-soft .kicker { color: rgba(255,255,255,0.7); }
.section--navy-soft .h1 em { color: var(--mint); }
.section--navy-soft p { color: rgba(255,255,255,0.84); }
.section--navy-soft .divider-strong { background: var(--mint); }

/* ── Section background patterns ── */
.section--topo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(65,157,165,0.04) 0, rgba(65,157,165,0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 70%, rgba(65,157,165,0.04) 0, rgba(65,157,165,0.04) 1px, transparent 1.5px);
  background-size: 56px 56px;
  pointer-events: none;
}
.section--dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,42,68,0.06) 1px, transparent 1.2px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.section--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,42,68,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,42,68,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, #000 40%, transparent 100%);
}
.section--lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -8deg,
    transparent 0,
    transparent 14px,
    rgba(65,157,165,0.035) 14px,
    rgba(65,157,165,0.035) 15px
  );
  pointer-events: none;
}
.section--accent-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--teal) 30%, var(--mint) 70%, transparent);
}
/* Make sure section content sits above patterns */
.section .wrap { position: relative; z-index: 1; }

/* ── Chapter watermark (giant number behind findings) ── */
.section[data-finding]::after {
  content: attr(data-finding);
  position: absolute;
  right: -40px;
  top: 80px;
  font-size: clamp(220px, 22vw, 360px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(65,157,165,0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-feature-settings: "tnum" 1;
}
.section--navy[data-finding]::after,
.section--navy-soft[data-finding]::after {
  color: rgba(155,224,227,0.04);
}
@media (max-width: 720px) {
  .section[data-finding]::after { right: -20px; top: 40px; font-size: 180px; }
}
.section--navy h2, .section--navy .h1, .section--navy .h3,
.section--navy strong, .section--navy .section-num { color: #fff; }
.section--navy .section-num, .section--navy .eyebrow { color: var(--mint); }
.section--navy .kicker { color: rgba(255,255,255,0.7); }
.section--navy .divider-strong { background: var(--mint); }
.section--navy .h1 em { color: var(--mint); }
.section--navy p { color: rgba(255,255,255,0.84); }

.section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 90% 100%, rgba(114,203,207,0.18), transparent 60%),
    radial-gradient(500px 350px at 10% 0%, rgba(65,157,165,0.14), transparent 60%);
  pointer-events: none;
}

/* ── TL;DR block ── */
.tldr {
  margin: 28px 0 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(65,157,165,0.06) 0%, rgba(114,203,207,0.08) 100%);
  border-radius: 18px;
  border-left: 4px solid var(--teal);
  position: relative;
}
.tldr__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.tldr__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.tldr__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
}
.tldr__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .tldr { padding: 24px; }
  .tldr__list li { grid-template-columns: 80px 1fr; gap: 14px; font-size: 14px; }
  .tldr__num { font-size: 22px; }
}

/* ── Executive summary ── */
.summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-top: 16px;
  margin-bottom: 48px;
}
.summary__body p { font-size: 17px; }
.summary__aside {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.stat-row {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.stat-row__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.stat-row__item:last-child { border-bottom: 0; }
.stat-row__num {
  display: flex;
  align-items: baseline;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.stat-row__num .unit {
  font-size: 0.44em;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.stat-row__label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  max-width: 30ch;
}

/* ── Callout ── */
.callout {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.callout::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--mint);
}
.callout__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.callout__body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.callout__body strong { color: #fff; }
.callout__body em { font-style: italic; color: var(--mint-light); }

/* ── TOC ── */
.toc { margin-top: 48px; }
.toc__item {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--rule-strong);
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
  cursor: pointer;
}
.toc__item:last-child { border-bottom: 1px solid var(--rule-strong); }
.toc__item:hover {
  background: linear-gradient(90deg, transparent, rgba(65,157,165,0.04) 30%, rgba(65,157,165,0.04) 70%, transparent);
  padding-left: 12px;
}
.toc__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.toc__title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.toc__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.toc__arrow {
  font-size: 22px;
  color: var(--teal);
  transition: transform 0.25s var(--ease);
  text-align: right;
}
.toc__item:hover .toc__arrow { transform: translateX(6px); }

/* ── Finding 1: The Gap — interactive toggle ── */
.gap-toggle {
  display: inline-flex;
  gap: 6px;
  background: var(--cream);
  padding: 6px;
  border-radius: 12px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}
.gap-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-radius: 8px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: -0.005em;
}
.gap-toggle__btn:hover { color: var(--navy); }
.gap-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted-2);
}
.gap-toggle__btn--doctor .gap-toggle__dot { background: var(--muted); }
.gap-toggle__btn--mentor .gap-toggle__dot { background: var(--teal); }
.gap-toggle__btn--both .gap-toggle__dot {
  background: linear-gradient(90deg, var(--muted) 50%, var(--teal) 50%);
}
.gap-toggle__btn.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.gap-table {
  margin-top: 8px;
  border-top: 1px solid var(--rule);
}
.gap-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.3s var(--ease);
}
.gap-col {
  padding: 0 24px;
  border-left: 3px solid transparent;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.gap-col:first-child { padding-left: 0; }
.gap-col--doctor { border-left-color: var(--muted-2); padding-left: 20px; }
.gap-col--doctor:first-child { padding-left: 20px; }
.gap-col--mentor { border-left-color: var(--teal); padding-left: 20px; }
.gap-col--why { color: var(--muted); padding-left: 24px; border-left: 1px solid var(--rule); }

.gap-col__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.gap-col--mentor .gap-col__label { color: var(--teal); }
.gap-col__quote {
  font-size: 17px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}
.gap-col--mentor .gap-col__quote { color: var(--navy); font-weight: 600; }
.gap-col__body { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }
.gap-col__body strong { color: var(--navy); font-weight: 700; }
.gap-col__body em { color: var(--teal); font-style: italic; font-weight: 600; }

/* toggle modes — hide/dim the non-selected columns */
.gap-table[data-mode="doctor"] .gap-col--mentor { opacity: 0.2; }
.gap-table[data-mode="doctor"] .gap-col--doctor { transform: scale(1.01); }
.gap-table[data-mode="mentor"] .gap-col--doctor { opacity: 0.2; }
.gap-table[data-mode="mentor"] .gap-col--mentor { transform: scale(1.01); }

/* ── Fear hierarchy (Finding 2) ── */
.fears-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin: 24px 0 40px;
}
.fears {
  display: flex;
  flex-direction: column;
}
.fear {
  display: grid;
  grid-template-columns: 40px 1fr 76px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  cursor: default;
}
.fear:hover {
  background: linear-gradient(90deg, transparent, rgba(65,157,165,0.04) 50%, transparent);
}
.fear__rank {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.fear__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fear__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.fear__bar {
  position: relative;
  height: 10px;
  background: var(--cream);
  border-radius: 5px;
  overflow: hidden;
}
.fear__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%);
  border-radius: 5px;
  transition: width 1.2s var(--ease-out);
}
.fear.is-animated .fear__fill { width: var(--w); }
.fear__pct {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-align: right;
}
.fear--highlight .fear__label { color: var(--teal); }
.fear--highlight .fear__fill {
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}
.fear--highlight .fear__pct { color: var(--teal); }

.fears-aside {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aside-block p { margin: 0 0 10px; }

.pull {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  border-left: 3px solid var(--teal);
  padding: 8px 0 8px 24px;
  margin: 32px 0 0;
  max-width: 60ch;
}
.pull strong { color: var(--teal); font-weight: 700; }

/* ── Therapy area tabs ── */
.ta-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background: var(--cream);
  padding: 6px;
  border-radius: 14px;
  margin: 24px 0 0;
}
.ta-tab {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.005em;
}
.ta-tab:hover { color: var(--navy); }
.ta-tab.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.ta-panels {
  position: relative;
  margin-top: 20px;
}
.ta-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.ta-panel.is-active {
  display: block;
  animation: panelFade 0.4s var(--ease-out);
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ta-panel__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.ta-panel__n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ta-panel__tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ta-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.ta-stat {
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--teal);
}
.ta-stat__rank {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ta-stat__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.ta-stat__pct {
  font-size: 34px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ta-panel__insight {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}
.ta-panel__insight em { color: var(--muted); font-style: italic; }

/* ── Quote block ── */
.quote {
  position: relative;
  padding: 44px 48px 44px 84px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  margin: 40px 0 0;
  box-shadow: var(--shadow-sm);
}
.quote__mark {
  position: absolute;
  left: 32px;
  top: 32px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 88px;
  line-height: 1;
  color: var(--teal);
  font-weight: 700;
}
.quote__text {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.quote__attrib {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Timeline (Finding 3) ── */
.timeline {
  position: relative;
  margin: 32px 0 48px;
  padding-left: 200px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 180px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(255,255,255,0.12);
}
.section--navy .tl-step { border-bottom-color: rgba(255,255,255,0.08); }
.tl-step {
  position: relative;
  padding: 22px 0 22px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tl-step:last-child { border-bottom: 0; }
.tl-step__window {
  position: absolute;
  left: -200px;
  top: 28px;
  width: 164px;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}
.tl-step__window small {
  display: inline;
  font-size: inherit;
  margin-right: 4px;
}
.tl-step__window strong {
  display: block;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 4px;
  font-weight: 700;
}
.tl-step--key .tl-step__window strong { color: var(--mint); }
.tl-step__dot {
  position: absolute;
  left: -7px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--navy);
  border: 2px solid var(--mint);
  box-shadow: 0 0 0 4px var(--navy);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.tl-step--key .tl-step__dot {
  background: var(--mint);
  width: 18px;
  height: 18px;
  left: -9px;
  box-shadow: 0 0 0 4px var(--navy), 0 0 20px rgba(114,203,207,0.5);
}
.tl-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tl-step--key .tl-step__title { color: var(--mint); }
.tl-step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.tl-step__desc strong { color: #fff; }
.tl-step__desc em { color: rgba(255,255,255,0.55); font-style: italic; }
.tl-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  border-radius: 999px;
  letter-spacing: 0.18em;
}
.tl-badge--mint {
  background: var(--mint);
  color: var(--navy);
}

.timeline:hover .tl-step:not(:hover) { opacity: 0.5; }
.tl-step:hover .tl-step__dot { transform: scale(1.3); }

/* Compare cards under timeline */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.compare__card {
  position: relative;
  padding: 28px 32px;
  border-radius: 16px;
  overflow: hidden;
}
.compare__card--warm {
  background: var(--warm);
  color: #fff;
}
.compare__card--mint {
  background: rgba(114,203,207,0.12);
  border: 1px solid rgba(114,203,207,0.3);
}
.compare__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.compare__card--mint .compare__label { color: var(--mint); }
.compare__num {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.compare__card--mint .compare__num { color: var(--mint); }
.compare__num small {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,0.72);
}
.compare__card--mint .compare__num small { color: rgba(255,255,255,0.7); }
.compare__delta {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: var(--mint);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ── Sentiment shift (Finding 4) ── */
.shift__legend {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin: 16px 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.shift__legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.shift__legend-chip::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
}
.shift__legend-chip--pre { color: var(--warm); }
.shift__legend-chip--post { color: var(--teal); }
.shift__legend-note { color: var(--muted); font-weight: 500; }

.shift {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shift__row {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr 80px;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.shift__row:last-child { border-bottom: 0; }
.shift__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.shift__label small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.shift__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shift__bar {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.shift__bar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}
.shift__bar--pre .shift__bar-label { color: var(--warm); }
.shift__bar--post .shift__bar-label { color: var(--teal); }
.shift__bar-track {
  position: relative;
  height: 22px;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
}
.shift__bar-fill {
  height: 100%;
  width: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  border-radius: 4px 0 0 4px;
  transition: width 1.2s var(--ease-out);
}
.shift__bar--pre .shift__bar-fill { background: var(--warm); }
.shift__bar--post .shift__bar-fill { background: var(--teal); }
.shift__row.is-animated .shift__bar-fill { width: calc(var(--w) * 1%); }
.shift__delta {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.shift__delta--down { color: var(--warm); }

.shift-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.shift-note p em { color: var(--muted); font-style: italic; }

/* ── Questions table (Finding 5) ── */
.q-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}
.q-filter__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.q-filter__btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  letter-spacing: -0.005em;
}
.q-filter__btn:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.q-filter__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.q-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.q-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 90px 100px 140px;
  gap: 16px;
  padding: 16px 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.q-row:last-child { border-bottom: 0; }
.q-row--head {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
}
.q-row--head .q-col { color: rgba(255,255,255,0.92); }
.q-row--head [data-sort] { cursor: pointer; user-select: none; }
.q-row--head [data-sort]:hover { color: var(--mint); }
.q-row--head [data-sort]::after { content: " ↕"; opacity: 0.4; font-size: 10px; }
.q-row--head [data-sort].is-sort-asc::after { content: " ↑"; opacity: 1; color: var(--mint); }
.q-row--head [data-sort].is-sort-desc::after { content: " ↓"; opacity: 1; color: var(--mint); }

.q-row:not(.q-row--head):hover {
  background: linear-gradient(90deg, transparent, rgba(65,157,165,0.05) 30%, rgba(65,157,165,0.05) 70%, transparent);
}
.q-row.is-hidden {
  display: none;
}
.q-col--num {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.q-col--q {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.q-col--freq, .q-col--conv {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.q-col--conv { color: var(--teal); }
.q-row--head .q-col--freq,
.q-row--head .q-col--conv { text-align: right; }
.q-col--sig { text-align: right; }

.signal {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.signal--vhigh { background: var(--navy); color: var(--mint); }
.signal--high  { background: rgba(65,157,165,0.12); color: var(--teal-dark); }
.signal--mod   { background: var(--cream); color: var(--muted); }

/* ── Validation cards ── */
.val-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 0;
}
.val-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.val-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.val-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.2em;
}
.val-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.val-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}
.val-card__cite {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-top: auto;
  padding-top: 8px;
}

/* ── Forum stats ── */
.forum-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.forum-stat {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--rule);
}
.forum-stat:last-child { border-right: 0; }
.forum-stat__num {
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.forum-stat__num em {
  font-style: normal;
  font-size: 0.6em;
  color: var(--teal);
  margin-left: 2px;
}
.forum-stat__label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

/* ── Testimonials (new horizontal layout) ── */
.t-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.t-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.t-row:hover {
  transform: translateY(-3px);
  border-color: rgba(114,203,207,0.35);
  background: rgba(255,255,255,0.06);
}
.t-row__photo {
  position: relative;
  background: linear-gradient(135deg, rgba(114,203,207,0.12), rgba(65,157,165,0.06));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-row__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14,42,68,0.4) 100%);
  pointer-events: none;
}
.t-row__main {
  padding: 36px 36px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.t-row__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 0.6;
  color: var(--mint);
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: -6px;
}
.t-row__quote {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  margin: 0;
  font-style: normal;
  letter-spacing: -0.01em;
}
.t-row__attrib {
  font-style: normal;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.t-row__name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.t-row__title {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.t-row__meta {
  padding: 36px 36px 36px 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(0,0,0,0.18);
}
.t-meta {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}
.t-meta__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(114,203,207,0.12);
  border: 1px solid rgba(114,203,207,0.2);
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-meta__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.t-meta__value {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .t-row { grid-template-columns: 180px 1fr; }
  .t-row__meta {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .t-meta { flex: 1 1 220px; }
}
@media (max-width: 700px) {
  .t-row { grid-template-columns: 1fr; }
  .t-row__photo { aspect-ratio: 16 / 9; max-height: 240px; }
  .t-row__main, .t-row__meta { padding: 28px; }
  .t-row__meta { flex-direction: column; }
}

/* Old grid testimonials still here for reference but not used */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.t-card__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--mint);
  font-weight: 700;
  opacity: 0.6;
}
.t-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  font-weight: 500;
  flex: 1;
  font-style: normal;
}
.t-card__attrib {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-style: normal;
}
.t-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.t-card__title {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 960px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ── Implications accordion ── */
.impl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}
.impl__item {
  border-top: 1px solid var(--rule-strong);
  transition: background 0.25s var(--ease);
}
.impl__item:last-child { border-bottom: 1px solid var(--rule-strong); }
.impl__item:hover { background: rgba(65,157,165,0.03); }
.impl__item[open] { background: rgba(65,157,165,0.04); }
.impl__head {
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 28px 16px 28px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.impl__head::-webkit-details-marker { display: none; }
.impl__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.impl__title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.impl__chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  line-height: 1;
  padding-bottom: 2px;
}
.impl__item[open] .impl__chev {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--mint);
}
.impl__desc {
  padding: 0 72px 28px 96px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  max-width: 80ch;
  animation: implOpen 0.35s var(--ease-out);
}
@keyframes implOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Inline "soft" CTA cards ── */
.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 24px 28px 24px 32px;
  background: #fff;
  border-radius: 14px;
  border-left: 3px solid var(--teal);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.section--cream .inline-cta { background: #fff; }
.section--navy .inline-cta {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  border-left-color: var(--mint);
  box-shadow: none;
}
.inline-cta__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.section--navy .inline-cta__eyebrow { color: var(--mint); }
.inline-cta__hook {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 60ch;
}
.section--navy .inline-cta__hook { color: #fff; }
.inline-cta__hook strong { color: var(--teal); font-weight: 600; }
.section--navy .inline-cta__hook strong { color: var(--mint); }
.inline-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.inline-cta__btn:hover { background: var(--teal); transform: translateX(3px); }
.section--navy .inline-cta__btn { background: var(--mint); color: var(--navy); }
.section--navy .inline-cta__btn:hover { background: var(--mint-light); }
.inline-cta__btn::after { content: "→"; font-size: 16px; line-height: 1; }
@media (max-width: 720px) {
  .inline-cta { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .inline-cta__btn { width: fit-content; }
}

/* ── ROI calculator ── */
.roi {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  margin-top: 20px;
}
.roi__inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.roi__input { display: flex; flex-direction: column; gap: 8px; }
.roi__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.roi__select {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23419DA5' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: border-color 0.2s var(--ease);
}
.roi__select:focus { outline: none; border-color: var(--teal); }
.roi__slider-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 14px;
  align-items: center;
}
.roi__slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--cream);
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(14,42,68,0.2);
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}
.roi__slider::-webkit-slider-thumb:hover { transform: scale(1.15); background: var(--navy); }
.roi__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(14,42,68,0.2);
  cursor: pointer;
}
.roi__slider-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: -0.01em;
}
.roi__hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

.roi__output {
  padding: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.roi__output::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 110% -20%, rgba(114,203,207,0.14), transparent 60%);
  pointer-events: none;
}
.roi__output > * { position: relative; z-index: 1; }
.roi__output-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
}
.roi__funnel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roi__stage {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}
.roi__stage-label {
  grid-column: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.roi__stage-num {
  grid-column: 2;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.roi__stage--key .roi__stage-num { color: var(--mint); font-size: 28px; }
.roi__stage-bar {
  grid-column: 1 / -1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.roi__stage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  border-radius: 3px;
  transition: width 0.5s var(--ease-out);
}
.roi__stage--key .roi__stage-fill {
  background: linear-gradient(90deg, var(--mint), var(--mint-light));
}
.roi__totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.roi__total-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.roi__total-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  line-height: 1;
}
.roi__total--hero .roi__total-num { color: var(--mint); font-size: 36px; }
.roi__total-sub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mint-light);
  letter-spacing: 0.02em;
}
.roi__disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roi__disclaimer strong { color: #fff; }
.roi__cta {
  align-self: flex-start;
}

@media (max-width: 960px) {
  .roi { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .roi__inputs, .roi__output { padding: 24px; }
  .roi__totals { grid-template-columns: 1fr; gap: 20px; }
}

/* ── CEO note ── */
.ceo-note { background: var(--cream); }
.ceo-note__wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.ceo-note__photo {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.ceo-note__photo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.ceo-note__stamp {
  margin-top: 20px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.ceo-note__stamp-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ceo-note__stamp-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.ceo-note__stamp-title {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.ceo-note__body p { font-size: 17px; line-height: 1.65; }
.ceo-note__sig {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  margin: 24px 0 16px !important;
}
@media (max-width: 960px) {
  .ceo-note__wrap { grid-template-columns: 1fr; gap: 36px; }
  .ceo-note__photo { position: static; max-width: 320px; }
}

/* ── FAQ ── */
.faq {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.faq__item {
  border-top: 1px solid var(--rule-strong);
  transition: background 0.25s var(--ease);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule-strong); }
.faq__item[open] { background: rgba(65,157,165,0.03); }
.faq__q {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 24px 16px 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--teal); }
.faq__chev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  line-height: 1;
  padding-bottom: 2px;
}
.faq__item[open] .faq__chev {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--mint);
}
.faq__a {
  padding: 0 48px 28px 0;
  animation: faqOpen 0.3s var(--ease-out);
}
.faq__a p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
  max-width: 75ch;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA ── */
.section--cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 160px) 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 110%, rgba(114,203,207,0.22), transparent 60%),
    radial-gradient(600px 400px at 0% -10%, rgba(65,157,165,0.18), transparent 60%);
  pointer-events: none;
}
.cta__title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 28px;
}
.cta__title em { font-style: normal; color: var(--mint); }
.cta__body {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 0 40px;
  font-weight: 400;
}
.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta__actions .btn--ghost:hover { background: #fff; color: var(--navy); }
.cta__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.cta__contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cta__contact-value {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta__contact-value strong { color: var(--mint); }

/* ── Methodology ── */
.meth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.meth-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.meth-col__head {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}
.meth-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--body);
}
.meth-item::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.cites-toggle {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.cites-toggle summary {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
.cites-toggle summary::-webkit-details-marker { display: none; }
.cites-toggle summary:hover { color: var(--navy); }
.cites-toggle[open] summary { color: var(--navy); }
.cites {
  margin-top: 20px;
  columns: 2;
  column-gap: 32px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--body);
}
.cites ol { margin: 0; padding: 0 0 0 20px; }
.cites li {
  margin-bottom: 10px;
  break-inside: avoid;
}
.cites li em { color: var(--navy); font-style: italic; font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__brand img { height: 20px; }
.footer__brand p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.footer__meta a { color: var(--teal); transition: color 0.2s var(--ease); }
.footer__meta a:hover { color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; margin-left: auto; }
  .nav.is-menu-open .nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    margin: 0;
  }

  .summary__grid { grid-template-columns: 1fr; gap: 40px; }
  .summary__aside { position: static; }
  .fears-grid { grid-template-columns: 1fr; gap: 40px; }
  .fears-aside { position: static; }

  .val-grid { grid-template-columns: 1fr; }
  .forum-stats { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .forum-stat { border-right: 0; padding: 20px 0; border-bottom: 1px solid var(--rule); }
  .forum-stat:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--rule); }

  .gap-row { grid-template-columns: 1fr; gap: 16px; }
  .gap-col { padding: 12px 0 12px 20px !important; border-left-width: 3px !important; }
  .gap-col--why { border-left: 3px solid var(--line) !important; }

  .ta-panel__grid { grid-template-columns: 1fr; }
  .shift__row { grid-template-columns: 1fr; gap: 16px; }
  .shift__delta { text-align: left; }
  .shift-notes { grid-template-columns: 1fr; gap: 28px; }

  .q-row { grid-template-columns: 40px minmax(0, 1fr) 60px 70px 100px; font-size: 13px; padding: 12px 16px; gap: 10px; }
  .q-col--q { font-size: 13px; }
  .q-row--head { padding: 12px 16px; }
  .signal { font-size: 9px; padding: 3px 8px; }

  .timeline { padding-left: 0; }
  .timeline::before { left: 7px; top: 8px; bottom: 8px; }
  .tl-step { padding-left: 32px; }
  .tl-step__window {
    position: static;
    width: auto;
    text-align: left;
    display: inline-block;
    margin-bottom: 10px;
  }
  .tl-step__dot { left: 0; }
  .tl-step--key .tl-step__dot { left: -2px; }

  .compare { grid-template-columns: 1fr; }
  .meth-grid { grid-template-columns: 1fr; }
  .cites { columns: 1; }
  .cta__contact { grid-template-columns: 1fr; gap: 24px; }

  .impl__head { grid-template-columns: 48px 1fr 28px; gap: 16px; padding: 20px 12px 20px 0; }
  .impl__desc { padding: 0 16px 24px 64px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 0 20px; gap: 16px; }
  .nav__cta { display: none; }

  .hero { padding: calc(var(--nav-h) + 40px) 0 80px; min-height: auto; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__actions { gap: 10px; }
  .hero__mark { font-size: 480px; right: -60px; bottom: -140px; }

  .callout { padding: 24px; }
  .quote { padding: 36px 24px 36px 24px; }
  .quote__mark { position: static; display: block; margin-bottom: 4px; font-size: 56px; }

  .toc__item { grid-template-columns: 52px 1fr 32px; gap: 16px; padding: 20px 0; }

  .gap-toggle { flex-direction: column; align-items: stretch; }
  .gap-toggle__btn { justify-content: flex-start; }

  .q-table { font-size: 11px; }
  .q-row { grid-template-columns: 30px minmax(0, 1fr) 50px 60px; padding: 10px 12px; gap: 8px; }
  .q-col--sig { display: none; }
  .q-row--head { padding: 10px 12px; }

  .forum-stats { grid-template-columns: 1fr; }
  .forum-stat { border-right: 0 !important; border-left: 0 !important; padding: 16px 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
