/* ============================================================================
   home.css — hand-written page styles for the HOME page (welcome.blade.php).
   Loaded only by that page, via @section('head'), so it is not paid for on
   every public route.

   Consumes the design tokens defined in pivot.css (--paper, --ink, --navy,
   --accent, --font-display, ...). Written by hand rather than as Tailwind
   utilities so changes don't require re-running the Tailwind build — the same
   arrangement as pages.css.

   hm-*  = Home page.  Every class here is namespaced: the originals were
           generic (.wrap .sec .btn .card .panel .hero .nav .foot) and collided
           with pivot.css and with other views.

   Tokens are split in two: the shared light/dark palettes live in
   resources/css/input.css so every page gets them, while the handful this page
   alone uses (band/hot section colours, font stacks) are defined just below.
   ============================================================================ */

/* ═══ Home-page-only tokens ═══════════════════════════════════════════════════
   The shared palette (--paper, --ink, --navy, --accent, --rule …) lives in
   resources/css/input.css and is NOT repeated here.

   These 17 are the ones only this page uses: the dark navy band, the hot/orange
   block, and the three font stacks. They were lost when the inline :root block
   was removed, which silently broke ~80 declarations — an undefined var() voids
   the whole declaration, so `border:1px solid var(--band-rule)` rendered as no
   border at all rather than falling back to a default.

   Values are copied verbatim from _prototype/home-redesign.html. This file is
   served as-is (no Tailwind build), so edits here need only a reload. ------- */
:root{
  /* fonts */
  --ff-u:"Geist",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --ff-d:"Source Serif 4",Georgia,"Times New Roman",serif;
  --ff-m:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,monospace;

  /* dark navy band */
  --band:#0F2A47;
  --band-ink:#F2EFE8;
  --band-mut:rgba(242,239,232,.62);
  --band-panel:rgba(255,255,255,.045);
  --band-rule:rgba(242,239,232,.16);

  /* hot / orange block */
  --hot:#A8481E;
  --hot-deep:#7A3214;
  --hot-ink:#FCF6F1;
  --hot-rule:rgba(252,246,241,.34);
  --hot-eyebrow:var(--hot-ink);

  /* trust strip: same fixed-background pattern as band/hot above, just missed
     when dark mode was added — its text used var(--navy)/var(--muted), which
     correctly flip to LIGHT colours for dark mode, rendered against this
     band's permanently bright yellow background. Fixed dark text, always. */
  --trust-ink:#1D3FA0;
  --trust-muted:#5C4A1F;

  /* misc */
  --accent-ink:#A8481E;
  --sunk:#F1ECE3;
  --measure:1240px;
  --shadow:0 1px 0 rgba(255,255,255,.5) inset,
           0 24px 60px -32px rgba(15,42,71,.30),
           0 60px 120px -60px rgba(15,42,71,.22);
}
/* --band/--hot are deliberately theme-fixed (the dataset band and the closing
   CTA are always-styled sections, independent of light/dark, same as before)
   — only --sunk needs a dark counterpart, since it's a *relative* tone
   (recessed panel background) whose light value would otherwise sit as a
   pale patch on a dark page. */
:root.dark{ --sunk:#0E1626; }

/* ═══ Mockup typography, scoped to the page content ══════════════════════════
   readability.css USED TO darken --ink/--ink-soft/--muted and strengthen --rule
   unconditionally (no dark-mode guard), so this page restored its own lighter
   prototype values underneath it. That readability.css behaviour was removed
   (2026-09) — its fix is now the canonical LIGHT token values in
   resources/css/input.css, with dark mode getting its own correct values in
   :root.dark there. This override is retired with it: keeping it would have
   permanently re-locked --ink/--muted/--rule to light-only hardcoded values
   on every page section, which is exactly the bug that made dark mode
   illegible in the first place — just reintroduced here instead of there.
   font-weight:400 stays; it was never part of that bug. ------------------- */
main, .hm-foot{ font-weight:400; }

/* The reset that used to live here now sits in resources/css/input.css under
   @layer base, so every page gets it — not just this one. Only the smooth-scroll
   behaviour stays, because only this page has in-page anchors to scroll to. */
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} }

/* ── shared scaffolding ─────────────────────────────────────── */
.hm-wrap{max-width:var(--measure);margin:0 auto;padding-inline:40px}
.hm-sec{padding-block:104px;scroll-margin-top:88px}

/* the statistical-report spine: mono apparatus in a left rail */
.hm-spine{display:grid;grid-template-columns:168px minmax(0,1fr);gap:56px;align-items:start}
.hm-rail{
  position:sticky;top:96px;font-family:var(--ff-m);font-size:10.5px;line-height:1.75;
  letter-spacing:.05em;color:var(--muted);border-top:2px solid var(--accent);padding-top:12px;
}
.hm-rail b{display:block;font-weight:600;color:var(--ink-soft);letter-spacing:.12em;
  text-transform:uppercase;font-size:10px;margin-bottom:9px}
.hm-rail span{display:block}
.hm-rail-num{font-variant-numeric:tabular-nums}

.hm-eyebrow{font-family:var(--ff-m);font-size:11px;font-weight:600;letter-spacing:.16em;
  text-transform:uppercase;color:var(--accent);margin:0}
h1,h2,h3{margin:0;font-family:var(--ff-d);color:var(--navy);text-wrap:balance;font-weight:400}
h2{font-size:clamp(34px,3.6vw,46px);line-height:1.06;letter-spacing:-.024em;margin-top:14px}
h3{font-size:20px;line-height:1.3;letter-spacing:-.012em;font-weight:500}
.hm-lede{font-size:18px;line-height:1.58;color:var(--ink-soft);text-wrap:pretty;margin:16px 0 0;max-width:62ch}
.hm-sec-head{max-width:660px;margin-bottom:48px}

.hm-btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--ff-u);font-size:14px;
  font-weight:500;text-decoration:none;border-radius:5px;padding:12px 20px;cursor:pointer;
  border:1px solid transparent;transition:transform .16s ease,box-shadow .16s ease,background .16s ease}
.hm-btn svg{display:block;transition:transform .16s ease}
.hm-btn:hover{transform:translateY(-1px)}
.hm-btn:hover svg:last-child{transform:translateX(3px)}
/* --navy and --paper both invert, so this stays legible in every theme with no override */
.hm-btn-p{background:var(--navy);color:var(--paper);box-shadow:0 1px 2px rgba(15,42,71,.24)}
.hm-btn-p:hover{box-shadow:0 6px 20px -6px rgba(15,42,71,.42)}
.hm-btn-g{background:var(--panel);color:var(--ink);border-color:var(--rule-str)}
.hm-btn-g:hover{border-color:var(--accent);color:var(--accent)}
.hm-lnk{display:inline-flex;align-items:center;gap:6px;font-size:13.5px;font-weight:500;
  color:var(--accent);text-decoration:none;transition:gap .16s ease}
.hm-lnk:hover{gap:10px}
.hm-lnk svg{display:block}

/* ── nav ────────────────────────────────────────────────────── */
.hm-nav{position:sticky;top:0;z-index:40;border-bottom:1px solid var(--rule);
  background:color-mix(in oklab,var(--paper) 84%,transparent);backdrop-filter:blur(14px) saturate(1.3);
  -webkit-backdrop-filter:blur(14px) saturate(1.3)}
.hm-nav-in{display:flex;align-items:center;gap:36px;padding-block:14px}
.hm-lockup{display:inline-flex;align-items:center;gap:10px;color:var(--navy);text-decoration:none}
.hm-lockup-t{display:flex;flex-direction:column;line-height:1}
.hm-lockup-t b{font-size:13.5px;font-weight:600;letter-spacing:.05em}
.hm-lockup-t i{font-family:var(--ff-m);font-style:normal;font-size:9.5px;font-weight:500;
  letter-spacing:.2em;color:var(--muted);margin-top:3px}
.hm-beta{font-family:var(--ff-m);font-size:9px;font-weight:600;letter-spacing:.13em;
  padding:3px 6px;border-radius:3px;background:var(--accent);color:#fff}
.hm-nav-links{display:flex;gap:26px;font-size:13.5px;font-weight:500;color:var(--ink-soft)}
.hm-nav-links a{text-decoration:none;padding-block:4px;border-bottom:1.5px solid transparent;
  transition:color .15s ease,border-color .15s ease}
.hm-nav-links a:hover,.hm-nav-links a[aria-current]{color:var(--accent);border-bottom-color:var(--accent)}
.hm-nav-sp{flex:1}

/* ── hero ───────────────────────────────────────────────────── */
.hm-hero{position:relative;overflow:hidden;padding-top:78px;padding-bottom:100px}
.hm-hero-in{position:relative;text-align:center}
.hm-pill{display:inline-flex;align-items:center;gap:10px;font-size:12.5px;color:var(--ink-soft);
  background:var(--panel);border:1px solid var(--rule);border-radius:999px;
  padding:5px 14px 5px 6px;text-decoration:none;transition:border-color .16s ease}
.hm-pill:hover{border-color:var(--accent)}
.hm-pill em{font-family:var(--ff-m);font-style:normal;font-size:9.5px;font-weight:600;letter-spacing:.1em;
  background:var(--accent-soft);color:var(--accent);border-radius:999px;padding:3px 8px}
.hm-pill svg{display:block;color:var(--muted)}
/* one sentence, wrapping naturally — no forced narrow measure, no hard break */
h1{font-size:clamp(44px,5.2vw,72px);line-height:1.05;letter-spacing:-.032em;
  max-width:23ch;margin:30px auto 0}
h1 .hm-hl{color:var(--accent);font-style:italic}
.hm-hero .hm-lede{margin:24px auto 0;text-align:center;font-size:18px;max-width:60ch}
.hm-hero .hm-lede code{font-family:var(--ff-m);font-size:.85em;background:var(--accent-soft);
  color:var(--accent);padding:2px 6px;border-radius:3px}

/* ── hero search: a lookup field, not a question box ────────── */
.hm-search{display:flex;align-items:center;gap:12px;max-width:670px;margin:38px auto 0;
  text-align:left;background:var(--panel);border:1px solid var(--rule-str);border-radius:10px;
  padding:6px 6px 6px 17px;box-shadow:0 1px 2px rgba(15,42,71,.05);
  transition:border-color .16s ease,box-shadow .16s ease}
.hm-search:focus-within{border-color:var(--accent);
  box-shadow:0 0 0 3px color-mix(in oklab,var(--accent) 15%,transparent)}
.hm-search > svg{flex:none;color:var(--muted)}
.hm-search input{flex:1;min-width:0;border:0;background:none;outline:none;color:var(--ink);
  font-family:var(--ff-u);font-size:15.5px;padding:12px 0}
.hm-search input::placeholder{color:var(--muted)}
.hm-search input::-webkit-search-cancel-button{-webkit-appearance:none}
.hm-scope{flex:none;display:inline-flex;align-items:center;gap:6px;cursor:pointer;
  font-family:var(--ff-m);font-size:11px;font-weight:500;color:var(--ink-soft);
  background:var(--sunk);border:1px solid var(--rule);border-radius:6px;padding:9px 10px;
  transition:border-color .15s ease}
.hm-scope:hover{border-color:var(--rule-str)}
.hm-scope svg{opacity:.55}
.hm-search-go{flex:none;display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border:0;border-radius:7px;cursor:pointer;
  background:var(--accent);color:#fff;transition:transform .16s ease,filter .16s ease}
.hm-search-go:hover{filter:brightness(1.07)}
.hm-search-go:hover svg{transform:translateX(2px)}
.hm-search-go svg{transition:transform .16s ease}
.hm-tries{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin-top:18px}
.hm-tries b{font-family:var(--ff-m);font-size:10px;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);margin-right:2px}
.hm-try{font-family:var(--ff-m);font-size:11.5px;color:var(--ink-soft);cursor:pointer;
  background:none;border:1px solid var(--rule);border-radius:999px;padding:5px 12px;
  transition:border-color .15s ease,color .15s ease,background .15s ease}
.hm-try:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}

/* ── the app window (hero product shot) ─────────────────────── */
.hm-app{margin-top:66px;border:1px solid var(--rule-str);border-radius:11px;overflow:hidden;
  background:var(--panel);box-shadow:var(--shadow);text-align:left}
.hm-app-bar{display:flex;align-items:center;gap:14px;padding:11px 15px;border-bottom:1px solid var(--rule);
  background:color-mix(in oklab,var(--paper) 55%,var(--panel))}
.hm-app-title{font-size:13px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.hm-bar-btns{display:flex;gap:6px;margin-left:auto}
.hm-bar-btns span{font-size:11px;font-weight:500;padding:4px 10px;border-radius:4px;
  border:1px solid var(--rule-str);color:var(--ink-soft)}
/* Fixed, not var(--accent): white text on the theme accent measures 3.10:1 in
   light mode (already short of AA's 4.5:1) and drops to 2.32:1 in dark mode,
   since dark mode's accent is deliberately lighter for legibility as TEXT on
   a dark background — the opposite of what a solid white-on-fill pill needs.
   #B23A1A is a fixed, darker shade for exactly this pairing: 5.98:1 either way. */
.hm-bar-btns span.hm-on{background:#B23A1A;color:#fff;border-color:transparent}

/* THE FIX: .hm-appbody never had any CSS in welcome.hm-blade.hm-php — this is the missing grid.
   260px matches the real page's md:grid-cols-[260px_1fr]. */
.hm-appbody{display:grid;grid-template-columns:260px minmax(0,1fr);min-height:560px}

/* sidebar = #sidebarMenu on the real pivot page */
.hm-side{padding:14px;background:var(--panel);border-right:1px solid var(--rule);min-width:0}
.hm-side-h{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);margin-bottom:9px}
.hm-side-check{display:flex;align-items:center;gap:8px;margin-bottom:8px}
.hm-side-check input{width:13px;height:13px;margin:0;flex:none;accent-color:var(--accent);cursor:pointer}
.hm-side-check label{margin:0;font-size:12px;color:var(--ink-soft);cursor:pointer}
.hm-side-mod{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--navy);border-block:1px solid var(--rule);padding-block:6px;margin:13px 0 9px}
.hm-side-grp{margin-bottom:7px}
.hm-side-grp > button{display:flex;align-items:center;gap:6px;width:100%;padding:4px;
  background:none;border:0;border-radius:3px;cursor:pointer;text-align:left;
  font-family:var(--ff-u);font-size:11px;font-weight:600;letter-spacing:.06em;
  text-transform:uppercase;color:var(--ink-soft);transition:color .14s ease}
.hm-side-grp > button:hover{color:var(--accent)}
.hm-side-grp > button svg{flex:none;opacity:.55;transition:transform .18s ease}
.hm-side-grp[data-open="false"] > button svg{transform:rotate(-90deg)}
.hm-side-grp[data-open="false"] .hm-side-cols{display:none}
/* align-items:flex-start makes each chip shrink to its caption instead of
   stretching the full 260px and trailing dead space */
.hm-side-cols{display:flex;flex-direction:column;align-items:flex-start;gap:3px;padding:4px 0 2px}
.hm-side-col{display:inline-flex;align-items:center;gap:7px;max-width:100%;padding:3px 7px;
  cursor:grab;
  font-family:var(--ff-m);font-size:11.5px;line-height:1.4;color:var(--ink);
  transition:border-color .14s ease,color .14s ease}
.hm-side-col:hover{border-color:var(--accent);color:var(--accent)}
.hm-side-col:active{cursor:grabbing}
.hm-side-col i{width:7px;height:7px;border-radius:2px;background:var(--muted);flex:none}
.hm-side-col .hm-fname{min-width:0;overflow-wrap:anywhere}

.hm-main{min-width:0;display:flex;flex-direction:column}
.hm-crumb{display:flex;align-items:center;gap:12px;padding:11px 18px;border-bottom:1px solid var(--rule);flex-wrap:wrap}
.hm-crumb .hm-p{font-family:var(--ff-m);font-size:11px;color:var(--muted)}
.hm-crumb .hm-t{font-size:13px;font-weight:600;color:var(--ink)}
.hm-tabs{margin-left:auto;display:flex;gap:2px;background:var(--sunk);padding:3px;border-radius:6px}
.hm-tab{font-family:var(--ff-u);font-size:11.5px;font-weight:500;color:var(--muted);background:none;
  border:0;border-radius:4px;padding:5px 13px;cursor:pointer;transition:background .15s ease,color .15s ease}
.hm-tab:hover{color:var(--ink)}
.hm-tab[aria-selected="true"]{background:var(--panel);color:var(--accent);
  box-shadow:0 1px 3px rgba(15,42,71,.14)}
/* .hm-form_area on the real page: tinted ground, shelves loose, output boxed below */
.hm-stage{padding:16px;display:flex;flex-direction:column;gap:14px;flex:1;
  background:color-mix(in oklab,var(--paper) 40%,var(--panel))}

/* pivot shelves — .hm-shelf-label / .hm-shelf-zone-base in resources/css/input.hm-css */
.hm-builder{display:flex;flex-direction:column;gap:10px}
.hm-shelf{display:flex;align-items:center;gap:12px}
.hm-shelf-l{width:64px;flex:none;font-size:11px;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--muted)}
.hm-zone{flex:1;min-width:0;min-height:34px;display:flex;flex-wrap:wrap;align-items:center;gap:6px;
  border:1px dashed var(--rule-str);border-radius:4px;padding:5px 8px;background:var(--panel)}
.hm-chip{display:inline-flex;align-items:center;gap:5px;font-family:var(--ff-m);font-size:12px;
  font-weight:600;border:1px solid var(--rule);border-radius:4px;padding:3px 7px;
  background:var(--panel);color:var(--ink)}
.hm-chip i{width:6px;height:6px;border-radius:2px;background:var(--muted);flex:none}
.hm-chip.hm-m i{border-radius:999px;background:var(--accent)}
.hm-chip.hm-f{border-style:dashed;color:var(--muted);font-weight:500}

.hm-panel{border:1px solid var(--rule);border-radius:7px;overflow:hidden;background:var(--panel)}
.hm-panel[hidden]{display:none}
.hm-scroll{overflow-x:auto}

/* pivot table */
table.hm-pv{width:100%;border-collapse:collapse;font-family:var(--ff-m);font-size:10.5px;color:var(--ink)}
table.hm-pv th,table.hm-pv td{padding:5px 9px;white-space:nowrap}
table.hm-pv thead th{font-family:var(--ff-u);font-size:9.5px;font-weight:600;text-align:center;color:var(--navy-soft)}
table.hm-pv thead tr:last-child th{color:var(--muted);font-weight:500;border-top:1px solid var(--rule)}
table.hm-pv .hm-rl{position:sticky;left:0;z-index:2;background:var(--panel);text-align:left;
  font-family:var(--ff-u);font-size:11px;font-weight:500;border-right:1px solid var(--rule);min-width:118px}
table.hm-pv thead .hm-rl{z-index:3}
table.hm-pv tbody tr{border-top:1px solid var(--rule)}
table.hm-pv tbody tr:hover td{background:color-mix(in oklab,var(--accent) 7%,transparent)}
table.hm-pv td{text-align:right;font-variant-numeric:tabular-nums}
table.hm-pv .hm-gb{border-left:1px solid var(--rule)}
table.hm-pv td.hm-hi{font-weight:600;color:var(--accent);
  box-shadow:inset 0 0 0 1.5px var(--accent);border-radius:2px}

/* chart svg text */
.hm-cv-eyebrow{font-family:var(--ff-m);font-size:9.5px;font-weight:600;letter-spacing:.13em;fill:var(--muted)}
.hm-cv-title{font-family:var(--ff-d);font-size:15px;fill:var(--ink)}
.hm-cv-grid{stroke:var(--rule);stroke-width:1}
.hm-cv-tick{font-family:var(--ff-m);font-size:9px;fill:var(--muted)}
.hm-cv-label{font-family:var(--ff-u);font-size:10.5px;fill:var(--ink-soft)}
.hm-cv-legend{font-family:var(--ff-u);font-size:10px;fill:var(--ink-soft)}
.hm-cv-val{font-family:var(--ff-m);font-size:9.5px;font-weight:500;fill:var(--ink)}
.hm-cv-ref{fill:var(--navy-soft);opacity:.3}
.hm-cv-bar{fill:var(--accent)}
.hm-chart-wrap{padding:16px 18px}
.hm-chart-wrap svg{display:block;width:100%;height:auto}

/* map placeholder */
.hm-map-ph{padding:64px 32px;text-align:center;color:var(--muted);font-size:13px}
.hm-map-ph strong{color:var(--ink)}

/* ── trust strip ────────────────────────────────────────────── */
.hm-trust{border-block:1px solid var(--rule);background:#f0bd47}
.hm-trust-in{display:flex;align-items:center;justify-content:space-between;gap:44px;
  padding-block:28px;flex-wrap:wrap}
.hm-trust-l{font-size:13.5px;color:var(--trust-muted);max-width:34ch;line-height:1.5}
.hm-trust-l b{font-family:var(--ff-d);font-size:16px;font-weight:600;color:var(--trust-ink);display:block;margin-bottom:2px}
.hm-stats{display:flex;gap:48px;flex-wrap:wrap}
.hm-stat b{display:block;font-family:var(--ff-d);font-size:30px;font-weight:600;color:var(--trust-ink);
  line-height:1;letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.hm-stat span{display:block;font-family:var(--ff-m);font-size:10px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--trust-muted);margin-top:8px}

/* ── capability grid ────────────────────────────────────────── */
.hm-caps{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--rule);
  border:1px solid var(--rule);border-radius:8px;overflow:hidden}
.hm-cap{background:var(--panel);padding:26px 24px 28px;display:flex;flex-direction:column;gap:9px;
  min-height:196px;transition:background .18s ease}
.hm-cap:hover{background:color-mix(in oklab,var(--accent) 4%,var(--panel))}
.hm-cap .hm-k{font-family:var(--ff-m);font-size:10px;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--accent)}
.hm-cap h3{margin-top:2px}
.hm-cap p{margin:0;font-size:13.5px;line-height:1.55;color:var(--muted);text-wrap:pretty}

/* ── datasets: the dark band ────────────────────────────────── */
.hm-dark{background:var(--band);color:var(--band-ink)}
.hm-dark h2{color:var(--band-ink)}
.hm-dark .hm-eyebrow{color:color-mix(in oklab,var(--accent) 72%,#fff)}
.hm-dark .hm-lede{color:var(--band-mut)}
.hm-dark .hm-rail{color:var(--band-mut);border-top-color:color-mix(in oklab,var(--accent) 72%,#fff)}
.hm-dark .hm-rail b{color:var(--band-ink)}
.hm-dark .hm-lnk{color:color-mix(in oklab,var(--accent) 70%,#fff)}
.hm-cat{border:1px solid var(--band-rule);border-radius:8px;overflow:hidden;background:var(--band-panel)}
.hm-cat-h,.hm-cat-r{display:grid;grid-template-columns:74px minmax(180px,1.5fr) 108px 68px 74px minmax(200px,1.6fr) 84px;
  gap:16px;align-items:center;padding:13px 20px}
.hm-cat-h{font-family:var(--ff-m);font-size:9.5px;font-weight:600;letter-spacing:.13em;
  text-transform:uppercase;color:var(--band-mut);border-bottom:1px solid var(--band-rule)}
.hm-cat-r{border-top:1px solid var(--band-rule);font-size:13.5px;transition:background .16s ease}
.hm-cat-r:first-of-type{border-top:0}
.hm-cat-r:hover{background:rgba(255,255,255,.05)}
.hm-cat-r .hm-code{font-family:var(--ff-m);font-size:13px;font-weight:600;
  color:color-mix(in oklab,var(--accent) 70%,#fff)}
.hm-cat-r .hm-name{font-weight:500;color:var(--band-ink)}
.hm-cat-r .hm-new{font-family:var(--ff-m);font-size:8.5px;font-weight:600;letter-spacing:.1em;
  padding:2px 6px;border-radius:3px;background:color-mix(in oklab,var(--accent) 82%,#fff);
  color:#20120a;margin-left:8px;vertical-align:2px}
.hm-cat-r .hm-num{font-family:var(--ff-m);font-size:12px;color:var(--band-mut);
  font-variant-numeric:tabular-nums;text-align:right}
.hm-cat-r .hm-yr{font-family:var(--ff-m);font-size:11.5px;color:var(--band-mut)}
.hm-cat-r .hm-blurb{font-size:12.5px;line-height:1.45;color:var(--band-mut);text-wrap:pretty}
.hm-cat-r .hm-go{justify-self:end}
.hm-head-row{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;
  margin-bottom:48px;flex-wrap:wrap}
.hm-head-row .hm-sec-head{margin-bottom:0}

/* ── analyses ───────────────────────────────────────────────── */
.hm-arts{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.hm-art{display:flex;flex-direction:column;gap:12px;background:var(--panel);text-decoration:none;
  border:1px solid var(--rule);border-radius:8px;padding:20px;min-height:252px;
  border-top:2px solid var(--accent);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.hm-art:hover{transform:translateY(-3px);box-shadow:0 14px 34px -18px rgba(15,42,71,.34)}
.hm-art-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.hm-art-tag{font-family:var(--ff-m);font-size:9.5px;letter-spacing:.07em;color:var(--ink-soft);
  border:1px solid var(--rule-str);border-radius:3px;padding:3px 7px}
.hm-art-read{font-family:var(--ff-m);font-size:10.5px;color:var(--muted)}
.hm-art .hm-k{font-family:var(--ff-m);font-size:10px;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--accent)}
.hm-art h3{font-size:17px;line-height:1.26;color:var(--ink);font-weight:500}
.hm-art-foot{margin-top:auto;display:flex;justify-content:space-between;gap:10px;
  font-family:var(--ff-m);font-size:10.5px;color:var(--muted)}

/* ── audiences ──────────────────────────────────────────────── */
.hm-aud-sec{background:color-mix(in oklab,var(--paper) 46%,var(--panel));border-block:1px solid var(--rule)}
.hm-auds{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.hm-aud{background:var(--panel);border:1px solid var(--rule);border-radius:8px;padding:26px 24px;
  display:flex;flex-direction:column;gap:16px}
.hm-aud-h{display:flex;align-items:center;gap:12px}
.hm-aud-h i{width:38px;height:38px;flex:none;border-radius:8px;background:var(--accent-soft);
  color:var(--accent);display:inline-flex;align-items:center;justify-content:center}
.hm-aud-h b{font-size:17.5px;font-weight:600;color:var(--navy);letter-spacing:-.01em}
.hm-aud ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px}
.hm-aud li{display:flex;gap:10px;font-size:13.5px;line-height:1.5;color:var(--ink-soft);text-wrap:pretty}
.hm-aud li svg{flex:none;margin-top:3px;color:var(--accent)}
.hm-aud .hm-lnk{margin-top:auto;padding-top:4px}

/* ── the terracotta close ───────────────────────────────────── */
.hm-hot{background:var(--hot);position:relative;overflow:hidden}
.hm-hot::after{content:"";position:absolute;inset:0;pointer-events:none;opacity:.14;
  background-image:radial-gradient(circle at 1px 1px,var(--hot-ink) 1px,transparent 0);
  background-size:26px 26px;
  -webkit-mask-image:linear-gradient(105deg,transparent 42%,#000 100%);
  mask-image:linear-gradient(105deg,transparent 42%,#ffffff 100%)}
.hm-hot-in{position:relative;display:grid;grid-template-columns:1.35fr 1fr;gap:64px;align-items:center}
.hm-hot .hm-eyebrow{color:var(--hot-eyebrow)}
.hm-hot h2{color:var(--hot-ink);font-size:clamp(34px,3.8vw,48px)}
.hm-hot-copy{font-size:16.5px;line-height:1.62;color:var(--hot-ink);margin:20px 0 0;
  max-width:52ch;text-wrap:pretty}
.hm-hot-cta{display:flex;gap:12px;margin-top:32px;flex-wrap:wrap}
.hm-btn-w{background:var(--hot-ink);color:var(--hot-deep)}
.hm-btn-w:hover{box-shadow:0 8px 24px -8px rgba(0,0,0,.4)}
.hm-btn-o{background:transparent;color:var(--hot-ink);border-color:var(--hot-rule)}
.hm-btn-o:hover{border-color:var(--hot-ink);background:rgba(255,255,255,.09)}
.hm-facts{display:flex;flex-direction:column;gap:1px;background:var(--hot-rule);
  border:1px solid var(--hot-rule);border-radius:8px;overflow:hidden}
/* pre-existing (not introduced today): --hot-ink/#ffffff on this specific
   lighter coral swatch measured 2.58:1 / 2.76:1 — fails WCAG AA (4.5:1) in
   both themes, always has. --hot-deep (3.32:1) is closer but still short for
   the 10px label. #4A1F0C — same warm-brown family, darker — measures 5.10:1,
   clear of AA for every size here. Opacity dropped (it was compensating for
   #ffffff's own low contrast; a color that's actually legible doesn't need it). */
.hm-fact{background:#EC7D4D;padding:17px 20px;display:flex;align-items:baseline;
  justify-content:space-between;gap:16px}
.hm-fact b{font-family:var(--ff-d);font-size:23px;font-weight:600;font-variant-numeric:tabular-nums;
  color:#4A1F0C}
.hm-fact span{font-family:var(--ff-m);font-size:10px;letter-spacing:.11em;text-transform:uppercase;
  color:#4A1F0C;text-align:right;font-weight:600}

/* ── footer ─────────────────────────────────────────────────── */
.hm-foot{background:var(--band);color:var(--band-ink);padding-block:64px 34px}
.hm-foot .hm-lockup{color:var(--band-ink)}
.hm-foot .hm-lockup-t i{color:var(--band-mut)}
.hm-foot-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:36px}
.hm-foot-tag{font-size:13px;line-height:1.5;color:var(--band-mut);margin:18px 0 0;max-width:26ch}
.hm-foot-addr{font-family:var(--ff-m);font-size:10.5px;letter-spacing:.04em;color:var(--band-mut);
  margin-top:18px;line-height:1.6}
.hm-foot-cities{display:block;margin-top:4px;color:var(--band-ink);opacity:.5}
.hm-foot-h{font-family:var(--ff-m);font-size:10px;font-weight:600;letter-spacing:.13em;
  text-transform:uppercase;color:var(--band-ink);margin-bottom:14px}
.hm-foot ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px}
.hm-foot ul a{font-size:13px;color:var(--band-mut);text-decoration:none;transition:color .15s ease}
.hm-foot ul a:hover{color:var(--band-ink)}
.hm-foot-bot{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:52px;
  padding-top:22px;border-top:1px solid var(--band-rule);font-size:12px;color:var(--band-mut)}
.hm-foot-bot .hm-v{font-family:var(--ff-m)}

/* ── reveal ─────────────────────────────────────────────────── */
/* opt-in: the hidden state only applies once JS has stamped html.hm-js, so with
   scripting off (or if the observer never fires) every section stays visible */
html.hm-js .hm-rv{opacity:0;transform:translateY(14px)}
html.hm-js .hm-rv.hm-in{opacity:1;transform:none}
.hm-rv{transition:opacity .6s cubic-bezier(.22,.61,.36,1),transform .6s cubic-bezier(.22,.61,.36,1)}
@media (prefers-reduced-motion:reduce){html.hm-js .hm-rv{opacity:1;transform:none}}

/* ── responsive ─────────────────────────────────────────────── */
@media (max-width:1080px){
  .hm-spine{grid-template-columns:1fr;gap:0}
  .hm-rail{position:static;display:flex;flex-wrap:wrap;gap:6px 22px;margin-bottom:30px;
    border-top-width:2px;padding-top:10px}
  .hm-rail b{width:100%;margin-bottom:2px}
  .hm-caps{grid-template-columns:repeat(2,1fr)}
  .hm-arts{grid-template-columns:repeat(2,1fr)}
  .hm-foot-grid{grid-template-columns:1fr 1fr 1fr}
  .hm-hot-in{grid-template-columns:1fr;gap:44px}
  .hm-cat-h{display:none}
  .hm-cat-r{grid-template-columns:64px minmax(0,1fr) 84px;gap:12px}
  .hm-cat-r .hm-yr,.hm-cat-r .hm-blurb,.hm-cat-r .hm-num{display:none}
}
@media (max-width:860px){
  .hm-wrap{padding-inline:24px}
  .hm-sec{padding-block:72px}
  .hm-nav-links{display:none}
  .hm-appbody{grid-template-columns:1fr;min-height:0}
  .hm-side{display:none}
  .hm-search{flex-wrap:wrap;padding:10px 12px;gap:8px}
  .hm-search input{flex:1 1 100%;order:2;padding:4px 0}
  .hm-search > svg{order:1}
  .hm-scope{order:3;margin-left:auto}
  .hm-search-go{order:4}
  .hm-trust-in{flex-direction:column;align-items:flex-start;gap:26px}
  .hm-stats{gap:30px}
  .hm-caps,.hm-arts,.hm-auds{grid-template-columns:1fr}
  .hm-foot-grid{grid-template-columns:1fr 1fr}
  .hm-crumb .hm-p{display:none}
  .hm-tabs{margin-left:0}
}
@media (max-width:560px){
  .hm-stats{gap:22px}
  .hm-stat b{font-size:25px}
  .hm-foot-grid{grid-template-columns:1fr}
}
