@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/newsreader.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/archivo.woff2") format("woff2");
}

:root {
  --ivory: #f5f0e7;
  --ivory-deep: #e8dfd0;
  --paper: #fbf8f2;
  --ink: #151412;
  --muted: #6e685f;
  --line: #d7cec0;
  --red: #c4151c;
  --red-dark: #9f0f14;
  --gold: #b58b35;
  --white: #fffdfa;
  --header-height: 112px;
  --page-pad: clamp(32px, 5vw, 78px);
  --content-width: 1320px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Archivo", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  background: var(--ivory);
  transition:
    height 280ms var(--ease-out),
    border-color 280ms ease;
}

.site-header.is-scrolled {
  height: 78px;
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
}

.brand img {
  width: 58px;
  height: 58px;
  transition: width 280ms var(--ease-out), height 280ms var(--ease-out);
}

.site-header.is-scrolled .brand img {
  width: 48px;
  height: 48px;
}

.brand > span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.7vw, 62px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 260ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.store-note {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-grid;
  min-width: 118px;
  min-height: 48px;
  place-items: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: 750;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  min-height: clamp(720px, calc(100svh - 280px), 820px);
  padding: clamp(72px, 7vw, 116px) var(--page-pad);
  overflow: hidden;
  color: var(--white);
  background-color: #121110;
  background-image: url("/assets/black-archive-texture.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 535px;
}

.eyebrow,
.section-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-shell h2,
.final-cta h2 {
  font-family: "Newsreader", serif;
  font-weight: 420;
  letter-spacing: -0.045em;
}

.hero h1 {
  position: relative;
  margin-top: 35px;
  font-size: clamp(70px, 6.7vw, 106px);
  line-height: 0.88;
}

.hero h1::after {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 52px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero-lead {
  max-width: 460px;
  margin-top: 34px;
  color: rgba(255, 253, 250, 0.72);
  font-family: "Newsreader", serif;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.45;
}

.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 750;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease-out);
}

.primary-button {
  margin-top: 38px;
  color: var(--white);
  background: var(--red);
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.archive-display {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
}

.archive-cards {
  position: absolute;
  right: -2%;
  bottom: 23%;
  left: 3%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(12px, 1.5vw, 24px);
}

.archive-card {
  position: relative;
  z-index: 2;
  transform: translateY(70px);
  opacity: 0;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.32));
  animation: card-enter 900ms var(--ease-out) forwards;
}

.archive-card-one {
  animation-delay: 280ms;
}

.archive-card-two {
  z-index: 3;
  animation-delay: 420ms;
}

.archive-card-three {
  animation-delay: 560ms;
}

.archive-card img {
  width: 100%;
  height: auto;
  transition:
    transform 400ms var(--ease-out),
    filter 400ms ease;
}

.archive-card:hover img {
  transform: translateY(-12px);
  filter: saturate(1.04);
}

.archive-rule {
  position: absolute;
  right: -4%;
  bottom: 19.5%;
  left: -3%;
  z-index: 1;
  height: 22px;
  border-top: 1px solid rgba(255, 253, 250, 0.9);
  background: var(--ivory-deep);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
}

.archive-caption {
  position: absolute;
  right: 0;
  bottom: 11%;
  color: rgba(255, 253, 250, 0.48);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.section-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(100px, 10vw, 160px) var(--page-pad);
}

.opening-statement {
  padding-top: 64px;
  border-bottom: 1px solid var(--line);
}

.statement-grid,
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  margin-top: 34px;
}

.opening-statement h2,
.account h2 {
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.98;
}

.statement-grid > p {
  max-width: 500px;
  padding-bottom: 10px;
  color: var(--muted);
  font-family: "Newsreader", serif;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.5;
}

.games {
  display: grid;
  grid-template-columns: minmax(310px, 0.66fr) minmax(620px, 1.34fr);
  gap: clamp(68px, 8vw, 130px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.eyebrow-dark {
  color: var(--red);
}

.section-intro h2,
.collection-copy h2,
.trust-copy h2 {
  margin-top: 24px;
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: 0.98;
}

.section-intro > p:last-child,
.collection-copy > p,
.trust-copy > p {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.games-content {
  min-width: 0;
}

.online-proof {
  padding: 38px 40px 42px;
  color: var(--white);
  background: var(--ink);
}

.online-proof > p {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.online-proof h3 {
  margin-top: 20px;
  font-family: "Newsreader", serif;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 470;
  line-height: 1;
  letter-spacing: -0.035em;
}

.online-proof span {
  display: block;
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 253, 250, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.game-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 60px;
}

.game-preview {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 253, 250, 0.12);
}

.game-preview-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.65fr) minmax(250px, 0.65fr);
  grid-template-rows: minmax(340px, auto);
}

.game-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: contrast(1.015);
  background: #f3eddf;
  transition:
    transform 650ms var(--ease-out);
}

.game-preview-wide img {
  height: 100%;
  aspect-ratio: auto;
}

.game-preview:hover img {
  transform: scale(1.012);
}

.game-preview > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 26px 28px 28px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 250, 0.12);
}

.game-preview-wide > div {
  border-top: 0;
  border-left: 1px solid rgba(255, 253, 250, 0.12);
}

.game-preview small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.game-preview h3 {
  margin-top: 10px;
  font-family: "Newsreader", serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 520;
  line-height: 1;
}

.game-preview p {
  margin-top: 10px;
  color: rgba(255, 253, 250, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.game-ledger {
  border-top: 1px solid var(--ink);
}

.game-ledger article {
  display: grid;
  grid-template-columns: 50px minmax(170px, 0.72fr) minmax(250px, 1.28fr) 110px;
  align-items: center;
  gap: 20px;
  min-height: 108px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 220ms ease,
    padding 280ms var(--ease-out);
}

.game-ledger article:hover {
  padding-right: 16px;
  padding-left: 16px;
  color: var(--red);
}

.game-ledger article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.game-ledger h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 560;
}

.game-ledger p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.game-ledger small {
  justify-self: end;
  color: var(--gold);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.collection {
  display: grid;
  grid-template-columns: minmax(350px, 0.76fr) minmax(660px, 1.24fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.collection-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 440px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-facts div {
  padding: 24px 12px 20px 0;
}

.collection-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.collection-facts dt {
  font-family: "Newsreader", serif;
  font-size: 42px;
  line-height: 1;
}

.collection-facts dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-button {
  margin-top: 34px;
  color: var(--white);
  background: var(--ink);
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.album-visual {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 26px 42px rgba(34, 29, 22, 0.12);
}

.album-visual img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  object-position: 50% 42%;
}

.album-visual figcaption {
  padding: 15px 5px 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-pad), calc((100vw - var(--content-width)) / 2 + var(--page-pad)));
  padding-left: max(var(--page-pad), calc((100vw - var(--content-width)) / 2 + var(--page-pad)));
  color: var(--white);
  background: var(--red);
}

.account .section-index {
  color: rgba(255, 253, 250, 0.68);
}

.account-grid {
  align-items: start;
}

.account-copy {
  padding-top: 8px;
}

.account-copy > p {
  max-width: 520px;
  color: rgba(255, 253, 250, 0.78);
  font-family: "Newsreader", serif;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.5;
}

.account-copy ul {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 253, 250, 0.3);
}

.account-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 253, 250, 0.3);
  font-size: 14px;
}

.account-copy li span {
  color: var(--ivory-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.account .text-button {
  color: var(--ink);
  background: var(--white);
}

.account .text-button:hover,
.account .text-button:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.trust {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(580px, 1.22fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 35px;
}

.policy-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.policy-links a:hover,
.policy-links a:focus-visible {
  color: var(--red);
}

.faq {
  border-top: 1px solid var(--ink);
}

.faq .section-index {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 86px;
  padding: 28px 8px 28px 0;
  cursor: pointer;
  font-family: "Newsreader", serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 560;
}

.faq details[open] summary {
  color: var(--red);
}

.faq details > p {
  max-width: 620px;
  padding: 0 34px 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 110px var(--page-pad);
  color: var(--white);
  text-align: center;
  background: var(--red);
}

.final-cta h2 {
  margin-top: 24px;
  font-size: clamp(68px, 8vw, 122px);
  line-height: 0.88;
}

.final-cta > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 34px;
  color: rgba(255, 253, 250, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.final-cta .primary-button {
  color: var(--ink);
  background: var(--white);
}

.final-cta .primary-button:hover,
.final-cta .primary-button:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.final-cta small {
  margin-top: 23px;
  color: rgba(255, 253, 250, 0.62);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 70px;
  align-items: center;
  padding: 70px var(--page-pad);
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  font-size: 15px;
}

.footer-brand span,
footer p,
footer small {
  color: rgba(255, 253, 250, 0.48);
  font-size: 10px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

footer nav a {
  font-size: 11px;
  font-weight: 700;
}

footer nav a:hover,
footer nav a:focus-visible {
  color: var(--gold);
}

footer p {
  max-width: 650px;
  line-height: 1.6;
}

footer small {
  text-align: right;
}

.mobile-play {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 820ms ease,
    transform 820ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes card-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: clamp(26px, 4vw, 52px);
  }

  .site-header {
    grid-template-columns: minmax(150px, 0.8fr) auto minmax(180px, 0.8fr);
  }

  .desktop-nav {
    gap: 24px;
  }

  .store-note {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  }

  .hero h1 {
    font-size: clamp(67px, 7.6vw, 90px);
  }

  .archive-cards {
    right: -8%;
    left: 0;
  }

  .games,
  .collection,
  .trust {
    gap: 60px;
  }

  .game-ledger article {
    grid-template-columns: 40px minmax(145px, 0.75fr) minmax(220px, 1.25fr);
  }

  .game-ledger small {
    display: none;
  }

  .game-preview {
    min-height: 0;
  }

  .game-preview-wide {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 84px;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
  }

  .desktop-nav,
  .header-cta,
  .store-note {
    display: none;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-button {
    display: inline-grid;
    min-width: 58px;
    min-height: 44px;
    place-items: center;
    padding: 0 14px;
    color: var(--ink);
    border: 1px solid var(--ink);
    background: transparent;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 0;
    display: grid;
    align-content: center;
    padding: 34px var(--page-pad);
    color: var(--white);
    background: var(--ink);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 253, 250, 0.2);
    font-family: "Newsreader", serif;
    font-size: clamp(28px, 6vw, 44px);
  }

  .mobile-menu-play {
    justify-content: center;
    margin-top: 28px;
    color: var(--white);
    border: 0 !important;
    background: var(--red);
    font-family: "Archivo", sans-serif !important;
    font-size: 14px !important;
    font-weight: 750;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 50px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(68px, 13vw, 100px);
  }

  .archive-display {
    min-height: 560px;
  }

  .archive-cards {
    right: 2%;
    bottom: 13%;
    left: 2%;
  }

  .archive-rule {
    right: -6%;
    left: -6%;
  }

  .statement-grid,
  .account-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .statement-grid > p {
    max-width: 650px;
  }

  .games,
  .collection,
  .trust {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .game-ledger article {
    grid-template-columns: 42px minmax(180px, 0.78fr) minmax(250px, 1.22fr);
  }

  .collection-copy {
    max-width: 650px;
  }

  .game-previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-visual {
    margin-top: 10px;
  }

  .trust-copy {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 20px;
    --header-height: 72px;
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .brand {
    gap: 8px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 6px;
  }

  .hero {
    gap: 24px;
    padding-top: 60px;
    padding-bottom: 34px;
  }

  .eyebrow,
  .section-index {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(58px, 18vw, 76px);
    line-height: 0.89;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero .primary-button {
    width: 100%;
    margin-top: 28px;
  }

  .archive-display {
    min-height: 340px;
  }

  .archive-cards {
    right: -8%;
    bottom: 17%;
    left: -8%;
    gap: 6px;
  }

  .archive-rule {
    right: -8%;
    bottom: 13.5%;
    left: -8%;
    height: 12px;
  }

  .archive-caption {
    right: 0;
    bottom: 5%;
    font-size: 6px;
  }

  .section-shell {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .statement-grid {
    margin-top: 24px;
  }

  .opening-statement h2,
  .account h2,
  .section-intro h2,
  .collection-copy h2,
  .trust-copy h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .statement-grid > p,
  .account-copy > p {
    font-size: 19px;
  }

  .games,
  .collection,
  .trust {
    gap: 52px;
  }

  .section-intro > p:last-child,
  .collection-copy > p,
  .trust-copy > p {
    font-size: 15px;
  }

  .game-ledger article {
    grid-template-columns: 34px 1fr;
    gap: 7px 12px;
    min-height: 116px;
    padding: 22px 0;
  }

  .game-ledger h3 {
    font-size: 25px;
  }

  .game-ledger p {
    grid-column: 2;
    font-size: 13px;
  }

  .collection-facts {
    max-width: none;
  }

  .collection-facts dt {
    font-size: 34px;
  }

  .collection-facts div {
    padding: 18px 8px 16px 0;
  }

  .collection-facts div + div {
    padding-left: 12px;
  }

  .online-proof {
    padding: 30px 24px 34px;
  }

  .game-previews {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .game-preview,
  .game-preview-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  .game-preview-wide img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .game-preview-wide > div {
    border-top: 1px solid rgba(255, 253, 250, 0.12);
    border-left: 0;
  }

  .game-preview > div {
    padding: 22px;
  }

  .game-preview small {
    font-size: 10px;
  }

  .album-visual {
    padding: 7px;
  }

  .album-visual img {
    aspect-ratio: 1.42;
    object-position: 55% 45%;
  }

  .account-copy li {
    font-size: 13px;
  }

  .faq summary {
    min-height: 74px;
    padding: 22px 0;
    font-size: 22px;
  }

  .final-cta {
    min-height: 540px;
    padding: 90px var(--page-pad);
  }

  .final-cta h2 {
    font-size: clamp(62px, 18vw, 82px);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px var(--page-pad);
  }

  footer nav {
    justify-content: flex-start;
  }

  footer small {
    text-align: left;
  }

  .mobile-play {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(62px + env(safe-area-inset-bottom));
    place-items: center;
    padding: 0 20px env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--red);
    font-size: 14px;
    font-weight: 750;
  }

  body.menu-open .mobile-play {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
