:root {
  --night: #081722;
  --night-raised: #0f2634;
  --night-soft: #163545;
  --tw-blue: #6890b0;
  --tw-blue-bright: #9fc3da;
  --cream: #f4f0e7;
  --cream-soft: #ddd8ce;
  --slate: #a9bdc8;
  --slate-dim: #77909e;
  --copper: #d2a66f;
  --coral: #cf765f;
  --line: rgba(174, 204, 219, 0.18);
  --line-strong: rgba(174, 204, 219, 0.34);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Optima, Candara, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-map: cubic-bezier(0.77, 0, 0.175, 1);
  color: var(--cream);
  background: var(--night);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 11%, rgba(104, 144, 176, 0.18), transparent 27%),
    linear-gradient(180deg, #0b1e2a 0, var(--night) 760px);
  color: var(--cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(159, 195, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 195, 218, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--copper);
  color: var(--night);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button > *,
a > * {
  user-select: none;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--night), 0 0 0 6px var(--tw-blue-bright);
}

.atlas-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 11px 14px;
  background: var(--cream);
  color: var(--night);
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}

.atlas-skip:focus {
  transform: translateY(0);
}

.atlas-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 23, 34, 0.92);
  backdrop-filter: blur(14px);
}

.atlas-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.atlas-brand img {
  display: block;
  width: min(255px, 46vw);
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.92;
}

.atlas-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.atlas-header nav a {
  min-height: 44px;
  padding: 12px 13px;
  color: var(--slate);
  font-size: 14px;
  text-decoration: none;
}

.atlas-header nav a[aria-current="page"] {
  color: var(--cream);
  box-shadow: inset 0 -2px var(--copper);
}

.atlas-hero {
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  padding: clamp(72px, 10vw, 140px) clamp(18px, 6vw, 86px);
}

.atlas-hero-copy {
  max-width: 760px;
}

.atlas-eyebrow {
  margin: 0 0 15px;
  color: var(--tw-blue-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--copper);
  font-weight: 400;
}

.atlas-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.58;
}

.atlas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.atlas-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 0 19px;
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-button--primary,
.atlas-button--light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--night);
}

.atlas-button:active,
.atlas-region-button:active,
.atlas-community-button:active,
.atlas-ledger-row:active,
.atlas-map-home:active,
.atlas-map-activate:active {
  transform: scale(0.97);
}

.atlas-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: rgba(7, 22, 32, 0.42);
}

.atlas-proof-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 22, 32, 0.58);
}

.atlas-proof-heading {
  grid-column: 1 / -1;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 22px clamp(24px, 3vw, 38px);
}

.atlas-proof-heading p:last-child {
  max-width: 560px;
  margin: 6px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}

.atlas-proof-stat {
  min-height: 205px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(24px, 3vw, 38px);
}

.atlas-proof-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.atlas-proof-stat span {
  color: var(--slate);
  font-size: 14px;
}

.atlas-proof-stat small {
  display: block;
  margin-top: 22px;
  color: var(--slate-dim);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.atlas-explorer {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 58px);
  background: rgba(4, 15, 22, 0.72);
}

.atlas-explorer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto 28px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.atlas-result-summary {
  max-width: 430px;
  margin-bottom: 5px;
  color: var(--slate);
  line-height: 1.55;
  text-align: right;
}

.atlas-result-summary strong {
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.atlas-tracking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 1.3fr);
  max-width: 1500px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  background: rgba(104, 144, 176, 0.055);
}

.atlas-tracking-summary > div,
.atlas-tracking-summary > p {
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 17px 20px;
}

.atlas-tracking-summary > p {
  border-right: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

.atlas-tracking-summary span,
.atlas-tracking-summary strong {
  display: block;
}

.atlas-tracking-summary span {
  margin-bottom: 5px;
  color: var(--slate-dim);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atlas-tracking-summary strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.atlas-region-nav {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  scrollbar-width: none;
}

.atlas-region-nav::-webkit-scrollbar {
  display: none;
}

.atlas-region-button {
  position: relative;
  flex: 1 0 auto;
  min-width: 145px;
  min-height: 55px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 17px;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-region-button:last-child {
  border-right: 0;
}

.atlas-region-button[aria-pressed="true"] {
  background: rgba(104, 144, 176, 0.12);
  color: var(--cream);
}

.atlas-region-button[aria-pressed="true"]::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 2px;
  background: var(--copper);
  content: "";
}

.atlas-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(330px, 0.78fr);
  max-width: 1500px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.atlas-map-shell {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0a2330;
}

.atlas-poster,
.atlas-map-shell > .atlas-map {
  position: absolute;
  inset: 0;
}

.atlas-poster {
  z-index: 1;
  background:
    radial-gradient(ellipse at 56% 45%, rgba(81, 130, 153, 0.26), transparent 46%),
    linear-gradient(155deg, #0f3344 0%, #081c28 62%, #06151e 100%);
  opacity: 1;
  transition: opacity 180ms ease;
}

.atlas-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 23, 34, 0.1), transparent 45%, rgba(8, 23, 34, 0.18));
  content: "";
  pointer-events: none;
}

.atlas-poster svg {
  width: 100%;
  height: 100%;
}

.atlas-water-lines path {
  fill: none;
  stroke: rgba(159, 195, 218, 0.12);
  stroke-width: 1;
}

.atlas-poster-island {
  stroke: rgba(159, 195, 218, 0.72);
  stroke-width: 2;
}

.atlas-poster-marker {
  filter: drop-shadow(0 8px 14px rgba(2, 10, 16, 0.46));
}

.atlas-poster-marker-ring {
  fill: rgba(7, 25, 35, 0.24);
  stroke: rgba(183, 219, 236, 0.22);
  stroke-width: 1;
}

.atlas-poster-marker-core {
  fill: rgba(7, 24, 34, 0.9);
  stroke: rgba(210, 171, 111, 0.9);
  stroke-width: 2;
}

.atlas-poster-marker-count,
.atlas-poster-marker-label {
  fill: #f4f0e7;
  font-family: var(--sans);
  text-anchor: middle;
}

.atlas-poster-marker-count {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.atlas-poster-marker-label {
  paint-order: stroke;
  stroke: rgba(6, 21, 30, 0.94);
  stroke-width: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-poster-ridge {
  fill: none;
  stroke: rgba(221, 216, 206, 0.2);
  stroke-width: 1.4;
}

.atlas-map {
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.atlas-map-shell[data-map-state="ready"] .atlas-map {
  opacity: 1;
}

.atlas-map-shell[data-map-state="ready"] .atlas-poster {
  opacity: 0;
}

.atlas-map-tools {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 12;
}

.atlas-map-home {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(244, 240, 231, 0.5);
  border-radius: 2px;
  padding: 0 14px;
  background: rgba(8, 23, 34, 0.9);
  color: var(--cream);
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-map-home[data-active="true"] {
  border-color: rgba(136, 190, 218, 0.74);
  color: #c7e5f4;
}

.atlas-map-home__icon {
  font-size: 15px;
  line-height: 1;
}

.atlas-map-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
}

.atlas-map-status-panel {
  min-width: 132px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(8, 23, 34, 0.82);
}

.atlas-map-status {
  margin: 0;
  padding: 8px 11px;
  color: var(--slate);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atlas-map-progress {
  position: relative;
  display: none;
  height: 3px;
  overflow: hidden;
  background: rgba(159, 195, 218, 0.12);
}

.atlas-map-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  background: linear-gradient(90deg, rgba(126, 182, 211, 0.35), #d2ab6f 72%, rgba(244, 240, 231, 0.9));
  transform: translateX(-110%);
}

.atlas-map-shell[data-map-state="loading"] .atlas-map-progress {
  display: block;
}

.atlas-map-shell[data-map-state="loading"] .atlas-map-progress span {
  animation: atlas-map-loading 1.35s linear infinite;
}

@keyframes atlas-map-loading {
  to {
    transform: translateX(330%);
  }
}

.atlas-map-activate {
  min-height: 44px;
  border: 1px solid rgba(244, 240, 231, 0.5);
  border-radius: 2px;
  padding: 0 14px;
  background: rgba(8, 23, 34, 0.9);
  color: var(--cream);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-map-shell[data-map-state="loading"] .atlas-map-activate,
.atlas-map-shell[data-map-state="ready"] .atlas-map-activate {
  display: none;
}

.atlas-map-attribution {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 12;
  margin: 0;
  color: rgba(221, 216, 206, 0.55);
  font-size: 9px;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.atlas-ledger {
  min-width: 0;
  background: rgba(7, 22, 32, 0.88);
}

.atlas-ledger-intro {
  min-height: 178px;
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.atlas-ledger-intro h3 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.atlas-ledger-intro > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.atlas-ledger-groups {
  max-height: 512px;
  overflow-y: auto;
  scrollbar-color: var(--tw-blue) transparent;
}

.atlas-ledger-group[hidden] {
  display: none;
}

.atlas-ledger-group h4 {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  background: #0c2230;
  color: var(--tw-blue-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.atlas-ledger-group h4 span {
  color: var(--slate-dim);
  font-variant-numeric: tabular-nums;
}

.atlas-community-group[hidden],
.atlas-community-neighborhoods[hidden] {
  display: none;
}

.atlas-community-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  min-height: 90px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 17px 20px;
  background: rgba(104, 144, 176, 0.045);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: background-color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-community-button[aria-pressed="true"] {
  background: rgba(104, 144, 176, 0.14);
  box-shadow: inset 3px 0 var(--copper);
}

.atlas-community-name {
  display: block;
  margin-bottom: 5px;
  color: var(--tw-blue-bright);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}

.atlas-community-neighborhoods .atlas-ledger-row {
  padding-left: 30px;
  background: rgba(4, 15, 22, 0.26);
}

.atlas-ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  min-height: 86px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 17px 20px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: background-color 160ms ease, transform 120ms var(--ease-out);
}

.atlas-ledger-row[aria-pressed="true"] {
  background: rgba(104, 144, 176, 0.14);
  box-shadow: inset 3px 0 var(--copper);
}

.atlas-ledger-name {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.atlas-ledger-meta {
  color: var(--slate-dim);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-ledger-count {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: right;
}

.atlas-ledger-count small {
  display: block;
  margin-top: 6px;
  color: var(--slate-dim);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atlas-marker {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  min-width: 62px;
  min-height: 62px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.atlas-marker[hidden] {
  display: none;
}

.atlas-marker__core {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(210, 166, 111, 0.7);
  border-radius: 50%;
  background: rgba(8, 23, 34, 0.88);
  box-shadow: 0 0 28px rgba(104, 144, 176, 0.42);
  font-family: var(--serif);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.atlas-marker__label {
  position: absolute;
  top: 58px;
  left: 50%;
  width: max-content;
  max-width: 150px;
  padding: 5px 8px;
  background: rgba(8, 23, 34, 0.74);
  color: var(--cream-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.atlas-marker--neighborhood .atlas-marker__core {
  width: 42px;
  height: 42px;
  border-color: rgba(159, 195, 218, 0.75);
  background: rgba(15, 38, 52, 0.92);
  font-size: 17px;
}

.atlas-marker--community .atlas-marker__core {
  width: 48px;
  height: 48px;
  border-color: rgba(210, 166, 111, 0.78);
  background: rgba(12, 34, 48, 0.94);
  font-size: 18px;
}

.atlas-marker--community .atlas-marker__label {
  top: 54px;
}

.atlas-marker--neighborhood .atlas-marker__label {
  top: 48px;
  font-size: 9px;
}

.atlas-marker[aria-pressed="true"] .atlas-marker__core {
  border-color: var(--cream);
  background: var(--copper);
  color: var(--night);
  box-shadow: 0 0 0 5px rgba(210, 166, 111, 0.18), 0 0 30px rgba(210, 166, 111, 0.4);
}

.maplibregl-ctrl-bottom-left,
.maplibregl-ctrl-bottom-right {
  z-index: 8;
}

.maplibregl-ctrl-attrib {
  background: rgba(8, 23, 34, 0.75) !important;
  color: rgba(244, 240, 231, 0.65) !important;
  font-size: 9px !important;
}

.maplibregl-ctrl-attrib a {
  color: rgba(244, 240, 231, 0.82) !important;
}

.maplibregl-ctrl-group {
  border-radius: 2px !important;
  background: rgba(8, 23, 34, 0.84) !important;
}

.maplibregl-ctrl-group button {
  width: 44px !important;
  height: 44px !important;
}

.maplibregl-ctrl button .maplibregl-ctrl-icon {
  filter: invert(1);
}

.atlas-method {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 100px);
  padding: clamp(70px, 10vw, 138px) clamp(18px, 6vw, 86px);
}

.atlas-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.atlas-method article {
  min-height: 280px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px;
}

.atlas-method article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 30px;
}

.atlas-method article h3 {
  margin: 66px 0 12px;
  font-size: 25px;
}

.atlas-method article p,
.atlas-privacy-note {
  color: var(--slate);
  line-height: 1.6;
}

.atlas-privacy-note {
  grid-column: 2;
  max-width: 800px;
  margin: 20px 0 0;
  font-size: 13px;
}

.atlas-evidence {
  padding: clamp(72px, 10vw, 138px) clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(159, 195, 218, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(159, 195, 218, 0.03) 1px, transparent 1px) 0 0 / 58px 58px,
    #0a1c27;
}

.atlas-evidence-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 100px);
  max-width: 1500px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.atlas-answer {
  max-width: 900px;
  margin: 0;
  color: var(--cream-soft);
  font-family: var(--serif);
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.48;
}

.atlas-evidence-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.atlas-evidence-facts div {
  min-height: 128px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 22px;
}

.atlas-evidence-facts dt,
.atlas-evidence-label {
  color: var(--tw-blue-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.atlas-evidence-facts dd {
  margin: 28px 0 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.atlas-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1500px;
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.atlas-evidence-grid article {
  min-height: 270px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
}

.atlas-evidence-label {
  margin-bottom: 54px;
}

.atlas-evidence-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 33px);
  line-height: 1.08;
}

.atlas-evidence-grid article > p:last-child,
.atlas-evidence-source p {
  color: var(--slate);
  line-height: 1.65;
}

.atlas-evidence-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1500px;
  margin: 28px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.atlas-evidence-source p {
  max-width: 1050px;
  margin: 0;
  font-size: 13px;
}

.atlas-evidence-source strong {
  color: var(--cream-soft);
}

.atlas-evidence-download {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--copper);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.atlas-reviews-bridge {
  display: grid;
  justify-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(72px, 11vw, 150px) 20px;
  background: var(--cream);
  color: #17222a;
  text-align: center;
}

.atlas-reviews-bridge .atlas-eyebrow {
  color: #567d99;
}

.atlas-reviews-bridge h2 {
  max-width: 980px;
  margin-bottom: 30px;
}

.atlas-button--light {
  border-color: #17222a;
  background: #17222a;
  color: var(--cream);
}

.atlas-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 14px;
}

.atlas-footer p {
  margin: 0;
}

.atlas-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.atlas-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

@media (hover: hover) {
  .atlas-header nav a:hover,
  .atlas-footer a:hover {
    color: var(--cream);
  }

  .atlas-button:hover,
  .atlas-map-home:hover,
  .atlas-map-activate:hover {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--night);
  }

  .atlas-button--primary:hover,
  .atlas-button--light:hover {
    background: transparent;
    color: var(--cream);
  }

  .atlas-button--light:hover {
    border-color: #17222a;
    color: #17222a;
  }

  .atlas-region-button:hover,
  .atlas-community-button:hover,
  .atlas-ledger-row:hover {
    background: rgba(104, 144, 176, 0.1);
    color: var(--cream);
  }

  .atlas-marker:hover .atlas-marker__core {
    border-color: var(--cream);
  }
}

@media (max-width: 1080px) {
  .atlas-proof {
    max-width: 820px;
  }

  .atlas-tracking-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-tracking-summary > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .atlas-workspace {
    grid-template-columns: 1fr;
  }

  .atlas-map-shell {
    min-height: 610px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .atlas-ledger-groups {
    max-height: none;
  }

  .atlas-method {
    grid-template-columns: 1fr;
  }

  .atlas-evidence-heading {
    grid-template-columns: 1fr;
  }

  .atlas-evidence-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-privacy-note {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .atlas-header,
  .atlas-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .atlas-header {
    position: relative;
  }

  .atlas-header nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .atlas-header nav a {
    flex: 0 0 auto;
  }

  .atlas-hero {
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .atlas-actions .atlas-button {
    flex: 1 1 100%;
  }

  .atlas-proof-stat {
    min-height: 168px;
    padding: 21px;
  }

  .atlas-proof-stat strong {
    font-size: 38px;
  }

  .atlas-proof-stat small {
    margin-top: 16px;
    font-size: 8px;
  }

  .atlas-explorer-heading {
    align-items: start;
    flex-direction: column;
  }

  .atlas-result-summary {
    text-align: left;
  }

  .atlas-tracking-summary {
    grid-template-columns: 1fr;
  }

  .atlas-tracking-summary > div,
  .atlas-tracking-summary > p {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .atlas-tracking-summary > p {
    border-bottom: 0;
  }

  .atlas-region-button {
    min-width: 137px;
  }

  .atlas-map-shell {
    min-height: 470px;
  }

  .atlas-map-overlay {
    top: 64px;
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }

  .atlas-map-tools {
    top: 12px;
    left: 12px;
  }

  .atlas-map-status {
    max-width: 145px;
  }

  .atlas-poster-marker-ring {
    r: 37px;
  }

  .atlas-poster-marker-core {
    r: 29px;
  }

  .atlas-poster-marker-label {
    font-size: 12px;
  }

  .atlas-map-attribution {
    left: 12px;
    max-width: 240px;
  }

  .atlas-ledger-intro {
    min-height: auto;
    padding: 24px 20px;
  }

  .atlas-method-grid {
    grid-template-columns: 1fr;
  }

  .atlas-evidence-facts,
  .atlas-evidence-grid {
    grid-template-columns: 1fr;
  }

  .atlas-evidence-facts div,
  .atlas-evidence-grid article {
    min-height: auto;
  }

  .atlas-evidence-label {
    margin-bottom: 34px;
  }

  .atlas-evidence-source {
    align-items: flex-start;
    flex-direction: column;
  }

  .atlas-method article {
    min-height: auto;
  }

  .atlas-method article h3 {
    margin-top: 38px;
  }

  .atlas-footer div {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .atlas-map-shell[data-map-state="loading"] .atlas-map-progress span {
    width: 66%;
    animation: none !important;
    transform: none;
  }
}
