:root {
  --ink: #080f15;
  --panel: #111b23;
  --line: #2b353b;
  --gold: #d9b66e;
  --text: #e7e8e6;
  --muted: #a3adb4;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 17px/1.65 var(--body);
  overflow-x: clip;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
::selection {
  color: var(--ink);
  background: var(--gold);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.99;
}
h1 {
  font-size: clamp(68px, 7.4vw, 116px);
  letter-spacing: -1.8px;
}
h2 {
  font-size: clamp(43px, 4.8vw, 70px);
  letter-spacing: -0.5px;
}
h2 span,
h1 span {
  color: var(--gold);
}
h3 {
  font-size: 28px;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.5;
  color: var(--gold);
  display: block;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p {
  max-width: 400px;
  font-size: 17px;
  line-height: 1.8;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 54px;
  padding: 14px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #f3e1a8;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.small {
  min-height: 42px;
  padding: 10px 19px;
  font-size: 10px;
  gap: 18px;
}
.button.outline {
  background: transparent;
  color: var(--gold);
  border-color: #695c40;
}
.button.outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text);
}
.text-link:hover {
  color: var(--gold);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 15, 21, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font: 700 25px/1 var(--display);
  letter-spacing: 1.3px;
}
.brand b {
  color: var(--gold);
  font-weight: 700;
}
.brand small {
  display: block;
  font: 500 6.5px/1.5 var(--body);
  letter-spacing: 1.75px;
  margin-top: 7px;
  color: var(--muted);
}
.brand-mark {
  display: grid;
  place-items: center;
  font: 38px/1 var(--body);
  color: var(--gold);
  width: 41px;
  height: 45px;
  border: 1px solid #78643f;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  background: #d9b66e0a;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.nav nav > a:not(.button) {
  font-size: 12px;
  font-weight: 500;
  color: #b4bbc0;
}
.nav nav > a:hover,
.nav nav > a.active {
  color: var(--gold);
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 690px;
  height: calc(100svh - 87px);
  max-height: 970px;
  isolation: isolate;
  overflow: hidden;
}
.hero-art,
.hero-art:after,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 48%;
  animation: cinematic-drift 22s ease-out both;
}
.hero-art:after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 15, 21, 0.95) 0%,
      rgba(8, 15, 21, 0.85) 27%,
      rgba(8, 15, 21, 0.18) 64%,
      rgba(8, 15, 21, 0.05)
    ),
    linear-gradient(
      0deg,
      #080f15 0%,
      transparent 30%,
      rgba(8, 15, 21, 0.12) 80%,
      #080f1555
    );
}
.hero-grid {
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(#d9b66e30 1px, transparent 1px),
    linear-gradient(90deg, #d9b66e30 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 50%);
}
.hero-content {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  gap: 24px;
}
.hero-topline .eyebrow {
  font-size: 9px;
  letter-spacing: 1.8px;
}
.coordinates {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #ddd7c8;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px #d9b66e77;
  margin: 0 8px 2px 0;
}
.hero-copy {
  margin-block: auto;
  padding: 38px 0 36px;
  max-width: 670px;
}
.hero-copy > .eyebrow {
  font-size: 10px;
  margin-bottom: 20px;
  letter-spacing: 2.8px;
}
.hero h1 {
  font-weight: 800;
  line-height: 0.94;
  margin-left: -3px;
  text-shadow: 0 3px 35px #080f1526;
}
.hero-description {
  color: #c8ccca;
  font-size: 16px;
  margin-top: 25px;
  line-height: 1.8;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 27px;
}
.play-icon {
  border: 1px solid #8a8e8b;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: grid;
  place-items: center;
  font-size: 17px;
}
.platform-note {
  font-size: 9px;
  letter-spacing: 1.4px;
  margin-top: 19px;
  color: #9ea4a5;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid #d9b66e30;
}
.scroll-cue {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #acb4b5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue > span {
  color: var(--gold);
  font-size: 20px;
}
.art-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-controls > span {
  font-size: 8px;
  letter-spacing: 1.6px;
  margin-right: 15px;
  color: #adb1b0;
}
.art-controls button {
  height: 32px;
  width: 39px;
  background: transparent;
  color: #afb5b8;
  border: 1px solid #ffffff2a;
  font: 500 10px var(--body);
}
.art-controls button[aria-pressed="true"] {
  color: var(--gold);
  border-color: var(--gold);
  background: #d9b66e0a;
}
.bulletin {
  border-block: 1px solid #d9b66e45;
  background: #d9b66e0a;
}
.bulletin .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}
.bulletin span {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--gold);
}
.bulletin p {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2.1px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  margin-bottom: 47px;
}
.stats > div {
  padding: 25px 25px 29px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 19px;
}
.stats > div:first-child {
  padding-left: 0;
}
.stats > div:last-child {
  border: 0;
}
.stats strong {
  font: 600 62px/1 var(--display);
  color: var(--gold);
}
.stats span {
  font-size: 9px;
  letter-spacing: 1.3px;
  max-width: 105px;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding-right: 25px;
}
.feature-icon {
  color: var(--gold);
  font-size: 34px;
  display: block;
  margin-bottom: 16px;
}
.feature > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.8px;
  margin-bottom: 13px;
}
.feature h3 {
  font-family: var(--body);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.feature p {
  font-size: 15px;
  line-height: 1.85;
}
.feature a {
  color: var(--gold);
  text-decoration: underline;
}
.rules-strip {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.rules-strip .eyebrow {
  font-size: 9px;
}
.rules-strip p {
  font-size: 12px;
}
.rules-strip b {
  color: var(--text);
  display: block;
  font-weight: 500;
}
.story-banner {
  position: relative;
  isolation: isolate;
  padding: 95px 0;
  overflow: hidden;
  min-height: 545px;
}
.story-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  z-index: -2;
}
.story-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080f150a, #080f15c9 50%, #080f15f5 100%);
  z-index: -1;
}
.story-copy {
  margin-left: auto;
  width: 46%;
}
.story-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 24px;
}
.story-copy h2 {
  margin-bottom: 24px;
}
.story-copy p {
  font-size: 16px;
  color: #c3c8c6;
  margin-bottom: 17px;
}
.story-copy .button {
  margin-top: 15px;
}
.roster-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.filter-tabs {
  display: flex;
  gap: 25px;
}
.filter-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: 600;
  padding: 17px 0;
}
.filter-tabs button[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-tabs span {
  font-size: 9px;
  margin-left: 8px;
  opacity: 0.7;
}
.search {
  position: relative;
  margin-bottom: 8px;
}
.search input {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  padding: 11px 37px 11px 15px;
  width: 235px;
}
.search > span:last-child {
  position: absolute;
  right: 13px;
  top: 3px;
  color: var(--gold);
  font-size: 24px;
}
.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}
.character {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: var(--text);
  min-width: 0;
}
.portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4.8;
  border: 1px solid var(--line);
  background: var(--panel);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
  transition:
    transform 0.6s,
    filter 0.6s;
  filter: saturate(0.78);
}
.portrait:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #080f1555, transparent 35%);
  pointer-events: none;
}
.character:hover .portrait img {
  transform: scale(1.045);
  filter: saturate(1);
}
.character:hover .portrait {
  border-color: var(--gold);
}
.character:hover h3 {
  color: var(--gold);
}
.file-number {
  position: absolute;
  left: 11px;
  top: 11px;
  font-size: 8px;
  letter-spacing: 1.5px;
  background: #080f15c9;
  padding: 4px 7px;
  color: var(--gold);
}
.portrait-plus {
  position: absolute;
  right: 11px;
  bottom: 11px;
  color: var(--gold);
  font-size: 23px;
  z-index: 1;
}
.character-label {
  padding: 16px 0 10px;
}
.character h3 {
  font-size: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.character-label > span {
  display: block;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: var(--muted);
  line-height: 1.5;
}
.roster-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
}
.roster-footer > span {
  font-size: 11px;
  color: var(--muted);
}
.fineprint {
  font-size: 11px;
  line-height: 1.8;
  color: #929ca3;
  margin-top: 20px;
}
.empty-state {
  padding-block: 40px;
  text-align: center;
}
.arena-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.arena-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
}
.arena-menu {
  display: grid;
  align-content: start;
}
.arena-choice {
  display: flex;
  align-items: center;
  gap: 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  padding: 12px 16px;
  color: #abb5bb;
  font-size: 13px;
  min-height: 44px;
}
.arena-choice span {
  font-size: 9px;
  color: #81909b;
}
.arena-choice b {
  margin-left: auto;
  font-size: 16px;
  opacity: 0;
  font-weight: 400;
}
.arena-choice[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}
.arena-choice[aria-pressed="true"] span {
  color: var(--ink);
}
.arena-choice[aria-pressed="true"] b,
.arena-choice:hover b {
  opacity: 1;
}
.arena-preview {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 500px;
  background: var(--ink);
}
.arena-preview > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.arena-preview:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #080f15 0%, #080f15a0 22%, transparent 70%);
}
.arena-preview figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}
.arena-preview h3 {
  font-size: 45px;
  text-transform: uppercase;
  margin: 12px 0;
}
.arena-preview p {
  font-size: 14px;
  max-width: 540px;
  color: #c8ccca;
  min-height: 47px;
}
.arena-preview .eyebrow {
  font-size: 8px;
}
.range-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #d9b66e35;
  margin-top: 28px;
  padding: 25px;
}
.range-callout .crosshair {
  font-size: 38px;
  color: var(--gold);
}
.range-callout h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.range-callout p {
  font-size: 13px;
  max-width: 650px;
}
.range-callout > .eyebrow {
  margin-left: auto;
  white-space: nowrap;
  font-size: 9px;
}
.weapon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.weapon {
  border: 1px solid var(--line);
  padding: 19px;
  background: linear-gradient(130deg, #111b23, #0b141c);
  overflow: hidden;
}
.weapon > .eyebrow {
  font-size: 8px;
  text-transform: uppercase;
}
.weapon img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-block: 8px;
  transition: transform 0.3s;
}
.weapon:hover img {
  transform: scale(1.07);
}
.weapon h3 {
  font-size: 25px;
}
.arsenal-note {
  display: flex;
  align-items: center;
  gap: 35px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}
.arsenal-note .eyebrow {
  flex-shrink: 0;
  font-size: 9px;
}
.arsenal-note p {
  font-size: 13px;
}
.controls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1040px;
  margin-inline: auto;
}
.control-diagram {
  display: block;
  overflow: hidden;
  background: #05090d;
  border: 1px solid var(--line);
}
.control-diagram img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.control-diagram > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 14px 16px;
  color: #bdc2c5;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.control-diagram b {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.control-diagram:hover {
  border-color: #d9b66e70;
}
#controls .fineprint {
  margin-top: 22px;
}
.legal .controls-grid {
  max-width: none;
  margin: 20px 0 24px;
}
.gallery-section {
  background: #0e171f;
  border-block: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-image {
  display: block;
  overflow: hidden;
}
.gallery-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: filter 0.3s;
  filter: saturate(0.85);
}
.gallery-image:hover img {
  filter: saturate(1.2);
}
.gallery-image > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding-block: 14px;
  color: #bdc2c5;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.gallery-image b {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 85px;
}
.faq-section h2 {
  margin-top: 20px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  padding: 21px 33px 21px 0;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--text);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 22px;
  color: var(--gold);
  top: 14px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 14px;
  padding: 0 30px 23px 0;
}
.faq a {
  color: var(--gold);
  text-decoration: underline;
}
.join-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-block: 1px solid #d9b66e45;
  background:
    radial-gradient(ellipse at 50% 100%, #d9b66e17, transparent 70%), #111a21;
  padding-block: 90px;
}
.join-content {
  position: relative;
}
.join-content > .eyebrow {
  font-size: 9px;
  margin-bottom: 25px;
}
.join-content h2 {
  font-size: clamp(48px, 6.6vw, 94px);
  font-weight: 800;
  line-height: 0.95;
}
.join-content > p {
  margin-top: 22px;
  font-size: 16px;
}
.join-content > .button {
  margin-top: 25px;
}
.join-content > p.fineprint {
  font-size: 10px;
}
.join-stamp {
  position: absolute;
  font: 650px/0.8 var(--display);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #d9b66e04;
  pointer-events: none;
}
.footer {
  padding-block: 42px 25px;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-top .brand {
  font-size: 21px;
}
.footer-top p,
.footer-top > a:last-child {
  font-size: 9px;
  letter-spacing: 1.4px;
}
.footer-bottom {
  padding-top: 22px;
  font-size: 11px;
}
.footer-bottom nav {
  display: flex;
  gap: 25px;
  color: #b7bdc1;
}
.footer-bottom a:hover {
  color: var(--gold);
}
dialog {
  border: 1px solid #a28a53;
  background: var(--ink);
  color: var(--text);
  padding: 0;
  width: min(850px, 90vw);
  max-height: 90svh;
  box-shadow: 0 25px 140px #000;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #02070bdc;
  backdrop-filter: blur(10px);
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  background: #080f15e0;
  border: 1px solid #d9b66e70;
  color: var(--gold);
  font-size: 27px;
  line-height: 1;
  z-index: 3;
}
.dossier-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.dossier-layout > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.dossier-copy {
  padding: 65px 38px 35px;
}
.dossier-copy > .eyebrow {
  font-size: 9px;
  margin-bottom: 19px;
}
.dossier-copy h2 {
  font-size: 65px;
  margin-bottom: 18px;
}
.dossier-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
}
.dossier-status {
  margin-block: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--gold);
}
#lightbox {
  width: min(1200px, 94vw);
}
#lightbox > img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
}
#lightbox > p {
  padding: 17px 24px;
  font-size: 14px;
}
.story-page-hero {
  position: relative;
  isolation: isolate;
  padding-block: 95px;
  overflow: hidden;
}
.story-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.story-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #080f15ce;
  z-index: -1;
}
.story-page-hero h1 {
  font-size: clamp(48px, 6.5vw, 92px);
  margin-block: 25px;
}
.story-document {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
  padding-block: 90px;
}
.story-document aside {
  align-self: start;
  position: sticky;
  top: 130px;
}
.story-document aside h2 {
  font-size: 40px;
  margin-block: 20px;
}
.story-document aside p {
  font-size: 13px;
  margin-bottom: 25px;
}
.story-text p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #c1c8cd;
}
.story-text blockquote {
  font: 600 30px/1.5 var(--display);
  border-left: 2px solid var(--gold);
  color: var(--gold);
  margin: 32px 0;
  padding-left: 24px;
}
.story-text li {
  color: var(--gold);
}
.story-text > .button {
  margin-top: 25px;
}
.legal {
  max-width: 850px;
  margin-inline: auto;
}
.legal h1 {
  font-size: 65px;
  margin-bottom: 25px;
}
.legal h2 {
  font-size: 32px;
  margin: 40px 0 17px;
}
.legal p {
  margin-bottom: 16px;
}
.legal a,
.legal li a {
  color: var(--gold);
  text-decoration: underline;
}
.legal ul,
.legal ol {
  padding-left: 23px;
  color: var(--muted);
}
.legal li {
  margin-bottom: 12px;
}
.legal .muted {
  font-size: 13px;
}
.error-page {
  min-height: 65vh;
}
.error-page h1 {
  margin: 25px 0;
  font-size: 80px;
}
.error-page .button {
  margin-top: 30px;
}
.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;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 12px;
}
.skip-link:focus {
  transform: translateY(0);
}
[hidden] {
  display: none !important;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes cinematic-drift {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1650px) {
  .hero-art img {
    object-position: center 45%;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav nav {
    gap: 19px;
  }
  .nav nav > a:not(.button) {
    font-size: 11px;
  }
  .brand {
    font-size: 23px;
  }
  .brand small {
    font-size: 6px;
  }
  .nav .button {
    gap: 12px;
    padding: 10px 14px;
  }
  .section-heading > p {
    max-width: 340px;
    font-size: 16px;
  }
  .stats > div {
    gap: 14px;
    padding-inline: 20px;
  }
  .stats strong {
    font-size: 54px;
  }
  .stats span {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 94px;
  }
  .coordinates {
    font-size: 8px;
  }
  .rules-strip {
    gap: 17px;
  }
  .story-copy {
    width: 49%;
  }
  .arena-layout {
    grid-template-columns: 250px 1fr;
  }
  .gallery-grid {
    gap: 18px;
  }
  .faq-section {
    gap: 50px;
  }
  .filter-tabs {
    gap: 18px;
  }
  .character-grid {
    gap: 18px;
  }
  .character-label > span {
    font-size: 7px;
  }
}
@media (max-width: 900px) {
  .nav-inner {
    height: 75px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: 1px solid var(--line);
    color: var(--gold);
    padding: 10px 14px;
    font-size: 11px;
  }
  .nav #navigation {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 20px 32px;
    background: var(--ink);
    border-bottom: 1px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav #navigation.open {
    display: flex;
  }
  .nav #navigation > a:not(.button) {
    font-size: 15px;
    padding: 14px 0;
  }
  .nav #navigation > .button {
    margin-top: 12px;
  }
  .hero {
    height: calc(90svh - 75px);
    min-height: 690px;
  }
  .hero h1 {
    font-size: 90px;
  }
  .hero-art img {
    object-position: 60% center;
  }
  .coordinates {
    display: none;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    gap: 32px;
  }
  .section-heading > p {
    max-width: 310px;
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 48px;
  }
  .stats > div {
    display: block;
    padding: 22px;
  }
  .stats span {
    display: block;
    margin-top: 12px;
    max-width: none;
  }
  .stats strong {
    font-size: 55px;
  }
  .feature-grid {
    gap: 24px;
  }
  .feature {
    padding: 0;
  }
  .feature h3 {
    font-size: 19px;
  }
  .rules-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .story-copy {
    width: 53%;
  }
  .story-copy h2 {
    font-size: 50px;
  }
  .character-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter-tabs {
    gap: 17px;
  }
  .filter-tabs button {
    font-size: 9px;
  }
  .filter-tabs span {
    display: none;
  }
  .search input {
    width: 200px;
  }
  .arena-layout {
    grid-template-columns: 210px 1fr;
    gap: 18px;
  }
  .arena-choice {
    padding-inline: 11px;
    font-size: 12px;
  }
  .arena-preview figcaption {
    padding: 23px;
  }
  .range-callout > .eyebrow {
    display: none;
  }
  .weapon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .controls-grid {
    gap: 22px;
  }
  .faq-section {
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-section h2 {
    font-size: 46px;
  }
  .footer-top p {
    display: none;
  }
  .story-document {
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
  }
  .bulletin .wrap > span:first-child {
    font-size: 8px;
  }
  .bulletin p {
    font-size: 9px;
    letter-spacing: 1px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-inner {
    height: 70px;
  }
  .nav #navigation {
    top: 70px;
    padding-inline: 20px;
  }
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    width: 33px;
    height: 37px;
    font-size: 30px;
  }
  .brand small {
    font-size: 5.8px;
  }
  .hero {
    min-height: 770px;
    height: calc(100svh - 70px);
    max-height: 950px;
  }
  .hero-topline {
    padding-top: 20px;
  }
  .hero-topline .eyebrow {
    font-size: 8px;
  }
  .hero-art img {
    object-position: 64% top;
    width: 100%;
    height: 64%;
    object-fit: cover;
  }
  .hero-art:after {
    background:
      linear-gradient(0deg, #080f15 27%, #080f15a8 57%, #080f1520 90%),
      linear-gradient(90deg, #080f1540, transparent);
  }
  .hero-grid {
    display: none;
  }
  .hero-copy {
    padding-top: 240px;
    padding-bottom: 25px;
    margin-top: auto;
    margin-bottom: 0;
    max-width: 100%;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .hero h1 {
    font-size: clamp(63px, 15.4vw, 87px);
    line-height: 0.94;
    letter-spacing: -1px;
    margin: 0;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 19px;
    line-height: 1.65;
  }
  .cta-row {
    gap: 18px;
    margin-top: 22px;
  }
  .button {
    font-size: 10px;
    gap: 22px;
    padding: 14px 18px;
    min-height: 49px;
  }
  .text-link {
    font-size: 8px;
    gap: 9px;
    letter-spacing: 1px;
  }
  .play-icon {
    height: 24px;
    width: 24px;
    font-size: 14px;
  }
  .platform-note {
    font-size: 8px;
    letter-spacing: 1px;
    margin-top: 17px;
  }
  .hero-bottom {
    padding-block: 15px;
  }
  .scroll-cue {
    font-size: 7px;
    letter-spacing: 1px;
    gap: 7px;
  }
  .art-controls {
    gap: 6px;
  }
  .art-controls > span {
    display: none;
  }
  .art-controls button {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }
  .bulletin .wrap {
    justify-content: center;
    min-height: 51px;
  }
  .bulletin .wrap > span:first-child {
    display: none;
  }
  .bulletin p {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .bulletin .wrap > span:last-child {
    font-size: 15px;
  }
  .section {
    padding-block: 66px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 45px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.8;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
  }
  .stats > div {
    padding: 20px !important;
    display: flex;
    gap: 15px;
  }
  .stats > div:nth-child(2) {
    border-right: 0;
  }
  .stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .stats strong {
    font-size: 49px;
  }
  .stats span {
    font-size: 8px;
    max-width: 83px;
    margin: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature {
    position: relative;
    padding: 0 0 28px 52px;
    border-bottom: 1px solid var(--line);
  }
  .feature-icon {
    position: absolute;
    left: 0;
    top: -8px;
  }
  .feature h3 {
    font-size: 20px;
    margin-bottom: 11px;
  }
  .feature p {
    font-size: 14px;
    line-height: 1.8;
  }
  .feature > .eyebrow {
    margin-bottom: 11px;
  }
  .rules-strip {
    margin-top: 25px;
    padding-top: 0;
    border: 0;
    gap: 20px;
  }
  .rules-strip p {
    font-size: 11px;
  }
  .story-banner {
    padding: 270px 0 55px;
    min-height: 0;
  }
  .story-banner > img {
    height: 100%;
    object-position: 35% top;
  }
  .story-banner:after {
    background: linear-gradient(
      0deg,
      #080f15 4%,
      #080f15ed 40%,
      #080f1510 100%
    );
  }
  .story-copy {
    width: 100%;
  }
  .story-copy .eyebrow {
    font-size: 8px;
  }
  .story-copy h2 {
    font-size: 49px;
  }
  .story-copy p {
    font-size: 14px;
  }
  .roster-toolbar {
    display: block;
    margin-bottom: 20px;
  }
  .filter-tabs {
    justify-content: space-between;
    gap: 12px;
  }
  .filter-tabs button {
    font-size: 9px;
    padding-block: 15px;
  }
  .search {
    display: block;
    margin-block: 13px;
  }
  .search input {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }
  .character-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 13px;
  }
  .character h3 {
    font-size: 28px;
  }
  .character-label {
    padding: 12px 0 0;
  }
  .character-label > span {
    font-size: 7px;
    line-height: 1.65;
  }
  .portrait {
    aspect-ratio: 4/5;
  }
  .file-number {
    left: 7px;
    top: 7px;
    font-size: 6px;
    padding: 3px 5px;
  }
  .portrait-plus {
    font-size: 19px;
    right: 8px;
    bottom: 6px;
  }
  .roster-footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 18px;
    margin-top: 28px;
  }
  .roster-footer > span {
    font-size: 10px;
    text-align: center;
  }
  .fineprint {
    font-size: 10px;
  }
  .arena-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .arena-menu {
    display: flex;
    overflow-x: auto;
    scrollbar-color: var(--gold) var(--line);
    padding-bottom: 10px;
    gap: 8px;
  }
  .arena-choice {
    white-space: nowrap;
    border: 1px solid var(--line);
    font-size: 12px;
    padding: 12px;
    gap: 8px;
    min-height: 44px;
  }
  .arena-choice b {
    display: none;
  }
  .arena-preview {
    min-height: 370px;
  }
  .arena-preview figcaption {
    padding: 23px;
  }
  .arena-preview h3 {
    font-size: 40px;
  }
  .arena-preview p {
    font-size: 13px;
  }
  .arena-preview > img {
    object-position: center;
  }
  .range-callout {
    padding: 19px;
    gap: 17px;
    align-items: flex-start;
  }
  .range-callout h3 {
    font-size: 22px;
    line-height: 1.1;
  }
  .range-callout p {
    font-size: 12px;
    line-height: 1.7;
  }
  .range-callout .crosshair {
    font-size: 30px;
  }
  .weapon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .weapon {
    padding: 13px;
  }
  .weapon img {
    height: 90px;
    margin: 7px 0;
  }
  .weapon h3 {
    font-size: 24px;
  }
  .weapon .eyebrow {
    font-size: 7px;
  }
  .arsenal-note {
    display: block;
  }
  .arsenal-note p {
    margin-top: 12px;
    font-size: 12px;
  }
  .gallery-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .controls-grid {
    gap: 20px;
  }
  .control-diagram img {
    padding: 6px 2px;
  }
  .gallery-image img {
    aspect-ratio: 16/9;
  }
  .gallery-image > span {
    font-size: 12px;
    padding-block: 12px;
  }
  .faq-section {
    display: block;
  }
  .faq-section h2 {
    margin-bottom: 28px;
    font-size: 45px;
  }
  .faq summary {
    font-size: 14px;
  }
  .faq details p {
    font-size: 13px;
  }
  .join-section {
    padding-block: 67px;
  }
  .join-content > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .join-content h2 {
    font-size: 53px;
  }
  .join-content > p {
    font-size: 14px;
  }
  .join-content > .button {
    min-width: 225px;
  }
  .join-content > p.fineprint {
    font-size: 9px;
  }
  .footer {
    padding-block: 30px 22px;
  }
  .footer-top {
    gap: 15px;
    padding-bottom: 23px;
  }
  .footer-top .brand {
    font-size: 21px;
    gap: 8px;
  }
  .footer-top > a:last-child {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 17px;
    align-items: flex-start;
    font-size: 10px;
  }
  .footer-bottom nav {
    gap: 25px;
  }
  .dossier-layout {
    display: block;
  }
  .dossier-layout > img {
    height: 290px;
    min-height: 0;
    object-position: center 22%;
  }
  .dossier-copy {
    padding: 28px;
  }
  .dossier-copy h2 {
    font-size: 49px;
  }
  .dossier-copy > .eyebrow {
    font-size: 8px;
  }
  .dossier-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .dossier-status {
    font-size: 10px;
  }
  .dossier-copy .text-link {
    font-size: 11px;
  }
  .story-page-hero {
    padding-block: 65px;
  }
  .story-page-hero h1 {
    font-size: 48px;
  }
  .story-page-hero p {
    font-size: 14px;
  }
  .story-document {
    display: block;
    padding-block: 50px;
  }
  .story-document aside {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .story-text p {
    font-size: 16px;
  }
  .legal h1 {
    font-size: 49px;
  }
  .legal h2 {
    font-size: 29px;
  }
  .legal p,
  .legal li {
    font-size: 15px;
  }
  .error-page h1 {
    font-size: 59px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Keep compact phones usable without shrinking the main body copy. */
@media (max-width: 360px) {
  .nav-inner {
    gap: 8px;
  }
  .nav .brand {
    font-size: 20px;
    gap: 7px;
  }
  .nav .brand small {
    font-size: 5px;
    letter-spacing: 1.4px;
  }
  .nav .brand-mark {
    width: 28px;
    height: 33px;
  }
  .menu-toggle {
    padding: 9px;
    gap: 6px;
    font-size: 10px;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats > div {
    padding: 16px 10px !important;
    gap: 10px;
  }
  .stats strong {
    font-size: 44px;
  }
  .stats span {
    min-width: 0;
    font-size: 7px;
  }
  .join-content h2 {
    font-size: 44px;
  }
  .cta-row {
    gap: 12px;
  }
  .cta-row .button {
    padding-inline: 12px;
    gap: 15px;
  }
  .section-heading h2 {
    font-size: 41px;
  }
}
@media (max-width: 900px) {
  html:not(.js) .nav {
    position: relative;
  }
  html:not(.js) .nav-inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 18px;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .nav #navigation {
    display: flex;
    position: static;
    padding: 0;
    width: 100%;
    border: 0;
  }
}

/* Incoming artwork fades over the current scene beneath the existing gradients. */
.hero-art .hero-incoming {
  position: absolute;
  top: 0;
  left: 0;
  animation: none;
}
#hero-position {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-right: 8px;
  white-space: nowrap;
}
html:not(.js) .art-controls {
  display: none;
}
@media (max-width: 360px) {
  #hero-position {
    font-size: 7px;
    margin-right: 2px;
  }
  .art-controls {
    gap: 4px;
  }
}

.brand-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid #78643f;
}
.hero-art img {
  animation: none;
}
@media (max-width: 600px) {
  .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }
}
@media (max-width: 360px) {
  .nav .brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
}
