:root {
  --ink: #080808;
  --ink-2: #111113;
  --surface: #171719;
  --surface-2: #211416;
  --line: rgba(255, 255, 255, .12);
  --text: #f7f5f2;
  --muted: #a6a4aa;
  --red: #df264d;
  --red-deep: #8c102c;
  --gold: #f2c75f;
  --cyan: #37a5d9;
  --green: #4ac58b;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.menuOpen {
  overflow: hidden;
  overscroll-behavior: none;
}

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

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

button {
  font: inherit;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.pageLoader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--gold);
  background: #050505;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.pageLoader.done {
  visibility: hidden;
  opacity: 0;
}

.pageLoader img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  animation: loaderPulse 1.1s ease-in-out infinite;
}

.pageLoader strong {
  font-size: 18px;
}

@keyframes loaderPulse {
  50% { transform: scale(1.07); filter: brightness(1.25); }
}

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 180px 1fr 150px;
  align-items: center;
  gap: 24px;
  padding: 0 42px;
  background: rgba(8, 8, 8, .36);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.siteHeader.scrolled {
  background: rgba(8, 8, 8, .94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.headerBrand {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.headerBrand > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.headerBrandText {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.headerBrandText strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.headerBrandText small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktopNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktopNav a {
  position: relative;
  padding: 25px 0;
  color: #d7d6da;
  font-size: 13px;
  font-weight: 700;
}

.desktopNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}

.desktopNav a:hover::after,
.desktopNav a:focus-visible::after {
  right: 0;
}

.headerCta,
.primaryButton,
.secondaryButton {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.headerCta,
.primaryButton {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(223, 38, 77, .22);
}

.headerCta:hover,
.primaryButton:hover,
.secondaryButton:hover {
  transform: translateY(-2px);
}

.secondaryButton {
  color: #fff;
  background: rgba(8, 8, 8, .36);
  border-color: rgba(255, 255, 255, .36);
}

.menuButton,
.mobileNav {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 6%, #000 58%, transparent 96%);
  mask-image: linear-gradient(90deg, transparent 6%, #000 58%, transparent 96%);
}

.heroImage,
.heroShade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroImage {
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.08);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  to { transform: scale(1.045); }
}

.heroShade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .66) 43%, rgba(5, 5, 5, .24) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, .24), rgba(5, 5, 5, .1) 55%, #080808 100%);
}

.heroContent {
  position: relative;
  z-index: 4;
  width: min(680px, calc(100% - 80px));
  margin-left: max(40px, calc((100% - 1320px) / 2));
  padding-top: 42px;
  padding-bottom: 160px;
}

.eyebrow,
.sectionKicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: .95;
}

.heroLead {
  max-width: 590px;
  margin: 22px 0 28px;
  color: #d0ced2;
  font-size: 17px;
  line-height: 1.7;
}

.partnerReferral {
  max-width: 520px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 20px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partnerReferral strong {
  padding: 6px 9px;
  border: 1px solid rgba(242, 199, 95, .4);
  border-radius: 4px;
  background: rgba(8, 8, 8, .5);
}

.partnerReferral span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.heroGameRail {
  position: absolute;
  right: max(28px, calc((100% - 1320px) / 2));
  bottom: 38px;
  z-index: 5;
  width: min(48vw, 700px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.heroGameRail a {
  min-width: 0;
  aspect-ratio: 1.18;
  display: block;
  overflow: hidden;
  background: #171719;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .38);
  transform: translateY(var(--rail-lift, 0));
  animation: railFloat 5.2s ease-in-out infinite;
}

.heroGameRail a:nth-child(even) {
  --rail-lift: -18px;
  animation-delay: -2.6s;
}

@keyframes railFloat {
  50% { transform: translateY(calc(var(--rail-lift, 0px) - 6px)); }
}

.heroGameRail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.heroGameRail a:hover img {
  transform: scale(1.05);
}

.sectionBand {
  padding: 110px max(32px, calc((100% - 1320px) / 2));
}

.sectionIntro {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.sectionIntro h2,
.gamesHeading h2,
.downloadCopy h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sectionIntro h2,
.gamesHeading h2 {
  color: var(--red);
}

.sectionIntro > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.story {
  background: #0e0e10;
}

.brandOrbit {
  position: relative;
  width: min(620px, 80vw);
  aspect-ratio: 2.2;
  display: grid;
  place-items: center;
  margin: 0 auto 60px;
  overflow: hidden;
}

.brandOrbit::before,
.brandOrbit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 199, 95, .7), transparent);
}

.brandOrbit::before { top: 24%; transform: rotate(7deg); }
.brandOrbit::after { bottom: 24%; transform: rotate(-7deg); }

.brandOrbit img {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 128px;
  object-fit: contain;
  animation: markFloat 3.8s ease-in-out infinite;
}

@keyframes markFloat {
  50% { transform: translateY(-9px); filter: brightness(1.15); }
}

.orbitLine {
  position: absolute;
  width: 74%;
  height: 74%;
  border: 1px solid rgba(223, 38, 77, .35);
  border-radius: 50%;
}

.orbitTwo {
  width: 44%;
  height: 44%;
  border-color: rgba(55, 165, 217, .35);
}

.capabilityGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.capability {
  position: relative;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%),
    #18181b;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 24px 48px rgba(0,0,0,.14);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.capability:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 199, 95, .32);
  background:
    linear-gradient(145deg, rgba(242,199,95,.07), transparent 48%),
    #1a1a1d;
}

.capability.wide {
  grid-column: span 2;
}

.capability::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.capability:nth-child(3n)::after { background: var(--cyan); }
.capability:nth-child(4n)::after { background: var(--gold); }
.capability:nth-child(5n)::after { background: var(--green); }

.capability > p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability h3 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: 25px;
}

.capability > span {
  position: relative;
  z-index: 2;
  max-width: 440px;
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.capability > img {
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 116px;
  height: 116px;
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.38));
  animation: featureFloat 5s ease-in-out infinite;
}

@keyframes featureFloat {
  50% { transform: translateY(-7px); }
}

.capability.wide > img {
  width: 156px;
  height: 156px;
}

.deviceBars {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 220px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.deviceBars i {
  flex: 1;
  height: 36%;
  background: var(--red);
}

.deviceBars i:nth-child(2) { height: 72%; background: var(--gold); }
.deviceBars i:nth-child(3) { height: 100%; background: var(--cyan); }
.deviceBars i:nth-child(4) { height: 58%; background: var(--green); }
.deviceBars i:nth-child(5) { height: 84%; background: #8f5bd7; }

.platform {
  background: #09090a;
  border-top: 1px solid var(--line);
}

.brandMarquee {
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.brandMarquee::-webkit-scrollbar,
.gameFilters::-webkit-scrollbar {
  display: none;
}

.brandItem {
  flex: 0 0 150px;
  min-height: 94px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 12px;
  background: linear-gradient(155deg, #1c1c1f, #111113);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.brandItem img {
  width: 92px;
  height: 54px;
  object-fit: contain;
}

.brandItem strong {
  width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.brandLoader,
.gameLoader {
  width: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--muted);
}

.brandLoader i,
.gameLoader i {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, .16);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.platformFacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.platformFacts article {
  padding-top: 22px;
  border-top: 2px solid var(--red);
}

.platformFacts article:nth-child(2) { border-color: var(--cyan); }
.platformFacts article:nth-child(3) { border-color: var(--gold); }

.platformFacts strong {
  color: #595960;
  font-size: 30px;
}

.platformFacts h3 {
  margin: 22px 0 12px;
  font-size: 20px;
}

.platformFacts p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.gamesSection {
  background: #121214;
}

.gamesHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gamesHeading > a {
  padding: 12px 0;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.gameFilters {
  display: flex;
  gap: 8px;
  margin: 38px 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gameFilters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  color: #b8b6bc;
  background: transparent;
  border: 1px solid #3a3a3f;
  border-radius: 4px;
  cursor: pointer;
}

.gameFilters button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.gameGallery {
  min-height: 340px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gameCard {
  min-width: 0;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #0c0c0d;
  border: 1px solid var(--line);
  border-radius: 6px;
  content-visibility: auto;
  contain-intrinsic-size: 230px;
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
  transition: transform 170ms ease, border-color 170ms ease;
}

.gameCard:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 199, 95, .68);
}

.gameCard .gameArt {
  aspect-ratio: 1.35;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #1b1214;
}

.gameCard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gameCard .gameFallback {
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
}

.gameCard div:last-child {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.gameCard strong,
.gameCard span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gameCard strong {
  font-size: 13px;
}

.gameCard span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.gameLoader {
  grid-column: 1 / -1;
  min-height: 340px;
}

.gameResultCount {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.faqSection {
  background: #0a0a0b;
  border-top: 1px solid var(--line);
}

.faqGrid {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.faqGrid details {
  min-width: 0;
  padding: 0 22px;
  background: #171719;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
}

.faqGrid details:nth-child(2n) {
  border-left-color: var(--gold);
}

.faqGrid summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faqGrid summary::-webkit-details-marker {
  display: none;
}

.faqGrid summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.faqGrid details[open] summary::after {
  content: "-";
}

.faqGrid details p {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faqGrid details p strong {
  color: var(--gold);
}

.downloadSection {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 50px;
  padding: 90px max(32px, calc((100% - 1180px) / 2));
  overflow: hidden;
  background: #090909;
  border-top: 1px solid var(--line);
}

.downloadBackdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}

.downloadSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, .96), rgba(9, 9, 9, .78) 50%, rgba(9, 9, 9, .34));
}

.downloadCopy,
.downloadMark {
  position: relative;
  z-index: 2;
}

.downloadCopy h2 {
  max-width: 700px;
  color: #fff;
}

.downloadCopy > p:not(.sectionKicker) {
  max-width: 560px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.downloadMark {
  width: 300px;
  height: 300px;
  object-fit: contain;
  justify-self: end;
}

.siteFooter {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding: 72px max(32px, calc((100% - 1180px) / 2)) 30px;
  color: #8f8e94;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footerLead img {
  width: 180px;
  height: 52px;
  object-fit: contain;
  object-position: left;
}

.footerBrandText {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.footerLead p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.7;
}

.siteFooter h2 {
  margin: 0 0 18px;
  color: #d9d8dc;
  font-size: 13px;
  text-transform: uppercase;
}

.siteFooter > div:not(.footerLead) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.siteFooter a {
  font-size: 12px;
}

.siteFooter a:hover {
  color: var(--red);
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footerReferral {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1050px) {
  .siteHeader {
    grid-template-columns: 160px 1fr 130px;
    gap: 12px;
    padding: 0 24px;
  }

  .desktopNav { gap: 18px; }
  .desktopNav a { font-size: 11px; }
  .heroContent { width: min(600px, calc(100% - 48px)); margin-left: 24px; }
  .hero h1 { font-size: 60px; }
  .heroGameRail { right: 22px; width: 52vw; }
  .capabilityGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability.wide { grid-column: span 1; }
  .gameGallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 840px) {
  :root { --header-height: 62px; }

  .siteHeader {
    grid-template-columns: 1fr 46px;
    padding: 0 max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
    background: rgba(6, 6, 7, .68);
    border-bottom-color: rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
  }

  .headerBrand { height: 46px; }
  .headerBrand > img { width: 38px; height: 38px; }
  .headerBrandText strong { font-size: 18px; }
  .headerBrandText small { font-size: 8px; }
  .desktopNav, .headerCta { display: none; }

  .menuButton {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    cursor: pointer;
  }

  .menuButton i {
    width: 22px;
    height: 2px;
    display: block;
    background: #fff;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menuButton.active i:first-child { transform: translateY(7px) rotate(45deg); }
  .menuButton.active i:nth-child(2) { opacity: 0; }
  .menuButton.active i:last-child { transform: translateY(-7px) rotate(-45deg); }

  .mobileNav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    padding: 22px max(20px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background:
      linear-gradient(180deg, rgba(223,38,77,.07), transparent 30%),
      rgba(7, 7, 8, .985);
    border-bottom: 1px solid var(--line);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .mobileNav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobileNav a {
    width: min(100%, 520px);
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-inline: auto;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
  }

  .mobileNav a:last-child {
    justify-content: center;
    margin-top: 12px;
    color: #fff;
    background: var(--red);
    border: 0;
    border-radius: 4px;
  }

  .hero {
    min-height: max(760px, 90svh);
    align-items: start;
  }

  .heroImage { object-position: 58% center; }

  .heroShade {
    background:
      linear-gradient(90deg, rgba(5,5,5,.58), rgba(5,5,5,.24) 62%, rgba(5,5,5,.42)),
      linear-gradient(180deg, rgba(5, 5, 5, .3), rgba(5, 5, 5, .76) 49%, #080808 90%);
  }

  .heroContent {
    width: min(600px, calc(100% - 36px));
    margin: 0 auto;
    padding: 124px 0 210px;
    text-align: center;
  }

  .hero h1 { font-size: 46px; }
  .heroLead { margin: 18px auto 24px; font-size: 14px; line-height: 1.6; }
  .partnerReferral { justify-content: center; margin-inline: auto; }
  .heroActions {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-inline: auto;
  }
  .heroActions > a {
    min-width: 0;
    max-width: none;
    white-space: nowrap;
  }
  .primaryButton, .secondaryButton { min-height: 44px; padding: 0 16px; }

  .heroGameRail {
    left: 50%;
    right: auto;
    bottom: 26px;
    width: min(560px, calc(100% - 28px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: translateX(-50%);
  }

  .heroGameRail a:nth-child(n+5) { display: none; }
  .heroGameRail a:nth-child(even) { --rail-lift: -10px; }
  .sectionBand { padding: 86px 24px; }
  .sectionIntro { margin-bottom: 40px; }
  .sectionIntro h2, .gamesHeading h2, .downloadCopy h2 { font-size: 36px; }
  .sectionIntro > p:last-child { font-size: 13px; }
  .brandOrbit { width: 100%; margin-bottom: 40px; }
  .brandOrbit img { width: 92px; height: 92px; }
  .capabilityGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .capability { min-height: 230px; padding: 22px; }
  .capability h3 { font-size: 22px; }
  .capability > img { width: 94px; height: 94px; }
  .deviceBars { right: 18px; width: 150px; height: 74px; }

  .platformFacts { gap: 20px; }
  .gamesHeading { align-items: start; flex-direction: column; }
  .gameFilters { margin-top: 28px; }
  .gameGallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .gameCard div:last-child { padding: 10px; }
  .faqGrid { grid-template-columns: 1fr; }

  .downloadSection {
    min-height: 660px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 70px 20px;
    text-align: center;
  }

  .downloadSection::after {
    background: linear-gradient(180deg, rgba(9, 9, 9, .84), rgba(9, 9, 9, .96));
  }

  .downloadCopy > p:not(.sectionKicker) { margin-inline: auto; }
  .downloadMark { width: 170px; height: 170px; justify-self: center; grid-row: 1; }

  .siteFooter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
    padding: 54px 20px 24px;
  }

  .footerLead { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .siteHeader {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .heroContent {
    width: calc(100% - 28px);
    padding-top: 112px;
  }

  .sectionBand { padding: 72px 14px; }
  .sectionIntro { margin-bottom: 34px; }
  .sectionIntro h2, .gamesHeading h2, .downloadCopy h2 { font-size: 34px; }
  .brandOrbit { margin-bottom: 32px; }
  .capabilityGrid { grid-template-columns: 1fr; gap: 9px; }
  .platformFacts { grid-template-columns: 1fr; gap: 28px; }
  .gameGallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faqGrid details { padding: 0 18px; }
  .faqGrid summary { min-height: 66px; font-size: 14px; }

  .downloadSection {
    min-height: 620px;
    padding: 64px 16px;
  }

  .downloadCopy .heroActions { width: min(100%, 430px); }
  .siteFooter { padding-inline: 16px; }
}

@media (max-width: 390px) {
  .hero { min-height: max(780px, 92svh); }
  .heroContent { padding-top: 102px; }
  .hero h1 { font-size: 39px; }
  .heroActions { grid-template-columns: 1fr; }
  .heroGameRail { bottom: 24px; }
  .gameGallery { gap: 6px; }
  .gameCard strong { font-size: 12px; }
}

@media (max-width: 350px) {
  .heroLead { font-size: 13px; }
  .heroGameRail { width: calc(100% - 20px); gap: 5px; }
  .siteFooter { grid-template-columns: 1fr; }
  .footerLead { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
}
