:root {
  color-scheme: dark;
  --black: #000;
  --ink: #080808;
  --panel: #0d0d0d;
  --line: #282828;
  --white: #f7f7f3;
  --muted: #a4a4a4;
  --volt: #ccff00;
  --page: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: #080808;
  backdrop-filter: none;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--volt);
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(var(--page), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.brand span {
  color: var(--volt);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #999;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.nav-play,
.nav-ios {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  font-size: 10px;
  font-weight: 950;
  text-decoration: none;
}

.nav-play {
  background: var(--volt);
  color: var(--black);
}

.nav-ios {
  border: 1px solid #363636;
  color: var(--white);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: 2;
  inset: 76px 0 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 34px 24px max(30px, env(safe-area-inset-bottom));
  border-top: 1px solid #303030;
  background: #080808;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.86), inset 0 3px 0 var(--volt);
  backdrop-filter: none;
}

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

.mobile-menu > a {
  min-height: 44px;
  max-height: 68px;
  display: flex;
  flex: 1 1 68px;
  align-items: center;
  gap: 20px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #080808;
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu > a span {
  color: var(--volt);
  font-size: 10px;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
  padding: 0 12px;
}

.mobile-menu-actions a {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--volt);
  color: var(--white);
  font-size: 10px;
  font-weight: 950;
  text-decoration: none;
}

.mobile-menu-actions a:first-child {
  background: var(--volt);
  color: var(--black);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 980px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-word {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: 18px;
  color: transparent;
  font-size: 180px;
  font-weight: 950;
  line-height: 0.75;
  -webkit-text-stroke: 2px #161616;
  pointer-events: none;
}

.hero-layout {
  width: min(1240px, calc(100% - 48px));
  min-height: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(600px, 1.24fr);
  align-items: center;
  gap: 54px;
  padding: 112px 0 84px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--volt);
  font-size: 10px;
  font-weight: 950;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
}

.hero h1 {
  max-width: 560px;
  margin: 24px 0 24px;
  font-size: 72px;
  font-weight: 950;
  line-height: 0.94;
}

.hero-lead {
  max-width: 510px;
  margin: 0 0 34px;
  color: #b1b1b1;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.cta {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--volt);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 240ms var(--ease), background 160ms ease, color 160ms ease;
}

.cta:hover {
  transform: translateY(-3px);
}

.cta b {
  font-size: 17px;
}

.cta-primary {
  background: var(--volt);
  color: var(--black);
}

.product-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  perspective: 1800px;
}

.product-stage::after {
  position: absolute;
  z-index: -1;
  right: 6%;
  bottom: -24px;
  left: 6%;
  height: 90px;
  content: "";
  background: rgba(204, 255, 0, 0.13);
  filter: blur(50px);
}

.product-window {
  overflow: hidden;
  border: 1px solid #303030;
  border-radius: 8px;
  background: #080808;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.72);
  transform: rotateY(calc(-7deg + var(--pointer-x) * 2deg)) rotateX(calc(3deg - var(--pointer-y) * 2deg)) translate3d(calc(var(--pointer-x) * 7px), calc(var(--pointer-y) * 5px), 0);
  transition: transform 700ms var(--ease);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #242424;
  background: #0b0b0b;
}

.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b3b3b;
}

.window-bar span {
  margin-left: 8px;
  color: #696969;
  font-size: 9px;
}

.product-window picture,
.product-window img {
  width: 100%;
  display: block;
}

.game-capture {
  width: 100%;
  display: block;
  overflow: hidden;
  background: #000;
}

.game-capture img {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #8a8a8a;
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 25px;
  background: var(--volt);
}

.section-shell {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.ownership-band {
  padding: 124px 0 110px;
  background: var(--volt);
  color: var(--black);
}

.ownership-band .section-label {
  color: #536800;
}

.ownership-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-top: 34px;
}

.ownership-head h2 {
  margin: 0;
  font-size: 68px;
  font-weight: 950;
  line-height: 0.95;
}

.ownership-head h2 span {
  color: #536800;
}

.ownership-head > p {
  margin: 0;
  color: #263100;
  font-size: 16px;
  line-height: 1.7;
}

.ownership-compare {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  margin-top: 78px;
  border: 2px solid var(--black);
}

.ownership-compare > div {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.ownership-compare > div:last-child {
  background: var(--black);
  color: var(--volt);
}

.ownership-compare > span {
  display: grid;
  place-items: center;
  border-right: 2px solid var(--black);
  border-left: 2px solid var(--black);
  font-size: 28px;
  font-weight: 950;
}

.ownership-compare small {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 950;
}

.ownership-compare strong {
  max-width: 420px;
  font-size: 28px;
  line-height: 1.08;
}

.story,
.story-track {
  min-height: 400vh;
}

.story {
  position: relative;
  background: var(--black);
}

.story-track {
  height: 400vh;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
}

.story-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 7vw 68px max(24px, calc((100vw - var(--page)) / 2));
  border-right: 1px solid var(--line);
  background: var(--black);
}

.story-copy h2 {
  margin: 16px 0 40px;
  font-size: 58px;
  font-weight: 950;
  line-height: 0.96;
}

.story-steps {
  position: relative;
  min-height: 220px;
}

.story-step {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  text-align: left;
}

.js .story-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 380ms var(--ease), transform 500ms var(--ease);
  pointer-events: none;
}

.js .story-step.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.step-number {
  color: var(--volt);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.step-text strong,
.step-text small {
  display: block;
}

.step-text strong {
  margin-bottom: 11px;
  font-size: 23px;
  line-height: 1.15;
}

.step-text small {
  max-width: 420px;
  color: #9b9b9b;
  font-size: 13px;
  line-height: 1.65;
}

.story-progress {
  height: 2px;
  margin-top: 20px;
  overflow: hidden;
  background: #232323;
}

.story-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070707;
}

.story-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, rgba(204, 255, 0, 0.08), transparent 42%);
}

.story-frame {
  position: absolute;
  width: min(680px, calc(100% - 88px));
  aspect-ratio: 1520 / 2000;
  max-height: calc(100vh - 104px);
  margin: 0;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 5px;
  background: #000;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.64);
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition: opacity 420ms ease, transform 760ms var(--ease);
  pointer-events: none;
}

.story-frame.is-active {
  opacity: 1;
  transform: translateY(14px);
}

.story-frame .game-capture,
.story-frame img {
  width: 100%;
  height: 100%;
}

.story-frame img {
  max-height: calc(100vh - 104px);
  object-fit: contain;
  object-position: top;
}

.story-count {
  position: absolute;
  right: 30px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #868686;
  font-size: 9px;
  font-weight: 900;
}

.story-count span:first-child {
  color: var(--volt);
}

.story-count i {
  width: 42px;
  height: 1px;
  background: #454545;
}

.season-band {
  padding: 130px 0 140px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.season-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-top: 34px;
}

.season-head h2 {
  margin: 0;
  font-size: 66px;
  font-weight: 950;
  line-height: 0.96;
}

.season-head h2 span {
  color: #676767;
}

.season-head > p {
  margin: 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
}

.season-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.season-rules article {
  min-height: 230px;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line);
}

.season-rules article:last-child {
  border-right: 0;
}

.season-rules span {
  color: var(--volt);
  font-size: 9px;
  font-weight: 950;
}

.season-rules h3 {
  margin: 42px 0 11px;
  font-size: 30px;
}

.season-rules p {
  max-width: 300px;
  margin: 0;
  color: #999;
  font-size: 13px;
  line-height: 1.6;
}

.season-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 90px;
}

.season-gallery figure {
  margin: 0;
}

.season-gallery figure > div {
  aspect-ratio: 760 / 880;
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 5px;
  background: #000;
}

.season-gallery .game-capture,
.season-gallery img {
  width: 100%;
  height: 100%;
}

.season-gallery img {
  object-fit: cover;
  object-position: top;
}

.season-gallery figcaption {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 2px;
}

.season-gallery figcaption span {
  color: var(--volt);
  font-size: 9px;
  font-weight: 950;
}

.season-gallery figcaption b {
  max-width: 270px;
  font-size: 14px;
  text-align: right;
}

.premium-band {
  background: var(--black);
}

.premium-layout {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.premium-product {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--volt);
}

.premium-product::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
}

.premium-product figure {
  position: relative;
  width: min(620px, 86%);
  margin: 76px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.78);
  border-radius: 5px;
  background: #000;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.42);
  transform: translate3d(calc(var(--premium-x, 0) * 4px), calc(var(--premium-y, 0) * 4px), 0);
  transition: transform 600ms var(--ease);
}

.premium-product .game-capture,
.premium-product img {
  width: 100%;
  display: block;
}

.premium-copy {
  align-self: center;
  max-width: 590px;
  padding: 100px 7vw;
}

.premium-copy h2 {
  margin: 18px 0 28px;
  font-size: 60px;
  font-weight: 950;
  line-height: 0.98;
}

.premium-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  color: #a8a8a8;
  font-size: 16px;
  line-height: 1.7;
}

.premium-copy ul {
  margin: 48px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.premium-copy li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.premium-copy li span {
  color: var(--volt);
  font-size: 9px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--volt);
  color: var(--volt);
  font-size: 10px;
  font-weight: 950;
  text-decoration: none;
}

.league-band {
  padding: 126px 0 116px;
  background: var(--white);
  color: var(--black);
}

.league-band .section-label {
  color: #536800;
}

.league-band h2 {
  margin: 20px 0 70px;
  font-size: 72px;
  font-weight: 950;
  line-height: 0.95;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.league-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 32px;
  border-right: 2px solid var(--black);
}

.league-grid article:last-child {
  border-right: 0;
}

.league-grid span {
  color: #5f5f5f;
  font-size: 9px;
  font-weight: 950;
}

.league-grid strong {
  max-width: 280px;
  font-size: 25px;
  line-height: 1.08;
}

.final-cta {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--volt);
  color: var(--black);
}

.final-word {
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: transparent;
  font-size: 180px;
  font-weight: 950;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.15);
}

.final-inner {
  position: relative;
  z-index: 1;
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.final-inner .eyebrow {
  color: #405100;
}

.final-inner .eyebrow span {
  background: var(--black);
}

.final-inner h2 {
  max-width: 850px;
  margin: 22px 0 25px;
  font-size: 82px;
  font-weight: 950;
  line-height: 0.94;
}

.final-inner > p:not(.eyebrow) {
  margin: 0 0 34px;
  color: #263100;
  font-size: 17px;
}

.cta-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--volt);
}

.cta-outline {
  border-color: var(--black);
  color: var(--black);
}

.site-footer {
  background: var(--black);
}

.footer-main,
.footer-legal {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.footer-main {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
}

.footer-main nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #929292;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.footer-legal {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #828282;
  font-size: 10px;
}

.footer-legal p {
  margin: 0;
  text-align: right;
}

.js [data-reveal] {
  transform: translateY(18px);
  transition: transform 650ms var(--ease);
}

.js [data-reveal].is-revealed {
  transform: none;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1.15fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .ownership-head h2,
  .season-head h2 {
    font-size: 58px;
  }

  .premium-copy h2 {
    font-size: 52px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-ios {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 1050px;
  }

  .hero-word {
    font-size: 120px;
  }

  .hero-layout {
    min-height: 1000px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 55px;
    padding: 116px 0 86px;
  }

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

  .hero h1 {
    max-width: 640px;
    font-size: 62px;
  }

  .product-stage {
    width: min(680px, 94%);
    align-self: center;
  }

  .ownership-head,
  .season-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ownership-head > p,
  .season-head > p {
    max-width: 590px;
  }

  .story-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: 56vh 44vh;
    min-height: 680px;
  }

  .story-visual {
    grid-row: 1;
  }

  .story-copy {
    grid-row: 2;
    padding: 24px 28px 30px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .story-copy h2 {
    margin: 7px 0 12px;
    font-size: 34px;
  }

  .story-steps {
    min-height: 150px;
  }

  .story-step {
    grid-template-columns: 40px 1fr;
    padding: 13px 0;
  }

  .step-number {
    font-size: 20px;
  }

  .step-text strong {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .step-text small {
    font-size: 12px;
    line-height: 1.5;
  }

  .story-frame {
    width: min(620px, calc(100% - 56px));
    max-height: calc(56vh - 38px);
  }

  .story-frame.is-active {
    transform: translateY(12px);
  }

  .story-frame img {
    max-height: calc(56vh - 38px);
  }

  .season-rules {
    grid-template-columns: 1fr;
  }

  .season-rules article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .season-rules article:last-child {
    border-bottom: 0;
  }

  .season-rules h3 {
    margin-top: 20px;
  }

  .season-gallery figure > div {
    height: auto;
  }

  .premium-layout {
    grid-template-columns: 1fr;
  }

  .premium-copy {
    grid-row: 1;
    max-width: none;
    padding: 100px max(24px, calc((100vw - 720px) / 2));
  }

  .premium-product {
    min-height: 760px;
  }

  .premium-product figure {
    width: min(620px, calc(100% - 56px));
  }

  .league-grid {
    grid-template-columns: 1fr;
  }

  .league-grid article {
    min-height: 145px;
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }

  .league-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .site-nav,
  .hero-layout,
  .section-shell,
  .final-inner,
  .footer-main,
  .footer-legal {
    width: calc(100% - 40px);
  }

  .site-nav {
    min-height: 68px;
  }

  .nav-play {
    display: none;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .hero {
    min-height: 980px;
  }

  .hero-layout {
    min-height: 930px;
    gap: 46px;
    padding: 104px 0 74px;
  }

  .hero h1 {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 0.96;
  }

  .hero-lead {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions,
  .final-actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .cta {
    min-height: 56px;
    padding: 0 13px;
    font-size: 9px;
  }

  .product-stage {
    width: min(360px, 94vw);
  }

  .product-window {
    transform: rotateY(calc(-5deg + var(--pointer-x) * 2deg)) rotateX(calc(2deg - var(--pointer-y) * 2deg));
  }

  .window-bar {
    display: none;
  }

  .product-window img {
    aspect-ratio: 390 / 844;
    object-fit: cover;
    object-position: top;
  }

  .hero-word {
    right: -10px;
    bottom: 20px;
    font-size: 75px;
  }

  .ownership-band,
  .league-band {
    padding: 86px 0 80px;
  }

  .ownership-head h2,
  .season-head h2,
  .premium-copy h2 {
    font-size: 45px;
  }

  .ownership-head > p,
  .season-head > p,
  .premium-copy > p:not(.section-label) {
    font-size: 14px;
  }

  .ownership-compare {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .ownership-compare > div {
    min-height: 128px;
    padding: 24px;
  }

  .ownership-compare > span {
    min-height: 46px;
    border: 0;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    font-size: 0;
  }

  .ownership-compare > span::after {
    content: "\2193";
    font-size: 28px;
  }

  .ownership-compare strong {
    font-size: 22px;
  }

  .story-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-sticky {
    grid-template-rows: 66vh 34vh;
  }

  .story-copy h2 {
    font-size: 29px;
  }

  .story-frame {
    width: min(360px, calc(100% - 32px));
    aspect-ratio: 1170 / 2532;
    max-height: calc(66vh - 52px);
  }

  .story-frame.is-active {
    transform: translateY(34px);
  }

  .story-frame img {
    height: 100%;
    max-height: calc(66vh - 52px);
    object-fit: contain;
  }

  .story-count {
    right: 18px;
    bottom: 15px;
  }

  .season-band {
    padding: 90px 0;
  }

  .season-rules {
    margin-top: 50px;
  }

  .season-rules article {
    padding-right: 4px;
    padding-left: 4px;
  }

  .season-gallery {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 70px;
  }

  .season-gallery figure > div {
    height: auto;
    aspect-ratio: 1170 / 2532;
  }

  .season-gallery img {
    object-fit: contain;
  }

  .premium-product figure {
    aspect-ratio: 1170 / 2532;
  }

  .premium-product .game-capture,
  .premium-product img {
    height: 100%;
  }

  .premium-product img {
    object-fit: contain;
  }

  .season-gallery figcaption {
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .season-gallery figcaption b {
    text-align: left;
  }

  .premium-copy {
    padding: 88px 20px 70px;
  }

  .premium-copy ul {
    margin-top: 36px;
  }

  .premium-product {
    min-height: clamp(720px, 225vw, 900px);
  }

  .premium-product figure {
    width: min(360px, calc(100% - 32px));
  }

  .league-band h2 {
    margin-bottom: 50px;
    font-size: 48px;
  }

  .league-grid article {
    min-height: 132px;
    padding: 22px;
  }

  .league-grid strong {
    font-size: 21px;
  }

  .final-cta {
    min-height: 720px;
  }

  .final-inner h2 {
    font-size: 55px;
  }

  .final-inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .final-word {
    font-size: 75px;
  }

  .footer-main {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

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

  .footer-legal {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-legal p {
    text-align: left;
  }
}

@media (max-height: 620px) and (min-width: 700px) {
  .mobile-menu {
    padding: 8px 24px;
  }

  .mobile-menu > a {
    min-height: 32px;
    max-height: 36px;
    flex-basis: 34px;
    font-size: 18px;
  }

  .mobile-menu-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 6px;
    padding: 0;
  }

  .mobile-menu-actions a {
    min-height: 40px;
    padding: 4px;
    font-size: 8px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-layout {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 28px;
    padding: 78px 0 34px;
  }

  .hero h1 {
    margin: 10px 0 12px;
    font-size: 42px;
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .cta {
    min-height: 49px;
  }

  .product-stage {
    width: auto;
  }

  .hero-word,
  .scroll-cue {
    display: none;
  }

  .story-sticky {
    height: 100vh;
    min-height: 390px;
    grid-template-columns: 45% 55%;
    grid-template-rows: 1fr;
  }

  .story-copy {
    grid-row: 1;
    grid-column: 1;
    justify-content: center;
    padding: 78px 28px 18px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .story-copy h2 {
    margin: 5px 0 10px;
    font-size: 32px;
  }

  .story-steps {
    min-height: 128px;
  }

  .story-step {
    padding: 11px 0;
  }

  .step-text strong {
    font-size: 17px;
  }

  .step-text small {
    font-size: 11px;
  }

  .story-visual {
    grid-row: 1;
    grid-column: 2;
  }

  .story-frame {
    width: min(520px, calc(100% - 44px));
    max-height: calc(100vh - 44px);
  }

  .story-frame.is-active {
    transform: translateY(8px);
  }

  .story-frame img {
    max-height: calc(100vh - 44px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    transform: none !important;
  }
}
