:root {
  --bg: #0c1b23;
  --deep: #08161d;
  --panel: #102830;
  --cream: #f5ecd9;
  --muted: #a9bbb9;
  --gold: #e9bd73;
  --gold-light: #ffdf9d;
  --mint: #92cdb9;
  --line: rgba(229, 193, 128, 0.2);
  --max: 1280px;
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Outfit, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.55;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--gold-light);
}
img,
video {
  display: block;
  max-width: 100%;
}
figure,
p,
blockquote {
  margin: 0;
}
::selection {
  background: #9a723d;
  color: #fff7dd;
}
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(38px, 4.4vw, 64px);
}
h2 em,
h1 em {
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
}
h3 {
  font-size: 28px;
  letter-spacing: -0.025em;
}
[hidden] {
  display: none !important;
}
.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 {
  position: fixed;
  left: 12px;
  top: -100px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--deep);
  z-index: 100;
  border-radius: 5px;
}
.skip:focus {
  top: 12px;
}
.section {
  width: min(var(--max), calc(100% - 112px));
  margin-inline: auto;
  padding-block: 112px;
}
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 22px;
}
.section-lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}
.note,
.preview-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.btn span {
  font-size: 19px;
  font-weight: 400;
}
.btn-gold {
  background: linear-gradient(130deg, #f2d49a, #d9aa60);
  color: #252014;
  border-color: #e5be7b;
  box-shadow:
    inset 0 1px 0 #ffe5b8,
    0 6px 25px #010b104d;
}
.btn-gold:hover {
  color: #181711;
  background: linear-gradient(130deg, #ffe5ac, #e7b970);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.text-link span {
  color: var(--gold);
}
.text-link:hover {
  color: var(--gold);
}
/* Shared navigation and legal-page primitives. */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 100px;
  padding: 10px max(28px, calc((100vw - 1380px) / 2));
  background: rgba(8, 22, 29, 0.96);
  border-bottom: 1px solid var(--line);
}
.home > .nav {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(#08161df2, #08161d30);
  border-color: transparent;
}
.home > .nav.is-scrolled {
  position: fixed;
  background: rgba(8, 22, 29, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.brand .brand-wordmark,
.brand img {
  width: 110px;
  height: auto;
  aspect-ratio: 1200/824;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.nav-links > a {
  color: #d4dbce;
  padding-block: 12px;
}
.nav-links > a:hover,
.nav-links > [aria-current="page"] {
  color: var(--gold);
}
.nav-links .nav-cta {
  border: 1px solid #d2ab6570;
  padding: 12px 18px;
  border-radius: 4px;
  color: var(--gold-light);
  display: flex;
  gap: 18px;
  align-items: center;
  margin-inline-start: 14px;
}
.menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 8px 13px;
  background: #102830;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
}
.menu-lines {
  display: block;
  width: 18px;
  height: 10px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
/* A panoramic world with the original hero as a separate visual plane. */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  background: var(--deep);
}
.hero-landscape {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-landscape > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  opacity: 0.71;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      #07171eec 0%,
      #07171ec7 29%,
      #07171e35 68%,
      #07171e62 100%
    ),
    linear-gradient(0deg, var(--bg), transparent 35%, #07171e25 75%);
}
.hero-inner {
  width: min(var(--max), calc(100% - 112px));
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  padding: 143px 0 68px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  color: #d7ddca;
}
.tiny-star {
  color: var(--gold);
  font-size: 16px;
}
.hero-wordmark {
  width: 340px;
  height: auto;
  aspect-ratio: 1200/824;
  object-fit: contain;
  margin: -5px 0 6px -20px;
}
.hero h1 {
  font-size: clamp(43px, 4.5vw, 67px);
  line-height: 1.1;
  letter-spacing: -0.048em;
}
.hero-lede {
  max-width: 440px;
  color: #d3ddd6;
  font-size: 18px;
  line-height: 1.75;
  margin: 24px 0 29px;
}
.release-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #a9bcad;
  margin-top: 25px;
}
.release-note > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}
.hero-character {
  position: relative;
  align-self: center;
  min-width: 0;
  padding-top: 90px;
}
.hero-character > img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 600px;
  aspect-ratio: 720/776;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px #020b10a0);
  animation: hero-breathe 7s ease-in-out infinite;
}
.hero-character-glow {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  top: 80px;
  left: 0;
  background: radial-gradient(ellipse, #efbe611f, transparent 65%);
}
.hero-orbit {
  position: absolute;
  inset: 140px 5% auto;
  aspect-ratio: 1;
  border: 1px solid #cfb27040;
  border-radius: 50%;
  transform: rotate(-17deg);
}
.hero-orbit::before {
  content: "✦";
  position: absolute;
  left: 14%;
  top: 11%;
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 0 24px #f7d296;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed #cfb27020;
  border-radius: 50%;
}
.hero-character figcaption {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  margin-top: -8px;
  text-align: center;
}
.ornament {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 9px;
  opacity: 0.8;
}
.hero-character figcaption strong {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  font-size: 25px;
  color: #ebdebf;
}
.hero-character figcaption > span:last-child {
  font-size: 12px;
  color: #b8c8bd;
}
.hero-bottom {
  position: relative;
  width: min(var(--max), calc(100% - 112px));
  margin: auto;
  padding: 15px 0 35px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #c4be8c25;
  font-size: 12px;
  line-height: 1.8;
  color: #a6b7ac;
}
.hero-bottom > span:last-child {
  text-align: right;
}
.hero-bottom strong {
  color: #dbc69e;
  font-weight: 400;
}
.hero-bottom > a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
}
.chapter-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(350px, 55vw);
  margin: 28px auto -18px;
  color: var(--gold);
}
.chapter-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #bc9e5866);
  flex: 1;
}
.chapter-divider span:last-child {
  transform: scaleX(-1);
}
.chapter-divider b {
  font-size: 15px;
  font-weight: 400;
}
/* The small, optional forge interaction. */
.forge-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.forge-copy > .section-lede {
  margin-top: 26px;
}
.craft-steps {
  list-style: none;
  padding: 0;
  margin: 33px 0 0;
  display: grid;
  gap: 25px;
}
.craft-steps li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
}
.craft-steps li > span {
  color: #9b8b67;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding-top: 4px;
}
.craft-steps h3 {
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
.craft-steps p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 6px;
  max-width: 370px;
}
.forge-preview {
  position: relative;
  min-width: 0;
  border: 1px solid #c79d5350;
  background: radial-gradient(ellipse at 50% 37%, #88602b1f, transparent 53%),
    linear-gradient(155deg, #18343b, #0b1d25 75%);
  border-radius: 12px;
  box-shadow:
    0 30px 70px #030d133f,
    inset 0 0 0 7px #092028;
  border-top-color: #dfbd7c80;
}
.forge-preview::before,
.forge-preview::after {
  position: absolute;
  content: "✦";
  font-size: 15px;
  line-height: 1;
  color: #b99961;
  background: var(--bg);
  top: -8px;
  padding-inline: 5px;
}
.forge-preview::before {
  left: 20px;
}
.forge-preview::after {
  right: 20px;
}
.preview-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 25px 27px 0;
}
.preview-heading .eyebrow {
  font-size: 9px;
  margin: 0;
  letter-spacing: 0.14em;
}
.preview-badge {
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid #c7b88a38;
  border-radius: 30px;
  color: #c1c6b5;
  white-space: nowrap;
}
.forge-stage {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 20px;
}
.forge-anvil {
  width: 255px;
  height: 255px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 22px #d5893620);
  transition:
    opacity 0.25s,
    transform 0.3s;
}
.forge-halo {
  position: absolute;
  inset: 35px 17% 15px;
  background: radial-gradient(ellipse, #b782291c, transparent 65%);
  border: 1px solid #b98b4038;
  border-radius: 50%;
  transform: scaleY(0.85);
}
.forge-halo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed #dab56624;
}
.forge-spark {
  position: absolute;
  color: var(--gold);
  font-size: 11px;
  opacity: 0.65;
}
.spark-one {
  top: 26%;
  left: 27%;
}
.spark-two {
  top: 57%;
  right: 21%;
  font-size: 20px;
}
.spark-three {
  bottom: 18%;
  left: 29%;
  font-size: 7px;
}
.is-forging .forge-anvil {
  animation: forge-strike 0.68s ease-in-out infinite;
}
.is-forging .forge-spark {
  animation: spark-drift 0.9s ease-out infinite;
}
.is-forging .spark-two {
  animation-delay: 0.3s;
}
.is-forging .spark-three {
  animation-delay: 0.5s;
}
.has-result .forge-anvil {
  opacity: 0;
  transform: scale(0.75);
}
.forge-result {
  position: absolute;
  inset: 12px 28px 0;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: item-arrive 0.4s ease-out;
}
.item-art {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px #d6a33535);
  margin-bottom: 6px;
}
.item-grade {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.forge-result h3 {
  font-size: 30px;
  line-height: 1.14;
  color: var(--cream);
}
.item-lore {
  font-size: 12px;
  line-height: 1.7;
  color: #b8c3b7;
  margin: 9px 0 17px;
  max-width: 300px;
  font-style: italic;
}
.item-stats {
  display: flex;
  justify-content: center;
  gap: 23px;
  width: 100%;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.item-stats > div {
  min-width: 0;
}
.item-stats dt {
  font-size: 10px;
  color: var(--muted);
}
.item-stats dd {
  margin: 3px 0 0;
  font-size: 18px;
  color: var(--mint);
  font-weight: 500;
}
.item-decisions {
  display: flex;
  gap: 12px;
  margin-top: 17px;
}
.item-decisions button {
  font-size: 12px;
  min-height: 44px;
  border: 1px solid #9bbcab50;
  background: #23453f;
  color: #def0d4;
  border-radius: 4px;
  padding: 8px 20px;
}
.item-decisions button + button {
  background: transparent;
  border-color: #b48f534d;
  color: #d6bd90;
}
.forge-controls {
  padding: 0 35px 25px;
  text-align: center;
}
.forge-status {
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  min-height: 28px;
  color: #ebd4a8;
  line-height: 1.5;
}
.forge-controls progress {
  display: block;
  appearance: none;
  width: 100%;
  height: 2px;
  background: #263933;
  border: 0;
  margin: 16px 0 19px;
  overflow: hidden;
}
.forge-controls progress::-webkit-progress-bar {
  background: #263933;
}
.forge-controls progress::-webkit-progress-value {
  background: var(--gold);
}
.forge-controls progress::-moz-progress-bar {
  background: var(--gold);
}
.forge-controls .btn {
  width: 100%;
}
.preview-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 16px;
  color: #98ada9;
} /* An illustrated atlas with a native selector for seventeen chapters. */
.world-section {
  padding-top: 20px;
  background: linear-gradient(180deg, var(--bg), #10272d 45%, var(--bg));
}
.world-heading {
  display: flex;
  align-items: flex-end;
  gap: 70px;
  justify-content: space-between;
  padding-top: 55px;
  padding-bottom: 52px;
}
.world-heading > .section-lede {
  max-width: 370px;
  padding-bottom: 5px;
}
.atlas {
  width: min(1440px, calc(100% - 64px));
  margin: auto;
  position: relative;
  border: 1px solid #cfb37c4a;
  border-radius: 9px;
  background: #0a1d25;
  overflow: hidden;
  box-shadow: 0 25px 65px #0003;
}
.atlas-image-wrap {
  position: relative;
  height: 625px;
  overflow: hidden;
}
.atlas-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.22s;
}
.atlas-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #06171dc9, transparent 45%),
    linear-gradient(90deg, transparent 45%, #0b202759);
}
.atlas-image-label {
  position: absolute;
  bottom: 29px;
  left: 35px;
  font-family: Fraunces, Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #fff2c1;
  text-shadow: 0 2px 8px #000;
}
.atlas-details {
  position: absolute;
  inset: auto 40px 110px auto;
  width: 375px;
  padding: 32px;
  border: 1px solid #c5ae7957;
  border-radius: 6px;
  background: linear-gradient(145deg, #132d35f5, #0b2027f5);
  box-shadow: 0 18px 40px #020a124d;
  backdrop-filter: blur(12px);
}
.atlas-details > .eyebrow {
  font-size: 10px;
  margin-bottom: 15px;
}
.atlas-details h3 {
  font-size: 37px;
}
.atlas-hook {
  font-size: 15px;
  color: var(--gold);
  line-height: 1.55;
  margin-top: 12px;
}
.atlas-description {
  font-size: 14px;
  line-height: 1.8;
  color: #c0ceca;
  margin-top: 16px;
}
.atlas-goal {
  display: flex;
  gap: 13px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 20px;
}
.atlas-goal > span {
  font-size: 28px;
  color: var(--gold);
}
.atlas-goal div > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.atlas-goal strong {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-top: 3px;
}
.atlas-memory {
  font-size: 12px;
  font-style: italic;
  color: #94b5a7;
  margin-top: 17px;
  line-height: 1.6;
}
.atlas-controls {
  display: flex;
  gap: 23px;
  align-items: center;
  padding: 21px 33px;
  background: #0d232b;
  border-top: 1px solid #af956036;
}
.atlas-controls > label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 10px;
}
.atlas-controls select {
  appearance: auto;
  flex: 1;
  max-width: 410px;
  min-width: 0;
  border: 1px solid #b9a57547;
  border-radius: 4px;
  background: #152f36;
  color: var(--cream);
  padding: 12px 17px;
  font-size: 14px;
  min-height: 48px;
}
.atlas-paging {
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.atlas-paging button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 21px;
}
.atlas-paging button:hover {
  background: #355047;
}
.atlas-paging span {
  font-size: 11px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  color: #c4c4ad;
}
.campaign-notes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  padding: 46px 0 12px;
}
.campaign-notes > p {
  display: flex;
  align-items: center;
  gap: 14px;
}
.campaign-notes strong {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
}
.campaign-notes p > span {
  font-size: 12px;
  color: var(--muted);
  max-width: 110px;
  line-height: 1.6;
}
.note-star {
  font-size: 12px;
  color: #a88d594f;
}
/* Equipment forms are rendered directly from the game. */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 50px;
}
.section-heading > .section-lede {
  max-width: 390px;
}
.set-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.set-card {
  --set-glow: #f9a765;
  position: relative;
  background: linear-gradient(180deg, #152e3480, #10262d);
  border: 1px solid #8f9a8729;
  border-radius: 7px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.set-card:hover {
  border-color: #d3b37777;
  transform: translateY(-4px);
}
.set-art {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(
    ellipse at 50% 68%,
    color-mix(in srgb, var(--set-glow) 13%, transparent),
    transparent 67%
  );
}
.set-art > span {
  position: absolute;
  top: 19px;
  left: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: 19px;
  color: #c9b38260;
}
.set-art > img {
  position: absolute;
  inset: 0;
  height: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 3px 20px 0;
  filter: drop-shadow(0 15px 15px #030e1670);
}
.set-copy {
  padding: 6px 25px 25px;
}
.set-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--set-glow);
  margin-bottom: 8px;
}
.set-copy h3 {
  font-size: 31px;
}
.set-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 13px;
  min-height: 46px;
}
.set-traits {
  display: flex;
  gap: 8px;
  border-top: 1px solid #a8ad8c21;
  margin-top: 18px;
  padding-top: 14px;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: #c1cfbe;
}
.set-traits span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--set-glow);
}
.set-warden {
  --set-glow: #a8d5a1;
}
.set-zephyr {
  --set-glow: #94d5d7;
}
.set-moonveil {
  --set-glow: #c2a5e5;
}
.set-stormcaller {
  --set-glow: #8fbaec;
}
.set-prospector {
  --set-glow: #e6c67a;
}
/* Eight keyboard-friendly echo slots. */
.buff-section {
  background: radial-gradient(ellipse at 72% 45%, #1c473a66, transparent 55%),
    #10272b;
  border-block: 1px solid #9fac7d20;
}
.buff-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
  padding-block: 90px;
}
.buff-intro > .section-lede {
  margin-top: 24px;
  font-size: 17px;
}
.buff-instruction {
  color: #91aea2;
  font-size: 12px;
  line-height: 1.75;
  max-width: 335px;
  margin-top: 24px;
}
.loadout-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid #cfb4774d;
  border-radius: 8px;
  background: linear-gradient(160deg, #19383b, #10292c);
  box-shadow: inset 0 0 0 5px #0d252b;
}
.loadout-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Fraunces, Georgia, serif;
  color: #e9dab7;
  font-size: 20px;
  padding: 0 2px 18px;
}
.loadout-heading > span:last-child {
  font-family: Outfit, sans-serif;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.buff-slots {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 5px;
  padding-bottom: 23px;
  margin-bottom: 23px;
  border-bottom: 1px solid #d1b3772e;
}
.buff-slot {
  padding: 0;
  min-width: 0;
  aspect-ratio: 1;
  border: 1px dashed #bfc39033;
  border-radius: 6px;
  background: #0b22277a;
  display: grid;
  place-items: center;
  position: relative;
  color: #6e9288;
  font-size: 10px;
}
.buff-slot.filled {
  border-style: solid;
  border-color: #c4ad665f;
  background: #b29b3510;
}
.buff-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.buff-slot .slot-remove {
  position: absolute;
  right: -3px;
  top: -5px;
  background: #294c43;
  border-radius: 50%;
  color: #e7dec8;
  font-size: 10px;
  width: 15px;
  height: 15px;
  line-height: 13px;
  opacity: 0;
}
.buff-slot:hover .slot-remove,
.buff-slot:focus-visible .slot-remove {
  opacity: 1;
}
.buff-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 9px;
}
.buff-choice {
  position: relative;
  min-width: 0;
  padding: 3px 2px 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #0b23274d;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 10px;
  line-height: 1.4;
  color: #b8ccc0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.buff-choice > img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.buff-choice[aria-pressed="true"] {
  border-color: #cbae637f;
  background: #a5bd6f13;
  color: var(--gold-light);
}
.buff-choice[aria-pressed="true"]::after {
  content: "✓";
  position: absolute;
  top: 1px;
  right: 5px;
  font-size: 10px;
  color: var(--gold);
}
.buff-choice:hover {
  background: #94bb8923;
}
.buff-status {
  font-size: 11px;
  line-height: 1.7;
  color: #c0cdb9;
  margin-top: 21px;
  min-height: 37px;
}
.premium-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 0;
  padding-top: 17px;
  border-top: 1px solid #d2b37426;
  font-size: 10px;
  line-height: 1.6;
  color: #95afa2;
}
.premium-note > img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.story-section {
  padding-top: 118px;
}
.story-intro {
  text-align: center;
  max-width: 695px;
  margin: auto;
}
.story-intro > .section-lede {
  max-width: 670px;
  margin: 26px auto 0;
}
.story-small {
  font-size: 14px;
  color: #82a396;
  margin-top: 17px;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px;
  margin-top: 52px;
}
.person-card {
  text-align: center;
}
.person-portrait {
  position: relative;
  width: 240px;
  height: 240px;
  max-width: 100%;
  margin: auto auto 23px;
  background: radial-gradient(ellipse, #44695435, transparent 65%);
}
.person-portrait::before {
  position: absolute;
  content: "";
  border: 1px solid #cbb1733d;
  width: 192px;
  height: 192px;
  max-width: 90%;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
}
.person-portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.person-card > .eyebrow {
  font-size: 9px;
  letter-spacing: 0.15em;
  margin-bottom: 9px;
}
.person-card h3 {
  font-size: 29px;
}
.person-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 17px auto 0;
  max-width: 295px;
}
.person-card blockquote {
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  color: #d3bd92;
  margin: 21px auto 0;
  max-width: 280px;
}
.story-footer {
  text-align: center;
  margin-top: 56px;
  font-size: 12px;
  line-height: 1.8;
  color: #9db3a6;
}
.story-footer > span {
  display: block;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 16px;
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  padding-top: 87px;
}
.faq-section .section-lede {
  font-size: 16px;
  margin: 23px 0;
  max-width: 350px;
}
.faq-list {
  border-top: 1px solid #a9b99538;
}
.faq-list details {
  border-bottom: 1px solid #a9b99538;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  color: #e4e5ce;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  color: var(--gold-light);
}
.faq-list details > p {
  font-size: 14px;
  line-height: 1.85;
  padding: 0 22px 25px 0;
  color: var(--muted);
}
.closing {
  position: relative;
  max-width: 1440px;
  min-height: 590px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  isolation: isolate;
}
.closing-art {
  position: relative;
}
.closing-art > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mask-image: linear-gradient(to right, #000 85%, transparent);
}
.closing-copy {
  position: relative;
  margin-left: -15px;
  padding: 50px 50px 50px 0;
}
.closing-copy h2 {
  font-size: clamp(35px, 3.7vw, 56px);
}
.closing-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 24px 0 28px;
  font-size: 17px;
  line-height: 1.8;
}
.closing-note {
  font-size: 11px;
  color: #8aa698;
  display: block;
  margin-top: 17px;
}
.site-footer {
  position: relative;
  width: min(var(--max), calc(100% - 112px));
  margin: 50px auto 0;
  padding: 35px 0 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #859c96;
}
.footer-top {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.footer-top p {
  font-size: 13px;
  flex: 1;
}
.footer-top p > a {
  color: #c6b78e;
}
.footer-top .brand img {
  width: 92px;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #b8c1b3;
  font-size: 12px;
}
.back-top > span {
  color: var(--gold);
  font-size: 19px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid #c4b07621;
  flex-wrap: wrap;
}
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.site-footer nav a {
  color: #adbaac;
}
.site-footer nav a:hover {
  color: var(--gold);
}
.site-footer > p {
  margin: 10px 0;
}
.site-footer > nav {
  margin-block: 14px;
}
.legal-page {
  width: min(800px, calc(100% - 64px));
  margin: auto;
  padding: 70px 0 85px;
}
.legal-page h1 {
  font-size: clamp(37px, 5vw, 57px);
  margin-bottom: 24px;
  color: var(--gold-light);
}
.legal-page h2 {
  font-size: 28px;
  margin: 36px 0 13px;
}
.legal-page h3 {
  font-size: 22px;
  margin: 24px 0 10px;
}
.legal-page p,
.legal-page li {
  color: #bdceca;
  font-size: 16px;
  line-height: 1.85;
}
.legal-page p {
  margin: 15px 0;
}
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.legal-page .btn {
  text-decoration: none;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}
.legal-page th,
.legal-page td {
  text-align: left;
  border: 1px solid var(--line);
  padding: 11px 13px;
  vertical-align: top;
}
.legal-page blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  color: var(--muted);
}
@keyframes hero-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes forge-strike {
  0%,
  100% {
    transform: rotate(0) scale(1);
  }
  35% {
    transform: rotate(-5deg) scale(1.035);
  }
  54% {
    transform: rotate(3deg) scale(0.98);
  }
}
@keyframes spark-drift {
  0% {
    transform: translateY(9px) scale(0.5);
    opacity: 0.1;
  }
  30% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-26px) scale(0.6);
    opacity: 0;
  }
}
@keyframes item-arrive {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1700px) {
  .hero-inner {
    padding-top: 162px;
    padding-bottom: 90px;
  }
  .hero {
    min-height: 950px;
  }
  .hero-landscape > img {
    object-position: center 60%;
  }
}
@media (max-width: 1150px) {
  .section,
  .hero-inner,
  .hero-bottom,
  .site-footer {
    width: calc(100% - 72px);
  }
  .nav {
    padding-inline: 30px;
    gap: 20px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-links .nav-cta {
    font-size: 12px;
    gap: 12px;
    margin-left: 0;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-wordmark {
    width: 290px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-character {
    padding-top: 65px;
  }
  .hero-orbit {
    top: 120px;
  }
  .forge-section {
    gap: 45px;
  }
  .world-heading {
    gap: 40px;
  }
  .world-heading > .section-lede {
    max-width: 310px;
    font-size: 16px;
  }
  .atlas {
    width: calc(100% - 40px);
  }
  .atlas-details {
    right: 25px;
    width: 340px;
    padding: 27px;
    bottom: 107px;
  }
  .atlas-image-wrap {
    height: 590px;
  }
  .atlas-controls {
    padding-inline: 24px;
  }
  .set-grid {
    gap: 16px;
  }
  .set-art {
    height: 235px;
  }
  .set-copy {
    padding-inline: 20px;
  }
  .buff-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .buff-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0 45px;
    align-items: center;
  }
  .buff-intro > .eyebrow {
    grid-column: 1/-1;
  }
  .buff-intro > .section-lede {
    margin: 0;
  }
  .buff-instruction {
    grid-column: 2;
    margin-top: 15px;
    max-width: 100%;
  }
  .loadout-panel {
    max-width: 850px;
    width: 100%;
    margin: auto;
    padding: 28px 35px;
  }
  .buff-options {
    gap: 12px;
  }
  .buff-choice {
    font-size: 12px;
  }
  .buff-choice > img {
    width: 70px;
    height: 70px;
  }
  .buff-slots {
    gap: 10px;
  }
  .buff-slot {
    max-height: 80px;
  }
  .people-grid {
    gap: 26px;
  }
  .faq-section {
    gap: 60px;
  }
  .closing-copy {
    padding-right: 36px;
  }
  .closing-copy h2 {
    font-size: 44px;
  }
}
@media (max-width: 850px) {
  html {
    scroll-padding-top: 100px;
  }
  .nav {
    min-height: 88px;
    padding: 7px 22px;
  }
  .brand .brand-wordmark,
  .brand img {
    width: 98px;
  }
  .menu {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 20px;
    background: #0e252e;
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: 0 20px 35px #020b1370;
  }
  .nav-links > a {
    padding: 14px 3px;
    font-size: 15px;
  }
  .nav-links .nav-cta {
    margin: 8px 0 0;
    padding: 14px;
    font-size: 13px;
    justify-content: space-between;
  }
  .hero {
    min-height: 0;
  }
  .hero-inner {
    padding-top: 126px;
    gap: 0;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.15em;
    gap: 9px;
  }
  .hero-wordmark {
    width: 260px;
    margin-left: -14px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-lede {
    font-size: 16px;
    margin-top: 20px;
  }
  .hero .actions {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero .text-link {
    padding-block: 10px;
  }
  .hero-character {
    padding-top: 100px;
    margin-right: -28px;
  }
  .hero-orbit {
    inset: 140px 0 auto;
  }
  .hero-character figcaption strong {
    font-size: 20px;
  }
  .hero-character figcaption > span:last-child {
    font-size: 10px;
  }
  .hero-bottom {
    font-size: 10px;
  }
  .section {
    padding-block: 75px;
  }
  .forge-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .forge-copy {
    max-width: 650px;
  }
  .forge-copy .section-lede {
    max-width: 620px;
  }
  .craft-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }
  .craft-steps li {
    display: block;
  }
  .craft-steps li > span {
    display: block;
    margin-bottom: 9px;
  }
  .craft-steps h3 {
    font-size: 15px;
  }
  .craft-steps p {
    font-size: 12px;
  }
  .forge-preview {
    width: 100%;
    max-width: 590px;
    margin: auto;
  }
  .forge-stage {
    min-height: 390px;
  }
  .world-heading {
    display: block;
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .world-heading > .section-lede {
    max-width: 540px;
    margin-top: 22px;
  }
  .atlas-details {
    position: relative;
    inset: auto;
    width: auto;
    margin: -55px 24px 0;
    padding: 26px;
    backdrop-filter: none;
  }
  .atlas-image-wrap {
    height: 390px;
  }
  .atlas-image-label {
    bottom: 68px;
    left: 28px;
    font-size: 11px;
  }
  .atlas-details h3 {
    font-size: 34px;
  }
  .atlas-details > .eyebrow {
    margin-bottom: 10px;
  }
  .atlas-hook {
    margin-top: 9px;
  }
  .atlas-description {
    max-width: 640px;
  }
  .atlas-goal {
    margin-top: 16px;
    padding-top: 15px;
  }
  .atlas-memory {
    margin-top: 14px;
  }
  .atlas-controls {
    margin-top: 24px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .atlas-controls > label {
    width: 100%;
    font-size: 9px;
  }
  .atlas-controls select {
    font-size: 13px;
  }
  .atlas-paging {
    gap: 13px;
  }
  .atlas-paging button {
    width: 44px;
    height: 44px;
  }
  .atlas-paging span {
    font-size: 10px;
  }
  .campaign-notes {
    padding-block: 29px 0;
    gap: 29px;
  }
  .campaign-notes > p {
    gap: 7px;
  }
  .campaign-notes strong {
    font-size: 27px;
  }
  .campaign-notes p > span {
    font-size: 10px;
    max-width: 90px;
  }
  .campaign-notes > .note-star {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > .section-lede {
    margin-top: 22px;
    max-width: 540px;
  }
  .set-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .set-art {
    height: 255px;
  }
  .buff-intro {
    display: block;
  }
  .buff-intro > .section-lede {
    margin-top: 23px;
    max-width: 600px;
  }
  .buff-instruction {
    max-width: 480px;
  }
  .buff-choice > img {
    width: 60px;
    height: 60px;
  }
  .buff-choice {
    font-size: 10px;
  }
  .loadout-panel {
    padding: 25px;
  }
  .people-grid {
    gap: 24px;
  }
  .person-portrait {
    height: 185px;
    width: 185px;
  }
  .person-portrait::before {
    width: 150px;
    height: 150px;
    top: 16px;
  }
  .person-card h3 {
    font-size: 25px;
  }
  .person-card > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .person-card > p:not(.eyebrow) {
    font-size: 12px;
  }
  .person-card blockquote {
    font-size: 15px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-section .section-lede {
    max-width: 540px;
  }
  .faq-section .text-link {
    padding-top: 0;
  }
  .closing {
    min-height: 0;
  }
  .closing-copy {
    margin-left: -20px;
    padding: 40px 25px 40px 0;
  }
  .closing-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .closing-copy h2 {
    font-size: 35px;
  }
  .closing-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-block: 18px;
  }
  .closing-copy .btn {
    font-size: 12px;
    padding-inline: 17px;
    gap: 14px;
  }
  .closing-note {
    font-size: 9px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top p {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 15px;
  }
  .footer-bottom > p:last-child {
    display: none;
  }
  .site-footer nav {
    gap: 17px;
  }
}
@media (max-width: 590px) {
  .section,
  .hero-inner,
  .hero-bottom,
  .site-footer {
    width: calc(100% - 40px);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 119px;
    padding-bottom: 14px;
    text-align: center;
  }
  .hero-copy > .eyebrow {
    justify-content: center;
    letter-spacing: 0.13em;
  }
  .hero-wordmark {
    width: 260px;
    margin: -2px auto 5px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.1;
  }
  .hero-lede {
    font-size: 16px;
    max-width: 345px;
    margin: 22px auto 25px;
    line-height: 1.7;
  }
  .hero .actions {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 21px;
  }
  .hero .btn {
    font-size: 13px;
    min-height: 50px;
    padding: 13px 17px;
    gap: 18px;
  }
  .hero .text-link {
    font-size: 12px;
    gap: 11px;
  }
  .release-note {
    justify-content: center;
    font-size: 10px;
    margin-top: 20px;
  }
  .hero-character {
    padding: 0;
    margin: 25px auto 0;
    max-width: 330px;
    width: 85%;
  }
  .hero-character > img {
    max-height: 350px;
    width: 100%;
  }
  .hero-character-glow {
    top: 5px;
  }
  .hero-orbit {
    inset: 35px 1% auto;
  }
  .hero-character figcaption {
    margin-top: -14px;
  }
  .hero-character figcaption strong {
    font-size: 22px;
  }
  .hero-character figcaption > .ornament {
    font-size: 11px;
    letter-spacing: 6px;
  }
  .hero-character figcaption > span:last-child {
    font-size: 11px;
  }
  .hero-landscape > img {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #07171ec7 0%,
      #07171eaa 40%,
      #07171e33 70%,
      var(--bg) 100%
    );
  }
  .hero-bottom {
    margin-top: 28px;
    padding-bottom: 22px;
    gap: 12px;
    font-size: 9px;
  }
  .hero-bottom > a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .chapter-divider {
    margin-top: 14px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.17em;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 39px;
    line-height: 1.1;
  }
  .section-lede {
    font-size: 16px;
    line-height: 1.8;
  }
  .section {
    padding-block: 66px;
  }
  .forge-section {
    gap: 31px;
  }
  .forge-copy > .section-lede {
    margin-top: 20px;
  }
  .craft-steps {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 27px;
  }
  .craft-steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
  .craft-steps h3 {
    font-size: 16px;
  }
  .craft-steps p {
    font-size: 13px;
  }
  .craft-steps li > span {
    padding-top: 5px;
    font-size: 10px;
  }
  .preview-heading {
    padding: 24px 18px 0;
    gap: 9px;
  }
  .preview-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .preview-badge {
    font-size: 8px;
    padding: 4px 7px;
  }
  .forge-stage {
    min-height: 395px;
  }
  .forge-anvil {
    width: 235px;
    height: 235px;
  }
  .forge-controls {
    padding-inline: 24px;
  }
  .forge-status {
    font-size: 16px;
  }
  .forge-result {
    inset: 15px 21px 0;
  }
  .forge-result h3 {
    font-size: 27px;
  }
  .item-lore {
    font-size: 11px;
  }
  .item-stats {
    gap: 20px;
  }
  .item-stats dt {
    font-size: 9px;
  }
  .item-stats dd {
    font-size: 17px;
  }
  .item-grade {
    font-size: 9px;
  }
  .atlas {
    width: calc(100% - 24px);
    border-radius: 6px;
  }
  .world-heading {
    padding-top: 20px;
    padding-bottom: 27px;
  }
  .world-heading > .section-lede {
    font-size: 15px;
    margin-top: 18px;
  }
  .atlas-image-wrap {
    height: 290px;
  }
  .atlas-image-label {
    left: 20px;
    bottom: 62px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .atlas-details {
    margin: -47px 13px 0;
    padding: 24px 21px;
  }
  .atlas-details h3 {
    font-size: 30px;
  }
  .atlas-details > .eyebrow {
    font-size: 9px;
  }
  .atlas-hook {
    font-size: 14px;
  }
  .atlas-description {
    font-size: 13px;
    margin-top: 12px;
  }
  .atlas-goal strong {
    font-size: 12px;
  }
  .atlas-memory {
    font-size: 11px;
  }
  .atlas-controls {
    padding: 20px 17px;
    gap: 10px;
  }
  .atlas-controls select {
    flex-basis: 100%;
    max-width: none;
    min-height: 46px;
  }
  .atlas-paging {
    width: 100%;
    justify-content: space-between;
    margin-top: 5px;
  }
  .atlas-paging button {
    width: 42px;
    height: 42px;
  }
  .campaign-notes {
    gap: 18px;
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 0;
  }
  .campaign-notes > p {
    flex-direction: column;
    gap: 0;
    text-align: center;
    flex: 1;
  }
  .campaign-notes strong {
    font-size: 26px;
  }
  .campaign-notes p > span {
    font-size: 10px;
    max-width: 98px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .set-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .set-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
  .set-art {
    height: 228px;
    min-width: 0;
  }
  .set-art > span {
    font-size: 14px;
    top: 13px;
    left: 14px;
  }
  .set-art > img {
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .set-copy {
    padding: 22px 20px 22px 0;
    min-width: 0;
  }
  .set-copy h3 {
    font-size: 29px;
  }
  .set-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .set-copy > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 10px;
    min-height: 0;
  }
  .set-traits {
    font-size: 9px;
    gap: 6px;
    padding-top: 12px;
    margin-top: 13px;
    flex-wrap: wrap;
  }
  .buff-inner {
    gap: 26px;
  }
  .buff-intro > .section-lede {
    font-size: 16px;
  }
  .loadout-panel {
    padding: 21px 16px;
  }
  .loadout-heading {
    font-size: 20px;
    padding-bottom: 16px;
  }
  .buff-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 19px;
    margin-bottom: 18px;
  }
  .buff-slot {
    height: 62px;
    aspect-ratio: auto;
  }
  .buff-slot img {
    width: 62px;
    height: 62px;
  }
  .buff-slot .slot-remove {
    opacity: 1;
    right: 3px;
    top: 3px;
  }
  .buff-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px 7px;
  }
  .buff-choice > img {
    width: 56px;
    height: 56px;
  }
  .buff-choice {
    font-size: 9px;
    padding-bottom: 8px;
    min-height: 83px;
  }
  .buff-status {
    font-size: 11px;
    min-height: 40px;
  }
  .premium-note {
    font-size: 10px;
  }
  .people-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 35px;
  }
  .person-card {
    max-width: 320px;
    margin: auto;
  }
  .person-portrait {
    width: 225px;
    height: 225px;
    margin-bottom: 19px;
  }
  .person-portrait::before {
    width: 185px;
    height: 185px;
    top: 20px;
  }
  .person-card h3 {
    font-size: 30px;
  }
  .person-card > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .person-card > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 12px;
  }
  .person-card blockquote {
    font-size: 18px;
    margin-top: 17px;
  }
  .story-footer {
    margin-top: 42px;
    font-size: 11px;
    max-width: 270px;
    margin-inline: auto;
  }
  .story-small {
    font-size: 13px;
    line-height: 1.8;
  }
  .story-intro > .section-lede {
    font-size: 16px;
    margin-top: 22px;
  }
  .faq-section {
    gap: 27px;
  }
  .faq-section .section-lede {
    font-size: 15px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 23px 0;
    gap: 18px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 3px;
  }
  .closing {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding-bottom: 35px;
  }
  .closing-art {
    width: 100%;
    max-width: 480px;
    margin-top: -15px;
  }
  .closing-art > img {
    mask-image: linear-gradient(#000 82%, transparent);
  }
  .closing-copy {
    padding: 0 22px;
    margin: -38px 0 0;
    z-index: 2;
  }
  .closing-copy h2 {
    font-size: 38px;
  }
  .closing-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .closing-copy > p:not(.eyebrow) {
    font-size: 16px;
    margin: 23px 0;
  }
  .closing-copy .btn {
    font-size: 14px;
    padding: 16px 23px;
  }
  .closing-note {
    font-size: 11px;
    margin-top: 18px;
  }
  .site-footer {
    margin-top: 30px;
    padding-top: 25px;
  }
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }
  .footer-top p {
    flex-basis: 60%;
    font-size: 11px;
    flex-grow: 0;
    text-align: left;
  }
  .footer-top .brand img {
    width: 83px;
  }
  .back-top {
    font-size: 11px;
    flex-basis: 100%;
    justify-content: center;
  }
  .footer-bottom {
    justify-content: center;
    gap: 17px;
    text-align: center;
  }
  .footer-bottom nav {
    order: -1;
    flex-basis: 100%;
    justify-content: center;
    gap: 23px;
    font-size: 11px;
  }
  .footer-bottom p {
    font-size: 10px;
  }
  .legal-page {
    width: calc(100% - 40px);
    padding-top: 46px;
  }
  .legal-page h1 {
    font-size: 39px;
  }
  .legal-page h2 {
    font-size: 26px;
  }
  .legal-page p,
  .legal-page li {
    font-size: 15px;
  }
  .legal-page ul {
    padding-left: 22px;
  }
}
@media (max-width: 359px) {
  .hero .actions {
    flex-direction: column;
    gap: 7px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-wordmark {
    width: 230px;
  }
  .hero-bottom {
    font-size: 8px;
  }
  .hero-bottom > a {
    width: 31px;
    height: 31px;
  }
  .item-stats {
    gap: 12px;
  }
  .item-stats dt {
    font-size: 8px;
  }
  .set-card {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .set-copy h3 {
    font-size: 25px;
  }
  .set-copy {
    padding-right: 15px;
  }
  .set-copy .eyebrow {
    font-size: 7px;
  }
  .buff-choice {
    font-size: 8px;
  }
  .buff-choice > img {
    width: 49px;
    height: 49px;
  }
  .preview-heading .eyebrow {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-character > img {
    transform: none;
  }
  .btn-gold:hover,
  .set-card:hover {
    transform: none;
  }
}
.atlas-load-note {
  font-size: 12px;
  color: var(--muted);
  padding: 0 24px 20px;
}
.page-hidden *,
.page-hidden *::before,
.page-hidden *::after {
  animation-play-state: paused !important;
}
@media (max-width: 850px) {
  html:not(.has-js) .menu {
    display: none;
  }
  html:not(.has-js) .nav {
    position: relative;
    flex-wrap: wrap;
  }
  html:not(.has-js) .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  html:not(.has-js) .nav-links .nav-cta {
    margin: 0;
  }
}
