/* Base structural styles shared by every page: reset, typography, layout
   primitives, nav/footer, buttons, and the small set of generic content
   patterns (cards, journey steps, quotes, FAQ) pages compose from. */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
.article-wrap img { border-radius: var(--radius); margin: 1.2rem 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.15;
  text-wrap: balance;
}
p { color: var(--ink); }
a { color: var(--teal); }

.eyebrow {
  display: block;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .72rem;
  text-transform: uppercase;
}

section { padding: 76px 0; }
section.alt { background: var(--wash); }

.kicker { margin-bottom: 1.8rem; }
.kicker h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-top: .4rem; }
.kicker .sub { color: var(--grey); font-size: .95rem; margin-top: .6rem; max-width: 640px; }

.btn {
  display: inline-block;
  padding: .9rem 1.8rem;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--display);
  transition: all .2s;
}
.btn-solid { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(46, 110, 115, .35); }
.btn-solid:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-line { color: var(--navy); text-decoration: underline; font-weight: 700; font-family: var(--display); }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---------- Nav ---------- */
nav.site-nav {
  position: sticky; top: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
/* max-width overrides the 1060px it'd otherwise inherit from the shared
   .wrap class — the nav needs more room than page content does, and capping
   it to the content width is what caused the 2026-09-16 wrapping bug: the
   bar was squeezed even on wide monitors with plenty of spare viewport. */
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 1rem; max-width: 1280px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 34px; display: block; }
.nav-links { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: .85rem; font-weight: 700; white-space: nowrap; }
.nav-links a:hover { color: var(--teal); }
.nav-links a.cta { background: var(--teal); color: #fff; padding: .5rem 1rem; border-radius: 6px; }
.nav-links a.event { color: var(--gold); }
.lang-switch a { color: var(--grey); margin-left: .2rem; }
.lang-switch a.on { color: var(--navy); }

/* Content pages (Insights/Blog/News/...) grouped under one dropdown so the
   top bar doesn't keep overflowing every time a new one is added — see the
   2026-09-16 nav-overflow fix. */
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none; border: none; font: inherit; cursor: pointer;
  color: var(--navy); font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; gap: .25rem; padding: 0;
}
.nav-dropdown > button:hover { color: var(--teal); }
.nav-caret { font-size: .7rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: .4rem; min-width: 150px; z-index: 60;
}
.nav-dropdown-menu a { display: block; padding: .5rem .7rem; font-size: .85rem; font-weight: 700; color: var(--navy); text-decoration: none; border-radius: 6px; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--wash); color: var(--teal); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }

/* ---------- Page hero (distinct from the event page's own hero) ---------- */
/* Confirmed "dark feature section" hero — see the block further down for
   history/rationale. Site-wide as of 2026-09-15 (was homepage-only before
   that); every page using layouts/base.njk's <header class="page-hero">
   picks this up automatically, no per-page change needed. */
.page-hero { background: var(--navy-deep); color: #fff; padding: 92px 0 72px; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 3.6rem); margin: .5rem 0 1rem; font-family: var(--display-feature); font-weight: 700; }
.page-hero p { color: var(--ink-inverse); max-width: 680px; font-size: 1.1rem; }
.page-hero .cta-row { margin-top: 1.8rem; }
.page-hero .btn-gold { background: var(--gold-bright); color: var(--navy-deep); }
.page-hero .btn-ghost { color: var(--teal-bright); border: 2px solid var(--teal-bright); }

.trust-bar { background: var(--navy-deep); color: #CFE7E9; font-size: .8rem; padding: .6rem 0; text-align: center; }
.trust-bar .dot { opacity: .5; margin: 0 .5rem; }

/* ---------- Generic card grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
/* Dark card look, rolled out site-wide 2026-09-15 (was .audience-cards-only
   before that — see the "dark feature section" block further down). */
.card { background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-top: 4px solid var(--gold-bright); border-radius: var(--radius-lg); padding: 1.6rem; }
.card .role { color: var(--teal-bright); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.card h3 { font-family: var(--display-feature); font-weight: 600; color: #fff; font-size: 1.2rem; margin: .5rem 0 .6rem; }
.card p { color: var(--ink-inverse); font-size: .92rem; }
.card .link { display: inline-block; margin-top: 1rem; font-weight: 800; font-size: .88rem; color: var(--teal-bright); text-decoration: none; }

/* ---------- Journey / numbered steps ---------- */
.journey { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.journey-step { flex: 1 1 150px; display: flex; gap: .8rem; align-items: flex-start; }
.journey-step .n { font-family: var(--display); font-weight: 800; color: var(--gold); font-size: 1.6rem; line-height: 1; }
.journey-step.is-gold .n { color: var(--teal); }
.journey-step .l { display: block; font-weight: 700; color: var(--navy); }
.journey-step .d { display: block; color: var(--grey); font-size: .85rem; margin-top: .2rem; }

/* ---------- Quote callouts ---------- */
.quotable { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.3rem; font-family: var(--display); font-weight: 700; color: var(--navy); max-width: 780px; }
.quotable .mark { color: var(--gold); font-size: 2.4rem; line-height: 1; }
.quotable em { color: var(--teal); font-style: normal; }
.quotable.on-alt { color: #fff; }

.body-text { color: var(--grey); max-width: 680px; margin-top: .8rem; font-size: .98rem; }

/* ---------- Axis / list rows ---------- */
.axis-list { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.axis-item { display: flex; gap: .8rem; align-items: flex-start; }
.axis-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: .5rem; flex-shrink: 0; }
.axis-item strong { color: var(--navy); }
.axis-item a { font-weight: 700; text-decoration: none; margin-left: .3rem; }

/* ---------- Middle-gap visual ---------- */
.middle-viz { display: flex; align-items: stretch; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.mv-box { flex: 1 1 200px; border-radius: var(--radius-lg); padding: 1.2rem; }
.mv-box.solid { background: var(--ok-bg); }
.mv-box.gap { background: var(--pro-bg); border: 1px dashed var(--gold); }
.mv-box .t { display: block; font-weight: 800; color: var(--navy); font-family: var(--display); }
.mv-box .d { display: block; color: var(--grey); font-size: .85rem; margin-top: .3rem; }
.mv-arrow { display: flex; align-items: center; color: var(--grey); font-size: 1.4rem; }

/* ---------- FAQ accordion ---------- */
.faq { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0; font-family: var(--display); font-weight: 700; color: var(--navy);
  font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .chev { color: var(--gold); transition: transform .2s; flex-shrink: 0; }
.faq-item[data-open="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item[data-open="true"] .faq-a { max-height: 300px; }
.faq-a p { color: var(--grey); padding-bottom: 1.1rem; font-size: .92rem; }

/* ---------- Final CTA band ---------- */
.final-cta { background: var(--navy); color: #fff; text-align: center; padding-bottom: 40px; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #CFE7E9; margin-top: .6rem; }
.final-cta .cta-row { justify-content: center; margin-top: 1.6rem; }

/* ---------- Featured event card ---------- */
.event-feature-card {
  display: block; background: var(--navy-deep); color: #fff; border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem; text-decoration: none; margin-top: 1rem;
}
.event-feature-kicker { display: flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.event-feature-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: #37D67A; }
.event-feature-body { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: .6rem; }
.event-feature-body h2 { color: #fff; font-size: 1.5rem; }
.event-feature-body p { color: #CFE7E9; margin-top: .3rem; max-width: 520px; }
.event-feature-link { color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-deep); color: #CFE7E9; padding: 56px 0; }
.footer-inner { display: flex; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-logo { height: 40px; margin-bottom: .8rem; }
.footer-compliance { font-size: .82rem; color: #9FB4C6; max-width: 620px; }
.footer-copy { font-size: .8rem; color: #7C93A6; margin-top: 1rem; }
.footer-powered { font-size: .78rem; color: #7C93A6; margin-top: .5rem; }
.footer-powered a { color: #9FD6DB; font-weight: 700; text-decoration: none; }
.footer-powered a:hover { text-decoration: underline; }
.footer-legal { font-size: .78rem; margin-top: .7rem; }
.footer-legal a { color: #9FD6DB; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* ---------- Participation ladder (rungs) ---------- */
.rung { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; margin-top: 1.2rem; }
.rung .rung-label { color: var(--teal); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.rung h3 { font-size: 1.25rem; margin: .5rem 0 .7rem; }
.rung ul { padding-left: 1.2rem; margin-top: .5rem; }
.rung li { color: var(--grey); font-size: .95rem; margin-bottom: .3rem; }
.rung .note { font-size: .85rem; color: var(--grey); margin-top: .8rem; padding-top: .8rem; border-top: 1px dashed var(--line); }
.rung .cta-row { margin-top: 1rem; }

/* ---------- Monthly plan cards ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; }
.plan-card .name { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.plan-card .tagline { color: var(--teal); font-size: .85rem; font-weight: 700; margin-top: .3rem; }
.plan-card p.body { color: var(--grey); font-size: .88rem; margin-top: .8rem; flex-grow: 1; }
.plan-card .fee { font-family: var(--display); font-weight: 800; color: var(--gold); margin-top: 1rem; }

/* ---------- "What we don't promise" list ---------- */
.promise-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .8rem; margin-top: 1.6rem; }
.promise-item { display: flex; gap: .6rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem 1rem; font-size: .9rem; color: var(--ink); }
.promise-item .x { color: var(--gold); font-weight: 800; }

/* ---------- What-we-are / what-we-aren't comparison ---------- */
.vs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.vs-col { border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; }
.vs-col.neg { background: var(--wash); }
.vs-col.pos { background: var(--ok-bg); }
.vs-col h3 { font-size: 1rem; margin-bottom: .6rem; }
.vs-col ul { padding-left: 1.1rem; }
.vs-col li { color: var(--grey); font-size: .9rem; margin-bottom: .3rem; }

/* ---------- Team profile cards ---------- */
.profiles { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.profile-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; }
.profile-top { display: flex; gap: 1rem; align-items: flex-start; }
.avatar { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--display); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.profile-name { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.profile-title { color: var(--teal); font-size: .85rem; font-weight: 600; margin-top: .2rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.profile-tag { background: var(--wash); border-radius: 100px; padding: .25rem .7rem; font-size: .74rem; color: var(--ink); }
.profile-desc { color: var(--grey); font-size: .92rem; margin-top: 1rem; }

/* ---------- Judgement-layer tag grid ---------- */
.jl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .8rem; margin-top: 1.6rem; }
.jl-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; text-align: center; font-weight: 700; color: var(--navy); font-family: var(--display); font-size: .92rem; }

/* ---------- Vertical flow steps (governments cooperation pathway) ---------- */
.vflow { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.vflow-step { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; }
.vflow-step.is-gold { border-color: var(--gold); background: var(--gold-soft); }
.vflow-step .n { font-family: var(--display); font-weight: 800; color: var(--gold); font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.vflow-step .l { display: block; font-weight: 700; color: var(--navy); }
.vflow-step .d { display: block; color: var(--grey); font-size: .88rem; margin-top: .2rem; }

/* ---------- Forms ---------- */
.form-section { padding: 76px 0; background: var(--navy-deep); color: #fff; }
.form-section .eyebrow { color: #9FD6DB; }
.form-section h2 { color: #fff; }
.form-section .sub { color: #CFE7E9; }
form.site-form { margin-top: 1.8rem; background: #fff; border-radius: var(--radius-lg); padding: 2rem; color: var(--ink); }
.form-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--body); font-size: .95rem; color: var(--ink); background: #fff;
}
.field textarea { resize: vertical; }
.field-checkbox { display: flex; flex-wrap: wrap; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--grey); margin: 1.2rem 0; }
.field-checkbox input { margin-top: .2rem; }
.field-checkbox .ckerr { flex-basis: 100%; margin-top: 0; }
.form-submit { background: var(--gold); color: var(--navy-deep); border: none; border-radius: 6px; padding: .9rem 1.8rem; font-family: var(--display); font-weight: 800; font-size: 1rem; cursor: pointer; }
.form-submit:hover { filter: brightness(1.06); }
.form-submit:disabled { opacity: .6; cursor: default; }
.ckerr { color: #B3261E; font-size: .78rem; margin-top: .3rem; display: none; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #B3261E; }
.form-error { color: #B3261E; font-weight: 700; margin-top: 1rem; }
.form-success h3 { color: var(--navy); margin-bottom: .5rem; }
.form-success p { color: var(--grey); }
.hp-field { position: absolute; left: -9999px; }

/* ---------- Checkbox / radio option grids (registration forms) ---------- */
.opts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .5rem; margin-top: .5rem; }
.opt { display: flex; gap: .5rem; align-items: flex-start; background: var(--wash); border-radius: var(--radius); padding: .6rem .8rem; font-size: .85rem; color: var(--ink); }
.opt input { margin-top: .15rem; }
fieldset.form-fieldset { border: none; border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: 1.4rem; }
fieldset.form-fieldset:first-child { border-top: none; padding-top: 0; margin-top: 0; }
fieldset.form-fieldset legend { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1rem; padding: 0; }
.fs-hint { color: var(--grey); font-size: .82rem; margin-top: .2rem; margin-bottom: .8rem; }

/* ---------- Insights hub + article ---------- */
.insight-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; text-decoration: none; }
.insight-card .cluster { color: var(--teal); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.insight-card h3 { font-size: 1.05rem; margin: .5rem 0 .5rem; }
.insight-card p { color: var(--grey); font-size: .88rem; }
.insight-card .more { display: inline-block; margin-top: .8rem; color: var(--teal); font-weight: 700; font-size: .85rem; }
/* Blog posts vs. Insights in a mixed card list (e.g. home's "From the
   network"): gold top border + gold cluster label marks "written directly
   by the team, more frequent" — same gold-as-accent language already used
   elsewhere, not a decoration invented just for this. */
.insight-card.is-blog { border-top: 3px solid var(--gold); }
.insight-card.is-blog .cluster { color: var(--pro-fg); } /* --gold itself fails text contrast on white — --pro-fg is the darker, accessible gold already used for this exact purpose (status pills) */

/* ---------- Press coverage list ("In the News") — deliberately NOT another
   solid dark block: this sits right above the equally-dark, equally-wide
   .event-feature-card on the homepage, and a second identical navy panel
   right next to it read as "one big dark bar" rather than two distinct
   things. A bare ruled list (page background, divider lines, color carried
   by text only) stays light so it doesn't compete with that card. ---------- */
.press-list { border-top: 1px solid var(--line); }
.press-item { display: flex; align-items: baseline; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.press-item .date { flex: 0 0 92px; color: var(--grey); font-size: .78rem; font-variant-numeric: tabular-nums; }
.press-item .body { flex: 1 1 auto; min-width: 0; }
.press-item .media { display: block; color: var(--teal); font-weight: 700; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.press-item .title { display: block; color: var(--navy); font-weight: 600; font-size: 1rem; line-height: 1.4; }
.press-item .arrow { flex: 0 0 auto; color: var(--teal); transition: transform .15s; }
.press-item:hover .title { color: var(--teal); }
.press-item:hover .arrow { transform: translateX(3px); }
@media (max-width: 600px) {
  .press-item { flex-wrap: wrap; gap: .3rem 1rem; }
  .press-item .date { flex-basis: 100%; order: -1; }
  .press-item .arrow { display: none; }
}

.article-wrap { max-width: 720px; }
.back-link { color: var(--teal); font-weight: 600; font-size: .82rem; text-decoration: none; }
.art-cluster { color: var(--teal); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 1rem; }
.article-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: .5rem 0 1.4rem; }
.art-answer { background: var(--wash); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; }
.art-answer .aa-label { color: var(--gold-700, var(--gold)); font-weight: 700; font-size: .78rem; text-transform: uppercase; margin-bottom: .4rem; }
.article-wrap p { color: var(--ink); margin-bottom: 1rem; line-height: 1.7; }
.article-wrap h2 { font-size: 1.2rem; margin: 1.6rem 0 .8rem; }
.article-wrap ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.article-wrap li { color: var(--grey); margin-bottom: .4rem; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--navy); }

/* Nav's own breakpoint, separate from the 900px one below — the nav bar
   runs out of room well before the rest of the page does. Root cause fixed
   2026-09-16: `.nav-in` used to inherit `.wrap`'s 1060px content max-width,
   so the bar was squeezed even on wide monitors with plenty of spare
   viewport; `.nav-in`'s own (wider) max-width further down fixes that, and
   this 1180px cutoff is sized to the links' actual measured width (~1130px
   including the logo) so it switches to the hamburger before it wraps
   instead of after. Don't fold this back into the 900px block — that one's
   sized for unrelated content sections (middle-viz), not the nav. */
@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 1rem 24px; gap: .9rem;
  }
  .nav-links.is-open { display: flex; }
  /* Below the hamburger breakpoint the whole menu is already one vertical
     list — flatten the dropdown into it instead of nesting a second,
     absolutely-positioned menu inside a touch-collapsed one. */
  .nav-dropdown { position: static; }
  .nav-dropdown > button { display: none; }
  .nav-dropdown-menu { display: block; position: static; box-shadow: none; border: none; padding: 0; margin-left: .6rem; }
}

@media (max-width: 900px) {
  .middle-viz { flex-direction: column; }
  .mv-box { flex-basis: auto; }
  .mv-arrow { transform: rotate(90deg); justify-content: center; }
}

/* ---------- Confirmed "dark feature section" pattern ----------
   Romona confirmed this direction 2026-09-15. Colors/type live as real tokens
   in tokens.css (--gold-bright, --teal-bright, --ink-inverse, --display-feature)
   — see skills/apac2impact-style-guide for the documented rule. The hero
   color/type treatment itself now lives directly in the shared .page-hero
   rule above (rolled out site-wide 2026-09-15), and the dark gold-top-border
   card look now lives directly in the shared .card rule too (also rolled
   out site-wide the same day — .audience-cards no longer needs its own
   overrides, .card already matches). Everything below this comment is
   home-page-only decoration layered on top of the shared rules (starfield
   background, the hero/globe two-column layout), not a separate look. */
.home-hero {
  position: relative; overflow: hidden;
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,.65), transparent 100%),
    radial-gradient(1.2px 1.2px at 34% 68%, rgba(255,255,255,.45), transparent 100%),
    radial-gradient(1.8px 1.8px at 58% 12%, rgba(255,255,255,.55), transparent 100%),
    radial-gradient(1.2px 1.2px at 78% 48%, rgba(255,255,255,.4), transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(255,255,255,.5), transparent 100%),
    radial-gradient(1.2px 1.2px at 15% 88%, rgba(255,255,255,.35), transparent 100%),
    radial-gradient(1.4px 1.4px at 46% 38%, rgba(255,255,255,.4), transparent 100%),
    radial-gradient(ellipse at 75% 15%, #223f5e 0%, var(--navy-deep) 62%);
  background-size: 260px 220px, 260px 220px, 260px 220px, 260px 220px, 260px 220px, 260px 220px, 260px 220px, 100% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat, no-repeat;
}
.home-hero .hero-row { display: flex; align-items: center; gap: 2rem; position: relative; }
.home-hero .hero-text { flex: 1.6 1 560px; min-width: 0; position: relative; z-index: 1; }
.home-hero .hero-globe-wrap { flex: 1 1 340px; height: 360px; max-width: 380px; }
.home-hero #hero-globe { width: 100%; height: 100%; }

/* Below the nav's own collapse point, the globe no longer fits as a side
   column — instead of hiding it, it becomes an oversized, dimmed background
   layer behind the stacked, single-column text (still every device, per
   2026-09-15 — deliberately traded the earlier phone-only WebGL cutoff for
   visual consistency across sizes). */
@media (max-width: 900px) {
  .home-hero .hero-row { flex-direction: column; align-items: flex-start; }
  .home-hero .hero-globe-wrap {
    position: absolute; z-index: 0; max-width: none;
    top: -10%; right: -25%; width: 130%; height: 130%;
    opacity: .62;
  }
  .home-hero .hero-text::before {
    content: ""; position: absolute; inset: -1.5rem -1rem;
    background: radial-gradient(ellipse at left, var(--navy-deep) 45%, transparent 85%);
    z-index: -1;
  }
}
@media (max-width: 600px) {
  /* At this width the 900px version's offset pushes most of the sphere off
     the right edge — recenter it so the globe itself stays visible instead
     of just a sliver of arc. */
  .home-hero .hero-globe-wrap { top: 8%; right: auto; left: 50%; width: 190%; height: 90%; transform: translateX(-50%); opacity: .55; }
}

