:root {
  --ink: #0a1328;
  --paper: #f6f7f8;
  --gold: #e0c04b;
  --red: #cf1234;
  --green: #149947;
  --muted: #68738a;
  --line: #d9dde5;
}

* {
  box-sizing: border-box;
}

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;
}

.beta-checkout-banner {
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px clamp(20px, 4vw, 56px);
  text-align: center;
}

.beta-checkout-banner p {
  margin: 0;
}

.beta-checkout-banner code {
  background: rgb(255 255 255 / 65%);
  border-radius: 3px;
  font: 700 13px ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 2px 5px;
  white-space: nowrap;
}

.hero {
  align-items: end;
  background-color: #1a2234;
  background-image:
    linear-gradient(90deg, rgba(10, 19, 40, .99) 0%, rgba(10, 19, 40, .94) 62%, rgba(10, 19, 40, .78) 100%),
    url("arteta-epic-preview.75d98da5b93c.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: calc(82svh - 54px);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 6vw, 88px);
}

.hero-content {
  max-width: 1100px;
  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 {
  background: var(--red);
  clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 84px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: .92;
  margin: 10px 0 26px;
  max-width: 100%;
  padding: .12em .48em .16em;
  white-space: nowrap;
  width: fit-content;
}

.hero-product-line {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  line-height: 1.25;
  margin: 0 0 22px;
  max-width: none;
}

.hero-copy {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  margin-inline: 0;
  width: min(100%, 72ch);
}

.hero-copy p {
  margin: 0;
}

.hero-copy > p + p {
  margin-top: 0.6em;
}

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

.hero-actions {
  margin-top: 28px;
}

.hero-explore-button {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 78%, #fff);
  border-radius: 6px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: .04em;
  min-width: 190px;
  text-transform: uppercase;
}

.purchase-cta {
  align-items: center;
  background: var(--ink);
  border: 1px solid color-mix(in srgb, var(--gold) 72%, transparent);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 156px;
  margin-inline: auto;
  max-width: 680px;
  min-height: 96px;
  overflow: hidden;
  width: 100%;
}

.purchase-note {
  align-content: center;
  align-self: stretch;
  border-inline: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  color: var(--gold);
  display: grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  gap: 2px;
  justify-items: center;
  line-height: 1.35;
  margin: 0;
  min-width: 0;
  padding: 14px 24px;
  text-align: center;
}

.purchase-note span {
  display: block;
  white-space: nowrap;
}

.purchase-cta > strong {
  align-self: stretch;
  color: var(--gold);
  display: grid;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding: 16px;
  place-items: center;
}

.purchase-cta .buy-button {
  align-self: stretch;
  border-radius: 0;
  min-width: 0;
  padding-inline: 20px;
}

.purchase-access-link {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 14px auto 0;
  max-width: 680px;
  text-align: center;
}

.purchase-access-link a {
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.purchase-access-link a:hover,
.purchase-access-link a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.purchase-access-link a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.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;
}

.free-season-preview {
  max-width: 920px;
  padding-block: clamp(64px, 9vw, 112px);
  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: 19px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 700px;
}

.free-season-preview-button {
  border: 1px solid color-mix(in srgb, var(--gold) 72%, transparent);
  border-radius: 6px;
  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 {
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 15px 22px;
  text-decoration: none;
}

.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 {
  background: #fff;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) clamp(16px, 3vw, 48px);
}

.poster-showcase-copy {
  margin: 0 auto;
  max-width: 1180px;
}

.poster-showcase h2 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1;
  margin: 12px 0 24px;
}

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

.poster-showcase-copy > p:last-child {
  color: #3f4a61;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  margin: 0;
  max-width: 62ch;
}

.epic-poster-preview {
  margin: clamp(38px, 6vw, 72px) 0 0;
}

.poster-zoom-frame {
  aspect-ratio: 1.414 / 1;
  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-zoom-frame img {
  animation: poster-wander 24s cubic-bezier(.45, 0, .25, 1) infinite alternate;
  display: block;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  width: 100%;
  will-change: transform;
}

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

@keyframes poster-wander {
  0%, 16% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  52% {
    transform: translate3d(-7%, 5%, 0) scale(1.45);
  }
  100% {
    transform: translate3d(8%, -7%, 0) scale(1.7);
  }
}

.benefit-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.benefit {
  background: #fff;
  border-top: 4px solid var(--red);
  min-height: 230px;
  padding: clamp(26px, 3vw, 38px);
}

.benefit:nth-child(2) {
  border-top-color: var(--green);
}

.benefit:nth-child(3) {
  border-top-color: var(--gold);
}

.benefit:nth-child(4) {
  border-top-color: var(--ink);
}

.benefit > span {
  color: var(--muted);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.benefit h3,
.ownership-grid h3 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  margin: 16px 0 12px;
}

.benefit p,
.ownership-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.discovery-section {
  border-top: 1px solid var(--line);
  margin-top: clamp(68px, 9vw, 112px);
  padding-top: clamp(54px, 7vw, 82px);
}

.discovery-section h2,
.proof-heading h2 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

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

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

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

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

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

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

.discovery-grid p,
.proof-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.proof-heading {
  margin-top: 0;
  max-width: 900px;
}

.proof-heading > p:last-child {
  margin-bottom: 0;
}

.marketing-bento {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-inline: 0;
  margin-top: clamp(44px, 7vw, 76px);
  max-width: 900px;
  padding: 0;
}

.marketing-bento-item {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(10, 19, 40, 0.18);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.marketing-bento-item-01 {
  grid-column: span 7;
  min-height: clamp(380px, 34vw, 540px);
}

.marketing-bento-item-02 {
  grid-column: span 5;
  height: clamp(380px, 34vw, 540px);
}

.marketing-bento-item-03 {
  grid-column: span 4;
  min-height: clamp(300px, 28vw, 420px);
}

.marketing-bento-item-04 {
  grid-column: span 8;
  min-height: clamp(300px, 28vw, 420px);
}

.marketing-bento-item-05 {
  grid-column: 1 / -1;
  height: clamp(380px, 34vw, 540px);
}

.marketing-bento-copy {
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  flex: 0 0 auto;
  padding: clamp(18px, 2vw, 28px);
}

.marketing-bento-media {
  align-items: center;
  background: #fff;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 0;
  padding: clamp(12px, 1.5vw, 24px);
}

.marketing-bento-image {
  border-radius: 4px;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.marketing-bento-item-02 .marketing-bento-media {
  --marketing-bento-image-inset: clamp(12px, 1.5vw, 24px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.marketing-bento-item-02 .marketing-bento-image {
  height: calc(100% - var(--marketing-bento-image-inset) - var(--marketing-bento-image-inset));
  left: var(--marketing-bento-image-inset);
  position: absolute;
  top: var(--marketing-bento-image-inset);
  width: calc(100% - var(--marketing-bento-image-inset) - var(--marketing-bento-image-inset));
}

.marketing-bento-media-pair {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
}

.marketing-bento-media-pair .marketing-bento-image {
  height: 100%;
  min-height: 0;
  width: 100%;
}

.marketing-bento-copy h3 {
  font-size: 23px;
  margin: 0 0 12px;
}

.marketing-bento-copy p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.craft-band {
  background: #fff;
}

.craft-intro {
  color: #3f4a61;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
}

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

.craft-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.craft-grid strong {
  display: block;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 22px;
}

.craft-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.files-band {
  background: var(--ink);
  color: #fff;
}

.files-band .section-intro {
  color: #c7cedc;
}

.files-band .purchase-access-link {
  color: #c7cedc;
}

.ownership-grid {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.ownership-grid article {
  min-height: 190px;
  padding: clamp(26px, 3vw, 38px) 0;
}

.ownership-grid article:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .16);
  padding-right: clamp(24px, 4vw, 54px);
}

.ownership-grid article:nth-child(even) {
  padding-left: clamp(24px, 4vw, 54px);
}

.ownership-grid article:nth-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.ownership-grid h3 {
  margin-top: 0;
}

.ownership-grid p {
  color: #c7cedc;
}

.ownership-purchase {
  margin-top: 40px;
}

.creator-band {
  background: #fff;
}

.creator-band .section {
  max-width: 920px;
}

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

.creator-copy p {
  margin: 0;
}

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

.creator-purchase {
  margin-top: 32px;
}

.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 40px;
  grid-template-columns: repeat(2, max-content);
  justify-self: center;
}

.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: 1000px) {
  .marketing-bento {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-bento-item {
    grid-column: auto;
    min-height: 360px;
  }

  .marketing-bento-item-01 {
    grid-column: 1 / -1;
  }

  .marketing-bento-item-04 {
    grid-column: 1 / -1;
  }

  .marketing-bento-item-05 {
    grid-column: 1 / -1;
  }

  .marketing-bento-image {
    height: auto;
    max-height: 620px;
  }
}

@media (max-width: 760px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(10, 19, 40, .84) 0%, rgba(10, 19, 40, .92) 48%, rgba(10, 19, 40, .99) 100%),
      url("arteta-epic-preview.75d98da5b93c.jpg");
    min-height: auto;
    padding-top: 40px;
  }

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

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

  .poster-showcase {
    padding-inline: 12px;
  }

  .poster-showcase-copy {
    padding-inline: 8px;
  }

  .poster-showcase h2 {
    font-size: clamp(26px, 8.4vw, 40px);
  }

  .benefit-grid,
  .discovery-grid,
  .craft-grid,
  .ownership-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit {
    min-height: 0;
  }

  .ownership-grid article,
  .ownership-grid article:nth-child(odd),
  .ownership-grid article:nth-child(even) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    border-right: 0;
    min-height: 0;
    padding: 28px 0;
  }

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

  .marketing-bento {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-bento-item,
  .marketing-bento-item-01 {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .marketing-bento-item-03 {
    display: none;
  }

  .marketing-bento-image {
    height: auto;
    max-height: none;
  }

  .hero h1 {
    font-size: 48px;
    margin-bottom: 22px;
    padding-inline: .36em;
  }

  .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: minmax(0, 1fr);
  }

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

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

}

@media (min-width: 761px) and (max-width: 900px) {
  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 420px) {
  .purchase-cta {
    grid-template-columns: 78px minmax(0, 1fr) 92px;
    min-height: 82px;
  }

  .purchase-note {
    font-size: 13px;
    padding: 10px 8px;
  }

  .purchase-cta > strong {
    font-size: 20px;
    padding: 8px;
  }

  .purchase-cta .buy-button {
    font-size: 14px;
    padding: 12px 8px;
  }

  .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: 42px;
  }

}

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

  .purchase-note {
    font-size: 11px;
  }

  .purchase-cta > strong {
    font-size: 18px;
  }

  .purchase-cta .buy-button {
    font-size: 13px;
  }
}

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

  .poster-zoom-frame img {
    animation: none;
  }
}
