:root {
  --ink: #091a1e;
  --surface: #122b2f;
  --paper: #f2e8d3;
  --muted: #a9bdb7;
  --gold: #e9c581;
  --mint: #80ccb4;
  --line: #739a8c38;
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 84% 10%, #21595155, transparent 30%), var(--ink);
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
summary,
a {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 5px;
}
button[hidden],
[hidden] {
  display: none !important;
}
img {
  max-width: 100%;
  display: block;
}
p {
  color: var(--muted);
  line-height: 1.75;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 24px;
  line-height: 1.3;
}
.section {
  max-width: 1220px;
  margin: auto;
  padding: 88px 42px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
}
.skip:focus {
  top: 10px;
}
.masthead {
  max-width: 1380px;
  min-height: 92px;
  padding: 20px 42px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: auto;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.24em;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.wordmark img {
  width: 32px;
  height: 32px;
}
.masthead nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.masthead nav a:hover {
  color: var(--paper);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.languages {
  position: relative;
  font-size: 12px;
}
.languages summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 0;
  min-width: 35px;
}
.languages summary::-webkit-details-marker {
  display: none;
}
.languages > div {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 135px;
  background: #18383d;
  border: 1px solid var(--line);
  padding: 9px;
  box-shadow: 0 12px 28px #0005;
}
.languages a {
  display: block;
  padding: 10px;
}
.languages a:hover,
.languages a[aria-current] {
  background: #8ec0a41f;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 17px 26px;
  background: linear-gradient(#f1d49a, #d5ad65);
  color: #172823;
  border: 1px solid #f7dbab;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  box-shadow:
    0 4px 0 #7e5d2d,
    0 15px 30px #0002;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #7e5d2d,
    0 18px 35px #0003;
}
.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #7e5d2d;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button.small {
  min-height: 42px;
  padding: 10px 17px;
  gap: 16px;
  font-size: 11px;
}
.button.secondary {
  color: var(--paper);
  background: #163137;
  border-color: #88b3a84d;
  box-shadow: none;
}
.menu-toggle {
  display: none;
}
.eyebrow {
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow i,
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 14px #80ccb455;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 66px;
  min-height: 760px;
}
.hero h1 {
  font-size: clamp(58px, 6.2vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 28px 0 26px;
  max-width: 640px;
}
.hero h1 em {
  font-weight: 400;
  color: var(--gold);
}
.hero h2 {
  font:
    18px/1.5 Arial,
    sans-serif;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.hero-copy > p {
  font-size: 15px;
  max-width: 420px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
  margin: 30px 0 22px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  color: var(--paper);
}
.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.hero small {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-frame {
  position: relative;
  width: 335px;
  border: 1px solid #c6a669a0;
  border-radius: 13px;
  padding: 6px;
  background: #0f2026;
  box-shadow:
    0 35px 80px #0007,
    0 0 80px #57968418;
  transform: rotate(3deg);
  z-index: 2;
}
.duel-screen {
  border-radius: 7px;
  width: 100%;
  height: auto;
}
.frame-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: 0.16em;
  color: #dccd9b;
  padding: 9px 10px 13px;
}
.frame-label > span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 6px;
}
.frame-caption {
  display: block;
  text-align: center;
  font-size: 8px;
  line-height: 1.5;
  padding: 10px 3px 5px;
  color: var(--muted);
}
.orbital {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid #bfa96a30;
  box-shadow:
    0 0 0 32px #75917d08,
    0 0 0 33px #d6c69314,
    0 0 0 75px #70977f07;
  transform: rotate(-25deg);
}
.orbital:before,
.orbital:after {
  content: "✧";
  position: absolute;
  color: #ddc791;
  font: 28px Georgia;
  left: 20%;
  top: 7%;
  text-shadow: 0 0 20px #e9c58188;
}
.orbital:after {
  left: 85%;
  top: 82%;
  font-size: 16px;
}
.floating-spell {
  position: absolute;
  border: 3px solid #d0b16e;
  border-radius: 10px;
  width: 92px;
  height: 115px;
  object-fit: cover;
  box-shadow: 0 12px 35px #0007;
  z-index: 4;
}
.spell-one {
  left: -10px;
  top: 95px;
  transform: rotate(-15deg);
  animation: float-one 7s ease-in-out infinite;
}
.spell-two {
  right: -4px;
  bottom: 90px;
  transform: rotate(15deg);
  animation: float-two 8s ease-in-out infinite;
}
.visual-number {
  position: absolute;
  font: 110px Georgia;
  color: #86a9930c;
  right: 0;
  top: 18px;
}
.truth-strip {
  max-width: 1136px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.truth-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}
.truth-strip > div:last-child {
  border: 0;
}
.truth-strip span {
  font: italic 22px Georgia;
  color: var(--gold);
}
.truth-strip strong {
  font-size: 11px;
  font-weight: 400;
  color: #d2e0d5;
}
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
.section-head h2 {
  max-width: 650px;
  margin-bottom: 16px;
}
.section-head p:not(.eyebrow) {
  max-width: 590px;
  font-size: 14px;
}
.section-number {
  font: italic 60px Georgia;
  color: #78998b42;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.steps article {
  padding: 30px 28px;
  border-top: 1px solid #c7ae703b;
  background: linear-gradient(#20413c3f, transparent);
  position: relative;
}
.step-icon {
  font: 55px Georgia;
  color: #dbc695;
  display: block;
  margin-bottom: 25px;
}
.steps small {
  position: absolute;
  right: 25px;
  top: 39px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.steps h3 {
  font-size: 25px;
}
.steps p {
  font-size: 13px;
  margin: 0;
}
.spellbook {
  padding-top: 45px;
}
.spell-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.spell-filters button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 30px;
  font-size: 11px;
  padding: 11px 19px;
  min-height: 40px;
}
.spell-filters button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.spell-filters span {
  opacity: 0.55;
  margin-left: 5px;
}
.spells {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}
.spell-card {
  min-width: 0;
  border: 1px solid #a28e5647;
  background: #122b2f;
  padding: 7px;
  border-radius: 8px;
  text-align: left;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.spell-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px #0004;
  border-color: #e9c5819c;
}
.spell-art {
  display: block;
  position: relative;
  border: 1px solid #a28e565a;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1.1;
}
.spell-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.spell-card:hover img {
  transform: scale(1.08);
}
.spell-art:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 15px #0007;
}
.spell-art i {
  position: absolute;
  right: 7px;
  bottom: 2px;
  color: #ffe7af;
  font-size: 22px;
  z-index: 1;
  text-shadow: 0 2px 4px #000;
}
.spell-name {
  font: 14px/1.25 Georgia;
  display: block;
  padding: 12px 2px 9px;
  min-height: 57px;
}
.spell-family {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 3px 2px 6px;
}
.family-arcane {
  border-color: #a488be5c;
}
.family-wind {
  border-color: #609f986b;
}
.family-ember {
  border-color: #b27b6161;
}
.family-gold {
  border-color: #b3a5635e;
}
.spell-dialog {
  max-width: 440px;
  width: calc(100% - 32px);
  max-height: calc(100dvh - 50px);
  overflow: auto;
  padding: 32px;
  background: #143238;
  border: 1px solid #b99b64;
  border-radius: 16px;
  color: var(--paper);
  box-shadow: 0 30px 100px #000b;
  text-align: center;
}
.spell-dialog::backdrop {
  background: #031215db;
  backdrop-filter: blur(6px);
}
.spell-dialog > img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 2px solid #c4a364;
  border-radius: 12px;
  margin: 8px auto 20px;
  box-shadow: 0 15px 40px #0005;
}
.spell-dialog h2 {
  font-size: 36px;
}
.spell-dialog .eyebrow {
  justify-content: center;
}
.spell-dialog .button {
  margin-top: 10px;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #0a2029;
  color: var(--paper);
  border-radius: 50%;
  font-size: 24px;
}
.legacy {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.legacy > div > p {
  font-size: 14px;
  max-width: 490px;
}
.legacy-features > div {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}
.legacy-features > div > span {
  font-size: 28px;
  color: var(--gold);
}
.legacy-features h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.legacy-features p {
  font-size: 13px;
  margin: 0;
}
.legacy-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 410px;
  justify-content: center;
  background: radial-gradient(ellipse, #34604938, transparent 70%);
}
.medallion {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px double #e8c979;
  box-shadow:
    0 0 0 10px #b29b5d10,
    0 0 0 11px #ddb96a3d,
    0 0 0 29px #ddb96a0a,
    0 0 60px #bba36a17;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #506451, #14272d);
}
.medallion > span {
  font: 95px Georgia;
  line-height: 1;
  color: #f8d995;
  filter: drop-shadow(0 4px 2px #0006);
}
.medallion > b {
  position: absolute;
  bottom: -16px;
  background: #d7b66f;
  border: 3px solid #192e2e;
  color: #122629;
  border-radius: 30px;
  padding: 6px 15px;
  font: 18px Georgia;
}
.legacy-line {
  font-size: 9px;
  letter-spacing: 0.23em;
  color: var(--gold);
  margin: 45px 0 25px;
}
.legacy-cards {
  display: flex;
}
.legacy-cards img {
  width: 85px;
  height: 105px;
  border: 2px solid #d7b66f94;
  border-radius: 7px;
  box-shadow: 0 8px 25px #0005;
  object-fit: cover;
}
.legacy-cards img:first-child {
  transform: rotate(-12deg) translate(5px, 9px);
}
.legacy-cards img:last-child {
  transform: rotate(12deg) translate(-5px, 9px);
}
.legacy-cards img:nth-child(2) {
  position: relative;
  z-index: 2;
}
.fair-play {
  max-width: 1136px;
  margin: 20px auto;
  border: 1px solid #bba1664d;
  background: linear-gradient(110deg, #71633b22, #1a3f3626);
  padding: 42px 52px;
  display: flex;
  gap: 44px;
  align-items: center;
  border-radius: 8px;
}
.fair-play > span {
  font: 90px Georgia;
  color: var(--gold);
}
.fair-play h2 {
  font-size: 38px;
  margin-bottom: 12px;
}
.fair-play p:last-child {
  font-size: 14px;
  margin: 0;
  max-width: 780px;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.access-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: #193c3529;
}
.pill {
  display: inline-block;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #82958e44;
  color: #b8c7c0;
  margin-bottom: 26px;
}
.pill.live {
  color: #b7ebcb;
  border-color: #58967c69;
  background: #458c6026;
}
.access-grid h3 {
  font-size: 27px;
}
.access-grid p {
  font-size: 13px;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  padding-top: 25px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  color: var(--gold);
  font-size: 20px;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 13px;
  margin: 18px 30px 0 0;
}
.final-cta {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 90px;
  background: radial-gradient(ellipse at 50% 80%, #355e4233, transparent 65%);
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 760px;
  margin: 22px auto;
}
.final-cta p:not(.eyebrow) {
  font-size: 14px;
  max-width: 570px;
  margin: 0 auto 28px;
}
.final-cta small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 23px;
}
.footer {
  max-width: 1220px;
  margin: auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  padding: 40px 42px;
}
.footer .wordmark {
  font-size: 13px;
}
.footer p {
  font-size: 10px;
  margin: 0;
  line-height: 1.65;
}
.footer > div {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 10px;
}
.footer > small {
  font-size: 9px;
  text-align: right;
  color: var(--muted);
}
.article {
  max-width: 870px;
  min-height: 65vh;
  padding-top: 60px;
}
.article h1 {
  font-size: clamp(38px, 5vw, 65px);
  margin-top: 36px;
  letter-spacing: -0.035em;
}
.article h2 {
  font-size: 27px;
  margin-top: 35px;
}
.article p {
  font-size: 15px;
}
.article a:not(.button) {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article section {
  margin-bottom: 30px;
}
.reset-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 26px 20px;
}
.reset-result:empty {
  display: none;
}
.reset-result {
  font-size: 12px !important;
  color: var(--mint);
}
@keyframes float-one {
  50% {
    transform: rotate(-10deg) translate(4px, -12px);
  }
}
@keyframes float-two {
  50% {
    transform: rotate(10deg) translate(-3px, 12px);
  }
}
@media (min-width: 1400px) {
  .hero {
    min-height: 800px;
  }
  .hero-visual {
    transform: scale(1.05);
  }
}
@media (max-width: 1100px) {
  .masthead {
    gap: 20px;
    padding: 20px 28px;
  }
  .masthead nav {
    gap: 18px;
  }
  .masthead .button.small {
    display: none;
  }
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-visual {
    min-height: 550px;
  }
  .game-frame {
    width: 305px;
  }
  .orbital {
    width: 370px;
    height: 370px;
  }
  .floating-spell {
    width: 77px;
    height: 97px;
  }
  .spell-one {
    left: 0;
  }
  .spell-two {
    right: 0;
  }
  .truth-strip {
    margin: 0 30px;
  }
  .truth-strip > div {
    padding: 0 14px;
  }
  .spells {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .spell-art {
    aspect-ratio: 1.25;
  }
  .spell-name {
    min-height: 0;
    font-size: 19px;
  }
  .spell-family {
    font-size: 10px;
  }
  .legacy {
    gap: 50px;
  }
  .fair-play {
    margin: 20px 30px;
  }
  .hero-copy > p {
    max-width: 360px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .steps {
    gap: 14px;
  }
  .steps article {
    padding: 24px 20px;
  }
}
@media (max-width: 740px) {
  :root {
    scroll-padding-top: 80px;
  }
  .masthead {
    min-height: 76px;
    padding: 16px 20px;
    gap: 12px;
  }
  .wordmark {
    font-size: 13px;
    letter-spacing: 0.2em;
    gap: 8px;
  }
  .wordmark img {
    width: 28px;
    height: 28px;
  }
  .header-actions {
    margin-left: auto;
    gap: 12px;
  }
  .menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 5px;
    order: 3;
    font-size: 18px;
  }
  .masthead nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 75px;
    padding: 14px;
    background: #17353b;
    border: 1px solid var(--line);
    box-shadow: 0 15px 40px #0008;
    border-radius: 7px;
  }
  .masthead nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .masthead nav a {
    padding: 12px;
    min-height: 44px;
    color: var(--paper);
  }
  .section {
    padding: 60px 22px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-top: 44px;
    min-height: 0;
    align-items: stretch;
  }
  .hero h1 {
    font-size: clamp(52px, 11.5vw, 80px);
    margin-top: 22px;
    margin-bottom: 20px;
    max-width: 520px;
  }
  .hero h2 {
    font-size: 17px;
    max-width: 350px;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 440px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-buttons {
    gap: 16px;
    margin-top: 24px;
  }
  .button {
    padding: 16px 22px;
    min-height: 54px;
    font-size: 12px;
    gap: 22px;
  }
  .hero-visual {
    min-height: 525px;
    padding: 18px 0;
  }
  .game-frame {
    width: 280px;
    max-width: 84%;
    transform: rotate(2deg);
  }
  .floating-spell {
    width: 66px;
    height: 83px;
  }
  .spell-one {
    left: 0;
    top: 80px;
  }
  .spell-two {
    bottom: 85px;
    right: 0;
  }
  .orbital {
    width: 310px;
    height: 310px;
    max-width: 90vw;
    max-height: 90vw;
    box-shadow:
      0 0 0 15px #75917d08,
      0 0 0 16px #d6c69314;
  }
  .truth-strip {
    margin: 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 24px 8px;
    padding: 24px 0;
  }
  .truth-strip > div {
    padding: 0 8px;
    border: 0;
    gap: 12px;
  }
  .truth-strip strong {
    font-size: 11px;
  }
  .truth-strip span {
    font-size: 21px;
  }
  .section-number {
    font-size: 40px;
  }
  .section-head {
    gap: 14px;
    margin-bottom: 25px;
  }
  .section-head h2 {
    font-size: 36px;
  }
  .section-head p:not(.eyebrow) {
    font-size: 13px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .steps article {
    padding: 24px 24px 24px 82px;
    min-height: 160px;
  }
  .step-icon {
    position: absolute;
    left: 22px;
    top: 30px;
    font-size: 40px;
  }
  .steps small {
    top: 15px;
    right: 16px;
    font-size: 8px;
  }
  .steps h3 {
    font-size: 24px;
    margin: 4px 0 10px;
  }
  .steps p {
    font-size: 13px;
  }
  .spellbook {
    padding-top: 20px;
  }
  .spell-filters {
    gap: 7px;
  }
  .spell-filters button {
    padding: 9px 13px;
    font-size: 10px;
  }
  .spells {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .spell-card {
    padding: 5px;
    border-radius: 6px;
  }
  .spell-art {
    aspect-ratio: 1/1.12;
  }
  .spell-name {
    font-size: 13px;
    min-height: 50px;
    padding: 10px 1px 5px;
    overflow-wrap: anywhere;
  }
  .spell-family {
    font-size: 7px;
    gap: 2px;
  }
  .spell-family > span {
    font-size: 10px;
  }
  .spell-art i {
    font-size: 16px;
    bottom: 0;
    right: 4px;
  }
  .legacy {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }
  .legacy-art {
    min-height: 320px;
    order: 2;
  }
  .medallion {
    width: 125px;
    height: 125px;
  }
  .medallion > span {
    font-size: 80px;
  }
  .legacy h2 {
    font-size: 38px;
  }
  .fair-play {
    margin: 0 22px;
    gap: 22px;
    padding: 30px 24px;
    align-items: flex-start;
  }
  .fair-play > span {
    font-size: 42px;
    line-height: 1.3;
  }
  .fair-play h2 {
    font-size: 28px;
  }
  .fair-play p:last-child {
    font-size: 13px;
  }
  .fair-play .eyebrow {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-grid article {
    padding: 24px;
  }
  .access-grid h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .access-grid .pill {
    margin-bottom: 16px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 5px;
  }
  .faq h2 {
    font-size: 36px;
  }
  .faq summary {
    font-size: 13px;
  }
  .final-cta {
    padding: 55px 24px 65px;
  }
  .footer {
    padding: 32px 22px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer p {
    max-width: 410px;
  }
  .footer > small {
    text-align: left;
  }
  .footer > div {
    gap: 22px;
  }
  .article {
    padding-top: 35px;
  }
  .article p {
    font-size: 14px;
  }
  .article h1 {
    font-size: 40px;
  }
  .article h2 {
    font-size: 26px;
  }
  .spell-dialog {
    padding: 30px 23px;
  }
  .spell-dialog h2 {
    font-size: 30px;
  }
  .spell-dialog p {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 50px;
  }
  .hero-visual {
    min-height: 478px;
  }
  .game-frame {
    width: 250px;
  }
  .spells {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .spell-name {
    font-size: 14px;
    min-height: 50px;
  }
  .section-head h2 {
    font-size: 31px;
  }
  .truth-strip strong {
    font-size: 10px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }
  .legacy h2 {
    font-size: 33px;
  }
  .wordmark {
    font-size: 11px;
  }
  .fair-play {
    padding: 24px 18px;
    gap: 14px;
  }
  .fair-play h2 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .game-frame {
    transform: none;
  }
}

/* A rotated circle has a larger rectangular scroll box; keep decoration within its layout. */
.orbital {
  transform: none;
}
.spell-filters button[aria-pressed="true"] span {
  opacity: 0.8;
}

.saga-promo {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid #b3aa714d;
  border-radius: 24px;
  padding: 34px;
  background: linear-gradient(115deg, #244e443b, #15263842);
  margin-top: 22px;
  margin-bottom: 32px;
}
.saga-promo > img {
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid #c8b17577;
  width: 100%;
  height: 240px;
}
.saga-promo h2 {
  margin: 10px 0;
  font-family: Georgia, serif;
  font-size: 36px;
  color: #f1d694;
}
.saga-promo p {
  max-width: 660px;
  line-height: 1.6;
}
.saga-promo small {
  display: block;
  color: #afc3bc;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 14px;
}
@media (max-width: 650px) {
  .saga-promo {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px;
  }
  .saga-promo > img {
    width: 85px;
    height: 95px;
    border-radius: 12px;
  }
  .saga-promo h2 {
    font-size: 31px;
  }
}
