/* GoPlay11 — Ice Blue Editorial + Geometric Sport
   Style system: cool paper base, cobalt actions, cyan data, deep navy ink.
   Layout: 12-col asymmetric, 1400px container, 24px gutter.
   Type: Inter (UI) + Noto Sans Devanagari (Hindi). H1 max 58px, mobile 36px.
*/

:root {
  --primary: #1769E8;
  --primary-600: #0f53bd;
  --primary-700: #094091;
  --accent: #0EA5A8;
  --accent-600: #0c8a8d;
  --accent-700: #0a6e6e; /* darker accent for ≥4.5:1 contrast on white surface (AA small text) */
  --background: #F4F8FF;
  --background-alt: #ECF3FF;
  --surface: #FFFFFF;
  --surface-2: #E8F1FF;
  --surface-3: #DCEAFB;
  --ink: #13213A;
  --ink-2: #2A3A55;
  --muted: #52647C;
  --muted-2: #5C6E89;
  --border: #C9D9F2;
  --border-2: #A8BDE0;
  --hairline: #E2ECFA;
  --danger: #C0354A;
  --warn: #B5890E;
  --success: #1E7E5C;
  --shadow-card: 0 1px 0 rgba(19,33,58,0.04), 0 8px 24px rgba(19,33,58,0.06);
  --shadow-elev: 0 4px 0 rgba(19,33,58,0.04), 0 16px 40px rgba(19,33,58,0.1);
  --radius-1: 6px;
  --radius-2: 10px;
  --radius-3: 14px;
  --radius-4: 20px;
  --radius-pill: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --gutter: 24px;
  --container: 1400px;
  --font-sans: "Inter", "Noto Sans Devanagari", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", "Noto Sans Devanagari", system-ui, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  --shadow-coach: 0 1px 0 rgba(19,33,58,0.06), 0 24px 50px rgba(19,33,58,0.08);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; scroll-behavior: smooth; }
html, body { font-size-adjust: 0.5; } /* stabilize x-height during web-font swap */
section[id] { scroll-margin-top: 80px; } /* sticky nav clearance */
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-700); text-decoration: underline; text-underline-offset: 2px; }
button { font-family: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-6) 0; }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--ink); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 0; z-index: 1000; font-size: 14px;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent); }

/* Container */
.container {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (max-width: 640px) { .container { padding: 0 var(--space-4); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(244, 248, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  display: flex; align-items: center; gap: var(--space-5);
  height: 72px; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand__mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
  box-shadow: 0 1px 0 rgba(19,33,58,0.08), 0 4px 14px rgba(23,105,232,0.35);
}
.brand__name { font-weight: 800; }
.brand__sep { color: var(--muted-2); margin: 0 4px; font-weight: 400; }
.brand__tag { color: var(--muted); font-weight: 500; font-size: 13px; }

/* Mega menu */
.main-nav {
  display: flex; align-items: center; gap: var(--space-1);
  margin-left: auto; margin-right: var(--space-4);
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  white-space: nowrap;
}
.main-nav__link:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.main-nav__link[aria-current="page"] { color: var(--primary); font-weight: 600; }
.main-nav__chev { font-size: 10px; color: var(--muted-2); }
.main-nav__panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-3); box-shadow: var(--shadow-elev);
  padding: var(--space-5); min-width: 520px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-4);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.main-nav__item:hover .main-nav__panel,
.main-nav__item:focus-within .main-nav__panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.main-nav__panel h4 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 var(--space-3); font-weight: 600;
}
.main-nav__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.main-nav__list a {
  display: block; padding: 6px 8px; border-radius: 6px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.main-nav__list a:hover { background: var(--surface-2); color: var(--primary); text-decoration: none; }
.main-nav__list small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }

.header-cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.header-cta__ghost {
  display: inline-flex; align-items: center; padding: 9px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; color: var(--ink-2); background: transparent;
  white-space: nowrap;
}
.header-cta__ghost:hover { background: var(--surface); border-color: var(--border-2); text-decoration: none; }
.header-cta__primary {
  display: inline-flex; align-items: center; padding: 10px 16px;
  border-radius: var(--radius-pill); border: 0;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 1px 0 rgba(19,33,58,0.08), 0 6px 18px rgba(23,105,232,0.35);
  white-space: nowrap;
}
.header-cta__primary:hover { background: var(--primary-600); color: #fff; text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none; position: relative; z-index: 300;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); align-items: center; justify-content: center;
  margin-left: auto;
}
.hamburger__bars { display: inline-grid; gap: 4px; }
.hamburger__bars span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 0; z-index: 200;
  background: rgba(19,33,58,0.4); opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  overflow: hidden;
  contain: layout paint;
  max-width: 100vw;
}
.mobile-drawer[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px); background: var(--surface);
  padding: 80px 20px 100px; overflow-y: auto;
  transform: translateX(100%); transition: transform .25s ease;
  border-left: 1px solid var(--border);
}
.mobile-drawer[aria-hidden="false"] .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink-2);
}
.mobile-drawer__nav { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 4px; }
.mobile-drawer__nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.mobile-drawer__nav a:hover { background: var(--surface-2); text-decoration: none; }
.mobile-drawer__nav small { color: var(--muted); font-weight: 400; font-size: 12px; margin-left: auto; }
.mobile-drawer__cta {
  display: flex; width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 0; background: var(--primary); color: #fff; font-weight: 700; font-size: 16px;
  align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(23,105,232,0.35);
}
.mobile-drawer__cta:hover { background: var(--primary-600); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; line-height: 1.2;
  white-space: nowrap; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 1px 0 rgba(19,33,58,0.08), 0 6px 18px rgba(23,105,232,0.35); }
.btn--primary:hover { background: var(--primary-600); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn--cta-arrow::after { content: "→"; transition: transform .2s ease; }
.btn--cta-arrow:hover::after { transform: translateX(3px); }
.btn--lg { padding: 14px 24px; font-size: 16px; }
.btn--sm { padding: 8px 14px; font-size: 14px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(14,165,168,0.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(23,105,232,0.08), transparent 60%),
    var(--background);
  padding: var(--space-7) 0 var(--space-8);
 min-height: 560px; }

.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(23,105,232,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-7);
  align-items: center;
  min-width: 0;
}
.hero__inner > * { min-width: 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-700); margin: 0 0 var(--space-3);
  padding: 6px 12px; border: 1px solid var(--border-2); border-radius: var(--radius-pill);
  background: var(--surface); width: max-content; max-width: 100%;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 58px); line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 800; color: var(--ink); margin: 0 0 var(--space-4);
}
.hero h1 em { font-style: italic; color: var(--primary); font-weight: 800; }
.hero__lede {
  font-size: 18px; line-height: 1.65; color: var(--ink-2);
  max-width: 56ch; margin: 0 0 var(--space-5);
}
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__meta {
  margin-top: var(--space-5); display: flex; gap: var(--space-4); flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta span::before { content: "✓"; color: var(--success); font-weight: 700; }

/* Scorecard mock + ticker */
.hero__visual { position: relative; }
.scorecard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-3); min-height: 320px; padding: var(--space-5);
  box-shadow: var(--shadow-card);
  position: relative; z-index: 2;
}
.scorecard__head {
  display: flex; align-items: center; gap: var(--space-3);
  padding-bottom: var(--space-3); margin-bottom: var(--space-3);
  border-bottom: 1px dashed var(--border-2);
}
.scorecard__chip { padding: 3px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.scorecard__chip--live { background: rgba(192,53,74,0.1); color: var(--danger); }
.scorecard__chip--live::before { content: "●"; margin-right: 6px; animation: pulse 1.6s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.scorecard__title { font-weight: 700; color: var(--ink); }
.scorecard__time { margin-left: auto; font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.scorecard__row { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-2) 0; font-size: 15px; }
.scorecard__row + .scorecard__row { border-top: 1px dashed var(--hairline); }
.scorecard__badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
}
.scorecard__name { flex: 1; font-weight: 600; color: var(--ink); }
.scorecard__stat { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 13px; min-width: 70px; text-align: right; }
.scorecard__pts { font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; min-width: 60px; text-align: right; }

/* Annotated image ledger */
.ledger {
  position: relative; border-radius: var(--radius-3); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.ledger__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ledger__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ledger__pin {
  position: absolute; width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: 0 4px 12px rgba(19,33,58,0.35);
  z-index: 2;
}
.ledger__pin--1 { top: 18%; left: 14%; }
.ledger__pin--2 { top: 38%; right: 22%; }
.ledger__pin--3 { bottom: 28%; left: 28%; }
.ledger__pin--4 { bottom: 16%; right: 16%; }
.ledger__caption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--radius-2);
  padding: 10px 14px; font-size: 13px; color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.ledger__caption .num {
  font-weight: 800; color: var(--primary); background: var(--surface-2);
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.ledger__list { padding: var(--space-4) var(--space-5); display: grid; gap: var(--space-3); }
.ledger__item { display: grid; grid-template-columns: 28px 1fr; gap: var(--space-3); align-items: start; }
.ledger__item .num {
  font-weight: 800; color: var(--primary); background: var(--surface-2);
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.ledger__item h4 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: var(--ink); }
.ledger__item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Sections */
.section { padding: var(--space-8) 0; }
.section--tight { padding: var(--space-7) 0; }
.section--bg { background: var(--surface); }
.section--alt { background: var(--background-alt); }
.section--ink { background: var(--ink); color: #fff; }
.section--primary { background: linear-gradient(180deg, var(--primary) 0%, var(--primary-700) 100%); color: #fff; }
.section-head { max-width: 760px; margin: 0 0 var(--space-6); }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.015em;
  font-weight: 800; color: var(--ink); margin: 0 0 var(--space-3);
}
.section-head p { font-size: 17px; color: var(--muted); line-height: 1.65; margin: 0; }
.section--ink .section-head h2, .section--primary .section-head h2 { color: #fff; }
.section--ink .section-head p, .section--primary .section-head p { color: rgba(255,255,255,0.85); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 var(--space-3);
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--primary); display: inline-block; }
.section--ink .section-eyebrow, .section--primary .section-eyebrow { color: var(--accent); }
.section--ink .section-eyebrow::before, .section--primary .section-eyebrow::before { background: var(--accent); }

/* Stat grid */
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  padding: var(--space-5);
  background-image: radial-gradient(circle at 1px 1px, rgba(23,105,232,0.05) 1px, transparent 0);
  background-size: 24px 24px;
}
.stat-tile {
  padding: var(--space-4); border-radius: var(--radius-2);
  background: var(--surface); border: 1px solid var(--border);
}
.stat-tile__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0 0 6px; }
.stat-tile__value { font-size: 28px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.1; letter-spacing: -0.02em; }
.stat-tile__value small { font-size: 13px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.stat-tile__delta { font-size: 12px; color: var(--accent-700); font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.stat-tile__delta--down { color: var(--danger); }

/* Card grid */
.card-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-elev); }
.card--tinted { background: var(--surface-2); }
.card--ink { background: var(--ink); color: #fff; border-color: var(--ink-2); }
.card__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.card--ink .card__label { color: var(--accent); }
.card--tinted .card__label { color: var(--primary-700); } /* raise contrast on tinted card surface (4.37 → 8.6) */
.card h3 { font-size: 20px; line-height: 1.25; margin: 0; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.card--ink h3 { color: #fff; }
.card p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }
.card--ink p { color: rgba(255,255,255,0.78); }
.card__cta { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.card__cta::after { content: "→"; transition: transform .2s ease; }
.card__cta:hover { text-decoration: none; }
.card__cta:hover::after { transform: translateX(3px); }
.card--ink .card__cta { color: var(--accent); }
.card--tinted .card__cta { color: var(--primary-700); } /* raise contrast on tinted card surface (4.37 → 8.6) */

/* Image card */
.media-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.media-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-elev); }
.media-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.media-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.media-card:hover .media-card__media img { transform: scale(1.03); }
.media-card__cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.95); border: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.media-card__body { padding: var(--space-4) var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.media-card__title { font-size: 18px; line-height: 1.25; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin: 0; }
.media-card__meta { font-size: 12px; color: var(--muted); }
.media-card__excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Hub card */
.hub-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  overflow: hidden;
}
.hub-card__media { aspect-ratio: 16/9; background: var(--surface-2); }
.hub-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hub-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.hub-card__count { font-size: 12px; color: var(--muted); font-weight: 600; }
.hub-card__title { font-size: 22px; font-weight: 800; color: var(--ink); margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
.hub-card__excerpt { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.hub-card__topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.hub-card__topic { font-size: 11px; padding: 3px 10px; background: var(--surface-2); border-radius: var(--radius-pill); color: var(--ink-2); font-weight: 600; letter-spacing: 0.04em; }

/* Comparison table */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  overflow: hidden;
}
.compare-table thead th {
  text-align: left; padding: var(--space-4) var(--space-5);
  background: var(--surface-2); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table tbody td {
  padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--ink-2); vertical-align: top;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-table .col-label { font-weight: 700; color: var(--ink); }
.compare-table .pos { color: var(--success); font-weight: 700; }
.compare-table .neg { color: var(--danger); font-weight: 700; }
.compare-table .neu { color: var(--muted); }

/* Tabbed */
.tabs {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3); overflow: hidden;
}
.tabs__bar {
  display: flex; gap: 0; padding: 0 var(--space-4);
  border-bottom: 1px solid var(--border); background: var(--surface-2);
  overflow-x: auto;
}
.tabs__btn {
  padding: 14px 18px; border: 0; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  white-space: nowrap;
}
.tabs__btn[aria-selected="true"] { color: var(--primary-700); border-bottom-color: var(--primary-700); }
.tabs__btn:hover { color: var(--ink); }
.tabs__panel { padding: var(--space-5); display: none; }
.tabs__panel.is-active { display: block; }
.tabs__panel ul { margin: 0; padding-left: 20px; }
.tabs__panel li { padding: 4px 0; font-size: 15px; color: var(--ink-2); }
.tabs__panel li strong { color: var(--ink); }

/* Accordion */
.accordion { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--hairline); }
.accordion__item:last-child { border-bottom: 0; }
.accordion__btn {
  width: 100%; padding: var(--space-4) var(--space-5);
  background: transparent; border: 0; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: var(--space-3);
}
.accordion__btn::after {
  content: "+"; margin-left: auto; font-size: 24px; color: var(--primary);
  font-weight: 400; line-height: 1; transition: transform .2s ease;
}
.accordion__btn[aria-expanded="true"]::after { content: "−"; }
.accordion__panel { padding: 0 var(--space-5) var(--space-5); display: none; }
.accordion__panel.is-open { display: block; }
.accordion__panel p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 12px; }

/* Pull quote */
.pull-quote {
  position: relative; padding: var(--space-7) var(--space-5);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-6); align-items: center;
}
.pull-quote__mark {
  font-size: 120px; line-height: 1; color: var(--surface-3); font-weight: 800;
  font-family: var(--font-display); letter-spacing: -0.05em;
}
.pull-quote__body { font-size: 24px; line-height: 1.4; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.pull-quote__body em { font-style: italic; color: var(--primary); }
.pull-quote__by { margin-top: var(--space-4); font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; }
.pull-quote--aligned { background: var(--ink); color: #fff; border-color: var(--ink-2); }
.pull-quote--aligned .pull-quote__body { color: #fff; }
.pull-quote--aligned .pull-quote__mark { color: var(--primary-700); }
.pull-quote--aligned .pull-quote__by { color: rgba(255,255,255,0.7); }

/* Latest analysis (annotated ledger on dark) */
.analysis {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-6);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3); overflow: hidden;
}
.analysis__media { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); position: relative; }
.analysis__media img { width: 100%; height: 100%; object-fit: cover; }
.analysis__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.analysis__tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-700); font-weight: 700; }
.analysis__title { font-size: 28px; line-height: 1.15; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -0.015em; }
.analysis__lede { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0; }
.analysis__list { display: grid; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.analysis__list li { display: grid; grid-template-columns: 28px 1fr; gap: var(--space-3); padding: 10px 0; border-bottom: 1px dashed var(--hairline); }
.analysis__list li:last-child { border-bottom: 0; }
.analysis__list .num {
  font-weight: 800; color: var(--primary); background: var(--surface-2);
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.analysis__list strong { font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; }
.analysis__list span { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Topic rail (masonry) */
.masonry {
  column-count: 3; column-gap: var(--space-4);
}
.masonry > * { break-inside: avoid; margin-bottom: var(--space-4); }
.masonry--2 { column-count: 2; }

/* Inline image row */
.inline-image {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center;
  margin: var(--space-6) 0;
}
.inline-image--reverse { grid-template-columns: 1fr 1fr; }
.inline-image--reverse .inline-image__media { order: 2; }
.inline-image__media {
  border-radius: var(--radius-3); overflow: hidden; aspect-ratio: 4/3;
  background: var(--surface-2); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-card);
}
.inline-image__media img { width: 100%; height: 100%; object-fit: cover; }
.inline-image__caption { font-size: 13px; color: var(--muted); margin-top: 8px; font-style: italic; }
.inline-image__body h3 { font-size: 22px; line-height: 1.2; margin: 0 0 var(--space-3); font-weight: 800; }
.inline-image__body p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 12px; }

/* FAQ */
.faq { display: grid; gap: var(--space-3); }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-2); padding: var(--space-4) var(--space-5); }
.faq__q { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.faq__a { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary-700) 100%);
  color: #fff; padding: var(--space-8) 0;
  border-radius: var(--radius-4); margin: var(--space-6) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
}
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-6); align-items: center; }
.cta-band h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.15; margin: 0 0 var(--space-3); font-weight: 800; letter-spacing: -0.015em; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; font-size: 16px; }
.cta-band .btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(14,165,168,0.4); }
.cta-band .btn--primary:hover { background: var(--accent-600); }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.cta-band__notice { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: var(--space-3); }

/* Sticky mobile CTA */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 220;
  background: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); padding: 10px 14px;
  box-shadow: 0 -4px 14px rgba(19,33,58,0.08);
}
.sticky-cta__btn {
  display: flex; width: 100%; padding: 14px 18px;
  background: var(--primary); color: #fff; border: 0; border-radius: var(--radius-2);
  font-weight: 800; font-size: 16px; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(23,105,232,0.35);
}
.sticky-cta__btn:hover { background: var(--primary-600); text-decoration: none; }
.sticky-cta__sub { display: block; text-align: center; font-size: 11px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: var(--space-8) 0 var(--space-7);
  margin-top: var(--space-8);
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0 0 var(--space-3); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid li a { font-size: 14px; }
.footer-brand { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.footer-brand strong { color: #fff; display: block; font-size: 18px; margin-bottom: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4);
  padding-top: var(--space-5); font-size: 13px; color: rgba(255,255,255,0.6);
}
.footer-bottom__links { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Article layout */
.article-hero { padding: var(--space-7) 0 var(--space-5); border-bottom: 1px solid var(--border); }
.article-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-4); max-width: 880px; }
.article-hero__cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.article-hero h1 { font-size: clamp(32px, 4.4vw, 48px); line-height: 1.1; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
.article-hero__meta { display: flex; gap: var(--space-4); font-size: 13px; color: var(--muted); margin-top: var(--space-3); }
.article-hero__lede { font-size: 18px; line-height: 1.65; color: var(--ink-2); margin: 0; max-width: 70ch; }
.article-body { padding: var(--space-7) 0; }
.article-body__inner { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 28px; line-height: 1.2; margin: var(--space-7) 0 var(--space-3); font-weight: 800; letter-spacing: -0.01em; }
.article-body h3 { font-size: 22px; line-height: 1.25; margin: var(--space-5) 0 var(--space-3); font-weight: 700; }
.article-body p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 var(--space-4); }
.article-body ul, .article-body ol { padding-left: 20px; margin: 0 0 var(--space-4); }
.article-body li { font-size: 17px; line-height: 1.7; color: var(--ink-2); padding: 4px 0; }
.article-body blockquote {
  margin: var(--space-5) 0; padding: var(--space-4) var(--space-5);
  background: var(--surface-2); border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-2) var(--radius-2) 0;
  font-size: 17px; color: var(--ink); font-style: italic;
}
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.article-body figure { margin: var(--space-6) 0; }
.article-body figcaption { font-size: 13px; color: var(--muted); padding-top: 8px; font-style: italic; }
.article-body img { border-radius: var(--radius-2); border: 1px solid var(--border); }

/* TOC */
.toc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  padding: var(--space-5);
}
.toc h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 var(--space-3); }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; padding: 6px 0; border-bottom: 1px dashed var(--hairline); }
.toc li:last-child { border-bottom: 0; }
.toc li::before { content: counter(toc, decimal-leading-zero) " · "; color: var(--primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.toc a { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.toc a:hover { color: var(--primary); }

/* Breadcrumbs */
.crumbs { display: flex; gap: 6px; flex-wrap: wrap; padding: var(--space-3) 0; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs span { color: var(--border-2); }

/* Trust strip */
.trust-strip {
  display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center;
  padding: var(--space-4) var(--space-5); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-3);
  font-size: 13px; color: var(--muted);
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip__item strong { color: var(--ink); font-weight: 700; }

/* Info box */
.info-box__title { margin: 0 0 var(--space-3); font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.info-box {
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-2); padding: var(--space-4) var(--space-5);
  margin: var(--space-4) 0;
}
.info-box h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin: 0 0 8px; font-weight: 700; }
.info-box p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6; }
.info-box--warn { border-left-color: var(--warn); }
.info-box--warn h4 { color: var(--warn); }
.info-box--ok { border-left-color: var(--success); }
.info-box--ok h4 { color: var(--success); }

/* Step */
.step { display: grid; grid-template-columns: 48px 1fr; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px dashed var(--hairline); }
.step:last-child { border-bottom: 0; }
.step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2); color: var(--primary);
  font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
}
.step__title { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.step__desc { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Related links */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
}
.related-card {
  display: flex; gap: var(--space-3); align-items: center;
  padding: var(--space-3) var(--space-4); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-2);
  font-size: 14px; color: var(--ink); font-weight: 600;
}
.related-card:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.related-card .arrow { margin-left: auto; color: var(--primary); }

/* Jurisdiction table */
.juris-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  min-width: 0;
}
.juris-cell {
  padding: var(--space-3) var(--space-4); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-2);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  min-width: 0; overflow: hidden;
}
.juris-cell__name { font-weight: 700; color: var(--ink); font-size: 14px; min-width: 0; overflow-wrap: break-word; line-height: 1.25; }
.juris-cell__status { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-pill); flex-shrink: 0; }
.juris-cell__status--ok { background: #d4ebe1; color: #0a5a3d; } /* darkened for AA on tinted bg (4.38 → 6.55) */
.juris-cell__status--no { background: rgba(192,53,74,0.1); color: var(--danger); }
.juris-cell__status--unk { background: #fdf6df; color: #6b4f06; } /* darkened amber for AA (2.89 → 8.27) */

/* Topic chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap;
}
.chip:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.chip--solid { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Dot grid for technical-grid surface */
.tech-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(23,105,232,0.06) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Safety desk: adaptive 1- or 2-col grid using minmax(min-content,1fr)
   so cells never exceed parent width and stack on narrow viewports. */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-5);
  align-items: start;
  width: 100%;
  min-width: 0;
}
.safety-grid > * { min-width: 0; }
/* AA 1.4.11: distinguishable non-color cue for inline links in body prose (Lighthouse link-in-text-block) */
.safety-grid p a,
.prose a,
.article-body p a { text-decoration: underline; text-underline-offset: 2px; }
.safety-grid p a:hover,
.prose a:hover,
.article-body p a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Skip anchors */
section[id] { scroll-margin-top: 90px; }

/* Stat divider band */
.stat-band {
  padding: var(--space-6) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-band__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.stat-band__cell { text-align: center; border-right: 1px solid var(--hairline); }
.stat-band__cell:last-child { border-right: 0; }
.stat-band__num { font-size: 36px; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; line-height: 1; }
.stat-band__lbl { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* Responsive */
@media (max-width: 1199px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .pull-quote { grid-template-columns: 1fr; }
  .pull-quote__mark { font-size: 80px; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .analysis { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table thead th, .compare-table tbody td { padding: var(--space-3); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .juris-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-band__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .stat-band__cell:nth-child(2) { border-right: 0; }
  .stat-band__cell { padding-bottom: 12px; }
  .masonry { column-count: 2; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: var(--space-7) 0; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .inline-image { grid-template-columns: 1fr; }
  .inline-image--reverse .inline-image__media { order: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .juris-grid { grid-template-columns: 1fr 1fr; }
  .stat-band__row { grid-template-columns: 1fr 1fr; }
  .stat-band__cell { border-right: 0; }
  .stat-band__num { font-size: 28px; }
  .masonry { column-count: 1; }
  .sticky-cta { display: block; }
  .site-footer { padding-bottom: 100px; }
  .hero { padding: var(--space-5) 0 var(--space-6); }
  .hero h1 { line-height: 1.1; }
  .hero__lede { font-size: 16px; }
  .container { padding: 0 16px; }
  .site-header__bar { height: 60px; padding: 0 16px; }
  .main-nav { gap: 0; }
  .main-nav__link { padding: 8px 10px; font-size: 14px; }
  .main-nav__panel { min-width: 320px; grid-template-columns: 1fr 1fr; }
  .pull-quote__body { font-size: 20px; }
  .analysis__title { font-size: 22px; }
  .analysis__body { padding: var(--space-4); }
  .compare-table { font-size: 12px; }
  .compare-table thead th, .compare-table tbody td { padding: 10px; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
  .ledger__pin { width: 24px; height: 24px; font-size: 11px; }
  .ledger__caption { font-size: 12px; padding: 8px 10px; }
  .cta-band { padding: var(--space-6) 0; border-radius: var(--radius-3); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .crumbs { font-size: 12px; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 24px; }
  .stat-tile__value { font-size: 22px; }
  .juris-cell { flex-wrap: wrap; align-items: flex-start; gap: 6px; }
  .juris-cell__name { flex: 1 1 100%; }
  .juris-cell__status { flex: 0 0 auto; }
}

/* Print */
@media print {
  .site-header, .site-footer, .sticky-cta, .hamburger, .mobile-drawer { display: none !important; }
  body { background: #fff; color: #000; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* A11y: nav panel title (was h4, now p[role=heading]) */
.main-nav__panel > div > .main-nav__title {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-col__title {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
