@font-face {
  font-family: Lilita;
  src: url("/assets/LilitaOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --navy: #10253b;
  --deep: #0a192b;
  --cream: #f8f3e7;
  --gold: #ffcc44;
  --orange: #ed8a37;
  --muted: #b9c6d4;
  --ink: #192c3d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #ed8a37;
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
.wordmark,
.rally-strip {
  font-family: Lilita, Impact, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
p {
  color: var(--muted);
}
h1 span,
h2 span {
  color: var(--gold);
}
.wrap {
  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  padding: 12px;
  background: var(--cream);
  color: var(--ink);
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid #ffffff1c;
  gap: 24px;
}
.wordmark {
  font-size: 29px;
  line-height: 0.85;
  transform: rotate(-4deg);
  letter-spacing: 0.01em;
  text-shadow: 2px 3px 0 #071221;
  display: inline-block;
}
.wordmark span {
  display: block;
  color: var(--gold);
  font-size: 34px;
}
.site-header nav {
  display: flex;
  gap: 35px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.site-header nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}
.nav-cta {
  border: 1px solid #ffffff50;
  padding: 10px 20px;
  border-radius: 5px;
}
.nav-cta span {
  margin-left: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding-block: 76px 90px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 85% 55%, #2c57784a, transparent 65%);
  z-index: -1;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}
.status-dot {
  display: inline-block;
  height: 7px;
  width: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 7px;
}
h1 {
  font-size: clamp(46px, 4.7vw, 72px);
  margin-bottom: 24px;
  line-height: 1.01;
}
.intro {
  font-size: 18px;
  max-width: 385px;
  margin-bottom: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 15px 23px;
  border-radius: 5px;
  background: var(--gold);
  color: #122237;
  box-shadow: 0 5px 0 #b97b17;
  font-weight: 800;
  font-size: 15px;
  transition:
    transform 0.15s,
    background 0.15s;
}
.button:hover {
  background: #ffdc72;
  transform: translateY(-2px);
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.platform-note {
  font-size: 11px;
  margin-top: 22px;
  letter-spacing: 0.03em;
}
.platform-note span {
  padding: 0 7px;
  color: var(--gold);
}
.hero-art {
  transform: rotate(2deg);
  background: #081a2d;
  border: 6px solid #ffffff16;
  border-radius: 12px;
  box-shadow: 0 24px 50px #0005;
  overflow: hidden;
}
.hero-art img {
  aspect-ratio: 1672/941;
  object-fit: contain;
}
.hero-art figcaption {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 15px 20px;
  color: var(--cream);
}
.tiny-cross {
  color: var(--gold);
  padding-right: 10px;
}
.rally-strip {
  background: var(--gold);
  color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  padding: 19px 24px;
  font-size: 22px;
  flex-wrap: wrap;
}
.rally-strip b {
  font-size: 15px;
}
.game-section {
  background: var(--cream);
  color: var(--ink);
  padding: 85px 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}
h2 {
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1.06;
}
.game-section .eyebrow {
  color: #805321;
  margin-bottom: 16px;
}
.game-section h2 span {
  color: #a95012;
}
.section-heading > p {
  color: #5d6570;
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.feature-card {
  background: #fffdf8;
  border: 1px solid #dfd8ca;
  box-shadow: 0 6px 0 #e8e1d4;
  border-radius: 9px;
  overflow: hidden;
}
.image-link {
  display: block;
  overflow: hidden;
}
.image-link img {
  aspect-ratio: 1672/941;
  object-fit: contain;
  transition: transform 0.25s;
}
.image-link:hover img {
  transform: scale(1.025);
}
.card-copy {
  padding: 27px;
}
.step {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #8c581e;
  margin-bottom: 16px;
}
h3 {
  font-size: 30px;
  line-height: 1.06;
  margin-bottom: 17px;
}
.card-copy p {
  color: #5e6570;
  font-size: 14px;
  line-height: 1.75;
}
.art-note {
  font-size: 11px;
  color: #6c6a64;
  margin-top: 23px;
}
.progression {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 65px;
  padding-block: 90px;
}
.progression p:not(.eyebrow) {
  margin: 23px 0;
  max-width: 445px;
  font-size: 16px;
}
.progression img {
  border: 4px solid #ffffff20;
  border-radius: 9px;
  box-shadow: 12px 12px 0 #07172a;
}
.text-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link span {
  margin-left: 20px;
}
.playtest-section {
  background: var(--gold);
  color: var(--ink);
  padding: 75px 0;
  background-image: radial-gradient(#b9871925 1px, transparent 1px);
  background-size: 14px 14px;
}
.playtest-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 65px;
  align-items: center;
}
.playtest-section .eyebrow {
  color: #655026;
}
.playtest-section h2 span {
  color: #fffdf1;
  text-shadow: 2px 3px 0 #735111;
}
.playtest-section p:not(.eyebrow) {
  color: #45412f;
  margin-top: 22px;
}
.playtest-panel {
  background: var(--cream);
  padding: 35px;
  border: 2px solid #10253b;
  border-radius: 10px;
  box-shadow: 7px 7px 0 var(--navy);
}
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.11em;
  font-weight: 800;
  background: #eae3d4;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.playtest-panel h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
.playtest-panel p {
  font-size: 14px;
  margin-top: 0 !important;
}
.button-dark {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 4px 0 #071625;
  margin-top: 23px;
}
.button-dark:hover {
  background: #203f5e;
}
.playtest-panel .small-note {
  font-size: 11px !important;
  margin-top: 16px !important;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  padding-block: 75px;
}
.faq h2 {
  font-size: 34px;
}
.faq details {
  border-bottom: 1px solid #ffffff25;
  padding: 0 0 18px;
  margin-bottom: 20px;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}
.faq details p {
  font-size: 14px;
  margin: 16px 0 0;
}
.site-footer {
  border-top: 1px solid #ffffff25;
  padding-block: 35px;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.site-footer p {
  font-size: 12px;
}
.site-footer p span {
  font-size: 10px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}
.support {
  max-width: 800px;
  padding-block: 75px 100px;
  min-height: 65vh;
}
.support h1 {
  font-size: 56px;
}
.support h2 {
  font-size: 30px;
  margin: 38px 0 15px;
}
.support p {
  margin: 16px 0;
}
.support a:not(.button) {
  color: var(--gold);
  text-decoration: underline;
}
.support ul {
  color: var(--muted);
  padding-left: 22px;
}
.support li {
  margin-bottom: 10px;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 100px 115px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 22px;
  }
  h1 {
    font-size: 48px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .card-copy {
    padding: 22px;
  }
  h3 {
    font-size: 26px;
  }
  .rally-strip {
    font-size: 18px;
    gap: 25px;
  }
  .progression,
  .playtest-inner,
  .faq {
    gap: 35px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-block: 50px 60px;
    gap: 40px;
  }
  .hero-copy {
    max-width: 600px;
  }
  h1 {
    font-size: clamp(46px, 8.5vw, 68px);
  }
  .intro {
    max-width: 500px;
  }
  .hero-art {
    max-width: 680px;
    transform: rotate(1deg);
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .section-heading > p {
    display: none;
  }
  .progression,
  .playtest-inner,
  .faq {
    grid-template-columns: 1fr;
  }
  .game-section {
    padding: 60px 0;
  }
  .progression {
    padding-block: 60px;
  }
  .playtest-section {
    padding: 60px 0;
  }
  .rally-strip span:last-child,
  .rally-strip b:last-of-type {
    display: none;
  }
}
@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 92px;
    gap: 12px;
  }
  .site-header nav {
    gap: 15px;
    font-size: 12px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    padding: 9px 14px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero .eyebrow {
    letter-spacing: 0.1em;
  }
  .hero-art {
    border-width: 3px;
  }
  .hero-art figcaption {
    font-size: 9px;
    padding: 12px;
  }
  .rally-strip {
    font-size: 14px;
    gap: 13px;
    padding: 16px 12px;
  }
  .rally-strip b {
    font-size: 9px;
  }
  .feature-card {
    display: block;
  }
  .card-copy {
    padding: 25px;
  }
  h3 {
    font-size: 30px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .playtest-panel {
    padding: 25px;
  }
  .playtest-section h2 {
    font-size: 39px;
  }
  .site-footer {
    align-items: flex-start;
    gap: 25px;
  }
  .site-footer nav {
    width: 100%;
    gap: 14px 24px;
  }
  .support h1 {
    font-size: 44px;
  }
  .support {
    padding-block: 45px 65px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
