/* ============================================================
   TRUSTMAPS evaluation portal
   Design language carried over from trustmaps.lcs2.in:
   slate-900 / slate-700 / blue-600 palette, 40px grid ground,
   glass cards, scroll reveals, dark pillar section, slate-950 footer.
   Type is Roboto per brief (the marketing site runs Inter).
   ============================================================ */

:root {
  /* straight from the site's tailwind theme */
  --primary: #0f172a;
  --secondary: #334155;
  --accent: #2563eb;
  --light: #f8fafc;
  --surface: #ffffff;

  --slate-950: #020617;
  --slate-800: #1e293b;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;

  /* verticals — the accent blue and the logo green, extended */
  --v1: #ea580c;
  --v2: #2563eb;
  --v3: #34a853;
  --v4: #7c3aed;

  --r: 12px;
  --r-sm: 8px;
  --maxw: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--light);
  color: var(--primary);
  font-family: Roboto, Inter, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "tnum" 1;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }

a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .wrap { padding: 0 48px; } }

/* ---------------------------------------------------------- ground */

.bg-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
}
.bg-grid-fade { position: relative; overflow: hidden; }
.bg-grid-fade::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(248,250,252,0.55), var(--light));
}
.bg-grid-fade > * { position: relative; z-index: 1; }

/* ---------------------------------------------------------- nav */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(226,232,240,0.5);
}
.topbar-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; gap: 24px;
}
@media (min-width: 1024px) { .topbar-in { padding: 0 48px; } }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 26px; width: auto; object-fit: contain; display: block; }
.brand .sub {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-400); padding-left: 12px; border-left: 1px solid var(--slate-200);
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.nav a {
  text-decoration: none; color: var(--secondary); font-weight: 500; font-size: 15px;
  transition: color 0.3s;
}
.nav a:hover { color: var(--accent); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav a.cta {
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.nav a.cta:hover { background: #1d4ed8; color: #fff; }

/* ---------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }

/* ---------------------------------------------------------- hero */

.hero { padding: 84px 0 76px; text-align: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(239,246,255,0.8); border: 1px solid var(--blue-100);
  backdrop-filter: blur(4px);
  color: var(--accent); font-weight: 500; font-size: 13px; line-height: 1.4;
  max-width: 660px; margin: 0 auto 30px;
}
.hero h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -0.035em; line-height: 1.08; }
.grad {
  background: linear-gradient(to right, var(--accent), var(--blue-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  margin: 28px auto 0; max-width: 760px; font-weight: 300;
  font-size: clamp(17px, 2vw, 22px); line-height: 1.6; color: var(--secondary);
}
.hero .figures { justify-content: center; }

.figures { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 44px; }
.fig {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(31,38,135,0.05);
  padding: 18px 26px; min-width: 132px;
}
.fig .n { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.fig .l { font-size: 12px; color: var(--slate-500); font-weight: 500; margin-top: 2px; }

/* ---------------------------------------------------------- sections */

.band { padding: 72px 0; }
.band-white { background: var(--surface); }
.band-light { background: var(--light); }
.band-dark { background: var(--primary); color: #fff; position: relative; overflow: hidden; }
.band-dark::before {
  content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(37,99,235,0.10), transparent);
  pointer-events: none;
}
.band-dark > * { position: relative; z-index: 1; }

.section-head { margin-bottom: 34px; display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 42px); }
.section-head p {
  margin: 14px 0 0; color: var(--secondary); font-weight: 300;
  font-size: 17px; line-height: 1.6; max-width: 68ch;
}
.band-dark .section-head p { color: var(--slate-300); }
.section-head .grow { flex: 1 1 420px; }
.section-head .tools { display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto; }

.eyebrow {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.band-dark .eyebrow { color: var(--blue-400); }

/* ---------------------------------------------------------- cards */

.card {
  background: var(--surface); border: 1px solid var(--slate-200);
  border-radius: var(--r); padding: 28px;
}
.glass {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(31,38,135,0.05);
  transition: all 0.4s var(--ease);
}
a.glass:hover, .glass.lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(31,38,135,0.10);
  border-color: rgba(37,99,235,0.3);
}

/* ---------------------------------------------------------- pillar icons */

.picon { color: var(--accent); line-height: 1; }
.band-dark .picon { color: var(--blue-400); }

/* ---------------------------------------------------------- controls */

.chip {
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  background: var(--surface); color: var(--secondary);
  border: 1px solid var(--slate-200); border-radius: 100px;
  padding: 8px 17px; transition: all 0.3s var(--ease);
}
.chip:hover { border-color: rgba(37,99,235,0.4); color: var(--accent); }
.chip[aria-pressed="true"] {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.22);
}
.band-dark .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: var(--slate-300); }
.band-dark .chip:hover { color: #fff; border-color: rgba(96,165,250,0.5); }
.band-dark .chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------- trust map (dark) */

.map { width: 100%; border-collapse: separate; border-spacing: 0; }
.map th, .map td { text-align: left; padding: 0; }
.map thead th {
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--slate-400); padding: 0 8px 16px; vertical-align: bottom;
}
.map thead th.rot { text-align: center; width: 130px; }
.map thead th.rot .picon { display: block; font-size: 17px; margin-bottom: 9px; }
.map tbody td { border-top: 1px solid rgba(255,255,255,0.08); }
.map .rowlab { padding: 12px 16px 12px 2px; }
.map .rowlab a { text-decoration: none; font-size: 15px; font-weight: 500; color: #fff; transition: color .3s; }
.map .rowlab a:hover { color: var(--blue-400); }
.map .rowlab .sub { font-size: 12px; color: var(--slate-500); font-weight: 400; }
.map .cell { padding: 6px 4px; }
.map .cell i {
  display: block; height: 38px; line-height: 38px; text-align: center;
  border-radius: var(--r-sm); font-style: normal; font-size: 14px; font-weight: 500;
  color: #fff; font-variant-numeric: tabular-nums;
}
.map .idx i {
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.05);
  font-weight: 700;
}

/* ---------------------------------------------------------- bars */

.bars { display: grid; gap: 4px; }
.bar-row {
  display: grid; grid-template-columns: 200px 1fr 56px; align-items: center;
  gap: 16px; padding: 8px 10px; border-radius: var(--r-sm); text-decoration: none;
  transition: background 0.3s;
}
.bar-row:hover { background: var(--slate-100); }
.bar-row .name { font-size: 15px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-row .name .rk { color: var(--slate-400); font-weight: 400; }
.bar-track { height: 26px; background: var(--slate-100); border-radius: var(--r-sm); overflow: hidden; }
.bar-seg { height: 100%; float: left; }
.bar-row .val { text-align: right; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }

.legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; }
.legend span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--secondary); font-weight: 500; }
.legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* ---------------------------------------------------------- radar */

.radar-wrap { display: grid; grid-template-columns: 1fr 260px; gap: 32px; align-items: center; }
.radar-key { display: grid; gap: 12px; }
.radar-key .k { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.radar-key .k i { width: 16px; height: 3px; display: inline-block; border-radius: 2px; }
.radar-key .k b { font-weight: 700; margin-left: auto; font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------- results sheet */

.tablewrap { overflow-x: auto; }
table.sheet { border-collapse: collapse; width: 100%; font-size: 13px; white-space: nowrap; }
table.sheet th, table.sheet td {
  border: 1px solid var(--slate-200); padding: 9px 12px; text-align: center;
  font-weight: 400; vertical-align: middle;
}
table.sheet thead th { background: var(--light); font-weight: 700; }
table.sheet thead tr.verts th { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
table.sheet thead tr.mets th { font-size: 11px; color: var(--secondary); font-weight: 500; }
table.sheet thead tr.mets th abbr { text-decoration: none; border-bottom: 1px dotted var(--slate-400); cursor: help; }
table.sheet td.left { text-align: left; }
table.sheet td.task { font-weight: 700; background: var(--light); }
table.sheet td.ds { color: var(--secondary); white-space: normal; min-width: 156px; font-size: 12px; font-weight: 300; }
table.sheet td.model a { text-decoration: none; font-weight: 500; }
table.sheet td.model a:hover { color: var(--accent); }
table.sheet tbody tr:hover td { background: rgba(239,246,255,0.55); }
table.sheet td.num { font-variant-numeric: tabular-nums; }
table.sheet td.idx { font-weight: 700; }

.hint { font-size: 13px; color: var(--slate-500); margin: 16px 0 0; font-weight: 300; }
.band-dark .hint { color: var(--slate-400); }
code {
  font-family: "Roboto Mono", ui-monospace, monospace; font-size: 12px;
  background: var(--slate-100); padding: 2px 6px; border-radius: 4px; color: var(--secondary);
}
.band-dark code { background: rgba(255,255,255,0.08); color: var(--slate-300); }

/* ---------------------------------------------------------- model page */

.mhead { padding: 44px 0 8px; display: flex; gap: 44px; align-items: flex-start; flex-wrap: wrap; }
.mhead .who { flex: 1 1 440px; }
.mhead h1 { font-size: clamp(32px, 4.6vw, 54px); letter-spacing: -0.035em; }
.mhead .lead { margin: 18px 0 0; color: var(--secondary); font-weight: 300; font-size: 18px; max-width: 62ch; }
.mhead .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-size: 12px; color: var(--secondary); background: var(--surface);
  border: 1px solid var(--slate-200); border-radius: 100px; padding: 5px 14px;
}
.tag b { font-weight: 700; color: var(--primary); }
.scorebox { padding: 26px 32px; min-width: 240px; }
.scorebox .l { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-400); }
.scorebox .n { font-size: 60px; font-weight: 800; letter-spacing: -0.045em; line-height: 1.05; }
.scorebox .r { font-size: 13px; color: var(--secondary); margin-top: 8px; font-weight: 500; }

.vgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vcard { padding: 24px; }
.vcard .vhead { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.vcard .vhead .picon { font-size: 16px; }
.vcard .vname { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; }
.vcard .vscore { font-size: 38px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; }
.vcard .vmeter { height: 5px; background: var(--slate-100); border-radius: 3px; margin-top: 14px; overflow: hidden; }
.vcard .vmeter i { display: block; height: 100%; border-radius: 3px; }
.vcard .vnote { font-size: 12.5px; color: var(--slate-500); margin-top: 12px; font-weight: 300; }

table.detail { width: 100%; border-collapse: collapse; font-size: 14px; }
table.detail th, table.detail td { padding: 11px 14px; border-bottom: 1px solid var(--slate-200); text-align: left; }
table.detail thead th {
  font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--slate-400); font-weight: 700;
}
table.detail td.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 500; }
table.detail tbody tr:last-child td { border-bottom: 0; }
table.detail .vrow td { padding-top: 24px; }
table.detail .vrow .vlabel { font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
table.detail .meterc { width: 130px; }
table.detail .meter { height: 5px; background: var(--slate-100); border-radius: 3px; overflow: hidden; }
table.detail .meter i { display: block; height: 100%; border-radius: 3px; }
table.detail .sub { font-size: 11.5px; color: var(--slate-400); font-weight: 300; }

.notecols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.notecols h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 14px; }
.notecols ul { margin: 0; padding-left: 20px; }
.notecols li { margin-bottom: 10px; color: var(--secondary); font-size: 14.5px; font-weight: 300; }
.notecols li b { font-weight: 500; color: var(--primary); }

/* ---------------------------------------------------------- model directory */

.mcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mcard { padding: 28px; text-decoration: none; display: block; }
.mcard .t { display: flex; align-items: baseline; gap: 12px; }
.mcard .t h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.mcard .t .s { margin-left: auto; font-size: 28px; font-weight: 800; letter-spacing: -0.035em; }
.mcard .p { color: var(--slate-500); font-size: 13px; margin-top: 4px; font-weight: 300; }
.mcard .spark { display: flex; gap: 6px; margin-top: 20px; }
.mcard .spark i { height: 5px; flex: 1; border-radius: 3px; background: var(--slate-100); position: relative; overflow: hidden; }
.mcard .spark i b { position: absolute; top: 0; bottom: 0; left: 0; border-radius: 3px; display: block; }
.mcard .tasks { font-size: 13px; color: var(--secondary); margin-top: 18px; font-weight: 300; }

/* ---------------------------------------------------------- upload flow */

.flow { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.step { margin-bottom: 24px; }
.step-h { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.step-h .k {
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; color: var(--accent);
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px; padding: 3px 11px;
}
.step-h h3 { font-size: 19px; font-weight: 700; }
.step-h p { margin: 0; font-size: 13.5px; color: var(--slate-500); font-weight: 300; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 7px; color: var(--secondary); }
.field input[type=text], .field input[type=url], .field input[type=password], .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--primary);
  border: 1px solid var(--slate-200); border-radius: var(--r-sm);
  padding: 11px 14px; background: var(--surface); transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); outline: none;
}
.field .help { font-size: 12.5px; color: var(--slate-500); margin-top: 7px; font-weight: 300; }
.field.mono input { font-family: "Roboto Mono", ui-monospace, monospace; font-size: 13.5px; }

.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg .chip { flex: 1 1 160px; text-align: left; padding: 12px 17px; }
.seg .chip span { display: block; font-size: 11.5px; font-weight: 400; opacity: .75; margin-top: 2px; }

.drop {
  border: 1px dashed var(--slate-300); border-radius: var(--r);
  padding: 32px; text-align: center; color: var(--slate-500); font-size: 13.5px;
  background: var(--light); font-weight: 300;
}
.drop b { display: block; color: var(--primary); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.drop .picon { font-size: 24px; display: block; margin-bottom: 14px; }

.picks { display: grid; gap: 10px; }
.pick {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px;
  border: 1px solid var(--slate-200); border-radius: var(--r-sm); cursor: pointer;
  transition: all 0.3s var(--ease); background: var(--surface);
}
.pick:hover { border-color: rgba(37,99,235,0.4); }
.pick input { margin-top: 4px; accent-color: var(--accent); width: 16px; height: 16px; }
.pick .pt { font-size: 15px; font-weight: 500; }
.pick .pd { font-size: 13px; color: var(--slate-500); font-weight: 300; }
.pick .pn { margin-left: auto; font-size: 11px; color: var(--slate-400); white-space: nowrap; font-weight: 500; }

.summary { position: sticky; top: 100px; }
.summary dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 11px 14px; font-size: 14px; }
.summary dt { color: var(--slate-500); font-weight: 300; }
.summary dd { margin: 0; text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; }
.summary .total { border-top: 1px solid var(--slate-200); margin-top: 18px; padding-top: 18px; }

.btn {
  font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; width: 100%;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
  border-radius: 100px; padding: 13px 22px; transition: all 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.btn:hover { background: #1d4ed8; box-shadow: 0 6px 20px rgba(37,99,235,0.32); }
.btn[disabled] { background: var(--slate-300); border-color: var(--slate-300); box-shadow: none; cursor: not-allowed; }
.btn.ghost {
  background: transparent; color: var(--accent); border-color: var(--slate-200);
  box-shadow: none; width: auto; display: inline-block; text-decoration: none;
}
.btn.ghost:hover { background: var(--blue-50); border-color: rgba(37,99,235,0.3); }

.notice {
  font-size: 13.5px; color: var(--secondary); background: var(--light);
  border: 1px solid var(--slate-200); border-radius: var(--r); padding: 16px 18px; font-weight: 300;
}
.notice b { color: var(--primary); font-weight: 700; }

/* ---------------------------------------------------------- misc */

.crumb { padding: 28px 0 0; font-size: 13px; color: var(--slate-500); font-weight: 300; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--accent); }

footer.foot { background: var(--slate-950); border-top: 1px solid var(--slate-800); }
footer.foot .in {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 24px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--slate-500); font-weight: 300;
}
@media (min-width: 1024px) { footer.foot .in { padding: 44px 48px; } }
footer.foot .mark { display: flex; align-items: center; gap: 12px; color: var(--slate-400); font-size: 18px; }
footer.foot .mark b { font-weight: 700; color: #fff; font-size: 17px; letter-spacing: -0.01em; }
footer.foot .desc { max-width: 46ch; line-height: 1.5; }
footer.foot .sp { margin-left: auto; text-align: right; }

.loading { padding: 90px 0; text-align: center; color: var(--slate-500); font-weight: 300; }
.error {
  padding: 26px 28px; border: 1px solid var(--slate-200); border-radius: var(--r);
  background: var(--surface); font-size: 14.5px; color: var(--secondary); font-weight: 300;
}
.error b { display: block; color: var(--primary); font-weight: 700; margin-bottom: 8px; font-size: 16px; }

/* ---------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .flow, .radar-wrap, .notecols { grid-template-columns: 1fr; }
  .vgrid { grid-template-columns: 1fr 1fr; }
  .mcards { grid-template-columns: 1fr 1fr; }
  .summary { position: static; }
}
.menu-btn {
  display: none; margin-left: 4px; background: none; border: 0; cursor: pointer;
  color: var(--primary); font-size: 22px; padding: 6px 8px; line-height: 1;
}
.menu-btn:hover { color: var(--accent); }
.mobile-menu {
  border-top: 1px solid var(--slate-200); background: var(--surface);
  padding: 18px 24px 24px; display: grid; gap: 16px;
  box-shadow: 0 24px 48px rgba(15,23,42,0.10);
}
.mobile-menu a { text-decoration: none; font-size: 17px; font-weight: 500; color: var(--secondary); }
.mobile-menu a[aria-current="page"] { color: var(--accent); }
.mobile-menu[hidden] { display: none !important; }

@media (max-width: 860px) {
  .nav { gap: 18px; }
  .nav a:not(.cta) { display: none; }
  .brand .sub { display: none; }
  .menu-btn { display: block; }
}
@media (min-width: 861px) { .mobile-menu { display: none !important; } }
@media (max-width: 720px) {
  body { font-size: 15px; }
  .topbar-in { height: 68px; }
  .hero { padding: 52px 0 48px; }
  .band { padding: 48px 0; }
  .vgrid, .mcards { grid-template-columns: 1fr; }
  .card, .vcard, .mcard, .scorebox { padding: 20px; }
  .bar-row { grid-template-columns: 128px 1fr 46px; gap: 10px; }
  .map thead th.rot { width: 88px; font-size: 9px; }
  .figures { gap: 12px; }
  .fig { padding: 14px 18px; min-width: 108px; }
  .fig .n { font-size: 24px; }
  footer.foot .sp { margin-left: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
