@font-face {
  font-family: "Built Titling";
  src: url("assets/built-titling-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.76);
  --panel: rgba(10, 11, 17, 0.58);
  --hot-pink: #af1f68;
  --hot-pink-dark: #82194e;
  --cyan: #30d8ff;
  --gold: #ffc63f;
  --content-left: 15vw;
  --nav-right: clamp(1.5rem, 8vw, 13rem);
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  min-height: 100%;
  background: #111017;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: #111017;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 4.75rem;
  background: transparent;
  box-shadow: none;
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 7.5rem;
  background: linear-gradient(
    180deg,
    rgba(3, 3, 6, 0.8) 0%,
    rgba(3, 3, 6, 0.4) 50%,
    rgba(3, 3, 6, 0) 100%
  );
  content: "";
  opacity: 1;
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  width: 100%;
  min-height: 4.75rem;
  padding-inline: var(--content-left);
  align-items: center;
}

.site-header__logo {
  display: flex;
  width: clamp(5.5rem, 7vw, 7.25rem);
  padding-top: 10px;
  flex: 0 0 auto;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header.has-compact-logo .site-header__logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  position: fixed;
  top: clamp(1.25rem, 3vw, 2.5rem);
  right: var(--nav-right);
  z-index: 20;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0.85rem;
  align-content: center;
  gap: 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.65rem;
  background: rgba(10, 10, 15, 0.86);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0.46rem) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.46rem) rotate(-45deg);
}

.menu-toggle:hover {
  border-color: #0c9bd6;
  background: rgba(8, 119, 168, 0.92);
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.3rem;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(5, 5, 8, 0.54);
}

.site-navigation {
  position: fixed;
  top: clamp(5.5rem, 9vw, 7.25rem);
  right: var(--nav-right);
  z-index: 19;
  display: grid;
  width: min(20rem, calc(100vw - 3rem));
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-navigation.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-navigation a,
.site-navigation button {
  display: flex;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  align-items: center;
  border: 0;
  border-radius: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.site-navigation a:hover,
.site-navigation button:hover,
.site-navigation a[aria-current="page"] {
  color: #ffdf2e;
  background: #0c9bd6;
  box-shadow: 0 0.35rem 1rem rgba(12, 155, 214, 0.3);
}

.site-navigation a:focus-visible,
.site-navigation button:focus-visible {
  color: #ffdf2e;
  background: #0c9bd6;
  outline: 2px solid #ffdf2e;
  outline-offset: 2px;
}

@media (min-width: 1101px) {
  .menu-toggle {
    display: none;
  }

  .menu-backdrop {
    display: none;
  }

  .site-navigation {
    position: static;
    display: flex;
    width: auto;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.15rem, 0.6vw, 0.7rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-navigation a,
  .site-navigation button {
    width: auto;
    min-height: 2.7rem;
    padding: 0.55rem clamp(0.5rem, 0.8vw, 0.85rem);
    justify-content: center;
    font-size: clamp(0.68rem, 0.72vw, 0.86rem);
    text-align: center;
    white-space: nowrap;
  }
}

.devlog-drawer {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  width: min(68rem, calc(100vw - 1.5rem));
  transform: translateX(calc(100% - 3.6rem));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.devlog-drawer.is-open {
  transform: translateX(0);
}

.devlog-toggle {
  display: grid;
  min-height: 16rem;
  padding: 1rem 0;
  place-items: center;
  border: 0;
  border-radius: 0.55rem 0 0 0.55rem;
  color: #fff;
  background: #0c9bd6;
  box-shadow: -0.6rem 0.8rem 2rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.devlog-toggle span {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.devlog-toggle:hover {
  background: #20afe8;
}

.devlog-toggle:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -6px;
}

.devlog-panel {
  display: grid;
  min-height: 16rem;
  overflow: hidden;
  padding:
    2rem
    max(clamp(1.5rem, 3vw, 3rem), var(--nav-right))
    1.35rem
    clamp(1.5rem, 3vw, 3rem);
  grid-template-rows: 1fr auto;
  color: #011b44;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: -1rem 1.2rem 3rem rgba(0, 0, 0, 0.25);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  transition: height 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.devlog-slide {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.devlog-slide[hidden] {
  display: none;
}

.devlog-slide > img {
  display: block;
  width: 10rem;
  height: 10rem;
  border: 0.45rem solid rgba(12, 155, 214, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.8rem 1.8rem rgba(1, 27, 68, 0.18);
}

.devlog-slide__meta {
  display: flex;
  margin-bottom: 0.15rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}

.devlog-slide__author {
  display: inline-flex;
  min-height: 1.7rem;
  padding: 0.25rem 0.65rem;
  align-items: center;
  border-radius: 0.45rem;
  color: #fff;
  background: #6b7280;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.devlog-slide__copy time {
  color: rgba(1, 27, 68, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.devlog-slide__copy h2 {
  margin: 0 0 0.35rem;
  color: #011b44;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

.devlog-slide__copy p {
  max-width: 48rem;
  margin: 0;
  color: rgba(1, 27, 68, 0.76);
  font-size: clamp(0.88rem, 1.05vw, 1.05rem);
  line-height: 1.5;
}

.devlog-dots {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
  gap: 0.85rem;
}

.devlog-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(1, 27, 68, 0.48);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.devlog-dot.is-active {
  background: #0c9bd6;
  transform: scale(1.18);
}

.devlog-dot:focus-visible {
  outline: 2px solid #011b44;
  outline-offset: 0.25rem;
}

.landing {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(13, 12, 19, 0.5) 0%, rgba(13, 12, 19, 0.18) 30%, transparent 52%),
    url("assets/team-rush-bg.jpg") right center / cover no-repeat;
  background-attachment: fixed;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 16, 23, 0.38) 0%, transparent 15%, transparent 92%, rgba(17, 16, 23, 0.2) 100%),
    linear-gradient(180deg, transparent 0%, transparent 68%, rgba(17, 16, 23, 0.55) 80%, rgba(17, 16, 23, 0.92) 100%);
}

.hero::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(84rem, calc(100% - clamp(3rem, 12vw, 16rem)));
  margin-left: var(--content-left);
  padding: calc(clamp(2rem, 5vw, 6rem) + 50px) 0 clamp(3rem, 5vw, 5rem);
}

.hero__logo {
  display: block;
  width: clamp(13rem, 23vw, 28rem);
  height: auto;
  margin-bottom: clamp(2.2rem, 4.5vw, 4.5rem);
  filter: drop-shadow(0 1.15rem 1.4rem rgba(0, 0, 0, 0.52));
}

.hero__copy {
  width: min(36rem, 100%);
  max-width: 36rem;
  margin-left: 0;
}

.hero__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__copy h1 {
  margin: 0 0 1.25rem;
  padding: 0;
  color: #fff;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0.25rem 0.8rem rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero__description {
  max-width: 34rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.24rem);
  font-weight: 400;
  line-height: 1.38;
  text-align: left;
}

.hero__description p {
  margin: 0;
}

.hero__description p + p {
  margin-top: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.action-button {
  appearance: none;
  display: inline-flex;
  min-width: 14rem;
  min-height: 4.15rem;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2rem;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  color: #fff;
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.36);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.action-button--primary {
  color: #fff;
  background: linear-gradient(180deg, #20afe8, #0877a8);
}

.action-button--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 12, 19, 0.62);
}

.action-button:hover {
  transform: translateY(-0.15rem);
}

.action-button--primary:hover {
  background: linear-gradient(180deg, #38bcef, #0c9bd6);
}

.action-button--secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.action-button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.35rem;
}

.media-layout {
  width: min(31.6rem, 60.8%);
  margin-top: calc(2rem + 30px);
}

.hero-social-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1vw, 1rem);
  width: 100%;
  justify-self: end;
}

.hero-social-links a {
  display: grid;
  width: 100%;
  padding: 0;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.7rem;
  background: rgba(1, 27, 68, 0.72);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-social-links img {
  display: block;
  width: 58%;
  height: 58%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.hero-social-links a:hover,
.hero-social-links a:focus-visible {
  border-color: #0c9bd6;
  background: rgba(12, 155, 214, 0.28);
  transform: translateY(-0.15rem);
}

.hero-social-links a:hover img,
.hero-social-links a:focus-visible img {
  transform: scale(1.08);
}

.hero-social-links a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.3rem;
}

.hero-social-link--x img {
  mix-blend-mode: screen;
}

.features-section {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 0;
  background: #011b44;
}

.features-carousel {
  position: relative;
  width: 100%;
  min-height: clamp(25rem, 35vw, 31rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #0c9bd7;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.3);
}

.features-carousel:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.35rem;
}

.feature-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: inherit;
  transform: translateX(0);
}

.feature-slide[hidden] {
  display: none;
}

.feature-slide.is-entering-forward {
  z-index: 2;
  animation: feature-enter-forward 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide.is-leaving-forward {
  z-index: 1;
  animation: feature-leave-forward 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide.is-entering-backward {
  z-index: 2;
  animation: feature-enter-backward 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide.is-leaving-backward {
  z-index: 1;
  animation: feature-leave-backward 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide__copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding:
    clamp(3rem, 6vw, 5.5rem)
    clamp(1.25rem, 4vw, 3rem)
    4.5rem
    var(--content-left);
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background-color: #0c9bd7;
  background-image: url("assets/features-halftone-bg.jpg");
  background-position: left center;
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.feature-slide__copy::after {
  content: "";
  position: absolute;
  top: -4%;
  right: -2.4rem;
  bottom: -4%;
  z-index: 3;
  width: 4.8rem;
  background: #0c9bd7;
  box-shadow: -3px 0 0 #0c9bd7;
  transform: skewX(8deg);
}

.feature-slide__eyebrow {
  margin: 0 0 0.55rem;
  color: #ffdf2e;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-slide__copy h3 {
  width: 100%;
  max-width: none;
  margin: 0 0 1rem;
  color: #ffdf2e;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-slide__copy > p:last-child {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.5;
}

.feature-slide__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-slide__media img {
  display: block;
  width: calc(100% + 5rem);
  height: 100%;
  margin-left: -4rem;
  object-fit: cover;
  transform: scale(1.06);
  transform-origin: center;
}

.feature-slide.is-active .feature-slide__media img {
  animation: feature-ken-burns 8s ease-in-out both;
}

.features-dots {
  position: absolute;
  bottom: 1.5rem;
  left: var(--content-left);
  z-index: 5;
  display: flex;
  gap: 0.8rem;
}

.features-dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(1, 27, 68, 0.42);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.features-dot.is-active {
  background: #ffdf2e;
  transform: scale(1.16);
}

.features-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 0.25rem;
}

@keyframes feature-enter-forward {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes feature-leave-forward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes feature-enter-backward {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes feature-leave-backward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes feature-ken-burns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

.fighter-select {
  position: relative;
  z-index: 2;
  min-height: clamp(34rem, 56vw, 48rem);
  margin-top: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0%, transparent 43%, rgba(1, 14, 35, 0.35) 60%, rgba(1, 14, 35, 0.92) 100%),
    url("assets/character-select-bg.jpg") center / cover no-repeat;
}

.fighter-select::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 27, 68, 0.12), transparent 22%, transparent 76%, rgba(1, 27, 68, 0.55));
  pointer-events: none;
}

.fighter-select__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: calc(50vw - var(--content-left)) minmax(0, 1fr);
  width: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding:
    clamp(4rem, 8vw, 8rem)
    var(--content-left)
    clamp(4rem, 8vw, 8rem)
    var(--content-left);
  column-gap: 0;
  justify-content: start;
  align-items: center;
}

.fighter-select__roster {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.35rem, 0.65vw, 0.65rem);
  width: calc(100% - clamp(1.25rem, 3vw, 3rem));
  justify-self: start;
}

@media (min-width: 1400px) {
  .fighter-select__roster {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 1700px) {
  .fighter-select__roster {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 2200px) {
  .fighter-select__roster {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (min-width: 2500px) {
  .fighter-select__roster {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 2900px) {
  .fighter-select__roster {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 3300px) {
  .fighter-select__roster {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.fighter-portrait {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 69 / 102;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.35rem;
  background: rgba(1, 27, 68, 0.7);
  box-shadow: 0 0.45rem 1rem rgba(0, 0, 0, 0.35);
  cursor: default;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fighter-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.fighter-portrait:hover {
  z-index: 2;
  border-color: #0c9bd6;
  box-shadow: 0 0 0 2px rgba(12, 155, 214, 0.28), 0 0.8rem 1.6rem rgba(0, 0, 0, 0.48);
  transform: translateY(-0.2rem) scale(1.06);
}

.fighter-portrait:hover img {
  filter: brightness(1.1);
  transform: scale(1.04);
}

.fighter-select__copy {
  width: 100%;
  max-width: 34rem;
  justify-self: start;
  padding-left: clamp(1.25rem, 3vw, 3rem);
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.6);
}

.fighter-select__eyebrow {
  margin: 0 0 0.65rem;
  color: #0c9bd6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fighter-select__copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.fighter-select__copy > p:not(.fighter-select__eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.65;
}

.fighter-select__link {
  display: inline-flex;
  min-height: 3.35rem;
  margin-top: 1.75rem;
  padding: 0.8rem 1.35rem;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 0.65rem;
  color: #fff;
  background: rgba(1, 27, 68, 0.55);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.fighter-select__link:hover {
  border-color: #0c9bd6;
  background: rgba(8, 119, 168, 0.82);
  transform: translateY(-0.12rem);
}

.fighter-select__link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.3rem;
}

.media-showcase {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 8vw, 8rem) var(--content-left);
  background: #011b44;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.media-showcase__inner {
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
}

.media-showcase__eyebrow {
  margin: 0 0 0.55rem;
  color: #0c9bd6;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.media-showcase h2 {
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.media-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.5rem);
}

.media-tile {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0.45rem;
  background: #071633;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.media-tile:hover::after,
.media-tile:focus-visible::after {
  border-color: #ffdf2e;
  background: rgba(12, 155, 214, 0.08);
}

.media-tile:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.3rem;
}

.media-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-tile:hover img,
.media-tile:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.media-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(3.25rem, 5vw, 4.75rem);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #011b44;
  background: #ffdf2e;
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.4);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.media-tile:hover .media-tile__play,
.media-tile:focus-visible .media-tile__play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.wishlist-band {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(18rem, 22vw, 24rem);
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: #07162e;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.wishlist-band__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/wishlist-loop.png") left center / 3857px 563px repeat-x;
  animation: wishlist-scroll 100s linear infinite;
  will-change: background-position;
}

.wishlist-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 27, 68, 0.25), rgba(1, 27, 68, 0.58) 50%, rgba(1, 27, 68, 0.25)),
    rgba(2, 10, 24, 0.28);
  pointer-events: none;
}

@keyframes wishlist-scroll {
  from {
    background-position: 0 center;
  }

  to {
    background-position: -3857px center;
  }
}

.wishlist-band__content {
  display: flex;
  padding: 3rem 1.5rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
  text-shadow: 0 0.25rem 1.2rem rgba(0, 0, 0, 0.8);
}

.wishlist-band__content > p {
  margin: 0 0 0.45rem;
  color: #0c9bd6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wishlist-band h2 {
  margin: 0 0 1.35rem;
  color: #fff;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.wishlist-band__platform {
  display: grid;
  min-width: min(22rem, 78vw);
  min-height: 6.5rem;
  padding: 1rem 2rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.6rem;
  background: rgba(1, 27, 68, 0.72);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.32);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.wishlist-band__platform:hover {
  border-color: #ffdf2e;
  background: rgba(12, 155, 214, 0.82);
  transform: translateY(-0.2rem);
}

.wishlist-band__platform:focus-visible {
  outline: 3px solid #ffdf2e;
  outline-offset: 0.35rem;
}

.wishlist-band__platform img {
  display: block;
  width: min(18rem, 100%);
  height: 4rem;
  object-fit: contain;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 8vw, 9rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #011b44;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.kickstarter-strip {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  margin-top: -200px;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: #0c9bd6;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
  transition: background 180ms ease;
}

.kickstarter-strip:hover {
  background: #20afe8;
}

.kickstarter-strip:focus-visible {
  outline: 4px solid var(--cyan);
  outline-offset: -4px;
}

.kickstarter-strip__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(19rem, 0.85fr);
  width: min(88rem, 100%);
  margin: 0 auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.kickstarter-strip__pitch {
  justify-self: end;
  max-width: 38rem;
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  text-align: right;
}

.kickstarter-strip__pitch strong,
.kickstarter-strip__pitch span {
  display: block;
}

.kickstarter-strip__pitch strong {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.kickstarter-strip__pitch span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  line-height: 1.45;
}

.kickstarter-strip img {
  display: block;
  width: min(100%, 33rem);
  height: auto;
  justify-self: start;
}

.character-feature {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 62vw, 52rem);
  background: #090b0e;
}

.character-feature__background {
  position: absolute;
  inset: -12% 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 42%, rgba(7, 9, 12, 0.34) 60%, rgba(7, 9, 12, 0.88) 100%),
    url("assets/parallax-character-bg.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.character-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.18), transparent 22%, transparent 76%, rgba(8, 8, 12, 0.54));
  pointer-events: none;
}

.character-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(90rem, 100%);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 9rem);
  align-items: center;
}

.character-feature__copy {
  max-width: 34rem;
  justify-self: end;
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.55);
}

.character-feature__eyebrow {
  margin: 0 0 0.65rem;
  color: #0c9bd6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.character-feature__copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Built Titling", Impact, "Arial Black", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.character-feature__copy > p:not(.character-feature__eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.65;
}

.character-feature__link {
  display: inline-flex;
  min-height: 3.35rem;
  margin-top: 1.75rem;
  padding: 0.8rem 1.35rem;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 0.65rem;
  color: #fff;
  background: rgba(8, 8, 12, 0.48);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.character-feature__link:hover {
  border-color: #0c9bd6;
  background: rgba(8, 119, 168, 0.82);
  transform: translateY(-0.12rem);
}

.character-feature__link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 20%) minmax(0, 40%) minmax(0, 40%);
  gap: 0;
  width: min(82rem, 100%);
  margin: 0 auto;
  align-items: start;
}

.site-footer__section {
  min-width: 0;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

.site-footer__brand {
  padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.site-footer__section:last-child {
  padding-right: 0;
}

.site-footer__brand img {
  display: block;
  width: min(13rem, 100%);
  height: auto;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
}

.platform-link {
  display: flex;
  min-width: 0;
  min-height: 4.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.45rem;
  transition: background 180ms ease, transform 180ms ease;
}

.platform-link img {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: 2.5rem;
  object-fit: contain;
}

.platform-link:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-0.12rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.55rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-link--x img {
  mix-blend-mode: screen;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.social-links a:hover {
  border-color: #0c9bd6;
  background: rgba(12, 155, 214, 0.18);
  transform: translateY(-0.15rem);
}

.site-footer__legal a:hover {
  color: #0c9bd6;
}

.platform-link:focus-visible,
.social-links a:focus-visible,
.site-footer__legal a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 0.3rem;
}

.site-footer__legal {
  display: flex;
  width: min(82rem, 100%);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: 1.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.site-footer__legal div {
  display: flex;
  gap: 1.25rem;
}


.lightbox {
  width: min(94vw, 88rem);
  max-width: none;
  height: min(90vh, 55rem);
  max-height: none;
  padding: 3.5rem 4.5rem;
  overflow: visible;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(5, 5, 8, 0.92);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 1rem;
  animation: lightbox-backdrop-in 220ms ease both;
}

.lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(90vh - 7rem);
  object-fit: contain;
  border-radius: 0.7rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
  animation: lightbox-image-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.lightbox.is-closing {
  animation: lightbox-backdrop-out 220ms ease both;
}

.lightbox.is-closing .lightbox__image {
  animation: lightbox-image-out 220ms ease both;
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lightbox-image-out {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.82);
  }
}

@keyframes lightbox-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightbox-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 16, 23, 0.8);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.lightbox__nav {
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(12, 155, 214, 0.9);
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.25rem;
}

.trailer-lightbox {
  position: fixed;
  inset: 0;
  width: min(80vw, calc((90vh - 3.5rem) * 16 / 9));
  max-width: none;
  max-height: 90vh;
  margin: auto;
  padding: 3.5rem 0 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.trailer-lightbox::backdrop {
  background: rgba(5, 5, 8, 0.94);
}

.trailer-lightbox[open] {
  animation: lightbox-backdrop-in 220ms ease both;
}

.trailer-lightbox.is-closing {
  animation: lightbox-backdrop-out 220ms ease both;
}

.trailer-lightbox__video {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background: #09090d;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
  animation: lightbox-image-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.trailer-lightbox.is-closing .trailer-lightbox__video {
  animation: lightbox-image-out 220ms ease both;
}

.trailer-lightbox iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 16, 23, 0.85);
  font-size: 2rem;
  cursor: pointer;
}

.trailer-lightbox__close:hover {
  background: rgba(12, 155, 214, 0.9);
}

.trailer-lightbox__close:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.25rem;
}

.demo-lightbox {
  position: fixed;
  inset: 0;
  width: min(84vw, 78rem);
  max-width: none;
  max-height: 90vh;
  margin: auto;
  padding: 3.5rem 0 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.demo-lightbox::backdrop {
  background: rgba(5, 5, 8, 0.94);
}

.demo-lightbox[open] {
  animation: lightbox-backdrop-in 220ms ease both;
}

.demo-lightbox.is-closing {
  animation: lightbox-backdrop-out 220ms ease both;
}

.demo-lightbox__panel {
  display: flex;
  min-height: clamp(24rem, 42vw, 35rem);
  padding: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.8rem;
  color: #fff;
  background: #0b3977 url("assets/demo-lightbox-bg.png") center / cover no-repeat;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: lightbox-image-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.demo-lightbox.is-closing .demo-lightbox__panel {
  animation: lightbox-image-out 220ms ease both;
}

.demo-lightbox__panel h2 {
  margin: 0 0 clamp(2.25rem, 4vw, 3.5rem);
  color: #ffdf2e;
  font-family: "Built Titling", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.demo-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 50rem);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.demo-platform {
  display: grid;
  min-height: 8rem;
  padding: 1.25rem;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 0.6rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.demo-platform:hover {
  border-color: rgba(255, 223, 46, 0.85);
  background: rgba(1, 27, 68, 0.34);
  transform: translateY(-0.25rem);
}

.demo-platform:focus-visible {
  outline: 3px solid #ffdf2e;
  outline-offset: 0.25rem;
}

.demo-platform img {
  display: block;
  width: 100%;
  max-width: 18rem;
  height: 5.5rem;
  object-fit: contain;
}

.demo-lightbox__panel p {
  max-width: 48rem;
  margin: clamp(2rem, 4vw, 3.25rem) 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.demo-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 16, 23, 0.85);
  font-size: 2rem;
  cursor: pointer;
}

.demo-lightbox__close:hover {
  background: rgba(12, 155, 214, 0.9);
}

.demo-lightbox__close:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 0.25rem;
}

@media (max-width: 1100px) {
  :root {
    --content-left: clamp(1.25rem, 5vw, 4rem);
  }

  .hero {
    background-position: right center;
  }

  .hero__content {
    width: calc(100% - clamp(2.5rem, 10vw, 8rem));
    margin-left: var(--content-left);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .site-header,
  .site-header__inner {
    min-height: 4.4rem;
  }

  .site-header__inner {
    padding-inline: clamp(1.25rem, 5vw, 4rem);
  }

  .site-header__logo {
    width: clamp(4.8rem, 14vw, 6.25rem);
  }

  .menu-toggle {
    position: absolute;
    top: 0.55rem;
    right: clamp(1.25rem, 5vw, 4rem);
    width: 3.25rem;
    height: 3.25rem;
  }

  .site-navigation {
    top: 4.9rem;
    right: clamp(1.25rem, 5vw, 4rem);
  }
}

@media (min-width: 761px) and (max-height: 1100px) {
  .hero__content {
    padding-bottom: calc(clamp(3rem, 5vw, 5rem) + 200px);
  }
}

@media (max-width: 760px) {
  .features-section {
    margin-top: 0;
    padding: 0;
  }

  .features-carousel {
    min-height: 38rem;
  }

  .feature-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 56% 44%;
  }

  .feature-slide__copy {
    padding: 2.4rem 1.5rem 3.5rem;
    order: 2;
  }

  .feature-slide__copy::after {
    top: -2rem;
    right: -5%;
    bottom: auto;
    left: -5%;
    width: 110%;
    height: 3.5rem;
    border-right: 0;
    box-shadow: 0 -3px 0 #0c9bd7;
    transform: skewY(-4deg);
  }

  .feature-slide__copy h3 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .feature-slide__media {
    order: 1;
  }

  .feature-slide__media img {
    width: 100%;
    margin-left: 0;
  }

  .features-dots {
    bottom: 1.2rem;
    left: 1.5rem;
  }

  .fighter-select {
    min-height: 42rem;
    background:
      linear-gradient(180deg, transparent 0%, rgba(1, 14, 35, 0.2) 42%, rgba(1, 14, 35, 0.95) 78%),
      url("assets/character-select-bg.jpg") 42% center / cover no-repeat;
  }

  .fighter-select__inner {
    grid-template-columns: 1fr;
    padding-top: 17rem;
    align-items: end;
  }

  .fighter-select__copy {
    max-width: 34rem;
    justify-self: start;
    padding-left: 0;
  }

  .fighter-select__roster {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(100%, 28rem);
    margin-bottom: 2rem;
  }

  .media-showcase {
    padding: 4rem clamp(1.25rem, 6vw, 2.25rem);
  }

  .media-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .devlog-drawer {
    top: 28%;
    grid-template-columns: 3.15rem minmax(0, 1fr);
    width: calc(100vw - 0.75rem);
    transform: translateX(calc(100% - 3.15rem));
  }

  .devlog-toggle {
    min-height: 12rem;
  }

  .devlog-toggle span {
    font-size: 1rem;
  }

  .devlog-panel {
    max-height: 70vh;
    padding: 1.3rem max(1rem, var(--nav-right)) 1rem 1rem;
    overflow-y: auto;
  }

  .devlog-slide {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    text-align: center;
  }

  .devlog-slide > img {
    width: 6.5rem;
    height: 6.5rem;
    margin: 0 auto;
  }

  .devlog-slide__copy h2 {
    font-size: 1.35rem;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(13, 12, 19, 0.08) 0%, rgba(13, 12, 19, 0.7) 45%, #111017 100%),
      url("assets/team-rush-bg.jpg") 68% top / auto 54vh no-repeat,
      #111017;
    background-attachment: fixed;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__content {
    width: 100%;
    margin-left: 0;
    padding: 2rem clamp(1.25rem, 6vw, 2.25rem) 2.5rem;
  }

  .hero__logo {
    width: min(15.75rem, 74vw);
    margin-bottom: min(22vh, 10rem);
  }

  .hero__copy {
    max-width: 32rem;
    margin: 0;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }

  .action-button {
    width: 100%;
  }

  .media-layout {
    margin-top: 3rem;
  }

  .hero-social-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .lightbox {
    width: 100vw;
    height: 100vh;
    padding: 4rem 1rem 1rem;
  }

  .lightbox[open] {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.4rem;
  }

  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .lightbox__nav {
    width: 2.75rem;
    height: 2.75rem;
  }

  .trailer-lightbox {
    width: calc(100vw - 1.5rem);
    padding-top: 3.75rem;
  }

  .trailer-lightbox__close {
    top: 0.5rem;
    right: 0.25rem;
  }

  .demo-lightbox {
    width: calc(100vw - 1.5rem);
    padding-top: 3.75rem;
  }

  .demo-lightbox__panel {
    min-height: min(34rem, calc(90vh - 3.75rem));
    padding: 2.5rem 1.25rem;
  }

  .demo-lightbox__close {
    top: 0.5rem;
    right: 0.25rem;
  }

  .demo-platforms {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
    gap: 0.5rem;
  }

  .demo-platform {
    min-height: 5.5rem;
    padding: 0.75rem;
  }

  .demo-platform img {
    height: 3.75rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__brand,
  .site-footer__section,
  .site-footer__section:last-child {
    padding-inline: 0;
  }

  .platform-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .platform-link img {
    height: 2rem;
  }

  .site-footer__brand img {
    width: min(13rem, 100%);
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .character-feature {
    min-height: 42rem;
  }

  .kickstarter-strip {
    padding-block: 2rem;
  }

  .kickstarter-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kickstarter-strip__pitch {
    justify-self: center;
    text-align: center;
  }

  .kickstarter-strip img {
    width: min(100%, 25rem);
    justify-self: center;
  }

  .character-feature__background {
    inset: -8% 0;
    background:
      linear-gradient(180deg, transparent 0%, rgba(7, 9, 12, 0.2) 42%, rgba(7, 9, 12, 0.94) 78%),
      url("assets/parallax-character-bg.jpg") 42% center / cover no-repeat;
  }

  .character-feature__inner {
    grid-template-columns: 1fr;
    padding-top: 17rem;
    align-items: end;
  }

  .character-feature__inner > div:first-child {
    display: none;
  }

  .character-feature__copy {
    max-width: 34rem;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .site-header__logo {
    transition: none;
  }

  .devlog-panel {
    transition: none;
  }

  .lightbox[open],
  .lightbox__image,
  .lightbox.is-closing,
  .lightbox.is-closing .lightbox__image,
  .trailer-lightbox[open],
  .trailer-lightbox.is-closing,
  .trailer-lightbox__video,
  .trailer-lightbox.is-closing .trailer-lightbox__video,
  .demo-lightbox[open],
  .demo-lightbox.is-closing,
  .demo-lightbox__panel,
  .demo-lightbox.is-closing .demo-lightbox__panel {
    animation-duration: 1ms;
  }

  .character-feature__background {
    transform: none;
  }

  .feature-slide.is-active .feature-slide__media img {
    animation: none;
  }

  .wishlist-band__background {
    animation: none;
  }

  .feature-slide.is-entering-forward,
  .feature-slide.is-leaving-forward,
  .feature-slide.is-entering-backward,
  .feature-slide.is-leaving-backward {
    animation-duration: 1ms;
  }
}

@media (max-width: 420px) {
  .hero__logo {
    width: min(13.5rem, 78vw);
  }

  .hero__copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
}
