:root {
  --bg: #050709;
  --bg-2: #08100f;
  --panel: #0c1113;
  --panel-2: #111817;
  --line: rgba(187, 255, 90, .28);
  --line-hot: rgba(255, 57, 172, .42);
  --text: #eef5ee;
  --muted: #9aa9a4;
  --acid: #bbff5a;
  --cyan: #00e8d2;
  --pink: #ff39ac;
  --amber: #ffbe43;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 12% 18%, rgba(187, 255, 90, .14), transparent 28%), radial-gradient(circle at 82% 12%, rgba(255, 57, 172, .16), transparent 30%), linear-gradient(145deg, #050709 0%, #08100f 48%, #050709 100%)
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image: linear-gradient(rgba(187, 255, 90, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(187, 255, 90, .08) 1px, transparent 1px), repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, .025) 12px 13px);
  background-size: 64px 64px, 64px 64px, 100% 13px;
  pointer-events: none
}

a {
  color: inherit;
  text-decoration: none
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58
}

ul,
ol {
  line-height: 1.58
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), 1240px);
  height: var(--header);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 0 14px 0 18px;
  background: rgba(5, 8, 9, .84);
  border: 1px solid rgba(187, 255, 90, .28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .7), 0 18px 42px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px)
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content
}

.site-header__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--acid);
  color: #071006;
  font-weight: 900;
  letter-spacing: -.08em;
  clip-path: polygon(10px 0, 100% 0, 100% 32px, 32px 100%, 0 100%, 0 10px)
}

.site-header__name {
  font-weight: 900;
  letter-spacing: .01em;
  font-size: 1rem
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px)
}

.site-nav__link {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #dbe8df;
  position: relative
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: .22s ease
}

.site-nav__link:hover::after {
  transform: scaleX(1)
}

.site-header__cta,
.mobile-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--pink);
  color: #080609;
  font-weight: 900;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 6px 6px 0 var(--acid)
}

.site-header__burger {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(187, 255, 90, .45);
  clip-path: polygon(10px 0, 100% 0, 100% 36px, 36px 100%, 0 100%, 0 10px);
  padding: 10px;
  cursor: pointer
}

.site-header__burger span {
  display: block;
  height: 2px;
  background: var(--acid);
  margin: 6px 0;
  transition: .2s ease
}

.mobile-panel {
  position: fixed;
  top: 102px;
  left: 14px;
  right: 14px;
  z-index: 45;
  display: none;
  padding: 18px;
  background: rgba(5, 8, 9, .96);
  border: 1px solid rgba(187, 255, 90, .34);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .42)
}

.mobile-panel.is-open {
  display: block
}

.mobile-panel__nav {
  display: grid;
  gap: 14px
}

.mobile-panel .site-nav__link {
  font-size: 1rem
}

.mobile-panel__cta {
  margin-top: 8px
}

main {
  padding-top: 112px
}

.section,
.hero,
.download,
.legal-page {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(290px, .85fr) minmax(0, 1.35fr);
  grid-template-areas: "copy visual" "ticker ticker";
  gap: 28px;
  align-items: stretch;
  margin-bottom: 84px
}

.hero__copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(12, 17, 19, .92), rgba(5, 7, 9, .94));
  border: 1px solid rgba(187, 255, 90, .25);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28)
}

.eyebrow {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .72rem
}

.hero__title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 4.25rem);
  line-height: .86;
  letter-spacing: -.08em;
  text-transform: uppercase;
  max-width: 7.5ch
}

.hero__lead {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  max-width: 56ch;
  color: #d2ddd6
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px)
}

.button--primary {
  background: var(--acid);
  color: #061006;
  box-shadow: 6px 6px 0 rgba(255, 57, 172, .85)
}

.button--ghost {
  border-color: rgba(187, 255, 90, .5);
  color: var(--text);
  background: rgba(187, 255, 90, .04)
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 0
}

.hero__stats div {
  padding: 14px 12px;
  border: 1px solid rgba(0, 232, 210, .25);
  background: rgba(0, 232, 210, .06)
}

.hero__stats dt {
  font-size: 1.75rem;
  font-weight: 950;
  color: var(--cyan);
  line-height: 1
}

.hero__stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em
}

.hero__visual {
  grid-area: visual;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: rgba(255, 57, 172, .05);
  border: 1px solid rgba(255, 57, 172, .35);
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%, 0 34px)
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px
}

.hero__ticker {
  grid-area: ticker;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.hero__ticker span {
  padding: 12px 14px;
  border: 1px solid rgba(187, 255, 90, .28);
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
  background: rgba(8, 13, 13, .8)
}

.section {
  margin-bottom: 112px
}

.section__rail {
  color: var(--pink);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  border-left: 3px solid var(--pink);
  padding-left: 14px;
  margin-bottom: 22px
}

.section__head {
  margin-bottom: 32px;
  display: grid;
  gap: 14px
}

.section__head h2,
.intro-grid__main h2,
.playbook__content h2,
.advantage-board h2,
.download h2,
.studio h2,
.legal-page h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.1rem, 2.5vw, 2.8rem);
  line-height: .95;
  letter-spacing: -.06em;
  text-transform: uppercase
}

.section__head--split {
  grid-template-columns: 1.1fr .7fr;
  align-items: end
}

.section__head--split p:last-child {
  font-size: 1.05rem;
  color: #c5d0cb
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px
}

.intro-grid__main,
.intro-grid__note,
.advantage-board,
.studio__copy,
.studio__form,
.legal-card {
  background: rgba(12, 17, 19, .9);
  border: 1px solid rgba(187, 255, 90, .22);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .24)
}

.intro-grid__main {
  padding: 42px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px)
}

.intro-grid__main p {
  margin-top: 20px;
  font-size: 1.12rem
}

.intro-grid__note {
  padding: 32px;
  display: grid;
  align-content: end;
  min-height: 240px;
  border-color: rgba(255, 190, 67, .28)
}

.intro-grid__note strong {
  color: var(--amber);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1
}

.intro-grid__note span {
  color: #dfe8e3;
  margin-top: 12px
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px
}

.feature-stack__item {
  grid-column: span 4;
  min-height: 220px;
  padding: 26px;
  background: rgba(12, 17, 19, .86);
  border: 1px solid rgba(0, 232, 210, .22);
  position: relative;
  overflow: hidden
}

.feature-stack__item::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 52px;
  height: 52px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  opacity: .7
}

.feature-stack__item--wide {
  grid-column: span 8
}

.feature-stack__item--tall {
  grid-row: span 2
}

.feature-stack__code {
  color: var(--pink);
  font-weight: 950;
  letter-spacing: .12em
}

.feature-stack__item h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase
}

.media-strip {
  width: min(1320px, calc(100% - 40px))
}

.media-strip__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 18px
}

.game-shot {
  margin: 0;
  border: 1px solid rgba(187, 255, 90, .22);
  background: #090d0e;
  overflow: hidden
}

.game-shot--large {
  grid-row: span 2
}

.game-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.game-shot figcaption {
  padding: 14px 16px;
  color: #d7e1dc;
  font-weight: 700;
  font-size: .9rem;
  border-top: 1px solid rgba(187, 255, 90, .18);
  background: rgba(8, 12, 13, .96)
}

.playbook {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 26px;
  align-items: stretch
}

.playbook__image {
  overflow: hidden;
  border: 1px solid rgba(255, 57, 172, .34);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%)
}

.playbook__image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.playbook__content {
  padding: 44px;
  border: 1px solid rgba(187, 255, 90, .24);
  background: linear-gradient(135deg, rgba(14, 20, 19, .95), rgba(5, 7, 9, .92));
  display: grid;
  align-content: center
}

.playbook__steps {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step
}

.playbook__steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 68px;
  border: 1px solid rgba(0, 232, 210, .2);
  background: rgba(0, 232, 210, .04);
  color: #c6d1cb
}

.playbook__steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--cyan);
  font-weight: 950
}

.playbook__steps strong {
  color: var(--text)
}

.section--advantages {
  width: min(1320px, calc(100% - 40px))
}

.advantage-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 44px;
  border-color: rgba(255, 190, 67, .32)
}

.advantage-board__rows {
  display: grid;
  gap: 12px
}

.advantage-board__rows div {
  padding: 18px;
  border: 1px solid rgba(255, 190, 67, .18);
  background: rgba(255, 190, 67, .04)
}

.advantage-board__rows span {
  display: block;
  color: var(--amber);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.review-card {
  min-height: 310px;
  padding: 24px;
  background: rgba(11, 16, 18, .9);
  border: 1px solid rgba(255, 57, 172, .24);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.review-card--offset {
  transform: translateY(34px);
  border-color: rgba(0, 232, 210, .28)
}

.review-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.05
}

.review-card span {
  color: var(--acid);
  font-weight: 900;
  margin-top: 20px
}

.studio {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 20px
}

.studio__copy,
.studio__form {
  padding: 38px
}

.studio__copy p:last-child {
  margin-top: 20px;
  font-size: 1.05rem
}

.studio__form {
  display: grid;
  gap: 11px
}

.studio__form label {
  color: var(--acid);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em
}

.studio__form input,
.studio__form textarea {
  width: 100%;
  border: 1px solid rgba(187, 255, 90, .3);
  background: rgba(5, 8, 9, .86);
  color: var(--text);
  padding: 14px 14px;
  font: inherit;
  outline: none
}

.studio__form input:focus,
.studio__form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 57, 172, .14)
}

.studio__form-note {
  min-height: 22px;
  color: var(--acid);
  font-weight: 800
}

.download {
  margin-bottom: 80px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(110deg, rgba(187, 255, 90, .14), rgba(255, 57, 172, .10));
  border: 1px solid rgba(187, 255, 90, .32);
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px)
}

.download h2 {
  font-size: clamp(2rem, 4.5vw, 4.7rem)
}

.download p {
  max-width: 62ch;
  color: #dfe7e3
}

.download__actions {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 12px
}

.store-button {
  display: grid;
  padding: 14px;
  background: #050709;
  border: 1px solid rgba(187, 255, 90, .4);
  box-shadow: 5px 5px 0 rgba(255, 57, 172, .75);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px)
}

.store-button span {
  color: var(--muted);
  font-size: .76rem
}

.store-button strong {
  color: #fff;
  font-size: 1.08rem
}

.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(187, 255, 90, .24);
  background: rgba(5, 8, 9, .9)
}

.site-footer__signal {
  grid-column: 1/-1;
  color: var(--cyan);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900
}

.site-footer__brand {
  font-size: 1.45rem;
  font-weight: 950;
  color: var(--acid)
}

.site-footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.site-footer__links a {
  color: #dfe6e2;
  font-weight: 800
}

.site-footer__copy {
  grid-column: 1/-1;
  color: var(--muted)
}

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(940px, calc(100% - 40px));
  margin: auto;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(5, 8, 9, .96);
  border: 1px solid rgba(187, 255, 90, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .48)
}

.cookie.is-visible {
  display: grid
}

.cookie__text {
  color: #d9e4de;
  line-height: 1.5
}

.cookie__text a {
  color: var(--acid);
  font-weight: 900;
  text-decoration: underline
}

.cookie__actions {
  display: flex;
  gap: 10px
}

.cookie__button {
  border: 0;
  padding: 12px 18px;
  font-weight: 950;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px)
}

.cookie__button--accept {
  background: var(--acid);
  color: #061006
}

.cookie__button--decline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(187, 255, 90, .4)
}

.legal-main {
  padding-top: 118px
}

.legal-page {
  margin-bottom: 84px
}

.legal-page h1 {
  margin-bottom: 18px
}

.legal-page__updated {
  margin-bottom: 24px;
  color: var(--acid)
}

.legal-card {
  padding: 28px;
  margin-bottom: 18px
}

.legal-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  line-height: 1.05
}

.legal-card p+p {
  margin-top: 10px
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted)
}

.legal-card li {
  margin: 8px 0
}

.legal-card a {
  color: var(--acid);
  text-decoration: underline;
  font-weight: 800
}

@media (max-width:1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto
  }

  .site-nav,
  .site-header__cta {
    display: none
  }

  .site-header__burger {
    display: block;
    justify-self: end
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "ticker"
  }

  .hero__image {
    min-height: 500px
  }

  .section__head--split,
  .intro-grid,
  .playbook,
  .advantage-board,
  .studio,
  .download {
    grid-template-columns: 1fr
  }

  .feature-stack__item,
  .feature-stack__item--wide {
    grid-column: span 6
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .download__actions {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:760px) {
  :root {
    --header: 66px
  }

  main {
    padding-top: 96px
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1240px);
    padding: 0 10px 0 12px
  }

  .site-header__mark {
    width: 38px;
    height: 38px
  }

  .site-header__name {
    font-size: .92rem
  }

  .hero,
  .section,
  .download,
  .legal-page,
  .media-strip,
  .section--advantages,
  .site-footer {
    width: min(100% - 24px, var(--max))
  }

  .hero {
    gap: 14px;
    margin-bottom: 62px
  }

  .hero__copy {
    padding: 24px
  }

  .hero__title {
    font-size: clamp(3rem, 18vw, 5.4rem);
    max-width: 8ch
  }

  .hero__stats,
  .hero__ticker {
    grid-template-columns: 1fr
  }

  .hero__image {
    min-height: 360px
  }

  .section {
    margin-bottom: 74px
  }

  .section__head h2,
  .intro-grid__main h2,
  .playbook__content h2,
  .advantage-board h2,
  .download h2,
  .studio h2,
  .legal-page h1 {
    font-size: clamp(2rem, 12vw, 3.8rem)
  }

  .intro-grid__main,
  .playbook__content,
  .advantage-board,
  .studio__copy,
  .studio__form,
  .download {
    padding: 24px
  }

  .feature-stack {
    grid-template-columns: 1fr
  }

  .feature-stack__item,
  .feature-stack__item--wide,
  .feature-stack__item--tall {
    grid-column: 1;
    grid-row: auto
  }

  .media-strip__grid {
    grid-template-columns: 1fr
  }

  .game-shot--large {
    grid-row: auto
  }

  .reviews__grid {
    grid-template-columns: 1fr
  }

  .review-card--offset {
    transform: none
  }

  .download__actions {
    grid-template-columns: 1fr
  }

  .site-footer {
    grid-template-columns: 1fr
  }

  .cookie {
    grid-template-columns: 1fr;
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto
  }

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

  .mobile-panel {
    top: 88px
  }
}

@media (max-width:380px) {
  .hero__title {
    letter-spacing: -.09em;
    font-size: 2.72rem
  }

  .hero__actions {
    display: grid
  }

  .button {
    width: 100%
  }

  .cookie__actions {
    grid-template-columns: 1fr
  }

  .hero__copy,
  .intro-grid__main,
  .playbook__content,
  .advantage-board,
  .studio__copy,
  .studio__form,
  .download,
  .legal-card {
    padding: 20px
  }

  .site-header__name {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .site-header__mark {
    width: 34px;
    height: 34px
  }

  .section__head h2,
  .intro-grid__main h2,
  .playbook__content h2,
  .advantage-board h2,
  .download h2,
  .studio h2,
  .legal-page h1 {
    font-size: 2.25rem
  }
}