:root {
  --black: #0a0a0a;
  --white: #f7f7f3;
  --grey: #767670;
  --line: 1px solid var(--black);
  --page: min(100% - 48px, 1440px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.shell {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: var(--line);
}

.nav-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  width: max-content;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.logo::before {
  content: "●";
  margin-right: 8px;
  font-size: .72em;
  vertical-align: .1em;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a,
.nav-contact {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-contact {
  justify-self: end;
}

.page-hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 0 30px;
}

.page-hero h1 {
  align-self: flex-end;
  max-width: 12ch;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .76;
  text-align: right;
  text-transform: uppercase;
}

.page-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.page-hero-bottom p {
  max-width: 38ch;
  justify-self: end;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -.02em;
  line-height: 1.25;
}

.content-section {
  border-top: var(--line);
  padding: 100px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 80px;
}

.section-intro h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -.06em;
  line-height: .92;
}

.section-intro p {
  max-width: 46ch;
  justify-self: end;
  font-size: 1.2rem;
}

.rows {
  border-bottom: var(--line);
}

.game-thumbnail {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
  border-bottom: var(--line);
  object-fit: cover;
}

.row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 24px;
  border-top: var(--line);
  padding: 28px 0;
}

.row-number,
.row-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.row h2,
.row h3 {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .92;
}

.row-copy {
  max-width: 40ch;
  justify-self: end;
}

.row-copy p + p {
  margin-top: 18px;
}

.row-copy .row-label {
  display: block;
  margin-top: 44px;
}

.support-link {
  display: inline-block;
  margin-top: 44px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.statement {
  max-width: 20ch;
  font-size: clamp(2.6rem, 6.2vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .95;
}

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

.fact {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -.06em;
}

.contact-layout {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 46px 0 30px;
}

.contact-heading {
  max-width: 7ch;
  margin-top: 10vh;
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .75;
  text-transform: uppercase;
}

.email-link {
  align-self: end;
  width: max-content;
  max-width: 100%;
  font-size: clamp(2rem, 7.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .9;
  overflow-wrap: anywhere;
  text-underline-offset: .1em;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 80px;
  border-top: var(--line);
  padding-top: 20px;
}

.contact-meta p {
  max-width: 35ch;
  justify-self: end;
}

.legal-hero {
  padding: 70px 0 80px;
}

.legal-hero h1 {
  max-width: 9ch;
  margin-top: 18vh;
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}

.legal-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  border-top: var(--line);
  padding-top: 18px;
}

.legal-body {
  border-top: var(--line);
  padding: 90px 0 120px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  list-style: none;
}

.legal-nav li + li {
  margin-top: 10px;
}

.legal-nav a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-copy {
  min-width: 0;
  max-width: 760px;
  overflow-wrap: anywhere;
}

.legal-copy section + section {
  margin-top: 70px;
}

.legal-copy section {
  scroll-margin-top: 110px;
}

.legal-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.legal-copy p + p,
.legal-copy ul + p,
.legal-copy p + ul {
  margin-top: 16px;
}

.legal-copy ul {
  padding-left: 1.2em;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-copy a {
  text-underline-offset: .15em;
}

footer {
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding: 24px 0 30px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-self: end;
  list-style: none;
}

.footer-inner > span:nth-child(2) {
  display: none;
}

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

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 800px) {
  :root {
    --page: min(100% - 32px, 1440px);
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .page-hero {
    min-height: 72svh;
  }

  .page-hero h1 {
    align-self: flex-start;
    width: 100%;
    font-size: clamp(4rem, 22vw, 8rem);
    overflow-wrap: normal;
    text-align: left;
  }

  .page-hero-bottom,
  .section-intro,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .page-hero-bottom p,
  .section-intro p,
  .contact-meta p {
    justify-self: start;
  }

  .content-section {
    padding: 75px 0;
  }

  .row {
    grid-template-columns: 42px 1fr;
  }

  .row-copy {
    grid-column: 2;
    justify-self: start;
  }

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

  .fact,
  .fact:first-child {
    min-height: 160px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .contact-layout {
    min-height: calc(100svh - 62px);
  }

  .contact-heading {
    font-size: clamp(4rem, 23vw, 8rem);
  }

  .legal-hero h1 {
    margin-top: 14vh;
  }

  .legal-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-body {
    padding: 70px 0 90px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .legal-nav {
    position: static;
    columns: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    gap: 18px;
    justify-self: start;
    flex-wrap: wrap;
  }
}

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

  * {
    transition: none !important;
  }
}
