:root {
  --void: #050507;
  --black: #09080c;
  --ink: #111017;
  --panel: rgba(14, 13, 20, 0.78);
  --panel-strong: rgba(16, 15, 22, 0.94);
  --line: rgba(255, 64, 107, 0.22);
  --hot: #ff315f;
  --hot-strong: #ff174f;
  --hot-soft: rgba(255, 49, 95, 0.18);
  --blue: #32d9ff;
  --blue-soft: rgba(50, 217, 255, 0.12);
  --paper: #f8f4f6;
  --muted: #b9aeb5;
  --dim: #756a73;
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 49, 95, 0.2), transparent 22rem),
    radial-gradient(circle at 16% 0%, rgba(50, 217, 255, 0.11), transparent 18rem),
    linear-gradient(145deg, #050507 0%, #09080c 42%, #130910 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 49, 95, 0.1) 0 1px, transparent 1px);
  background-size: 100% 4px, 6px 6px;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(255, 49, 95, 0.54);
  border-radius: 6px;
  box-shadow: 0 0 22px rgba(255, 49, 95, 0.34);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(248, 244, 246, 0.74);
  font-family: "Press Start 2P", monospace;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 49, 95, 0.58);
  box-shadow: inset 0 0 18px rgba(255, 49, 95, 0.16), 0 0 18px rgba(255, 49, 95, 0.12);
}

.site-nav .nav-cta {
  color: #fff;
  border-color: rgba(255, 49, 95, 0.66);
  background: linear-gradient(135deg, #b50f35, var(--hot));
  box-shadow: 0 0 22px rgba(255, 49, 95, 0.34);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  min-height: 88vh;
  padding: 118px 72px 56px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hot), var(--blue), var(--hot), transparent);
  box-shadow: 0 0 24px rgba(255, 49, 95, 0.54);
}

.hero-grid {
  position: absolute;
  inset: auto -10vw 0;
  height: 56%;
  pointer-events: none;
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 49, 95, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 49, 95, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(520px) rotateX(64deg) translateY(25%);
  transform-origin: bottom;
  animation: grid-run 5s linear infinite;
}

.speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.speed-lines i {
  position: absolute;
  width: min(36vw, 420px);
  height: 2px;
  color: var(--hot);
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.46;
  filter: drop-shadow(0 0 10px currentColor);
  animation: streak 3.1s linear infinite;
}

.speed-lines i:nth-child(1) {
  top: 22%;
  left: -40%;
}

.speed-lines i:nth-child(2) {
  top: 44%;
  left: -52%;
  color: var(--blue);
  animation-delay: 0.65s;
}

.speed-lines i:nth-child(3) {
  top: 58%;
  left: -35%;
  animation-delay: 1.2s;
}

.speed-lines i:nth-child(4) {
  top: 72%;
  left: -48%;
  animation-delay: 1.7s;
}

.speed-lines i:nth-child(5) {
  top: 33%;
  left: -45%;
  color: var(--blue);
  opacity: 0.28;
  animation-delay: 2.2s;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--hot);
  font-family: "Press Start 2P", monospace;
  font-size: 0.63rem;
  line-height: 1.8;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 49, 95, 0.38);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 5vw, 4.85rem);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 49, 95, 0.42),
    2px 0 0 rgba(50, 217, 255, 0.16);
}

.hero-lede {
  max-width: 650px;
  color: rgba(248, 244, 246, 0.78);
  font-size: 1.25rem;
  line-height: 1.58;
}

.hero-actions,
.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(255, 49, 95, 0.42);
  border-radius: 7px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.46) 18%, transparent 28%);
  transform: translateX(-130%);
  transition: transform 540ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #8f0b28, var(--hot) 68%, #ff6b8b);
  box-shadow: 0 0 22px rgba(255, 49, 95, 0.34), 0 0 44px rgba(255, 49, 95, 0.14);
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(50, 217, 255, 0.42);
  background: rgba(50, 217, 255, 0.06);
  box-shadow: inset 0 0 20px rgba(50, 217, 255, 0.08), 0 0 24px rgba(255, 49, 95, 0.14);
}

.hero-visual {
  min-height: 520px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -16px -12px 34px;
  border: 1px solid rgba(255, 49, 95, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 49, 95, 0.16), transparent 42%);
  clip-path: polygon(0 7%, 7% 0, 100% 0, 100% 88%, 91% 100%, 0 100%);
  animation: panel-pulse 3.2s ease-in-out infinite;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 49, 95, 0.5);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44), 0 0 42px rgba(255, 49, 95, 0.24);
}

.slideshow::before,
.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.slideshow::before {
  background: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

.slideshow::after {
  border: 1px solid rgba(50, 217, 255, 0.2);
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.36);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 680ms ease, transform 1600ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.signal-readout {
  position: absolute;
  right: 18px;
  bottom: 58px;
  min-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(50, 217, 255, 0.38);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.84);
  box-shadow: 0 0 24px rgba(50, 217, 255, 0.14);
}

.signal-readout span {
  display: block;
  color: var(--muted);
  font-family: "Press Start 2P", monospace;
  font-size: 0.54rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.signal-readout strong {
  display: block;
  margin-top: 4px;
  color: var(--hot);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.28rem;
  text-shadow: 0 0 14px rgba(255, 49, 95, 0.42);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 49, 95, 0.28);
  background: rgba(5, 5, 7, 0.78);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 34px;
  color: var(--hot);
  font-family: "Press Start 2P", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 49, 95, 0.34);
}

.section-band {
  padding: 108px 72px;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: 5.6rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(248, 244, 246, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

.game-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.game-media {
  position: relative;
}

.game-media::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(255, 49, 95, 0.34);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 49, 95, 0.2), transparent 40%);
  transform: skew(-1deg);
}

.game-media img {
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: cover;
  border: 1px solid rgba(248, 244, 246, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 36px rgba(255, 49, 95, 0.18);
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.game-meta span,
.feature-list span,
.principles span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 49, 95, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(248, 244, 246, 0.76);
  background: rgba(255, 49, 95, 0.06);
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.game-meta span:nth-child(2),
.feature-list span:nth-child(even),
.principles span:nth-child(even) {
  border-color: rgba(50, 217, 255, 0.32);
  background: rgba(50, 217, 255, 0.055);
}

.game-copy {
  padding-block: 8px;
}

.status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(50, 217, 255, 0.38);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue);
  background: rgba(50, 217, 255, 0.06);
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.game-copy h3 {
  margin-bottom: 14px;
  font-size: 3.65rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.game-copy p:not(.status-pill) {
  color: rgba(248, 244, 246, 0.73);
  line-height: 1.7;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.stat-grid div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 49, 95, 0.18);
  border-radius: 8px;
  background: rgba(255, 49, 95, 0.045);
}

.stat-grid strong {
  display: block;
  color: var(--hot);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 49, 95, 0.42);
}

.stat-grid strong::after {
  content: "+";
  color: var(--blue);
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.feature-list,
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.future-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 52px auto 0;
}

.game-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 49, 95, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 49, 95, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.025);
}

.game-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 4px;
  background: linear-gradient(90deg, var(--hot), var(--blue));
  box-shadow: 0 0 18px rgba(255, 49, 95, 0.3);
}

.game-card p {
  color: var(--hot);
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.game-card h3 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.game-card span {
  display: block;
  max-width: 28ch;
  color: rgba(248, 244, 246, 0.65);
  line-height: 1.55;
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 49, 95, 0.07), transparent 38%),
    rgba(255, 255, 255, 0.018);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  gap: 70px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.about-layout p {
  color: rgba(248, 244, 246, 0.75);
  font-size: 1.35rem;
  line-height: 1.65;
}

.principles {
  justify-content: flex-start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-tile {
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(255, 49, 95, 0.25);
  border-radius: 8px;
  background: rgba(255, 49, 95, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-tile:hover,
.contact-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(50, 217, 255, 0.46);
  box-shadow: 0 0 28px rgba(50, 217, 255, 0.12);
}

.contact-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--hot);
  font-family: "Press Start 2P", monospace;
  font-size: 0.52rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.contact-tile strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 72px;
  border-top: 1px solid rgba(255, 49, 95, 0.18);
  color: rgba(248, 244, 246, 0.58);
  font-size: 0.82rem;
}

.press-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.38fr);
  gap: 48px;
  align-items: center;
  min-height: 62vh;
  overflow: hidden;
  padding: 128px 72px 72px;
  border-bottom: 1px solid var(--line);
}

.press-hero-copy,
.press-logo {
  position: relative;
  z-index: 2;
}

.press-hero h1 {
  margin-bottom: 18px;
}

.press-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(248, 244, 246, 0.76);
  font-size: 1.18rem;
  line-height: 1.65;
}

.press-logo {
  width: min(100%, 320px);
  justify-self: end;
  border: 1px solid rgba(255, 49, 95, 0.34);
  border-radius: 8px;
  box-shadow: 0 0 44px rgba(255, 49, 95, 0.22);
}

.press-section {
  padding: 88px 72px;
  border-bottom: 1px solid rgba(255, 49, 95, 0.14);
}

.press-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.press-index-card {
  display: grid;
  gap: 12px;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 49, 95, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 49, 95, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.press-index-card:hover,
.press-index-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(50, 217, 255, 0.44);
  box-shadow: 0 0 26px rgba(50, 217, 255, 0.12);
}

.press-index-card strong {
  color: var(--hot);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.press-index-card span {
  color: rgba(248, 244, 246, 0.72);
  line-height: 1.55;
}

.press-index-card small {
  align-self: end;
  color: var(--blue);
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.84fr);
  gap: 32px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.factsheet,
.press-copy-block {
  border: 1px solid rgba(255, 49, 95, 0.2);
  border-radius: 8px;
  background: rgba(255, 49, 95, 0.035);
}

.factsheet {
  position: sticky;
  top: 92px;
  padding: 20px;
}

.factsheet h3,
.press-copy-block h3,
.media-section h3 {
  margin-bottom: 16px;
  color: var(--hot);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.factsheet dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.factsheet div {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 49, 95, 0.16);
}

.factsheet dt {
  color: var(--blue);
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.factsheet dd {
  margin: 0;
  color: rgba(248, 244, 246, 0.78);
  line-height: 1.45;
}

.factsheet a,
.press-copy-block a:not(.btn) {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(50, 217, 255, 0.5);
  text-underline-offset: 4px;
}

.press-copy-block {
  padding: 26px;
}

.press-copy-block p,
.press-list {
  color: rgba(248, 244, 246, 0.74);
  line-height: 1.7;
}

.press-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0 0 28px;
}

.asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.press-game-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.58fr);
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 34px;
}

.press-game-hero h2 {
  margin-bottom: 14px;
  font-size: 5.1rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.press-game-hero p:not(.eyebrow) {
  color: rgba(248, 244, 246, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.press-game-hero img {
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: cover;
  border: 1px solid rgba(255, 49, 95, 0.3);
  border-radius: 8px;
  box-shadow: 0 0 34px rgba(255, 49, 95, 0.16);
}

.media-section {
  max-width: var(--max);
  margin: 42px auto 0;
}

.section-heading-compact {
  margin-bottom: 18px;
}

.section-heading-compact h3 {
  color: var(--paper);
  font-size: 2rem;
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.press-gallery a {
  overflow: hidden;
  border: 1px solid rgba(255, 49, 95, 0.22);
  border-radius: 8px;
  background: var(--ink);
}

.press-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.press-gallery a:hover img,
.press-gallery a:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.14);
}

@keyframes grid-run {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 52px;
  }
}

@keyframes streak {
  from {
    transform: translateX(0) skewX(-18deg);
  }
  to {
    transform: translateX(150vw) skewX(-18deg);
  }
}

@keyframes panel-pulse {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: inset 0 0 28px rgba(255, 49, 95, 0.08);
  }
  50% {
    opacity: 1;
    box-shadow: inset 0 0 34px rgba(50, 217, 255, 0.12);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: clamp(3.45rem, 7vw, 4.45rem);
  }

  .section-heading h2 {
    font-size: 4.6rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-link span {
    max-width: 140px;
    line-height: 1;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 49, 95, 0.45);
    border-radius: 7px;
    color: var(--paper);
    background: rgba(255, 49, 95, 0.08);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 49, 95, 0.28);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.96);
    box-shadow: 0 28px 40px rgba(0, 0, 0, 0.34);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
  }

  .hero,
  .game-feature,
  .about-layout,
  .press-hero,
  .press-layout,
  .press-game-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 52px;
    gap: 34px;
  }

  .hero-visual {
    min-height: auto;
  }

  .signal-readout {
    right: 12px;
    bottom: 18px;
  }

  .section-band {
    padding: 84px 18px;
  }

  .press-hero,
  .press-section {
    padding: 96px 18px 64px;
  }

  .press-logo {
    justify-self: start;
    width: min(100%, 240px);
  }

  .factsheet {
    position: relative;
    top: auto;
  }

  .about-layout {
    gap: 28px;
  }

  .future-games,
  .contact-grid,
  .press-index-list,
  .press-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .game-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .signal-readout {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .press-game-hero h2 {
    font-size: 3.1rem;
  }

  .game-copy h3 {
    font-size: 2.7rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .about-layout p {
    font-size: 1.05rem;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
