:root {
  color-scheme: dark;
  --night: #050a10;
  --night-soft: #09131f;
  --frost: #dbeeff;
  --ice: #83c9f4;
  --ice-bright: #bce7ff;
  --gold: #d9b96e;
  --gold-bright: #f0d695;
  --ink: #f5f8fb;
  --muted: #9aaebe;
  --line: rgba(194, 225, 245, .14);
  --panel: rgba(10, 21, 33, .82);
  --green: #72d6a2;
  --amber: #e6bd70;
  --red: #e87979;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}
button, a { font: inherit; }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(2, 7, 12, .76), transparent);
}
.nav-shell {
  width: min(1180px, calc(100% - 44px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}
.wordmark small {
  display: block;
  margin-top: 1px;
  color: #aebdca;
  font: 600 9px/1.2 "Segoe UI", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.wordmark-rune {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 185, 110, .55);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(7, 18, 29, .68);
  box-shadow: inset 0 0 18px rgba(131, 201, 244, .08);
}
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  color: #d4dee6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .16s ease;
}
nav a:hover { color: var(--gold-bright); }

.realm-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #091521 url("/assets/hero-northrend.jpg") center 38% / cover no-repeat;
}
.realm-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, .92) 0%, rgba(3, 10, 18, .66) 42%, rgba(3, 11, 19, .18) 72%),
    linear-gradient(180deg, rgba(2, 6, 11, .36), transparent 46%, #050a10 100%);
}
.realm-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 53% 15%, rgba(139, 213, 255, .13), transparent 28%);
}
.hero-content {
  width: min(1180px, calc(100% - 44px));
  margin: 70px auto 0;
  padding: 80px 0 130px;
}
.hero-kicker, .section-kicker {
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 108px);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.055em;
  text-shadow: 0 5px 34px rgba(0, 0, 0, .62);
}
.hero-lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: #d6e2ea;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .75);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button, .refresh-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease;
}
.button:hover, .refresh-button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.button.primary {
  color: #101116;
  background: linear-gradient(180deg, var(--gold-bright), #c7a45b);
  box-shadow: 0 12px 28px rgba(9, 11, 15, .32);
}
.button.secondary {
  color: var(--ink);
  border-color: rgba(219, 238, 255, .36);
  background: rgba(4, 13, 22, .48);
  backdrop-filter: blur(12px);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 50px;
}
.hero-facts span {
  min-width: 145px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}
.hero-facts span:last-child { border: 0; }
.hero-facts small, .hero-facts strong { display: block; }
.hero-facts small { color: #90a6b7; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts strong { margin-top: 4px; font-size: 14px; }
.hero-status {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: min(1180px, calc(100% - 44px));
  min-height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 17px;
  border: 1px solid rgba(198, 228, 247, .15);
  border-radius: 10px;
  background: rgba(5, 14, 23, .76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.status-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 15px currentColor;
}
.hero-status span:nth-child(2) { display: grid; }
.hero-status small { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-status strong { font-size: 14px; }
.live-chip {
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid rgba(114, 214, 162, .25);
  border-radius: 999px;
  color: #a9e9c8;
  background: rgba(114, 214, 162, .08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.last-updated { color: var(--muted); font-size: 12px; }
body[data-state="healthy"] .status-light { color: var(--green); background: var(--green); }
body[data-state="degraded"] .status-light,
body[data-state="stale"] .status-light { color: var(--amber); background: var(--amber); }
body[data-state="unavailable"] .status-light { color: var(--red); background: var(--red); }

.error-banner {
  width: min(1180px, calc(100% - 44px));
  margin: 18px auto -22px;
  padding: 13px 16px;
  border: 1px solid rgba(230, 189, 112, .3);
  border-radius: 8px;
  color: #eadfc8;
  background: rgba(105, 75, 28, .18);
}
.error-banner strong { margin-right: 8px; }

.download-callout {
  position: relative;
  width: min(1000px, calc(100% - 44px));
  margin: 78px auto 0;
  padding: 36px clamp(28px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13, 28, 43, .9), rgba(7, 17, 27, .92));
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}
.download-callout-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px 36px;
}
.download-callout-copy h2 {
  grid-column: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
}
.download-callout-copy > p { grid-column: 1; margin: 0; color: var(--muted); font-size: 15px; }
.download-callout-actions { grid-column: 2; grid-row: 1 / 3; display: flex; flex-wrap: wrap; gap: 10px; }
.download-hero { box-shadow: 0 0 0 1px rgba(255, 224, 150, .15), 0 16px 38px rgba(0, 0, 0, .38); }

.realm-snapshot, .content-section, .details-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 100px 0;
}
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2, .detail-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night-soft);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .2);
}
.snapshot-card {
  min-height: 170px;
  padding: 27px;
  border-right: 1px solid var(--line);
}
.snapshot-card:last-child { border: 0; }
.snapshot-card span, .snapshot-card small { display: block; }
.snapshot-card span { color: #b4c5d2; font-size: 13px; }
.snapshot-card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--frost);
}
.snapshot-card.featured strong { color: var(--gold-bright); }
.snapshot-card small { color: #778d9f; font-size: 12px; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 21, 33, .72);
}
.service-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--ice-bright);
  background: rgba(131, 201, 244, .1);
  font-size: 11px;
  font-weight: 800;
}
.service-row > span:nth-child(2) { min-width: 0; }
.service-row strong, .service-row small { display: block; }
.service-row strong { font-size: 13px; }
.service-row small { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.service-state { color: var(--muted); font-size: 11px; }
.service-row.online { border-color: rgba(114, 214, 162, .23); }
.service-row.online .service-state { color: var(--green); }
.service-row.offline { border-color: rgba(232, 121, 121, .28); }
.service-row.offline .service-state { color: var(--red); }
.refresh-button {
  margin: 18px auto 0;
  min-height: 42px;
  color: #cddce6;
  border-color: var(--line);
  background: transparent;
  font-size: 13px;
}
.refresh-button:disabled { opacity: .55; cursor: wait; }
.refresh-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.frost-section { position: relative; }
.frost-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(13, 27, 42, .62), rgba(6, 14, 23, .5));
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 15, 24, .5);
}
.feature-number { color: var(--gold); font: 700 13px/1 Georgia, serif; }
.feature-grid h3, .step-grid h3 { margin: 50px 0 10px; font-family: Georgia, serif; font-size: 22px; }
.feature-grid p, .step-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.health-panel {
  display: grid;
  grid-template-columns: .82fr 2.18fr;
  gap: 45px;
  margin-top: 60px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 12, 20, .72);
}
.health-intro h3 { margin: 0; font-family: Georgia, serif; font-size: 29px; }
.health-intro p:last-child { color: var(--muted); font-size: 14px; }
.health-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.health-metric {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
}
.health-metric span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.health-metric b { margin: 9px 0; font: 600 25px/1 Georgia, serif; }
.health-metric small { margin-top: auto; overflow: hidden; color: #748a9b; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
progress { appearance: none; width: 100%; height: 4px; margin: 4px 0 12px; overflow: hidden; border: 0; border-radius: 10px; background: rgba(255, 255, 255, .08); }
progress::-webkit-progress-bar { background: rgba(255, 255, 255, .08); }
progress::-webkit-progress-value { background: linear-gradient(90deg, #568fb2, var(--ice)); }
progress::-moz-progress-bar { background: linear-gradient(90deg, #568fb2, var(--ice)); }

.steps-section { padding-bottom: 90px; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  background: var(--line);
}
.step-grid li { min-height: 235px; padding: 28px; background: #08121c; }
.step-grid li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 185, 110, .35);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Georgia, serif;
}
.step-grid h3 { margin-top: 56px; }

.details-section {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 18px;
  padding-top: 0;
}
.population-details, .tech-details {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--night-soft);
}
.detail-title { margin-bottom: 30px; }
.population-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: 10px; background: var(--line); }
.population-pair span { padding: 18px; background: #0b1825; }
.population-pair small, .population-pair b { display: block; }
.population-pair small, .level-line small { color: var(--muted); }
.population-pair b { margin-top: 5px; font: 600 27px/1 Georgia, serif; }
.faction-line { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 26px; font-size: 12px; }
.faction-line progress { margin: 0; }
.level-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 25px; }
.level-line span { padding: 13px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 8px; }
.level-line small, .level-line b { display: block; }
.level-line small { font-size: 10px; }
.level-line b { margin-top: 5px; }
.tech-details dl { margin: 0; }
.tech-details dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.tech-details dl div:last-child { border: 0; }
.tech-details dt { color: var(--muted); font-size: 12px; }
.tech-details dd { margin: 0; max-width: 56%; overflow: hidden; font-size: 12px; font-weight: 700; text-align: right; text-overflow: ellipsis; white-space: nowrap; }

.site-footer {
  width: min(1180px, calc(100% - 44px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #718697;
  font-size: 12px;
}
.site-footer span:first-child { color: var(--gold); font-family: Georgia, serif; font-size: 16px; }

.step-grid h3 a { text-decoration: none; }
.step-grid h3 a:hover { color: var(--gold-bright); }

.register-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, .94), rgba(3, 11, 19, .64)),
    #091521 url("/assets/hero-northrend.jpg") center / cover fixed no-repeat;
}
.register-shell {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 120px 22px 70px;
}
.register-card {
  width: min(500px, 100%);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid rgba(198, 228, 247, .18);
  border-radius: var(--radius);
  background: rgba(5, 14, 23, .88);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.register-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 9vw, 62px);
  line-height: 1;
}
.register-lead { margin: 16px 0 32px; color: var(--muted); }
.register-card form { display: grid; }
.register-card label { margin: 19px 0 8px; color: #dce8ef; font-size: 13px; font-weight: 750; }
.register-card input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(194, 225, 245, .2);
  border-radius: 8px;
  outline: 0;
  color: var(--ink);
  background: rgba(1, 7, 12, .7);
  font: inherit;
}
.register-card input:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(131, 201, 244, .12); }
.register-card form > small { margin-top: 6px; color: #718697; font-size: 11px; }
.password-field { position: relative; }
.password-field input { padding-right: 68px; }
.password-field button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border: 0;
  color: var(--ice-bright);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.register-submit { width: 100%; margin-top: 28px; }
.register-submit:disabled { opacity: .65; cursor: wait; }
.form-status { min-height: 24px; margin: 15px 0 0; font-size: 13px; text-align: center; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(131, 201, 244, .16), transparent 28%),
    linear-gradient(180deg, rgba(3, 9, 16, .35), var(--night) 650px),
    #091521 url("/assets/hero-northrend.jpg") center top / 100% auto no-repeat;
}
.download-page .site-header { position: absolute; }
.download-shell {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: 170px 0 90px;
}
.download-intro {
  max-width: 700px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(198, 228, 247, .18);
  border-radius: var(--radius);
  background: rgba(5, 14, 23, .84);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.download-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}
.download-button {
  min-height: 64px;
  margin-top: 30px;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 24px;
  line-height: 1.2;
}
.download-button span { font-size: 11px; font-weight: 650; opacity: .68; }
.install-guide {
  margin-top: 70px;
  padding: clamp(25px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 27, .92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}
.install-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
  list-style: none;
}
.install-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 25px;
  background: #08131e;
}
.install-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 185, 110, .34);
  border-radius: 50%;
  color: var(--gold-bright);
  font: 700 13px/1 Georgia, serif;
}
.install-steps h3 { margin: 1px 0 7px; font: 600 22px/1.2 Georgia, serif; }
.install-steps p { margin: 0; color: var(--muted); }
.install-steps strong { color: #e7f2f8; }
@media (max-width: 900px) {
  nav { gap: 18px; }
  .realm-hero { min-height: 720px; }
  .hero-content { padding-top: 95px; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-card:nth-child(2) { border-right: 0; }
  .snapshot-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-strip, .feature-grid { grid-template-columns: 1fr; }
  .health-panel { grid-template-columns: 1fr; }
  .health-metrics { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .details-section { grid-template-columns: 1fr; }
  .download-callout-copy { grid-template-columns: 1fr; }
  .download-callout-copy h2, .download-callout-copy > p, .download-callout-actions { grid-column: 1; }
  .download-callout-actions { grid-row: auto; margin-top: 18px; }
}

@media (max-width: 640px) {
  .nav-shell { width: min(100% - 30px, 1180px); min-height: 68px; }
  .wordmark { font-size: 17px; }
  .wordmark-rune { width: 32px; height: 32px; }
  nav a:not(:first-child) { display: none; }
  .realm-hero { min-height: 700px; background-position: 56% 40%; }
  .realm-hero::before { background: linear-gradient(90deg, rgba(2, 7, 13, .9), rgba(2, 8, 14, .5)), linear-gradient(180deg, rgba(2, 6, 11, .3), transparent 42%, #050a10 100%); }
  .hero-content { width: calc(100% - 30px); padding: 95px 0 150px; }
  .hero-content h1 { font-size: clamp(51px, 17vw, 72px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-facts { gap: 14px 0; margin-top: 36px; }
  .hero-facts span { min-width: 50%; margin: 0; padding: 0 15px 0 0; border: 0; }
  .hero-status { bottom: 18px; width: calc(100% - 30px); flex-wrap: wrap; }
  .last-updated { width: 100%; padding-left: 22px; }
  .realm-snapshot, .content-section, .details-section { width: calc(100% - 30px); padding: 74px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading p:last-child { font-size: 15px; }
  .snapshot-grid { grid-template-columns: 1fr 1fr; }
  .snapshot-card { min-height: 150px; padding: 19px; }
  .snapshot-card strong { font-size: 31px; }
  .service-strip { gap: 8px; }
  .feature-grid article { min-height: 190px; }
  .health-panel { gap: 25px; padding: 22px; }
  .health-metrics { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid li { min-height: 190px; }
  .step-grid h3 { margin-top: 34px; }
  .population-details, .tech-details { padding: 21px; }
  .level-line { grid-template-columns: 1fr 1fr; }
  .site-footer { width: calc(100% - 30px); align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .download-callout { width: calc(100% - 30px); margin-top: 48px; padding: 34px 20px; }
  .download-callout-actions { flex-direction: column; }
  .download-shell { width: calc(100% - 30px); padding-top: 110px; }
  .download-intro, .install-guide { padding: 24px 20px; }
  .download-button { width: 100%; }
  .install-steps li { grid-template-columns: 1fr; gap: 14px; padding: 21px; }
}

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