:root {
  --ink: #071826;
  --ink-soft: #0d2434;
  --ink-muted: #173444;
  --paper: #f4f1ea;
  --paper-bright: #fffdf7;
  --cyan: #4de3ff;
  --cyan-deep: #08aaca;
  --coral: #ff6b45;
  --lime: #d7ff63;
  --violet: #9c8cff;
  --muted: #6b777d;
  --line: rgba(7, 24, 38, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 38px;
  --shadow: 0 24px 80px rgba(7, 24, 38, 0.13);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: var(--paper-bright);
  background: var(--coral);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper-bright);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 24, 38, 0.9);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.23);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(20px, 3vw, 42px);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.button-coral {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(255, 107, 69, 0.26);
}

.button-coral:hover {
  background: #ff7e5c;
  box-shadow: 0 18px 38px rgba(255, 107, 69, 0.34);
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-outline-light:hover {
  color: var(--ink);
  background: var(--paper-bright);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.mobile-menu {
  padding: 22px 24px 30px;
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a:not(.button) {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 18px;
  font-weight: 750;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 20px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 136px 0 72px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 78% 19%, rgba(77, 227, 255, 0.16), transparent 28%),
    radial-gradient(circle at 24% 110%, rgba(156, 140, 255, 0.14), transparent 40%),
    var(--ink);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -17vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(77, 227, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cyan);
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-head h2,
.diagnosis-title h2,
.help-copy h2,
.organizer-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 118px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 28px;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-lead strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 750;
}

.text-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  max-width: 540px;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.hero-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.trust-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215, 255, 99, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  z-index: 2;
  inset: 0 8% 8% 6%;
  border-radius: 47% 47% 28px 28px;
}

.hero-photo-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 24, 38, 0.35), transparent 42%);
  content: "";
}

.hero-photo-secondary {
  z-index: 4;
  right: -4%;
  bottom: 0;
  width: 31%;
  aspect-ratio: 3 / 4;
  border: 7px solid var(--ink);
  border-radius: 100px 100px 18px 18px;
}

.hero-badge {
  position: absolute;
  z-index: 5;
  bottom: 5%;
  left: -2%;
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  padding: 20px;
  color: var(--ink);
  background: var(--lime);
  border: 8px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}

.hero-badge span,
.hero-badge small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin: 2px 0;
  font-size: 24px;
  line-height: 1;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(77, 227, 255, 0.32);
  border-radius: 50%;
}

.orbit-one {
  top: 1%;
  right: 0;
  width: 300px;
  height: 300px;
}

.orbit-two {
  bottom: 2%;
  left: -2%;
  width: 400px;
  height: 400px;
  border-color: rgba(156, 140, 255, 0.3);
}

.family-progress {
  margin-top: 72px;
  padding: 28px 30px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-m);
  backdrop-filter: blur(14px);
}

.progress-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.progress-heading > div:first-child {
  display: grid;
  gap: 6px;
}

.progress-heading .section-kicker {
  color: rgba(255, 255, 255, 0.54);
}

.progress-heading strong {
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.progress-percent {
  display: grid;
  justify-items: end;
}

.progress-percent span {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 900;
}

.progress-percent small {
  color: rgba(255, 255, 255, 0.46);
}

.progress-track {
  position: relative;
  height: 12px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 23.76%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(77, 227, 255, 0.45);
}

.progress-stats {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(260px, 1.5fr);
  align-items: end;
  gap: 30px;
  margin-top: 20px;
}

.progress-stats p {
  display: grid;
  margin: 0;
}

.progress-stats span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-stats strong {
  margin-top: 3px;
  font-size: 18px;
}

.progress-stats .progress-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.signal-strip {
  position: relative;
  z-index: 5;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid var(--ink);
  overflow: hidden;
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 16px 24px;
  animation: signal-marquee 32s linear infinite alternate;
}

.signal-track span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track i {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

@keyframes signal-marquee {
  to { transform: translateX(-20%); }
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 72px;
}

.section-head > div:first-child,
.diagnosis-title,
.help-copy,
.organizer-copy {
  display: grid;
  justify-items: start;
}

.section-number {
  display: inline-grid;
  min-width: 58px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-head .section-kicker,
.diagnosis-title .section-kicker,
.help-copy .section-kicker,
.organizer-copy .section-kicker {
  color: var(--muted);
}

.section-head h2,
.diagnosis-title h2,
.help-copy h2,
.organizer-copy h2,
.final-cta h2 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.9;
}

.section-head h2 em,
.help-copy h2 em,
.organizer-copy h2 em {
  color: var(--coral);
}

.story-section {
  background: var(--paper);
}

.story-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(90px, auto);
  gap: 18px;
}

.story-board > * {
  border-radius: var(--radius-m);
}

.story-intro {
  grid-column: 1 / 7;
  grid-row: 1 / 4;
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.story-intro p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.story-intro p + p {
  margin-top: 24px;
}

.story-intro .story-dropcap {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.32;
}

.story-dropcap::first-letter {
  float: left;
  margin: 7px 10px 0 0;
  color: var(--coral);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.7;
}

.story-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 420px;
  background: var(--ink-soft);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-large {
  grid-column: 7 / 13;
  grid-row: 1 / 6;
}

.story-image-large img {
  object-position: center 20%;
}

.story-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(7, 24, 38, 0.78);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.fact-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  justify-content: space-between;
  padding: 28px;
}

.fact-card-cyan {
  grid-column: 1 / 4;
  grid-row: 4 / 6;
  background: var(--cyan);
}

.fact-card-dark {
  grid-column: 4 / 7;
  grid-row: 4 / 6;
  color: #fff;
  background: var(--ink);
}

.fact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.fact-card strong {
  margin-top: auto;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.fact-card p {
  margin: 8px 0 0;
  opacity: 0.72;
  font-size: 13px;
}

.quote-card {
  position: relative;
  grid-column: 1 / 8;
  min-height: 320px;
  padding: clamp(36px, 6vw, 76px);
  background: var(--violet);
  overflow: hidden;
}

.quote-card blockquote {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.quote-mark {
  position: absolute;
  top: -70px;
  right: 30px;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  font-size: 360px;
  line-height: 1;
}

.story-detail {
  grid-column: 8 / 13;
  padding: clamp(30px, 5vw, 54px);
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.story-detail h3 {
  margin: 0 0 22px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.story-detail p {
  color: var(--ink-muted);
}

.story-detail p:last-child {
  margin-bottom: 0;
}

.diagnosis-section {
  background: var(--paper-bright);
  border-block: 1px solid var(--line);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 140px);
}

.diagnosis-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.diagnosis-title h2 {
  margin-top: 26px;
}

.diagnosis-title h2 em {
  color: var(--cyan-deep);
}

.diagnosis-title > p {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.diagnosis-flow {
  display: grid;
  gap: 16px;
}

.diagnosis-flow article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  min-height: 180px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

.diagnosis-flow article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.diagnosis-flow h3 {
  margin: 3px 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.diagnosis-flow p {
  margin: 0;
  color: var(--ink-muted);
}

.diagnosis-flow .flow-accent {
  color: #fff;
  background: var(--coral);
  border-color: transparent;
}

.diagnosis-flow .flow-accent > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.diagnosis-flow .flow-accent p {
  color: rgba(255, 255, 255, 0.8);
}

.treatment-section {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(77, 227, 255, 0.07), transparent 35%),
    var(--ink);
}

.section-head-light .section-number {
  color: var(--ink);
  background: var(--cyan);
}

.section-head-light .section-kicker {
  color: rgba(255,255,255,.52);
}

.section-head-light h2 em {
  color: var(--lime);
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
}

.therapy-card,
.cost-card,
.eligibility-card {
  border-radius: var(--radius-l);
}

.therapy-card {
  padding: clamp(34px, 5vw, 64px);
  color: var(--ink);
  background: var(--cyan);
}

.therapy-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}

.therapy-card h3 {
  margin: 22px 0 20px;
  font-size: clamp(58px, 7vw, 96px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.therapy-card > p {
  max-width: 650px;
  font-size: 18px;
}

.therapy-card dl {
  margin: 44px 0 0;
  border-top: 1px solid rgba(7, 24, 38, 0.22);
}

.therapy-card dl div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 24, 38, 0.22);
}

.therapy-card dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.therapy-card dd {
  margin: 0;
  font-weight: 750;
}

.cost-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
}

.cost-card > strong {
  margin-top: 30px;
  color: var(--lime);
  font-size: clamp(48px, 5.7vw, 74px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.cost-card > small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.cost-divider {
  height: 1px;
  margin: 34px 0 26px;
  background: var(--line-light);
}

.cost-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.67);
}

.cost-card b {
  color: #fff;
}

.eligibility-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 300px;
  padding: clamp(38px, 6vw, 76px) clamp(120px, 18vw, 260px) clamp(38px, 6vw, 76px) clamp(38px, 6vw, 76px);
  color: var(--ink);
  background: var(--lime);
  overflow: hidden;
}

.eligibility-card h3 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(30px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.eligibility-card p {
  max-width: 740px;
}

.eligibility-check {
  position: absolute;
  right: 4%;
  bottom: -28%;
  display: grid;
  width: 240px;
  height: 240px;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
  font-size: 110px;
  font-weight: 900;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-weight: 800;
}

.route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.route article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.route article:last-child {
  border-right: 0;
}

.route article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 50px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.route h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.route p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.route .route-current {
  color: var(--ink);
  background: var(--coral);
}

.route .route-current > span {
  color: #fff;
  background: var(--ink);
}

.route .route-current p {
  color: rgba(7, 24, 38, 0.72);
}

.help-section {
  background: var(--paper);
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.help-copy {
  position: sticky;
  top: 120px;
}

.help-copy h2 {
  margin-top: 28px;
}

.help-copy > p {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
}

.help-principles {
  width: 100%;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.help-principles li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.help-principles span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
}

.payment-panel {
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.payment-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 34px 0;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-status i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215,255,99,.1);
}

.payment-top h3 {
  margin: 12px 0 0;
  font-size: 34px;
  letter-spacing: -0.045em;
}

.bank-badge {
  display: grid;
  min-width: 80px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #ffdc2e;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.payment-qr-wrap {
  margin: 28px 34px 22px;
  padding: 26px;
  overflow: hidden;
  text-align: center;
  background: var(--paper-bright);
  border-radius: var(--radius-m);
}

.payment-qr-image {
  position: relative;
  width: min(290px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.payment-qr-image img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 106.72%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.payment-qr-wrap p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.payment-panel > .button {
  width: calc(100% - 68px);
  margin: 0 34px;
}

.payment-details {
  margin-top: 28px;
  padding: 0 34px;
}

.payment-details > div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
}

.payment-details span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-details strong {
  padding-right: 92px;
  font-size: 16px;
}

.copy-button {
  position: absolute;
  right: 0;
  bottom: 15px;
  padding: 5px 9px;
  color: var(--cyan);
  background: transparent;
  border: 1px solid rgba(77, 227, 255, 0.3);
  border-radius: 999px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.copy-button:hover {
  color: var(--ink);
  background: var(--cyan);
}

.payment-caption {
  margin: 0;
  padding: 20px 34px 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.documents-section {
  background: var(--paper-bright);
  border-top: 1px solid var(--line);
}

.document-summary {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 40px;
  padding: 28px 32px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-m);
}

.document-summary > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 30px;
  border-right: 1px solid var(--line-light);
}

.document-summary strong {
  color: var(--cyan);
  font-size: 58px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.document-summary span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.document-summary p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.document-summary .privacy-note {
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.privacy-note span {
  margin-right: 8px;
  color: var(--lime);
}

.document-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 17px;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

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

.document-card {
  display: grid;
  padding: 0;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.document-card:hover {
  z-index: 2;
  border-color: var(--cyan-deep);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.document-card[hidden] {
  display: none;
}

.document-preview {
  display: block;
  height: 260px;
  padding: 18px 18px 0;
  background:
    linear-gradient(rgba(7,24,38,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,24,38,.045) 1px, transparent 1px),
    #e9e6df;
  background-size: 20px 20px;
  overflow: hidden;
}

.document-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7,24,38,.13);
}

.document-meta {
  display: grid;
  align-content: start;
  min-height: 142px;
  padding: 20px;
}

.document-meta small {
  color: var(--coral);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-meta strong {
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.document-meta em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.document-featured {
  grid-column: span 2;
  grid-template-columns: 1.05fr 0.95fr;
}

.document-featured .document-preview {
  height: 410px;
  padding: 22px 0 22px 22px;
}

.document-featured .document-meta {
  align-content: end;
  min-height: 410px;
  padding: 28px;
}

.document-featured .document-meta strong {
  font-size: 30px;
}

.organizer-section {
  color: #fff;
  background: var(--ink);
}

.organizer-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.organizer-copy .section-number {
  color: var(--ink);
  background: var(--cyan);
}

.organizer-copy .section-kicker {
  color: rgba(255,255,255,.5);
}

.organizer-copy h2 {
  margin-top: 28px;
}

.organizer-copy > p {
  margin: 34px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 17px;
}

.organizer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.organizer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.organizer-links a:hover {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.organizer-manifest {
  position: relative;
  padding: clamp(40px, 6vw, 76px);
  color: var(--ink);
  background: var(--violet);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.organizer-manifest::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border: 50px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
}

.manifest-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.organizer-manifest blockquote {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 28px 0 40px;
  font-size: clamp(25px, 3.3vw, 46px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.17;
}

.manifest-signature {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(7,24,38,.25);
}

.manifest-signature span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
}

.organizer-manifest .button {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  color: var(--ink);
  border-color: rgba(7,24,38,.4);
}

.organizer-manifest .button:hover {
  color: #fff;
  background: var(--ink);
}

.final-cta {
  position: relative;
  isolation: isolate;
  padding: 140px 0;
  color: #fff;
  background: var(--ink-soft);
  overflow: hidden;
}

.final-rings {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(77,227,255,.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-rings::before,
.final-rings::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(77,227,255,.14);
  border-radius: 50%;
  content: "";
}

.final-rings::after {
  inset: 29%;
  background: radial-gradient(circle, rgba(255,107,69,.12), transparent 70%);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta .section-kicker {
  color: var(--cyan);
}

.final-cta h2 {
  max-width: 1100px;
  margin-top: 28px;
}

.final-cta h2 em {
  color: var(--lime);
}

.final-cta p {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 18px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.site-footer {
  padding: 60px 0 30px;
  color: #fff;
  background: #04111c;
  border-top: 1px solid var(--line-light);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-details p {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.footer-details span {
  color: rgba(255,255,255,.4);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  margin-top: 50px;
  padding-top: 24px;
  color: rgba(255,255,255,.36);
  border-top: 1px solid var(--line-light);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-help-bar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.copy-fallback-field {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.document-modal {
  width: min(1120px, calc(100vw - 34px));
  max-width: none;
  height: min(92vh, 980px);
  max-height: none;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}

.document-modal::backdrop {
  background: rgba(3, 14, 24, 0.88);
  backdrop-filter: blur(10px);
}

.modal-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  background: var(--paper);
  border-radius: var(--radius-m);
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  color: #fff;
  background: var(--ink);
}

.modal-header span {
  color: rgba(255,255,255,.48);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.modal-header h2 {
  margin: 2px 0 0;
  font-size: 20px;
  letter-spacing: -.025em;
}

.modal-close {
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-body {
  padding: 24px;
  overflow: auto;
  overscroll-behavior: contain;
}

.modal-body img {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 16px 50px rgba(7,24,38,.16);
}

.modal-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: var(--paper-bright);
  border-top: 1px solid var(--line);
}

.modal-footer button,
.modal-footer a {
  padding: 8px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.modal-footer button:last-child {
  text-align: right;
}

.modal-footer a {
  color: var(--cyan-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.65,.2,1), transform 700ms cubic-bezier(.2,.65,.2,1);
}

.reveal-delay {
  transition-delay: 130ms;
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 38px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-badge {
    width: 145px;
    height: 145px;
  }

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

  .document-featured {
    grid-column: span 2;
  }

  .document-summary {
    grid-template-columns: auto 1fr;
  }

  .document-summary .privacy-note {
    grid-column: 1 / -1;
    padding: 18px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 34px, 740px);
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 10;
  }

  .hero h1 {
    font-size: clamp(64px, 14vw, 100px);
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
  }

  .hero-photo-main {
    inset: 0 5% 7% 5%;
  }

  .progress-stats {
    grid-template-columns: 1fr 1fr;
  }

  .progress-note {
    grid-column: 1 / -1;
  }

  .section {
    padding: 96px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .section-head h2,
  .diagnosis-title h2,
  .help-copy h2,
  .organizer-copy h2,
  .final-cta h2 {
    font-size: clamp(52px, 10vw, 80px);
  }

  .story-intro {
    grid-column: 1 / 8;
    grid-row: 1 / 4;
  }

  .story-image-large {
    grid-column: 8 / 13;
  }

  .fact-card-cyan {
    grid-column: 1 / 5;
  }

  .fact-card-dark {
    grid-column: 5 / 8;
  }

  .quote-card {
    grid-column: 1 / 13;
  }

  .story-detail {
    grid-column: 1 / 13;
  }

  .diagnosis-layout,
  .help-layout,
  .organizer-layout {
    grid-template-columns: 1fr;
  }

  .diagnosis-title,
  .help-copy {
    position: static;
  }

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

  .eligibility-card {
    grid-column: auto;
  }

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

  .route article:nth-child(2) {
    border-right: 0;
  }

  .route article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .payment-panel {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .document-featured {
    grid-column: 1 / -1;
  }

  .organizer-manifest {
    min-height: 520px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-m: 20px;
    --radius-l: 28px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header.is-menu-open {
    background: var(--ink);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 106px 0 54px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(56px, 17vw, 82px);
    line-height: .86;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    align-items: start;
    gap: 18px;
    margin-top: 30px;
  }

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

  .text-link {
    justify-self: start;
  }

  .hero-trust {
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 485px;
    margin-top: 8px;
  }

  .hero-photo-main {
    inset: 10px 0 36px;
    border-radius: 42% 42% 20px 20px;
  }

  .hero-photo-main img {
    object-position: 45% center;
  }

  .hero-photo-secondary {
    right: -3%;
    bottom: 0;
    width: 36%;
    border-width: 5px;
  }

  .hero-badge {
    bottom: 2%;
    left: -3%;
    width: 126px;
    height: 126px;
    border-width: 6px;
  }

  .hero-badge strong {
    font-size: 20px;
  }

  .orbit-one {
    width: 200px;
    height: 200px;
  }

  .orbit-two {
    width: 270px;
    height: 270px;
  }

  .family-progress {
    margin-top: 44px;
    padding: 22px;
  }

  .progress-heading {
    align-items: start;
  }

  .progress-heading strong {
    font-size: 30px;
  }

  .progress-percent span {
    font-size: 20px;
  }

  .progress-percent small {
    display: none;
  }

  .progress-stats {
    gap: 16px;
  }

  .progress-stats strong {
    font-size: 14px;
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .diagnosis-title h2,
  .help-copy h2,
  .organizer-copy h2,
  .final-cta h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

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

  .story-board > * {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .story-intro,
  .story-detail,
  .quote-card {
    padding: 28px;
  }

  .story-intro .story-dropcap {
    font-size: 21px;
  }

  .story-image-large {
    min-height: 520px;
  }

  .fact-card {
    min-height: 210px;
  }

  .quote-card blockquote {
    font-size: 27px;
  }

  .diagnosis-layout {
    gap: 42px;
  }

  .diagnosis-title > p {
    font-size: 16px;
  }

  .diagnosis-flow article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 22px;
  }

  .diagnosis-flow article > span {
    width: 44px;
    height: 44px;
  }

  .diagnosis-flow h3 {
    font-size: 20px;
  }

  .therapy-card,
  .cost-card,
  .eligibility-card {
    padding: 28px;
  }

  .therapy-card h3 {
    font-size: 60px;
  }

  .therapy-card > p {
    font-size: 16px;
  }

  .therapy-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cost-card > strong {
    font-size: 47px;
  }

  .eligibility-card {
    padding-bottom: 150px;
  }

  .eligibility-check {
    right: -35px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    font-size: 82px;
  }

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

  .route article {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .route article:last-child {
    border-bottom: 0;
  }

  .route article > span {
    margin-bottom: 34px;
  }

  .help-layout {
    gap: 46px;
  }

  .help-copy > p {
    font-size: 16px;
  }

  .payment-top,
  .payment-details {
    padding-inline: 22px;
  }

  .payment-qr-wrap {
    margin-inline: 22px;
    padding: 18px;
  }

  .payment-panel > .button {
    width: calc(100% - 44px);
    margin-inline: 22px;
  }

  .payment-caption {
    padding-inline: 22px;
  }

  .payment-details strong {
    font-size: 14px;
  }

  .document-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .document-summary > div {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .document-summary .privacy-note {
    grid-column: auto;
  }

  .document-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .document-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .documents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .document-card,
  .document-featured {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .document-featured {
    grid-column: 1 / -1;
  }

  .document-preview,
  .document-featured .document-preview {
    height: 210px;
    padding: 12px 12px 0;
  }

  .document-featured .document-preview {
    height: 300px;
  }

  .document-meta,
  .document-featured .document-meta {
    min-height: 130px;
    padding: 16px;
  }

  .document-featured .document-meta {
    min-height: 150px;
  }

  .document-meta strong,
  .document-featured .document-meta strong {
    font-size: 16px;
  }

  .document-meta em {
    font-size: 10px;
  }

  .organizer-layout {
    gap: 42px;
  }

  .organizer-manifest {
    min-height: 0;
    padding: 30px 28px 150px;
  }

  .organizer-manifest blockquote {
    font-size: 27px;
  }

  .final-cta {
    padding: 96px 0;
  }

  .final-cta p {
    font-size: 16px;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .footer-main,
  .footer-details,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-details {
    gap: 20px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .mobile-help-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
    color: #fff;
    background: rgba(7,24,38,.94);
    border-top: 1px solid var(--line-light);
    backdrop-filter: blur(16px);
  }

  .mobile-help-bar > div {
    display: grid;
    line-height: 1.15;
  }

  .mobile-help-bar span {
    color: var(--lime);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-help-bar strong {
    margin-top: 3px;
    font-size: 14px;
  }

  .mobile-help-bar a {
    flex: 0 0 auto;
    padding: 12px 18px;
    color: #fff;
    background: var(--coral);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
  }

  .toast {
    right: 14px;
    bottom: 90px;
  }

  .document-modal {
    width: calc(100vw - 16px);
    height: 96vh;
  }

  .modal-header {
    padding: 14px;
  }

  .modal-header h2 {
    max-width: 250px;
    font-size: 16px;
  }

  .modal-body {
    padding: 12px;
  }

  .modal-footer {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
  }

  .modal-footer a {
    display: none;
  }
}

@media (max-width: 390px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .document-featured {
    grid-column: auto;
  }

  .document-preview,
  .document-featured .document-preview {
    height: 250px;
  }

  .hero-photo-secondary {
    width: 39%;
  }

  .hero-badge {
    width: 116px;
    height: 116px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
