:root {
  --bg: #070a17;
  --surface: #0d1326;
  --surface-2: #121a31;
  --surface-3: #17213d;
  --text: #f5f7ff;
  --muted: #9ba8c4;
  --line: #263454;
  --blue: #208cff;
  --cyan: #19d3d1;
  --purple: #7c5cfc;
  --magenta: #e548c7;
  --green: #45d5a1;
  --red: #ff5d78;
  --font: "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; }
button, input, select { font-family: var(--font); }
a { color: inherit; }
.app-shell { min-height: 100vh; background: radial-gradient(circle at 8% 18%, rgba(32,140,255,.14), transparent 32rem), radial-gradient(circle at 92% 42%, rgba(124,92,252,.12), transparent 35rem), var(--bg); }

.brand-header {
  width: min(1480px, calc(100% - 48px)); margin: 0 auto; min-height: 86px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-monogram { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #07101e; background: linear-gradient(145deg, var(--cyan), var(--blue)); font-weight: 900; letter-spacing: -.04em; box-shadow: 0 0 28px rgba(25,211,209,.2); }
.brand-lockup strong, .brand-lockup span { display: block; }
.brand-lockup strong { font-size: 14px; letter-spacing: .08em; }
.brand-lockup span { margin-top: 3px; color: var(--muted); font-size: 11px; }
.header-status { display: flex; align-items: center; gap: 9px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(13,19,38,.7); font-size: 10px; letter-spacing: .08em; }
.header-status > span { color: var(--muted); }
.header-status strong { color: var(--red); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255,93,120,.12); }
.header-social { display: flex; justify-content: flex-end; gap: 8px; }
.header-social a { text-decoration: none; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-size: 10px; font-weight: 700; }
.header-social a:hover { color: var(--cyan); border-color: var(--cyan); }

.dashboard-main, .footer { width: min(1480px, calc(100% - 48px)); margin: 0 auto; }
.hero { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(330px, .58fr); align-items: center; gap: 56px; padding: 72px 0; border-bottom: 1px solid var(--line); }
.hero-content { max-width: 900px; }
.hero-tags { display: flex; gap: 8px; margin-bottom: 34px; }
.hero-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; color: var(--cyan); background: rgba(25,211,209,.05); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.hero-kicker { margin: 0 0 13px; color: var(--magenta); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.hero h1 { max-width: 920px; margin: 0; font-size: clamp(48px, 6.3vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 760; }
.hero h1 span { color: var(--cyan); background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy { max-width: 760px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.event-facts { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 35px; }
.event-facts > div { min-width: 120px; padding-left: 13px; border-left: 2px solid var(--purple); }
.event-facts span, .event-facts strong { display: block; }
.event-facts span { margin-bottom: 5px; color: #71809f; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.event-facts strong { font-size: 13px; }
.update-panel { position: relative; overflow: hidden; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(155deg, rgba(23,33,61,.96), rgba(10,15,31,.96)); box-shadow: 0 24px 70px rgba(0,0,0,.26); }
.update-panel::before { position: absolute; content: ""; width: 140px; height: 140px; right: -65px; top: -75px; border-radius: 50%; background: rgba(124,92,252,.18); filter: blur(2px); }
.cut-block span, .cut-block strong { display: block; }
.cut-block span { margin-bottom: 9px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.cut-block strong { font-size: 16px; line-height: 1.5; }
.update-status { margin: 20px 0 12px; border-radius: 8px; padding: 10px 12px; font-size: 11px; font-weight: 700; }
.status-ok { color: var(--green); background: rgba(69,213,161,.1); border: 1px solid rgba(69,213,161,.25); }
.status-cache { color: #9fb4d9; background: rgba(32,140,255,.09); border: 1px solid rgba(32,140,255,.22); }
.update-button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; border: 0; border-radius: 10px; background: linear-gradient(90deg, var(--blue), var(--purple)); color: white; font-weight: 800; padding: 13px 16px; box-shadow: 0 8px 26px rgba(32,140,255,.18); transition: transform .15s, box-shadow .15s; }
.update-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(32,140,255,.28); }
.update-panel > p { margin: 14px 0 0; color: #8190ad; font-size: 10px; line-height: 1.55; }

.section-block { padding-top: 74px; }
.section-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.section-heading > span { min-width: 34px; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.section-heading h2, .section-heading p { margin: 0; }
.section-heading h2 { font-size: 25px; letter-spacing: -.02em; }
.section-heading p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.section-heading.compact { margin: 0; }

.kpi-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
.kpi-card { --accent: var(--cyan); position: relative; min-height: 185px; padding: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(155deg, rgba(18,26,49,.96), rgba(10,15,31,.96)); }
.kpi-card::after { content: ""; position: absolute; left: 20px; right: 20px; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); }
.official-panel { margin-top: 28px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(13,19,38,.98), rgba(8,12,27,.98)); }
.official-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.official-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border: 1px solid rgba(25,211,209,.38); border-radius: 14px; background: rgba(25,211,209,.08); }
.official-icon .line-icon { width: 25px; height: 25px; }
.official-heading span { color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.official-heading h2 { margin: 3px 0 0; font-size: 23px; }
.official-heading p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.official-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 9px; }
.official-grid > div { min-height: 94px; padding: 14px; border: 1px solid rgba(38,52,84,.9); border-radius: 12px; background: rgba(18,26,49,.66); }
.official-grid strong, .official-grid span { display: block; }
.official-grid strong { color: var(--ink); font-size: 24px; line-height: 1; }
.official-grid span { margin-top: 9px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.official-grid small { display: block; margin-top: 6px; color: #73809d; font-size: 8px; line-height: 1.3; }
.official-source { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.official-source a { color: var(--cyan); font-weight: 750; }
.accent-cyan { --accent: var(--cyan); } .accent-magenta { --accent: var(--magenta); } .accent-purple { --accent: var(--purple); }
.accent-blue { --accent: var(--blue); } .accent-red { --accent: var(--red); } .accent-green { --accent: var(--green); }
.kpi-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--accent); border-radius: 9px; background: color-mix(in srgb, var(--accent) 11%, transparent); }
.line-icon { width: 20px; height: 20px; }
.kpi-value { margin-top: 20px; color: var(--text); font-size: 38px; line-height: 1; font-weight: 760; letter-spacing: -.045em; }
.kpi-label { margin-top: 11px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }
.kpi-note { margin-top: 7px; color: #7f8da9; font-size: 10px; line-height: 1.4; }

.map-section { margin-top: 74px; padding: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: rgba(13,19,38,.84); }
.map-panel-header { min-height: 100px; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.map-controls { display: flex; align-items: center; gap: 12px; }
.city-dropdown { width: 230px; color: #131b31; }
.city-dropdown .Select-control { border: 1px solid var(--line) !important; border-radius: 9px; background: #f3f6ff; }
.layer-filter { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.layer-filter label { display: flex; align-items: center; gap: 6px; padding: 8px 10px; cursor: pointer; color: var(--muted); font-size: 10px; font-weight: 700; }
.layer-filter input { accent-color: var(--cyan); }
.map-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(330px, .55fr); }
.map-container { min-width: 0; border-right: 1px solid var(--line); background: var(--bg); }
.map-stage { position: relative; min-height: 690px; }
.leaflet-container { font-family: var(--font) !important; }
.leaflet-control-zoom a { background: var(--surface) !important; color: var(--text) !important; border-color: var(--line) !important; }
.leaflet-control-attribution { background: rgba(7,10,23,.84) !important; color: #7886a4 !important; }
.leaflet-control-attribution a { color: var(--cyan) !important; }
.department-label { background: transparent !important; border: 0 !important; color: rgba(245,247,255,.76); font-size: 8.5px; font-weight: 700; text-align: center; text-shadow: 0 1px 3px #000, 0 0 6px #000; white-space: normal; line-height: 1.05; pointer-events: none; }
.point-marker { display: grid !important; place-items: center; border-radius: 9px; border: 2px solid white; box-shadow: 0 5px 15px rgba(0,0,0,.4); font-size: 15px; font-weight: 900; }
.point-marker.aid { background: var(--cyan); color: #061619; } .point-marker.blood { background: var(--magenta); color: white; }
.map-tooltip { background: var(--surface-2) !important; color: var(--text) !important; border: 1px solid var(--line) !important; border-radius: 8px !important; font-family: var(--font) !important; box-shadow: 0 10px 30px rgba(0,0,0,.35) !important; }
.map-popup .leaflet-popup-content-wrapper { border-radius: 12px; border: 1px solid var(--line); background: #f5f7ff; color: #10182d; font-family: var(--font); }
.map-popup h4 { margin: 0 0 8px; font-size: 17px; } .map-popup p { line-height: 1.45; }
.map-key-overlay { position: absolute; z-index: 700; left: 14px; bottom: 24px; width: 174px; padding: 13px; border: 1px solid rgba(155,168,196,.3); border-radius: 12px; background: rgba(7,10,23,.9); backdrop-filter: blur(8px); box-shadow: 0 12px 35px rgba(0,0,0,.32); pointer-events: none; }
.map-key-title { margin-bottom: 9px; color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.map-key-row { display: flex; align-items: center; gap: 9px; margin-top: 7px; color: #d8deed; font-size: 10px; }
.legend-symbol { width: 12px; height: 12px; display: inline-block; border: 2px solid white; }
.legend-symbol.city { border-radius: 50%; background: var(--red); } .legend-symbol.aid { border-radius: 3px; background: var(--cyan); }
.legend-symbol.blood { border-radius: 3px; background: var(--magenta); } .legend-symbol.epicenter { border-radius: 50%; background: var(--bg); border-color: var(--magenta); box-shadow: 0 0 0 2px rgba(229,72,199,.25); }

.sidebar-panel { min-width: 0; background: linear-gradient(165deg, var(--surface-2), #0a1021); }
.city-detail-card { min-height: 690px; padding: 27px; display: flex; flex-direction: column; }
.alert-chip { width: max-content; padding: 6px 9px; border: 1px solid rgba(255,93,120,.35); border-radius: 999px; color: var(--red); background: rgba(255,93,120,.08); font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.overview-chip { color: var(--cyan); border-color: rgba(25,211,209,.35); background: rgba(25,211,209,.07); }
.city-title { margin: 22px 0 0; font-size: 35px; letter-spacing: -.045em; line-height: 1; }
.city-department { margin: 8px 0 20px; color: var(--cyan); font-size: 12px; font-weight: 700; }
.city-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; border-radius: 12px; overflow: hidden; background: var(--line); }
.city-metrics > div { background: var(--surface); padding: 13px; }
.city-metrics strong { display: block; color: var(--cyan); font-size: 22px; }
.city-metrics span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.city-summary { color: var(--muted); line-height: 1.55; font-size: 12px; }
.sidebar-heading { margin: 11px 0 8px; font-size: 13px; }
.needs-list, .city-overview-list { display: flex; flex-direction: column; gap: 7px; max-height: 315px; overflow: auto; }
.need-row { display: grid; grid-template-columns: 25px 1fr; gap: 9px; padding: 10px; border: 1px solid rgba(38,52,84,.8); border-radius: 9px; background: rgba(7,10,23,.36); }
.need-icon { width: 18px; height: 18px; color: var(--purple); }
.need-row strong { display: block; font-size: 10px; } .need-row p { margin: 3px 0 0; color: var(--muted); font-size: 9px; line-height: 1.4; }
.city-source { margin-top: auto; padding-top: 15px; color: #7785a2; border-top: 1px solid var(--line); font-size: 9px; line-height: 1.5; }
.city-source a { color: var(--cyan); font-weight: 700; text-decoration: none; }
.city-source-links { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 4px; }
.city-overview-row { display: grid; grid-template-columns: 1fr auto; gap: 3px 10px; padding: 11px; border: 1px solid var(--line); border-radius: 9px; background: rgba(7,10,23,.28); }
.city-overview-row strong { grid-row: 1 / 3; align-self: center; font-size: 12px; } .city-overview-row span { color: var(--muted); font-size: 9px; text-align: right; }

.forensic-panel { margin-top: 74px; padding: 30px; border: 1px solid rgba(229,72,199,.35); border-radius: 20px; background: linear-gradient(120deg, rgba(229,72,199,.09), rgba(124,92,252,.07) 45%, rgba(13,19,38,.94)); }
.forensic-heading { display: flex; align-items: center; gap: 15px; }
.forensic-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--magenta); background: rgba(229,72,199,.1); }
.forensic-icon .line-icon { width: 26px; height: 26px; }
.forensic-heading span { color: var(--magenta); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.forensic-heading h2 { margin: 4px 0 0; font-size: 23px; }
.forensic-method { max-width: 790px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.forensic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 22px; }
.forensic-grid > div { padding: 17px; border: 1px solid var(--line); border-radius: 12px; background: rgba(7,10,23,.42); }
.forensic-grid strong, .forensic-grid span { display: block; }
.forensic-grid strong { color: var(--magenta); font-size: 28px; } .forensic-grid span { margin-top: 5px; color: var(--muted); font-size: 10px; }
.forensic-distributions { display: grid; grid-template-columns: .7fr 1.3fr; gap: 12px; margin-top: 12px; }
.forensic-distribution-card, .forensic-units-block { padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: rgba(7,10,23,.42); }
.forensic-distribution-card h3, .forensic-units-block h3 { margin: 0; font-size: 13px; }
.forensic-statline { margin: 6px 0 0; color: var(--muted); font-size: 9px; }
.distribution-list { margin-top: 14px; }
.distribution-row + .distribution-row { margin-top: 10px; }
.distribution-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 5px; color: var(--muted); font-size: 9px; }
.distribution-label strong { color: var(--text); font-size: 9px; }
.distribution-track { display: block; height: 6px; overflow: hidden; border-radius: 999px; background: rgba(155,168,196,.13); }
.distribution-track i { display: block; height: 100%; min-width: 2px; border-radius: inherit; background: linear-gradient(90deg, var(--magenta), var(--purple)); }
.distribution-track.age i { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.forensic-units-block { margin-top: 12px; }
.forensic-units { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 7px; margin-top: 14px; }
.forensic-units > div { padding: 10px; border: 1px solid rgba(38,52,84,.78); border-radius: 9px; background: rgba(18,26,49,.48); }
.forensic-units strong, .forensic-units span { display: block; }
.forensic-units strong { color: var(--magenta); font-size: 17px; }
.forensic-units span { margin-top: 4px; color: var(--muted); font-size: 8px; line-height: 1.3; }
.forensic-methodology-note { margin: 14px 0 0; color: #7f8da9; font-size: 9px; line-height: 1.55; }
.forensic-source { display: flex; justify-content: space-between; gap: 15px; margin-top: 18px; color: #8290ad; font-size: 10px; }
.forensic-source a { color: var(--cyan); font-weight: 700; }
.forensic-source small { max-width: 420px; line-height: 1.45; }

.points-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.point-card { min-height: 150px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(150deg, var(--surface-2), #0b1123); }
.point-card strong { display: block; margin: 12px 0 4px; font-size: 13px; } .point-card > span { color: var(--cyan); font-size: 10px; font-weight: 700; }
.point-card p { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.point-type { display: inline-block; padding: 4px 7px; border-radius: 999px; color: var(--cyan); background: rgba(25,211,209,.08); border: 1px solid rgba(25,211,209,.25); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.point-type.sangre { color: var(--magenta); background: rgba(229,72,199,.08); border-color: rgba(229,72,199,.25); }
.empty-state, .no-location { color: var(--muted); }

.donation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.donation-card { min-height: 260px; display: flex; flex-direction: column; padding: 21px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(155deg, rgba(18,26,49,.96), rgba(9,14,29,.96)); }
.donation-icon { width: 39px; height: 39px; display: grid; place-items: center; color: var(--cyan); border-radius: 11px; background: rgba(25,211,209,.08); }
.donation-card:nth-child(3n+2) .donation-icon { color: var(--purple); background: rgba(124,92,252,.09); }
.donation-card:nth-child(3n+3) .donation-icon { color: var(--magenta); background: rgba(229,72,199,.09); }
.donation-card h3 { margin: 16px 0 7px; font-size: 15px; }
.donation-description { min-height: 36px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.where-block { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }
.where-label { display: block; margin-bottom: 8px; color: #7685a2; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.where-block details summary { cursor: pointer; color: var(--cyan); font-size: 11px; font-weight: 750; }
.donation-locations { max-height: 185px; overflow: auto; margin-top: 10px; padding-right: 5px; }
.donation-location { padding: 9px 0; border-bottom: 1px solid var(--line); }
.donation-location strong, .donation-location span { display: block; }
.donation-location strong { font-size: 10px; } .donation-location span { margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.4; }
.donation-link { display: inline-block; padding: 9px 11px; border-radius: 8px; color: white; background: linear-gradient(90deg, var(--blue), var(--purple)); text-decoration: none; font-size: 10px; font-weight: 800; }
.no-location { margin: 0; font-size: 10px; line-height: 1.45; }

.methodology-section { margin: 74px 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(13,19,38,.78); }
.method-copy { max-width: 900px; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.sources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.source-card { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-2); }
.source-card span, .source-card a { display: block; } .source-card span { color: var(--purple); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.source-card a { margin-top: 5px; font-size: 10px; font-weight: 700; line-height: 1.4; }

.footer { padding: 35px 0 48px; display: grid; grid-template-columns: 1fr auto; gap: 14px 28px; border-top: 1px solid var(--line); color: var(--muted); }
.footer > div { display: flex; flex-wrap: wrap; gap: 9px 16px; } .footer > div:first-child strong { color: var(--cyan); }
.footer > div:nth-child(2) strong:first-child { color: var(--blue); } .footer > div:nth-child(2) strong:last-child { color: var(--magenta); }
.footer p { grid-column: 1 / -1; max-width: 980px; margin: 0; font-size: 10px; line-height: 1.55; }

@media (max-width: 1220px) {
  .brand-header { grid-template-columns: 1fr auto; } .header-status { display: none; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); } .map-grid { grid-template-columns: 1fr; }
  .official-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .forensic-units { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .map-container { border-right: 0; border-bottom: 1px solid var(--line); } .city-detail-card { min-height: 570px; }
  .points-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .brand-header { grid-template-columns: 1fr; padding: 16px 0; } .header-social { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; gap: 35px; padding: 50px 0; } .update-panel { max-width: 560px; }
  .map-panel-header { align-items: flex-start; flex-direction: column; } .map-controls { width: 100%; }
  .city-dropdown { flex: 1; } .points-list { grid-template-columns: repeat(2, 1fr); }
  .donation-grid, .sources-grid { grid-template-columns: repeat(2, 1fr); }
  .forensic-grid { grid-template-columns: repeat(2, 1fr); }
  .forensic-distributions { grid-template-columns: 1fr; }
  .forensic-units { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .brand-header, .dashboard-main, .footer { width: min(100% - 22px, 1480px); }
  .header-social { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 47px; } .hero-copy { font-size: 14px; } .event-facts { gap: 18px; }
  .section-block { padding-top: 55px; } .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-card { min-height: 168px; padding: 16px; } .kpi-value { font-size: 32px; }
  .official-panel { padding: 19px; } .official-grid { grid-template-columns: 1fr 1fr; }
  .official-source { flex-direction: column; }
  .map-section { margin-top: 55px; } .map-controls { align-items: stretch; flex-direction: column; }
  .city-dropdown { width: 100%; } .layer-filter { justify-content: space-between; } .layer-filter label { flex: 1; }
  .map-stage, .map-stage .leaflet-container { min-height: 560px !important; height: 560px !important; }
  .points-list, .donation-grid, .sources-grid { grid-template-columns: 1fr; }
  .forensic-panel { padding: 21px; } .forensic-grid { grid-template-columns: 1fr 1fr; }
  .forensic-units { grid-template-columns: 1fr 1fr; }
  .forensic-source { flex-direction: column; } .footer { grid-template-columns: 1fr; } .footer p { grid-column: 1; }
}
