:root {
  --ink: #061a2b;
  --muted: #526173;
  --soft: #eef3f6;
  --paper: #ffffff;
  --warm: #f7f2e8;
  --navy: #061a2b;
  --blue: #0575a9;
  --teal: #24a7b5;
  --gold: #caa352;
  --green: #6aa76e;
  --line: rgba(6, 26, 43, 0.13);
  --shadow: 0 22px 70px rgba(6, 26, 43, 0.12);
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(6, 26, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: #3f4e5e;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 49;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 12px 22px 24px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid rgba(6, 26, 43, 0.08);
  color: var(--ink);
  font-weight: 900;
}

body.medical-page {
  color: #111d2b;
  background: #f6f8fb;
}

.medical-page p {
  color: #5a6573;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.72;
}

.medical-page h2 {
  font-size: clamp(34px, 4.1vw, 58px);
}

.medical-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(22px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 26, 43, 0.08);
  box-shadow: 0 10px 36px rgba(6, 26, 43, 0.05);
  backdrop-filter: blur(22px);
}

.medical-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.medical-brand img {
  width: 156px;
  flex: 0 0 auto;
}

.medical-brand span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(6, 26, 43, 0.05);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.back-link:hover {
  color: var(--blue);
  border-color: rgba(5, 117, 169, 0.34);
  transform: translateY(-1px);
}

.standalone-section {
  padding: clamp(68px, 7vw, 112px) clamp(22px, 5vw, 64px);
}

.standalone-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.medical-hero {
  min-height: calc(100svh - 110px);
  display: grid;
  align-items: center;
  padding-block: clamp(22px, 2.2vw, 34px);
  background:
    linear-gradient(180deg, #fff 0%, #f9fbfd 48%, #eef4f6 100%);
  border-bottom: 1px solid rgba(6, 26, 43, 0.08);
}

.medical-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.medical-page h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: #1c2d3d;
  font-size: clamp(66px, 8vw, 116px);
  line-height: 0.96;
}

.medical-page h1 span {
  display: block;
  margin-top: 18px;
  color: #2f465a;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.12;
}

.medical-hero-lead {
  max-width: 820px;
  color: #526173;
  font-size: clamp(19px, 1.8vw, 24px);
}

.hero-dossier {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #061a2b 0%, #0b3046 56%, #0c5461 100%);
  background-size: 72px 72px, 72px 72px, auto;
  box-shadow: 0 34px 96px rgba(6, 26, 43, 0.24);
}

.hero-dossier::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.dossier-topline,
.dossier-metrics,
.dossier-route article,
.dossier-note {
  position: relative;
  z-index: 1;
}

.dossier-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dossier-topline span {
  color: #8ed6e0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dossier-topline strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.dossier-route {
  display: grid;
  gap: 10px;
}

.dossier-route article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.dossier-route article > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #061a2b;
  background: #fff;
  font-size: 20px;
  font-weight: 900;
}

.dossier-route article:nth-child(2) > span {
  background: #8ed6e0;
}

.dossier-route article:nth-child(3) > span {
  background: #e0c06f;
}

.dossier-route strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.dossier-route p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.dossier-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dossier-metrics div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.dossier-metrics strong {
  display: block;
  color: #061a2b;
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.dossier-metrics span {
  display: block;
  margin-top: 8px;
  color: #526173;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.dossier-note {
  margin: 0;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 26, 43, 0.34);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.misconception-band {
  background: #fff;
}

.wide-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.wide-heading h2 {
  max-width: 980px;
}

.wide-heading p {
  max-width: 920px;
}

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

.misconception-grid article,
.stage-deep,
.cancer-takeaway,
.source-item {
  border: 1px solid rgba(6, 26, 43, 0.11);
  border-radius: var(--radius);
  background: #fff;
}

.misconception-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 18px 48px rgba(6, 26, 43, 0.06);
}

.misconception-grid span,
.stage-label {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.misconception-grid p {
  margin: 0;
}

.misconception-grid article:nth-child(2) h3,
.misconception-grid article:nth-child(3) h3 {
  white-space: nowrap;
  font-size: clamp(27px, 2.7vw, 32px);
}

.misconception-grid strong {
  margin-top: 8px;
  color: #16283a;
  font-size: 17px;
  line-height: 1.55;
}

.stage-deep-list {
  display: grid;
  gap: 18px;
}

.stage-deep {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 254, 255, 0.98));
  box-shadow: 0 24px 70px rgba(6, 26, 43, 0.08);
}

.stage-number {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.stage-deep:nth-child(2) .stage-number {
  background: var(--teal);
}

.stage-deep:nth-child(3) .stage-number {
  background: var(--gold);
}

.stage-deep h3 {
  max-width: 900px;
  font-size: clamp(28px, 3.6vw, 44px);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 26, 43, 0.1);
}

.detail-columns div {
  padding: 0 22px 0 0;
  background: transparent;
}

.detail-columns div + div {
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(6, 26, 43, 0.1);
}

.detail-columns h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.detail-columns ul,
.cancer-takeaway ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-columns li,
.cancer-takeaway li {
  position: relative;
  padding-left: 22px;
  color: #435264;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.62;
}

.detail-columns li::before,
.cancer-takeaway li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.evidence-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #061a2b 0%, #0a3149 58%, #0c5362 100%);
  background-size: 80px 80px, 80px 80px, auto;
}

.evidence-band .eyebrow,
.evidence-band h2,
.evidence-band h3,
.evidence-band p {
  color: #fff;
}

.evidence-band p {
  color: rgba(255, 255, 255, 0.78);
}

.evidence-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.evidence-stat-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.evidence-stat-grid strong {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
}

.evidence-stat-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 900;
}

.cancer-takeaway {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-top: 16px;
  padding: clamp(26px, 4vw, 42px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.cancer-takeaway h3 {
  margin-bottom: 12px;
}

.cancer-takeaway p {
  margin: 0;
}

.cancer-takeaway li {
  color: rgba(255, 255, 255, 0.84);
}

.budget-table {
  overflow: hidden;
  border: 1px solid rgba(6, 26, 43, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 58px rgba(6, 26, 43, 0.07);
}

.budget-table > div {
  display: grid;
  grid-template-columns: 150px minmax(260px, 0.96fr) minmax(280px, 1.04fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.budget-table > div:last-child {
  border-bottom: 0;
}

.budget-table > div:first-child {
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.budget-table span,
.budget-table strong,
.budget-table p {
  min-width: 0;
  margin: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.budget-table > div:first-child span {
  color: #fff;
}

.budget-table strong {
  color: var(--blue);
  font-size: 20px;
}

.budget-table p {
  color: #465668;
  font-size: 16px;
}

.budget-table span:last-child,
.budget-table strong:last-child,
.budget-table p:last-child {
  border-right: 0;
}

.source-band {
  background: #fff;
}

.source-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-item {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
}

.source-list span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.source-list strong {
  color: var(--ink);
  font-size: 18px;
}

.source-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  word-break: break-all;
}

.medical-footer {
  padding: 36px clamp(22px, 5vw, 64px);
  color: #fff;
  background: var(--navy);
}

.medical-footer .standalone-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.medical-footer img {
  width: 140px;
  flex: 0 0 auto;
}

.medical-footer p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.medical-footer strong {
  color: #fff;
  font-size: 15px;
}

.section-pad {
  padding: clamp(72px, 9vw, 124px) clamp(22px, 5vw, 64px);
  scroll-margin-top: var(--header-height);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.08;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 7vw, 92px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5.2vw, 64px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

p {
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(238, 243, 246, 0.72), rgba(255, 255, 255, 0.92) 46%, #fff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 4.5vw, 56px);
  align-items: center;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #5c6977;
  font-size: clamp(20px, 2.4vw, 26px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel,
.document-callout,
.source-callout,
.join-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(22px, 3vw, 28px);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-heading span {
  color: var(--blue);
  font-weight: 900;
}

.panel-heading strong {
  color: var(--muted);
  font-size: 14px;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.system-flow article,
.system-timeline article,
.framework-grid article,
.cycle-steps article,
.medical-grid article,
.rhythm-track article,
.runway article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.system-flow article {
  min-height: 158px;
  padding: 22px;
}

.system-flow span,
.framework-grid span,
.cycle-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.system-flow article:nth-child(2) span,
.framework-grid article:nth-child(2) span {
  background: var(--teal);
}

.system-flow article:nth-child(3) span,
.framework-grid article:nth-child(3) span {
  background: var(--gold);
}

.system-flow article:nth-child(4) span {
  background: var(--green);
}

.system-flow h2 {
  margin-bottom: 6px;
  font-size: 26px;
}

.system-flow p {
  margin: 0;
  font-size: 17px;
}

.system-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.system-summary div,
.feature-strip article,
.priority-ladder div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--soft);
}

.system-summary span,
.feature-strip span,
.priority-ladder span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.system-summary strong,
.feature-strip strong,
.priority-ladder strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.light-band,
.framework-band {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.about-copy p {
  margin-bottom: 26px;
}

.position-list {
  display: grid;
  gap: 14px;
}

.position-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.position-list span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.position-list strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.center-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.center-heading p {
  margin-left: auto;
  margin-right: auto;
}

.system-timeline,
.framework-grid,
.cycle-steps,
.medical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.system-timeline article,
.framework-grid article,
.cycle-steps article,
.medical-grid article,
.rhythm-track article,
.runway article {
  padding: clamp(24px, 3vw, 34px);
}

.system-timeline span,
.medical-grid span,
.rhythm-track span,
.runway span,
.source-callout span,
.document-callout span,
.stage-panel span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-timeline p,
.framework-grid p,
.cycle-steps p,
.medical-grid p,
.rhythm-track p,
.runway p {
  margin: 0;
  font-size: 18px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.feature-strip article {
  grid-template-columns: 90px 1fr;
  background: #f6f8f9;
}

.framework-layout {
  display: grid;
  gap: 34px;
}

.framework-grid {
  max-width: 900px;
}

.document-callout,
.source-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.document-callout strong,
.source-callout strong {
  color: var(--ink);
  font-size: 22px;
}

.document-callout a,
.source-actions a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.source-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.inline-link {
  color: #fff;
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

.cycle-layout {
  display: grid;
  gap: 32px;
}

.cycle-figure {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cycle-figure img {
  width: 100%;
  border-radius: 6px;
}

.cycle-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}

.cycle-steps span {
  grid-row: span 2;
  margin: 0;
}

.cycle-steps h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.medical-band {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(36, 167, 181, 0.28), transparent 26%),
    linear-gradient(135deg, #061a2b 0%, #09314d 55%, #0d4f64 100%);
}

.medical-band h2,
.medical-band h3,
.medical-band p,
.medical-band .eyebrow {
  color: #fff;
}

.medical-band p {
  color: rgba(255, 255, 255, 0.74);
}

.medical-layout {
  display: grid;
  gap: 32px;
}

.medical-stage-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.stage-tabs {
  display: grid;
  gap: 10px;
}

.stage-tab {
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.stage-tab.is-active {
  color: var(--navy);
  background: #fff;
}

.stage-panels {
  position: relative;
  min-height: 376px;
}

.stage-panel {
  display: none;
  min-height: 376px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: rgba(3, 13, 22, 0.48);
}

.stage-panel.is-active {
  display: block;
}

.stage-panel h3 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.stage-panel p {
  max-width: 900px;
  font-size: clamp(18px, 2vw, 22px);
}

.stage-panel ul,
.fit-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.stage-panel li,
.fit-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 800;
}

.stage-panel li::before,
.fit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.medical-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.medical-grid article:first-child {
  grid-column: span 2;
}

.medical-grid span {
  color: var(--gold);
}

.cancer-evidence {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.evidence-intro {
  max-width: 980px;
}

.evidence-intro span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.evidence-intro h3 {
  max-width: 920px;
  font-size: clamp(28px, 4vw, 46px);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.evidence-grid article {
  min-height: 144px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 13, 22, 0.38);
}

.evidence-grid strong {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.evidence-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 900;
}

.evidence-note {
  max-width: 980px;
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
}

.priority-ladder {
  display: grid;
  gap: 12px;
}

.priority-ladder div {
  grid-template-columns: 150px 1fr;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.priority-ladder span {
  color: var(--gold);
}

.priority-ladder strong {
  color: #fff;
}

.source-callout {
  background: rgba(255, 255, 255, 0.92);
}

.source-callout span {
  color: var(--blue);
}

.source-callout p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.fit-band {
  background: #fff;
}

.fit-toggle {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto 16px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.fit-tab {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.fit-tab.is-active {
  color: #fff;
  background: var(--navy);
}

.fit-panels {
  width: min(820px, 100%);
  margin: 0 auto;
}

.fit-panel {
  display: none;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--navy);
}

.fit-panel.is-active {
  display: block;
}

.rhythm-band {
  background: var(--warm);
}

.rhythm-track {
  display: grid;
  gap: 18px;
}

.rhythm-track article {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.78);
}

.rhythm-track span {
  min-width: 64px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}

.vision-layout {
  display: grid;
  gap: 34px;
}

.runway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.runway article {
  min-height: 210px;
}

.runway span {
  color: var(--gold);
}

.runway strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.join-band {
  background: var(--navy);
}

.join-panel {
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.16);
}

.join-panel h2,
.join-panel p {
  max-width: 920px;
  color: #fff;
}

.join-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 36px clamp(22px, 5vw, 64px);
  color: #fff;
  background: #04111d;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-inner img {
  width: 150px;
}

.footer-inner p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-inner strong {
  color: #fff;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1200px) {
  .desktop-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  .hero-inner,
  .split-layout,
  .medical-stage-shell,
  .medical-hero-grid,
  .source-layout,
  .cancer-takeaway {
    grid-template-columns: 1fr;
  }

  .system-timeline,
  .framework-grid,
  .cycle-steps,
  .medical-grid,
  .misconception-grid,
  .evidence-grid,
  .evidence-stat-grid,
  .feature-strip,
  .runway,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .medical-hero {
    min-height: auto;
  }

  .medical-grid article:first-child {
    grid-column: auto;
  }

  .stage-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .stage-tab {
    min-height: 58px;
  }

  .detail-columns div,
  .detail-columns div + div {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 140px;
  }

  .medical-header {
    min-height: 72px;
    gap: 12px;
  }

  .medical-brand img {
    width: 132px;
  }

  .medical-brand span {
    display: none;
  }

  .back-link {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .section-pad {
    padding-block: 64px;
  }

  .standalone-section {
    padding-block: 58px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-lead br {
    display: none;
  }

  .medical-page h1 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .medical-page h1 span {
    font-size: clamp(30px, 9vw, 42px);
  }

  .dossier-route article,
  .stage-deep {
    grid-template-columns: 1fr;
  }

  .dossier-metrics {
    grid-template-columns: 1fr;
  }

  .stage-number {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .budget-table > div:first-child {
    display: none;
  }

  .budget-table > div {
    grid-template-columns: 1fr;
  }

  .budget-table span,
  .budget-table strong,
  .budget-table p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .budget-table p:last-child {
    border-bottom: 0;
  }

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

  .system-flow article {
    min-height: 142px;
    padding: 18px;
  }

  .system-summary div,
  .feature-strip article,
  .position-list article,
  .priority-ladder div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .document-callout,
  .source-callout,
  .footer-inner,
  .medical-footer .standalone-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-actions {
    justify-content: flex-start;
  }

  .fit-toggle {
    grid-template-columns: 1fr;
  }

  .cycle-steps article {
    grid-template-columns: 1fr;
  }

  .cycle-steps span {
    margin-bottom: 14px;
  }
}
