:root {
  --ink: #071011;
  --ink-soft: #0c1719;
  --panel: #101b1e;
  --line: #253438;
  --text: #f4f6f5;
  --muted: #aeb9ba;
  --yellow: #f4c83f;
  --yellow-deep: #c99b14;
  --blue: #0d42a4;
  --rust: #a94731;
  --max: 1180px;
  --header: 76px;
}

* { box-sizing: border-box; }
main, section, article, header, footer, div, nav { min-width: 0; }
html { width: 100%; max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
h1, h2, h3, p, li, span, a, button { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 16, 17, .94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand img { width: 44px; height: 44px; object-fit: cover; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 15px; text-transform: uppercase; }
.brand small { margin-top: 6px; color: var(--yellow); font-size: 10px; font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  color: #d8dede;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.site-nav a:not(.nav-store)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-store {
  padding: 10px 16px;
  border: 1px solid var(--yellow);
  color: var(--yellow) !important;
}
.nav-store:hover { background: var(--yellow); color: var(--ink) !important; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 48px) max(24px, calc((100vw - var(--max)) / 2)) 126px;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  z-index: -3;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center 24%;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.03);
  transition: transform .25s ease-out;
}
.hero-video {
  position: absolute;
  z-index: -3;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-video.is-ready { opacity: 1; }
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(3, 9, 10, .68);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: max(24px, calc((100vw - var(--max)) / 2));
  top: 21%;
  width: 4px;
  height: 42%;
  background: var(--yellow);
  transform-origin: top;
  animation: line-in .9s .2s both ease-out;
}
.hero-content { width: min(780px, calc(100vw - 80px)); padding-left: 40px; }
.hero-content, .hero-content > * { min-width: 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 136px);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: 0;
  max-width: 900px;
}
.hero-lead {
  width: min(660px, 100%);
  margin: 30px 0 0;
  color: #d2d9d9;
  font-size: clamp(17px, 2vw, 22px);
  overflow-wrap: break-word;
}
.hero-actions, .join-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .copy-inline:focus-visible, .nav-toggle:focus-visible, a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-primary:hover { background: #ffe071; }
.button-secondary { border-color: #a7b2b3; color: var(--text); background: rgba(7, 16, 17, .38); }
.button-secondary:hover { border-color: var(--yellow); }

.hero-enter { animation: hero-enter .72s both ease-out; }
.hero h1 { animation-delay: .08s; }
.hero-lead { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }

.hero-facts {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.34);
}
.hero-facts span {
  padding: 17px 22px 0;
  border-left: 1px solid rgba(255,255,255,.18);
  color: #c5cdcd;
  font-size: 13px;
  text-transform: uppercase;
}
.hero-facts span:first-child { border-left: 0; padding-left: 0; }
.hero-facts b { margin-right: 6px; color: var(--yellow); font-size: 18px; }
.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 102px;
  width: 34px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.4);
}
.scroll-cue span {
  position: absolute;
  left: 15px;
  top: 9px;
  width: 2px;
  height: 12px;
  background: var(--yellow);
  animation: scroll-cue 1.7s infinite ease-in-out;
}
.hero-video-toggle {
  position: absolute;
  right: calc(max(24px, (100vw - var(--max)) / 2) + 50px);
  bottom: 102px;
  width: 34px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(7,16,17,.38);
  cursor: pointer;
}
.hero-video-toggle span { width: 3px; height: 15px; background: var(--yellow); }
.hero-video-toggle.is-paused span:first-child {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--yellow);
  background: transparent;
}
.hero-video-toggle.is-paused span:last-child { display: none; }

.section-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.signal-band { background: var(--yellow); color: var(--ink); }
.signal-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.signal-inner > div { display: flex; align-items: baseline; gap: 24px; }
.signal-label { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.signal-inner strong { font-size: clamp(20px, 3vw, 30px); }
.copy-inline { padding: 10px 0; border: 0; border-bottom: 2px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-weight: 900; }

.armory {
  position: relative;
  height: 460svh;
  background: #05090a;
}
.armory-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #05090a;
}
.armory-canvas,
.spline-layer,
.spline-layer spline-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.armory-canvas { z-index: 0; display: block; touch-action: pan-y; }
.spline-layer { z-index: 1; display: none; }
.spline-layer.is-active { display: block; }
.armory-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,9,10,.88) 0%, rgba(5,9,10,.12) 42%, rgba(5,9,10,.18) 65%, rgba(5,9,10,.82) 100%);
}
.armory-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,9,10,.82), transparent 38%, rgba(5,9,10,.28));
}
.armory-flash {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: rgba(244, 200, 63, .28);
  mix-blend-mode: screen;
  opacity: 0;
}
.armory-flash.is-active { animation: armory-flash .48s ease-out; }
.armory-mark {
  position: absolute;
  z-index: 3;
  top: calc(var(--header) + 28px);
  right: max(24px, calc((100vw - var(--max)) / 2));
  margin: 0;
  color: rgba(255,255,255,.42);
  font: 700 11px/1 Consolas, monospace;
  text-transform: uppercase;
}
.armory-object-name {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: max-content;
  max-width: 94vw;
  margin: 0;
  color: rgba(255,255,255,.055);
  font-size: clamp(90px, 17vw, 270px);
  font-weight: 900;
  line-height: .72;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: opacity .35s ease;
  user-select: none;
}
.armory-loader {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 62px;
  width: min(280px, calc(100% - 48px));
  transform: translateX(-50%);
  transition: opacity .35s ease;
}
.armory-loader span {
  display: block;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(var(--load-progress, .08));
  transform-origin: left;
  transition: transform .25s ease;
}
.armory-loader small {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}
.armory-loader.is-complete { opacity: 0; pointer-events: none; }
.armory-progress {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - var(--max)) / 2));
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  height: 2px;
  background: rgba(255,255,255,.18);
}
.armory-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(var(--armory-progress, 0));
  transform-origin: left;
}
.armory-chapter {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - var(--max)) / 2));
  top: 50%;
  width: min(500px, calc(100% - 48px));
  transform: translate3d(0, calc(-50% + 32px), 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease, transform .5s ease;
}
.armory-chapter-right {
  left: auto;
  right: max(24px, calc((100vw - var(--max)) / 2));
  text-align: right;
}
.armory-chapter.is-active {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}
.armory-chapter h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .94;
  text-transform: uppercase;
}
.armory-chapter-right h2 { margin-left: auto; }
.armory-chapter > p:last-child {
  max-width: 44ch;
  margin: 26px 0 0;
  color: #c2cbcc;
  font-size: 17px;
}
.armory-chapter-right > p:last-child { margin-left: auto; }
.armory-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: rgba(255,255,255,.16);
  text-transform: uppercase;
}
.armory-fallback strong { font-size: clamp(72px, 18vw, 240px); line-height: .8; }
.armory-fallback span { margin-top: 24px; font-size: 12px; }
.armory.has-webgl .armory-fallback,
.armory.has-spline .armory-fallback { display: none; }

body.qa-armory main > :not(.armory),
body.qa-armory .site-footer { display: none; }
body.qa-armory .armory { height: 100svh; }
body.qa-armory .armory-sticky { position: relative; }
body.qa-video main > :not(.cinema-section),
body.qa-video .site-footer { display: none; }
body.qa-video .cinema-section { min-height: 100svh; padding-top: calc(var(--header) + 56px); }
body.qa-video .cinema-section .reveal { opacity: 1; transform: none; }
body.qa-commands main > :not(.commands-section),
body.qa-commands .site-footer { display: none; }
body.qa-commands .commands-section { min-height: 100svh; padding-top: calc(var(--header) + 72px); }
body.qa-commands .commands-section .reveal { opacity: 1; transform: none; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 48px; row-gap: 20px; align-items: end; margin-bottom: 56px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin: 0; }
.section-heading h2, .server-copy h2, .join-inner h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  text-transform: uppercase;
}
.section-heading > p:last-child, .server-copy > p, .join-inner > div > p:last-of-type { max-width: 54ch; margin: 0; color: var(--muted); font-size: 18px; }

.server-section { background: var(--ink-soft); }
.feature-ledger { border-top: 1px solid var(--line); }
.feature-ledger article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.feature-index { color: var(--yellow); font-weight: 900; }
.feature-ledger h3 { margin: 0 0 5px; font-size: 22px; }
.feature-ledger p { margin: 0; color: var(--muted); }

.server-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  gap: 64px;
  align-items: center;
  margin-top: 112px;
}
.server-photo { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); }
.server-photo::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 34%; height: 5px; background: var(--yellow); z-index: 1; }
.server-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .7s ease; }
.server-photo:hover img { transform: scale(1.025); }
.server-photo figcaption { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; background: var(--ink); color: var(--yellow); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.server-copy .eyebrow { margin-bottom: 20px; }
.server-copy > p { margin-top: 28px; }
.server-details { margin: 34px 0 0; border-top: 1px solid var(--line); }
.server-details div { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.server-details dt { color: var(--muted); }
.server-details dd { margin: 0; font-weight: 800; }

.cinema-section { background: #050b0c; border-top: 1px solid var(--line); }
.cinema-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.cinema-film { position: relative; margin: 0; overflow: hidden; background: #020606; }
.cinema-film video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  background: #020606;
}
.cinema-film figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 3px;
  padding: 42px 22px 20px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(2,6,6,.96), transparent);
}
.cinema-film figcaption strong { color: var(--yellow); font-size: 15px; text-transform: uppercase; }
.cinema-film figcaption span { color: #d4dada; font-size: 13px; }
.cinema-source {
  display: inline-block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.cinema-source:hover { color: var(--yellow); }

.privileges-section { background: #091315; }
.privilege-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privilege-card { padding: 30px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.privilege-card.premium { border-color: rgba(244,200,63,.5); }
.privilege-card header { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.privilege-card header span { color: var(--yellow); font-size: 32px; font-weight: 900; }
.privilege-card header small { color: var(--muted); text-transform: uppercase; }
.privilege-card ul { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.privilege-card li { position: relative; padding-left: 22px; color: #d6dddd; }
.privilege-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--yellow); }
.text-link { display: inline-flex; gap: 12px; margin-top: 28px; color: var(--yellow); font-weight: 900; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.commands-section { background: #0a2d63; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.commands-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(48px, 6vw, 80px); align-items: start; }
.commands-layout .section-heading { display: block; margin: 0; }
.commands-layout .section-heading .eyebrow { margin: 0 0 18px; }
.commands-layout .section-heading h2 { margin-bottom: 24px; }
.commands-layout .section-heading p:last-child { color: #d6e1ff; }
.commands-layout code { color: var(--yellow); }
.command-list { border-top: 1px solid rgba(255,255,255,.34); }
.command-list div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.command-list code { font-family: Consolas, monospace; color: var(--yellow); font-size: 18px; font-weight: 800; }
.command-list span { color: #d6e1ff; }

@media (max-width: 1050px) {
  .commands-layout { grid-template-columns: 1fr; gap: 44px; }
  .commands-layout .section-heading { max-width: 680px; }
}

.rules-section { background: var(--ink-soft); }
.rules-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.rules-list li { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.rules-list span { color: var(--rust); font-weight: 900; }
.rules-list p { margin: 0; color: var(--muted); }
.rules-list strong { color: var(--text); }
.rules-list code { color: var(--yellow); }

.join-section { padding: 88px 0; background: var(--yellow); color: var(--ink); }
.join-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.join-inner .eyebrow { color: var(--blue); }
.join-inner > div > p:last-of-type { margin-top: 20px; color: #3e4646; }
.join-inner .button-primary { background: var(--ink); color: var(--text); }
.join-inner .button-primary:hover { background: var(--blue); }
.join-inner .button-secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.qr-block { display: grid; gap: 12px; justify-items: center; }
.qr-block img { width: 152px; height: 152px; border: 10px solid var(--ink); }
.qr-block span { font-size: 12px; font-weight: 900; }

.site-footer { padding: 34px 0; background: #050b0c; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 900; text-transform: uppercase; }
.footer-brand span { display: grid; line-height: 1.1; }
.footer-brand small { margin-top: 5px; color: var(--yellow); text-transform: none; }
.footer-links { display: flex; gap: 22px; color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--yellow); }
.footer-inner > small { color: #788587; }

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  padding: 11px 16px;
  border-left: 3px solid var(--yellow);
  background: var(--panel);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-enter { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes line-in { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes scroll-cue { 0%, 100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(15px); opacity: 1; } }
@keyframes armory-flash { 0% { opacity: 0; } 18% { opacity: .72; } 100% { opacity: 0; } }

@media (max-width: 900px) {
  :root { --header: 68px; }
  .site-header { padding-inline: 20px; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(7,16,17,.7);
    cursor: pointer;
  }
  .nav-toggle span { width: 20px; height: 2px; background: var(--text); }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(7,16,17,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .nav-store { margin-top: 8px; padding-inline: 14px !important; text-align: center; }
  .hero { min-height: 88svh; }
  .hero-content { width: min(680px, 88vw); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts span { padding-top: 8px; }
  .scroll-cue { display: none; }
  .cinema-grid { grid-template-columns: 1fr; }
  .cinema-film video { min-height: 0; aspect-ratio: 16 / 9; }
  .section-heading { grid-template-columns: 1fr; column-gap: 0; row-gap: 22px; }
  .server-story { grid-template-columns: 1fr; gap: 38px; }
  .privilege-grid { grid-template-columns: 1fr; }
  .commands-layout { grid-template-columns: 1fr; gap: 42px; }
  .armory-vignette { background: rgba(5,9,10,.45); }
  .armory-chapter,
  .armory-chapter-right {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 86px;
    width: min(540px, calc(100% - 48px));
    text-align: left;
    transform: translate3d(0, 24px, 0);
  }
  .armory-chapter.is-active { transform: none; }
  .armory-chapter-right h2,
  .armory-chapter-right > p:last-child { margin-left: 0; }
}

@media (max-width: 620px) {
  .section-inner { width: min(100% - 32px, var(--max)); }
  .site-header { width: 100%; }
  .brand { min-width: 0; max-width: calc(100% - 58px); }
  .brand span { min-width: 0; }
  .brand strong { font-size: 13px; }
  .nav-toggle { flex: 0 0 42px; }
  .hero {
    min-height: 84svh;
    align-items: end;
    padding: calc(var(--header) + 36px) 16px 124px;
  }
  .hero-media { object-position: 57% center; }
  .hero::after { left: 16px; top: 23%; height: 34%; }
  .hero-content { width: 100%; max-width: 100%; padding-left: 20px; padding-right: 4px; }
  .hero h1 { max-width: 100%; font-size: clamp(46px, 14vw, 58px); }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-video-toggle { top: calc(var(--header) + 18px); right: 16px; bottom: auto; width: 38px; height: 38px; }
  .hero-facts { left: 16px; right: 16px; bottom: 20px; }
  .hero-facts span { padding-left: 10px; font-size: 10px; }
  .hero-facts b { display: block; font-size: 15px; }
  .signal-inner { align-items: flex-start; flex-direction: column; padding: 22px 0; gap: 12px; }
  .signal-inner > div { display: grid; gap: 2px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .server-copy h2, .join-inner h2 { font-size: 38px; }
  .section-heading > p:last-child, .server-copy > p { font-size: 16px; }
  .feature-ledger article, .rules-list li { grid-template-columns: 46px 1fr; gap: 12px; }
  .server-story { margin-top: 76px; }
  .server-photo img { aspect-ratio: 4 / 3; }
  .privilege-card { padding: 22px; }
  .command-list div { grid-template-columns: 108px 1fr; gap: 14px; }
  .command-list code { font-size: 15px; }
  .join-inner { grid-template-columns: 1fr; gap: 42px; }
  .qr-block { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { flex-wrap: wrap; }
  .cinema-grid { gap: 14px; }
  .armory { height: 420svh; }
  .armory-mark { top: calc(var(--header) + 18px); right: 16px; }
  .armory-progress { left: 16px; right: 16px; bottom: 18px; }
  .armory-chapter,
  .armory-chapter-right { left: 16px; bottom: 54px; width: calc(100% - 32px); }
  .armory-chapter h2 { max-width: 12ch; font-size: clamp(34px, 10vw, 48px); }
  .armory-chapter > p:last-child { max-width: 34ch; margin-top: 16px; font-size: 15px; }
  .armory-object-name { font-size: clamp(66px, 20vw, 110px); white-space: normal; }
  .armory-loader { bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .armory { height: 100svh; }
  .armory-chapter { display: none; }
  .armory-chapter:first-of-type { display: block; opacity: 1; transform: none; }
}
