:root {
  --ink: #06111b;
  --ink-2: #0a1a28;
  --panel: #0e2232;
  --panel-2: #122b3e;
  --panel-3: #173447;
  --paper: #f0f3ed;
  --paper-2: #e5ebe4;
  --white: #f9fbf8;
  --text: #f4f7f3;
  --muted: #a8b8c2;
  --muted-dark: #53636a;
  --line: rgba(220, 234, 235, .15);
  --line-dark: rgba(6, 24, 34, .14);
  --signal: #80f0c5;
  --signal-strong: #37dca6;
  --sky: #8dd9ff;
  --amber: #ffd479;
  --coral: #ff8d86;
  --lavender: #bea9ff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
  --shell: 1240px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% -5%, rgba(55, 220, 166, .12), transparent 29rem),
    radial-gradient(circle at 92% 4%, rgba(141, 217, 255, .1), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 56rem);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
::selection { background: var(--signal); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 10px;
  color: var(--signal);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--signal); color: #06241a; box-shadow: 0 12px 34px rgba(55, 220, 166, .16); }
.button--primary:hover { background: #a0f7d7; }
.button--quiet { background: rgba(255, 255, 255, .045); border-color: var(--line); color: var(--text); }
.button--quiet:hover { border-color: rgba(128, 240, 197, .5); background: rgba(128, 240, 197, .08); }
.button--small { min-height: 42px; padding: 8px 14px; font-size: .88rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.trust-strip { background: var(--signal); color: #062219; font-size: .81rem; }
.trust-strip__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.trust-strip p, .trust-strip span { margin: 0; }
.trust-strip a { font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(6, 17, 27, .88);
  backdrop-filter: blur(18px) saturate(135%);
}
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(128, 240, 197, .38);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(128, 240, 197, .22), rgba(141, 217, 255, .06));
  color: var(--signal);
  font-weight: 950;
  letter-spacing: -.08em;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(128, 240, 197, .22);
  border-radius: 50%;
}
.brand-mark::after { width: 21px; height: 21px; }
.brand-mark span { position: relative; z-index: 1; }
.brand-copy { display: grid; line-height: 1.16; }
.brand-copy strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .76rem; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 6px; margin-left: auto; }
.primary-nav a { padding: 10px 12px; border-radius: 999px; color: #c6d1d6; font-size: .88rem; font-weight: 650; text-decoration: none; }
.primary-nav a:hover { background: rgba(255, 255, 255, .055); color: var(--white); }
.icon-button {
  min-width: 46px;
  min-height: 46px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: .83rem;
  font-weight: 750;
}
.icon-button:hover { border-color: rgba(128, 240, 197, .48); background: rgba(128, 240, 197, .06); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding-block: clamp(70px, 9vw, 122px) 80px;
}
.hero__copy { position: relative; }
.hero__copy::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -40px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(128, 240, 197, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(128, 240, 197, .025), 0 0 0 64px rgba(141, 217, 255, .018);
  pointer-events: none;
}
.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 560;
  letter-spacing: -.067em;
  line-height: .91;
}
.hero h1 em { display: block; color: var(--signal); font-style: italic; font-weight: 500; }
.hero__lead { max-width: 700px; margin: 28px 0 0; color: #bdc9cf; font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.source-line { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--muted); }
.source-line__dot { width: 11px; height: 11px; flex: 0 0 11px; border: 2px solid var(--ink); border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255, 212, 121, .16); }
.source-line[data-source-status="current"] .source-line__dot { background: var(--signal); box-shadow: 0 0 0 4px rgba(128, 240, 197, .15); }
.source-line[data-source-status="unavailable"] .source-line__dot { background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 141, 134, .15); }
.source-line div { display: grid; gap: 2px; }
.source-line strong { color: var(--text); font-size: .9rem; }
.source-line span { font-size: .82rem; }

.snapshot-card {
  position: relative;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(141, 217, 255, .17);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(18, 43, 62, .94), rgba(9, 26, 39, .96));
  box-shadow: var(--shadow);
}
.snapshot-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -95px; top: -95px; border-radius: 50%; background: rgba(128, 240, 197, .09); filter: blur(2px); }
.snapshot-card__top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.snapshot-card h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.25rem); letter-spacing: -.04em; }
.status-pill { flex: 0 0 auto; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.status-pill--current { border-color: rgba(128, 240, 197, .34); background: rgba(128, 240, 197, .1); color: #caffeb; }
.status-pill--delayed { border-color: rgba(255, 212, 121, .35); background: rgba(255, 212, 121, .09); color: #ffe9b6; }
.status-pill--unavailable { border-color: rgba(255, 141, 134, .34); background: rgba(255, 141, 134, .09); color: #ffd0cc; }
.snapshot-card__note { margin: 15px 0 20px; color: var(--muted); font-size: .87rem; line-height: 1.65; }
.snapshot-list { display: grid; gap: 8px; margin-bottom: 19px; }
.snapshot-row {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 17px;
  background: rgba(255, 255, 255, .035);
  text-align: left;
}
.snapshot-row:hover { border-color: rgba(128, 240, 197, .27); background: rgba(128, 240, 197, .055); }
.snapshot-row > span:nth-child(2) { min-width: 0; display: grid; }
.snapshot-row strong { overflow: hidden; font-size: .91rem; text-overflow: ellipsis; white-space: nowrap; }
.snapshot-row small { overflow: hidden; margin-top: 3px; color: var(--muted); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.snapshot-row > span:last-child { color: var(--signal); font-size: .73rem; font-weight: 800; }
.incident-symbol { width: 11px; height: 11px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 5px rgba(141, 217, 255, .09); }
.incident-symbol--fire { background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 141, 134, .09); }
.incident-symbol--traffic { background: var(--amber); box-shadow: 0 0 0 5px rgba(255, 212, 121, .09); }
.incident-symbol--hazmat { background: var(--lavender); box-shadow: 0 0 0 5px rgba(190, 169, 255, .09); }
.empty-compact { display: grid; gap: 5px; padding: 17px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); }
.empty-compact strong { color: var(--text); }

.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-bottom: 42px; }
.metric-card { min-height: 176px; display: flex; flex-direction: column; justify-content: flex-end; padding: 21px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(12, 32, 47, .77); }
.metric-card--signal { background: var(--signal); color: #08241c; border-color: transparent; }
.metric-card > span { color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.metric-card--signal > span, .metric-card--signal small { color: #315c4d; }
.metric-card strong { margin-top: 14px; font-family: ui-serif, Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.1rem); font-weight: 560; letter-spacing: -.055em; line-height: .9; }
.metric-card small { margin-top: 12px; color: var(--muted); font-size: .79rem; line-height: 1.45; }
.use-cases { padding-block: 26px 76px; }
.use-case-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.use-case-grid > a { min-height: 230px; display: grid; grid-template-rows: auto 1fr; gap: 28px; padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: rgba(13, 34, 50, .64); color: inherit; text-decoration: none; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.use-case-grid > a:hover { transform: translateY(-3px); border-color: rgba(128, 240, 197, .42); background: rgba(18, 43, 62, .86); }
.use-case-grid > a > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--signal); font-size: .67rem; font-weight: 850; }
.use-case-grid strong { display: block; font-family: ui-serif, Georgia, serif; font-size: 1.3rem; font-weight: 540; letter-spacing: -.025em; line-height: 1.08; }
.use-case-grid p { margin: 10px 0 18px; color: var(--muted); font-size: .82rem; line-height: 1.6; }
.use-case-grid small { color: var(--signal); font-size: .72rem; font-weight: 820; }

.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.section-heading h2 { margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(2.55rem, 5vw, 4.6rem); font-weight: 560; letter-spacing: -.055em; line-height: .98; }
.section-heading p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.explorer-section { padding-block: 86px 104px; }
.view-switch { display: none; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .035); }
.view-switch__button { min-width: 92px; min-height: 44px; padding: 8px 14px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-weight: 780; }
.view-switch__button.is-active { background: var(--signal); color: #08241c; }

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(145px, .55fr)) auto;
  align-items: end;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 34, 50, .82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .14);
}
.field { min-width: 0; }
.field label, .page-size-field label { display: block; margin: 0 0 7px 4px; color: #b7c5cb; font-size: .7rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .page-size-field select {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid rgba(220, 234, 235, .16);
  border-radius: 13px;
  background: #0a1b29;
  color: var(--text);
}
.field input::placeholder { color: #758994; }
.field input:hover, .field select:hover, .page-size-field select:hover { border-color: rgba(128, 240, 197, .36); }
.field input:focus, .field select:focus, .page-size-field select:focus { border-color: var(--signal); }
.search-control { position: relative; }
.search-control span { position: absolute; left: 15px; top: 50%; width: 15px; height: 15px; border: 2px solid #7f929c; border-radius: 50%; transform: translateY(-55%); pointer-events: none; }
.search-control span::after { content: ""; position: absolute; right: -5px; bottom: -4px; width: 7px; height: 2px; background: #7f929c; transform: rotate(45deg); }
.search-control input { padding-left: 43px; }
.filter-submit { width: 100%; min-height: 50px; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 13px 0 22px; }
.filter-chip {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  font-size: .83rem;
  font-weight: 720;
}
.filter-chip:hover { border-color: rgba(128, 240, 197, .35); color: var(--text); }
.filter-chip.is-active { border-color: rgba(128, 240, 197, .38); background: rgba(128, 240, 197, .12); color: #d9fff0; }
.filter-chip--clear { margin-left: auto; }

.explorer-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); align-items: start; gap: 18px; }
.list-panel, .map-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(10, 27, 41, .9); box-shadow: 0 24px 68px rgba(0, 0, 0, .17); }
.map-panel { position: sticky; top: calc(var(--header-height) + 20px); }
.panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 20px 21px; border-bottom: 1px solid var(--line); }
.panel-heading .eyebrow { margin-bottom: 7px; }
.panel-heading h3 { margin: 0; font-size: clamp(1.22rem, 2vw, 1.55rem); letter-spacing: -.025em; }
.panel-heading p:not(.eyebrow) { margin: 5px 0 0; color: var(--muted); font-size: .83rem; }
.page-size-field { flex: 0 0 92px; }
.page-size-field select { min-height: 42px; padding: 7px 10px; }

.incident-list { display: grid; gap: 10px; padding: 13px; }
.incident-list.is-loading { opacity: .55; pointer-events: none; }
.incident-card { padding: 17px; border: 1px solid rgba(255, 255, 255, .085); border-radius: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)); transition: border-color .18s ease, transform .18s ease, background .18s ease; }
.incident-card:hover { border-color: rgba(128, 240, 197, .29); background: rgba(128, 240, 197, .035); transform: translateY(-1px); }
.incident-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.incident-card__labels { display: flex; flex-wrap: wrap; gap: 6px; }
.category-label, .record-status, .source-category-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cfdae0;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.source-category-label { color: #aabac1; letter-spacing: .045em; text-transform: none; }
.category-label > span { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.category-label--fire > span { background: var(--coral); }
.category-label--traffic > span { background: var(--amber); }
.category-label--hazmat > span { background: var(--lavender); }
.category-label--ems > span { background: #78c8ff; }
.category-label--police > span { background: #a8b7ff; }
.category-label--public > span { background: #94a8b2; }
.record-status--active { border-color: rgba(128, 240, 197, .3); background: rgba(128, 240, 197, .1); color: #caffeb; }
.record-status--recent { border-color: rgba(141, 217, 255, .27); background: rgba(141, 217, 255, .08); color: #d5f1ff; }
.record-status--archive { color: #aebdc4; }
.incident-card__time { flex: 0 0 auto; color: var(--muted); font-size: .77rem; }
.incident-card h4 { margin: 15px 0 7px; font-size: clamp(1.12rem, 2vw, 1.33rem); letter-spacing: -.025em; }
.detail-coverage-note { width: fit-content; margin: -1px 0 9px; padding: 5px 8px; border: 1px dashed rgba(255, 212, 121, .27); border-radius: 9px; color: #d8c894; font-size: .68rem; line-height: 1.4; }
.incident-card__location { margin: 0; color: #d8e3e5; line-height: 1.55; }
.incident-card__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 15px 0 0; }
.incident-card__meta div { min-width: 0; padding: 9px 10px; border-radius: 12px; background: rgba(255, 255, 255, .033); }
.incident-card__meta dt { color: #7e939e; font-size: .61rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.incident-card__meta dd { overflow: hidden; margin: 4px 0 0; color: #cdd9de; font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.incident-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.empty-state { display: grid; gap: 6px; padding: 38px 22px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
.empty-state strong { color: var(--text); font-size: 1.07rem; }

.pagination { min-height: 74px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px 16px; border-top: 1px solid var(--line); }
.pagination__button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: .82rem; font-weight: 760; text-decoration: none; }
.pagination__button:hover { border-color: rgba(128, 240, 197, .42); background: rgba(128, 240, 197, .07); }
.pagination__button.is-disabled { opacity: .38; pointer-events: none; }
.pagination__pages { display: flex; align-items: center; justify-content: center; gap: 5px; color: var(--muted); font-size: .79rem; }
.pagination__compact { display: none; }
.pagination__pages a, .pagination__pages button { min-width: 40px; min-height: 40px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--muted); text-decoration: none; }
.pagination__pages a:hover, .pagination__pages button:hover { border-color: var(--line); color: var(--text); }
.pagination__pages [aria-current="page"] { background: var(--signal); color: #08241c; font-weight: 850; }

.map-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.map-canvas { position: relative; height: 640px; background: #0a1825; }
.map-placeholder { position: absolute; inset: 0; z-index: 5; display: grid; place-content: center; justify-items: center; gap: 7px; padding: 30px; color: var(--muted); text-align: center; background: radial-gradient(circle, rgba(128, 240, 197, .08), transparent 45%), #0a1825; }
.map-placeholder > span { width: 62px; height: 62px; border: 1px solid rgba(128, 240, 197, .28); border-radius: 50%; box-shadow: 0 0 0 16px rgba(128, 240, 197, .035), 0 0 0 32px rgba(128, 240, 197, .02); }
.map-placeholder strong { margin-top: 20px; color: var(--text); }
.map-placeholder small { max-width: 33ch; }
.map-legend { display: flex; flex-wrap: wrap; gap: 17px; padding: 13px 19px; border-top: 1px solid var(--line); color: var(--muted); font-size: .73rem; }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal-strong); }
.legend-dot--broad { width: 12px; height: 12px; border: 2px dashed #8096a1; background: transparent; }
.leaflet-container { background: #0a1825; font-family: inherit; }
.leaflet-control-attribution { font-size: 9px; }
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large { background: rgba(128, 240, 197, .24); }
.marker-cluster div { background: var(--signal-strong); color: #062219; font-weight: 900; }
.mapped-incident-marker { display: grid; place-items: center; border: 0; background: transparent; }
.mapped-incident-marker__dot {
  width: 18px;
  height: 18px;
  display: block;
  border: 3px solid #37dca6;
  border-radius: 50%;
  background: #80f0c5;
  box-shadow: 0 3px 13px rgba(5, 24, 28, .42);
}
.broad-area-marker { border: 0; background: transparent; }
.broad-area-cluster .broad-area-marker__count { width: 44px; height: 44px; border-width: 3px; background: #f1f5f5; }
.broad-area-marker__count {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px dashed #617985;
  border-radius: 50%;
  background: rgba(228, 238, 241, .94);
  color: #17313d;
  box-shadow: 0 4px 16px rgba(5, 20, 29, .28);
  font-size: .72rem;
  font-weight: 900;
}
.map-popup { min-width: 190px; color: #10242d; }
.map-popup strong, .map-popup span { display: block; }
.map-popup span { margin: 4px 0 8px; color: #52656b; }
.map-popup small { display: block; margin: 6px 0 10px; color: #60757c; line-height: 1.42; }
.map-popup__meta { font-size: .72rem; font-weight: 720; }
.map-popup button { min-height: 36px; padding: 6px 10px; border: 0; border-radius: 999px; background: #102b37; color: white; font-weight: 700; }

.insights-section { padding-block: 104px; }
.insight-range { display: inline-grid; grid-template-columns: repeat(3, auto); gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .035); }
.insight-range button { min-height: 42px; padding: 8px 15px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: .78rem; font-weight: 800; }
.insight-range button:hover { color: var(--text); }
.insight-range button[aria-pressed="true"] { background: var(--signal); color: #06241a; }
.insight-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.insight-kpis article { min-width: 0; min-height: 142px; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(13, 34, 50, .72); }
.insight-kpis span { color: #8599a2; font-size: .67rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.insight-kpis strong { overflow-wrap: anywhere; color: var(--text); font-family: ui-serif, Georgia, serif; font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 520; letter-spacing: -.035em; line-height: 1; }
.insight-kpis small { color: var(--muted); font-size: .72rem; }
.trend-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(18, 43, 62, .92), rgba(8, 25, 38, .94)); }
.trend-chart { --points: 30; height: 250px; display: grid; grid-template-columns: repeat(var(--points), minmax(0, 1fr)); align-items: end; gap: clamp(2px, .45vw, 7px); padding-top: 24px; }
.trend-bar { height: 100%; min-width: 0; display: grid; grid-template-rows: 1fr 22px; align-items: end; gap: 6px; padding: 0; border: 0; background: transparent; color: #78909a; }
.trend-bar i { width: 100%; height: var(--bar); min-height: 3px; display: block; border-radius: 5px 5px 1px 1px; background: linear-gradient(to top, var(--signal-strong), var(--sky)); opacity: .78; transition: height .24s ease, opacity .18s ease, background .18s ease; }
.trend-bar span { overflow: visible; font-size: .58rem; line-height: 1; text-align: center; white-space: nowrap; }
.trend-bar:hover i, .trend-bar:focus-visible i, .trend-bar[aria-current="true"] i { background: linear-gradient(to top, var(--amber), #fff0bd); opacity: 1; }
.chart-detail { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: .8rem; }
.chart-detail strong { color: var(--text); }
.insight-feature { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: 32px; align-items: end; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(18, 43, 62, .91), rgba(8, 25, 38, .92)); }
.insight-feature--hours { margin-top: 14px; }
.insight-feature > div:first-child > span { color: var(--muted); font-size: .74rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.insight-feature > div:first-child > strong { display: block; margin-top: 10px; color: var(--signal); font-family: ui-serif, Georgia, serif; font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.insight-feature p { max-width: 42ch; margin: 16px 0 0; color: var(--muted); font-size: .87rem; }
.hour-chart { height: 230px; display: grid; grid-template-columns: repeat(24, minmax(7px, 1fr)); align-items: end; gap: 4px; padding-top: 20px; }
.hour-bar { height: 100%; display: grid; grid-template-rows: 1fr auto; align-items: end; gap: 7px; padding: 0; border: 0; background: transparent; color: inherit; }
.hour-bar i { width: 100%; height: var(--bar); min-height: 3px; display: block; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, var(--signal-strong), var(--sky)); opacity: .83; }
.hour-bar:nth-child(3n) i { opacity: 1; }
.hour-bar span { color: #78909a; font-size: .52rem; text-align: center; }
.hour-bar:hover i, .hour-bar:focus-visible i, .hour-bar[aria-current="true"] i { background: linear-gradient(to top, var(--amber), #fff0bd); opacity: 1; }
.insights-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.rank-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(13, 34, 50, .79); }
.rank-card--wide { grid-column: 1 / -1; }
.rank-list--two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
.rank-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.rank-card__head .eyebrow { margin-bottom: 7px; }
.rank-card__head h3 { margin: 0; font-size: 1.22rem; }
.rank-card__head > span { color: var(--muted); font-size: .72rem; text-align: right; }
.rank-list { display: grid; gap: 8px; margin-top: 14px; }
.rank-row { min-height: 50px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 9px 10px; border-radius: 12px; color: inherit; text-decoration: none; }
.rank-row:hover { background: rgba(255, 255, 255, .03); }
.rank-row > div { min-width: 0; }
.rank-row strong { display: block; overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.rank-row > b { color: #d9e5e7; font-size: .82rem; }
.rank-row > b small { display: block; margin-top: 2px; color: var(--muted); font-size: .61rem; font-weight: 650; text-align: right; }
.rank-row div > span { height: 5px; display: block; overflow: hidden; margin-top: 7px; border-radius: 999px; background: rgba(255, 255, 255, .065); }
.rank-row i { width: var(--bar); height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--signal-strong), var(--sky)); }
.rank-list--accent .rank-row i { background: linear-gradient(90deg, var(--lavender), var(--sky)); }
.road-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 15px; }
.road-item { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; overflow: hidden; padding: 13px 14px; border-radius: 13px; background: rgba(255, 255, 255, .032); }
.road-item > span { position: relative; z-index: 1; overflow: hidden; font-size: .82rem; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.road-item > strong { position: relative; z-index: 1; flex: 0 0 auto; color: var(--muted); font-size: .7rem; }
.road-item i { position: absolute; left: 0; bottom: 0; width: var(--bar); height: 2px; background: var(--signal); }
.insight-caveat { margin: 14px 0 0; padding: 15px 17px; border-left: 3px solid var(--amber); border-radius: 0 12px 12px 0; background: rgba(255, 212, 121, .055); color: var(--muted); font-size: .78rem; line-height: 1.65; }
.insight-caveat strong { color: var(--text); }

.resources-section { position: relative; margin-block: 64px 112px; padding: clamp(34px, 5vw, 64px); border-radius: 38px; background: var(--paper); color: #0b202a; box-shadow: 0 28px 80px rgba(0, 0, 0, .22); }
.resources-section .eyebrow { color: #087b5a; }
.resources-section .section-heading p:not(.eyebrow) { color: var(--muted-dark); }
.review-note { padding: 8px 12px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--muted-dark); font-size: .73rem; font-weight: 720; }
.resource-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.resource-card { min-height: 186px; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 21px; border: 1px solid var(--line-dark); border-radius: 20px; background: rgba(255, 255, 255, .52); color: #102832; text-decoration: none; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.resource-card:hover { transform: translateY(-3px); border-color: rgba(8, 123, 90, .35); background: white; }
.resource-card__index { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #d8e4db; color: #52675c; font-size: .66rem; font-weight: 850; }
.resource-card strong { font-family: ui-serif, Georgia, serif; font-size: 1.38rem; letter-spacing: -.025em; }
.resource-card p { margin: 9px 0 16px; color: #53676f; font-size: .87rem; }
.resource-card small { color: #087b5a; font-weight: 800; }
.safety-callout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; margin-top: 12px; padding: 25px; border-radius: 21px; background: #0c2833; color: white; }
.safety-callout .eyebrow { color: var(--signal); }
.safety-callout h3 { max-width: 15ch; margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 520; letter-spacing: -.04em; line-height: 1.02; }
.safety-callout ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.safety-callout li { position: relative; padding: 10px 12px 10px 34px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; color: #c8d7da; font-size: .86rem; }
.safety-callout li::before { content: ""; position: absolute; left: 13px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }

.about-section { padding-block: 40px 112px; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.about-copy, .method-card { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(13, 34, 50, .76); }
.about-copy h2 { max-width: 15ch; margin: 0 0 24px; font-family: ui-serif, Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 520; letter-spacing: -.055em; line-height: .98; }
.about-copy > p:not(.eyebrow) { color: #b9c7cd; line-height: 1.76; }
.about-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.method-card ol { display: grid; gap: 8px; margin: 17px 0 0; padding: 0; list-style: none; counter-reset: none; }
.method-card li { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 14px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 15px; background: rgba(255, 255, 255, .025); }
.method-card li > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(128, 240, 197, .12); color: var(--signal); font-size: .7rem; font-weight: 900; }
.method-card li strong { font-size: .9rem; }
.method-card li p { margin: 4px 0 0; color: var(--muted); font-size: .79rem; }
.faq { display: grid; grid-template-columns: .45fr 1fr; gap: 30px; margin-top: 18px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(8, 25, 38, .82); }
.faq__heading h3 { max-width: 10ch; margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 520; letter-spacing: -.045em; line-height: 1; }
.faq__items { display: grid; align-content: start; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 64px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 13px 2px; cursor: pointer; font-weight: 720; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--signal); transition: transform .18s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 42px 20px 2px; color: var(--muted); line-height: 1.7; }

.community-section { display: grid; gap: 13px; padding-bottom: 112px; }
.partner-card { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 30px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #f2f0e9; color: #152830; }
.partner-card img { width: 180px; aspect-ratio: 1; border-radius: 21px; object-fit: cover; }
.partner-card .eyebrow { color: #8e6924; }
.partner-card h2 { margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 540; letter-spacing: -.04em; }
.partner-card p:not(.eyebrow) { color: #5b696d; }
.partner-card .text-link { color: #176d55; }
.partner-opportunities { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr) auto; align-items: center; gap: 28px; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(13, 34, 50, .76); }
.partner-opportunities h2 { max-width: 16ch; margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 540; letter-spacing: -.045em; line-height: 1; }
.partner-opportunities p:not(.eyebrow) { max-width: 62ch; margin: 13px 0 0; color: var(--muted); }
.partner-opportunities__list { display: grid; gap: 8px; }
.partner-opportunities__list span { display: grid; gap: 2px; padding: 9px 11px; border-left: 2px solid rgba(128, 240, 197, .45); color: var(--muted); font-size: .76rem; }
.partner-opportunities__list strong { color: var(--text); font-size: .8rem; }
.support-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(128, 240, 197, .25); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(55, 220, 166, .11), rgba(141, 217, 255, .035)); }
.support-card h2 { margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 540; letter-spacing: -.045em; }
.support-card p:not(.eyebrow) { max-width: 64ch; margin: 12px 0 0; color: var(--muted); }
.support-card__actions { min-width: 235px; display: grid; gap: 8px; }
.support-card__actions small { color: var(--muted); font-size: .73rem; text-align: center; }

.site-footer { padding: 58px 0 110px; border-top: 1px solid var(--line); background: #040d15; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .65fr .75fr; gap: 50px; }
.brand--footer { margin-bottom: 17px; }
.site-footer__grid > div:first-child > p { max-width: 48ch; color: var(--muted); font-size: .86rem; }
.site-footer__grid > div:not(:first-child) { display: grid; align-content: start; gap: 9px; }
.site-footer__grid > div:not(:first-child) strong { margin-bottom: 5px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__grid > div:not(:first-child) a { color: var(--muted); font-size: .83rem; text-decoration: none; }
.site-footer__grid > div:not(:first-child) a:hover { color: var(--signal); }
.site-footer__legal { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 25px; border-top: 1px solid var(--line); color: #80939d; font-size: .75rem; }
.site-footer__legal p { max-width: 85ch; margin: 0; }
.site-footer__legal strong { color: #aabac1; }
.site-footer__legal span { flex: 0 0 auto; }

.mobile-dock { display: none; }

.incident-dialog {
  width: min(720px, calc(100% - 22px));
  max-height: min(900px, calc(100dvh - 28px));
  margin: auto 14px auto auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #081925;
  color: var(--text);
  box-shadow: -30px 0 100px rgba(0, 0, 0, .42);
}
.incident-dialog::backdrop { background: rgba(1, 7, 12, .72); backdrop-filter: blur(8px); }
.incident-dialog__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px; border-bottom: 1px solid var(--line); }
.incident-dialog__head h2 { margin: 10px 0 2px; font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 530; letter-spacing: -.045em; line-height: 1; }
.incident-dialog__head p { margin: 7px 0 0; color: var(--muted); font-size: .83rem; }
.dialog-close { min-width: 48px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .78rem; font-weight: 760; }
.incident-dialog__body { max-height: calc(100dvh - 150px); display: grid; gap: 13px; padding: 17px 22px 24px; overflow: auto; }
.dialog-map { height: 270px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #0a1825; }
.dialog-map[hidden] { display: none; }
.dialog-location { display: grid; gap: 4px; padding: 17px; border: 1px solid rgba(128, 240, 197, .17); border-radius: 17px; background: rgba(128, 240, 197, .055); }
.dialog-location span { color: var(--signal); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.dialog-location strong { font-size: 1.03rem; }
.dialog-location small { color: var(--muted); }
.dialog-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.dialog-details div { padding: 13px; border-radius: 14px; background: rgba(255, 255, 255, .035); }
.dialog-details dt { color: #7f949e; font-size: .62rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.dialog-details dd { margin: 5px 0 0; color: #d7e2e5; font-size: .84rem; overflow-wrap: anywhere; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.dialog-warning { margin: 0; padding: 15px; border-left: 3px solid var(--amber); background: rgba(255, 212, 121, .065); color: #becbd0; font-size: .78rem; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 300; max-width: min(440px, calc(100% - 28px)); padding: 12px 17px; border: 1px solid rgba(128, 240, 197, .24); border-radius: 999px; background: #153140; color: white; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .18s ease, transform .18s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.legal-back { margin-left: auto; }
.legal-main { padding-block: clamp(58px, 8vw, 100px) 110px; }
.legal-hero { max-width: 860px; margin-bottom: 36px; }
.legal-hero h1 { margin: 0; font-family: ui-serif, Georgia, serif; font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 540; letter-spacing: -.06em; line-height: .94; }
.legal-hero > p:not(.eyebrow) { max-width: 760px; margin: 22px 0 14px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.legal-hero > span { color: #7f949e; font-size: .78rem; }
.legal-card { max-width: 980px; padding: clamp(25px, 5vw, 56px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(13, 34, 50, .78); box-shadow: var(--shadow); }
.legal-card section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-card h2 { margin: 0 0 14px; font-family: ui-serif, Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 560; letter-spacing: -.035em; }
.legal-card p, .legal-card li { color: #b5c4ca; line-height: 1.78; }
.legal-card p { margin: 0 0 13px; }
.legal-card ul { display: grid; gap: 8px; margin: 16px 0 0; padding-left: 22px; }
.legal-footer { padding-bottom: 48px; }

@media (max-width: 1120px) {
  .filter-panel { grid-template-columns: 1.4fr repeat(2, minmax(150px, .6fr)); }
  .field:nth-of-type(4), .field:nth-of-type(5), .filter-submit { grid-row: 2; }
  .filter-submit { width: auto; }
  .explorer-layout { grid-template-columns: minmax(0, 1fr) minmax(340px, .83fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .shell { width: min(var(--shell), calc(100% - 26px)); }
  .primary-nav { display: none; }
  .site-header__inner { justify-content: space-between; }
  .icon-button { margin-left: auto; }
  .legal-back { margin-left: auto; }
  .hero { min-height: unset; grid-template-columns: 1fr; gap: 38px; padding-block: 70px 64px; }
  .hero h1 { max-width: 12ch; }
  .hero__copy::after { right: 10px; }
  .snapshot-card { max-width: 660px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 74px; }
  .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-card { min-height: 160px; }
  .explorer-section, .insights-section { padding-block: 76px; }
  .view-switch { display: flex; }
  .explorer-layout { grid-template-columns: 1fr; }
  .map-panel { position: relative; top: auto; }
  .explorer-section[data-view="list"] .map-panel { display: none; }
  .explorer-section[data-view="map"] .list-panel { display: none; }
  .map-canvas { height: 560px; }
  .insight-feature { grid-template-columns: 1fr; }
  .insight-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hour-chart { height: 210px; }
  .about-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq__heading h3 { max-width: none; }
  .support-card { grid-template-columns: 1fr; }
  .partner-opportunities { grid-template-columns: 1fr; }
  .partner-opportunities h2 { max-width: none; }
  .support-card__actions { min-width: 0; max-width: 380px; }
  .site-footer__grid { grid-template-columns: 1.2fr .7fr .8fr; gap: 28px; }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .trust-strip__inner { min-height: 42px; font-size: .72rem; }
  .trust-strip span span { display: none; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-copy small { display: none; }
  .icon-button { min-width: 64px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5.1rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions .button { flex: 1 1 180px; }
  .source-line { align-items: flex-start; }
  .snapshot-card { padding: 19px; border-radius: 23px; }
  .snapshot-card__top { display: grid; }
  .status-pill { justify-self: start; }
  .snapshot-row { min-height: 72px; }
  .metrics { gap: 8px; }
  .metrics { padding-bottom: 34px; }
  .use-cases { padding-block: 18px 58px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-grid > a { min-height: 0; grid-template-columns: auto 1fr; grid-template-rows: none; gap: 15px; padding: 17px; }
  .metric-card { min-height: 144px; padding: 16px; border-radius: 17px; }
  .metric-card strong { font-size: clamp(2rem, 10vw, 3rem); }
  .metric-card small { font-size: .69rem; }
  .section-heading--split { display: grid; align-items: start; }
  .section-heading h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .view-switch { width: 100%; }
  .view-switch__button { flex: 1; }
  .filter-panel { grid-template-columns: 1fr 1fr; padding: 12px; border-radius: 19px; }
  .field--search { grid-column: 1 / -1; }
  .field:nth-of-type(4), .field:nth-of-type(5), .filter-submit { grid-row: auto; }
  .filter-submit { grid-column: 1 / -1; width: 100%; }
  .quick-filters { overflow-x: auto; flex-wrap: nowrap; margin-right: -13px; padding-right: 13px; scrollbar-width: none; }
  .quick-filters::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; }
  .filter-chip--clear { margin-left: 0; }
  .rank-list--two-column { grid-template-columns: 1fr; }
  .list-panel, .map-panel { border-radius: 21px; }
  .panel-heading { align-items: flex-start; padding: 17px; }
  .incident-list { padding: 9px; }
  .incident-card { padding: 15px; border-radius: 17px; }
  .incident-card__top { align-items: flex-start; }
  .incident-card__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .incident-card__meta div:last-child { grid-column: 1 / -1; }
  .incident-card__actions .button { flex: 1; }
  .pagination { grid-template-columns: 1fr auto 1fr; padding-inline: 10px; }
  .pagination__button { padding-inline: 11px; }
  .pagination__pages a, .pagination__pages button, .pagination__pages .pagination__ellipsis { display: none; }
  .pagination__pages .pagination__compact { display: grid; }
  .map-panel .panel-heading { display: grid; }
  .map-actions { justify-content: flex-start; }
  .map-canvas { height: min(66dvh, 510px); }
  .insight-feature { padding: 20px 15px; }
  .insight-range { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .insight-range button { padding-inline: 8px; }
  .trend-card { padding: 18px 12px; border-radius: 22px; }
  .trend-chart { height: 210px; gap: 2px; }
  .trend-bar span { font-size: .52rem; }
  .hour-chart { height: 180px; gap: 2px; }
  .hour-bar span { display: none; }
  .hour-bar:nth-child(3n + 1) span { display: block; font-size: .54rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .rank-card--wide { grid-column: auto; }
  .road-grid { grid-template-columns: 1fr; }
  .resources-section { width: calc(100% - 18px); margin-block: 40px 78px; padding: 26px 15px; border-radius: 27px; }
  .review-note { justify-self: start; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 164px; }
  .safety-callout { grid-template-columns: 1fr; padding: 21px 17px; }
  .safety-callout h3 { max-width: none; }
  .about-copy, .method-card { padding: 24px 18px; border-radius: 22px; }
  .faq { padding: 24px 18px; border-radius: 22px; }
  .faq summary { font-size: .9rem; }
  .partner-card { grid-template-columns: 88px 1fr; gap: 16px; padding: 17px; border-radius: 22px; }
  .partner-card img { width: 88px; border-radius: 15px; align-self: start; }
  .partner-card h2 { font-size: 2rem; }
  .partner-card p:not(.eyebrow) { grid-column: 1 / -1; }
  .support-card { padding: 24px 18px; border-radius: 22px; }
  .partner-opportunities { padding: 24px 18px; border-radius: 22px; }
  .site-footer { padding-bottom: 34px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer__legal { display: grid; }
  .mobile-dock {
    position: fixed;
    left: 9px;
    right: 9px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 180;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: rgba(7, 20, 30, .94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .36);
    backdrop-filter: blur(20px);
  }
  .mobile-dock a, .mobile-dock button { min-width: 0; min-height: 52px; display: grid; place-items: center; align-content: center; gap: 1px; padding: 5px; border: 0; border-radius: 14px; background: transparent; color: #b4c3c9; text-decoration: none; }
  .mobile-dock a:hover, .mobile-dock button:hover { background: rgba(128, 240, 197, .08); color: var(--signal); }
  .mobile-dock svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-dock small { font-size: .62rem; }
  .incident-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 10px); margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .incident-dialog__head { padding: 18px; }
  .incident-dialog__body { max-height: calc(100dvh - 130px); padding: 13px 17px calc(24px + env(safe-area-inset-bottom)); }
  .dialog-map { height: 230px; }
  .dialog-details { grid-template-columns: 1fr; }
  .dialog-actions .button { flex: 1 1 140px; }
  .toast { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

@media (max-width: 430px) {
  .shell { width: calc(100% - 18px); }
  .trust-strip__inner > span { max-width: 62%; }
  .site-header__inner { gap: 9px; }
  .legal-back { min-height: 42px; padding-inline: 12px; font-size: .74rem; }
  .brand-copy strong { font-size: .88rem; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .source-line span { font-size: .76rem; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .insight-kpis { grid-template-columns: 1fr; }
  .metric-card { min-height: 136px; }
  .filter-panel { grid-template-columns: 1fr; }
  .field--search, .filter-submit { grid-column: auto; }
  .field label { font-size: .64rem; }
  .field input, .field select { padding-inline: 10px; font-size: .9rem; }
  .search-control input { padding-left: 39px; }
  .panel-heading { display: grid; }
  .page-size-field { width: 96px; }
  .incident-card__top { display: grid; }
  .incident-card__time { justify-self: start; }
  .pagination__button { font-size: .75rem; }
  .pagination__pages { font-size: .7rem; }
  .resource-card { grid-template-columns: 1fr; }
  .resource-card__index { width: 32px; height: 32px; }
  .partner-card { grid-template-columns: 70px 1fr; }
  .partner-card img { width: 70px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, .32); }
  .incident-card, .metric-card, .rank-card, .list-panel, .map-panel { border-width: 2px; }
}
