@charset "UTF-8";
:root {
  color-scheme: dark;
  --navy: #05213c;
  --deep: #03162a;
  --panel: #082c4d;
  --gold: #ffcc60;
  --text: #fff1d6;
  --muted: #adc6d9;
  --aqua: #52dbe4;
  --line: #254b66;
  --font: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--deep);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
button {
  border: 0;
}
a,
button {
  touch-action: manipulation;
}
.wrap {
  width: calc(100% - 96px);
  max-width: 1360px;
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--deep);
  padding: 12px 22px;
}
.skip-link:focus {
  top: 15px;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-weight: 800;
  color: var(--gold);
}
.header {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 96px);
  max-width: 1360px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 18px 0 12px;
  background: linear-gradient(110deg, #092c4df2, #03213bf5);
  border: 1px solid #4282a2;
  box-shadow:
    0 4px 0 #011325b3,
    0 8px 30px #02182e45;
  border-radius: 8px;
}
.brand {
  width: 154px;
  flex-shrink: 0;
  position: relative;
}
.brand img {
  width: 154px;
  height: 105px;
  object-fit: contain;
  filter: drop-shadow(0 4px 2px #00112677);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-weight: 700;
  font-size: 0.875rem;
  padding-block: 16px;
}
.desktop-nav a:hover,
.footer a:hover {
  color: var(--gold);
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid #4b708d;
  border-radius: 5px;
  background: #011930;
}
.language-switch button {
  padding: 6px 9px;
  min-height: 38px;
  min-width: 37px;
  background: none;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  border-radius: 2px;
}
.language-switch button[aria-pressed="true"] {
  background: #265376;
  color: white;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 13px 24px;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  transition:
    transform 0.18s,
    filter 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.button > span:last-child:not(:first-child) {
  font-size: 1.25rem;
}
.gold {
  color: #201a0d;
  background: linear-gradient(#ffeaa2 0%, #ffd56b 40%, #edaa2e 100%);
  border: 1px solid #ffeda9;
  box-shadow:
    inset 0 0 0 2px #ffe09e45,
    0 4px 0 #855f1a,
    0 7px 20px #0002;
}
.blue {
  background: linear-gradient(#15496e, #092d4e);
  border: 1px solid #5fbee7;
  box-shadow:
    inset 0 0 0 2px #4d8fbb20,
    0 4px 0 #021729;
}
.header-play {
  min-height: 44px;
  padding: 9px 21px;
  font-size: 0.875rem;
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 730px;
  height: min(860px, 92svh);
  background: #164264;
  overflow: hidden;
}
.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 48%;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #031c36f5 0%, #072742db 25%, #07274215 67%),
    linear-gradient(0deg, var(--deep), transparent 28%);
}
.hero-inner {
  height: 100%;
  min-height: 730px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 130px;
}
.hero-copy {
  max-width: 500px;
  width: 42%;
}
.hero-copy .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #bfe9ed;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--aqua);
  box-shadow: 0 0 16px var(--aqua);
  border-radius: 50%;
  flex-shrink: 0;
}
h1 {
  font-size: clamp(3rem, 5.1vw, 5.4rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 1.03;
  margin: 21px 0 24px;
  text-shadow:
    0 3px 0 #6b522d,
    0 7px 0 #01172d,
    3px 0 0 #01172d,
    -3px 0 0 #01172d;
}
h1 span,
h1 em {
  display: block;
}
h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-description {
  color: #e1edf2;
  max-width: 415px;
  font-size: 1rem;
  line-height: 1.65;
  text-shadow: 0 2px 3px #011329;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 29px;
}
.hero-actions .button {
  padding-inline: 21px;
  gap: 20px;
}
.hero-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #bad1dc;
}
.hero-scroll {
  position: absolute;
  bottom: 103px;
  right: 48px;
  border: 1px solid #cfecfb70;
  width: 38px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #07365560;
  font-size: 1.3rem;
}
.feature-ribbon {
  position: relative;
  margin-top: -78px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 9px;
  background: linear-gradient(#0c3557, #062441);
  border: 1px solid #4184a8;
  border-radius: 9px;
  box-shadow: 0 16px 40px #0003;
}
.feature {
  padding: 24px 25px;
  display: flex;
  align-items: center;
  gap: 23px;
  border-right: 1px solid #315875;
}
.feature:last-child {
  border: 0;
}
.feature > strong {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.06em;
  white-space: nowrap;
  line-height: 1;
}
.feature > strong span {
  font-size: 1.5rem;
}
.feature h2 {
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.feature p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 7px;
}
.section {
  padding-top: 80px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 27px;
}
.section-heading h2,
.world-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 10px;
}
.section-caption {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}
.hero-card {
  position: relative;
  background: #092c4b;
  border: 1px solid var(--hero-color);
  border-radius: 7px;
  padding: 0;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 24px #0006;
}
.card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.hero-card:hover img {
  transform: scale(1.05);
}
.card-number {
  position: absolute;
  left: 10px;
  top: 10px;
  color: white;
  background: #032440ab;
  border: 1px solid #ffffff4a;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.card-info {
  display: block;
  padding: 15px 13px 10px;
  background: linear-gradient(150deg, #153650, #06213e);
}
.card-info small {
  display: block;
  color: var(--hero-color);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}
.card-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  min-height: 2.4em;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-size: 0.75rem;
  color: var(--muted);
}
.card-bottom b {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--hero-color);
  color: var(--hero-color);
  font-size: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.noscript-note {
  margin-top: 15px;
  color: var(--muted);
}
.section-link {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 700;
  padding-bottom: 5px;
  white-space: nowrap;
}
.section-link:hover {
  text-decoration: underline;
}
.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}
.mode {
  --mode-color: #60dce9;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 26px 22px 17px;
  background:
    radial-gradient(ellipse at top right, #0d62773b, transparent 70%),
    linear-gradient(145deg, #0e3556, #072542);
  border: 1px solid #365c75;
  border-top: 3px solid var(--mode-color);
  border-radius: 6px;
}
.mode-quick {
  --mode-color: #ffbc58;
  background:
    radial-gradient(ellipse at top right, #96732e30, transparent 65%), #092b49;
}
.mode-siege {
  --mode-color: #d7b0ff;
  background:
    radial-gradient(ellipse at top right, #6436a54a, transparent 65%), #092b49;
}
.mode-endless {
  --mode-color: #ff9a90;
  background:
    radial-gradient(ellipse at top right, #b5473933, transparent 65%), #092b49;
}
.mode-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 10px;
}
.mode-symbol {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--mode-color);
  line-height: 1;
}
.mode-type {
  text-align: right;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #c0d4e4;
}
.mode h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.mode > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 15px 0 25px;
  line-height: 1.7;
}
.mode-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid #ffffff20;
  font-size: 0.75rem;
  color: var(--mode-color);
}
.world-section {
  margin-top: 85px;
  background: linear-gradient(120deg, #103957, #061e37);
  border-block: 1px solid #275371;
  overflow: hidden;
}
.world-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 8%;
  padding-block: 55px;
}
.world-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #52869a;
}
.world-visual img {
  width: 100%;
  height: auto;
}
.world-stamp {
  position: absolute;
  bottom: 17px;
  left: 17px;
  line-height: 1.1;
  background: #031c35e6;
  color: var(--gold);
  padding: 13px 16px;
  border: 1px solid #d9c18577;
  font-size: 1.2rem;
  font-weight: 900;
  transform: rotate(-3deg);
}
.world-stamp small {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
}
.world-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
  line-height: 1.1;
}
.world-copy h2 em {
  color: var(--gold);
  font-style: normal;
}
.world-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 24px;
  max-width: 430px;
}
.world-detail {
  display: flex;
  gap: 17px;
  margin: 26px 0 31px;
  padding: 22px 0;
  border-block: 1px solid #376078;
}
.world-detail > span {
  font-size: 1.7rem;
  color: var(--aqua);
}
.world-detail > p {
  font-size: 0.875rem;
  color: #d8e5eb;
  max-width: 380px;
}
.world-copy .button {
  font-size: 0.875rem;
  gap: 18px;
}
.closing {
  text-align: center;
  padding-block: 80px 76px;
}
.closing h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 15px 0 16px;
}
.closing > p:not(.eyebrow) {
  color: var(--muted);
}
.closing .button {
  margin-top: 27px;
  min-width: 220px;
}
.closing > small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 24px;
}
.footer {
  border-top: 1px solid #2a4b65;
  background: #021325;
}
.footer-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-block: 32px;
}
.footer-brand {
  display: block;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}
.footer-brand > span {
  color: var(--gold);
}
.footer-brand > small {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  margin-top: 7px;
}
.footer p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.footer nav {
  display: flex;
  gap: 27px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hero-dialog {
  background: #05243f;
  color: var(--text);
  border: 1px solid #599bb7;
  border-radius: 9px;
  padding: 0;
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  overflow: auto;
  box-shadow: 0 20px 100px #0008;
}
.hero-dialog::backdrop {
  background: #001022dc;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #031a31d9;
  border: 1px solid #7b9bac;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 1.8rem;
  z-index: 3;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.detail-art {
  background: #e0ddd6;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-art img {
  width: 100%;
  height: auto;
}
.detail-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 23px;
  color: var(--navy);
}
.detail-controls button {
  background: var(--navy);
  border: 1px solid #3c789b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 1.1rem;
}
.detail-controls > span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.detail-copy {
  padding: 43px 35px 28px;
}
.detail-copy h2 {
  font-size: 2.3rem;
  font-weight: 900;
  margin: 11px 0 17px;
  letter-spacing: -0.04em;
}
.detail-copy > p:not(.eyebrow) {
  font-size: 0.875rem;
  color: var(--muted);
}
.detail-stats {
  display: flex;
  gap: 35px;
  margin: 23px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}
.detail-stats dt {
  font-size: 0.75rem;
  color: var(--muted);
}
.detail-stats dd {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin: 3px 0 0;
}
.detail-ability {
  margin-top: 16px;
}
.detail-ability > small {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.detail-ability h3 {
  font-size: 1rem;
  margin-top: 5px;
}
.detail-ability p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 8px;
}
.detail-copy .button {
  margin-top: 24px;
  font-size: 0.875rem;
}
.detail-note {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 15px;
}
@media (min-width: 1600px) {
  .hero-copy {
    width: 43%;
    max-width: 560px;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-art img {
    object-position: center 43%;
  }
}
@media (max-width: 1150px) {
  .wrap,
  .header {
    width: calc(100% - 64px);
  }
  .header {
    gap: 25px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-controls {
    gap: 13px;
  }
  .hero {
    min-height: 690px;
  }
  .hero-inner {
    min-height: 690px;
  }
  .hero-copy {
    width: 49%;
  }
  .hero-grid {
    gap: 10px;
  }
  .card-info {
    padding-inline: 11px;
  }
  .card-info strong {
    font-size: 0.875rem;
  }
  .card-bottom {
    font-size: 0.75rem;
  }
  .feature {
    padding: 18px 15px;
    gap: 16px;
  }
  .feature > strong {
    font-size: 2rem;
  }
  .feature h2 {
    font-size: 0.8125rem;
  }
  .mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mode-footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .world-inner {
    gap: 6%;
  }
  .world-copy .eyebrow {
    font-size: 0.75rem;
  }
}
@media (max-width: 850px) {
  .header {
    gap: 15px;
    padding-left: 10px;
  }
  .brand,
  .brand img {
    width: 125px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .desktop-nav a {
    font-size: 0.8125rem;
  }
  .header-play {
    display: none;
  }
  .hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
  }
  .card-info strong {
    font-size: 1.1rem;
    min-height: 1.2em;
  }
  .card-bottom {
    font-size: 0.8125rem;
  }
  .feature {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .feature h2 {
    font-size: 0.875rem;
  }
  .section {
    padding-top: 62px;
  }
  .world-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
  .world-copy h2 {
    font-size: 2.3rem;
  }
  .world-copy > p:not(.eyebrow) {
    font-size: 0.875rem;
  }
  .world-detail {
    margin-block: 20px;
    padding-block: 17px;
  }
  .world-detail p {
    font-size: 0.8125rem;
  }
  .footer p {
    display: none;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: auto;
    margin-left: max(20px, env(safe-area-inset-left));
    margin-right: max(20px, env(safe-area-inset-right));
  }
  .header {
    width: calc(100% - 28px);
    top: 12px;
    height: 66px;
    padding: 0 8px 0 5px;
    gap: 10px;
  }
  .brand,
  .brand img {
    width: 119px;
  }
  .brand img {
    height: 90px;
  }
  .desktop-nav {
    display: none;
  }
  .header-controls {
    gap: 11px;
  }
  .language-switch button {
    min-width: 32px;
    min-height: 34px;
    padding-inline: 6px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 42px;
    background: none;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 20px;
    background: var(--text);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    background: #06233ff7;
    border: 1px solid #4c87a1;
    border-radius: 6px;
    box-shadow: 0 12px 25px #0005;
  }
  .mobile-nav a {
    padding: 12px 6px;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid #29516c;
  }
  .mobile-nav a:last-child {
    border: 0;
    color: var(--gold);
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 78px;
  }
  .hero-art {
    top: 75px;
    bottom: auto;
    height: 365px;
    z-index: -2;
  }
  .hero-art img {
    object-position: 70% 45%;
    object-fit: cover;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      var(--deep) 38%,
      #041b334d 57%,
      transparent 70%
    );
  }
  .hero-inner {
    padding-top: 310px;
    padding-bottom: 48px;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .hero-copy .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
  h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.5rem);
    line-height: 1.02;
    margin: 18px 0 23px;
  }
  h1 span {
    display: inline;
  }
  h1 span:first-child::after {
    content: " ";
  }
  .hero-description {
    font-size: 1rem;
    max-width: 420px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 0.875rem;
    min-height: 50px;
    padding-inline: 16px;
    gap: 17px;
  }
  .hero-note {
    font-size: 0.75rem;
    margin-top: 18px;
  }
  .hero-scroll {
    display: none;
  }
  .feature-ribbon {
    margin-top: 0;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 7px;
  }
  .feature {
    flex-direction: row;
    align-items: center;
    padding: 19px 22px;
    gap: 24px;
    border-right: 0;
    border-bottom: 1px solid #315875;
  }
  .feature > strong {
    font-size: 1.9rem;
    min-width: 60px;
  }
  .feature h2 {
    font-size: 0.875rem;
  }
  .feature p {
    font-size: 0.8125rem;
    margin-top: 5px;
  }
  .section-heading {
    display: block;
    margin-bottom: 23px;
  }
  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }
  .section-caption {
    margin-top: 14px;
    max-width: 320px;
  }
  .section-heading .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .card-info {
    padding: 12px 10px 9px;
  }
  .card-info strong {
    font-size: 0.95rem;
    min-height: 2.4em;
  }
  .card-info small {
    font-size: 0.75rem;
    letter-spacing: 0.09em;
  }
  .card-bottom {
    font-size: 0.75rem;
    margin-top: 12px;
    gap: 3px;
  }
  .card-bottom b {
    width: 23px;
    height: 23px;
    font-size: 0.875rem;
  }
  .card-number {
    font-size: 0.75rem;
    left: 7px;
    top: 7px;
  }
  .mode-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .mode {
    padding: 24px 22px 18px;
  }
  .mode-top {
    margin-bottom: 18px;
  }
  .mode h3 {
    font-size: 1.3rem;
  }
  .mode > p {
    margin: 13px 0 21px;
    font-size: 0.9375rem;
  }
  .mode-footer {
    font-size: 0.75rem;
  }
  .section-link {
    display: inline-block;
    margin-top: 18px;
  }
  .world-section {
    margin-top: 60px;
  }
  .world-inner {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 30px 43px;
  }
  .world-visual {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }
  .world-copy h2 {
    font-size: 2.5rem;
  }
  .world-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .world-copy .eyebrow {
    font-size: 0.75rem;
  }
  .world-detail p {
    font-size: 0.875rem;
  }
  .closing {
    padding-block: 58px;
  }
  .closing h2 {
    font-size: 2.7rem;
  }
  .closing .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.13em;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 27px;
    padding-bottom: max(27px, env(safe-area-inset-bottom));
    gap: 25px;
  }
  .footer nav {
    gap: 27px;
  }
  .hero-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-art {
    position: relative;
  }
  .detail-art img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
  }
  .detail-controls {
    padding: 10px 20px;
    background: #f0ece7;
  }
  .detail-copy {
    padding: 25px 24px 28px;
  }
  .detail-copy h2 {
    font-size: 2rem;
  }
  .detail-stats {
    gap: 45px;
  }
}
@media (max-width: 350px) {
  .wrap {
    margin-inline: 16px;
  }
  .hero-art {
    height: 320px;
  }
  .hero-inner {
    padding-top: 280px;
  }
  .hero-actions .button {
    padding-inline: 12px;
    gap: 10px;
  }
  .card-info strong {
    font-size: 0.875rem;
  }
  .card-bottom span {
    max-width: 90px;
  }
  .feature {
    padding-inline: 17px;
  }
  .feature h2 {
    font-size: 0.8125rem;
  }
  .feature p {
    font-size: 0.75rem;
  }
  .section-heading h2 {
    font-size: 1.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media (forced-colors: active) {
  .button,
  .hero-card,
  .language-switch button[aria-pressed="true"] {
    border: 2px solid ButtonText;
  }
  .hero-shade {
    background: Canvas;
  }
  .hero-art {
    opacity: 0.12;
  }
  h1 {
    text-shadow: none;
  }
  .feature-ribbon,
  .mode {
    border: 1px solid CanvasText;
  }
}

/* Keep the full supplied cast visible on narrow screens. */
@media (max-width: 600px) {
  .hero-art {
    height: auto;
    aspect-ratio: 1672 / 941;
  }
  .hero-art img {
    object-fit: contain;
    object-position: center;
  }
  .hero-inner {
    padding-top: calc(100vw * 0.5628 + 16px);
  }
  .feature p {
    font-size: 0.875rem;
  }
}
.mode > p {
  font-size: 1rem;
}
