:root {
  --bg: #07110f;
  --bg-soft: #101b18;
  --panel: rgba(238, 255, 248, 0.08);
  --panel-strong: rgba(238, 255, 248, 0.13);
  --text: #f2fff9;
  --muted: #a6beb6;
  --line: rgba(238, 255, 248, 0.18);
  --teal: #58dccb;
  --coral: #ff785d;
  --amber: #f8c96a;
  --blue: #8ec5ff;
  --green: #9be271;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --font-sans: "Inter", "HarmonyOS Sans SC", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-data: "DIN Alternate", "Bahnschrift", "Aptos Display", "Arial Narrow", var(--font-sans);
  font-family: var(--font-sans);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(88, 220, 203, 0.12), transparent 30rem),
    radial-gradient(circle at 16% 56%, rgba(255, 120, 93, 0.06), transparent 34rem),
    linear-gradient(180deg, #040908 0%, #081310 28%, #101312 66%, #0a0d0c 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(242, 255, 249, 0.08), transparent 36rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  opacity: 0.58;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image: url("assets/hero-cell.png");
  background-size: 980px auto;
  background-position: calc(100% + 330px) 36%;
  background-repeat: no-repeat;
  opacity: 0.075;
  filter: blur(2px) saturate(0.8);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 72%, transparent 100%);
}

body.has-modal {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 3px;
  background: rgba(242, 255, 249, 0.08);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.story-rail {
  position: fixed;
  left: auto;
  right: 22px;
  top: 50%;
  z-index: 10;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.is-past-cover .story-rail {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

body.story-page .story-rail {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.story-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: rgba(242, 255, 249, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.story-rail a::after {
  content: attr(data-label);
  position: absolute;
  right: 38px;
  top: 50%;
  min-width: 72px;
  padding: 6px 9px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 999px;
  color: rgba(242, 255, 249, 0.82);
  background: rgba(5, 12, 11, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  font-size: 12px;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.story-rail span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 50%;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
}

.story-rail a:hover,
.story-rail a.is-active {
  color: var(--text);
  transform: translateX(-2px);
}

.story-rail a:hover::after,
.story-rail a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.story-rail a.is-active span {
  border-color: var(--amber);
  color: #07110f;
  background: var(--amber);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.03);
  animation: heroDrift 16s ease-in-out infinite alternate;
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 9, 0.92) 0%, rgba(4, 10, 9, 0.74) 36%, rgba(4, 10, 9, 0.1) 76%),
    linear-gradient(0deg, #07110f 0%, rgba(7, 17, 15, 0) 34%);
  z-index: -2;
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 84px 0 92px;
}

.eyebrow,
.section__kicker {
  margin: 0 0 18px;
  color: var(--teal);
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-family: var(--font-serif);
  font-size: clamp(46px, 8.2vw, 104px);
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(88, 220, 203, 0.08), 0 18px 52px rgba(0, 0, 0, 0.38);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  text-wrap: balance;
}

.hero__lead,
.section__lead,
.ending-panel p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 32px;
}

.hero__start {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(248, 201, 106, 0.7);
  border-radius: 999px;
  color: #07110f;
  background:
    linear-gradient(135deg, #f8c96a 0%, #fff0bd 58%, #58dccb 100%);
  box-shadow:
    0 20px 52px rgba(248, 201, 106, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__start::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.hero__start:hover,
.hero__start:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 62px rgba(248, 201, 106, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero__actions span {
  color: rgba(242, 255, 249, 0.72);
  font-size: 14px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 14px;
  margin-top: 42px;
}

.hero__stats div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  background: rgba(4, 10, 9, 0.48);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.hero__stats strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 12px;
  color: rgba(242, 255, 249, 0.76);
  line-height: 1.5;
  font-size: 13px;
}

.prelude-page {
  min-height: 100svh;
  overflow-x: hidden;
}

.prelude-page::before {
  opacity: 0.76;
}

.prelude-page::after {
  background-size: 1100px auto;
  background-position: calc(100% + 220px) 52%;
  opacity: 0.11;
  filter: blur(1px) saturate(0.92);
}

.prelude {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(28px, 5vw, 64px) max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}

.prelude::before {
  content: "";
  position: absolute;
  right: max(-140px, -8vw);
  top: 50%;
  width: min(620px, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(88, 220, 203, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(88, 220, 203, 0.12), transparent 38%),
    radial-gradient(circle at 48% 50%, rgba(248, 201, 106, 0.08), transparent 64%);
  transform: translateY(-50%);
  animation: rotateSlow 32s linear infinite;
  pointer-events: none;
}

.prelude-scene {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.prelude-head {
  max-width: 470px;
}

.prelude-head h1 {
  max-width: 470px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.3vw, 72px);
  line-height: 1.08;
}

.prelude-head > p:not(.eyebrow) {
  width: max-content;
  max-width: calc(100vw - 40px);
  margin: 24px 0 0;
  color: rgba(242, 255, 249, 0.68);
  font-size: 16px;
  line-height: 1.85;
  white-space: nowrap;
}

.prelude-cases {
  position: relative;
  display: grid;
  gap: 15px;
}

.prelude-case {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 16px 18px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 220, 203, 0.08), transparent 48%),
    rgba(6, 15, 14, 0.64);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(242, 255, 249, 0.08);
  opacity: 0;
  transform: translateY(24px);
  animation: preludeReveal 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) forwards var(--delay);
}

.prelude-case:nth-child(even) {
  margin-left: clamp(0px, 3.4vw, 42px);
}

.prelude-case:nth-child(odd) {
  margin-right: clamp(0px, 2.4vw, 30px);
}

.prelude-case__age {
  color: var(--amber);
  font-family: var(--font-data);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.prelude-case__text strong {
  display: block;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.28;
}

.prelude-case__text p {
  margin: 10px 0 0;
  color: rgba(242, 255, 249, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.prelude-illo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100px;
  margin: 0;
  border: 1px solid rgba(242, 255, 249, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 40% 32%, rgba(88, 220, 203, 0.14), transparent 42%),
    rgba(242, 255, 249, 0.045);
  overflow: hidden;
}

.prelude-illo::after {
  content: "";
  position: absolute;
  inset: auto -18% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 201, 106, 0.52), transparent);
}

.prelude-illo svg {
  display: block;
  width: min(160px, 100%);
  height: auto;
}

.prelude-source {
  margin: 2px 0 0;
  padding: 0 2px;
  color: rgba(242, 255, 249, 0.48);
  font-size: 12px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(14px);
  animation: preludeReveal 0.62s ease forwards var(--delay);
}

.prelude-finish {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 58px;
  opacity: 0;
  transform: translateY(18px);
  animation: preludeReveal 0.72s ease forwards var(--delay);
}

.prelude-next {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(248, 201, 106, 0.7);
  border-radius: 999px;
  color: #07110f;
  background: linear-gradient(135deg, #f8c96a 0%, #fff0bd 58%, #58dccb 100%);
  box-shadow: 0 22px 58px rgba(248, 201, 106, 0.18);
  text-decoration: none;
  font-weight: 900;
}

.prelude-next::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 128px) max(20px, calc((100vw - 1120px) / 2));
}

.section::before {
  content: "";
  position: absolute;
  inset: -8vh 0 auto;
  height: 18vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(242, 255, 249, 0.026), transparent);
}

.bridge {
  position: relative;
  padding: 44px max(20px, calc((100vw - 1120px) / 2)) 18px;
}

.story-page .bridge {
  min-height: clamp(560px, 76svh, 760px);
  display: grid;
  align-items: center;
  padding-top: clamp(76px, 10vw, 128px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(242, 255, 249, 0.08);
  border-bottom: 1px solid rgba(242, 255, 249, 0.08);
}

.bridge blockquote {
  margin: 0;
}

.bridge blockquote > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.bridge p {
  margin: 0;
  color: rgba(242, 255, 249, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.85;
  font-weight: 700;
}

.lead-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(242, 255, 249, 0.035);
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.lead-board div {
  min-height: 132px;
  padding: 20px 16px;
  border-right: 1px solid rgba(242, 255, 249, 0.1);
}

.lead-board div:last-child {
  border-right: 0;
}

.lead-board strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 44px;
  line-height: 1;
}

.lead-board span {
  display: block;
  margin-top: 16px;
  color: rgba(242, 255, 249, 0.72);
  line-height: 1.55;
  font-size: 13px;
}

.storyline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(242, 255, 249, 0.12);
  border-bottom: 1px solid rgba(242, 255, 249, 0.12);
}

.storyline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 39px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  opacity: 0.62;
}

.storyline a {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 144px;
  padding: 0 18px;
  color: inherit;
  text-decoration: none;
}

.storyline a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: #07110f;
  box-shadow: 0 0 0 8px rgba(248, 201, 106, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.storyline a:hover::before,
.storyline a:focus-visible::before {
  border-color: var(--teal);
  transform: scale(1.18);
}

.storyline em {
  margin: 34px 0 14px;
  color: var(--teal);
  font-style: normal;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 900;
}

.storyline strong {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
}

.storyline span {
  margin-top: 12px;
  color: rgba(242, 255, 249, 0.62);
  line-height: 1.55;
  font-size: 13px;
}

.story-pivot {
  position: relative;
  width: min(900px, calc(100% - 40px));
  margin: clamp(8px, 2vw, 18px) auto;
  padding: clamp(28px, 4vw, 44px) 0;
}

.story-pivot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--amber), var(--teal), transparent);
  opacity: 0.72;
}

.story-pivot span {
  display: block;
  margin-left: 30px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.story-pivot p {
  max-width: 760px;
  margin: 10px 0 0 30px;
  color: rgba(242, 255, 249, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.75;
}

.section__aside {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  color: rgba(242, 255, 249, 0.74);
  line-height: 1.7;
  font-size: 15px;
}

.section__head,
.intro-grid,
.cause-layout,
.story-grid,
.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
}

.intro-grid > div:first-child {
  justify-self: end;
  width: min(100%, 560px);
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section__kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.risk-meter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
  width: min(100%, 420px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.06);
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.risk-meter__ring {
  display: grid;
  place-items: center;
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 20%, rgba(242, 255, 249, 0.1) 0);
  box-shadow: inset 0 0 0 10px rgba(7, 17, 15, 0.9);
}

.risk-meter__ring span {
  font-size: 34px;
  font-weight: 900;
}

.risk-meter p {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 800;
}

.risk-meter span {
  color: var(--muted);
  line-height: 1.6;
}

.quiz {
  justify-self: start;
  width: min(100%, 560px);
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(248, 201, 106, 0.055), transparent 20%),
    linear-gradient(145deg, rgba(88, 220, 203, 0.06), transparent 45%),
    rgba(7, 17, 15, 0.68);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(242, 255, 249, 0.08);
  backdrop-filter: blur(18px);
}

.quiz::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), rgba(248, 201, 106, 0.72), transparent);
  opacity: 0.72;
}

.quiz::before,
.data-block::before,
.cost-panel::before,
.policy-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 220, 203, 0.62), rgba(248, 201, 106, 0.38), transparent);
  opacity: 0.8;
}

.quiz,
.policy-board,
.cost-panel {
  position: relative;
  overflow: hidden;
}

.quiz__question {
  display: none;
  margin: 0;
  padding: 46px 30px 24px;
  border: 0;
}

.quiz__question.is-active {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 12px;
  counter-reset: answer;
}

.quiz legend {
  display: block;
  width: min(100%, 430px);
  margin-bottom: 24px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 850;
  line-height: 1.45;
  text-wrap: balance;
  transform: translateY(26px);
}

.quiz button,
.segmented button,
.policy-tabs button,
.timeline button,
.button {
  min-height: 42px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  color: var(--text);
  background: rgba(242, 255, 249, 0.07);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quiz__question button {
  position: relative;
  min-height: 58px;
  padding: 13px 52px 13px 68px;
  text-align: left;
  border-color: rgba(242, 255, 249, 0.12);
  background:
    linear-gradient(90deg, rgba(242, 255, 249, 0.052), rgba(242, 255, 249, 0.024));
  color: rgba(242, 255, 249, 0.88);
  font-size: 16px;
  font-weight: 720;
}

.quiz__question button::before {
  counter-increment: answer;
  content: counter(answer, upper-alpha);
  position: absolute;
  left: 16px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(88, 220, 203, 0.34);
  border-radius: 12px;
  color: var(--teal);
  background: rgba(5, 12, 11, 0.34);
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-50%);
}

.quiz__question button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 22px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  border-radius: 1px;
  opacity: 0;
  transform: translateY(-62%) rotate(38deg) scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quiz button:hover,
.segmented button:hover,
.policy-tabs button:hover,
.timeline button:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 220, 203, 0.55);
  background: rgba(88, 220, 203, 0.12);
}

.quiz__question button.is-selected,
.segmented button.is-active,
.policy-tabs button.is-active,
.timeline button.is-active {
  border-color: rgba(88, 220, 203, 0.82);
  color: #07110f;
  background: linear-gradient(135deg, var(--teal), #d9fff7);
}

.quiz__question button.is-selected {
  color: var(--text);
  border-color: rgba(88, 220, 203, 0.72);
  background:
    linear-gradient(90deg, rgba(88, 220, 203, 0.22), rgba(248, 201, 106, 0.09)),
    rgba(242, 255, 249, 0.055);
  box-shadow: inset 3px 0 0 var(--teal), 0 12px 34px rgba(0, 0, 0, 0.16);
}

.quiz__question button.is-selected::before {
  color: #07110f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), #d9fff7);
}

.quiz__question button.is-selected::after {
  opacity: 1;
  transform: translateY(-62%) rotate(38deg) scale(1);
}

.quiz__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 30px 22px;
  border-top: 1px solid rgba(242, 255, 249, 0.1);
  color: var(--muted);
  background: rgba(5, 12, 11, 0.18);
}

.quiz__progress {
  position: relative;
  z-index: 1;
  height: 3px;
  margin: 0 30px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(242, 255, 249, 0.1);
}

.quiz__progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  box-shadow: 0 0 18px rgba(88, 220, 203, 0.28);
  transition: width 0.32s ease;
}

.button--ghost {
  padding: 0 16px;
  color: var(--text);
  background: transparent;
}

.segmented,
.policy-tabs,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.segmented button,
.policy-tabs button,
.timeline button {
  padding: 0 16px;
}

.document-data {
  display: grid;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.document-data p {
  margin: 0;
  color: rgba(242, 255, 249, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 740;
  line-height: 1.9;
  text-wrap: pretty;
}

.document-data__lead {
  padding-top: 4px;
}

.doc-viz {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(88, 220, 203, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 27, 24, 0.88), rgba(7, 13, 12, 0.76));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
  overflow: hidden;
}

.doc-viz::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 220, 203, 0.62), rgba(248, 201, 106, 0.38), transparent);
}

.doc-viz__caption {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(248, 201, 106, 0.34);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(5, 12, 11, 0.46);
  font-size: 14px;
  font-weight: 900;
}

.line-placeholder {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  top: 86px;
  border-left: 1px solid rgba(242, 255, 249, 0.24);
  border-bottom: 1px solid rgba(242, 255, 249, 0.24);
  background:
    linear-gradient(rgba(242, 255, 249, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(242, 255, 249, 0.06) 1px, transparent 1px) 0 0 / 20% 100%;
}

.line-placeholder span,
.line-placeholder i,
.line-placeholder b {
  position: absolute;
  left: 7%;
  right: 7%;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
}

.line-placeholder span {
  top: 56%;
  background: linear-gradient(90deg, var(--teal), transparent 34%, var(--teal) 68%, var(--amber));
  transform: rotate(-10deg);
}

.line-placeholder i {
  top: 64%;
  background: linear-gradient(90deg, var(--coral), transparent 36%, var(--coral) 70%, rgba(255, 120, 93, 0.45));
  transform: rotate(8deg);
}

.line-placeholder b {
  top: 30%;
  left: 66%;
  right: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow:
    -210px 64px 0 -3px var(--teal),
    -96px 32px 0 -3px var(--coral),
    70px 18px 0 -4px var(--teal);
}

.doc-viz--national-line {
  min-height: 580px;
}

.national-line-chart {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  top: 86px;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  cursor: crosshair;
}

.national-line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.national-line-chart text {
  fill: rgba(242, 255, 249, 0.7);
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
}

.national-line-chart__grid line {
  stroke: rgba(242, 255, 249, 0.1);
  stroke-width: 1;
}

.national-line-chart__axis line {
  stroke: rgba(242, 255, 249, 0.28);
  stroke-width: 1.2;
}

.national-line-chart__axis text {
  text-anchor: middle;
}

.national-line-chart__axis text:nth-last-child(-n + 5) {
  text-anchor: end;
}

.national-line-chart__axis text:last-child {
  fill: rgba(242, 255, 249, 0.82);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  text-anchor: start;
}

.national-line-chart__legend line,
.national-line-chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.national-line-chart__legend line {
  stroke-width: 5;
}

.national-line-chart__line {
  stroke-width: 4.5;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.national-line-chart__line--male {
  stroke: var(--teal);
}

.national-line-chart__line--female {
  stroke: var(--coral);
}

.national-line-chart__points circle {
  stroke: rgba(5, 12, 11, 0.92);
  stroke-width: 2.6;
}

.national-line-chart__points--male circle {
  fill: var(--teal);
}

.national-line-chart__points--female circle {
  fill: var(--coral);
}

.national-line-chart__labels text {
  fill: rgba(242, 255, 249, 0.9);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
}

.national-line-chart__note {
  display: grid;
  gap: 4px;
  color: rgba(242, 255, 249, 0.58);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.national-line-chart__hover {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.national-line-chart.is-hovering .national-line-chart__hover {
  opacity: 1;
}

.national-line-chart__hover line {
  stroke: rgba(242, 255, 249, 0.42);
  stroke-dasharray: 5 7;
  stroke-width: 1.6;
}

.national-line-chart__hover circle {
  stroke: rgba(5, 12, 11, 0.95);
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(242, 255, 249, 0.24));
}

.national-line-chart__hover-male {
  fill: var(--teal);
}

.national-line-chart__hover-female {
  fill: var(--coral);
}

.national-line-chart__tooltip {
  position: absolute;
  z-index: 3;
  min-width: 166px;
  padding: 12px 13px;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 31, 28, 0.96), rgba(7, 13, 12, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(242, 255, 249, 0.1);
  color: rgba(242, 255, 249, 0.86);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.national-line-chart.is-hovering .national-line-chart__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.national-line-chart__tooltip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 18px;
  line-height: 1;
}

.national-line-chart__tooltip small {
  display: block;
  margin-bottom: 7px;
  color: rgba(242, 255, 249, 0.52);
  font-size: 11px;
  line-height: 1.2;
}

.national-line-chart__tooltip span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
}

.national-line-chart__tooltip span + span {
  margin-top: 3px;
}

.national-line-chart__tooltip i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
}

.national-line-chart__tooltip .is-male i {
  background: var(--teal);
}

.national-line-chart__tooltip .is-female i {
  background: var(--coral);
}

.national-line-chart__tooltip em {
  color: rgba(242, 255, 249, 0.62);
  font-style: normal;
}

.doc-viz--youth-line {
  min-height: 520px;
}

.youth-line-chart {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  top: 86px;
  z-index: 1;
  cursor: crosshair;
}

.youth-line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.youth-line-chart text {
  fill: rgba(242, 255, 249, 0.7);
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
}

.youth-line-chart__grid line {
  stroke: rgba(242, 255, 249, 0.1);
  stroke-width: 1;
}

.youth-line-chart__axis line {
  stroke: rgba(242, 255, 249, 0.28);
  stroke-width: 1.2;
}

.youth-line-chart__axis text {
  text-anchor: middle;
}

.youth-line-chart__axis text:nth-last-child(-n + 5) {
  text-anchor: end;
}

.youth-line-chart__axis text:last-child {
  fill: rgba(242, 255, 249, 0.82);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  text-anchor: start;
}

.youth-line-chart__legend line,
.youth-line-chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.youth-line-chart__legend line {
  stroke-width: 5;
}

.youth-line-chart__line {
  stroke-width: 4.5;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.youth-line-chart__line--male {
  stroke: var(--teal);
}

.youth-line-chart__line--female {
  stroke: var(--coral);
}

.youth-line-chart__points circle {
  stroke: rgba(5, 12, 11, 0.92);
  stroke-width: 2.4;
}

.youth-line-chart__points--male circle {
  fill: var(--teal);
}

.youth-line-chart__points--female circle {
  fill: var(--coral);
}

.youth-line-chart__end-labels text {
  fill: rgba(242, 255, 249, 0.92);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 900;
}

.youth-line-chart__hover {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.youth-line-chart.is-hovering .youth-line-chart__hover {
  opacity: 1;
}

.youth-line-chart__hover line {
  stroke: rgba(242, 255, 249, 0.42);
  stroke-dasharray: 5 7;
  stroke-width: 1.6;
}

.youth-line-chart__hover circle {
  stroke: rgba(5, 12, 11, 0.95);
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(242, 255, 249, 0.24));
}

.youth-line-chart__hover-male {
  fill: var(--teal);
}

.youth-line-chart__hover-female {
  fill: var(--coral);
}

.youth-line-chart__tooltip {
  position: absolute;
  z-index: 3;
  min-width: 158px;
  padding: 12px 13px;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 31, 28, 0.96), rgba(7, 13, 12, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(242, 255, 249, 0.1);
  color: rgba(242, 255, 249, 0.86);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.youth-line-chart.is-hovering .youth-line-chart__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.youth-line-chart__tooltip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 18px;
  line-height: 1;
}

.youth-line-chart__tooltip small {
  display: block;
  margin-bottom: 7px;
  color: rgba(242, 255, 249, 0.52);
  font-size: 11px;
  line-height: 1.2;
}

.youth-line-chart__tooltip span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
}

.youth-line-chart__tooltip span + span {
  margin-top: 3px;
}

.youth-line-chart__tooltip i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
}

.youth-line-chart__tooltip .is-male i {
  background: var(--teal);
}

.youth-line-chart__tooltip .is-female i {
  background: var(--coral);
}

.youth-line-chart__tooltip em {
  color: rgba(242, 255, 249, 0.62);
  font-style: normal;
}

.youth-line-chart__note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: min(560px, 78%);
  gap: 4px;
  color: rgba(242, 255, 249, 0.58);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.table-placeholder {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  top: 92px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(242, 255, 249, 0.1);
}

.table-placeholder span {
  min-height: 58px;
  background:
    linear-gradient(90deg, rgba(242, 255, 249, 0.1), rgba(242, 255, 249, 0.04)),
    rgba(5, 12, 11, 0.5);
}

.table-placeholder span:nth-child(-n + 3) {
  background: rgba(88, 220, 203, 0.18);
}

.data-sequence {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.data-block {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(88, 220, 203, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(12, 27, 24, 0.92), rgba(7, 13, 12, 0.78));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
  overflow: hidden;
}

.data-block__head {
  max-width: 820px;
  margin-bottom: 22px;
}

.data-block__head--split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  max-width: none;
}

.data-block__head > span,
.data-block__head > div > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.data-block__head h3 {
  margin: 10px 0 0;
  color: rgba(242, 255, 249, 0.96);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.data-block__head p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(242, 255, 249, 0.74);
  line-height: 1.75;
}

.burden-compare,
.youth-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.youth-metrics {
  grid-template-columns: 0.9fr 1.08fr 1.08fr;
}

.burden-compare article,
.youth-metrics article {
  position: relative;
  min-height: 146px;
  padding: 22px;
  border: 1px solid rgba(242, 255, 249, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 255, 249, 0.07), rgba(242, 255, 249, 0.026)),
    rgba(5, 12, 11, 0.34);
  overflow: hidden;
}

.burden-compare article::after,
.youth-metrics article::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(88, 220, 203, 0.14);
  border-radius: 50%;
}

.burden-compare span,
.youth-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.burden-compare strong,
.youth-metrics strong {
  display: block;
  margin: 12px 0;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 38px;
  line-height: 1;
}

.burden-compare small,
.youth-metrics small {
  display: block;
  color: rgba(242, 255, 249, 0.62);
  line-height: 1.6;
}

.burden-compare i {
  display: block;
  width: min(100%, var(--width));
  height: 12px;
  margin: 18px 0 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
  box-shadow: 0 0 22px rgba(248, 201, 106, 0.18);
}

.growth-float {
  position: relative;
  min-height: 318px;
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 34%, rgba(248, 201, 106, 0.12), transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(88, 220, 203, 0.12), transparent 26%),
    rgba(242, 255, 249, 0.04);
  overflow: hidden;
}

.growth-float::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--amber), var(--coral), transparent);
  opacity: 0.54;
}

.growth-float article {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  align-content: center;
  width: var(--size);
  aspect-ratio: 1;
  padding: 18px;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 22%, rgba(242, 255, 249, 0.14), transparent 35%),
    linear-gradient(160deg, rgba(88, 220, 203, 0.18), rgba(255, 120, 93, 0.1)),
    rgba(6, 15, 14, 0.78);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: nodeFloat 5.4s ease-in-out infinite;
}

.growth-float article:nth-child(2) {
  animation-delay: -1.1s;
}

.growth-float article:nth-child(3) {
  animation-delay: -2.2s;
}

.growth-float span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.growth-float strong {
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 34px;
  line-height: 1.1;
}

.growth-float small {
  color: rgba(242, 255, 249, 0.64);
  font-size: 13px;
}

.ending-actions input {
  accent-color: var(--teal);
}

.definition-card {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(88, 220, 203, 0.1), transparent 48%),
    rgba(242, 255, 249, 0.045);
}

.definition-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 24px;
}

.definition-card p {
  margin: 0;
  color: rgba(242, 255, 249, 0.76);
  line-height: 1.75;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-band article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.05);
  overflow: hidden;
}

.stat-band article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(88, 220, 203, 0.12);
  border-radius: 50%;
}

.stat-band span,
.stat-band small,
.cause-detail span {
  color: var(--muted);
}

.stat-band strong {
  display: block;
  margin: 10px 0;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 38px;
}

.reading-path {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.08);
}

.reading-path div {
  min-height: 126px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(88, 220, 203, 0.07), transparent 48%),
    rgba(5, 12, 11, 0.42);
}

.reading-path span,
.cancer-signals span,
.receipt-strip span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.reading-path strong {
  display: block;
  margin-top: 13px;
  color: rgba(242, 255, 249, 0.86);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
}

.cause-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  align-items: start;
}

.cause-layout > div:first-child {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
}

.cause-detail {
  height: 312px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.055);
  overflow: hidden;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.cause-detail strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--amber);
  font-size: 28px;
  line-height: 1.25;
}

.cause-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.cause-fields {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  grid-template-rows: minmax(78px, auto) 1fr;
}

.cause-fields div {
  padding: 12px 14px;
  border-left: 3px solid rgba(88, 220, 203, 0.7);
  border-radius: 0 8px 8px 0;
  background: rgba(5, 12, 11, 0.32);
}

.cause-fields dt {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cause-fields dd {
  margin: 0;
  color: rgba(242, 255, 249, 0.82);
  line-height: 1.58;
  font-size: 14px;
}

.cause-detail.is-changing strong,
.cause-detail.is-changing .cause-fields {
  animation: detailSwap 0.28s ease both;
}

.cell-stage {
  position: relative;
  min-height: 700px;
  border: 1px solid rgba(242, 255, 249, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 255, 249, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 255, 249, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(88, 220, 203, 0.18), transparent 28%),
    radial-gradient(circle at 25% 70%, rgba(255, 120, 93, 0.1), transparent 24%),
    rgba(242, 255, 249, 0.035);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.cell-stage::before,
.cell-stage::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(88, 220, 203, 0.14);
  border-radius: 50%;
  animation: rotateSlow 26s linear infinite;
}

.cell-stage::after {
  inset: 22%;
  border-color: rgba(248, 201, 106, 0.18);
  animation-duration: 18s;
  animation-direction: reverse;
}

.cell-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 232px;
  height: 232px;
  border-radius: 45% 55% 50% 48%;
  background:
    radial-gradient(circle at 58% 44%, rgba(255, 120, 93, 0.86), transparent 0 20%, rgba(255, 120, 93, 0.24) 26%, transparent 46%),
    radial-gradient(circle at 42% 52%, rgba(248, 201, 106, 0.5), transparent 0 22%, rgba(88, 220, 203, 0.26) 46%, rgba(88, 220, 203, 0.08) 72%),
    rgba(88, 220, 203, 0.12);
  box-shadow:
    0 0 54px rgba(88, 220, 203, 0.28),
    inset 0 0 42px rgba(242, 255, 249, 0.16);
  transform: translate(-50%, -50%);
  animation: cellPulse 3.6s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

.cell-core::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(248, 201, 106, 0.76), rgba(88, 220, 203, 0.62), transparent);
  opacity: 0.72;
  transform: rotate(-18deg);
  animation: cellDivide 3.6s ease-in-out infinite;
  z-index: 1;
}

.cell-core::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 48% 52% 44% 56%;
  animation: rotateSlow 14s linear infinite;
  z-index: 1;
}

.cell-nucleus {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--amber), var(--coral) 44%, #441c18);
  box-shadow:
    0 0 24px rgba(255, 120, 93, 0.5),
    -46px 22px 0 -14px rgba(255, 120, 93, 0.48),
    42px -18px 0 -16px rgba(248, 201, 106, 0.42);
  animation: nucleusSplit 3.6s ease-in-out infinite;
  z-index: 1;
}

.cell-core__text {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 10px;
  place-items: center;
  width: 174px;
  min-height: 84px;
  padding: 10px 12px;
  border: 1px solid rgba(248, 201, 106, 0.28);
  border-radius: 999px;
  background: rgba(5, 12, 11, 0.46);
  text-align: center;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.cell-core__text em {
  display: block;
  min-height: 28px;
  color: var(--amber);
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 0 16px rgba(248, 201, 106, 0.38);
}

.cell-core__text em.is-switching {
  animation: stepFlash 0.5s ease;
}

.cell-step-dots {
  display: flex;
  gap: 5px;
}

.cell-step-dots span {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(242, 255, 249, 0.28);
  transition: width 0.25s ease, background 0.25s ease;
}

.cell-step-dots span.is-active {
  width: 18px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.cause-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 42% 58% 48% 52%;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(242, 255, 249, 0.12), transparent 36%),
    rgba(6, 15, 14, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  line-height: 1.35;
  font-size: 13px;
  animation: nodeFloat var(--speed) ease-in-out infinite;
}

.cause-node::before {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(88, 220, 203, 0.16);
  border-radius: inherit;
}

.cause-node.is-active {
  border-color: var(--amber);
  background: rgba(248, 201, 106, 0.18);
}

.cell-stage__hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  margin: 0;
  color: rgba(242, 255, 249, 0.58);
  font-size: 13px;
  transform: translateX(-50%);
}

.cause-note {
  position: relative;
  max-width: 1080px;
  margin: 38px auto 0;
  padding: 30px clamp(24px, 5vw, 64px);
  border: 1px solid rgba(248, 201, 106, 0.34);
  border-radius: 8px;
  color: rgba(242, 255, 249, 0.82);
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 201, 106, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(248, 201, 106, 0.12), rgba(88, 220, 203, 0.08)),
    rgba(5, 12, 11, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(242, 255, 249, 0.12);
  text-align: center;
}

.cause-note::before,
.cause-note::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(360px, 62%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--teal), transparent);
  transform: translateX(-50%);
}

.cause-note::before {
  top: 0;
}

.cause-note::after {
  bottom: 0;
}

.cause-note p {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.8;
  text-wrap: balance;
}

.section-visual {
  position: relative;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.035);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.section-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 11, 0.86));
  pointer-events: none;
}

.section-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(242, 255, 249, 0.82);
  line-height: 1.6;
  font-size: 13px;
}

.section-visual--policy img {
  object-position: center;
}

.bill-section {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(48px, 8vw, 96px) max(20px, calc((100vw - 1240px) / 2)) clamp(26px, 4vw, 52px);
}

.bill-text {
  width: min(100%, 940px);
  margin: 0 auto;
  color: rgba(242, 255, 249, 0.84);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.95;
}

.bill-text p {
  margin: 0;
  text-indent: 2em;
}

.bill-text p + p {
  margin-top: 14px;
}

.bill-text--bottom {
  color: rgba(242, 255, 249, 0.78);
}

.bill-scene {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.bill-scene__bg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background: #07110f;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.bill-source-note {
  max-width: 660px;
  margin: 10px 2px 0 auto;
  color: rgba(242, 255, 249, 0.55);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.cancer-signals {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr 0.96fr;
  gap: 22px;
  margin-top: 30px;
  align-items: stretch;
}

.cancer-signals article {
  position: relative;
  min-height: 214px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(242, 255, 249, 0.13);
  border-radius: 26px 8px 30px 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(248, 201, 106, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(242, 255, 249, 0.065), rgba(242, 255, 249, 0.026));
  overflow: visible;
}

.cancer-signals article:nth-child(2) {
  transform: translateY(22px);
  border-radius: 8px 34px 8px 30px;
  min-height: 238px;
}

.cancer-signals article:nth-child(3) {
  border-radius: 30px 8px 8px 34px;
  transform: translateY(-8px);
}

.cancer-signals strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.35;
}

.cancer-signals p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.mini-illo {
  position: absolute;
  right: 16px;
  top: -24px;
  width: 76px;
  height: 76px;
  opacity: 0.72;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

.mini-illo::before,
.mini-illo::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mini-illo--endocrine::before {
  border: 1px solid rgba(88, 220, 203, 0.36);
  border-radius: 52% 48% 36% 64%;
  background:
    radial-gradient(circle at 35% 34%, rgba(248, 201, 106, 0.52) 0 8px, transparent 9px),
    radial-gradient(circle at 66% 58%, rgba(88, 220, 203, 0.34) 0 12px, transparent 13px);
}

.mini-illo--endocrine::after {
  inset: 16px 4px 4px 18px;
  border: 1px solid rgba(248, 201, 106, 0.28);
  border-radius: 40% 60% 58% 42%;
  transform: rotate(18deg);
}

.mini-illo--infection::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 120, 93, 0.48) 0 10px, transparent 11px),
    repeating-conic-gradient(from 12deg, rgba(88, 220, 203, 0.42) 0 10deg, transparent 10deg 28deg);
  mask-image: radial-gradient(circle, #000 0 58%, transparent 59%);
}

.mini-illo--infection::after {
  inset: 19px;
  border: 1px solid rgba(242, 255, 249, 0.24);
  border-radius: 50%;
}

.mini-illo--lifestyle::before {
  inset: 10px 2px 18px;
  border: 1px solid rgba(88, 220, 203, 0.34);
  border-radius: 999px 999px 18px 18px;
  transform: rotate(-12deg);
}

.mini-illo--lifestyle::after {
  inset: 36px 8px 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 201, 106, 0.44), rgba(255, 120, 93, 0.18));
  transform: rotate(12deg);
}

.table-wrap {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(242, 255, 249, 0.06), rgba(242, 255, 249, 0.03));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(242, 255, 249, 0.1);
  text-align: left;
  white-space: nowrap;
}

th {
  color: rgba(242, 255, 249, 0.7);
  font-size: 13px;
  font-weight: 800;
  background: rgba(5, 12, 11, 0.46);
  position: sticky;
  top: 0;
  z-index: 1;
}

td {
  color: rgba(242, 255, 249, 0.88);
}

tbody tr:hover {
  background: rgba(88, 220, 203, 0.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #07110f;
  background: var(--amber);
  font-weight: 800;
}

.story-grid {
  align-items: start;
}

.story-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.timeline {
  justify-content: flex-start;
  margin-top: 30px;
}

.case-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.case-ledger article {
  padding: 16px;
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.045);
}

.case-ledger span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.case-ledger strong {
  display: block;
  margin: 8px 0;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
}

.case-ledger p {
  margin: 0;
  color: rgba(242, 255, 249, 0.68);
  line-height: 1.65;
  font-size: 13px;
}

.case-ledger > p {
  grid-column: 1 / -1;
  padding-left: 14px;
  border-left: 3px solid var(--coral);
  color: rgba(242, 255, 249, 0.74);
}

.cost-panel {
  position: relative;
  top: auto;
  align-self: start;
  display: flex;
  flex-direction: column;
  height: 540px;
  min-height: 500px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 120, 93, 0.12), transparent 50%),
    rgba(242, 255, 249, 0.055);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.story-sidebar .cost-panel {
  height: auto;
  min-height: 430px;
  padding: clamp(22px, 3vw, 30px);
}

.story-sidebar .cost-panel__head {
  min-height: 68px;
  margin-bottom: 14px;
}

.story-sidebar .receipt-strip {
  margin-bottom: 12px;
}

.story-sidebar .cost-bars {
  margin: 14px 0 18px;
}

.cost-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  min-height: 92px;
  margin-bottom: 24px;
}

.cost-panel__head span {
  color: var(--muted);
}

.cost-panel__head strong {
  color: var(--coral);
  font-family: var(--font-data);
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1;
}

.receipt-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 24px;
}

.receipt-strip span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px dashed rgba(242, 255, 249, 0.18);
  border-radius: 6px;
  color: rgba(242, 255, 249, 0.66);
  background: rgba(5, 12, 11, 0.3);
  letter-spacing: 0.06em;
}

#monthSlider {
  width: 100%;
  accent-color: var(--coral);
}

.cost-bars {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.cost-row {
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.cost-row span:nth-child(2) {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(242, 255, 249, 0.11);
}

.cost-row span:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--width);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--amber));
}

#storyText {
  min-height: 96px;
  margin: auto 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.toxicity-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  margin-top: 2px;
  padding: 20px 24px;
  border: 1px solid rgba(242, 255, 249, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(88, 220, 203, 0.07), rgba(255, 120, 93, 0.045)),
    rgba(5, 12, 11, 0.42);
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.toxicity-stepper::before {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  opacity: 0.58;
  transform: translateY(-50%);
}

.toxicity-stepper__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(88, 220, 203, 0.36);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(5, 12, 11, 0.92);
  box-shadow: 0 0 0 8px rgba(5, 12, 11, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.toxicity-stepper__dot:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 220, 203, 0.68);
  background: rgba(88, 220, 203, 0.14);
}

.toxicity-stepper__dot.is-active {
  border-color: transparent;
  color: #07110f;
  background: linear-gradient(135deg, var(--amber), var(--coral));
}

.toxicity-stepper__dot span {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 900;
}

.toxicity-explainer {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.8fr) minmax(260px, 0.75fr);
  gap: 22px;
  align-items: start;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 120, 93, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 120, 93, 0.12), transparent 46%),
    rgba(242, 255, 249, 0.045);
}

.toxicity-explainer span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.toxicity-explainer h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.toxicity-explainer p {
  margin: 0;
  color: rgba(242, 255, 249, 0.78);
  line-height: 1.8;
}

.toxicity-explainer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toxicity-explainer li {
  padding-left: 14px;
  border-left: 2px solid rgba(248, 201, 106, 0.58);
  color: rgba(242, 255, 249, 0.72);
  line-height: 1.65;
  font-size: 14px;
}

.toxicity-explainer li strong {
  color: rgba(248, 201, 106, 0.94);
  font-weight: 900;
}

.toxicity-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.toxicity-flow__step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 20px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(88, 220, 203, 0.08), rgba(255, 120, 93, 0.04)),
    rgba(5, 12, 11, 0.52);
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.toxicity-flow__step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -17px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(248, 201, 106, 0.58);
  border-right: 2px solid rgba(248, 201, 106, 0.58);
  transform: rotate(45deg);
}

.toxicity-flow__step:last-child::after {
  display: none;
}

.toxicity-flow__step--outcome {
  border-color: rgba(255, 120, 93, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 120, 93, 0.16), rgba(248, 201, 106, 0.08)),
    rgba(5, 12, 11, 0.62);
}

.toxicity-flow__step span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.toxicity-flow__step strong {
  display: block;
  margin-top: 12px;
  color: var(--amber);
  font-family: var(--font-data);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
}

.toxicity-flow__step--outcome strong {
  color: var(--coral);
}

.toxicity-flow__step p {
  margin: 16px 0 18px;
  color: rgba(242, 255, 249, 0.7);
  line-height: 1.72;
  font-size: 14px;
}

.toxicity-compare {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.toxicity-compare i {
  display: grid;
  grid-template-columns: 76px 1fr 62px;
  gap: 8px;
  align-items: center;
  color: rgba(242, 255, 249, 0.68);
  font-style: normal;
  font-size: 12px;
}

.toxicity-compare i::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: var(--value);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
}

.toxicity-compare em {
  grid-column: 1;
  grid-row: 1;
  font-style: normal;
  white-space: nowrap;
}

.toxicity-compare b {
  grid-column: 3;
  grid-row: 1;
  color: rgba(242, 255, 249, 0.86);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.psych-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.psych-callout {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(248, 201, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 201, 106, 0.12), transparent 48%),
    rgba(242, 255, 249, 0.045);
}

.psych-callout strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.35;
}

.psych-callout p {
  margin: 12px 0 0;
  color: rgba(242, 255, 249, 0.74);
  line-height: 1.75;
}

.psych-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(142, 197, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(242, 255, 249, 0.065), rgba(242, 255, 249, 0.032));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.psych-stage,
.psych-checks {
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background: rgba(5, 12, 11, 0.34);
}

.psych-stage {
  min-height: 260px;
  padding: 20px 18px;
}

.psych-stage span,
.psych-checks span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.psych-stage strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.35;
}

.psych-stage p,
.psych-checks p {
  margin: 14px 0 0;
  color: rgba(242, 255, 249, 0.72);
  line-height: 1.68;
  font-size: 14px;
}

.psych-checks {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border-color: rgba(88, 220, 203, 0.22);
  background:
    linear-gradient(90deg, rgba(88, 220, 203, 0.11), transparent 54%),
    rgba(5, 12, 11, 0.3);
}

.policy-layout {
  align-items: start;
}

.policy-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 255, 249, 0.07), rgba(242, 255, 249, 0.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
  overflow: hidden;
}

.policy-tabs {
  justify-content: flex-start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-card {
  min-height: 260px;
  padding: 28px;
}

.policy-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 28px;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.8;
}

.policy-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.policy-card li {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  color: rgba(242, 255, 249, 0.86);
  line-height: 1.6;
}

.section--support {
  overflow: hidden;
  isolation: isolate;
}

.support-bg {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 34px;
  width: min(1260px, 126vw);
  aspect-ratio: 1100 / 820;
  pointer-events: none;
  opacity: 0.52;
  transform: translateX(-50%);
}

.support-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.support-bg__orbit {
  fill: none;
  stroke: rgba(142, 197, 255, 0.16);
  stroke-width: 2;
  stroke-dasharray: 10 16;
}

.support-bg__person {
  fill: rgba(88, 220, 203, 0.08);
  stroke: url("#supportLine");
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 28px rgba(88, 220, 203, 0.18));
}

.support-bg__pulse {
  fill: none;
  stroke: rgba(248, 201, 106, 0.42);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(248, 201, 106, 0.18));
}

.support-bg__cards {
  fill: rgba(242, 255, 249, 0.035);
  stroke: rgba(242, 255, 249, 0.12);
  stroke-width: 2;
}

.section--support > .section__kicker,
.support-hero,
.intervention-lab,
.support-result,
.policy-story {
  position: relative;
  z-index: 1;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.support-hero--image {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(560px, 68vw, 720px);
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 12, 11, 0.48);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.support-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 12, 11, 0.38), transparent 40%, transparent 100%),
    linear-gradient(180deg, rgba(5, 12, 11, 0.34), transparent 38%, rgba(5, 12, 11, 0.34));
}

.support-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.support-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
}

.support-hero--image .support-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: min(100%, 560px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
}

.support-hero--image .support-copy--spread {
  position: absolute;
  inset: 0;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  box-shadow: none;
  text-shadow: none;
}

.support-copy__block {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(242, 255, 249, 0.9);
  line-height: 1.8;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.86);
}

.support-copy__block--title {
  left: clamp(24px, 4vw, 56px);
  top: clamp(22px, 4vw, 52px);
  width: 660px;
  max-width: calc(64% - 72px);
}

.support-copy__block--side {
  right: clamp(24px, 4vw, 56px);
  top: auto;
  bottom: clamp(120px, 14vw, 170px);
  width: 430px;
  max-width: calc(44% - 42px);
  font-size: 14px;
}

.support-copy__block--bottom {
  left: auto;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(34px, 5vw, 62px);
  width: 430px;
  max-width: calc(44% - 42px);
  font-size: 15px;
}

.support-hero--image .support-copy h2 {
  font-size: clamp(34px, 4.4vw, 60px);
}

.support-hero--image .section__lead {
  max-width: none;
  margin: 20px 0 0;
  color: rgba(242, 255, 249, 0.86);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.86;
}

.support-copy > p:not(.section__lead):not(.support-copy__block) {
  margin: 18px 0 0;
  color: rgba(242, 255, 249, 0.76);
  line-height: 1.9;
}

.support-figure {
  margin: 0;
}

.support-figure__body {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(88, 220, 203, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(142, 197, 255, 0.08), rgba(248, 201, 106, 0.035)),
    rgba(5, 12, 11, 0.52);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
  overflow: hidden;
}

.support-figure__body::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 250px;
  border: 2px solid rgba(88, 220, 203, 0.32);
  border-radius: 45% 45% 38% 38%;
  background:
    radial-gradient(circle at 52% 34%, rgba(248, 201, 106, 0.24), transparent 20%),
    radial-gradient(circle at 50% 62%, rgba(88, 220, 203, 0.24), transparent 34%);
  box-shadow: 0 0 50px rgba(88, 220, 203, 0.12);
}

.support-figure__body::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--teal), transparent);
  transform: rotate(-18deg);
  opacity: 0.7;
}

.support-figure__body strong,
.support-figure__body span {
  position: absolute;
  z-index: 2;
}

.support-figure__body strong {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(88, 220, 203, 0.44);
  border-radius: 50%;
  color: var(--text);
  background: rgba(7, 17, 15, 0.78);
  font-family: var(--font-serif);
  font-size: 22px;
  box-shadow: 0 0 34px rgba(88, 220, 203, 0.16);
}

.support-figure__body span {
  max-width: 108px;
  padding: 8px 10px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 999px;
  color: rgba(242, 255, 249, 0.72);
  background: rgba(5, 12, 11, 0.72);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.support-figure__body span:nth-child(1) { left: 8%; top: 18%; }
.support-figure__body span:nth-child(2) { right: 8%; top: 22%; }
.support-figure__body span:nth-child(3) { left: 10%; bottom: 20%; }
.support-figure__body span:nth-child(4) { right: 10%; bottom: 18%; }

.support-figure figcaption {
  margin-top: 12px;
  color: rgba(242, 255, 249, 0.58);
  line-height: 1.6;
  font-size: 13px;
}

.intervention-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: stretch;
  margin-top: clamp(34px, 6vw, 64px);
  padding: 24px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 220, 203, 0.08), transparent 46%),
    rgba(5, 12, 11, 0.44);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.intervention-lab__head span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.intervention-lab__head h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.24;
}

.intervention-lab__head p {
  margin: 16px 0 0;
  color: rgba(242, 255, 249, 0.72);
  line-height: 1.75;
}

.intervention-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
}

.intervention-tabs button {
  min-height: 44px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 8px;
  color: rgba(242, 255, 249, 0.74);
  background: rgba(242, 255, 249, 0.045);
  font-weight: 900;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.intervention-tabs button:hover,
.intervention-tabs button:focus-visible,
.intervention-tabs button.is-active {
  border-color: rgba(248, 201, 106, 0.54);
  color: #07110f;
  background: linear-gradient(135deg, var(--amber), var(--teal));
}

.intervention-card {
  grid-column: 1 / -1;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(248, 201, 106, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(248, 201, 106, 0.12), transparent 28%),
    rgba(242, 255, 249, 0.045);
}

.intervention-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.intervention-card strong {
  display: block;
  margin-top: 12px;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 32px);
}

.intervention-card p {
  margin: 14px 0 0;
  color: rgba(242, 255, 249, 0.78);
  line-height: 1.78;
}

.support-result {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--amber);
  background:
    linear-gradient(90deg, rgba(248, 201, 106, 0.11), transparent 62%),
    rgba(242, 255, 249, 0.035);
}

.support-result p,
.support-result strong {
  margin: 0;
  max-width: 940px;
  line-height: 1.8;
}

.support-result p {
  color: rgba(242, 255, 249, 0.72);
}

.support-result strong {
  color: rgba(242, 255, 249, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 26px);
}

.section--policy-response {
  overflow: hidden;
  isolation: isolate;
}

.section--policy-response::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  top: 86px;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(248, 201, 106, 0.18), transparent 42%),
    radial-gradient(circle at 58% 46%, rgba(88, 220, 203, 0.15), transparent 58%);
  opacity: 0.62;
  pointer-events: none;
  filter: blur(1px);
}

.policy-response__head,
.policy-story {
  position: relative;
  z-index: 1;
}

.policy-response__head {
  max-width: 820px;
}

.policy-response__head .section__lead {
  max-width: 760px;
}

.policy-story {
  margin-top: clamp(34px, 6vw, 64px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 220, 203, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(242, 255, 249, 0.055), rgba(242, 255, 249, 0.026)),
    rgba(5, 12, 11, 0.56);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.policy-story p {
  margin: 0;
  color: rgba(242, 255, 249, 0.78);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 2;
  text-indent: 2em;
}

.policy-story p + p {
  margin-top: 16px;
}

.policy-link {
  position: relative;
  display: inline;
  padding: 0 2px 2px;
  border: 0;
  border-bottom: 2px solid rgba(248, 201, 106, 0.82);
  border-radius: 0;
  color: var(--amber);
  background: transparent;
  font: inherit;
  font-weight: 900;
  line-height: inherit;
  text-decoration: none;
}

.policy-link:hover,
.policy-link:focus-visible {
  color: #fff0bd;
  border-bottom-color: var(--teal);
  outline: 0;
}

.policy-popover[hidden] {
  display: none;
}

.policy-popover {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.policy-popover__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.policy-popover__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  padding: 28px;
  border: 1px solid rgba(242, 255, 249, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(248, 201, 106, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(16, 27, 24, 0.98), rgba(5, 12, 11, 0.98));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(242, 255, 249, 0.1);
}

.policy-popover__close {
  position: absolute;
  right: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 50%;
  color: rgba(242, 255, 249, 0.76);
  background: rgba(242, 255, 249, 0.06);
  font-size: 24px;
  line-height: 1;
}

.policy-popover__panel > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.policy-popover__panel h3 {
  margin: 12px 42px 0 0;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
}

.policy-popover__body {
  display: grid;
  gap: 14px;
  max-height: min(470px, calc(100svh - 210px));
  margin-top: 18px;
  padding-right: 10px;
  overflow: auto;
}

.policy-popover__body p {
  margin: 0;
  color: rgba(242, 255, 249, 0.78);
  line-height: 1.8;
}

.section--ending {
  overflow: hidden;
  isolation: isolate;
}

.ending-panel {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ending-panel > .section__kicker,
.ending-panel > h2,
.ending-intro,
.prevention-puzzle,
.ending-complete {
  position: relative;
  z-index: 2;
}

.ending-panel .section__kicker {
  margin-bottom: 16px;
}

.ending-panel > h2,
.ending-intro {
  max-width: 760px;
  margin-inline: auto;
}

.ending-intro {
  margin-top: 20px;
  color: rgba(242, 255, 249, 0.74);
  line-height: 1.8;
}

.ending-illustration {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 40px;
  width: min(1180px, 116vw);
  aspect-ratio: 900 / 560;
  pointer-events: none;
  opacity: 0.46;
  filter: saturate(0.74) blur(0.2px);
  transform: translateX(-50%);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.ending-illustration svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ending-illustration__glow {
  opacity: 0.46;
  transition: opacity 0.7s ease;
}

.ending-illustration__grid {
  fill: none;
  stroke: rgba(242, 255, 249, 0.16);
  stroke-width: 1.2;
  stroke-dasharray: 8 12;
}

.ending-illustration__nodes {
  fill: rgba(88, 220, 203, 0.42);
  filter: drop-shadow(0 0 10px rgba(88, 220, 203, 0.18));
}

.ending-illustration__shield {
  stroke: url("#endingShield");
  stroke-width: 15;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.42;
  filter: drop-shadow(0 0 18px rgba(88, 220, 203, 0.18));
  transition: opacity 0.7s ease, stroke-width 0.7s ease;
}

.ending-illustration__leaf {
  fill: rgba(155, 226, 113, 0.22);
  stroke: rgba(155, 226, 113, 0.46);
  stroke-width: 4;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(155, 226, 113, 0.12));
  transition: fill 0.7s ease, stroke 0.7s ease, opacity 0.7s ease;
}

.ending-illustration__leaf--left {
  fill: rgba(88, 220, 203, 0.18);
  stroke: rgba(88, 220, 203, 0.4);
}

.ending-illustration__pulse {
  stroke: rgba(248, 201, 106, 0.42);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 28 18;
  filter: drop-shadow(0 0 16px rgba(248, 201, 106, 0.16));
  transition: stroke 0.7s ease, stroke-width 0.7s ease, stroke-dasharray 0.7s ease;
}

.section--ending.is-complete .ending-illustration {
  opacity: 0.86;
  filter: saturate(1.14) blur(0);
  transform: translateX(-50%) translateY(-8px) scale(1.02);
}

.section--ending.is-complete .ending-illustration__glow {
  opacity: 0.78;
}

.section--ending.is-complete .ending-illustration__shield {
  stroke-width: 18;
  opacity: 0.86;
}

.section--ending.is-complete .ending-illustration__leaf {
  fill: rgba(155, 226, 113, 0.42);
  stroke: rgba(193, 245, 150, 0.74);
}

.section--ending.is-complete .ending-illustration__leaf--left {
  fill: rgba(88, 220, 203, 0.32);
  stroke: rgba(118, 241, 224, 0.66);
}

.section--ending.is-complete .ending-illustration__pulse {
  stroke: rgba(248, 201, 106, 0.82);
  stroke-width: 12;
  stroke-dasharray: 110 12;
}

.prevention-puzzle {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 36px;
  text-align: left;
}

.puzzle-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 16%, rgba(88, 220, 203, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(242, 255, 249, 0.06), rgba(242, 255, 249, 0.026));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
  overflow: visible;
}

.puzzle-piece {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: -1px 0 0 -1px;
  padding: 18px 14px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 255, 249, 0.08), rgba(242, 255, 249, 0.028)),
    rgba(5, 12, 11, 0.72);
  color: rgba(242, 255, 249, 0.74);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.puzzle-piece::before,
.puzzle-piece::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(242, 255, 249, 0.16);
  border-radius: 50%;
  background: #0b1714;
  box-shadow: inset 0 1px 0 rgba(242, 255, 249, 0.08);
  pointer-events: none;
}

.puzzle-piece::before {
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
}

.puzzle-piece::after {
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
}

.puzzle-piece:nth-child(5n)::before,
.puzzle-piece:nth-child(n + 6)::after {
  display: none;
}

.puzzle-piece span {
  position: relative;
  z-index: 3;
}

.puzzle-piece:hover,
.puzzle-piece:focus-visible,
.puzzle-piece.is-active {
  z-index: 5;
  border-color: rgba(248, 201, 106, 0.56);
  color: var(--text);
  transform: translateY(-2px);
}

.puzzle-piece:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.puzzle-piece.is-placed {
  z-index: 4;
  border-color: rgba(88, 220, 203, 0.42);
  background:
    radial-gradient(circle at 20% 18%, rgba(248, 201, 106, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(88, 220, 203, 0.28), rgba(255, 120, 93, 0.16)),
    rgba(9, 25, 22, 0.92);
  color: var(--text);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(242, 255, 249, 0.18);
}

.puzzle-piece.is-placed::before,
.puzzle-piece.is-placed::after {
  border-color: rgba(88, 220, 203, 0.42);
  background: #17352f;
}

.prevention-puzzle.is-complete .puzzle-board {
  border-color: rgba(248, 201, 106, 0.32);
  box-shadow:
    0 30px 90px rgba(248, 201, 106, 0.08),
    var(--shadow),
    inset 0 1px 0 rgba(242, 255, 249, 0.1);
}

.puzzle-meaning {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(242, 255, 249, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 255, 249, 0.075), rgba(242, 255, 249, 0.035)),
    rgba(5, 12, 11, 0.52);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.08);
}

.puzzle-meaning__count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(88, 220, 203, 0.34);
  border-radius: 999px;
  background: rgba(88, 220, 203, 0.1);
  color: var(--teal);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 900;
}

.puzzle-meaning strong {
  display: block;
  margin-top: 18px;
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.28;
}

.puzzle-meaning p {
  margin: 18px 0 0;
  color: rgba(242, 255, 249, 0.74);
  line-height: 1.78;
  font-size: 15px;
}

.ending-complete[hidden] {
  display: none;
}

.ending-complete {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(248, 201, 106, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 20%, rgba(248, 201, 106, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(88, 220, 203, 0.1), rgba(255, 120, 93, 0.08)),
    rgba(5, 12, 11, 0.62);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 255, 249, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ending-complete.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ending-complete h2 {
  max-width: 760px;
}

.ending-complete p {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(242, 255, 249, 0.78);
  line-height: 1.82;
}

.ending-blessing {
  padding-top: 18px;
  border-top: 1px solid rgba(242, 255, 249, 0.14);
  color: rgba(248, 201, 106, 0.9) !important;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
}

.source-note {
  max-width: 760px;
  margin-top: 28px !important;
  color: rgba(242, 255, 249, 0.54) !important;
  font-size: 13px !important;
}

.source-panel {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(242, 255, 249, 0.12);
  border-radius: 8px;
  background: rgba(242, 255, 249, 0.045);
  text-align: left;
}

.source-panel strong {
  display: block;
  color: var(--amber);
  font-size: 13px;
}

.source-panel p {
  margin: 8px 0 0;
  max-width: none;
  color: rgba(242, 255, 249, 0.64);
  font-size: 13px;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.4%, -1%, 0); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

@keyframes cellPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); border-radius: 45% 55% 50% 48%; }
  50% { transform: translate(-50%, -50%) scale(1.045); border-radius: 55% 45% 52% 48%; }
}

@keyframes cellDivide {
  0%, 100% { opacity: 0.34; transform: rotate(-18deg) scaleX(0.62); }
  50% { opacity: 0.9; transform: rotate(-18deg) scaleX(1); }
}

@keyframes nucleusSplit {
  0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1); }
  50% { transform: translate(-50%, -50%) translate3d(8px, -5px, 0) scale(0.92); }
}

@keyframes stepFlash {
  0% { opacity: 0.48; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes detailSwap {
  0% { opacity: 0.42; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes preludeReveal {
  0% { opacity: 0; transform: translateY(24px) scale(0.985); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes nodeFloat {
  0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0); }
  50% { transform: translate(-50%, -50%) translate3d(var(--float-x), var(--float-y), 0); }
}

@media (max-width: 900px) {
  .hero__content {
    padding-top: 78px;
  }

  .hero__stats,
  .stat-band,
  .section__head,
  .intro-grid,
  .prelude-scene,
  .bridge__inner,
  .lead-board,
  .reading-path,
  .burden-compare,
  .youth-metrics,
  .cancer-signals,
  .cause-layout,
  .story-grid,
  .case-ledger,
  .toxicity-explainer,
  .psych-layout,
  .psych-panel,
  .policy-layout,
  .support-hero,
  .intervention-lab {
    grid-template-columns: 1fr;
  }

  .data-block__head--split {
    display: grid;
    justify-content: stretch;
  }

  .bill-section {
    padding-inline: 16px;
  }

  .bill-text {
    font-size: clamp(16px, 2.7vw, 20px);
    line-height: 1.86;
  }

  .bill-source-note {
    max-width: 100%;
  }

  .cost-panel {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
  }

  .story-sidebar .cost-panel {
    min-height: auto;
  }

  .cost-panel__head,
  #storyText {
    min-height: 0;
  }

  .toxicity-stepper {
    padding: 16px 18px;
  }

  .toxicity-stepper::before {
    left: 38px;
    right: 38px;
  }

  .toxicity-stepper__dot {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 6px rgba(5, 12, 11, 0.78);
  }

  #storyText {
    margin-top: 0;
  }

  .support-bg {
    top: 120px;
    width: 150vw;
    opacity: 0.36;
  }

  .support-hero--image {
    min-height: auto;
    padding: 0;
    overflow: hidden;
  }

  .support-hero--image::after {
    bottom: auto;
    height: 440px;
    background:
      linear-gradient(180deg, rgba(5, 12, 11, 0.04) 0%, rgba(5, 12, 11, 0.06) 58%, rgba(5, 12, 11, 0.78) 100%),
      linear-gradient(90deg, rgba(5, 12, 11, 0.08), transparent 58%);
  }

  .support-image {
    position: relative;
    inset: auto;
    bottom: auto;
    display: block;
    height: 440px;
  }

  .support-image img {
    object-position: 18% bottom;
  }

  .support-hero--image .support-copy {
    justify-self: stretch;
    width: 100%;
  }

  .support-hero--image .support-copy--spread {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .support-copy__block,
  .support-copy__block--title,
  .support-copy__block--side,
  .support-copy__block--bottom {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
  }

  .support-figure__body {
    min-height: 360px;
  }

  .intervention-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prevention-puzzle {
    grid-template-columns: 1fr;
  }

  .puzzle-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .puzzle-piece:nth-child(5n)::before,
  .puzzle-piece:nth-child(n + 6)::after {
    display: block;
  }

  .puzzle-piece:nth-child(even)::before,
  .puzzle-piece:nth-child(n + 9)::after {
    display: none;
  }

  .puzzle-meaning {
    min-height: auto;
  }

  .storyline {
    grid-template-columns: 1fr;
    padding: 8px 0 10px 20px;
  }

  .storyline::before {
    left: 7px;
    right: auto;
    top: 28px;
    bottom: 32px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--teal), var(--amber), var(--coral));
  }

  .storyline a {
    min-height: auto;
    padding: 16px 0 16px 24px;
  }

  .storyline a::before {
    left: 0;
    top: 22px;
  }

  .storyline em {
    margin: 0 0 8px;
  }

  .lead-board div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 255, 249, 0.1);
  }

  .lead-board div:last-child {
    border-bottom: 0;
  }

  .case-ledger > p {
    grid-column: auto;
  }

  .toxicity-flow {
    grid-template-columns: 1fr;
  }

  .toxicity-flow__step {
    min-height: auto;
  }

  .toxicity-flow__step::after {
    top: auto;
    right: auto;
    left: 28px;
    bottom: -18px;
    transform: rotate(135deg);
  }

  .intro-grid > div:first-child,
  .quiz {
    justify-self: stretch;
    width: 100%;
  }

  .prelude {
    align-items: start;
    min-height: auto;
  }

  .prelude-head {
    max-width: 720px;
  }

  .prelude-head h1,
  .prelude-head > p:not(.eyebrow) {
    max-width: 720px;
  }

  .prelude-case:nth-child(even),
  .prelude-case:nth-child(odd) {
    margin-left: 0;
    margin-right: 0;
  }

  .cancer-signals article:nth-child(2) {
    transform: none;
  }

  .cancer-signals article:nth-child(3) {
    transform: none;
  }

  .segmented {
    justify-content: flex-start;
  }

  .cell-stage {
    min-height: 660px;
  }

  .cause-layout > div:first-child {
    min-height: auto;
  }

  .cause-detail {
    height: auto;
    min-height: 300px;
    overflow: visible;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero__content {
    width: min(100% - 28px, 1120px);
    padding: 72px 0 56px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero__start {
    width: 100%;
    min-height: 52px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 9, 0.56) 0%, rgba(4, 10, 9, 0.86) 64%, #07110f 100%),
      linear-gradient(90deg, rgba(4, 10, 9, 0.86), rgba(4, 10, 9, 0.18));
  }

  .hero__image {
    object-position: 64% center;
  }

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

  .hero__stats div {
    min-height: 96px;
  }

  .prevention-puzzle {
    grid-template-columns: 1fr;
  }

  .puzzle-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .puzzle-piece:nth-child(5n)::before,
  .puzzle-piece:nth-child(n + 6)::after {
    display: block;
  }

  .puzzle-piece:nth-child(even)::before,
  .puzzle-piece:nth-child(n + 9)::after {
    display: none;
  }

  .puzzle-meaning {
    min-height: auto;
  }

  .prelude {
    padding: 58px 16px 36px;
  }

  .prelude-scene {
    gap: 28px;
  }

  .prelude-head h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .prelude-head > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
    width: auto;
    white-space: normal;
  }

  .prelude-cases {
    gap: 12px;
  }

  .prelude-case {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: auto;
    padding: 15px;
  }

  .prelude-case__age {
    font-size: 28px;
  }

  .prelude-case__text strong {
    font-size: 20px;
  }

  .prelude-case__text p {
    font-size: 14px;
  }

  .prelude-illo {
    grid-column: 1 / -1;
    min-height: 92px;
  }

  .prelude-illo svg {
    width: min(150px, 66vw);
  }

  .prelude-finish {
    justify-content: stretch;
  }

  .prelude-next {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .document-data {
    gap: 22px;
  }

  .doc-viz {
    min-height: 240px;
    padding: 18px;
  }

  .doc-viz--youth-line {
    min-height: 430px;
  }

  .doc-viz--national-line {
    min-height: 560px;
  }

  .bill-section {
    padding-inline: 14px;
  }

  .bill-text {
    font-size: 16px;
    line-height: 1.82;
  }

  .bill-text p + p {
    margin-top: 12px;
  }

  .bill-source-note {
    font-size: 11px;
    line-height: 1.55;
  }

  .support-figure__body {
    min-height: 320px;
  }

  .support-hero--image {
    padding: 0;
  }

  .support-image {
    height: 340px;
  }

  .support-hero--image::after {
    height: 340px;
  }

  .support-image img {
    object-position: 18% bottom;
  }

  .support-hero--image .support-copy--spread {
    padding: 14px;
  }

  .support-hero--image .support-copy h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .support-hero--image .section__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.82;
  }

  .support-figure__body span {
    max-width: 92px;
    font-size: 11px;
  }

  .intervention-lab,
  .policy-story,
  .policy-popover__panel {
    padding: 20px;
  }

  .policy-story p {
    font-size: 16px;
    line-height: 1.9;
  }

  .policy-popover {
    padding: 14px;
  }

  .doc-viz__caption {
    min-height: 36px;
    font-size: 13px;
  }

  .line-placeholder,
  .table-placeholder {
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: 76px;
  }

  .national-line-chart {
    left: 14px;
    right: 14px;
    bottom: 18px;
    top: 72px;
  }

  .national-line-chart text {
    font-size: 11px;
  }

  .national-line-chart__note {
    font-size: 10px;
    line-height: 1.45;
  }

  .youth-line-chart {
    left: 14px;
    right: 14px;
    bottom: 18px;
    top: 72px;
  }

  .youth-line-chart text {
    font-size: 12px;
  }

  .youth-line-chart__note {
    max-width: 84%;
    font-size: 10px;
  }

  .table-placeholder span {
    min-height: 44px;
  }

  .data-block {
    padding: 20px;
  }

  .data-block__head h3 {
    font-size: 26px;
  }

  .burden-compare article,
  .youth-metrics article {
    min-height: 128px;
    padding: 18px;
  }

  .burden-compare strong,
  .youth-metrics strong {
    font-size: 32px;
  }

  .growth-float {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .growth-float::before {
    display: none;
  }

  .growth-float article {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 112px;
    aspect-ratio: auto;
    border-radius: 8px;
    transform: none;
    animation: none;
  }

  .psych-panel {
    padding: 14px;
  }

  .psych-stage {
    min-height: auto;
  }

  .story-rail {
    display: none;
  }

  .bridge {
    padding-inline: 16px;
  }

  .bridge p {
    font-size: 18px;
  }

  .lead-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-board div:nth-child(odd) {
    border-right: 1px solid rgba(242, 255, 249, 0.1);
  }

  .lead-board div:nth-child(3) {
    border-bottom: 0;
  }

  .lead-board strong {
    font-size: 36px;
  }

  .risk-meter,
  .cost-panel__head {
    align-items: stretch;
    flex-direction: column;
  }

  .risk-meter {
    display: grid;
    grid-template-columns: 92px 1fr;
  }

  .quiz__question {
    padding: 34px 18px 22px;
  }

  .quiz legend {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .quiz__question button {
    min-height: 54px;
    padding-left: 48px;
  }

  .quiz__footer {
    padding-inline: 18px;
  }

  .reading-path strong,
  .cancer-signals strong {
    font-size: 19px;
  }

  .cancer-signals {
    gap: 14px;
  }

  .cancer-signals article {
    min-height: 174px;
    border-radius: 18px 8px 22px 8px;
  }

  .mini-illo {
    width: 58px;
    height: 58px;
    opacity: 0.52;
  }

  .cell-stage {
    min-height: 620px;
  }

  .cell-core {
    width: 166px;
    height: 166px;
  }

  .cell-core__text {
    width: 122px;
    min-height: 74px;
    padding: 10px;
  }

  .cell-core__text em {
    font-size: 16px;
  }

  .cause-node {
    width: 106px;
    min-height: 60px;
    padding: 9px;
    font-size: 12px;
  }

  .cost-row {
    grid-template-columns: 96px 1fr 64px;
    gap: 8px;
    font-size: 12px;
  }

  .receipt-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

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