:root {
  --navy-950: #081b2c;
  --navy-900: #102a43;
  --navy-800: #183b56;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --blue-600: #2563eb;
  --amber-600: #d97706;
  --amber-100: #fef3c7;
  --paper: #ffffff;
  --canvas: #f7f8fa;
  --ink: #172033;
  --muted: #5b6577;
  --line: #dde3ea;
  --line-strong: #c8d1dc;
  --success: #17643a;
  --success-bg: #e9f7ef;
  --danger: #a33a2a;
  --danger-bg: #fff0ed;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 12px 30px rgba(16, 42, 67, 0.09);
  --container: 1200px;
  --reading: 760px;
  --ease: 220ms ease;
  --brand-green-surface: linear-gradient(rgba(174,245,219,.075) 1px, transparent 1px), linear-gradient(90deg, rgba(174,245,219,.075) 1px, transparent 1px), radial-gradient(circle at 8% 14%, rgba(67,240,174,.22), transparent 25rem), radial-gradient(circle at 92% 88%, rgba(12,203,150,.2), transparent 30rem), linear-gradient(135deg, #04362d 0%, #075544 42%, #08765a 70%, #03473b 100%);
  --brand-green-surface-size: 58px 58px, 58px 58px, auto, auto, auto;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-underline-offset: 0.18em; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

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

.reading { max-width: var(--reading); }

.notice-bar {
  color: #f7fbff;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .875rem;
}

.notice-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-label {
  flex: 0 0 auto;
  color: #101828;
  background: #fbbf24;
  border-radius: 999px;
  padding: 2px 9px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .7rem;
}

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

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-700);
  border-radius: 10px 2px 10px 2px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.06em;
}

.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-family: Manrope, ui-sans-serif, system-ui, sans-serif; font-size: .98rem; }
.brand-copy small { color: var(--muted); font-size: .7rem; margin-top: 4px; }

.desktop-nav { margin-left: auto; }
.nav-list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; flex: 0 0 auto; }
.nav-link,
.nav-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-trigger:hover, .nav-trigger[aria-expanded="true"] { color: var(--teal-700); background: #eef8f7; }
.nav-caret { width: 7px; height: 7px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 310px;
  padding: 10px;
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.dropdown.is-open { display: grid; }
.dropdown a { padding: 10px 12px; color: var(--ink); text-decoration: none; border-radius: 8px; font-size: .9rem; }
.dropdown a:hover { background: var(--canvas); color: var(--teal-700); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
.menu-button { display: none; }
.search-icon { width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 50%; position: relative; }
.search-icon::after { content: ""; position: absolute; width: 7px; height: 2px; background: currentColor; right: -5px; bottom: -2px; transform: rotate(45deg); }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--teal-700); }
.btn-primary:hover { color: #fff; background: #0b5e58; }
.btn-dark { color: #fff; background: var(--navy-900); }
.btn-dark:hover { color: #fff; background: var(--navy-950); }
.btn-outline { color: var(--navy-900); background: #fff; border-color: var(--line-strong); }
.btn-outline:hover { color: var(--teal-700); border-color: var(--teal-700); }
.btn-quiet { color: var(--navy-900); background: transparent; border-color: var(--line); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
  border-bottom: 1px solid #0b2238;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 66%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -210px;
  border: 76px solid rgba(16,185,129,.2);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; padding: 64px 0 58px; display: grid; grid-template-columns: minmax(0,1.4fr) minmax(290px,.6fr); gap: 56px; align-items: end; }
.eyebrow { color: #7dd3c7; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1, h2, h3, h4 { font-family: Manrope, ui-sans-serif, system-ui, sans-serif; line-height: 1.18; letter-spacing: -.025em; color: var(--navy-950); }
h1 { margin: 12px 0 18px; font-size: clamp(2.45rem, 5vw, 4.6rem); max-width: 760px; }
.hero h1 { color: #fff; }
.hero-lede { max-width: 690px; margin: 0 0 28px; color: #d7e5ef; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero .btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.hero .btn-outline:hover { border-color: #fff; }

.hero-aside {
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 44px rgba(0,0,0,.18);
}
.hero-aside p { color: var(--muted); margin: 8px 0 16px; font-size: .92rem; }
.hero-aside h2 { margin: 0; font-size: 1.15rem; }
.search-box { display: flex; gap: 8px; }
.search-box input { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--ink); }
.search-box button { flex: 0 0 auto; }

.section { padding: 72px 0; }
.section-sm { padding: 46px 0; }
.section-white { background: #fff; }
.section-dark { color: #e9f1f6; background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-header { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-header h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-header p { max-width: 640px; margin: 8px 0 0; color: var(--muted); }
.section-dark .section-header p { color: #b8cad8; }

.path-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.path-card {
  min-height: 154px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.path-card:hover { transform: translateY(-3px); border-color: #94bfb9; box-shadow: var(--shadow); }
.path-number { color: var(--teal-700); font: 700 .78rem/1 Manrope, sans-serif; letter-spacing: .12em; }
.path-card strong { font: 700 1.02rem/1.3 Manrope, sans-serif; }

.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.fact { padding: 24px; background: #fff; }
.fact strong { display: block; color: var(--navy-900); font: 850 2rem/1.1 Manrope, sans-serif; }
.fact span { display: block; margin-top: 8px; color: var(--muted); }
.fact small { display: block; margin-top: 14px; color: #6b7280; font-size: .75rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-body { padding: 20px; }
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0 0 14px; color: var(--muted); }
.card-link { font-weight: 700; text-decoration: none; }
.card-link::after { content: "  →"; }

.map-card { position: relative; }
.map-thumb { aspect-ratio: 4 / 3; overflow: hidden; background: #e7edf3; border-bottom: 1px solid var(--line); }
.map-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms ease; }
.map-card:hover .map-thumb img { transform: scale(1.025); }
.map-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 26px;
  padding: 3px 8px;
  color: var(--navy-900);
  background: #eef3f7;
  border: 1px solid #d7e0e8;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.badge-operational { color: var(--success); background: var(--success-bg); border-color: #b9e2c8; }
.badge-proposed { color: #7b4b00; background: var(--amber-100); border-color: #f4d27b; }
.badge-approved { color: #174ea6; background: #eaf1ff; border-color: #bfd0f5; }
.badge-construction { color: #65420a; background: #fff7df; border-color: #ecd59c; }
.badge-unconfirmed { color: var(--danger); background: var(--danger-bg); border-color: #f2c2b8; }

.tracker { display: grid; gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.tracker-row { display: grid; grid-template-columns: 1.2fr .45fr 1.8fr auto; gap: 20px; align-items: center; padding: 18px 20px; background: #fff; }
.tracker-row strong { color: var(--navy-900); }
.tracker-row p { margin: 0; color: var(--muted); font-size: .92rem; }

.update-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.update-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--teal-700); border-radius: 4px 4px var(--radius-md) var(--radius-md); }
.update-card h3 { margin: 12px 0 10px; font-size: 1.15rem; }
.update-card p { color: var(--muted); }
.meta-line { color: #667085; font-size: .78rem; }

.resource-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.download-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.download-card + .download-card { margin-top: 12px; }
.download-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.download-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.research-cta { position: relative; overflow: hidden; padding: 38px; color: #fff; background: var(--teal-700); border-radius: var(--radius-lg); }
.research-cta::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -110px; border: 34px solid rgba(255,255,255,.13); border-radius: 50%; }
.research-cta h2 { color: #fff; margin: 0 0 8px; }
.research-cta p { max-width: 680px; margin: 0 0 20px; color: #d9fffb; }

.page-hero { padding: 52px 0 44px; background: #fff; border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--muted); }
.page-hero h1 { margin: 18px 0 14px; font-size: clamp(2.1rem, 4vw, 3.6rem); }
.direct-answer { max-width: 800px; margin: 0; color: #344054; font-size: 1.12rem; }
.page-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; color: var(--muted); font-size: .82rem; }

.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px) minmax(220px, 1fr); gap: 36px; align-items: start; }
.toc, .source-panel { position: sticky; top: 102px; }
.toc { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.toc strong { display: block; margin-bottom: 10px; font-family: Manrope, sans-serif; }
.toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .86rem; text-decoration: none; border-top: 1px solid #edf0f3; }
.toc a:hover { color: var(--teal-700); }
.article h2 { margin: 42px 0 12px; font-size: 1.8rem; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 28px 0 8px; font-size: 1.24rem; }
.article p, .article li { color: #344054; }
.article ul, .article ol { padding-left: 22px; }
.callout { padding: 18px 20px; margin: 24px 0; border-left: 4px solid var(--amber-600); background: #fff8e8; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.callout strong { color: #6b4300; }
.verification-note { padding: 18px; background: #eef8f7; border: 1px solid #b8ded9; border-radius: var(--radius-md); }

.data-table-wrap { overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 13px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--navy-900); background: #f1f5f8; font-family: Manrope, sans-serif; font-size: .86rem; }
tr:last-child td { border-bottom: 0; }

.source-card { padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); font-size: .86rem; }
.source-card + .source-card { margin-top: 10px; }
.source-card strong { display: block; color: var(--navy-900); }
.source-card p { margin: 6px 0; color: var(--muted); }

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, .55fr));
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.field { display: grid; gap: 6px; }
.field label { color: var(--navy-900); font-size: .82rem; font-weight: 700; }
.required-mark { color: #c45a42; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
#formStatus { min-height: 1.35em; margin: 12px 0 0; color: #5a6f75; font-size: .84rem; }
#formStatus.is-success, .download-gate-status.is-success { color: #08745b; }
#formStatus.is-error, .download-gate-status.is-error { color: #a33a2a; }
.btn:disabled { cursor: wait; opacity: .68; transform: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field-wide { grid-column: 1 / -1; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-note { padding: 14px 16px; color: var(--muted); background: #f1f5f8; border-radius: 8px; font-size: .86rem; }

.directory-list { display: grid; gap: 12px; }
.directory-item { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(180px,.55fr) auto; gap: 18px; align-items: center; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.directory-item h2, .directory-item h3 { margin: 0 0 5px; font-size: 1.12rem; }
.directory-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.accordion { display: grid; gap: 10px; }
.accordion-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.accordion-button { width: 100%; min-height: 58px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--navy-900); background: #fff; border: 0; text-align: left; font-weight: 700; cursor: pointer; }
.accordion-button::after { content: "+"; font-size: 1.3rem; font-weight: 400; }
.accordion-button[aria-expanded="true"]::after { content: "−"; }
.accordion-panel { padding: 0 18px 18px; color: #344054; }

.timeline { position: relative; display: grid; gap: 0; margin: 24px 0; }
.timeline::before { content: ""; position: absolute; left: 99px; top: 8px; bottom: 8px; width: 2px; background: #b8d7d3; }
.timeline-item { position: relative; display: grid; grid-template-columns: 78px 1fr; gap: 44px; padding: 0 0 26px; }
.timeline-item::before { content: ""; position: absolute; left: 93px; top: 7px; width: 14px; height: 14px; background: var(--teal-700); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #7dbab3; }
.timeline-year { color: var(--teal-700); font-family: Manrope, sans-serif; font-weight: 900; }
.timeline-item h3 { margin: 0 0 6px; }
.timeline-item p { margin: 0; }

.result-count { margin: 0 0 14px; color: var(--muted); }
.search-results { display: grid; gap: 12px; }
.search-result { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.search-result h2 { margin: 4px 0 8px; font-size: 1.2rem; }
.search-result p { margin: 0 0 8px; color: var(--muted); }
.search-result mark { color: inherit; background: #fff0a8; border-radius: 2px; }
.empty-state { padding: 34px; text-align: center; background: #fff; border: 1px dashed var(--line-strong); border-radius: var(--radius-md); }

.map-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.map-dialog { position: fixed; z-index: 600; inset: 0; display: none; padding: 22px; background: rgba(5,17,29,.92); }
.map-dialog.is-open { display: grid; grid-template-rows: auto minmax(0,1fr); }
.map-dialog-head { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #fff; }
.map-dialog-head h2 { margin: 0; color: #fff; font-size: 1.1rem; }
.map-controls { display: flex; gap: 8px; }
.map-controls button { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
.map-stage { position: relative; overflow: hidden; display: grid; place-items: center; background: #172033; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); touch-action: none; }
.map-stage img { max-width: none; width: min(100%, 1400px); transform-origin: center; cursor: grab; user-select: none; }
.map-stage img.is-dragging { cursor: grabbing; }

.status-key { display: flex; flex-wrap: wrap; gap: 8px; }
.correction-notice { margin-top: 28px; padding: 18px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue-600); border-radius: var(--radius-sm); }

.letter-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 28px; }
.letter-nav a { width: 40px; height: 40px; display: grid; place-items: center; color: var(--navy-900); background: #fff; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-weight: 700; }
.definition-list dt { margin-top: 22px; color: var(--navy-900); font: 700 1.05rem/1.3 Manrope, sans-serif; }
.definition-list dd { margin: 6px 0 0; color: #344054; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { padding: 18px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; }
.related-card:hover { border-color: var(--teal-600); }

.site-footer { color: #cbd8e1; background: var(--navy-950); padding: 52px 0 90px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.site-footer h2, .site-footer h3 { color: #fff; margin-top: 0; }
.site-footer h3 { font-size: 1rem; }
.site-footer a { display: block; color: #cbd8e1; margin: 8px 0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-disclaimer { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; }
.footer-bottom { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; color: #9db0be; font-size: .78rem; }

.mobile-nav {
  position: fixed;
  z-index: 300;
  inset: 0 0 0 auto;
  width: min(88vw, 390px);
  padding: 20px;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0,0,0,.16);
  transform: translateX(105%);
  transition: transform var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav a { display: block; min-height: 46px; padding: 11px 8px; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.scrim { position: fixed; z-index: 250; inset: 0; display: none; background: rgba(8,27,44,.62); }
.scrim.is-open { display: block; }

.bottom-nav { display: none; }
.whatsapp-float { position: fixed; right: 22px; bottom: 24px; z-index: 40; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: #168b62; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; box-shadow: 0 8px 24px rgba(8,76,57,.2); text-decoration: none; }
.whatsapp-float svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-float:hover { color: #fff; background: #0f7752; transform: translateY(-2px); }
.mobile-contact-actions { display: none; }

.search-dialog {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 11vh 20px 20px;
  background: rgba(8,27,44,.78);
}
.search-dialog.is-open { display: flex; }
.search-panel { width: min(100%, 720px); padding: 24px; background: #fff; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.search-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.search-panel h2 { margin: 0; font-size: 1.35rem; }
.search-panel .search-box { margin-top: 18px; }

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

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

/* Shared dark surface system */
.skip-link,
.notice-bar,
.btn-primary,
.btn-dark,
.hero:not(.home-hero),
.section-dark,
.region-visual,
.hero-system,
.home-facts,
.resource-tile-primary,
.research-cta,
.site-footer,
.home-page .hero-actions .btn-primary {
  background-color: #064f40;
  background-image: var(--brand-green-surface);
  background-size: var(--brand-green-surface-size);
}
.btn-primary,
.btn-dark,
.home-page .hero-actions .btn-primary { color: #fff; border-color: rgba(255,255,255,.22); }
.btn-primary:hover,
.btn-dark:hover,
.home-page .hero-actions .btn-primary:hover { color: #fff; background-image: var(--brand-green-surface); background-size: var(--brand-green-surface-size); filter: brightness(1.08); }
.home-facts::before { opacity: 0; }

/* Research paths: compact matte cards with stronger icon hierarchy */
.home-page .path-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: auto; gap: 14px; }
.home-page .path-card:nth-child(n) { min-height: 248px; grid-column: span 1; grid-row: auto; justify-content: flex-start; gap: 0; padding: 24px; color: var(--home-ink); border: 1px solid rgba(18,82,72,.12); border-radius: 3px 22px 3px 22px; box-shadow: none; }
.home-page .path-card:nth-child(1) { background: #e8f6ef; }
.home-page .path-card:nth-child(2) { background: #edf4ff; }
.home-page .path-card:nth-child(3) { background: #fff4dd; }
.home-page .path-card:nth-child(4) { background: #f2edff; }
.home-page .path-card:nth-child(5) { background: #fff0e9; }
.home-page .path-card:nth-child(n) .path-number { color: #617b78; }
.home-page .path-card:nth-child(n) .path-description { color: #526b70; }
.home-page .path-card:nth-child(n) .path-icon { width: 66px; height: 66px; color: #fff; border: 0; border-radius: 50%; }
.home-page .path-card:nth-child(1) .path-icon { color: #fff; background: #159565; }
.home-page .path-card:nth-child(2) .path-icon { background: #3976cf; }
.home-page .path-card:nth-child(3) .path-icon { background: #d98918; }
.home-page .path-card:nth-child(4) .path-icon { background: #7557c8; }
.home-page .path-card:nth-child(5) .path-icon { background: #ce6449; }
.home-page .path-card .path-icon svg { width: 29px; height: 29px; stroke-width: 1.7; }
.home-page .path-card strong { max-width: none; margin-top: 24px; font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.25; }
.home-page .path-card .path-description { margin-top: 9px; font-size: .82rem; line-height: 1.55; }
.home-page .path-card:hover { border-color: rgba(18,82,72,.25); box-shadow: 0 14px 28px rgba(19,74,64,.07); }

/* Shared footer and contact details */
.footer-grid { grid-template-columns: 1.35fr .72fr .72fr 1.18fr; }
.footer-intro > p { max-width: 390px; }
.footer-contact strong { display: block; margin-bottom: 8px; color: #fff; font-size: .92rem; }
.footer-contact address { margin-bottom: 13px; color: #c8ddd6; font-size: .84rem; font-style: normal; line-height: 1.55; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-disclaimer a,
.footer-bottom a { display: inline; color: #d8f5eb; }
.footer-bottom a:hover { color: #fff; transform: none; }

.contact-details-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-bottom: 32px; }
.contact-detail-card { min-height: 190px; padding: 26px; background: #fff; border: 1px solid #d0e6dc; border-radius: 18px 18px 18px 6px; }
.contact-detail-card:nth-child(2) { background: #fff; border-color: #d6e2f4; }
.contact-detail-card:nth-child(3) { background: #fff; border-color: #eadfca; }
.contact-detail-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; color: #08786f; background: #e8f7f0; border: 1px solid #b9e4d4; border-radius: 50%; }
.contact-detail-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-card:nth-child(2) .contact-detail-icon { color: #2964b8; background: #e3edff; border-color: #c8dafa; }
.contact-detail-card:nth-child(3) .contact-detail-icon { color: #a96300; background: #fff0d2; border-color: #f2d59d; }
.contact-detail-card h2 { margin: 0 0 8px; font-size: 1.08rem; }
.contact-detail-card p,
.contact-detail-card address { margin: 0; color: #50656d; font-size: .92rem; font-style: normal; line-height: 1.6; }
.contact-detail-card a { color: var(--teal-700); font-weight: 750; text-decoration: none; }
.legal-summary { padding: 22px 24px; background: #eef8f3; border-left: 4px solid #159565; border-radius: 0 14px 14px 0; }
.legal-summary p:last-child { margin-bottom: 0; }

/* Premium redesign layer — 12 September 2026 */
:root {
  --navy-950: #061827;
  --navy-900: #0b2b40;
  --navy-800: #123f57;
  --teal-700: #08786f;
  --teal-600: #0b9a8c;
  --teal-400: #46c8b4;
  --blue-600: #2365d8;
  --amber-600: #cf7800;
  --amber-100: #fff2cd;
  --paper: #ffffff;
  --canvas: #f3f7f7;
  --canvas-deep: #eaf1f1;
  --ink: #142331;
  --muted: #576775;
  --line: #d9e4e4;
  --line-strong: #bdcccc;
  --success: #17643a;
  --success-bg: #e9f7ef;
  --danger: #973e32;
  --danger-bg: #fff0ed;
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(7, 38, 54, .025);
  --shadow: 0 8px 22px rgba(7, 38, 54, .06);
  --shadow-lift: 0 14px 34px rgba(7, 38, 54, .09);
  --container: 1240px;
  --reading: 760px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --ease: 260ms cubic-bezier(.2,.75,.25,1);
  --ease-slow: 700ms cubic-bezier(.2,.75,.25,1);
}

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

body {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(70, 200, 180, .08), transparent 25rem),
    linear-gradient(180deg, #f8fbfb 0%, var(--canvas) 38%, #f7faf9 100%);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(rgba(11, 43, 64, .055) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

::selection { color: #fff; background: var(--teal-700); }

a, button, input, select, textarea { transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease); }

.container { width: min(calc(100% - clamp(2rem, 6vw, 5rem)), var(--container)); }

.notice-bar {
  position: relative;
  z-index: 102;
  background: linear-gradient(90deg, #061827 0%, #0a3045 50%, #061827 100%);
  background-size: 180% 100%;
  animation: notice-flow 18s ease-in-out infinite alternate;
}

.notice-inner { min-height: 38px; font-size: .79rem; letter-spacing: .004em; }
.notice-label { color: #062235; background: #ffd675; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }

.site-header {
  top: 0;
  background: rgba(255, 255, 255, .84);
  border-bottom-color: rgba(177, 197, 198, .62);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.site-header.is-scrolled { background: rgba(255,255,255,.94); border-bottom-color: rgba(157,181,183,.78); box-shadow: 0 4px 18px rgba(6,31,45,.045); }
.header-row { min-height: 82px; gap: 24px; }

.brand { gap: 12px; }
.brand-logo { display: block; width: clamp(218px, 19vw, 260px); height: auto; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--teal-600), var(--navy-800));
  border-radius: 13px 4px 13px 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.brand-mark::after { content: ""; position: absolute; inset: -60% 35% -60% auto; width: 10px; background: rgba(255,255,255,.24); transform: rotate(28deg); }
.brand-copy strong { font-size: 1rem; letter-spacing: -.025em; }
.brand-copy small { color: #637580; letter-spacing: .015em; }

.nav-list { gap: 3px; }
.nav-link, .nav-trigger { position: relative; padding-inline: 10px; border-radius: 10px; font-size: .84rem; }
.nav-link::after, .nav-trigger::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 5px; height: 2px; background: var(--teal-600); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after, .nav-trigger:hover::after, .nav-trigger.is-active::after { transform: scaleX(1); }
.nav-link.is-active, .nav-trigger.is-active { color: var(--teal-700); background: rgba(11,154,140,.07); }

.dropdown {
  top: calc(100% + 10px);
  padding: 10px;
  border-color: rgba(170,193,195,.72);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(6,30,44,.1);
  transform-origin: top left;
}
.dropdown.is-open { animation: menu-arrive 180ms cubic-bezier(.2,.8,.2,1) both; }
.dropdown a { position: relative; padding: 11px 13px; }
.dropdown a::after { content: "→"; position: absolute; right: 12px; opacity: 0; transform: translateX(-5px); transition: opacity var(--ease), transform var(--ease); }
.dropdown a:hover::after, .dropdown a:focus-visible::after { opacity: 1; transform: translateX(0); }

.icon-button, .menu-button { border-color: #c7d6d6; border-radius: 12px; box-shadow: none; }
.header-actions .icon-button { border-radius: 50%; }
.icon-button:hover, .menu-button:hover { color: var(--teal-700); background: #effaf8; border-color: #8fc6bf; box-shadow: 0 5px 14px rgba(8,120,111,.07); }

.btn {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  padding: 11px 20px;
  overflow: hidden;
  border-radius: 11px;
  letter-spacing: -.01em;
  box-shadow: none;
}
.btn::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.2) 45%, transparent 65%); transform: translateX(-130%); transition: transform 650ms ease; }
.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 18px rgba(7,38,54,.08); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary { background: linear-gradient(135deg, var(--teal-700), #096c79); box-shadow: none; }
.btn-primary:hover { background: linear-gradient(135deg, #066b64, #075d6a); box-shadow: 0 8px 20px rgba(8,120,111,.12); }
.btn-dark { background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); }
.btn-outline { background: rgba(255,255,255,.82); }

.hero {
  min-height: min(720px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(46, 200, 180, .2), transparent 25rem),
    radial-gradient(circle at 18% 85%, rgba(35, 101, 216, .16), transparent 28rem),
    linear-gradient(130deg, #061827 0%, #0b3046 50%, #0a263a 100%);
}
.hero::before { opacity: .15; background-size: 56px 56px; animation: grid-drift 28s linear infinite; }
.hero::after { width: 520px; height: 520px; right: -110px; top: -275px; border-width: 1px; border-color: rgba(97,218,199,.35); box-shadow: 0 0 100px rgba(11,154,140,.1), inset 0 0 80px rgba(11,154,140,.08); }
.hero-inner { padding: clamp(4.8rem, 10vh, 7.5rem) 0; grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr); gap: clamp(3rem, 7vw, 6.5rem); align-items: center; }
.hero-inner > div:first-child { max-width: 760px; }
.eyebrow { color: var(--teal-700); font-size: .76rem; letter-spacing: .16em; }
.hero .eyebrow { color: #78dfd0; }
h1, h2 { letter-spacing: -.035em; text-wrap: balance; }
h3, h4 { letter-spacing: clamp(-.35px, -.02vw, -.1px); text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 5.4vw, 5.15rem); line-height: 1.02; }
.hero h1 { max-width: 720px; margin: 16px 0 22px; text-shadow: 0 4px 36px rgba(0,0,0,.2); }
.hero-lede { max-width: 650px; margin-bottom: 32px; color: #d2e3e8; font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.72; }
.hero-actions { gap: 12px; }
.hero .btn-outline { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.3); box-shadow: none; backdrop-filter: blur(8px); }
.hero .btn-outline:hover { background: rgba(255,255,255,.11); }

.hero-aside {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.65);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(22px);
}
.hero-aside::before { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -100px; background: radial-gradient(circle, rgba(70,200,180,.18), transparent 68%); }
.hero-aside h2 { margin-top: 20px; font-size: 1.12rem; }
.hero-aside p { margin-bottom: 18px; }

.region-visual { position: relative; min-height: 230px; overflow: hidden; background: linear-gradient(145deg, #071e2f, #0c3c4d); border: 1px solid rgba(255,255,255,.15); border-radius: 22px 22px 22px 7px; box-shadow: inset 0 1px rgba(255,255,255,.1); }
.region-visual::before { content: ""; position: absolute; inset: 0; 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: 32px 32px; mask-image: radial-gradient(circle at center, #000, transparent 82%); }
.region-route { position: absolute; left: 16%; right: 13%; top: 51%; height: 3px; background: linear-gradient(90deg, rgba(90,222,201,.1), #60dac7 18%, #f4bf5b 62%, rgba(96,218,199,.2)); border-radius: 99px; transform: rotate(-12deg); box-shadow: 0 0 16px rgba(96,218,199,.55); }
.region-route::after { content: ""; position: absolute; top: -3px; width: 9px; height: 9px; border-radius: 50%; background: #fff3b0; box-shadow: 0 0 16px #ffd36a; animation: route-pulse 4.8s ease-in-out infinite; }
.region-node { position: absolute; display: grid; gap: 2px; min-width: 88px; padding: 8px 10px; color: #d6e7eb; background: rgba(5,23,36,.78); border: 1px solid rgba(115,221,204,.35); border-radius: 10px; box-shadow: 0 10px 28px rgba(0,0,0,.2); font-size: .66rem; line-height: 1.25; backdrop-filter: blur(8px); }
.region-node strong { color: #fff; font-size: .77rem; letter-spacing: -.01em; }
.region-node::before { content: ""; position: absolute; width: 7px; height: 7px; left: -4px; top: 50%; background: var(--teal-400); border: 2px solid #092536; border-radius: 50%; box-shadow: 0 0 0 4px rgba(70,200,180,.16); }
.region-node-a { left: 8%; top: 22%; }
.region-node-b { right: 8%; top: 17%; }
.region-node-c { left: 30%; bottom: 12%; }
.region-node-d { right: 12%; bottom: 13%; }
.region-visual-label { position: absolute; left: 14px; bottom: 12px; color: rgba(219,241,240,.7); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }

.search-box input { min-height: 50px; padding: 11px 14px; border-color: #c3d1d2; border-radius: 10px; box-shadow: inset 0 1px 2px rgba(8,35,49,.035); }
.search-box input:hover { border-color: #8fb8b6; }
.search-box input:focus { border-color: var(--teal-600); outline: none; box-shadow: 0 0 0 4px rgba(11,154,140,.12); }

.section { padding: var(--section-space) 0; }
.section-sm { padding: clamp(3.4rem, 6vw, 5.4rem) 0; }
.section-white { position: relative; background: rgba(255,255,255,.82); border-block: 1px solid rgba(206,220,220,.7); }
.section-dark { background: linear-gradient(140deg, var(--navy-950), #0a3044); }
.section-header { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-header h2 { margin-top: 5px; font-size: clamp(2rem, 3.4vw, 3.15rem); line-height: 1.08; }
.section-header p { max-width: 680px; font-size: 1.01rem; }

.path-grid { gap: 14px; }
.path-card { position: relative; min-height: 180px; padding: 24px; overflow: hidden; border-color: #d6e3e3; border-radius: 18px 18px 18px 5px; box-shadow: var(--shadow-sm); }
.path-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(70,200,180,.17), transparent 42%); opacity: 0; transition: opacity var(--ease); }
.path-card::after { content: "↗"; position: absolute; right: 20px; top: 17px; color: #7ba39f; font-size: 1.2rem; transition: color var(--ease), transform var(--ease); }
.path-card:hover { transform: translateY(-6px); border-color: #8ec8c1; box-shadow: var(--shadow-lift); }
.path-card:hover::before { opacity: 1; }
.path-card:hover::after { color: var(--teal-700); transform: translate(3px,-3px); }
.path-number { font-size: .72rem; }
.path-card strong { position: relative; font-size: 1.04rem; }

.facts-grid { gap: 0; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.fact { position: relative; min-height: 206px; padding: 28px; background: rgba(255,255,255,.88); border-block: 1px solid var(--line); }
.fact:first-child { border-left: 1px solid var(--line); border-radius: var(--radius-lg) 0 0 7px; }
.fact:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius-lg) 7px 0; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact::after { content: ""; position: absolute; left: 28px; right: 28px; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--teal-600), transparent); transform: scaleX(0); transform-origin: left; transition: transform 520ms ease; }
.fact:hover::after { transform: scaleX(1); }
.fact strong { font-size: clamp(2rem, 3vw, 2.8rem); letter-spacing: -.055em; }
.fact span { font-size: .96rem; line-height: 1.5; }
.fact small { margin-top: 20px; font-size: .72rem; letter-spacing: .025em; text-transform: uppercase; }

.card-grid { gap: clamp(1rem, 2vw, 1.5rem); }
.card {
  position: relative;
  border-color: #d6e2e2;
  border-radius: 20px 20px 20px 6px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.card::after, .update-card::after, .download-card::after, .related-card::after, .search-result::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(52,190,171,.11), transparent 38%); opacity: 0; transition: opacity var(--ease); border-radius: inherit; }
.card:hover, .download-card:hover, .related-card:hover, .search-result:hover { transform: translateY(-5px); border-color: #9bc9c4; box-shadow: var(--shadow-lift); }
.card:hover::after, .update-card:hover::after, .download-card:hover::after, .related-card:hover::after, .search-result:hover::after { opacity: 1; }
.card > *, .update-card > *, .download-card > *, .related-card > *, .search-result > * { position: relative; z-index: 1; }
.card-body { padding: 24px; }
.card h3 { font-size: 1.22rem; }
.card p { line-height: 1.65; }
.card-link { position: relative; display: inline-flex; align-items: center; gap: 6px; color: var(--teal-700); }
.card-link::after { content: "→"; transition: transform var(--ease); }
.card-link:hover::after { transform: translateX(4px); }

.map-thumb { aspect-ratio: 16 / 11; border-bottom-color: #d2dede; }
.map-thumb img { transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter var(--ease); }
.map-card:hover .map-thumb img { transform: scale(1.055); filter: saturate(1.06) contrast(1.02); }
.map-meta { gap: 7px; }

.badge { min-height: 28px; padding: 4px 10px; border-radius: 999px; font-size: .7rem; letter-spacing: .045em; text-transform: uppercase; }
.sector-guide-grid .card-body > .badge { display: flex; width: max-content; margin: 0 0 4px auto; }

.tracker { gap: 10px; overflow: visible; background: transparent; border: 0; border-radius: 0; }
.tracker-row { position: relative; grid-template-columns: 1.05fr .5fr 1.65fr auto; padding: 21px 24px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 14px 14px 14px 5px; box-shadow: var(--shadow-sm); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.tracker-row::before { content: ""; position: absolute; left: -5px; top: 50%; width: 10px; height: 10px; background: var(--teal-600); border: 3px solid var(--canvas); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 1px rgba(8,120,111,.25); }
.tracker-row:hover { transform: translateX(5px); border-color: #a0cbc7; box-shadow: var(--shadow); }

.update-grid { gap: 20px; }
.update-card { position: relative; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-top: 0; border-radius: 6px 22px 22px 22px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.update-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--teal-600), var(--blue-600), transparent 85%); }
.update-card:hover { transform: translateY(-6px); border-color: #9fcac5; box-shadow: var(--shadow-lift); }
.update-card h3 { margin-top: 16px; font-size: 1.28rem; }
.meta-line { color: #687984; font-size: .75rem; line-height: 1.5; letter-spacing: .015em; }

.resource-split { gap: clamp(2rem, 5vw, 4.5rem); }
.download-card { position: relative; padding: 26px; border-color: #d5e1e1; border-radius: 18px 18px 18px 5px; box-shadow: var(--shadow-sm); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.download-card + .download-card { margin-top: 16px; }

.legacy-diagram-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.legacy-diagram-card { display: grid; grid-template-columns: 42px minmax(0,1fr) 30px; align-items: center; gap: 12px; min-height: 76px; padding: 12px; color: var(--navy-900); background: linear-gradient(145deg,#f2faf7,#fff); border: 1px solid #d2e3de; border-radius: 3px 16px 3px 16px; text-decoration: none; transition: transform var(--ease), border-color var(--ease), background-color var(--ease); }
.legacy-diagram-card:hover { color: var(--navy-900); background: #fff; border-color: #7ebeb2; transform: translateY(-2px); }
.legacy-diagram-icon { width: 42px; height: 42px; display: grid; place-items: center; color: #087c68; background: #e1f3ee; border-radius: 2px 12px 2px 12px; }
.legacy-diagram-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.legacy-diagram-copy { min-width: 0; display: grid; gap: 2px; }
.legacy-diagram-copy small { color: #708287; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legacy-diagram-copy strong { overflow: hidden; color: inherit; font-size: .9rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.legacy-diagram-arrow { width: 30px; height: 30px; display: grid; place-items: center; color: #087c68; background: rgba(255,255,255,.8); border: 1px solid #c9ddd7; border-radius: 50%; transition: color var(--ease), background-color var(--ease), transform var(--ease); }
.legacy-diagram-card:hover .legacy-diagram-arrow { color: #fff; background: #087c68; transform: translateY(2px); }

.research-cta { padding: clamp(2.2rem, 5vw, 4.4rem); background: radial-gradient(circle at 85% 20%, rgba(98,222,202,.36), transparent 20rem), linear-gradient(130deg, #08786f, #075364 70%, #092f46); border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 10px; box-shadow: 0 16px 40px rgba(6,70,73,.12); }
.research-cta::after { width: 380px; height: 380px; right: -130px; top: -210px; border-width: 1px; border-color: rgba(255,255,255,.24); }
.research-cta h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.research-cta p { font-size: 1.05rem; }

.page-hero { position: relative; overflow: hidden; padding: clamp(3.7rem, 7vw, 6.4rem) 0 clamp(3.3rem, 6vw, 5.6rem); background: radial-gradient(circle at 82% 10%, rgba(70,200,180,.14), transparent 24rem), linear-gradient(135deg, #fff, #f1f8f7 75%); border-bottom-color: #d3e1e1; }
.page-hero::after { content: ""; position: absolute; width: 340px; height: 340px; right: -170px; bottom: -235px; border: 1px solid rgba(8,120,111,.17); border-radius: 50%; box-shadow: 0 0 0 54px rgba(8,120,111,.035), 0 0 0 108px rgba(8,120,111,.02); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { font-size: .78rem; letter-spacing: .025em; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal-700); }
.page-hero h1 { max-width: 920px; margin: 22px 0 18px; font-size: clamp(2.05rem, 3.8vw, 3.75rem); font-weight: 600; line-height: 1.04; letter-spacing: -.025em; }
.direct-answer { max-width: 860px; color: #3c5260; font-size: clamp(1.05rem, 1.7vw, 1.19rem); line-height: 1.75; }
.page-meta { gap: 9px; margin-top: 24px; }
.page-meta span { padding: 5px 10px; background: rgba(255,255,255,.7); border: 1px solid #d4e1e1; border-radius: 999px; }

.article-layout { grid-template-columns: 230px minmax(0, 760px) minmax(220px, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.toc, .source-panel { top: 112px; }
.toc { padding: 20px; border-color: #d3e0e0; border-radius: 16px 16px 16px 5px; box-shadow: var(--shadow-sm); }
.toc strong { padding-bottom: 10px; }
.toc a { position: relative; padding: 9px 4px 9px 0; border-top-color: #e8efef; }
.toc a::before { content: ""; position: absolute; left: -20px; top: 12px; bottom: 12px; width: 2px; background: var(--teal-600); transform: scaleY(0); transition: transform var(--ease); }
.toc a:hover::before { transform: scaleY(1); }
.article { min-width: 0; }
.page-article .article h2 { margin: 44px 0 14px; font-size: clamp(1.45rem, 2.5vw, 1.75rem); }
.article h3 { margin-top: 32px; font-size: 1.3rem; }
.article p, .article li { color: #384e5b; }
.article li + li { margin-top: 7px; }
.callout { padding: 21px 23px; margin: 30px 0; border-left-width: 3px; background: linear-gradient(135deg, #fff9ea, #fffdf7); border-radius: 5px 15px 15px 5px; box-shadow: none; }
.verification-note { padding: 22px; background: linear-gradient(135deg, #eefaf8, #f8fcfb); border-color: #acd8d2; border-radius: 16px 16px 16px 5px; }

.data-table-wrap { margin: 28px 0; border-color: #cfdede; border-radius: 16px 16px 16px 5px; box-shadow: var(--shadow-sm); }
table { font-size: .94rem; }
th, td { padding: 15px 17px; }
th { background: #edf5f4; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr { transition: background var(--ease); }
tbody tr:hover { background: #f3faf9; }

.source-card { padding: 18px; border-color: #d4e1e1; border-radius: 14px 14px 14px 5px; box-shadow: var(--shadow-sm); }
.source-card + .source-card { margin-top: 12px; }

.filter-bar { gap: 14px; margin-bottom: 30px; padding: 20px; background: rgba(255,255,255,.9); border-color: #d2e0e0; border-radius: 18px 18px 18px 5px; box-shadow: var(--shadow-sm); }
.field { gap: 7px; }
.field label { font-size: .78rem; letter-spacing: .025em; }
.field input, .field select, .field textarea { min-height: 50px; padding: 11px 13px; border-color: #c5d3d4; border-radius: 10px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #93bbb8; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-600); outline: none; box-shadow: 0 0 0 4px rgba(11,154,140,.12); }
.form-grid { gap: 18px; }
.form-note { padding: 16px 18px; background: #edf4f4; border-left: 3px solid #94bdb9; border-radius: 5px 10px 10px 5px; }

.directory-list { gap: 14px; }
.directory-item { padding: 22px 24px; border-color: #d5e2e2; border-radius: 16px 16px 16px 5px; box-shadow: var(--shadow-sm); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.directory-item:hover { transform: translateX(5px); border-color: #9bc9c4; box-shadow: var(--shadow); }

.accordion { gap: 12px; }
.accordion-item { border-color: #d4e1e1; border-radius: 16px 16px 16px 5px; box-shadow: var(--shadow-sm); }
.accordion-button { min-height: 64px; padding: 18px 20px; }
.accordion-button:hover { color: var(--teal-700); background: #f4faf9; }
.accordion-button::after { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal-700); background: #eaf6f4; border-radius: 50%; transition: transform var(--ease); }
.accordion-button[aria-expanded="true"]::after { transform: rotate(180deg); }
.accordion-panel { padding: 0 20px 20px; }

.timeline { gap: 0; margin: 34px 0; }
.timeline::before { left: 103px; width: 3px; background: linear-gradient(to bottom, var(--teal-600), #8ed1c8, #d5e7e4); border-radius: 99px; }
.timeline-item { grid-template-columns: 82px 1fr; gap: 47px; padding-bottom: 34px; }
.timeline-item::before { left: 96px; width: 17px; height: 17px; background: #fff; border: 4px solid var(--teal-600); box-shadow: 0 0 0 5px rgba(11,154,140,.1); transition: transform var(--ease), box-shadow var(--ease); }
.timeline-item:hover::before { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(11,154,140,.1); }
.timeline-year { font-size: .92rem; letter-spacing: .03em; }

.search-results { gap: 14px; }
.search-result { position: relative; padding: 23px 25px; border-color: #d4e1e1; border-radius: 17px 17px 17px 5px; box-shadow: var(--shadow-sm); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.search-result:focus { outline: 3px solid #f2b648; outline-offset: 3px; }
.empty-state { padding: 48px 30px; border-color: #b9cccc; border-radius: 20px 20px 20px 6px; }

.map-dialog { padding: 24px; background: rgba(3,15,24,.93); backdrop-filter: blur(15px); }
.map-stage { border-color: rgba(255,255,255,.22); border-radius: 18px; box-shadow: 0 16px 42px rgba(0,0,0,.22); }
.map-stage img { transition: transform 120ms linear; }

.letter-nav a { border-color: #cbdada; border-radius: 10px 10px 10px 3px; box-shadow: var(--shadow-sm); }
.letter-nav a:hover { color: #fff; background: var(--teal-700); border-color: var(--teal-700); transform: translateY(-2px); }
.definition-list dt { margin-top: 28px; font-size: 1.12rem; }

.related-grid { gap: 16px; }
.related-card { position: relative; padding: 21px; border-color: #d3e0e0; border-radius: 16px 16px 16px 5px; box-shadow: var(--shadow-sm); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }

.site-footer { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6.5rem) 0 92px; background: radial-gradient(circle at 15% 5%, rgba(70,200,180,.13), transparent 24rem), linear-gradient(135deg, #061827, #08293d 70%, #061b2b); }
.site-footer::after { content: ""; position: absolute; width: 420px; height: 420px; right: -200px; bottom: -260px; border: 1px solid rgba(108,219,202,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(108,219,202,.025), 0 0 0 120px rgba(108,219,202,.015); }
.footer-grid { position: relative; z-index: 1; gap: clamp(2rem, 5vw, 4rem); }
.site-footer h2 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.site-footer h3 { color: #78dfd0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { width: fit-content; margin: 10px 0; color: #c5d5dc; }
.site-footer a:hover { color: #8be5d8; transform: translateX(3px); }
.footer-disclaimer { position: relative; z-index: 1; max-width: 980px; margin-top: 42px; padding-top: 20px; color: #8fa4af; border-top-color: rgba(255,255,255,.1); font-size: .75rem; line-height: 1.65; letter-spacing: .005em; }
.footer-disclaimer strong { color: #b8c8cf; font-weight: 700; }
.footer-bottom { position: relative; z-index: 1; margin-top: 24px; }

.mobile-nav { padding: 24px; border-left: 1px solid rgba(186,205,205,.7); box-shadow: -30px 0 80px rgba(3,25,38,.24); transition: transform 380ms cubic-bezier(.2,.8,.2,1); }
.mobile-nav a { position: relative; padding: 13px 10px; border-bottom-color: #e2ebeb; }
.mobile-nav a::after { content: "→"; position: absolute; right: 10px; color: #8aa3a2; transition: transform var(--ease), color var(--ease); }
.mobile-nav a:hover::after, .mobile-nav a:focus-visible::after { color: var(--teal-700); transform: translateX(3px); }
.scrim { background: rgba(4,22,34,.68); backdrop-filter: blur(4px); }

.search-dialog { background: rgba(4,22,34,.82); backdrop-filter: blur(10px); }
.search-panel { padding: 28px; border: 1px solid rgba(255,255,255,.5); border-radius: 24px 24px 24px 7px; box-shadow: 0 38px 100px rgba(0,0,0,.38); animation: panel-arrive 260ms cubic-bezier(.2,.8,.2,1) both; }

.reading-progress { position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 3px; pointer-events: none; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--teal-400), #f3bd54); box-shadow: 0 0 12px rgba(70,200,180,.55); }

.js-enhanced .reveal-ready { opacity: 0; transform: translateY(24px); transition: opacity var(--ease-slow), transform var(--ease-slow); transition-delay: var(--reveal-delay, 0ms); }
.js-enhanced .reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
.hero h1, .hero .hero-lede, .hero .hero-actions { animation: hero-arrive 720ms cubic-bezier(.2,.75,.25,1) both; }
.hero .hero-lede { animation-delay: 90ms; }
.hero .hero-actions { animation-delay: 170ms; }
.hero-aside { animation: aside-arrive 850ms cubic-bezier(.2,.75,.25,1) 120ms both; }

@keyframes notice-flow { to { background-position: 100% 0; } }
@keyframes grid-drift { to { background-position: 56px 56px; } }
@keyframes route-pulse { 0%,100% { left: 0; opacity: .45; } 50% { left: calc(100% - 9px); opacity: 1; } }
@keyframes menu-arrive { from { opacity: 0; transform: translateY(-7px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes panel-arrive { from { opacity: 0; transform: translateY(-12px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes hero-arrive { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: none; } }
@keyframes aside-arrive { from { opacity: 0; transform: translateY(30px) rotate(1deg); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .notice-bar, .hero::before, .region-route::after, .hero h1, .hero .hero-lede, .hero .hero-actions, .hero-aside, .search-panel { animation: none !important; }
  .js-enhanced .reveal-ready { opacity: 1; transform: none; }
}

/* Home art direction v2 — precision atlas */
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
body { font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; font-weight: 400; letter-spacing: -.012em; }
em { font-style: normal; }
.home-page { --home-ink: #071c2a; --home-paper: #f4f8f6; --home-teal: #078779; --home-gold: #dca849; }
.home-page .home-hero { min-height: auto; color: var(--home-ink); background: radial-gradient(circle at 86% 20%, rgba(56,190,169,.13), transparent 27rem), radial-gradient(circle at 14% 82%, rgba(220,168,73,.09), transparent 23rem), var(--home-paper); border-bottom: 1px solid #cfdcda; }
.home-page .home-hero::before { opacity: .42; background-image: linear-gradient(rgba(7,28,42,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(7,28,42,.055) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 72%); animation: home-grid 32s linear infinite; }
.home-page .home-hero::after { width: 680px; height: 680px; right: -290px; top: -360px; border: 1px solid rgba(7,135,121,.16); box-shadow: 0 0 0 78px rgba(7,135,121,.025), 0 0 0 156px rgba(7,135,121,.015); }
.home-page .hero-inner { padding: clamp(5.4rem, 9vw, 8.8rem) 0 clamp(3rem, 4vw, 4rem); grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.home-page .hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #49606b; font-size: .69rem; font-weight: 700; letter-spacing: .105em; text-transform: uppercase; }
.proof-pulse { position: relative; width: 8px; height: 8px; background: var(--home-teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(7,135,121,.1); }
.proof-pulse::after { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(7,135,121,.3); border-radius: 50%; animation: proof-ping 2.8s ease-out infinite; }
.proof-rule { width: 32px; height: 1px; background: #b6c5c3; }
.home-page .hero h1 { display: grid; max-width: none; margin: 22px 0 24px; color: var(--home-ink); font-size: clamp(2.5rem, 4.2vw, 4.2rem); font-weight: 600; line-height: .94; letter-spacing: -.045em; text-shadow: none; }
.home-page .hero h1 span { display: block; }
.home-page .hero h1 em { display: block; margin: .08em 0 .04em; color: var(--home-teal); font-family: inherit; font-size: .9em; font-style: normal; font-weight: 600; letter-spacing: -.025em; }
.home-page .hero-lede { max-width: 620px; margin-bottom: 34px; color: #425965; font-size: clamp(1.02rem, 1.55vw, 1.18rem); line-height: 1.78; }
.home-page .hero-actions { align-items: center; gap: 24px; }
.home-page .hero-actions .btn-primary { min-height: 54px; padding-inline: 23px; background: var(--home-ink); box-shadow: none; }
.home-page .hero-actions .btn-primary:hover { background: #0b3445; box-shadow: 0 8px 20px rgba(7,28,42,.1); }
.hero-text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--home-ink); font-size: .88rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid #97aaa8; }
.hero-text-link span { transition: transform var(--ease); }
.hero-text-link:hover { color: var(--home-teal); border-color: var(--home-teal); }
.hero-text-link:hover span { transform: translateX(5px); }
.hero-index { display: flex; flex-wrap: wrap; gap: 0; margin-top: 45px; padding-top: 18px; border-top: 1px solid #cbd8d6; }
.hero-index span { display: inline-flex; align-items: baseline; gap: 7px; padding: 0 22px; color: #5b6e77; font-size: .72rem; }
.hero-index span:first-child { padding-left: 0; }
.hero-index span + span { border-left: 1px solid #c3d0ce; }
.hero-index strong { color: var(--home-ink); font-size: 1.08rem; letter-spacing: -.04em; }

.hero-system { position: relative; min-height: 480px; padding: 24px; overflow: hidden; color: #d9e7e8; background: radial-gradient(circle at 60% 40%, rgba(19,112,111,.45), transparent 44%), linear-gradient(145deg, #061a28, #0a2b3b 70%, #071e2c); border: 1px solid rgba(7,28,42,.9); border-radius: 3px 42px 3px 42px; box-shadow: 0 18px 48px rgba(7,28,42,.13); animation: system-arrive 900ms cubic-bezier(.2,.75,.25,1) 120ms both; }
.hero-system::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(148,218,207,.25) .7px, transparent .7px); background-size: 18px 18px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.system-topline { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 15px; padding-bottom: 15px; color: #8ea8ae; border-bottom: 1px solid rgba(199,225,225,.15); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.system-orbit { position: relative; z-index: 2; min-height: 355px; transition: transform 700ms cubic-bezier(.16,1,.3,1); will-change: transform; }
.orbit-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(123,208,195,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-ring-one { width: 290px; height: 290px; }
.orbit-ring-two { width: 390px; height: 390px; border-color: rgba(220,168,73,.12); }
.orbit-route { position: absolute; left: 5%; right: 5%; top: 51%; height: 2px; background: linear-gradient(90deg, transparent, #48cdb7 22%, #f0c367 64%, transparent); transform: rotate(-18deg); box-shadow: 0 0 15px rgba(72,205,183,.45); }
.orbit-route::after { content: ""; position: absolute; top: -4px; width: 10px; height: 10px; background: #fff5c3; border-radius: 50%; box-shadow: 0 0 18px rgba(255,221,126,.95); animation: orbit-travel 5.8s cubic-bezier(.45,0,.55,1) infinite; }
.orbit-center { position: absolute; z-index: 2; left: 50%; top: 50%; width: 142px; height: 142px; display: grid; place-content: center; text-align: center; background: rgba(5,21,31,.92); border: 1px solid rgba(116,214,198,.34); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 12px rgba(7,34,45,.52), 0 0 55px rgba(64,200,177,.2); }
.orbit-center small { color: #7f9ea4; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.orbit-center strong { color: #fff; font-family: inherit; font-size: 3.25rem; font-weight: 600; line-height: .9; letter-spacing: -.06em; }
.orbit-center span { color: #76d8c9; font-size: .67rem; letter-spacing: .06em; }
.orbit-node { position: absolute; z-index: 3; min-width: 108px; display: grid; justify-items: center; gap: 3px; padding: 12px 14px; color: #49301e; text-align: center; background: linear-gradient(145deg, #ffc45f, #f58a2c 72%, #ed7024); border: 1px solid rgba(255,224,168,.78); border-radius: 14px; box-shadow: 0 10px 28px rgba(235,112,30,.18); }
.home-page .orbit-node { text-decoration: none; cursor: pointer; transition: transform 220ms ease, filter 220ms ease, border-color 220ms ease; }
.home-page .orbit-node:hover, .home-page .orbit-node:focus-visible { transform: translateY(-3px); filter: brightness(1.08); border-color: rgba(255,255,255,.55); }
.orbit-node i { position: absolute; width: 8px; height: 8px; background: #075d55; border: 2px solid #ffd89c; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,177,72,.2); }
.orbit-node strong { color: #102d2f; font-size: 1.03rem; line-height: 1.1; }
.orbit-node span { color: #5b3b24; font-size: .62rem; font-weight: 600; }
.orbit-node-a { left: 0; top: 20%; }
.orbit-node-a i { right: -5px; top: 50%; }
.orbit-node-b { right: 0; top: 22%; }
.orbit-node-b i { left: -5px; top: 50%; }
.orbit-node-c { left: 2%; bottom: 14%; }
.orbit-node-c i { right: -5px; top: 50%; }
.orbit-node-d { right: 1%; bottom: 12%; }
.orbit-node-d i { left: -5px; top: 50%; }
.system-legend { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 16px; padding-top: 15px; color: #8ca3aa; border-top: 1px solid rgba(199,225,225,.15); font-size: .65rem; }
.system-legend span { display: inline-flex; align-items: center; gap: 7px; }
.system-legend i { width: 7px; height: 7px; border-radius: 50%; }
.legend-teal { background: #55d4bf; box-shadow: 0 0 8px rgba(85,212,191,.7); }
.legend-gold { background: #e0ad50; box-shadow: 0 0 8px rgba(224,173,80,.6); }

.hero-command { position: relative; z-index: 4; margin: 0 0 clamp(3rem, 5vw, 4.5rem); min-height: 104px; display: grid; grid-template-columns: minmax(190px,.72fr) minmax(380px,1.25fr) auto; align-items: center; gap: 30px; padding: 20px 24px 20px 28px; background: rgba(255,255,255,.97); border: 1px solid #bfcfcd; border-radius: 2px 23px 2px 23px; box-shadow: none; backdrop-filter: blur(18px); }
.hero-command > div { display: grid; }
.command-label { color: var(--home-teal); font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-command strong { color: var(--home-ink); font-size: .97rem; letter-spacing: -.025em; }
.hero-command .search-box { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 9px; }
.hero-command .search-box input { min-height: 56px; background: #f5f8f7; border-color: #d0dbda; }
.hero-command .search-box .btn { min-height: 56px; border-radius: 10px; }
.hero-command > a { display: inline-flex; align-items: center; gap: 9px; color: #38505c; font-size: .78rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.hero-command > a:hover { color: var(--home-teal); transform: translateX(3px); }

@keyframes home-grid { to { background-position: 64px 64px; } }
@keyframes proof-ping { 0% { opacity: .6; transform: scale(.7); } 75%,100% { opacity: 0; transform: scale(1.6); } }
@keyframes orbit-travel { 0%,100% { left: 0; opacity: .3; } 50% { left: calc(100% - 10px); opacity: 1; } }
@keyframes system-arrive { from { opacity: 0; transform: translateY(28px) rotate(.8deg); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero::before, .proof-pulse::after, .orbit-route::after, .hero-system { animation: none !important; }
}

.home-page .section-header h2 em { color: var(--home-teal); font-family: inherit; font-style: normal; font-weight: 700; }
.home-paths { padding-top: clamp(4.75rem, 7vw, 7rem); }
.home-paths .section-header { align-items: end; }
.home-paths .section-header > p { max-width: 460px; margin: 0 0 8px; }
.home-page .path-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(176px, auto); gap: 15px; }
.home-page .path-card { min-height: 0; padding: 24px; justify-content: flex-start; gap: 18px; }
.home-page .path-card:nth-child(1) { grid-column: span 4; grid-row: span 2; background: var(--home-ink); border-color: var(--home-ink); color: #fff; }
.home-page .path-card:nth-child(2), .home-page .path-card:nth-child(3), .home-page .path-card:nth-child(4), .home-page .path-card:nth-child(5) { grid-column: span 4; }
.home-page .path-card:nth-child(1) .path-number, .home-page .path-card:nth-child(1) .path-description { color: #99b0b6; }
.home-page .path-card:nth-child(1) .path-icon { color: #8de0d2; background: rgba(93,215,196,.1); border-color: rgba(93,215,196,.2); }
.path-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--home-teal); background: #eef8f5; border: 1px solid #d5e8e4; border-radius: 2px 14px 2px 14px; }
.path-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.home-page .path-number { position: absolute; right: 20px; top: 19px; color: #819397; }
.home-page .path-card strong { margin-top: auto; max-width: 240px; font-size: clamp(1.06rem, 1.7vw, 1.42rem); }
.path-description { max-width: 270px; color: #657780; font-size: .78rem; line-height: 1.55; }
.home-page .path-card::after { right: 22px; bottom: 20px; top: auto; }

.home-facts { background: radial-gradient(circle at 8% 14%, rgba(67,240,174,.22), transparent 25rem), radial-gradient(circle at 92% 88%, rgba(12,203,150,.2), transparent 30rem), linear-gradient(135deg, #04362d 0%, #075544 42%, #08765a 70%, #03473b 100%); color: #e8f5f0; }
.home-facts::before { content: ""; position: absolute; inset: 0; opacity: .3; pointer-events: none; background-image: linear-gradient(rgba(174,245,219,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(174,245,219,.12) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.home-facts .container { position: relative; }
.home-facts .section-header h2, .home-facts .fact strong { color: #fff; }
.home-facts .section-header h2 em, .home-facts .eyebrow { color: #72f0cb; }
.home-facts .section-header p { color: #c6ddd6; }
.home-facts .badge { color: #d7eee7; background: rgba(255,255,255,.08); border-color: rgba(217,247,236,.22); }
.home-facts .facts-grid { gap: 12px; }
.home-facts .fact, .home-facts .fact:first-child, .home-facts .fact:last-child { min-height: 310px; display: flex; flex-direction: column; padding: 24px; background: rgba(3,51,42,.22); border: 1px solid rgba(209,247,232,.18); border-radius: 2px 21px 2px 21px; box-shadow: none; }
.home-facts .fact + .fact { border-left: 1px solid rgba(209,247,232,.18); }
.home-facts .fact:hover { background: rgba(255,255,255,.07); border-color: rgba(151,240,207,.38); }
.home-facts .fact-icon { width: 68px; height: 68px; display: flex; align-items: flex-start; justify-content: flex-start; color: #fff; background: transparent; border: 0; border-radius: 0; }
.fact-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.fact-reading { margin-top: 20px; }
.home-facts .fact-reading span { color: #c2dad3; }
.home-facts .fact small { margin-top: auto; padding-top: 16px; color: #94bdb2; border-top: 1px solid rgba(226,255,244,.13); }
.fact-viz { min-height: 42px; display: flex; align-items: end; gap: 5px; margin: 18px 0; }
.fact-viz-line { position: relative; overflow: hidden; align-items: center; }
.fact-viz-line::before { content: ""; width: 100%; height: 1px; background: linear-gradient(90deg, #54d2be, #dda94b); }
.fact-viz-line i { position: absolute; left: 0; width: 8px; height: 8px; background: #fff1ad; border-radius: 50%; box-shadow: 0 0 14px rgba(255,225,125,.8); animation: fact-travel 5s ease-in-out infinite; }
.fact-viz-bars i { width: calc((100% - 25px)/6); background: linear-gradient(to top, #0c786f, #61d3c1); border-radius: 2px 2px 0 0; }
.fact-viz-bars i:nth-child(1), .fact-viz-bars i:nth-child(6) { height: 35%; }.fact-viz-bars i:nth-child(2), .fact-viz-bars i:nth-child(5) { height: 58%; }.fact-viz-bars i:nth-child(3), .fact-viz-bars i:nth-child(4) { height: 86%; }
.fact-viz-years { align-items: center; }
.fact-viz-years i { height: 1px; flex: 1; background: #41666d; }.fact-viz-years i:nth-child(2) { position: relative; flex: 0 0 11px; height: 11px; background: #dfab4d; border-radius: 50%; box-shadow: 0 0 0 6px rgba(223,171,77,.1); }
.fact-viz-dots { align-items: center; justify-content: space-between; }
.fact-viz-dots i { width: 10px; height: 10px; background: #54d2be; border-radius: 50%; box-shadow: 0 0 0 5px rgba(84,210,190,.08); }.fact-viz-dots i:nth-child(even) { background: #dfab4d; box-shadow: 0 0 0 5px rgba(223,171,77,.08); }

.home-page .card-grid.four { grid-template-columns: repeat(12,1fr); }
.home-page .card-grid.four .map-card:nth-child(1), .home-page .card-grid.four .map-card:nth-child(2) { grid-column: span 6; }
.home-page .card-grid.four .map-card:nth-child(3) { grid-column: span 5; }
.home-page .card-grid.four .map-card:nth-child(4) { grid-column: span 7; }
.home-page .map-card .map-thumb { aspect-ratio: 16/9; }

.home-resource-desk { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 14%, rgba(13,148,136,.09), transparent 22rem), linear-gradient(180deg, #f7fbf9 0%, #eef6f3 100%); border-top: 1px solid #d8e5e1; border-bottom: 1px solid #d8e5e1; }
.home-resource-desk::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .36; background-image: radial-gradient(rgba(7,84,68,.12) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, #000 72%, transparent); }
.home-resource-desk .container { position: relative; }
.resource-desk-head { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.65fr); align-items: end; gap: 3rem; margin-bottom: 42px; }
.resource-desk-head h2 { margin: 8px 0 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .95; }
.resource-desk-head h2 span { color: var(--home-teal); }
.resource-desk-head > p { max-width: 420px; margin: 0 0 7px; color: #586d73; font-size: 1rem; line-height: 1.7; }
.resource-board { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,minmax(210px,1fr)); gap: 14px; }
.resource-tile { position: relative; min-width: 0; overflow: hidden; padding: 25px; color: var(--home-ink); border: 1px solid #c9dbd6; border-radius: 2px 25px 2px 25px; text-decoration: none; transition: transform var(--ease), border-color var(--ease), background-color var(--ease); }
.resource-tile::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(circle at var(--pointer-x,50%) var(--pointer-y,50%), rgba(49,197,160,.13), transparent 38%); transition: opacity var(--ease); }
.resource-tile:hover::before { opacity: 1; }
.resource-tile > * { position: relative; z-index: 1; }
.resource-tile:hover { color: var(--home-ink); border-color: #78bdb0; transform: translateY(-3px); }
.resource-tile-primary { grid-column: 1 / span 5; grid-row: 1 / span 2; display: flex; flex-direction: column; justify-content: space-between; color: #effbf6; background: radial-gradient(circle at 88% 12%, rgba(95,236,190,.2), transparent 15rem), linear-gradient(145deg, #053c32, #08715a); border-color: rgba(5,70,56,.9); }
.resource-tile-primary:hover { color: #fff; border-color: #249f82; }
.resource-tile-primary::after { content: "41"; position: absolute; right: -8px; bottom: -80px; color: rgba(255,255,255,.045); font-size: 16rem; font-weight: 700; line-height: 1; letter-spacing: -.1em; }
.resource-tile-secondary { grid-column: 6 / span 3; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(155deg, #e4f5ee, #f7fbf8); }
.resource-plan-2031 { grid-row: 1; }
.resource-plan-2021 { grid-row: 2; background: linear-gradient(155deg, #f1f7f4, #fbfcfb); }
.resource-guide { grid-column: 9 / span 4; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto 1fr; align-items: start; gap: 8px 15px; }
.resource-guide-blue { grid-row: 1; background: linear-gradient(145deg, #edf7fb, #f9fcfd); }
.resource-guide-gold { grid-row: 2; background: linear-gradient(145deg, #fff5dc, #fffcf3); border-color: #e5d7ad; }
.resource-guide-gold:hover { border-color: #cdb66e; }
.resource-tile-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.resource-icon { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; color: #087c68; background: rgba(255,255,255,.68); border: 1px solid rgba(8,124,104,.16); border-radius: 2px 14px 2px 14px; }
.resource-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.resource-tile-primary .resource-icon { color: #8cf0d1; background: rgba(255,255,255,.08); border-color: rgba(179,247,224,.18); }
.resource-type { color: #687d82; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.resource-tile-primary .resource-type { color: #a9d2c5; }
.resource-tile h3 { margin: 16px 0 0; font-size: clamp(1.18rem, 1.8vw, 1.5rem); line-height: 1.15; }
.resource-tile-primary h3 { color: #fff; }
.resource-year { display: block; margin-top: 8px; color: inherit; font-size: clamp(4rem, 7vw, 6.4rem); font-weight: 700; line-height: .9; letter-spacing: -.075em; }
.resource-tile-secondary .resource-year { color: #075e4e; font-size: clamp(2.7rem, 4vw, 4rem); }
.resource-tile-secondary h3 { margin-top: 8px; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.resource-tile-secondary p { margin-top: 6px; }
.resource-tile-secondary .resource-actions { margin-top: 18px; }
.resource-tile p { margin: 13px 0 0; color: #61767b; font-size: .8rem; line-height: 1.55; }
.resource-tile-primary p { color: #afd1c7; }
.resource-actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 16px; }
.resource-open, .resource-details { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; text-decoration: none; }
.resource-open { color: inherit; }
.resource-open span { transition: transform var(--ease); }
.resource-open:hover span { transform: translate(3px,-3px); }
.resource-details { color: inherit; opacity: .68; border-bottom: 1px solid currentColor; }
.resource-guide .resource-icon { grid-row: 1 / span 2; }
.resource-guide .resource-type { align-self: center; }
.resource-guide h3 { grid-column: 1 / -1; margin-top: 18px; max-width: 300px; }
.resource-guide p { grid-column: 1 / -1; max-width: 330px; }
.resource-arrow { position: absolute; right: 22px; bottom: 19px; color: #087c68; font-size: 1.15rem; transition: transform var(--ease); }
.resource-guide:hover .resource-arrow { transform: translate(4px,-4px); }

.home-infrastructure .section-header { max-width: 730px; }
.home-infrastructure .tracker { position: relative; gap: 0; counter-reset: infrastructure; }
.home-infrastructure .tracker::before { content: ""; position: absolute; left: 27px; top: 32px; bottom: 32px; width: 1px; background: linear-gradient(to bottom, var(--home-teal), #bdcecb); }
.home-infrastructure .tracker-row { counter-increment: infrastructure; grid-template-columns: 54px minmax(190px,.82fr) minmax(150px,.52fr) minmax(260px,1.4fr) 52px; gap: 22px; padding: 21px 0; background: transparent; border: 0; border-bottom: 1px solid #d6e2df; border-radius: 0; box-shadow: none; }
.home-infrastructure .tracker-row::before { display: none; }
.home-infrastructure .tracker-row:hover { transform: none; box-shadow: none; }
.tracker-icon { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; color: var(--home-teal); background: #f5faf8; border: 1px solid #bdd4d0; border-radius: 50%; transition: color var(--ease), background var(--ease), transform var(--ease); }
.tracker-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.home-infrastructure .tracker-row:nth-child(1) .tracker-icon { color: #087c68; background: #d9f5ef; border-color: #7ed8c7; }
.home-infrastructure .tracker-row:nth-child(2) .tracker-icon { color: #3b56b5; background: #e8edff; border-color: #aebcf2; }
.home-infrastructure .tracker-row:nth-child(3) .tracker-icon { color: #b45421; background: #fff0e8; border-color: #f0b28c; }
.home-infrastructure .tracker-row:nth-child(4) .tracker-icon { color: #8a5a00; background: #fff4cf; border-color: #efcf73; }
.home-infrastructure .tracker-row:nth-child(5) .tracker-icon { color: #2d5da8; background: #e9f2ff; border-color: #a8c7ee; }
.home-infrastructure .tracker-row:hover .tracker-icon { color: #fff; background: var(--home-teal); transform: rotate(-5deg) scale(1.05); }
.home-infrastructure .tracker-row > strong { font-size: 1.03rem; }
.home-infrastructure .tracker-row .btn { width: 48px; min-height: 48px; padding: 0; border-radius: 50%; font-size: 1rem; }

@keyframes fact-travel { 0%,100% { left: 0; } 50% { left: calc(100% - 8px); } }

@media (prefers-reduced-motion: reduce) { .fact-viz-line i { animation: none; } }

/* Corridor cinema refinement — shared premium UI pass */
.reading-progress { background: linear-gradient(90deg, #35e2bb, #0f9f87 55%, #f2bd56); box-shadow: 0 0 12px rgba(53,226,187,.4); }

.home-page .home-hero { min-height: min(900px, calc(100svh - 56px)); isolation: isolate; color: #fff; background: #032c2b; }
.hero-cinema { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #032c2b; }
.hero-photo { position: absolute; inset: -6%; opacity: 0; background-position: center; background-size: cover; will-change: opacity, transform; animation: hero-cinema-cycle 48s linear infinite; }
.hero-photo-aerial { opacity: 1; background-image: url('../images/slide-1.jpg'); }
.hero-photo-road { background-image: url('../images/slide-2.jpg'); animation-delay: 12s; }
.hero-photo-toll { background-image: url('../images/slide-3.jpg'); animation-delay: 24s; }
.hero-photo-slide-four { background-image: url('../images/slide-4.jpg'); animation-delay: 36s; }
.home-page .home-hero::before { z-index: 1; opacity: 1; background: linear-gradient(90deg, rgba(2,24,27,.62) 0%, rgba(3,39,41,.52) 42%, rgba(3,42,42,.24) 72%, rgba(3,28,31,.38) 100%), linear-gradient(180deg, rgba(2,20,24,.04), rgba(2,25,28,.38)); mask-image: none; animation: none; }
.home-page .home-hero::after { z-index: 1; width: 100%; height: 100%; inset: 0; border: 0; border-radius: 0; box-shadow: none; opacity: .2; background-image: linear-gradient(rgba(170,245,224,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(170,245,224,.12) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.home-page .home-hero > .container { position: relative; z-index: 2; }
.home-page .hero-inner { padding-top: clamp(5.2rem, 9vw, 8rem); }
.home-page .hero-copy { max-width: 720px; }
.home-page .hero-proof { color: #d6ebe5; }
.home-page .proof-pulse { background: #67ebc7; box-shadow: 0 0 0 6px rgba(103,235,199,.12); }
.home-page .hero h1 { color: #fff; text-shadow: 0 8px 42px rgba(0,0,0,.24); }
.home-page .hero h1 em { color: #2ac568; }
.home-page .hero-lede { max-width: 590px; color: #d4e8e2; }
.home-page .hero-actions .btn-primary { color: #042c2a; background: #74eac8; border-color: #74eac8; }
.home-page .hero-actions .btn-primary:hover { color: #042c2a; background: #92f2d5; border-color: #92f2d5; box-shadow: 0 10px 28px rgba(3,25,27,.22); }
.home-page .hero-text-link { color: #fff; border-color: rgba(255,255,255,.45); }
.home-page .hero-text-link:hover { color: #86efd2; border-color: #86efd2; }
.home-page .hero-index { border-top-color: rgba(220,248,240,.28); }
.home-page .hero-index span { color: #c2d9d4; }
.home-page .hero-index span + span { border-left-color: rgba(220,248,240,.24); }
.home-page .hero-index strong { color: #fff; }
.home-page .hero-system { background: radial-gradient(circle at 60% 42%, rgba(20,145,126,.36), transparent 43%), rgba(2,28,33,.74); border-color: rgba(164,239,219,.24); box-shadow: 0 18px 50px rgba(0,18,22,.24); backdrop-filter: blur(13px) saturate(125%); }
.home-page .hero h1, .home-page .hero .hero-lede, .home-page .hero .hero-actions, .home-page .hero-system { animation: none; }
.home-page .hero-command { background: rgba(250,253,252,.95); border-color: rgba(203,225,218,.7); box-shadow: 0 18px 42px rgba(0,28,29,.14); }

.page-hero { padding: clamp(3.2rem, 5.5vw, 5rem) 0 clamp(2.9rem, 5vw, 4.5rem); background: radial-gradient(circle at 85% 4%, rgba(49,206,173,.2), transparent 25rem), linear-gradient(128deg, #fafdfe 0%, #eef9f6 60%, #e6f6f1 100%); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(120deg, transparent 0 67%, rgba(9,128,110,.08) 67% 67.15%, transparent 67.15%); background-size: 210px 210px; }
.page-hero::after { width: 260px; height: 260px; right: -130px; bottom: -190px; box-shadow: 0 0 0 44px rgba(8,120,111,.035), 0 0 0 88px rgba(8,120,111,.02); }
.page-hero h1 { max-width: 960px; margin-top: 18px; font-size: clamp(2.05rem, 3.8vw, 3.75rem); font-weight: 600; letter-spacing: -.025em; }
.direct-answer { max-width: 800px; color: #354f59; line-height: 1.68; }
.page-meta { margin-top: 20px; }
.page-meta span { padding: 0; color: #63777b; background: transparent; border: 0; border-radius: 0; }
.page-meta span + span::before { content: "·"; margin-right: 9px; color: #0d8e79; }

.filter-bar { position: relative; overflow: hidden; background: linear-gradient(135deg, #ffffff 0%, #f3fbf8 100%); border-color: #cadfd9; box-shadow: none; }
.filter-bar::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(#36c8a9, #0c7668); }
.card, .update-card, .download-card, .related-card, .search-result, .source-card, .toc, .tracker-row { box-shadow: none; }
.card, .update-card, .download-card, .related-card, .search-result { border-color: #cedeDA; }
.download-card-primary { background:linear-gradient(145deg,#eaf8f2,#f9fdfb); border-color:#74c9af; }
.card:hover, .update-card:hover, .download-card:hover, .related-card:hover, .search-result:hover { border-color: #75bcae; box-shadow: 0 14px 34px rgba(8,72,65,.08); }
.card { overflow: hidden; background: linear-gradient(155deg, #fff 0%, #fbfefd 100%); }
.card::before { content: ""; position: absolute; z-index: 2; top: 0; left: 0; width: 74px; height: 4px; background: linear-gradient(90deg, #19aa8f, #55d4b8); }
.map-card::before { width: 100%; height: 3px; background: linear-gradient(90deg, #0f9d83, #f0b94f 55%, #2f6bb5); }
.tracker-row { border-color: #d4e3df; background: linear-gradient(135deg, #fff, #f9fcfb); }
.tracker-row::before { background: #13a487; }
.source-card, .toc { background: linear-gradient(145deg, #fff, #f7fbfa); border-color: #cfdfdb; }
.site-footer { background: radial-gradient(circle at 12% 0%, rgba(65,225,182,.2), transparent 28rem), linear-gradient(135deg, #02382f, #064f40 55%, #04362f); }

@keyframes hero-cinema-cycle {
  0% { opacity: 1; transform: scale(1.08) translate3d(-1.5%, 0, 0); }
  4% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; transform: scale(1.16) translate3d(2.5%, -1.2%, 0); }
  100% { opacity: 0; transform: scale(1.16) translate3d(2.5%, -1.2%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo { display: none; animation: none; }
  .hero-photo-aerial { display: block; opacity: 1; transform: none; }
  .reading-progress { transition: none; }
}

/* Final shared theme overrides */
.skip-link, .notice-bar, .btn-primary, .btn-dark, .hero:not(.home-hero), .section-dark, .region-visual, .hero-system, .home-page .hero-system, .home-facts, .resource-tile-primary, .research-cta, .site-footer, .home-page .hero-actions .btn-primary {
  background-color: #064f40;
  background-image: var(--brand-green-surface);
  background-size: var(--brand-green-surface-size);
}
.btn-primary, .btn-dark, .home-page .hero-actions .btn-primary { color: #fff; }
.btn-primary:hover, .btn-dark:hover, .home-page .hero-actions .btn-primary:hover { color: #fff; background-image: var(--brand-green-surface); background-size: var(--brand-green-surface-size); filter: brightness(1.08); }
.home-page .path-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: auto; gap: 14px; }
.home-page .path-card:nth-child(n) { min-height: 248px; grid-column: span 1; grid-row: auto; justify-content: flex-start; gap: 0; padding: 24px; color: var(--home-ink); border: 1px solid rgba(18,82,72,.12); border-radius: 3px 22px 3px 22px; box-shadow: none; }
.home-page .path-card:nth-child(1) { background: #e8f6ef; }
.home-page .path-card:nth-child(2) { background: #edf4ff; }
.home-page .path-card:nth-child(3) { background: #fff4dd; }
.home-page .path-card:nth-child(4) { background: #f2edff; }
.home-page .path-card:nth-child(5) { background: #fff0e9; }
.home-page .path-card:nth-child(n) .path-number { color: #617b78; }
.home-page .path-card:nth-child(n) .path-description { color: #526b70; }
.home-page .path-card:nth-child(n) .path-icon { width: 66px; height: 66px; color: #fff; border: 0; border-radius: 50%; }
.home-page .path-card:nth-child(1) .path-icon { color: #fff; background: #159565; }
.home-page .path-card:nth-child(2) .path-icon { background: #3976cf; }
.home-page .path-card:nth-child(3) .path-icon { background: #d98918; }
.home-page .path-card:nth-child(4) .path-icon { background: #7557c8; }
.home-page .path-card:nth-child(5) .path-icon { background: #ce6449; }
.home-page .path-card strong { max-width: none; margin-top: 24px; }
.home-page .path-card .path-description { margin-top: 9px; }
.footer-grid { grid-template-columns: 1.35fr .72fr .72fr 1.18fr; }
.download-gate { position:fixed; z-index:1200; inset:0; display:grid; place-items:center; padding:24px; visibility:hidden; opacity:0; background:rgba(1,24,25,.58); backdrop-filter:blur(9px); transition:opacity 180ms ease, visibility 180ms ease; }
.download-gate.is-open { visibility:visible; opacity:1; }
.download-gate-panel { position:relative; width:min(100%,520px); padding:36px; color:#102a32; background:#fff; border:1px solid rgba(28,112,94,.2); border-radius:4px 28px 4px 28px; box-shadow:0 28px 80px rgba(0,30,31,.24); transform:translateY(14px) scale(.985); transition:transform 220ms ease; }
.download-gate.is-open .download-gate-panel { transform:none; }
.download-gate-close { position:absolute; top:16px; right:16px; width:42px; height:42px; display:grid; place-items:center; padding:0; color:#17443d; background:#eef8f4; border:1px solid #cce3db; border-radius:50%; font-size:1.35rem; line-height:1; cursor:pointer; }
.download-gate-kicker { display:block; margin-bottom:10px; color:#0b8a67; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.download-gate h2 { max-width:390px; margin:0; font-size:clamp(1.65rem,4vw,2.15rem); font-weight:600; line-height:1.08; letter-spacing:-.035em; }
.download-gate-intro { margin:12px 0 4px; color:#5a6f75; }
.download-gate-file { margin:0 0 22px; color:#0b765f; font-size:.86rem; font-weight:700; }
.download-gate form { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.download-gate .field:first-child, .download-gate .field:nth-child(2), .download-gate .field:nth-child(3), .download-gate-status, .download-gate .btn { grid-column:1 / -1; }
.download-gate label { display:flex; align-items:baseline; gap:6px; color:#24464a; font-size:.78rem; font-weight:700; }
.download-gate label span { color:#c44a38; }
.download-gate label small { color:#7b8b8e; font-weight:500; }
.download-gate input { width:100%; min-height:50px; margin-top:7px; padding:11px 13px; color:#102a32; background:#f8fbfa; border:1px solid #cbded8; border-radius:9px; }
.download-gate input:focus { border-color:#159565; box-shadow:0 0 0 3px rgba(21,149,101,.12); outline:0; }
.download-gate-status { min-height:0; margin:0; color:#5a6f75; font-size:.78rem; }
.download-gate .btn { min-height:52px; justify-content:center; }
@media (max-width:620px) { .download-gate { padding:14px; align-items:end; } .download-gate-panel { padding:28px 20px 22px; border-radius:22px 22px 4px 4px; } .download-gate form { grid-template-columns:1fr; gap:12px; } .download-gate .field { grid-column:1; } }
@media (max-width: 860px) { .home-page .hero h1 { font-size: clamp(2.6rem, 7.5vw, 4.2rem); font-weight: 600; letter-spacing: -.045em; } }
@media (max-width: 620px) { .home-page .hero h1 { font-size: clamp(2.2rem, 11vw, 3.3rem); line-height: .96; } .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); font-weight: 600; letter-spacing: -.025em; } }


