:root {
  color-scheme: dark;
  --ink: #eef9f6;
  --muted: #8ca6a1;
  --bg: #06100f;
  --panel: rgba(9, 27, 25, 0.92);
  --panel-soft: rgba(17, 43, 39, 0.65);
  --line: rgba(123, 198, 181, 0.18);
  --green: #70e6b0;
  --cyan: #5ed7e8;
  --amber: #ffbf69;
  --red: #ff6475;
  --blue: #6d9cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(94, 215, 232, 0.13), transparent 30rem),
    radial-gradient(circle at 5% 20%, rgba(112, 230, 176, 0.09), transparent 24rem),
    linear-gradient(145deg, #030a0a, var(--bg) 55%, #071413);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(112, 230, 176, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 230, 176, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; }

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.4);
  opacity: 0.42;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  min-height: 74px;
  padding: 13px clamp(18px, 4vw, 58px);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 12, 11, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(112, 230, 176, 0.36);
  border-radius: 13px;
  color: var(--green);
  background: rgba(112, 230, 176, 0.08);
  box-shadow: inset 0 0 28px rgba(112, 230, 176, 0.09);
}

.brand-mark svg {
  width: 29px;
  height: 29px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-pill {
  display: flex;
  min-height: 40px;
  padding: 0 15px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d9d5;
  background: rgba(14, 33, 30, 0.82);
  cursor: pointer;
}

.trust-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 191, 105, 0.1);
}

.trust-pill[data-state="accepted"] .trust-dot,
.attestation-card[data-state="accepted"] .trust-dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(112, 230, 176, 0.1), 0 0 18px var(--green);
}

.trust-pill[data-state="failed"] .trust-dot,
.attestation-card[data-state="failed"] .trust-dot {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 100, 117, 0.1);
}

.trust-pill[data-state="checking"] .trust-dot {
  animation: pulse 1s infinite;
}

.role-tag {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shell {
  width: min(1540px, calc(100% - 34px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.hero {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow,
.section-label {
  color: var(--green);
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 8px;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 7px;
  font-size: 13px;
}

.hero p,
.panel-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two { grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.command-grid { grid-template-columns: minmax(640px, 1.8fr) minmax(300px, 0.75fr); }
.civilian-grid { grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr); }

.panel,
.stat,
.attestation-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(15, 40, 36, 0.72), rgba(5, 19, 17, 0.9));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.panel {
  padding: clamp(17px, 2.5vw, 25px);
}

.panel-heading {
  display: flex;
  margin-bottom: 18px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: #b8cdc8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid rgba(133, 195, 182, 0.19);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(3, 13, 12, 0.72);
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input[type="file"] {
  padding: 8px;
  color: var(--muted);
  text-transform: none;
}

.check-label {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  text-transform: none;
}

.check-label input {
  width: 17px;
  min-height: 17px;
}

.button-row {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 9px;
}

.primary,
.secondary,
.danger,
.icon-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary {
  color: #042019;
  background: var(--green);
  box-shadow: 0 8px 25px rgba(112, 230, 176, 0.16);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--cyan);
  background: rgba(94, 215, 232, 0.07);
}

.danger {
  color: white;
  background: var(--red);
}

.icon-button {
  width: 39px;
  min-height: 39px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 19px;
}

.activity {
  min-height: 45px;
  margin: 0 0 16px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.16);
  font: 11px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.activity[data-kind="success"] { border-color: rgba(112, 230, 176, 0.28); color: var(--green); }
.activity[data-kind="warning"] { border-color: rgba(255, 191, 105, 0.28); color: var(--amber); }
.activity[data-kind="error"] { border-color: rgba(255, 100, 117, 0.3); color: var(--red); }

.stats {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  padding: 14px;
}

.stat span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat strong {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: var(--ink);
  font: 700 19px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-overflow: ellipsis;
}

.map {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(94, 215, 232, 0.18);
  border-radius: 14px;
  background:
    repeating-radial-gradient(circle at 48% 50%, transparent 0 80px, rgba(94, 215, 232, 0.07) 81px 82px),
    linear-gradient(rgba(94, 215, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 215, 232, 0.04) 1px, transparent 1px),
    #04100f;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.map svg {
  width: 100%;
  height: 100%;
  min-height: 590px;
}


.map[data-map-shell] {
  isolation: isolate;
}

.map[data-map-shell] svg {
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.map[data-map-selectable] svg { cursor: crosshair; }
.map[data-map-shell] svg:active { cursor: grabbing; }

.map-tile {
  opacity: 0.42;
  filter: grayscale(0.7) saturate(0.55) brightness(0.7) contrast(1.15);
}

.map-country {
  fill: rgba(19, 59, 53, 0.3);
}

.map-occupied {
  fill: url(#occupied-hatch);
  stroke: rgba(255, 100, 117, 0.88);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}


.map-marker .threat-ring {
  fill: rgba(255, 100, 117, 0.18);
  stroke: rgba(255, 100, 117, 0.72);
  stroke-width: 1.4;
  animation: threat-pulse 1.4s infinite;
  vector-effect: non-scaling-stroke;
}

.map-marker .threat-diamond {
  fill: rgba(130, 18, 34, 0.92);
  stroke: #ff8190;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.map-marker .threat-vector {
  fill: none;
  stroke: #ff8190;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-marker .asset-brackets {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-marker .asset-core {
  fill: rgba(94, 215, 232, 0.74);
  stroke: #c9f8ff;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.map-marker-detail {
  fill: #9fb5b0 !important;
  font-size: 8px !important;
}

.map-projection-line {
  stroke: rgba(255, 191, 105, 0.55);
  stroke-dasharray: 7 6;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.map-target-ring,
.map-target-cross {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}
.map-border {
  fill: none;
  stroke: rgba(130, 244, 190, 0.94);
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}

.map-waterway {
  fill: none;
  stroke: rgba(72, 174, 225, 0.78);
  stroke-linecap: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.map-water-label {
  fill: #7cc8ee;
  font: 8px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  opacity: 0.82;
  paint-order: stroke;
  stroke: rgba(2, 10, 9, 0.92);
  stroke-width: 2px;
}

.map-context-label {
  fill: #84928f;
  font: 700 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.15em;
  opacity: 0.72;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(2, 10, 9, 0.92);
  stroke-width: 2px;
}

.map-place circle {
  fill: #dceae7;
  stroke: #04100f;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.map-place.capital circle {
  fill: var(--amber);
  stroke: #fff1cf;
}

.map-place text {
  fill: #c5d7d3;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  paint-order: stroke;
  stroke: #04100f;
  stroke-width: 2.5px;
}

.map-selection circle {
  fill: rgba(255, 191, 105, 0.25);
  stroke: var(--amber);
  stroke-width: 2;
  animation: threat-pulse 1.4s infinite;
  vector-effect: non-scaling-stroke;
}

.map-selection path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.map-controls {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 5px;
}

.map-controls button {
  min-width: 34px;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid rgba(94, 215, 232, 0.25);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(2, 10, 9, 0.9);
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.map-status {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 8px;
  border: 1px solid rgba(112, 230, 176, 0.18);
  border-radius: 6px;
  color: var(--green);
  background: rgba(2, 10, 9, 0.82);
  font: 700 8px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.map-attribution {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 8px;
  max-width: calc(100% - 20px);
  color: #889b97;
  font-size: 8px;
  line-height: 1.35;
}

.map-attribution a { color: #9cbab4; }

.map-select-block { min-width: 0; }

.map-instruction {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}

.map-instruction strong { color: var(--ink); }

.reporter-map,
.reporter-map svg {
  min-height: 430px;
}

.map-legend .amber { background: var(--amber); }
.map-legend .occupied {
  border-radius: 1px;
  background: repeating-linear-gradient(135deg, #8f2634 0 3px, #ff6475 3px 5px);
}
.ukraine-shape {
  fill: rgba(30, 78, 69, 0.52);
  stroke: rgba(112, 230, 176, 0.7);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-city {
  fill: #b5cbc6;
  font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;
  opacity: 0.7;
}

.map-marker text {
  fill: #dceae7;
  font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;
  paint-order: stroke;
  stroke: #04100f;
  stroke-width: 3px;
}

.map-marker.threat circle {
  fill: rgba(255, 100, 117, 0.3);
  stroke: var(--red);
  animation: threat-pulse 1.4s infinite;
}

.map-marker.threat path { fill: var(--red); }
.map-marker.asset rect { fill: rgba(94, 215, 232, 0.3); stroke: var(--cyan); }

.tactical-threat { fill: var(--red); filter: drop-shadow(0 0 10px var(--red)); }
.tactical-asset { fill: var(--cyan); filter: drop-shadow(0 0 9px var(--cyan)); }

.map-legend {
  position: absolute;
  right: 15px;
  bottom: 32px;
  display: flex;
  padding: 9px 11px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(2, 10, 9, 0.82);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
}

.map-legend .red { background: var(--red); }
.map-legend .cyan { background: var(--cyan); }

.warning-panel {
  display: grid;
  min-height: 480px;
  padding: 34px;
  place-items: center;
  text-align: center;
  border-color: rgba(255, 191, 105, 0.22);
}

.siren {
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  margin: 8px auto 26px;
  place-items: center;
  border: 1px solid rgba(112, 230, 176, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 230, 176, 0.12), transparent 62%);
}

.siren svg {
  width: 72px;
  color: var(--green);
}

.warning-panel[data-level="2"] .siren,
.warning-panel[data-level="3"] .siren {
  border-color: rgba(255, 100, 117, 0.54);
  background: radial-gradient(circle, rgba(255, 100, 117, 0.18), transparent 63%);
  animation: siren 0.8s infinite alternate;
}

.warning-panel[data-level="2"] .siren svg,
.warning-panel[data-level="3"] .siren svg {
  color: var(--red);
}

.warning-level {
  color: var(--green);
  font: 800 clamp(33px, 6vw, 72px)/0.95 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.06em;
}

.warning-message {
  max-width: 600px;
  margin: 18px auto;
  color: #c5d8d4;
  line-height: 1.7;
}

.warning-metrics {
  display: flex;
  justify-content: center;
  gap: 45px;
}

.warning-metrics span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.warning-metrics strong {
  display: block;
  margin-top: 5px;
  font: 750 30px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.attestation-card {
  margin-bottom: 16px;
  padding: 16px;
}

.attestation-head {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.attestation-head .trust-dot {
  margin-top: 5px;
}

.attestation-head strong {
  display: block;
  font-size: 12px;
}

.attestation-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.attestation-card[data-state="accepted"] {
  border-color: rgba(112, 230, 176, 0.26);
}

.trust-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100%;
  padding: 28px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: #071311;
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.trust-drawer.open {
  transform: translateX(0);
}

.drawer-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.drawer-heading h2 {
  margin-top: 4px;
  font-size: 28px;
}

.proof-grid {
  display: grid;
  margin: 18px 0;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.proof-grid div {
  min-width: 0;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.proof-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
  font: 650 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
}

details {
  border: 1px solid rgba(94, 215, 232, 0.2);
  border-radius: 11px;
  background: rgba(94, 215, 232, 0.04);
}

summary {
  padding: 13px;
  color: var(--cyan);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

pre {
  max-height: 42vh;
  margin: 0;
  padding: 14px;
  overflow: auto;
  border-top: 1px solid var(--line);
  color: #a8c7c0;
  font: 9px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.boundary-note {
  margin: 16px 0 0;
  padding: 13px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
  background: rgba(255, 191, 105, 0.05);
  font-size: 10px;
  line-height: 1.6;
}

.role-cards {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.role-card {
  display: block;
  min-height: 215px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(15, 40, 36, 0.75), rgba(5, 19, 17, 0.92));
  transition: border-color 150ms ease, transform 150ms ease;
}

.role-card:hover {
  border-color: rgba(112, 230, 176, 0.48);
  transform: translateY(-3px);
}

.role-card span {
  color: var(--green);
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.role-card h2 {
  margin: 44px 0 9px;
  font-size: 27px;
}

.role-card p {
  max-width: 540px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.disclaimer {
  margin-top: 16px;
  color: #6f8883;
  font-size: 9px;
  line-height: 1.6;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.8); }
}

@keyframes threat-pulse {
  50% { r: 19px; opacity: 0.35; }
}

@keyframes siren {
  to { transform: scale(1.04); box-shadow: 0 0 48px rgba(255, 100, 117, 0.18); }
}

@media (max-width: 980px) {
  .grid.two,
  .command-grid,
  .civilian-grid {
    grid-template-columns: 1fr;
  }

  .grid.three { grid-template-columns: 1fr 1fr; }
  .map, .map svg { min-height: 480px; }
  .role-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 22px, 1540px); padding-top: 18px; }
  .site-header { min-height: 65px; padding: 10px 12px; }
  .brand-copy small, .trust-pill span:last-child, .role-tag { display: none; }
  .trust-pill { width: 40px; padding: 0; justify-content: center; }
  .hero { align-items: flex-start; flex-direction: column; }
  .form-grid, .stats, .grid.three { grid-template-columns: 1fr 1fr; }
  .form-grid .mobile-wide { grid-column: 1 / -1; }
  .map, .map svg { min-height: 390px; }
  .warning-panel { min-height: 430px; padding: 22px; }
  .warning-metrics { gap: 22px; }
  .trust-drawer { padding: 21px; }
}

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

.top-gap { margin-top: 14px; }
.button-row.centered { justify-content: center; }
