:root {
  --ink: #0a1328;
  --paper: #f6f7f8;
  --gold: #e0c04b;
  --red: #cf1234;
  --green: #149947;
  --muted: #68738a;
  --line: #d9dde5;
  --site-nav-height: 54px;
  --scroll-description-size: clamp(20px, 1.7vw, 24px);
  --scroll-description-line-height: 1.34;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-nav {
  --nav-background: rgb(10 19 40);
  --nav-logo: rgb(224 192 75);
  align-items: center;
  background: var(--nav-background);
  border-bottom: 1px solid color-mix(in srgb, var(--nav-logo) 40%, transparent);
  box-shadow: 0 .25rem 1.25rem color-mix(in srgb, var(--nav-background) 70%, transparent);
  color: #fff;
  display: flex;
  height: 54px;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 48px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.site-nav a {
  text-decoration: none;
}

.site-nav-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.site-nav-brand > svg {
  color: var(--nav-logo);
  height: 32px;
  width: 32px;
}

.site-nav-brand-copy {
  align-items: baseline;
  display: inline-flex;
  gap: 10px;
}

.site-nav-wordmark {
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
}

.site-nav-edition {
  color: var(--nav-logo);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:focus-visible {
  outline: 3px solid var(--nav-logo);
  outline-offset: 3px;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(224, 192, 75, .13), transparent 28rem),
    linear-gradient(180deg, #0d1730 0%, var(--ink) 58%, #050914 100%);
  color: #fff;
  display: grid;
  min-height: calc(100svh - 54px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px) clamp(20px, 6vw, 88px);
  perspective: 1100px;
  place-items: center;
  position: relative;
}

.hero-content {
  display: grid;
  gap: clamp(36px, 5vw, 88px);
  grid-template-areas:
    "copy visual"
    "actions visual";
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
  justify-items: stretch;
  max-width: min(1480px, 100%);
  text-align: center;
  width: 100%;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0;
  text-align: left;
}

.hero h1 {
  animation: title-approach 1250ms cubic-bezier(.16, 1, .3, 1);
  background: var(--red);
  clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
  color: #fff;
  display: inline-grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(56px, 5vw, 84px);
  font-weight: 700;
  justify-items: center;
  letter-spacing: 0;
  line-height: .86;
  margin: 0;
  max-width: 100%;
  padding: .15em .4em .19em;
  text-align: center;
  white-space: normal;
  width: min(100%, 760px);
}

.hero h1 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  width: auto;
}

.hero-scroll-cue {
  align-items: center;
  animation: scroll-cue-in 550ms ease-out 1200ms;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 84%, transparent);
  border-radius: 999px;
  bottom: clamp(64px, 11svh, 104px);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  box-shadow: 0 0 32px color-mix(in srgb, var(--gold) 22%, transparent);
  text-decoration: none;
  translate: -50% 0;
  width: 54px;
}

.hero-scroll-cue span {
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  display: block;
  height: 15px;
  transform: translateY(-3px) rotate(45deg);
  width: 15px;
}

.has-landing-motion.hero-title-settled .hero h1 {
  animation: none;
  opacity: 1;
  transform: none;
}

.hero-product-line {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 650;
  line-height: 1.25;
  margin: 0;
  max-width: none;
  text-align: center;
}

.hero-kicker {
  color: var(--gold);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.hero-copy-panel {
  align-self: end;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-area: copy;
  justify-items: center;
  max-width: 760px;
  min-width: 0;
  text-align: center;
  width: 100%;
}

.hero-copy {
  display: grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: var(--scroll-description-size);
  font-weight: 400;
  gap: clamp(10px, 1.4vw, 14px);
  justify-items: center;
  line-height: 1.55;
  max-width: min(100%, 760px);
  width: 100%;
}

.hero-copy p {
  color: #c7cedc;
  line-height: var(--scroll-description-line-height);
  margin: 0;
  text-align: center;
}

.hero-copy-mobile {
  display: none;
}

.hero-copy-closing {
  margin-top: 16px;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(2px, .8vw, 8px);
}

.hero-actions .button {
  font-size: clamp(13px, 1.6vw, 16px);
  min-height: 54px;
  padding: 0 clamp(18px, 2.8vw, 30px);
  white-space: nowrap;
}

.hero-action-panel {
  align-self: start;
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-area: actions;
  justify-items: center;
  max-width: 760px;
  min-width: 0;
  text-align: center;
  width: 100%;
}

.hero-product-visual {
  align-self: center;
  display: grid;
  gap: 10px;
  grid-area: visual;
  justify-items: end;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.hero-product-picture {
  aspect-ratio: 1 / 1.12;
  background: color-mix(in srgb, var(--ink) 62%, #fff);
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  display: block;
  overflow: hidden;
  width: min(100%, 660px);
}

.hero-product-picture img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  width: 100%;
}

.hero-product-visual figcaption {
  color: color-mix(in srgb, #fff 68%, transparent);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.35;
  margin: 0;
  max-width: 660px;
  text-align: right;
}

.scroll-page {
  align-items: center;
  display: grid;
  grid-template-rows: minmax(min-content, 1fr) auto;
  justify-items: center;
  min-height: calc(100svh - var(--site-nav-height));
  overflow: visible;
  padding:
    clamp(42px, 6vw, 84px)
    clamp(20px, 5vw, 72px)
    clamp(86px, 10svh, 112px);
  position: relative;
  scroll-margin-top: var(--site-nav-height);
}

.scroll-page-inner {
  align-self: center;
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
  justify-items: center;
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
  width: min(100%, 1080px);
}

.scroll-page-inner.hero-content {
  max-width: min(1480px, 100%);
  width: 100%;
}

.hero,
.season-analysis-stage,
.look-closer-stage,
.launch-price-stage {
  background: var(--ink);
  color: #fff;
  perspective: 1000px;
}

.hero-purchase-caption {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.45;
  margin: 0;
  max-width: 820px;
  text-align: center;
}

.hero-preview-copy {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  margin: 0;
}

.hero-preview-copy a {
  color: #fff;
  text-decoration-color: var(--gold);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
}

.hero-preview-copy a:hover,
.hero-preview-copy a:focus-visible {
  color: var(--gold);
}

.player-card-stage {
  background: #fff;
  color: var(--ink);
}

.poster-showcase {
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.poster-showcase h2,
.season-analysis-copy h2,
.player-card-stage h2,
.look-closer-stage h2,
.creator-stage h2,
.launch-price-stage h2 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(46px, 7vw, 72px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.season-analysis-copy {
  gap: clamp(20px, 2.4svh, 30px);
}

.season-analysis-copy p,
.player-card-stage-inner > p {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: var(--scroll-description-size);
  line-height: var(--scroll-description-line-height);
  margin: 0;
  max-width: 900px;
}

.player-card-stage-inner > p {
  color: #3f4a61;
}

.season-preview-copy a {
  color: #fff;
  text-decoration-color: var(--gold);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
}

.season-preview-copy a:hover,
.season-preview-copy a:focus-visible {
  color: var(--gold);
}

.look-closer-inner {
  max-width: 1180px;
  width: min(100%, 1180px);
}

.look-closer-stage .look-closer-intro {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: var(--scroll-description-size);
  line-height: var(--scroll-description-line-height);
  margin: 0;
}

.look-closer-stage .look-closer-grid {
  margin-top: clamp(12px, 2svh, 26px);
  text-align: left;
}

.look-closer-stage .look-closer-grid article {
  background: color-mix(in srgb, #fff 7%, transparent);
  border: 1px solid color-mix(in srgb, #fff 14%, transparent);
  border-top: 4px solid var(--gold);
  padding: clamp(22px, 3vw, 30px);
}

.look-closer-stage .look-closer-grid strong {
  color: #fff;
}

.look-closer-stage .look-closer-grid p {
  color: #c7cedc;
}

.creator-stage {
  background: #fff;
  color: var(--ink);
}

.creator-inner {
  max-width: 920px;
  text-align: left;
  width: min(100%, 920px);
}

.creator-inner .section-label,
.creator-inner h2 {
  justify-self: start;
}

.stage-scroll-cue {
  align-items: center;
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 84%, transparent);
  border-radius: 999px;
  box-shadow: 0 0 26px color-mix(in srgb, var(--gold) 20%, transparent);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  justify-self: center;
  margin-top: clamp(20px, 3vw, 34px);
  text-decoration: none;
  width: 52px;
}

.scroll-next {
  align-self: end;
  grid-row: 2;
  position: relative;
  z-index: 2;
}

.stage-scroll-cue span {
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  display: block;
  height: 14px;
  transform: translateY(-3px) rotate(45deg);
  width: 14px;
}

.opening-purchase-stage {
  background: var(--ink);
  color: #fff;
  display: grid;
  justify-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.scroll-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.has-landing-motion .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, -260px) scale(.74);
  transform-origin: 50% 50%;
  transition:
    opacity 700ms ease,
    transform 1100ms cubic-bezier(.16, 1, .3, 1);
}

.has-landing-motion .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes title-approach {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, -900px) scale(.2);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scroll-cue-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-cta {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-inline: auto;
  max-width: 760px;
  text-align: left;
  width: 100%;
}

.purchase-copy {
  min-width: 0;
}

.purchase-price {
  color: var(--gold);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.purchase-price em {
  font-style: italic;
}

.purchase-deadline {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  margin: 10px 0 0;
  max-width: 58ch;
}

.purchase-cta .buy-button {
  align-self: center;
  min-height: 56px;
  min-width: 150px;
  padding: 0 28px;
}

.launch-price-stage .purchase-cta {
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 820px;
  text-align: center;
}

.launch-price-stage .purchase-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.launch-price-stage .purchase-price {
  font-size: clamp(48px, 8vw, 84px);
}

.launch-price-stage .purchase-deadline {
  color: #c7cedc;
  font-size: var(--scroll-description-size);
  line-height: var(--scroll-description-line-height);
  margin: 0;
  max-width: 760px;
}

.launch-price-stage .purchase-inclusions,
.launch-price-stage .purchase-assurance {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
}

.launch-price-stage .buy-button {
  min-height: 62px;
  min-width: min(100%, 240px);
}

.stat-band {
  background: color-mix(in srgb, var(--ink) 22%, var(--gold));
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-band div {
  background: var(--gold);
  padding: clamp(18px, 2.25vw, 28px) clamp(16px, 3vw, 36px);
  text-align: center;
}

.stat-band strong,
.stat-band span {
  display: block;
}

.free-season-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  justify-items: center;
  min-height: calc(100svh - 54px);
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px);
  scroll-margin-top: var(--site-nav-height);
}

.free-season-preview {
  display: grid;
  justify-items: center;
  max-width: 920px;
  text-align: center;
}

.free-season-preview .section-label {
  margin: 0;
}

.free-season-preview h2 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 12px 0 22px;
}

.free-season-preview > p:not(.section-label) {
  color: #c7cedc;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 840px;
}

.free-season-preview-button {
  border: 1px solid color-mix(in srgb, var(--gold) 72%, transparent);
  border-radius: 6px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  margin-top: 28px;
  text-transform: uppercase;
}

.stat-band strong {
  align-items: baseline;
  display: flex;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  gap: .22em;
  justify-content: center;
  line-height: 1;
}

.stat-band strong small {
  font-size: .45em;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-band span {
  font-size: 12px;
  font-weight: 750;
  margin-top: 5px;
  text-transform: uppercase;
}

.button {
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  min-height: 50px;
  padding: 15px 22px;
  text-decoration: none;
}

.button.free-season-preview-button {
  flex: 0 0 auto;
  font-size: clamp(14px, 4vw, 16px);
  height: 56px;
  line-height: 1;
  max-height: 56px;
  max-width: calc(100svw - 48px);
  min-height: 56px;
  padding: 0 clamp(18px, 5vw, 28px);
  white-space: nowrap;
  width: fit-content;
}

.button.free-season-preview-button:hover,
.button.free-season-preview-button:focus-visible {
  background: color-mix(in srgb, var(--gold) 84%, #fff);
}

.button:hover,
.button:focus-visible {
  background: #fff;
}

.button-secondary {
  background: var(--ink);
  color: #fff;
}

.site-nav-buy,
.buy-button {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 9999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: .05em;
  line-height: 1;
  min-height: auto;
  min-width: 76px;
  padding: 11px 16px;
  text-align: center;
  text-decoration: none;
}

.buy-button {
  border: 0;
  flex: 0 0 auto;
  font-size: 18px;
  min-width: 114px;
  padding: 16.5px 24px;
  white-space: nowrap;
}

.site-nav-buy:hover,
.site-nav-buy:focus-visible,
.buy-button:hover,
.buy-button:focus-visible {
  background: color-mix(in srgb, var(--gold) 82%, #fff);
  color: var(--ink);
}

.buy-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(68px, 9vw, 120px) clamp(20px, 4vw, 48px);
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  margin: 12px 0 20px;
  max-width: 100%;
}

.section-intro {
  color: #3f4a61;
  font-size: 19px;
  line-height: 1.55;
  max-width: 760px;
}

#inside .section-intro {
  max-width: 820px;
}

#inside {
  isolation: isolate;
  position: relative;
}

#inside::before {
  background: #eef1f5;
  content: "";
  inset: 0 calc(50% - 50vw);
  position: absolute;
  z-index: -1;
}

.poster-showcase {
  contain-intrinsic-size: auto calc(100svh - var(--site-nav-height));
  content-visibility: auto;
  overflow: hidden;
  perspective: 1200px;
}

.poster-showcase::before {
  background:
    linear-gradient(
      180deg,
      rgba(10, 19, 40, .92) 0%,
      rgba(10, 19, 40, .82) 44%,
      rgba(10, 19, 40, .94) 100%
    ),
    url("/assets/arteta-epic-preview.127067f2bfd7.jpg") center / cover no-repeat;
  content: "";
  filter: saturate(.9) contrast(1.05);
  inset: 0;
  position: absolute;
  z-index: 0;
}

.poster-showcase-inner {
  max-width: 1180px;
  position: relative;
  width: min(100%, 1180px);
  z-index: 1;
}

.poster-showcase .stage-scroll-cue {
  z-index: 1;
}

.poster-showcase h2 {
  background: var(--red);
  box-sizing: border-box;
  clip-path: polygon(.55em 0, 100% 0, calc(100% - .55em) 100%, 0 100%);
  color: #fff;
  display: inline-block;
  line-height: .98;
  max-width: 100%;
  padding: .13em 1.05em .17em;
}

.poster-showcase h2 span {
  display: block;
}

.poster-showcase-inner > p {
  color: #eef2f8;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: var(--scroll-description-size);
  line-height: var(--scroll-description-line-height);
  margin: 0;
  max-width: 760px;
}

.epic-poster-preview {
  margin: 0;
  width: min(680px, calc(100svw - 96px), calc((100svh - 430px) * .907));
}

.poster-preview-frame {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(10, 19, 40, .22);
  overflow: hidden;
}

.poster-preview-frame picture {
  display: block;
}

.poster-preview-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.player-card-stage {
  perspective: 1000px;
}

.player-card-stage-inner {
  max-width: 1080px;
  width: min(100%, 1080px);
}

.season-story-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: clamp(4px, 1svh, 10px) 0;
  max-width: 980px;
  padding: 0;
  text-align: left;
  width: min(100%, 980px);
}

.season-story-list li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  display: grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: var(--scroll-description-size);
  gap: 18px;
  grid-template-columns: 124px minmax(0, 1fr);
  line-height: 1.2;
  padding-bottom: 10px;
}

.season-story-list span {
  align-items: center;
  background: var(--red);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  color: #fff;
  display: inline-grid;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 1.6em;
  padding: 0 1em;
  text-align: center;
}

.season-story-list li:last-child span {
  background: var(--gold);
}

.player-image-grid {
  display: grid;
  align-items: start;
  gap: clamp(12px, 1.6vw, 18px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  width: min(100%, clamp(320px, 88vw, 1180px));
}

.player-image-frame {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(10, 19, 40, .18);
  margin: 0;
  overflow: hidden;
}

.player-image-pair {
  align-items: start;
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.player-image-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.poster-purchase {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: clamp(34px, 5vw, 64px) auto 0;
  max-width: 1180px;
  width: 100%;
}

.look-closer-intro {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.look-closer-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.look-closer-grid article {
  border-top: 4px solid var(--gold);
  padding-top: 22px;
}

.look-closer-grid article:nth-child(2) {
  border-top-color: #173b7d;
}

.look-closer-grid article:nth-child(3) {
  border-top-color: var(--green);
}

.look-closer-grid strong {
  display: block;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.look-closer-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
}

.creator-copy {
  color: #3f4a61;
  font-size: 19px;
  line-height: 1.65;
}

.creator-copy p {
  margin: 0;
}

.creator-copy p + p {
  margin-top: 1.25em;
}

.info-shell {
  margin: 0 auto;
  max-width: 760px;
  min-height: calc(100svh - 64px);
  padding: 70px 24px 100px;
}

.info-shell h1 {
  font-size: clamp(40px, 7vw, 66px);
  margin: 12px 0 24px;
}

.info-shell h2 {
  font-size: 25px;
  margin-top: 40px;
}

.info-shell p,
.info-shell li {
  color: #3f4a61;
  font-size: 17px;
  line-height: 1.62;
}

.product-info-shell {
  max-width: 1600px;
  min-height: 0;
  padding:
    clamp(24px, 4vw, 64px)
    clamp(16px, 3vw, 48px)
    clamp(32px, 4vw, 48px);
}

.product-info-title {
  background: var(--red);
  clip-path: polygon(.55em 0, 100% 0, calc(100% - .55em) 100%, 0 100%);
  color: #fff;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .95;
  margin: 0;
  padding: .12em 1em .16em;
}

.product-info-title--utility {
  background: transparent;
  clip-path: none;
  color: var(--ink);
  padding: 0;
}

.product-info-content {
  color: #3f4a61;
  font-size: 16px;
  line-height: 1.75;
  margin-top: clamp(48px, 7vw, 96px);
  max-width: 768px;
}

.product-info-content h2 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.product-info-content p {
  margin: 0;
}

.product-info-content > p + p {
  margin-top: 24px;
}

.product-info-content > * + * {
  margin-top: 24px;
}

.product-info-content a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: .2rem;
}

.legal-document-links {
  margin-top: 32px;
}

.legal-document-links > p + p {
  margin-top: 24px;
}

.product-info-content .legal-document-link {
  font-weight: 400;
  text-decoration-thickness: 4px;
  text-underline-offset: .3rem;
}

.legal-document-link:hover,
.legal-document-link:focus-visible {
  color: var(--gold);
}

.legal-document-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.legal-document-links + .legal-publisher-title {
  margin-top: clamp(48px, 6vw, 72px);
}

.product-faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.product-faq-nav a {
  font-size: 14px;
  font-weight: 700;
}

.product-faq-group {
  scroll-margin-top: 96px;
}

.product-faq-group + .product-faq-group {
  margin-top: 64px;
}

.product-faq-group > h2 {
  border-bottom: 4px solid var(--gold);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 32px;
  letter-spacing: .01em;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.product-faq-group-list > section {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.product-faq-group-list h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.product-faq-group-list p,
.product-faq-group-list ul {
  margin-top: 8px;
}

.product-faq-group-list p,
.product-faq-group-list li {
  font-size: 1.0625rem;
}

.product-faq-group-list ul {
  margin-bottom: 0;
  padding-left: 1.25em;
}

.legal-document h2 {
  padding-bottom: 12px;
  padding-top: clamp(32px, 5vw, 48px);
  scroll-margin-top: 96px;
}

.legal-document ul {
  padding-left: 1.25em;
}

.status-panel {
  background: #fff;
  border-top: 4px solid var(--gold);
  margin-top: 34px;
  padding: 28px;
}

.checkout-confirmation[hidden] {
  display: none;
}

.checkout-confirmation-copy p {
  margin: 0 0 18px;
}

.checkout-confirmation-copy .checkout-signoff {
  margin-bottom: 0;
}

.checkout-complete-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
}

.checkout-consent {
  align-items: start;
  cursor: pointer;
  display: grid;
  font-size: 15px;
  gap: 10px;
  grid-template-columns: auto 1fr;
  line-height: 1.5;
}

.checkout-consent input {
  height: 20px;
  margin: 2px 0 0;
  width: 20px;
}

.checkout-open-button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 9999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  justify-self: start;
  letter-spacing: .05em;
  line-height: 1;
  min-height: 44px;
  padding: 12px 18px;
  text-transform: uppercase;
  width: min(100%, 280px);
}

.checkout-open-button:hover,
.checkout-open-button:focus-visible {
  background: color-mix(in srgb, var(--ink) 70%, var(--gold));
}

.checkout-open-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.checkout-open-button:disabled {
  cursor: wait;
  opacity: .65;
}

.checkout-status-slot {
  min-height: 5rem;
  padding-top: 6px;
}

.checkout-status-slot p {
  margin: 0;
}

.site-footer {
  --footer-background: rgb(10 19 40);
  --footer-highlight: rgb(224 192 75);
  --footer-text: rgb(255 255 255);
  align-items: center;
  background: var(--footer-background);
  border-top: 1px solid color-mix(in srgb, var(--footer-highlight) 40%, transparent);
  color: var(--footer-text);
  display: grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  gap: 32px clamp(32px, 5vw, 96px);
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 216px;
  padding: clamp(32px, 4vw, 64px);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer-brand {
  justify-self: start;
}

.site-footer-brand-link {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.site-footer-brand-link svg {
  color: var(--footer-highlight);
  height: 44px;
  width: 44px;
}

.site-footer-brand-link span {
  font-size: 36px;
  font-weight: 650;
  line-height: 1;
}

.site-footer-brand > p {
  color: color-mix(in srgb, var(--footer-text) 68%, transparent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  font-size: 14px;
  font-weight: 650;
  gap: 12px 48px;
  grid-template-columns: repeat(2, max-content);
  justify-self: center;
}

.site-footer-link-column {
  display: grid;
  gap: 12px;
  grid-template-rows: repeat(4, minmax(1.15em, auto));
}

.site-footer-link-placeholder {
  display: block;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--footer-highlight);
}

.site-footer a:focus-visible {
  outline: 3px solid var(--footer-highlight);
  outline-offset: 3px;
}

.site-footer-disclaimer {
  border-top: 1px solid color-mix(in srgb, var(--footer-text) 16%, transparent);
  color: color-mix(in srgb, var(--footer-text) 55%, transparent);
  font-size: 11px;
  grid-column: 1 / -1;
  line-height: 1.45;
  margin: 8px 0 0;
  padding-top: 16px;
}

.site-footer-company {
  color: color-mix(in srgb, var(--footer-text) 55%, transparent);
  font-size: 11px;
  grid-column: 1 / -1;
  line-height: 1.45;
  margin: -20px 0 0;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 54px);
    padding-inline: 16px;
  }

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

  .stat-band div {
    align-content: center;
    display: grid;
    min-height: 96px;
    padding-block: 16px;
  }

  .purchase-cta {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    text-align: left;
  }

  .purchase-cta .buy-button {
    width: 100%;
  }

  .poster-showcase {
    min-height: calc(100svh - 54px);
    padding-inline: 24px;
  }

  .poster-showcase-inner {
    gap: 22px;
    padding-inline: 0;
  }

  .has-landing-motion .poster-showcase-inner.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .poster-showcase h2 {
    padding-inline: .9em;
  }

  .free-season-preview > p:not(.section-label) {
    font-size: 20px;
  }

  .epic-poster-preview {
    width: min(calc(100svw - 48px), calc((100svh - 420px) * .907));
  }

  .season-analysis-stage .scroll-page-inner {
    align-self: start;
    gap: 14px;
    padding-top: 10px;
  }

  .season-analysis-copy h2 {
    font-size: 42px;
  }

  .season-story-list {
    gap: 7px;
  }

  .season-story-list li {
    gap: 12px;
    grid-template-columns: 106px minmax(0, 1fr);
    line-height: 1.18;
    padding-bottom: 7px;
  }

  .season-story-list span {
    padding-inline: .75em;
  }

  .player-image-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .player-image-pair {
    gap: 10px;
  }

  .look-closer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: clamp(62px, 16vw, 82px);
    justify-items: center;
    margin-bottom: 0;
    padding-inline: .32em;
    text-align: center;
  }

  .hero-content {
    gap: 16px;
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .hero-copy-panel,
  .hero-action-panel {
    justify-items: center;
    max-width: 100%;
  }

  .hero-copy {
    font-size: clamp(20px, 5.4vw, 24px);
    justify-items: center;
    max-width: 100%;
  }

  .hero-copy p {
    text-align: center;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .hero-product-visual {
    justify-items: center;
    width: 100%;
  }

  .hero-product-picture {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    width: min(100%, calc(100svw - 32px));
  }

  .hero-product-picture img {
    object-position: 44% 46%;
  }

  .hero-product-visual figcaption {
    max-width: min(100%, 34ch);
    text-align: center;
  }

  .hero-actions {
    width: min(100%, 380px);
    justify-content: center;
  }

  .hero-actions .button {
    font-size: 17px;
    width: 100%;
  }

  .hero-purchase-caption {
    text-align: center;
  }

  .scroll-page {
    padding:
      58px
      24px
      92px;
  }

  .hero-scroll-cue {
    bottom: 92px;
    height: 48px;
    width: 48px;
  }

  .site-footer {
    align-items: start;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer-brand,
  .site-footer-links,
  .site-footer-disclaimer,
  .site-footer-company {
    grid-column: 1;
    justify-self: start;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, max-content);
  }

  .site-footer-company {
    margin-top: -20px;
  }

  .checkout-status-slot {
    min-height: 8rem;
  }

}

@media (min-width: 761px) and (max-width: 900px) {
  .hero h1 {
    font-size: clamp(48px, 6vw, 56px);
  }

  .hero-content {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-nav {
    padding-inline: 20px;
  }

  .site-nav-brand-copy {
    gap: 7px;
  }

  .site-nav-wordmark {
    font-size: 24px;
  }

  .site-nav-edition {
    font-size: 9px;
  }

  .site-nav-buy {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 64px);
    margin-bottom: 0;
    padding-inline: .28em;
  }

  .scroll-page,
  .poster-showcase,
  .player-card-stage {
    padding-inline: 18px;
  }

  .poster-showcase {
    min-height: calc(100svh - 54px);
  }

}

@media (min-width: 421px) and (max-width: 520px) {
  .hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 48px;
  }
}

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

  .hero h1,
  .stage-scroll-cue {
    animation: none;
  }

  .poster-showcase {
    min-height: calc(100svh - 54px);
  }

  .has-landing-motion .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
