@font-face {
  font-family: Barlow;
  src: url("/fonts/barlow-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --ink: #111a22;
  --panel: #19252f;
  --line: #34444f;
  --paper: #f4f0e8;
  --muted: #b8c3c9;
  --orange: #ff823d;
  --cyan: #56d8ec;
  --display: Barlow, "Arial Narrow", Impact, sans-serif;
  --body: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 6px;
}
img,
video {
  max-width: 100%;
  display: block;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(42px, 5.2vw, 74px);
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
em {
  font-style: normal;
  color: var(--orange);
}
p {
  color: var(--muted);
}
.section {
  padding: 100px max(6vw, calc((100vw - 1280px) / 2));
  scroll-margin-top: 10px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  color: var(--cyan);
}
.micro {
  font-size: 12px;
}
.skip {
  position: fixed;
  top: 10px;
  left: 16px;
  padding: 12px 22px;
  background: var(--paper);
  color: var(--ink);
  z-index: 20;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.header {
  height: 95px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff16;
  background: #111a22f5;
  position: relative;
  z-index: 5;
  gap: 30px;
}
.brand {
  font-family: var(--display);
  display: inline-flex;
  flex-direction: column;
  line-height: 0.83;
  letter-spacing: -0.03em;
  font-size: 25px;
  transform: skew(-5deg);
}
.brand strong {
  font-size: 32px;
  color: var(--orange);
}
.brand-dot {
  display: inline-block;
  font-size: 18px;
  vertical-align: top;
  margin: 3px 0 0 5px;
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.header nav a:hover,
.footer a:hover {
  color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.languages {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.languages a {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 44px;
}
.languages a[aria-current] {
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 7px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  background: var(--orange);
  color: var(--ink);
  padding: 17px 25px;
  min-height: 56px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 4px 4px 0 #0005;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #ff9d60;
  transform: translateY(-3px);
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button.small {
  padding: 11px 18px;
  min-height: 44px;
  font-size: 12px;
  gap: 20px;
}
.hero {
  position: relative;
  min-height: 680px;
  padding: 100px 6% 115px;
  isolation: isolate;
  display: flex;
  align-items: center;
  max-width: 1680px;
  margin: auto;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 77% 35%, #1b56633b, transparent 55%),
    linear-gradient(115deg, transparent 50%, #ffffff03 50.1%, transparent 51%);
}
.hero-copy {
  width: 57%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(56px, 5.7vw, 90px);
  letter-spacing: -0.028em;
}
.hero h1 span,
.hero h1 em {
  display: block;
}
.hero .intro {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.8;
  margin: 25px 0 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hero .micro {
  margin-top: 20px;
}
.watch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
}
.watch:hover {
  color: var(--cyan);
}
.play-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  padding-left: 2px;
}
.signal {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  margin-right: 10px;
  box-shadow: 0 0 12px #56d8ec66;
}
.hero-art {
  position: absolute;
  width: 65%;
  right: -3%;
  top: 8%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  position: relative;
  mix-blend-mode: lighten;
  mask-image: linear-gradient(to right, transparent, black 12%);
  filter: drop-shadow(0 35px 30px #0003);
}
.hero-art figcaption {
  position: absolute;
  bottom: 12%;
  right: 12%;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.orbit {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid #56d8ec20;
  transform: rotate(-25deg);
  border-radius: 50%;
  top: 5%;
  left: 20%;
  box-shadow:
    0 0 0 60px #56d8ec03,
    0 0 0 120px #56d8ec02;
}
.impact-word {
  position: absolute;
  right: 10%;
  top: 8%;
  font-family: var(--display);
  font-size: 47px;
  transform: rotate(12deg);
  color: var(--orange);
  opacity: 0.7;
}
.hero-coordinate {
  position: absolute;
  left: 6%;
  bottom: 30px;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #70818b;
}
.ticker {
  position: relative;
  z-index: 3;
  background: var(--orange);
  color: var(--ink);
  display: flex;
  justify-content: space-evenly;
  gap: 24px;
  align-items: center;
  padding: 13px 3%;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.015em;
  transform: rotate(-1.6deg);
  width: 102%;
  margin-left: -1%;
  box-shadow: 0 8px 0 #0004;
}
.ticker b {
  font-size: 30px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: end;
  gap: 60px;
}
.section-heading > p {
  max-width: 390px;
  font-size: 15px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 55px;
}
.pillars article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.pillar-number {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 24px;
  color: #80909a;
  margin-bottom: 23px;
}
.pillar-number span {
  color: var(--cyan);
  font-size: 37px;
  line-height: 1;
}
.pillars p {
  font-size: 14px;
  margin-top: 15px;
  max-width: 350px;
}
.vision-note {
  margin-top: 30px;
  color: #91a1ac;
}
.gameplay {
  background: #0c141b;
  position: relative;
  padding-top: 85px;
}
.video-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.video-heading > p:last-child {
  font-size: 14px;
  margin: 25px auto 0;
}
.video-frame {
  max-width: 1000px;
  margin: auto;
  position: relative;
  border: 1px solid #586875;
  box-shadow: 12px 12px 0 #22323b;
  transform: rotate(-0.6deg);
  background: #192c3a;
}
.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.video-frame figcaption {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 11px;
  background: #19252f;
}
.tape {
  position: absolute;
  right: -18px;
  top: -15px;
  padding: 6px 20px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  transform: rotate(4deg);
  z-index: 1;
  letter-spacing: 0.05em;
}
.video-description {
  max-width: 900px;
  margin: 32px auto 0;
  font-size: 12px;
}
.video-description a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.arena {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 65px;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 100px;
}
.arena figure {
  transform: rotate(-3deg);
  border: 6px solid var(--paper);
  background: var(--paper);
  box-shadow: -15px 16px 0 #243942;
}
.arena img {
  width: 100%;
  height: auto;
}
.arena figcaption {
  color: var(--ink);
  font-size: 10px;
  padding: 8px 8px 4px;
}
.arena-copy h2 {
  font-size: clamp(40px, 4.7vw, 64px);
}
.arena-copy p:last-child {
  margin-top: 25px;
  font-size: 14px;
}
.beta {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.beta .eyebrow {
  color: #9e3c0b;
}
.beta-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}
.beta-heading h2 em {
  color: #ad3d06;
}
.beta-heading > p:last-child {
  color: #4d5a62;
  font-size: 15px;
  max-width: 570px;
  margin: 23px auto 0;
}
.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platforms article {
  background: #e7e4de;
  border: 1px solid #cecec8;
  padding: 30px;
}
.platform-icon {
  display: block;
  font-size: 39px;
  line-height: 1;
  margin-bottom: 25px;
}
.platforms h3 {
  font-size: 21px;
}
.platforms article > p:not(.unavailable) {
  font-size: 13px;
  color: #525d63;
  margin: 7px 0 25px;
}
.unavailable {
  font-size: 12px;
  border-top: 1px solid #b5b9b8;
  padding-top: 16px;
  color: #546068;
}
.platform-link {
  font-size: 12px;
  padding: 10px 15px;
  min-height: 44px;
}
.beta-status {
  border-top: 1px solid #c8ccc9;
  margin-top: 36px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px 30px;
}
.beta-status h3 {
  font-size: 17px;
  grid-row: span 2;
}
.beta-status p {
  font-size: 12px;
  color: #4d5a62;
}
.community {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  overflow: clip;
  padding-top: 115px;
  padding-bottom: 115px;
}
.community > div {
  position: relative;
  z-index: 1;
}
.community h2 {
  font-size: clamp(42px, 4.8vw, 67px);
}
.community h2 em {
  color: var(--cyan);
}
.community p:not(.eyebrow) {
  max-width: 550px;
}
.community p:not(.eyebrow, .micro) {
  font-size: 14px;
  margin-top: 25px;
}
.community-action {
  margin: 30px 0 20px;
}
.button.light {
  background: var(--cyan);
}
.button.light:hover {
  background: #93e9f6;
}
.community .unavailable {
  border-color: var(--line);
  color: var(--muted);
}
.community-burst {
  position: absolute;
  right: 3%;
  top: 5%;
  color: #223540;
  font-size: 500px;
  line-height: 1;
  transform: rotate(15deg);
}
.speech {
  font-family: var(--display);
  font-size: 65px;
  line-height: 0.95;
  padding: 25px 30px;
  background: var(--orange);
  color: var(--ink);
  transform: rotate(7deg);
  height: fit-content;
  align-self: center;
  box-shadow: 12px 12px 0 #0004;
  max-width: 300px;
}
.speech:after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 30px;
  border-top: 35px solid var(--orange);
  border-right: 35px solid transparent;
}
.speech span {
  display: block;
  text-align: right;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 70px;
  padding-bottom: 90px;
}
.faq h2 {
  font-size: 43px;
  max-width: 270px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 20px 30px 20px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--orange);
  font-size: 23px;
  top: 13px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 13px;
  padding: 0 25px 22px 0;
}
.footer {
  background: #0c141b;
  padding: 45px 6%;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.footer p {
  font-size: 11px;
  margin-top: 20px;
}
.footer-end {
  text-align: right;
}
.footer-end a {
  font-size: 12px;
  display: inline-block;
  padding: 15px 0;
}
.footer-end span {
  display: inline-block;
}
.media-unavailable {
  opacity: 0.6;
}
@media (min-width: 1600px) {
  .hero {
    padding-left: 120px;
  }
  .hero-copy {
    width: 60%;
  }
}
@media (max-width: 1000px) {
  .header {
    gap: 20px;
  }
  .header nav {
    gap: 20px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero {
    padding-top: 70px;
    padding-bottom: 100px;
    min-height: 630px;
  }
  .hero-copy {
    width: 64%;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-art {
    width: 67%;
    right: -10%;
    top: 15%;
  }
  .hero .intro {
    max-width: 370px;
  }
  .hero-actions {
    gap: 15px;
  }
  .watch {
    max-width: 125px;
  }
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }
  .section-heading {
    gap: 30px;
  }
  .pillars {
    gap: 25px;
  }
  .arena {
    gap: 35px;
  }
  .community {
    gap: 40px;
  }
  .speech {
    font-size: 50px;
  }
  .faq {
    gap: 40px;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 25px;
  }
  .header {
    height: auto;
    min-height: 82px;
    padding: 16px 5%;
    flex-wrap: wrap;
    gap: 18px;
  }
  .brand {
    font-size: 19px;
  }
  .brand strong {
    font-size: 25px;
  }
  .header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
  .header-actions {
    margin-left: auto;
    gap: 10px;
  }
  .header .button {
    padding: 10px 12px;
    font-size: 11px;
    gap: 12px;
  }
  .languages {
    gap: 0;
  }
  .languages a {
    min-width: 30px;
  }
  .hero {
    padding: 43px 6% 35px;
    display: block;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
  }
  .hero h1 {
    font-size: clamp(45px, 10.6vw, 74px);
  }
  .hero .intro {
    font-size: 14px;
    max-width: 450px;
    margin: 22px 0;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero .button {
    padding: 15px 20px;
    font-size: 14px;
    gap: 22px;
  }
  .watch {
    max-width: 140px;
    font-size: 11px;
  }
  .hero .micro {
    font-size: 10px;
    margin-top: 17px;
  }
  .hero-art {
    position: relative;
    width: 115%;
    right: auto;
    top: auto;
    height: auto;
    aspect-ratio: 1.5;
    margin: 3px -7% -10px;
  }
  .hero-art img {
    height: 100%;
    mask-image: none;
  }
  .hero-art figcaption {
    bottom: 2%;
    right: 10%;
    font-size: 8px;
  }
  .impact-word {
    top: 4%;
    font-size: 32px;
  }
  .orbit {
    top: 5%;
  }
  .hero-coordinate {
    display: none;
  }
  .ticker {
    font-size: 19px;
    padding: 12px 20px;
    gap: 17px;
    justify-content: center;
  }
  .ticker span {
    white-space: nowrap;
  }
  .ticker span:nth-of-type(2),
  .ticker b:last-child {
    display: none;
  }
  .ticker b {
    font-size: 23px;
  }
  .section {
    padding: 65px 6%;
  }
  h2 {
    font-size: 46px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    font-size: 14px;
    margin-top: 25px;
    max-width: none;
  }
  .pillars {
    display: block;
    margin-top: 30px;
  }
  .pillars article {
    padding-top: 20px;
    margin-top: 26px;
  }
  .pillar-number {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .pillars h3 {
    font-size: 21px;
  }
  .pillars p {
    max-width: none;
    margin-top: 12px;
  }
  .vision-note {
    font-size: 11px;
  }
  .video-heading {
    text-align: left;
    margin-bottom: 38px;
  }
  .video-heading h2 {
    font-size: 44px;
  }
  .video-heading > p:last-child {
    font-size: 13px;
  }
  .tape {
    font-size: 8px;
    right: -6px;
    padding: 5px 12px;
  }
  .video-frame {
    box-shadow: 6px 6px 0 #22323b;
  }
  .video-frame figcaption {
    padding: 10px;
    font-size: 9px;
  }
  .video-description {
    font-size: 11px;
    line-height: 1.7;
  }
  .video-description a {
    white-space: normal;
  }
  .arena {
    display: flex;
    flex-direction: column-reverse;
    gap: 38px;
  }
  .arena-copy h2 {
    font-size: 44px;
  }
  .arena figcaption {
    font-size: 8px;
  }
  .beta-heading {
    text-align: left;
  }
  .beta-heading > p:last-child {
    font-size: 14px;
  }
  .platforms {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .platforms article {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 20px;
    padding: 23px;
  }
  .platform-icon {
    grid-row: span 3;
    font-size: 33px;
    margin: 0;
  }
  .platforms h3 {
    font-size: 19px;
  }
  .platforms article > p:not(.unavailable) {
    margin: 5px 0 13px;
  }
  .platforms .unavailable,
  .platform-link {
    grid-column: 2;
  }
  .beta-status {
    display: block;
  }
  .beta-status h3 {
    margin-bottom: 18px;
  }
  .beta-status p + p {
    margin-top: 14px;
  }
  .community {
    display: block;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .community h2 {
    font-size: 43px;
  }
  .community-burst {
    font-size: 350px;
    top: 15%;
    right: -150px;
    opacity: 0.6;
  }
  .speech {
    display: none;
  }
  .community .button {
    max-width: 100%;
    font-size: 14px;
    gap: 20px;
  }
  .faq {
    display: block;
  }
  .faq h2 {
    font-size: 38px;
    max-width: none;
    margin-bottom: 25px;
  }
  .faq summary {
    font-size: 13px;
  }
  .footer {
    display: block;
    padding: 40px 6%;
  }
  .footer-end {
    text-align: left;
    margin-top: 25px;
  }
  .footer-end p {
    font-size: 10px;
  }
  .footer-end span {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

.legal {
  max-width: 1440px;
  margin: auto;
}
.legal-heading {
  max-width: 880px;
}
.legal h1 {
  font-size: clamp(44px, 6vw, 80px);
  text-transform: uppercase;
  line-height: 1.05;
}
.legal-date {
  font-size: 12px;
  margin: 24px 0;
}
.legal-heading > p:last-of-type {
  font-size: 15px;
}
.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
  margin: 30px 0 55px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-contact dt {
  color: var(--muted);
  font-size: 12px;
}
.legal-contact dd {
  margin: 5px 0 0;
  font-weight: 650;
}
.legal a:not(.brand) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 65px;
}
.legal-toc {
  align-self: start;
  position: sticky;
  top: 25px;
}
.legal-toc p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 15px;
}
.legal-toc a {
  display: block;
  font-size: 12px;
  padding: 9px 0;
}
.legal-content {
  min-width: 0;
}
.legal-content section {
  margin-bottom: 40px;
  scroll-margin-top: 30px;
}
.legal-content h2 {
  font-family: var(--body);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.legal-content p {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 15px;
  overflow-wrap: anywhere;
}
.legal-external {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.legal-external ul {
  padding-left: 20px;
  font-size: 14px;
}
.legal-external li {
  padding: 7px 0;
}
.legal-contact a {
  overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .legal-layout {
    display: block;
  }
  .legal-toc {
    position: static;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }
  .legal-contact {
    gap: 20px;
    margin-bottom: 35px;
  }
  .legal-contact dd {
    font-size: 14px;
  }
  .legal-content h2 {
    font-size: 21px;
  }
  .legal h1 {
    font-size: 44px;
  }
  .legal-content p {
    font-size: 14px;
  }
}
