/* INBIOSIS war room.
   Dark is the default: the board lives on a wall display in a dim room. The light
   values are a selected set stepped for the light surface, not an inverted flip. */

:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --plane:        #0d0d0d;
  --surface:      #1a1a19;
  --surface-2:    #222220;
  --ink:          #ffffff;
  --ink-2:        #c3c2b7;
  --ink-muted:    #898781;
  --grid:         #2c2c2a;
  --hairline:     rgba(255, 255, 255, 0.10);
  --accent:       #3987e5;
  --track:        #2c2c2a;
  --good:         #0ca30c;
  --warning:      #fab219;
  --critical:     #d03b3b;
}

:root[data-theme="light"] {
  color-scheme: light;
  --plane:        #f9f9f7;
  --surface:      #fcfcfb;
  --surface-2:    #f2f1ed;
  --ink:          #0b0b0b;
  --ink-2:        #52514e;
  --ink-muted:    #898781;
  --grid:         #e1e0d9;
  --hairline:     rgba(11, 11, 11, 0.10);
  --accent:       #2a78d6;
  --track:        #e1e0d9;
  --good:         #006300;
  --warning:      #b97f00;
  --critical:     #c22c2c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--plane);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

/* --- Chrome ------------------------------------------------------------ */

.topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--hairline);
}

.brand-abbr {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.brand-full,
.topbar-meta {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.brand-full { margin-left: 12px; }

.topbar-meta { display: flex; gap: 20px; align-items: baseline; }

.ghost-link {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
}

.ghost-link:hover { color: var(--ink); }

/* --- Board grid -------------------------------------------------------- */

.board { padding: 20px 24px 40px; }

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

.span-2    { grid-column: span 2; }
.span-full { grid-column: 1 / -1; }

@media (max-width: 1200px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .span-2, .span-full { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .grid { grid-template-columns: minmax(0, 1fr); }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 18px 20px 20px;
  min-width: 0;
}

.panel-head { margin-bottom: 14px; }

.panel-head h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.panel-sub {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* --- Pulse strip: hero figure + KPI row -------------------------------- */

.pulse {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero { min-width: 230px; }

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-figure {
  font-size: 4.2rem;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-delta { font-size: 0.95rem; color: var(--ink-2); }

.pulse-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px 28px;
  flex: 1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px 24px;
  margin-bottom: 18px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.stat-sm .stat-value { font-size: 1.35rem; }

/* A number the feed has not supplied. Recessive on purpose — it must not
   compete with real figures, and must not be mistaken for a zero. */
.stat-missing { color: var(--ink-muted); font-weight: 400; }

.stat-note,
.stat-delta {
  font-size: 0.78rem;
  color: var(--ink-2);
}

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

/* Delta and status colour is always paired with a glyph, never colour alone. */
.delta-good     { color: var(--good); }
.delta-critical { color: var(--critical); }
.delta-flat     { color: var(--ink-muted); }
.delta-icon     { font-size: 0.7em; }

.status-good     { color: var(--good); }
.status-warning  { color: var(--warning); }
.status-critical { color: var(--critical); }
.status-icon     { font-size: 0.8em; margin-right: 4px; }

/* --- Charts ------------------------------------------------------------ */

.chart { margin: 0 0 16px; }

.chart-canvas { height: var(--chart-height, 240px); width: 100%; }

.chart-title {
  margin: 6px 0 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.chart figcaption {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8px 28px;
}

/* --- Meters ------------------------------------------------------------ */

.meters { display: flex; flex-direction: column; gap: 14px; }

.meter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.meter-label { color: var(--ink-2); }
.meter-value { font-variant-numeric: tabular-nums; }

.meter-track {
  height: 8px;
  background: var(--track);
  border-radius: 4px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
}

.fill-good     { background: var(--good); }
.fill-warning  { background: var(--warning); }
.fill-critical { background: var(--critical); }

.meter-foot { font-size: 0.75rem; margin-top: 4px; }

/* --- Tables ------------------------------------------------------------ */

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

table.data th {
  text-align: left;
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px 6px 0;
  border-bottom: 1px solid var(--hairline);
}

table.data td {
  padding: 6px 8px 6px 0;
  border-bottom: 1px solid var(--grid);
  color: var(--ink-2);
}

table.data td:first-child { color: var(--ink); }

.num { text-align: right; font-variant-numeric: tabular-nums; }

.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  color: var(--ink-2);
}

.empty {
  color: var(--ink-muted);
  font-style: italic;
  padding: 10px 0;
}

.alert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.alert-list li {
  padding: 5px 0;
  border-bottom: 1px solid var(--grid);
}

/* --- Feed freshness ---------------------------------------------------- */

.feedbar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* --- Kiosk: bigger type, no chrome, for a 55" panel at 3m -------------- */

body.kiosk { font-size: 17px; }
body.kiosk .board { padding: 18px; }
body.kiosk .hero-figure { font-size: 5.5rem; }
body.kiosk .stat-value { font-size: 2rem; }
body.kiosk .stat-sm .stat-value { font-size: 1.6rem; }
body.kiosk table.data { font-size: 0.95rem; }
body.kiosk::-webkit-scrollbar { display: none; }

/* ======================================================================
   Research hub — the public surface
   ----------------------------------------------------------------------
   Read at 40cm on a desk, not 3m on a wall: narrower measure, smaller type,
   more whitespace. Light is the primary mode here (the war room stays dark),
   and both palettes are validated against their own surface — docs/DESIGN.md.
   ====================================================================== */

.hub {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* --- Header + search --------------------------------------------------- */

.hub-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: var(--plane);
  border-bottom: 1px solid var(--hairline);
}

.hub-brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.hub-brand .brand-abbr { font-weight: 700; letter-spacing: 0.06em; color: var(--ink); }
.hub-brand .brand-full { color: var(--ink-muted); font-size: 0.9rem; }

.hub-search { display: flex; gap: 8px; flex: 1 1 320px; max-width: 560px; }

.hub-search input {
  flex: 1;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--grid);
  border-radius: 8px;
}
.hub-search input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.hub-search button {
  padding: 9px 16px;
  font: inherit;
  font-size: 0.9rem;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.hub-nav { display: flex; gap: 18px; }
.hub-nav a { color: var(--ink-2); text-decoration: none; font-size: 0.92rem; }
.hub-nav a:hover { color: var(--ink); }

.search-results { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.search-panel {
  position: absolute;
  z-index: 30;
  left: 24px;
  right: 24px;
  margin-top: 6px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--grid);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}
.search-empty { padding: 12px; color: var(--ink-muted); }
.search-all {
  display: block;
  padding: 10px 12px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  border-top: 1px solid var(--hairline);
}

/* --- Page furniture ---------------------------------------------------- */

.hub-hero, .page-head { padding: 40px 0 20px; }

.hub-hero h1, .page-head h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hub-lede { margin: 0; max-width: 62ch; color: var(--ink-2); line-height: 1.55; }

.crumb { margin: 0 0 8px; font-size: 0.85rem; color: var(--ink-muted); }
.crumb a { color: var(--ink-muted); }

.hub-panel {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  margin-bottom: 20px;
}

.hub-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .hub-split { grid-template-columns: 1fr; } }

.notice {
  padding: 12px 14px;
  margin: 0 0 20px;
  background: var(--surface-2);
  border-left: 3px solid var(--warning);
  border-radius: 6px;
  color: var(--ink-2);
  font-size: 0.92rem;
}

/* --- Headline metrics + ramp legend ------------------------------------ */

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.headline-strip { display: flex; gap: 32px; flex-wrap: wrap; }

.metric-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* Colour never carries meaning alone: the ramp bins are named. */
.ramp-legend { font-size: 0.78rem; color: var(--ink-muted); }
.ramp-label { display: block; margin-bottom: 6px; letter-spacing: 0.03em; }
.ramp-legend ul { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.ramp-legend li { display: flex; align-items: center; gap: 6px; }
.ramp-swatch {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid var(--hairline);
}

/* --- Strength badge ---------------------------------------------------- */

/* The badge is supporting evidence, not the row's headline. Sized to sit below
   the researcher's name in the visual hierarchy — the name and the papers are
   what a visitor came for; the score qualifies them. */
.badge { text-align: right; flex: 0 0 auto; }
.badge-score {
  display: block;
  font-weight: 600;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.badge-caption {
  display: block;
  margin-top: 3px;
  font-size: 0.68rem;
  color: var(--ink-muted);
  max-width: 14ch;
  margin-left: auto;
}
.badge-lg .badge-score { font-size: 1.7rem; }
.badge-md .badge-score { font-size: 1.15rem; }
.badge-sm .badge-score { font-size: 0.95rem; }
.badge-missing .badge-score { color: var(--ink-muted); font-weight: 400; }

/* --- Expert rows ------------------------------------------------------- */

.expert-list { list-style: none; margin: 0; padding: 0; }

.expert {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.expert:last-child { border-bottom: 0; }

.expert-name {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
}
.expert-name:hover { color: var(--accent); }
.expert-meta { font-size: 0.85rem; color: var(--ink-muted); margin-top: 2px; }
.expert-numbers { font-size: 0.85rem; color: var(--ink-2); margin-top: 4px; }
.compact .expert { padding: 10px 12px; }

/* --- Chips, works, lists ----------------------------------------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.85rem;
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip-count { color: var(--ink-muted); font-variant-numeric: tabular-nums; }

.work-list { margin: 0; padding-left: 20px; }
.work-list li { margin-bottom: 14px; }
.work-title { color: var(--ink); line-height: 1.4; }
.work-meta { font-size: 0.83rem; color: var(--ink-muted); margin-top: 3px; }
.work-doi { font-size: 0.8rem; color: var(--accent); text-decoration: none; }

.oa-tag {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--good);
  border: 1px solid var(--good);
  border-radius: 4px;
}

.plain-list { list-style: none; margin: 0; padding: 0; }
.plain-list li { padding: 6px 0; border-bottom: 1px solid var(--hairline); font-size: 0.92rem; }
.plain-list li:last-child { border-bottom: 0; }

.partner-list { list-style: none; margin: 0; padding: 0; }
.partner-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
}
.partner-list li:last-child { border-bottom: 0; }

/* A fixed box so every row aligns whether it holds a wordmark, a square badge
   or a monogram. object-fit: contain keeps any aspect ratio intact. */
.partner-logo {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 3px;
}
.partner-monogram {
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0;
}
.partner-text { min-width: 0; }
.partner-name { display: block; color: var(--ink); font-size: 0.95rem; }
.partner-meta { font-size: 0.8rem; color: var(--ink-muted); }

/* --- Tables (also the accessible view of every chart) ------------------ */

.table-view { margin-top: 16px; }
.table-view summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.88rem;
  padding: 6px 0;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 10px; }
.data-table th {
  text-align: left;
  padding: 8px 10px;
  color: var(--ink-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--grid);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.data-table td { padding: 8px 10px; border-bottom: 1px solid var(--hairline); color: var(--ink-2); }
.data-table td a { color: var(--ink); text-decoration: none; }
.data-table td a:hover { color: var(--accent); }
.data-table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* --- The mini-CV ------------------------------------------------------- */

.cv { padding-top: 32px; }

.cv-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}

.cv-avatar {
  flex: 0 0 auto;
  width: 68px; height: 68px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  color: var(--ink-2);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cv-identity { flex: 1; min-width: 0; }
.cv-identity h1 { margin: 0 0 6px; font-size: 1.7rem; font-weight: 600; color: var(--ink); }
.cv-position { margin: 0 0 8px; color: var(--ink-2); font-size: 0.95rem; }
.cv-position a { color: var(--ink-2); }
.cv-links { margin: 0; display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.87rem; }
.cv-links a { color: var(--accent); text-decoration: none; }

.cv-metrics {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}

.cv-block { padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.cv-block:last-child { border-bottom: 0; }
.cv-note { margin: 12px 0 0; font-size: 0.88rem; color: var(--ink-muted); }

/* --- Footer ------------------------------------------------------------ */

.hub-footer { border-top: 1px solid var(--hairline); background: var(--surface); }
.hub-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 44px;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.hub-footer-inner p { margin: 0 0 8px; max-width: 78ch; }
.hub-footer-inner a { color: var(--accent); }

@media (max-width: 640px) {
  .hub-hero h1, .page-head h1 { font-size: 1.5rem; }
  .cv-head { flex-wrap: wrap; }
  .headline-strip { gap: 20px; }
  .metric-value { font-size: 1.3rem; }
}

.chart-caption {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* --- Discipline cards --------------------------------------------------- */
/* Every discipline gets a card whatever its size. On the treemap, a two-paper
   discipline beside a four-hundred-paper one is a sliver nobody can see or
   click; these stay legible and equally reachable. */

.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.disc-card {
  display: block;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  text-decoration: none;
}
.disc-card:hover { border-color: var(--accent); }

.disc-name { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.disc-blurb {
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 5px 0 9px;
}
.disc-numbers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-2);
}
.disc-numbers strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* --- "Known for" chips --------------------------------------------------- */
/* Ranking in a subject is depth-weighted and uses each person's focus, but the
   share itself is not printed — the order carries it. */

.known-for {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.known-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.chip-sm { padding: 3px 9px; font-size: 0.78rem; }

.hub-note {
  margin: 10px 0 0;
  max-width: 66ch;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* --- Visitor overview (plain-language orientation, above the data) -------- */

.overview { padding: 44px 0 8px; }

.overview-lead { max-width: 66ch; }
.overview-lead h1 {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.overview-lead p {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
}

.approach {
  margin: 28px 0 8px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
}
.approach h2 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.approach-intro {
  margin: 0 0 18px;
  max-width: 66ch;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* The omics layers as a numbered flow — reinforces "layers that connect". */
.layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  counter-reset: layer;
}
.layers li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  counter-increment: layer;
}
.layers li::before {
  content: counter(layer);
  position: absolute;
  left: 12px; top: 12px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}
/* The connecting layer spans the row and reads as the tie-together step. */
.layers li.layer-join {
  grid-column: 1 / -1;
  background: transparent;
  border-style: dashed;
}
.layer-name { display: block; color: var(--ink); font-weight: 600; font-size: 0.9rem; }
.layer-desc { display: block; margin-top: 2px; color: var(--ink-muted); font-size: 0.85rem; line-height: 1.4; }

.overview-signpost {
  margin: 26px 0 0;
  max-width: 70ch;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* The map is now a second-level section under the overview. */
.hub-hero-map { padding: 40px 0 18px; }
.hub-hero-map h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 640px) {
  .overview-lead h1 { font-size: 1.5rem; }
  .overview-lead p { font-size: 1rem; }
}
