.landing-body {
  overflow: hidden;
  min-height: 100dvh;
  background: #000;
  -webkit-font-smoothing: none;
  image-rendering: pixelated;
}

.landing-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  inset: -6%;
  background: url('../game/screenshot.png') center 42% / cover no-repeat;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  animation: landing-drift 48s ease-in-out infinite alternate;
}

.landing-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 45%), rgb(0 0 0 / 15%) 35%, rgb(0 0 0 / 55%)),
    radial-gradient(ellipse 85% 70% at 50% 42%, rgb(0 0 0 / 5%), rgb(0 0 0 / 62%));
}

.landing-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25em;
  min-height: 100dvh;
  padding: 1.5em 1em 1.25em;
}

.landing-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 34em);
  padding: 2em 2em 1.75em;
  text-align: center;
}

.landing-logo {
  display: block;
  width: min(100%, 18em);
  height: auto;
  margin-bottom: 0.25em;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 55%));
}

.landing-title {
  margin: 0 0 0.35em;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.1;
}

.landing-tag {
  margin: 0 0 0.85em;
  color: var(--ka-link);
  font-family: Fibberish, Monogram, monospace;
  font-size: 1.05em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-lead {
  max-width: 28em;
  margin: 0 0 1.25em;
  color: var(--ka-muted);
  font-size: 1.05em;
  text-shadow: 0 1px 0 #000;
}

.landing-play {
  min-width: 10em;
  margin-bottom: 1.35em;
  font-size: 1.05em;
}

.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75em;
  width: 100%;
  max-width: 28em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.25em;
  padding: 0.65em;
  text-align: center;
}

.landing-stats strong {
  font-size: 1.25em;
}

.landing-stats span {
  color: var(--ka-muted);
  font-size: 0.95em;
}

.landing-footer {
  color: var(--ka-muted);
  font-size: 0.95em;
  text-align: center;
}

.landing-footer a {
  color: var(--ka-muted);
}

.landing-footer a:hover {
  color: var(--ka-gold);
}

.landing-sep {
  margin: 0 0.35em;
  color: #6a6454;
}

@keyframes landing-drift {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.1) translate3d(-0.8%, -0.5%, 0);
  }
}

@media (max-width: 640px) {
  .landing-panel {
    padding: 1.5em 1.25em 1.35em;
  }

  .landing-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-bg {
    animation: none;
    transform: scale(1.08);
  }
}
