:root {
  --ink: #10202b;
  --muted: #52616b;
  --paper: #eef3f6;
  --white: #ffffff;
  --line: #c7d4dc;
  --line-soft: #dbe5ea;
  --blue: #0b568b;
  --navy: #0e3c59;
  --sky: #74b5df;
  --sky-soft: #d9edf8;
  --mint: #dceee3;
  --mint-line: #9fc9ad;
  --lavender: #e7e6f5;
  --lavender-line: #b9b5dc;
  --sand: #f6ecd5;
  --sand-line: #d9bd7b;
  --coral: #fff0e9;
  --coral-line: #e8926e;
  --focus: #2f91cc;
  --radius-sm: 12px;
  --radius: 20px;
  --shell: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; height: auto; }

a { color: inherit; }

button, a { touch-action: manipulation; }

:is(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 32px;
}

.brand { width: 136px; display: block; }
.brand img { width: 100%; display: block; }

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.7vw, 40px);
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active { border-color: var(--sky); color: var(--blue); }

.menu-button {
  min-width: 68px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
}

.breadcrumbs {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 650;
}

.breadcrumbs a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 5px; color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.eyebrow-inverse { color: #cbe8f7; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.045em; }
h1 { font-size: clamp(3.5rem, 6.2vw, 5.8rem); font-weight: 760; }
h2 { font-size: clamp(2.2rem, 3.9vw, 3.8rem); font-weight: 750; }
h3 { font-size: 1.28rem; font-weight: 740; }

.start-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr);
  gap: 16px;
  padding-bottom: 76px;
}

.hero-copy,
.hero-aside {
  min-width: 0;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 6vw, 84px);
  background: var(--lavender);
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: var(--navy); }
.button-light { background: var(--white); color: var(--navy); }
.button-light:hover { background: var(--sky-soft); }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 780;
  text-underline-offset: 5px;
}

.text-link:hover { text-decoration-thickness: 2px; }

.hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
  background: var(--navy);
  color: var(--white);
}

.hero-aside .eyebrow { color: #cbe8f7; }
.hero-aside h2 { font-size: clamp(2.25rem, 3.4vw, 3.55rem); }
.hero-aside > p:not(.eyebrow):not(.hero-number) { color: #d7e6ed; }
.hero-number { margin: 4px 0 10px; color: var(--sky); font-size: clamp(4rem, 8vw, 7rem); font-weight: 780; line-height: .8; }
.aside-link { min-height: 44px; display: inline-flex; align-items: center; margin-top: 28px; color: var(--white); font-weight: 750; text-underline-offset: 5px; }

.section { padding-block: 72px; }
.section-heading { margin-bottom: 30px; }
.heading-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .62fr); align-items: end; gap: 48px; }
.heading-split > p { margin: 0; color: var(--muted); }

.route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  list-style: none;
  overflow: hidden;
}

.route-list li {
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-content: start;
  gap: 18px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.route-list li:last-child { border-right: 0; }
.route-list li:nth-child(1) { background: var(--mint); }
.route-list li:nth-child(2) { background: var(--lavender); }
.route-list li:nth-child(4) { background: var(--sand); }
.route-list li.route-current { background: var(--sky-soft); }
.route-number { color: var(--blue); font-size: .72rem; font-weight: 850; }
.route-list strong { display: block; font-size: 1.08rem; line-height: 1.25; }
.route-list p { margin: 10px 0 0; color: var(--muted); font-size: .86rem; }
.route-list a { min-width: 44px; min-height: 44px; display: grid; place-items: center; color: var(--blue); font-size: 1.2rem; text-decoration: none; }

.task-section { padding-top: 92px; }
.task-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.task-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

a.task-card { cursor: pointer; }
a.task-card:hover { border-color: var(--blue); background: #f9fcfd; }
.task-card:nth-child(1) { background: var(--mint); border-color: var(--mint-line); }
.task-card.task-featured { background: var(--navy); color: var(--white); }
.task-card.task-featured:hover { background: #124a6d; }
.task-card:nth-child(3) { background: var(--lavender); border-color: var(--lavender-line); }
.task-card:nth-child(4) { background: var(--sand); border-color: var(--sand-line); }
.task-card:nth-child(5) { background: var(--coral); border-color: var(--coral-line); }
.task-card:nth-child(6) { background: #e7f1ee; border-color: #aacbc1; }
a.task-card:nth-child(1):hover { background: #cfe7d8; border-color: #70a984; }
a.task-card:nth-child(4):hover { background: #f1e2c0; border-color: #c59e49; }
.task-index { margin-bottom: auto; color: var(--blue); font-size: .72rem; font-weight: 850; }
.task-featured .task-index { color: var(--sky); }
.task-card h3 { max-width: 340px; margin-top: 34px; }
.task-card p { margin: 12px 0 22px; color: var(--muted); font-size: .9rem; }
.task-featured p { color: #d7e6ed; }
.task-status { margin-top: auto; color: var(--muted); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }
.status-ready { color: #1d7047; }
.status-pilot, .task-featured .status-pilot { color: #9fd5f1; }

.transfer-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.2fr);
  gap: 72px;
  margin-block: 72px;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 52px);
  background: var(--sand);
}

.transfer-reasons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.transfer-reasons p { margin: 0; color: var(--muted); font-size: .9rem; }
.transfer-reasons strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 1rem; }

.verification-note,
.source-panel {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: var(--white);
}

.verification-note {
  border-color: var(--lavender-line);
  background: var(--lavender);
}

.verification-note h2,
.source-panel h2 { font-size: clamp(1.55rem, 2.2vw, 2.25rem); }
.verification-note > p { margin: 0; color: var(--muted); font-size: .88rem; }

.eligibility-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-block: 18px 88px;
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  background: var(--navy);
  color: var(--white);
}

.eligibility-cta h2 { max-width: 800px; font-size: clamp(2.25rem, 4vw, 4rem); }
.eligibility-cta p:not(.eyebrow) { margin: 18px 0 0; color: #d7e6ed; }

.instruction-hero { padding: 24px 0 52px; }
.instruction-hero h1 { max-width: 1150px; }
.instruction-hero .hero-lead { max-width: 820px; }

.eligibility-warning {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--coral-line);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  background: var(--coral);
  color: #853c24;
}

.eligibility-warning h2 { color: var(--ink); font-size: 1.18rem; letter-spacing: -.02em; }
.eligibility-warning p { margin: 6px 0 0; color: #674d43; font-size: .88rem; }
.warning-link { color: #a74421; white-space: nowrap; }

.method-section { padding-top: 66px; }
.tab-scroll { max-width: 100%; overflow-x: auto; padding: 3px; scrollbar-width: thin; }
.method-tabs { min-width: 850px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }

.method-tabs button {
  min-height: 58px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 11px 14px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 780;
  transition: background-color 180ms ease, color 180ms ease;
}

.method-tabs button[aria-selected="true"] { background: var(--navy); color: var(--white); }
.method-tabs button:hover { background: var(--sky-soft); color: var(--ink); }
.method-tabs button[aria-selected="true"]:hover { background: var(--navy); color: var(--white); }

.method-panel {
  margin-top: 16px;
  border: 1px solid var(--lavender-line);
  border-top: 7px solid var(--lavender-line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
}

.method-meta { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); gap: 34px; margin-bottom: 34px; }
.method-meta p:last-child { margin: 0; color: var(--muted); }
.method-columns { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: 0; border-block: 1px solid var(--line); }
.method-columns > section { padding: 34px 34px 34px 0; }
.method-columns > section:first-child {
  margin-block: 18px;
  border-radius: var(--radius-sm);
  padding-left: 24px;
  background: var(--mint);
}
.method-columns > section + section { border-left: 1px solid var(--line); padding-left: 48px; }
.method-columns h3 { margin-bottom: 24px; }

.requirements-list,
.steps-list { margin: 0; padding: 0; list-style: none; }
.requirements-list li { position: relative; min-height: 48px; padding: 12px 0 12px 26px; border-bottom: 1px solid var(--line-soft); }
.requirements-list li::before { content: ""; position: absolute; top: 21px; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.steps-list { counter-reset: steps; }
.steps-list li { counter-increment: steps; position: relative; min-height: 58px; padding: 14px 0 14px 52px; border-bottom: 1px solid var(--line-soft); }
.steps-list li::before { content: counter(steps); position: absolute; top: 10px; left: 0; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--sky); border-radius: 50%; color: var(--blue); font-size: .82rem; font-weight: 850; }
.steps-list li:nth-child(1)::before { border-color: var(--mint-line); background: var(--mint); }
.steps-list li:nth-child(2)::before { border-color: var(--lavender-line); background: var(--lavender); }
.steps-list li:nth-child(3)::before { border-color: var(--sand-line); background: var(--sand); }
.steps-list li:nth-child(4)::before { border-color: var(--sky); background: var(--sky-soft); }
.requirements-list li:last-child, .steps-list li:last-child { border-bottom: 0; }

.method-action { display: flex; align-items: center; gap: 24px; padding-top: 28px; }
.method-action p { max-width: 480px; margin: 0; color: var(--muted); font-size: .82rem; }
.noscript-note { border-left: 4px solid var(--coral-line); padding: 12px 16px; background: var(--coral); }

.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding-top: 34px; }
.outcome-card { min-height: 340px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); background: var(--white); }
.outcome-card.outcome-lavender { border-color: var(--lavender-line); background: var(--lavender); }
.outcome-card.outcome-mint { border-color: var(--mint-line); background: var(--mint); }
.outcome-card h2 { font-size: clamp(2rem, 3.3vw, 3.2rem); }
.outcome-card p:not(.eyebrow) { color: var(--muted); }
.outcome-card .text-link { margin-top: auto; }

.next-steps { display: grid; grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr); gap: 58px; border-block: 1px solid var(--line); }
.next-steps ol { margin: 0; padding: 0; list-style: none; }
.next-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.next-steps li:last-child { border-bottom: 0; }
.next-steps li > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--mint-line); border-radius: 50%; background: var(--mint); color: var(--ink); font-size: .72rem; font-weight: 850; }
.next-steps li:nth-child(2) > span { border-color: var(--lavender-line); background: var(--lavender); }
.next-steps li:nth-child(3) > span { border-color: var(--sand-line); background: var(--sand); }
.next-steps p { margin: 0; color: var(--muted); }
.next-steps strong { display: block; margin-bottom: 3px; color: var(--ink); }

.source-panel { margin-bottom: 26px; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); align-items: start; border-color: var(--sand-line); background: var(--sand); }
.source-details p { margin: 0 0 8px; color: var(--muted); font-size: .86rem; }
.source-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 20px; }
.source-links a { min-height: 44px; display: inline-flex; align-items: center; color: var(--blue); font-weight: 780; text-underline-offset: 4px; }

.page-navigation { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 78px; padding-block: 18px; }
.page-navigation a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 780; text-underline-offset: 5px; }

.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-main { min-height: 190px; display: grid; grid-template-columns: minmax(260px, .7fr) 1fr; align-items: center; gap: 60px; }
.footer-main strong { font-size: 1.05rem; }
.footer-main strong span { color: var(--blue); }
.footer-main p { max-width: 420px; margin: 8px 0 0; color: var(--muted); font-size: .78rem; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; }
.footer-main a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 4px; font-size: .78rem; font-weight: 720; }
.footer-legal { border-top: 1px solid var(--line); padding-block: 24px 38px; color: var(--muted); font-size: .68rem; }

@media (max-width: 1020px) {
  .start-hero { grid-template-columns: 1.15fr .85fr; }
  .hero-copy, .hero-aside { min-height: 480px; }
  .route-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-list li:nth-child(2) { border-right: 0; }
  .route-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .task-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .transfer-section { grid-template-columns: 1fr; gap: 36px; }
  .verification-note { grid-template-columns: 1fr 1fr; }
  .verification-note .text-link { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .header-inner { grid-template-columns: 150px 1fr auto; }
  .menu-button { display: inline-flex; grid-column: 3; }
  .primary-nav { display: none; grid-column: 1 / -1; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 18px; }
  .site-header.menu-open .primary-nav { display: flex; }
  .primary-nav a { justify-content: space-between; border-bottom: 1px solid var(--line-soft); }
  .start-hero { grid-template-columns: 1fr; }
  .hero-copy, .hero-aside { min-height: 0; }
  .hero-aside { padding-block: 44px; }
  .hero-number { font-size: 4.5rem; }
  .heading-split { grid-template-columns: 1fr; gap: 20px; }
  .transfer-reasons { grid-template-columns: 1fr; }
  .eligibility-cta { grid-template-columns: 1fr; }
  .eligibility-warning { grid-template-columns: auto 1fr; }
  .warning-link { grid-column: 2; }
  .method-meta, .method-columns, .next-steps, .source-panel { grid-template-columns: 1fr; }
  .method-columns > section { padding: 28px 0; }
  .method-columns > section:first-child { padding-inline: 22px; }
  .method-columns > section + section { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .header-inner { min-height: 76px; grid-template-columns: 124px 1fr auto; gap: 8px; }
  .brand { width: 118px; }
  .menu-button { min-width: 64px; padding: 0; }
  .breadcrumbs { min-height: 60px; overflow: hidden; white-space: nowrap; }
  h1 { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(2rem, 10.5vw, 2.85rem); }
  .start-hero { padding-bottom: 34px; }
  .hero-copy { padding: 32px 24px; }
  .hero-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 8px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-aside { padding: 32px 24px; }
  .section { padding-block: 46px; }
  .section-heading { margin-bottom: 22px; }
  .route-list { grid-template-columns: 1fr; }
  .route-list li { min-height: 0; grid-template-columns: 34px minmax(0, 1fr) 44px; gap: 12px; border-right: 0; border-bottom: 1px solid var(--line); padding: 21px 16px; }
  .route-list strong { overflow-wrap: anywhere; }
  .route-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .route-list li:last-child { border-bottom: 0; }
  .task-section { padding-top: 58px; }
  .task-grid { grid-template-columns: 1fr; }
  .task-card { min-height: 230px; padding: 24px; }
  .transfer-section { margin-block: 34px; }
  .verification-note { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .verification-note .text-link { grid-column: auto; }
  .eligibility-cta { margin-bottom: 56px; padding: 30px 24px; }
  .eligibility-cta .button { width: 100%; }
  .instruction-hero { padding: 18px 0 36px; }
  .instruction-hero h1 { font-size: clamp(2.3rem, 9.6vw, 2.85rem); }
  .instruction-hero .hero-lead { margin-top: 20px; }
  .eligibility-warning { grid-template-columns: auto 1fr; padding: 18px; }
  .warning-link { grid-column: 1 / -1; }
  .method-section { padding-top: 48px; }
  .method-tabs { min-width: 720px; }
  .method-tabs button { min-height: 54px; font-size: .82rem; }
  .method-panel { padding: 24px 20px; }
  .method-meta { gap: 8px; margin-bottom: 18px; }
  .method-action { align-items: stretch; flex-direction: column; }
  .method-action .button { width: 100%; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 310px; padding: 28px 24px; }
  .source-panel { gap: 22px; padding: 24px; }
  .source-links { flex-direction: column; gap: 2px; }
  .page-navigation { flex-direction: column; margin-bottom: 48px; }
  .footer-main { min-height: 0; grid-template-columns: 1fr; gap: 30px; padding-block: 42px; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 359px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .header-inner { grid-template-columns: 106px 1fr auto; }
  .brand { width: 104px; }
  .menu-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-button { min-width: 48px; }
  .hero-copy, .hero-aside, .task-card, .outcome-card { border-radius: 16px; }
  .hero-copy { padding-inline: 20px; }
}

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

@media print {
  .site-header, .menu-button, .hero-actions, .eligibility-cta, .page-navigation { display: none !important; }
  body { background: #fff; }
  .shell { width: 100%; }
}

/* User-selected exact overview composition. Keep these rules scoped to overview. */
.overview-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body[data-page="overview"] {
  --overview-shell: 1340px;
  background: #eef5f9;
}

body[data-page="overview"] .overview-shell {
  width: min(calc(100% - 100px), var(--overview-shell));
  margin-inline: auto;
}

.overview-header {
  position: static;
  min-height: 70px;
  border: 0;
  background: #082f4b;
  color: var(--white);
}

.overview-header-inner {
  width: min(calc(100% - 80px), 1360px);
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}

.overview-brand {
  width: 120px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.overview-brand-logo {
  width: 120px;
  height: auto;
  display: block;
  filter: invert(1) grayscale(1) brightness(2);
  mix-blend-mode: screen;
}

.overview-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(34px, 4.2vw, 62px);
}

.overview-nav a {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  padding-inline: 4px;
  border-bottom: 2px solid transparent;
  color: var(--white);
  font-size: .86rem;
  font-weight: 600;
}

.overview-nav a:hover,
.overview-nav a.active {
  border-color: var(--white);
  color: var(--white);
}

.overview-menu-button {
  color: var(--white);
}

body[data-page="overview"] .overview-breadcrumbs {
  min-height: 64px;
  justify-content: flex-start;
  gap: 14px;
  font-size: .78rem;
}

body[data-page="overview"] .overview-breadcrumbs a {
  min-width: 0;
  justify-content: flex-start;
  padding: 0;
}

.overview-canvas { padding-bottom: 18px; }

.overview-hero {
  min-height: 256px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 58px;
  background: var(--white);
}

.overview-hero-copy h1 {
  max-width: none;
  font-size: clamp(3.15rem, 4.2vw, 3.75rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.04em;
}

.overview-hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #304858;
  font-size: 1.02rem;
  line-height: 1.55;
}

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

body[data-page="overview"] .overview-hero-actions .button {
  min-width: 188px;
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 10px;
  font-size: .92rem;
}

.overview-secondary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 680;
  text-decoration: none;
}

.overview-secondary-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.overview-secondary-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.overview-rocket {
  width: 290px;
  height: 190px;
  display: grid;
  place-items: center;
  margin: 0 0 0 auto;
}

.overview-rocket > svg { width: 100%; height: 100%; }

.overview-section { margin-top: 18px; }
.overview-section > h2 {
  margin: 0 0 12px 7px;
  font-size: 1.72rem;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.overview-route {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 20px 28px;
  background: var(--white);
  list-style: none;
}

.overview-route li { min-width: 0; }
.overview-route li + li { border-left: 1px solid var(--line-soft); }
.overview-route a {
  min-height: 86px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  color: var(--ink);
  text-decoration: none;
}

.overview-route li:first-child a { padding-left: 4px; }
.overview-route li:last-child a { padding-right: 4px; }

.overview-icon,
.overview-task-icon {
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #0c5fa8;
}

.overview-icon { width: 58px; height: 58px; }
.overview-icon > svg { width: 31px; height: 31px; }
.overview-task-icon { width: 64px; height: 64px; border-radius: 50%; }
.overview-task-icon > svg { width: 34px; height: 34px; }
.overview-icon > svg,
.overview-task-icon > svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.accent-mint { border: 1px solid #b9dac4; background: #e9f5ed; }
.accent-sky { border: 1px solid #bedcf0; background: #e7f3fb; }
.accent-lavender { border: 1px solid #cbc8e8; background: #efeff9; }
.accent-sand { border: 1px solid #ead39d; background: #fbf3df; }
.accent-coral { border: 1px solid #efc0ad; background: #fff1eb; }
.accent-neutral { border: 1px solid #cdd9df; background: #eef3f5; }

.overview-route-index { display: none; }
.overview-route-copy { min-width: 0; }
.overview-route-copy strong { display: block; font-size: .86rem; line-height: 1.25; }
.overview-route-copy small { display: block; margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.overview-chevron { width: 18px; height: 18px; fill: none; stroke: #8ca0ae; stroke-width: 1.7; }

.overview-task-section { margin-top: 17px; }
.overview-task-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.overview-task-card {
  min-width: 0;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 14px 10px 16px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

a.overview-task-card { cursor: pointer; transition: border-color 180ms ease, background-color 180ms ease; }
a.overview-task-card:hover { border-color: var(--blue); background: #fbfdfe; }
.overview-task-card strong { margin: 11px 0 0; font-size: .86rem; line-height: 1.28; }
.overview-status { margin-top: auto; font-size: .72rem; line-height: 1.25; }
body[data-page="overview"] .overview-status.status-ready { color: #1d7047; }
body[data-page="overview"] .overview-status.status-pilot { color: #a84725; }
.overview-status.status-structure { color: #677783; }

.overview-verification {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid #9fc9ad;
  border-radius: 12px;
  padding: 10px 24px;
  background: #edf8f1;
  color: #194f3a;
  font-size: .82rem;
  text-decoration: none;
}

.overview-verification:hover { border-color: #55966d; }
.overview-verification svg { width: 26px; height: 26px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }

.overview-cta {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  border-radius: 16px;
  padding: 12px 34px;
  background: #0a3b5e;
  color: var(--white);
}

.overview-cta h2 { font-size: 1.45rem; font-weight: 720; letter-spacing: -.025em; }
.overview-cta p { display: none; }
body[data-page="overview"] .overview-cta .button { min-width: 208px; min-height: 52px; gap: 20px; padding-inline: 24px; border-radius: 10px; }
.overview-cta .button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 1100px) and (min-width: 761px) {
  body[data-page="overview"] .overview-shell { width: min(calc(100% - 48px), var(--overview-shell)); }
  .overview-hero { grid-template-columns: 1fr 250px; padding-inline: 40px; }
  .overview-rocket { width: 240px; }
  .overview-route { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .overview-route li + li { border-left: 0; }
  .overview-route li:nth-child(even) { border-left: 1px solid var(--line-soft); }
  .overview-task-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body[data-page="overview"] { background: #eef5f9; }
  .overview-header {
    width: calc(100% - 52px);
    min-height: 42px;
    margin-inline: auto;
  }
  .overview-header-inner {
    width: 100%;
    min-height: 42px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 10px;
  }
  .overview-brand { width: 70px; }
  .overview-brand-logo { width: 70px; }
  .overview-menu-button {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    grid-column: 2;
    padding: 0;
  }
  .overview-menu-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .overview-nav {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 10px;
  }
  .overview-header.menu-open .overview-nav { display: flex; }
  .overview-nav a { justify-content: flex-start; border-bottom: 1px solid rgba(255,255,255,.18); }
  body[data-page="overview"] .overview-shell { width: calc(100% - 72px); }
  body[data-page="overview"] .overview-breadcrumbs { min-height: 44px; gap: 8px; font-size: .62rem; }
  body[data-page="overview"] .overview-breadcrumbs a { min-height: 44px; }
  .overview-canvas {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 12px 12px 0 0;
    padding: 10px;
    background: var(--white);
  }
  .overview-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    padding: 0 2px 8px;
  }
  .overview-hero-copy h1 { font-size: clamp(2rem, 9vw, 2.25rem); line-height: .98; }
  .overview-hero-copy > p { margin-top: 10px; font-size: .68rem; line-height: 1.45; }
  .desktop-only { display: none; }
  .overview-hero-actions { align-items: stretch; flex-direction: column; gap: 2px; margin-top: 10px; }
  body[data-page="overview"] .overview-hero-actions .button { width: 100%; min-height: 44px; font-size: .68rem; }
  .overview-secondary-link { min-height: 44px; justify-content: center; gap: 8px; font-size: .66rem; }
  .overview-secondary-link svg { display: none; }
  .overview-rocket { display: none; }
  .overview-section { margin-top: 0; }
  .overview-section > h2 { margin: 6px 0 5px; font-size: 1.18rem; }
  .overview-route {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 10px;
    padding: 0 7px;
  }
  .overview-route li + li { border-top: 1px solid var(--line-soft); border-left: 0; }
  .overview-route a {
    min-height: 44px;
    grid-template-columns: 25px minmax(0, 1fr) 16px;
    gap: 7px;
    padding: 0;
  }
  .overview-route li:first-child a,
  .overview-route li:last-child a { padding: 0; }
  .overview-icon { width: 24px; height: 24px; border-radius: 50%; }
  .overview-icon > svg { display: none; }
  .overview-route-index { display: inline; color: #0b568b; font-size: .55rem; font-weight: 780; }
  .overview-route-copy strong { font-size: .62rem; }
  .overview-route-copy small { display: none; }
  .overview-chevron { width: 14px; height: 14px; stroke: var(--blue); }
  .overview-task-section { margin-top: 5px; }
  .overview-task-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
  }
  .overview-task-card {
    min-height: 44px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 8px;
    border: 0;
    border-radius: 0;
    padding: 4px 7px;
    text-align: left;
  }
  .overview-task-card + .overview-task-card { border-top: 1px solid var(--line-soft); }
  .overview-task-icon { width: 28px; height: 28px; border-radius: 8px; }
  .overview-task-icon > svg { width: 17px; height: 17px; }
  .overview-task-card strong { margin: 0; font-size: .58rem; line-height: 1.2; }
  .overview-task-card strong br { display: none; }
  .overview-status {
    margin: 0;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 3px 6px;
    font-size: .49rem;
    line-height: 1;
    white-space: nowrap;
  }
  .overview-verification {
    min-height: 44px;
    gap: 9px;
    margin-top: 8px;
    padding: 6px 9px;
    font-size: .58rem;
  }
  .overview-verification svg { width: 20px; height: 20px; }
  .overview-cta {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 8px;
    border-radius: 10px;
    padding: 12px 10px;
  }
  .overview-cta h2 { font-size: 1.08rem; line-height: 1.1; }
  .overview-cta p { display: block; max-width: 250px; margin: 5px 0 0; color: #d7e6ed; font-size: .6rem; line-height: 1.35; }
  body[data-page="overview"] .overview-cta .button { width: 100%; min-width: 0; min-height: 44px; padding: 8px 12px; font-size: .65rem; }
  .overview-cta .button svg { display: none; }
}

@media (max-width: 359px) {
  .overview-header { width: calc(100% - 24px); }
  body[data-page="overview"] .overview-shell { width: calc(100% - 32px); }
}
