:root {
  --ink: #102a2e;
  --ink-soft: #36565a;
  --deep: #082f34;
  --teal: #087f75;
  --teal-dark: #05645d;
  --aqua: #d9f6f1;
  --coral: #f35f4c;
  --yellow: #ffc84a;
  --paper: #f7fbfa;
  --white: #ffffff;
  --line: #c9dcda;
  --shadow: 0 18px 45px rgba(6, 52, 56, 0.16);
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0 28%, var(--yellow) 28% 56%, var(--teal) 56% 100%);
  z-index: 100;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, strong, .brand {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  letter-spacing: 0;
}

h1, h2, h3 { margin: 0 0 0.7em; line-height: 1.03; }
h1 { font-size: clamp(2.8rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--teal);
}

.skip-link:focus { top: 10px; }
.content-wrap { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.content-wrap.narrow { max-width: 880px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 72px;
  background: rgba(247, 251, 250, 0.96);
  border-bottom: 1px solid rgba(16, 42, 46, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.brand img { width: 44px; height: 44px; border-radius: 6px; }
.brand span { display: grid; gap: 4px; }
.brand small { color: var(--ink-soft); font: 700 0.62rem/1 ui-sans-serif, system-ui, sans-serif; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  padding: 10px 11px;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--ink); border-bottom-color: var(--coral); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.game-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
  display: grid;
  align-items: end;
}

.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(3, 27, 31, 0.96) 0%, rgba(3, 27, 31, 0.78) 44%, rgba(3, 27, 31, 0.16) 78%), linear-gradient(0deg, rgba(3, 27, 31, 0.88), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-block: 84px 72px; }
.hero-content h1 { max-width: 780px; margin-bottom: 18px; color: var(--white); text-transform: uppercase; }
.hero-intro { max-width: 650px; font-size: clamp(1.12rem, 2vw, 1.45rem); line-height: 1.5; }
.eyebrow { margin: 0 0 12px; color: var(--coral); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.game-hero .eyebrow, .band-ink .eyebrow { color: var(--yellow); }

.launch-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.button {
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--yellow); border-color: var(--yellow); box-shadow: 5px 5px 0 var(--coral); }
.button-primary:hover { color: var(--ink); background: #ffd56f; transform: translateY(-1px); }
.button-ghost { color: inherit; border-color: rgba(255, 255, 255, 0.64); background: rgba(8, 47, 52, 0.34); }
.button-ghost:hover { color: var(--white); border-color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { color: var(--yellow); }
.launch-note { max-width: 680px; color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: 30px; }
.hero-facts span { display: grid; color: rgba(255,255,255,0.7); font-size: 0.72rem; text-transform: uppercase; }
.hero-facts strong { color: var(--white); font-size: 1.05rem; text-transform: none; }
.media-credit { position: absolute; z-index: 3; right: 18px; bottom: 12px; max-width: 300px; margin: 0; color: rgba(255,255,255,0.66); font-size: 0.68rem; text-align: right; }

.band-light, .content-band, .wiki-intro { padding-block: 96px; }
.band-light { background: var(--aqua); }
.content-band { background: var(--paper); }
.two-column { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr); gap: clamp(36px, 7vw, 90px); align-items: center; }
.section-intro, .lede { font-size: 1.15rem; color: var(--ink-soft); }

.numbered-route { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid rgba(8, 127, 117, 0.28); }
.numbered-route li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(8, 127, 117, 0.28); }
.numbered-route li > span { color: var(--coral); font-family: Impact, sans-serif; font-size: 1.7rem; }
.numbered-route strong { font-size: 1.15rem; }
.numbered-route p { margin: 2px 0 0; color: var(--ink-soft); font-size: 0.92rem; }

.feature-figure, .article-lead, .inline-official, .inline-icon { margin: 0; }
.feature-figure img, .article-lead img, .inline-official img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 0.76rem; line-height: 1.45; }

.launch-band { padding-block: 78px; background: var(--white); border-block: 1px solid var(--line); }
.launch-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr); gap: 70px; align-items: center; }
.launch-panel {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.launch-panel img { grid-row: span 2; width: 86px; height: 86px; object-fit: cover; border-radius: 5px; }
.launch-panel div { display: grid; align-content: center; }
.launch-panel div strong { font-size: 1.3rem; }
.launch-panel div span { color: var(--ink-soft); font-size: 0.76rem; }
.launch-panel .button { align-self: center; }
.launch-panel .text-link { grid-column: 1 / -1; font-size: 0.82rem; }

.band-ink { padding-block: 80px; background: var(--deep); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 0; }
.text-link { font-weight: 800; }
.text-link.light { color: var(--yellow); }
.control-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid rgba(255,255,255,0.22); }
.control-strip > div { min-height: 178px; padding: 24px; border-right: 1px solid rgba(255,255,255,0.22); display: flex; flex-direction: column; }
.control-strip > div:last-child { border-right: 0; }
.control-strip kbd { align-self: flex-start; min-width: 58px; padding: 5px 10px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.45); border-radius: 4px; color: var(--yellow); background: rgba(255,255,255,0.06); font-size: 0.73rem; }
.control-strip strong { font-size: 1.3rem; }
.control-strip p { margin: 8px 0 0; color: rgba(255,255,255,0.72); font-size: 0.87rem; }

.prose-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.55fr); gap: 76px; align-items: start; }
.prose-grid article > p { color: var(--ink-soft); }
.route-aside { position: sticky; top: 100px; padding: 26px 28px; background: var(--aqua); border-left: 5px solid var(--teal); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid rgba(8,127,117,.2); font-size: .88rem; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.inline-cta { display: grid; gap: 2px; margin-top: 30px; padding: 20px 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--coral); text-decoration: none; }
.inline-cta span { color: var(--teal-dark); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.inline-cta strong { font-size: 1.2rem; }

.code-band { padding-block: 54px; background: var(--yellow); }
.code-layout { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 36px; }
.code-layout h2 { margin: 0; font-size: 3.3rem; }
.code-layout p { margin: 0; }
.code-layout small { display: block; margin-top: 5px; }
.copy-code { min-width: 190px; padding: 12px 18px; border: 2px solid var(--ink); border-radius: 5px; background: transparent; color: var(--ink); cursor: pointer; }
.copy-code span, .copy-code strong { display: block; }
.copy-code span { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.copy-code strong { font-size: 1.25rem; }
.copy-code.copied { background: var(--ink); color: var(--white); }

.topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
.topic-grid a { min-height: 230px; padding: 26px; color: var(--ink); background: var(--white); border-right: 1px solid var(--line); text-decoration: none; }
.topic-grid a:last-child { border-right: 0; }
.topic-grid a:hover { background: var(--aqua); }
.topic-grid span { color: var(--coral); font-size: 0.73rem; font-weight: 900; text-transform: uppercase; }
.topic-grid h3 { margin-top: 38px; }
.topic-grid p { color: var(--ink-soft); font-size: 0.86rem; }
.topic-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 44px 0; }
.topic-grid.compact a:nth-child(2) { border-right: 0; }
.topic-grid.compact a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

.faq-section { border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 50px 22px 0; cursor: pointer; list-style: none; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 17px; color: var(--teal); font-size: 1.65rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details div { padding: 0 42px 18px 0; color: var(--ink-soft); }

.source-bar { padding-block: 40px; color: var(--white); background: var(--teal); }
.source-bar .content-wrap { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.source-bar p { max-width: 820px; margin: 5px 0 0; color: rgba(255,255,255,.83); font-size: .88rem; }

.breadcrumbs { width: min(calc(100% - 40px), var(--content)); margin: 24px auto 0; display: flex; gap: 9px; color: var(--ink-soft); font-size: 0.77rem; }
.page-hero { padding: 84px 0 72px; background: var(--aqua); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1000px; font-size: clamp(2.6rem, 6vw, 5.2rem); text-transform: uppercase; }
.page-hero .lede { max-width: 820px; }
.review-meta { margin: 24px 0 0; color: var(--teal-dark); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; }

.article-layout { display: grid; grid-template-columns: minmax(0, 820px) 230px; justify-content: center; gap: 72px; align-items: start; }
.prose { max-width: 840px; margin-inline: auto; }
.prose h2 { margin-top: 1.5em; font-size: clamp(1.8rem, 3.3vw, 2.7rem); }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose li { margin-bottom: 10px; }
.prose table { width: 100%; margin: 32px 0; border-collapse: collapse; font-size: 0.86rem; }
.prose th, .prose td { padding: 14px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: var(--white); background: var(--teal-dark); }
.prose tr:nth-child(even) td { background: #edf6f4; }
.prose code { padding: 2px 6px; background: var(--aqua); color: var(--ink); border-radius: 3px; }
.answer-box { padding: 22px 24px; margin: 32px 0; background: var(--aqua); border-left: 5px solid var(--teal); }
.article-lead { margin-bottom: 38px; }
.article-nav { position: sticky; top: 100px; display: grid; gap: 10px; padding-left: 20px; border-left: 2px solid var(--line); font-size: 0.79rem; }
.article-nav strong { margin-bottom: 6px; font-size: 1rem; }
.inline-official { margin: 44px 0; }
.inline-official img { aspect-ratio: 16/9; }
.inline-icon { float: right; width: min(40%, 290px); margin: 10px 0 28px 38px; }
.inline-icon img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }

.mechanic-diagram { margin: 34px 0; padding: 24px; display: grid; grid-template-columns: auto auto 1fr auto auto 1fr auto auto; align-items: center; gap: 10px; background: var(--deep); color: var(--white); overflow: hidden; }
.mechanic-diagram span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.4); border-radius: 4px; color: var(--yellow); font-size: .72rem; }
.mechanic-diagram b { font-family: inherit; font-size: .84rem; }
.mechanic-diagram i { height: 2px; background: var(--coral); }

.source-note { margin: 42px 0; padding: 24px; border: 1px solid var(--line); border-top: 5px solid var(--yellow); background: var(--white); }
.source-note strong { font-size: 1.1rem; }
.source-note p { margin: 5px 0 0; font-size: .84rem; }

.route-visual { padding-block: 50px; background: var(--deep); color: var(--white); }
.progression-line { display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr; align-items: center; }
.progression-line div { min-height: 110px; padding: 18px; border: 1px solid rgba(255,255,255,.24); text-align: center; }
.progression-line span, .progression-line strong, .progression-line small { display: block; }
.progression-line span { color: var(--yellow); font-weight: 900; }
.progression-line strong { margin: 4px 0; font-size: 1.15rem; }
.progression-line small { color: rgba(255,255,255,.65); }
.progression-line i { height: 2px; background: var(--coral); }

.code-hero { padding-block: 54px; background: var(--coral); color: var(--white); }
.code-hero .content-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.code-hero h2 { margin: 5px 0; font-size: clamp(3rem, 7vw, 5.5rem); }
.code-hero p { margin: 0; }
.copy-code.inverse { color: var(--white); border-color: var(--white); }
.status-active { display: inline-block; padding: 3px 8px; border-radius: 3px; color: #07574f; background: #d6f4dd; font-weight: 800; }

.wiki-intro { background: var(--white); }
.fact-list { margin: 0; border-top: 1px solid var(--line); }
.fact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--ink-soft); font-size: .8rem; }
.fact-list dd { margin: 0; font-weight: 800; }
.legal h2 { font-size: 2rem; }

.not-found { min-height: 68vh; padding-block: 120px; display: grid; align-items: center; background: var(--aqua); text-align: center; }
.not-found h1 { margin-inline: auto; max-width: 800px; font-size: clamp(3rem, 7vw, 6rem); }
.not-found p:not(.eyebrow) { max-width: 600px; margin: 0 auto 30px; }

.site-footer { padding-block: 56px; color: rgba(255,255,255,.76); background: #061f23; }
.footer-inner { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px 70px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 50px; height: 50px; border-radius: 5px; }
.footer-brand strong { color: var(--white); font-size: 1.15rem; }
.footer-brand p { margin: 2px 0 0; font-size: .78rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: end; align-content: center; gap: 10px 20px; }
.site-footer nav a { color: var(--white); font-size: .79rem; }
.disclaimer { grid-column: 1 / -1; padding-top: 24px; margin: 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }

.launch-toast { position: fixed; right: 18px; bottom: 18px; z-index: 110; max-width: 380px; padding: 18px 44px 18px 18px; background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--yellow); border-radius: 5px; box-shadow: var(--shadow); }
.launch-toast strong, .launch-toast span { display: block; }
.launch-toast span { color: var(--ink-soft); font-size: .78rem; }
.launch-toast button { position: absolute; top: 7px; right: 7px; width: 34px; height: 34px; border: 0; background: transparent; color: var(--ink-soft); font-size: 0; cursor: pointer; }
.launch-toast button::before, .launch-toast button::after { content: ""; position: absolute; left: 9px; top: 16px; width: 16px; height: 2px; background: currentColor; transform: rotate(45deg); }
.launch-toast button::after { transform: rotate(-45deg); }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 64px; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px; }
  .two-column, .launch-grid, .prose-grid, .article-layout { grid-template-columns: 1fr; }
  .article-nav { position: static; order: -1; grid-template-columns: repeat(3, 1fr); padding: 18px 0; border-left: 0; border-block: 1px solid var(--line); }
  .article-nav strong { grid-column: 1 / -1; }
  .route-aside { position: static; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid a { border-bottom: 1px solid var(--line); }
  .topic-grid a:nth-child(2) { border-right: 0; }
  .topic-grid a:nth-last-child(-n+2) { border-bottom: 0; }
  .control-strip { grid-template-columns: repeat(2, 1fr); }
  .control-strip > div:nth-child(2) { border-right: 0; }
  .control-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .code-layout { grid-template-columns: 1fr auto; }
  .code-layout .button { grid-column: 1 / -1; }
  .progression-line { grid-template-columns: 1fr; gap: 0; }
  .progression-line i { width: 2px; height: 22px; margin-inline: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .content-wrap, .header-inner, .footer-inner, .breadcrumbs { width: min(calc(100% - 28px), var(--content)); }
  .site-header, .header-inner { min-height: 64px; }
  .brand img { width: 38px; height: 38px; }
  .brand { font-size: .95rem; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,27,31,.98) 0 55%, rgba(3,27,31,.3) 100%); }
  .game-hero { min-height: calc(100svh - 104px); }
  .hero-content { padding-block: 205px 30px; }
  .hero-content h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-intro { font-size: 1.05rem; }
  .launch-actions { display: grid; grid-template-columns: 1fr; }
  .launch-note, .hero-facts, .media-credit { display: none; }
  .band-light, .content-band, .wiki-intro { padding-block: 66px; }
  .launch-band, .band-ink { padding-block: 58px; }
  .two-column { gap: 42px; }
  .launch-panel { grid-template-columns: 68px 1fr; padding: 17px; }
  .launch-panel img { width: 68px; height: 68px; }
  .launch-panel .button { grid-column: 1 / -1; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 12px; }
  .control-strip { grid-template-columns: 1fr; }
  .control-strip > div { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .control-strip > div:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .control-strip > div:last-child { border-bottom: 0; }
  .code-layout, .code-hero .content-wrap { display: grid; grid-template-columns: 1fr; }
  .code-layout .button { grid-column: auto; }
  .copy-code { width: 100%; }
  .topic-grid, .topic-grid.compact { grid-template-columns: 1fr; }
  .topic-grid a, .topic-grid.compact a { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .topic-grid a:nth-last-child(-n+2), .topic-grid.compact a:nth-child(2) { border-bottom: 1px solid var(--line); }
  .topic-grid a:last-child { border-bottom: 0; }
  .topic-grid h3 { margin-top: 18px; }
  .source-bar .content-wrap { display: grid; }
  .page-hero { padding-block: 62px 54px; }
  .page-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .article-nav { grid-template-columns: 1fr 1fr; }
  .mechanic-diagram { grid-template-columns: auto 1fr; }
  .mechanic-diagram i { display: none; }
  .prose { overflow-wrap: anywhere; }
  .prose table { display: block; overflow-x: auto; white-space: normal; }
  .inline-icon { float: none; width: 100%; max-width: 280px; margin: 30px auto; }
  .fact-list div { grid-template-columns: 110px 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: start; }
  .disclaimer { grid-column: auto; }
  .launch-toast { left: 14px; right: 14px; bottom: 14px; }
}

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