body {
  background-color: var(--color-bg);
}

.hero {
  position: relative;
  padding-block: var(--space-20);
  color: #ffffff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: lighten;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
}



.hero-eyebrow {
  margin-bottom: var(--space-3);
}

.hero-lede {
  font-size: var(--font-size-lg);
  color: var(--color-gray-100);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.section-city {
  background: radial-gradient(circle at top left, rgba(215, 38, 56, 0.18), transparent 55%),
    linear-gradient(180deg, #050608, #101218);
}

.section-city-grid {
  align-items: center;
}

.city-card {
  min-height: 220px;
}

.section-characters {
  background-color: var(--color-bg-elevated);
}

.section-characters-grid {
  align-items: center;
  gap: var(--space-8);
}

.section-characters-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.section-gameplay {
  background-color: var(--color-bg);
}

.section-gallery {
  background: radial-gradient(circle at bottom right, rgba(56, 182, 255, 0.16), transparent 55%),
    #050608;
}

.section-header {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.section-gallery-media {
  max-width: 840px;
  margin-inline: auto;
}

.gallery-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.gallery-figure img {
  width: 100%;
  height: auto;
}

.gallery-figure figcaption {
  padding: var(--space-4);
  background-color: rgba(5, 6, 8, 0.9);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-knowledge {
  background-color: var(--color-bg-elevated);
}

.feature-list,
.faq-bullets {
  margin-top: var(--space-3);
  padding-left: var(--space-4);
}

.feature-list li,
.faq-bullets li {
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  list-style: none;
}

.feature-list li::before,
.faq-bullets li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-neon-blue));
}

.section-engage {
  background: linear-gradient(135deg, #101218, #050608);
}

.section-engage-inner {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  align-items: flex-start;
}

.section-engage-card {
  max-width: 520px;
  margin-left: auto;
}

.engage-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.engage-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.engage-form-group label {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.engage-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.engage-form-legal {
  font-size: var(--font-size-xs);
}

@media (max-width: 767px) {
  .hero {
    padding-block: var(--space-16);
  }

  .hero-copy h1 {
    font-size: var(--font-size-4xl);
  }

  .section-engage-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-engage-card {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-block: var(--space-24);
  }

  .hero-copy h1 {
    font-size: var(--font-size-5xl);
  }
}
