/* Tropical nights — night heat intelligence object */
:root {
  --night: #0c0a14;
  --deep: #12101c;
  --panel: #1a1528;
  --ink: #f0ebe3;
  --muted: #9a93a8;
  --line: rgba(240, 235, 227, 0.1);
  --line-strong: rgba(240, 235, 227, 0.2);
  --amber: #f0a050;
  --hot: #e85d3a;
  --maroon: #8b2e3a;
  --cool: #7a9bb8;
  --good: #5a9e78;
  /* Fallbacks with full RO + degree support if webfonts lag */
  --font-d: "Fraunces", "Source Serif 4", "Times New Roman", "Liberation Serif", serif;
  --font-b: "Spectral", "Source Serif 4", "Times New Roman", "Liberation Serif", serif;
  --font-m: "IBM Plex Mono", "Consolas", "Menlo", "DejaVu Sans Mono", ui-monospace, monospace;
  --max: 1080px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  overflow-x: hidden;
}

/* Prefer webfont glyphs for RO diacritics & ° when loaded */
.stat .n,
.jn-t,
.warm-n,
.june-val,
.kpi .n,
.rk .n {
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--hot), var(--amber), var(--cool));
  pointer-events: none;
}

.langbar {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 150;
  display: flex;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: rgba(12, 10, 20, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
}
.langbar button {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.langbar button.on {
  background: var(--ink);
  color: var(--night);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
}
.nav-inner {
  display: flex;
  gap: 0.35rem 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
}
.nav a:hover {
  color: var(--amber);
}
.nav .brand {
  color: var(--ink);
  font-weight: 600;
  margin-right: 0.4rem;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(90% 70% at 85% 15%, rgba(232, 93, 58, 0.16), transparent 50%),
    radial-gradient(70% 50% at 10% 90%, rgba(122, 155, 184, 0.12), transparent 55%),
    var(--night);
}
.kicker {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cool);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cool);
}
.hero h1 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.2rem;
}
.hero-lead {
  max-width: 44ch;
  color: rgba(240, 235, 227, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hero-ctas a {
  font-family: var(--font-m);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--amber);
  border-bottom: 1px solid rgba(240, 160, 80, 0.4);
  padding-bottom: 2px;
}
.hero-ctas a:hover {
  color: var(--ink);
}

.stats {
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem;
}
.stat .n {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.stat:nth-child(2) .n {
  color: var(--hot);
}
.stat:nth-child(3) .n {
  color: var(--cool);
}
.stat:nth-child(4) .n {
  color: var(--hot);
}
.stat:nth-child(5) .n {
  color: var(--good);
}
.stat .l {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

section.block {
  padding: 4.2rem 0;
}
section.block.alt {
  background: var(--deep);
}
section.block.paper {
  background: #efe6d6;
  color: #1a1520;
}
section.block.paper .kicker {
  color: var(--maroon);
}
section.block.paper .kicker::before {
  background: var(--maroon);
}
section.block.paper h2,
section.block.paper h3 {
  color: #1a1520;
}
section.block.paper .lead,
section.block.paper p,
section.block.paper .subhead {
  color: #3a3545;
}
section.block.paper .fine {
  color: #5a5468;
}
section.block.paper .fine.warn {
  color: var(--maroon);
}

h2 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.lead {
  max-width: 58ch;
  color: rgba(240, 235, 227, 0.78);
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}
.prose p {
  max-width: 62ch;
  margin-bottom: 1.1rem;
  color: rgba(240, 235, 227, 0.88);
}
.fine {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 1rem;
  line-height: 1.5;
}
.subhead {
  font-family: var(--font-m);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.5rem 0 0.75rem;
}
.mt {
  margin-top: 1.5rem;
}

.grid3 {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}
.grid2 {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}
.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  background: var(--panel);
}
.card.hot {
  border-color: rgba(232, 93, 58, 0.35);
  background: linear-gradient(145deg, rgba(232, 93, 58, 0.1), var(--panel));
}
.card h3 {
  font-family: var(--font-d);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.paper .card {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(26, 21, 32, 0.1);
}
.paper .card p {
  color: #4a4458;
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}
.pill {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}
.pill.on {
  background: var(--amber);
  color: var(--night);
  border-color: var(--amber);
  font-weight: 600;
}

.btn {
  font-family: var(--font-m);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--hot);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-weight: 500;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

/* body simulator */
.sim-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
.sim-controls {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--panel);
}
.slider-lab {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-m);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.85rem 0 0.4rem;
}
.slider-lab:first-child {
  margin-top: 0;
}
.slider-lab strong {
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-d);
  font-weight: 500;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--hot);
  margin-bottom: 0.5rem;
}
.recovery-panel {
  min-height: 12rem;
}
.rec-meter {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--panel);
  height: 100%;
}
.rec-meter[data-band="good"] {
  border-color: rgba(90, 158, 120, 0.4);
}
.rec-meter[data-band="thin"] {
  border-color: rgba(240, 160, 80, 0.45);
}
.rec-meter[data-band="none"] {
  border-color: rgba(232, 93, 58, 0.5);
}
.rec-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.rec-label {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rec-band {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
}
.rec-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.rec-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), var(--amber), var(--good));
  transition: width 0.35s var(--ease);
}
.rec-bars {
  display: grid;
  gap: 0.85rem;
}
.rec-mini-l {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.rec-mini {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.rec-mini i {
  display: block;
  height: 100%;
  background: var(--hot);
  transition: width 0.35s var(--ease);
}
.rec-mini.sleep i {
  background: var(--cool);
}

/* europe */
.kpi4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: var(--panel);
}
.kpi .n {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.25rem;
}
.kpi .l {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.35;
}
/* June 2026 — spotlight cards + night strip (no fake map) */
.june-spotlight {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.25rem;
}
.june-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  background: var(--panel);
}
.june-card.record {
  border-color: rgba(232, 93, 58, 0.4);
  background: linear-gradient(145deg, rgba(232, 93, 58, 0.12), var(--panel));
}
.june-card.streak {
  border-color: rgba(122, 155, 184, 0.4);
  background: linear-gradient(145deg, rgba(122, 155, 184, 0.1), var(--panel));
}
.june-tag {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.june-card h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.june-val {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  margin: 0.35rem 0 0.65rem;
}
.june-card.record .june-val {
  color: var(--hot);
}
.june-card.streak .june-val {
  color: var(--cool);
}
.june-card p:last-child {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 42ch;
}

.june-nights {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem 0.85rem;
  background: var(--panel);
  margin-top: 0.5rem;
}
.jn-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr 3.2rem;
  gap: 0.5rem 0.65rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.jn-row.jn-record .jn-fill {
  background: linear-gradient(90deg, var(--amber), var(--hot));
}
.jn-row.jn-streak .jn-fill {
  background: linear-gradient(90deg, var(--cool), #5a8aaa);
}
.jn-name {
  font-family: var(--font-m);
  font-size: 0.78rem;
  color: rgba(240, 235, 227, 0.9);
  line-height: 1.25;
}
.jn-track {
  position: relative;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  overflow: visible;
}
.jn-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #c48a40, var(--amber));
  transition: width 0.4s var(--ease);
}
.jn-thresh {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: var(--cool);
  opacity: 0.85;
  transform: translateX(-1px);
  pointer-events: none;
}
.jn-thresh::after {
  content: "20°";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-m);
  font-size: 0.58rem;
  color: var(--cool);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.jn-row:not(:first-child) .jn-thresh::after {
  display: none;
}
.jn-t {
  font-family: var(--font-m);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.jn-badge {
  grid-column: 1 / -1;
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hot);
  margin: -0.25rem 0 0.35rem 0;
}
.jn-badge.muted {
  display: none;
}
.jn-row.jn-streak .jn-badge {
  color: var(--cool);
}

@media (min-width: 700px) {
  .june-spotlight {
    grid-template-columns: 1fr 1fr;
  }
  .jn-row {
    grid-template-columns: 9rem 1fr 3.5rem 7rem;
  }
  .jn-badge {
    grid-column: auto;
    margin: 0;
    text-align: right;
  }
  .jn-badge.muted {
    display: block;
    visibility: hidden;
  }
}

/* cities */
.city-toolbar {
  margin-bottom: 1rem;
}
.city-select {
  font-family: var(--font-m);
  font-size: 0.9rem;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--panel);
}
.chip.on {
  background: var(--hot);
  border-color: var(--hot);
  color: #fff;
}
.city-bars-host {
  margin: 1.25rem 0;
}
.city-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 3rem;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.city-lab {
  font-family: var(--font-m);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.city-track {
  height: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.city-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.4s var(--ease);
}
.city-fill.then {
  background: var(--cool);
  opacity: 0.7;
}
.city-fill.now {
  background: linear-gradient(90deg, var(--amber), var(--hot));
}
.city-n {
  font-family: var(--font-m);
  font-size: 0.85rem;
  color: var(--ink);
  text-align: right;
}
.city-ratio {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--amber);
  margin-top: 0.5rem;
}
.city-note {
  max-width: 58ch;
  color: rgba(240, 235, 227, 0.85);
  margin-top: 0.75rem;
}

/* warming */
.warm-host {
  margin: 1.25rem 0 0.5rem;
}
.warm-row {
  display: grid;
  grid-template-columns: 8rem 1fr 6.5rem;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
}
.warm-lab {
  font-size: 0.9rem;
  color: var(--muted);
}
.warm-track {
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.warm-fill {
  height: 100%;
  border-radius: 6px;
}
.warm-fill.night {
  background: linear-gradient(90deg, var(--hot), var(--maroon));
}
.warm-fill.day {
  background: linear-gradient(90deg, var(--amber), #c48a40);
}
.warm-n {
  font-family: var(--font-m);
  font-size: 0.85rem;
  color: var(--ink);
  text-align: right;
}

/* compound */
.compound-track {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.cstep {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem 1rem 3.2rem;
  background: var(--panel);
  position: relative;
  opacity: 0.45;
  transition: 0.35s var(--ease);
}
.cstep.on {
  opacity: 1;
  border-color: rgba(232, 93, 58, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 93, 58, 0.15);
}
.cstep.done {
  opacity: 0.75;
}
.cnum {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--hot);
}
.cstep h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.cstep p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* risk */
.risk-kpis {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}
.rk {
  border: 1px solid rgba(26, 21, 32, 0.1);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
}
.rk .n {
  font-family: var(--font-d);
  font-size: 2rem;
  color: var(--maroon);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rk .l {
  font-size: 0.9rem;
  color: #4a4458;
  line-height: 1.4;
}
.death-host {
  margin-bottom: 0.5rem;
}
.death-row {
  display: grid;
  grid-template-columns: 2.2rem 1fr 4rem;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.45rem;
}
.death-code {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: 0.85rem;
}
.death-track {
  height: 12px;
  border-radius: 4px;
  background: rgba(26, 21, 32, 0.08);
  overflow: hidden;
}
.death-fill {
  height: 100%;
  background: linear-gradient(90deg, #c45a4a, var(--maroon));
  border-radius: 4px;
}
.death-n {
  font-family: var(--font-m);
  font-size: 0.8rem;
  text-align: right;
}
.risk-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.flag {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 21, 32, 0.15);
  background: rgba(255, 255, 255, 0.35);
  color: #3a3545;
}
.flag.on {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.risk-score {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 52ch;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--good);
}
.risk-score[data-level="mid"] {
  border-left-color: #c48a40;
}
.risk-score[data-level="high"] {
  border-left-color: var(--maroon);
}

/* quotes */
.quotes {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.quote {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  background: var(--panel);
  margin: 0;
}
.quote p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  color: rgba(240, 235, 227, 0.92);
}
.quote footer {
  font-family: var(--font-m);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.quote cite {
  font-style: normal;
  color: var(--amber);
}

.closer {
  text-align: center;
  padding: 5rem 0 4.5rem;
  background: radial-gradient(100% 80% at 50% 100%, rgba(232, 93, 58, 0.12), var(--night));
}
.closer h2 {
  max-width: 16ch;
  margin: 0 auto 1rem;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
}
.closer .lead {
  margin: 0 auto;
  text-align: center;
}

.sources p {
  max-width: 62ch;
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.source-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  max-width: 70ch;
}
.source-list li {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.source-list a {
  color: var(--amber);
  text-decoration: none;
}
.source-list a:hover {
  text-decoration: underline;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.35rem 3rem;
  text-align: center;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .sim-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .kpi4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .risk-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .compound-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .warm-row {
    grid-template-columns: 10rem 1fr 7rem;
  }
}

@media (min-width: 960px) {
  .compound-track {
    grid-template-columns: repeat(4, 1fr);
  }
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rec-fill,
  .city-fill,
  .cstep {
    transition: none;
  }
}
