:root {
  --cream: #f5f0e6;
  --paper: #fffaf2;
  --ink: #17233b;
  --navy: #12213d;
  --blue: #315d9d;
  --sky: #dbeaf5;
  --coral: #ed9d7b;
  --peach: #f3c8b2;
  --yellow: #f2da84;
  --mint: #bddcc7;
  --white: #fffdf8;
  --muted: #5c6677;
  --line: #263754;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 4vw, 64px);
  --page: min(1380px, calc(100vw - (var(--gutter) * 2)));
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }
::selection { color: var(--white); background: var(--blue); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  padding: 11px 16px;
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 9px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

/* Header */
.site-header {
  width: 100%;
  height: 78px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  border-bottom: 2px solid transparent;
  transition: height .25s ease, background-color .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: var(--cream);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.site-header.scrolled .brand { color: var(--ink); }

.brand-symbol {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  position: relative;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 9px;
  background: var(--coral);
  transform: rotate(-4deg);
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
}

.brand-symbol::before {
  width: 19px;
  height: 16px;
  top: 5px;
  left: 4px;
  background: var(--navy);
  clip-path: polygon(0 0, 25% 0, 50% 68%, 75% 0, 100% 0, 60% 100%, 40% 100%);
}

.brand-symbol::after {
  width: 6px;
  height: 6px;
  right: 3px;
  bottom: 3px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--yellow);
  transform: rotate(12deg);
}

.brand-symbol i { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.site-nav a {
  color: rgba(255, 253, 248, .86);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.site-header.scrolled .site-nav a { color: var(--ink); }
.site-nav a:hover { color: var(--coral); }

.site-nav .nav-cta {
  padding: 11px 15px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 9px;
}

.site-header.scrolled .site-nav .nav-cta { color: var(--ink); }
.nav-cta span { margin-left: 18px; }

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 23px;
  height: 2px;
  margin: 6px auto;
  display: block;
  border-radius: 3px;
  background: var(--white);
  transition: transform .25s ease, background-color .25s ease;
}

.site-header.scrolled .menu-toggle span:not(.sr-only) { background: var(--ink); }

/* Shared type and controls */
.kicker,
.panel-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.kicker {
  margin-bottom: 27px;
}

.kicker::before,
.panel-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: var(--coral);
  transform: rotate(8deg);
}

.kicker i,
.kicker > span { display: none; }

.chapter-tag {
  padding: 10px 14px;
  gap: 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--line);
  border-radius: 11px;
  box-shadow: 4px 4px 0 var(--line);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.2;
  letter-spacing: -.015em;
}

.chapter-tag.kicker {
  margin-bottom: 36px;
}

.chapter-tag::before {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--coral);
}

.button {
  min-height: 54px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover { background: #ffe99b; }

.button-quiet {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 253, 248, .82);
}

.button-quiet:hover { box-shadow: 4px 4px 0 var(--coral); }

/* Hero */
.hero {
  min-height: max(100svh, 720px);
  padding: 96px var(--gutter) 0;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media { z-index: -3; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 1.6s cubic-bezier(.2, .7, .2, 1);
}

.hero-ready .hero-media img { transform: scale(1); }

.hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 25, 49, .96) 0%, rgba(10, 25, 49, .84) 32%, rgba(10, 25, 49, .35) 53%, rgba(10, 25, 49, 0) 72%);
}

.hero-content {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(45px, 7vh, 90px) 0 78px;
  align-self: center;
  position: relative;
  z-index: 2;
}

.hero-kicker,
.hero h1 span,
.hero-deck,
.hero-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .72, .2, 1);
}

.hero-kicker {
  color: var(--white);
  transition-delay: .1s;
}

.hero-kicker::before { background: var(--yellow); }

.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(57px, 5.8vw, 94px);
  font-weight: 650;
  line-height: .94;
  letter-spacing: -.066em;
}

.hero h1 span {
  display: block;
  transition-delay: .2s;
}

.hero h1 .hero-second-line {
  color: #bcd7ee;
  font-weight: 500;
  transition-delay: .3s;
}

.hero-deck {
  max-width: 700px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, .84);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
  letter-spacing: -.018em;
  transition-delay: .42s;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  transition-delay: .53s;
}

.hero-ready .hero-kicker,
.hero-ready .hero h1 span,
.hero-ready .hero-deck,
.hero-ready .hero-actions {
  opacity: 1;
  transform: none;
}

.hero-foot {
  min-height: 70px;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  border-top: 2px solid rgba(255, 253, 248, .7);
  font-size: 11px;
  font-weight: 750;
}

.hero-foot-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-foot-note i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 3px;
  background: var(--mint);
}

/* Problem narrative */
.problem { background: var(--cream); }

.problem-opener {
  min-height: 90svh;
  padding: clamp(120px, 15vw, 210px) var(--gutter);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
}

.problem-opener-inner {
  width: var(--page);
  margin: 0 auto;
}

.problem-opener h2 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(49px, 6.8vw, 104px);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.066em;
  text-wrap: balance;
}

.problem-opener h2 span {
  display: block;
  color: var(--blue);
}

.problem-thesis {
  width: max-content;
  max-width: 100%;
  margin: 43px 0 0;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 650;
  line-height: 1.5;
  box-shadow: 5px 5px 0 var(--line);
}

.narrative-panel {
  min-height: 100svh;
  padding: clamp(110px, 12vw, 180px) var(--gutter);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.narrative-inner {
  width: var(--page);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.narrative-copy h3 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(47px, 5.4vw, 82px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.problem .narrative-copy h3 {
  margin-top: 30px;
}

.narrative-copy > p:last-child {
  max-width: 620px;
  margin: 29px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.shared-panel {
  color: var(--ink);
  background: var(--sky);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.shared-panel .narrative-inner {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.shared-panel .narrative-copy > p:last-child { color: #46536a; }

.safeguard-words {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.safeguard-words > div {
  min-height: 220px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--line);
  transition: opacity .5s ease calc(var(--order) * 80ms), transform .5s ease calc(var(--order) * 80ms);
}

.safeguard-words > div:nth-child(1) { background: var(--yellow); }
.safeguard-words > div:nth-child(2) { background: var(--paper); }
.safeguard-words > div:nth-child(3) { background: var(--peach); }
.safeguard-words > div:nth-child(4) { background: var(--mint); }

.has-js .safeguard-words:not(.is-visible) > div {
  opacity: 0;
  transform: translateY(14px) rotate(1deg);
}

.safeguard-words span,
.safeguard-words small {
  color: #526078;
  font-size: 11px;
  font-weight: 800;
}

.safeguard-words strong {
  margin-top: auto;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.055em;
}

.safeguard-words small { margin-top: 10px; }

.anesthesia-panel {
  min-height: 100svh;
  color: var(--white);
  background: var(--navy);
}

.anesthesia-image {
  position: absolute;
  inset: 0;
}

.anesthesia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.anesthesia-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 49, .98) 0%, rgba(10, 25, 49, .87) 34%, rgba(10, 25, 49, .34) 58%, rgba(10, 25, 49, 0) 78%);
  pointer-events: none;
}

.anesthesia-panel .narrative-copy {
  max-width: 670px;
}

.anesthesia-panel .narrative-copy > p:last-child { color: rgba(255, 253, 248, .83); }

.responsibility-words {
  margin-top: clamp(70px, 10vh, 125px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.responsibility-words span {
  min-height: 105px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 16px;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 650;
  letter-spacing: -.045em;
  transition: opacity .5s ease calc(var(--order) * 90ms), transform .5s ease calc(var(--order) * 90ms);
}

.responsibility-words span:nth-child(1) { background: var(--yellow); }
.responsibility-words span:nth-child(2) { background: var(--sky); }
.responsibility-words span:nth-child(3) { background: var(--coral); }
.responsibility-words span:nth-child(4) { background: var(--mint); }

.has-js .responsibility-words:not(.is-visible) span {
  opacity: 0;
  transform: translateY(16px);
}

.gap-panel {
  min-height: 95svh;
  padding: clamp(120px, 14vw, 210px) var(--gutter);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--peach);
  border-bottom: 2px solid var(--line);
}

.gap-panel-inner {
  width: var(--page);
  margin: 0 auto;
}

.gap-panel h3 {
  max-width: 1250px;
  margin: 23px 0 0;
  font-size: clamp(50px, 7vw, 106px);
  font-weight: 620;
  line-height: .95;
  letter-spacing: -.067em;
  text-wrap: balance;
}

.problem .gap-panel h3 {
  margin-top: 32px;
}

.gap-explanation {
  margin-top: clamp(62px, 8vw, 105px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
}

.gap-explanation p,
.gap-explanation strong {
  max-width: 580px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.gap-explanation p { color: #4d5260; }

.gap-explanation strong {
  padding: 22px 24px;
  background: var(--yellow);
  border: 2px solid var(--line);
  border-radius: 15px;
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 750;
}

/* Evidence */
.evidence {
  padding: clamp(68px, 7vh, 84px) var(--gutter);
  color: var(--ink);
  background: var(--yellow);
}

.evidence-inner {
  width: var(--page);
  margin: 0 auto;
}

.kicker-dark { color: var(--ink); }

.evidence-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  column-gap: clamp(52px, 6vw, 90px);
  row-gap: 28px;
}

.evidence-heading .kicker { grid-column: 1 / -1; }
.evidence-heading .chapter-tag { margin-bottom: 0; }

.evidence-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5.4vw, 82px);
  font-weight: 620;
  line-height: .98;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.evidence-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  align-self: end;
  color: #4e5665;
  font-size: 17px;
  line-height: 1.65;
}

.evidence-measures {
  margin-top: clamp(40px, 4.5vh, 52px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.primary-measure,
.secondary-measure,
.global-measure {
  min-width: 0;
  padding: 26px clamp(24px, 2.7vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--line);
  border-radius: 20px;
  box-shadow: 7px 7px 0 var(--line);
}

.primary-measure {
  min-height: 362px;
  grid-row: 1 / 3;
  background: var(--paper);
}

.secondary-measure,
.global-measure {
  min-height: 174px;
  padding: 18px clamp(20px, 1.8vw, 27px);
}

.secondary-measure { background: var(--coral); }
.global-measure { background: var(--mint); }

.primary-measure strong {
  font-size: clamp(86px, 10.5vw, 160px);
  font-weight: 650;
  line-height: .8;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.primary-measure p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.42;
  letter-spacing: -.025em;
}

.primary-measure span {
  margin-top: 16px;
  color: #59647a;
  font-size: 11px;
  font-weight: 800;
}

.secondary-measure strong {
  font-size: clamp(60px, 5.5vw, 84px);
  font-weight: 650;
  line-height: .85;
  letter-spacing: -.075em;
}

.secondary-measure p {
  max-width: 310px;
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.45;
}

.global-measure strong {
  font-size: clamp(56px, 5vw, 76px);
  font-weight: 650;
  line-height: .85;
  letter-spacing: -.075em;
  white-space: nowrap;
}

.global-measure strong span {
  margin-right: 5px;
  font-size: .28em;
  letter-spacing: -.02em;
  vertical-align: top;
}

.global-measure p {
  max-width: 340px;
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.4;
}

.global-measure small {
  margin-top: 8px;
  color: #526078;
  font-size: 10px;
  font-weight: 800;
}

.evidence-sources {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
}

.evidence-sources a {
  min-height: 74px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  background: rgba(255, 250, 242, .5);
  border: 2px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
}

.evidence-sources a:hover { background: var(--paper); }

.source-label {
  font-size: 11px;
  font-weight: 800;
}

.source-copy { min-width: 0; }

.evidence-sources b {
  font-size: 18px;
}

/* Solution */
.solution {
  padding: clamp(68px, 7vh, 84px) var(--gutter);
  color: var(--white);
  background: var(--blue);
}

.solution-inner {
  width: var(--page);
  margin: 0 auto;
}

.solution .chapter-tag::before { background: var(--coral); }

.solution-copy h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 620;
  line-height: .95;
  letter-spacing: -.068em;
  text-wrap: balance;
}

.solution-copy > p:not(.kicker) {
  max-width: 830px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, .86);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.solution-outcomes {
  margin-top: clamp(44px, 5.5vh, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.solution-outcomes article {
  min-height: 170px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--navy);
}

.solution-outcomes article:nth-child(1) { background: var(--paper); }
.solution-outcomes article:nth-child(2) { background: var(--yellow); }
.solution-outcomes article:nth-child(3) { background: var(--mint); }

.solution-outcomes span {
  font-size: 11px;
  font-weight: 800;
}

.solution-outcomes strong {
  max-width: 320px;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.solution-close {
  max-width: 1200px;
  margin: clamp(36px, 4.5vh, 50px) 0 0;
  color: var(--white);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.05em;
}

/* Seven rights */
.section-pad {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(120px, 12vw, 180px) 0;
}

.rights {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(560px, 1.24fr);
  align-items: center;
  gap: clamp(60px, 7vw, 105px);
  background: var(--cream);
}

.rights-copy,
.rights-board { min-width: 0; }

.rights-copy h2 {
  margin: 0;
  font-size: clamp(50px, 5.8vw, 84px);
  font-weight: 620;
  line-height: .99;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.right-detail {
  min-height: 190px;
  margin-top: 45px;
  padding: 25px;
  background: var(--yellow);
  border: 2px solid var(--line);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--line);
}

.right-detail > span {
  font-size: 11px;
  font-weight: 800;
}

.right-detail h3 {
  margin: 15px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.right-detail p {
  max-width: 500px;
  margin: 11px 0 0;
  color: #4f5868;
  font-size: 15px;
  line-height: 1.7;
}

.rights-sources {
  margin-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #5b6575;
  font-size: 11px;
  font-weight: 750;
}

.rights-sources a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rights-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.right-node {
  min-height: 145px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: 17px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.right-node:nth-child(2),
.right-node:nth-child(7) { background: var(--sky); }
.right-node:nth-child(3),
.right-node:nth-child(6) { background: var(--peach); }
.right-node:nth-child(4) { background: var(--mint); }
.right-node:nth-child(5) { background: var(--yellow); }

.right-node:hover,
.right-node.active {
  box-shadow: 5px 5px 0 var(--line);
  transform: translate(-2px, -2px);
}

.right-node.active { background: var(--coral); }

.right-node i {
  color: #59647a;
  font-size: 11px;
  font-style: normal;
}

/* Team */
.team {
  width: 100%;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  color: var(--ink);
  background: var(--sky);
  border-top: 2px solid var(--line);
}

.team > * {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.team-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 7vw;
  row-gap: 28px;
}

.team-heading .kicker { grid-column: 1 / -1; }
.team-heading .chapter-tag { margin-bottom: 0; }

.team-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5.8vw, 86px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.team-heading > p:last-child {
  max-width: 470px;
  margin: 0 0 8px;
  align-self: end;
  color: #4d5a6e;
  font-size: 16px;
  line-height: 1.75;
}

.team-grid {
  margin-top: clamp(40px, 4.5vh, 52px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

@media (min-width: 1101px) {
  .evidence,
  .solution {
    min-height: 100svh;
    display: grid;
    align-items: center;
  }

  .team {
    padding-top: clamp(68px, 7vh, 84px);
    padding-bottom: clamp(68px, 7vh, 84px);
  }
}

.team-member {
  min-width: 0;
  padding: 12px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
}

.team-member:nth-child(3) { background: var(--yellow); }
.team-member:nth-child(4) { background: var(--peach); }

.portrait {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #eeeae2;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.team-member:hover .portrait img { transform: scale(1.025); }

.team-member > div:last-child { padding: 17px 3px 8px; }

.team-member h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.025em;
}

.team-member p {
  margin: 6px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.team-member small {
  margin-top: 11px;
  display: block;
  color: #59647a;
  font-size: 11px;
}

/* Closing */
.closing {
  min-height: 100svh;
  padding: 100px var(--gutter) 0;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
  border-top: 2px solid var(--line);
}

.closing-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-shapes i {
  display: block;
  position: absolute;
  border: 2px solid var(--line);
}

.closing-shapes i:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 12%;
  left: 8%;
  border-radius: 34px;
  background: var(--yellow);
  transform: rotate(10deg);
}

.closing-shapes i:nth-child(2) {
  width: 140px;
  height: 140px;
  right: 9%;
  bottom: 24%;
  border-radius: 50%;
  background: var(--sky);
}

.closing-shapes i:nth-child(3) {
  width: 105px;
  height: 175px;
  top: 18%;
  right: 19%;
  border-radius: 50px;
  background: var(--mint);
  transform: rotate(-13deg);
}

.closing-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 80px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-inner h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 101px);
  font-weight: 650;
  line-height: .97;
  letter-spacing: -.066em;
  text-wrap: balance;
}

.closing-inner h2 span { color: var(--blue); }

.closing-inner > p:not(.kicker) {
  max-width: 590px;
  margin: 29px auto 0;
  color: #3f4a5d;
  font-size: 16px;
  line-height: 1.75;
}

.closing-inner .button {
  margin-top: 36px;
  color: var(--white);
  background: var(--navy);
}

.closing footer {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  border-top: 2px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
}

.closing footer .brand { color: var(--ink); }
.closing footer > span { justify-self: center; }

.closing footer > a:last-child {
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Progressive enhancement */
.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .shared-panel .narrative-inner {
    grid-template-columns: minmax(280px, .75fr) minmax(440px, 1.25fr);
    gap: 52px;
  }

  .rights {
    grid-template-columns: minmax(290px, .7fr) minmax(500px, 1.3fr);
    gap: 45px;
  }

  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    padding: 0 var(--gutter);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .menu-open .menu-toggle span:not(.sr-only) { background: var(--ink); }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .menu-open .brand {
    position: relative;
    z-index: 3;
    color: var(--ink);
  }

  .site-nav {
    padding: 98px var(--gutter) max(34px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    inset: 0;
    overflow-y: auto;
    color: var(--ink);
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a,
  .site-header.scrolled .site-nav a {
    padding: 17px 0;
    color: var(--ink);
    border-bottom: 2px solid var(--line);
    font-size: clamp(20px, 5vw, 27px);
    font-weight: 650;
    letter-spacing: -.04em;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    padding: 17px;
    color: var(--ink);
    font-size: 12px;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding-top: 78px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 25, 49, .96), rgba(10, 25, 49, .7) 55%, rgba(10, 25, 49, .08));
  }

  .hero-content { padding: 55px 0 68px; }
  .hero h1 { font-size: clamp(56px, 9vw, 81px); }

  .shared-panel .narrative-inner,
  .evidence-heading,
  .team-heading {
    grid-template-columns: 1fr;
  }

  .evidence-heading,
  .team-heading {
    row-gap: 0;
  }

  .evidence-heading .chapter-tag,
  .team-heading .chapter-tag {
    margin-bottom: 36px;
  }

  .shared-panel .narrative-copy { max-width: 690px; }
  .safeguard-words { margin-top: 70px; }

  .responsibility-words { grid-template-columns: 1fr 1fr; }

  .gap-explanation { gap: 42px; }

  .evidence-heading h2,
  .evidence-heading > p:last-child,
  .team-heading h2,
  .team-heading > p:last-child {
    grid-column: 1;
  }

  .evidence-heading > p:last-child,
  .team-heading > p:last-child {
    margin-top: 28px;
  }

  .evidence-measures {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .primary-measure { grid-row: auto; }

  .secondary-measure,
  .global-measure { min-height: 300px; }

  .evidence-sources {
    grid-template-columns: 1fr;
  }

  .solution-outcomes { grid-template-columns: 1fr; }

  .solution-outcomes article { min-height: 155px; }

  .rights {
    grid-template-columns: 1fr;
  }

  .rights-copy { max-width: 700px; }
  .rights-board { margin-top: 68px; }

  .closing { padding-top: 80px; }
  .closing-shapes { opacity: .6; }
}

@media (max-width: 700px) {
  .brand { font-size: 11px; }

  .chapter-tag {
    padding: 9px 12px;
    gap: 8px;
    font-size: 16px;
    box-shadow: 3px 3px 0 var(--line);
  }

  .chapter-tag.kicker {
    margin-bottom: 30px;
  }

  .problem .narrative-copy h3,
  .problem .gap-panel h3 {
    margin-top: 26px;
  }

  .hero {
    min-height: max(100svh, 760px);
    padding-top: 68px;
  }

  .hero-media {
    height: 57%;
    bottom: auto;
  }

  .hero-media img { object-position: 69% center; }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 25, 49, .05) 0%, rgba(10, 25, 49, .12) 32%, rgba(10, 25, 49, .92) 57%, var(--navy) 72%),
      linear-gradient(90deg, rgba(10, 25, 49, .2), transparent 65%);
  }

  .hero-content {
    padding: 39svh 0 40px;
    align-self: start;
  }

  .hero-kicker {
    max-width: 280px;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: 1rem;
    line-height: 1;
  }

  .hero h1 span {
    font-size: clamp(33px, 10.4vw, 46px);
    letter-spacing: -.06em;
    white-space: nowrap;
  }

  .hero h1 .hero-second-line {
    margin-top: 4px;
    font-size: clamp(30px, 9.4vw, 40px);
  }

  .hero-deck {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 27px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button { width: 100%; }

  .hero-foot {
    min-height: 60px;
    font-size: 11px;
  }

  .hero-foot-note { display: none; }

  .problem-opener {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 115px;
  }

  .problem-opener h2 {
    font-size: clamp(41px, 12.4vw, 59px);
    line-height: .99;
  }

  .problem-thesis {
    width: auto;
    margin-top: 33px;
    font-size: 16px;
  }

  .narrative-panel {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .narrative-copy h3 {
    font-size: clamp(40px, 11.8vw, 56px);
  }

  .narrative-copy > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .safeguard-words {
    margin-top: 56px;
    grid-template-columns: 1fr;
  }

  .safeguard-words > div {
    min-height: 150px;
  }

  .safeguard-words strong { font-size: 42px; }

  .anesthesia-panel {
    padding-top: 98px;
    padding-bottom: 55px;
  }

  .anesthesia-panel::before {
    background: linear-gradient(180deg, var(--navy) 0%, rgba(10, 25, 49, .93) 45%, rgba(10, 25, 49, .55) 72%, rgba(10, 25, 49, .72));
  }

  .anesthesia-image img { object-position: 70% center; }

  .responsibility-words {
    margin-top: 68px;
    gap: 10px;
  }

  .responsibility-words span {
    min-height: 86px;
    padding: 17px;
    font-size: 23px;
  }

  .gap-panel {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 115px;
  }

  .gap-panel h3 {
    font-size: clamp(42px, 12.6vw, 58px);
  }

  .gap-explanation {
    margin-top: 53px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .evidence {
    padding-top: 108px;
    padding-bottom: 108px;
  }

  .evidence-heading h2 {
    font-size: clamp(42px, 12.4vw, 58px);
  }

  .evidence-heading > p:last-child { font-size: 16px; }
  .evidence-measures { margin-top: 62px; }

  .primary-measure,
  .secondary-measure,
  .global-measure {
    min-height: 310px;
    padding: 31px 24px;
  }

  .primary-measure strong {
    font-size: clamp(76px, 24vw, 104px);
  }

  .primary-measure p {
    margin-top: 39px;
    font-size: 18px;
  }

  .secondary-measure strong {
    font-size: clamp(68px, 19vw, 92px);
  }

  .global-measure strong {
    font-size: clamp(64px, 18vw, 88px);
  }

  .evidence-sources a {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .source-label,
  .source-copy {
    grid-column: 1 / -1;
  }

  .solution {
    padding-top: 112px;
    padding-bottom: 116px;
  }

  .solution-copy h2 {
    font-size: clamp(44px, 13vw, 61px);
  }

  .solution-copy > p:not(.kicker) {
    margin-top: 28px;
    font-size: 16px;
  }

  .solution-outcomes { margin-top: 62px; }
  .solution-close { font-size: clamp(35px, 10.5vw, 48px); }

  .rights-copy h2,
  .team-heading h2 {
    font-size: clamp(43px, 12.6vw, 59px);
  }

  .rights-board {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .right-node {
    min-height: 125px;
    padding: 15px;
    font-size: 14px;
  }

  .right-node:last-child { grid-column: 1 / -1; }

  .team-grid { grid-template-columns: 1fr; }

  .closing-inner h2 {
    font-size: clamp(46px, 13.5vw, 63px);
  }

  .closing-shapes i:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 11%;
    left: -25px;
  }

  .closing-shapes i:nth-child(2) {
    width: 95px;
    height: 95px;
    right: -24px;
  }

  .closing-shapes i:nth-child(3) { display: none; }

  .closing footer {
    min-height: 150px;
    padding: 25px 0;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .closing footer > span,
  .closing footer > a:last-child {
    justify-self: start;
  }
}

@media (min-width: 701px) and (max-height: 700px) {
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 24px; padding-bottom: 27px; }
  .hero h1 { font-size: clamp(51px, 6.7vw, 71px); }
  .hero-deck { max-width: 640px; margin-top: 19px; font-size: 15px; line-height: 1.53; }
  .hero-actions { margin-top: 22px; }
  .hero-foot { min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-media img { transform: none; }

  .hero-kicker,
  .hero h1 span,
  .hero-deck,
  .hero-actions,
  .reveal,
  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
