:root {
  color-scheme: dark;
  --bg: #050913;
  --panel: #08101f;
  --panel-2: #0b1428;
  --line: rgba(152, 191, 255, 0.2);
  --text: #f7fbff;
  --muted: #aab5c8;
  --blue: #168bff;
  --cyan: #28d7ff;
  --magenta: #c646ff;
  --green: #76df4f;
  --amber: #ffbb45;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
  --max: 1370px;
  --content-pad: clamp(24px, 3vw, 42px);
  --page-pad: max(var(--content-pad), calc((100vw - var(--max)) / 2 + var(--content-pad)));
  --font-body: "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: Impact, "Arial Black", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(22, 139, 255, 0.09), transparent 34%),
    linear-gradient(215deg, rgba(198, 70, 255, 0.08), transparent 42%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  z-index: -1;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 96px;
  padding: 18px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 16, 0.72);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(3, 7, 16, 0.92);
}

.brand {
  display: inline-grid;
  gap: 0;
  width: max-content;
  font-family: "Arial Black", var(--font-body);
  text-transform: uppercase;
  line-height: 0.88;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 205px;
  height: auto;
}

.brand-main {
  position: relative;
  font-size: 1.4rem;
}

.brand-sub {
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-star {
  color: #fff;
  margin-left: 2px;
  font-size: 0.96em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(7, 18, 37, 0.9);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 30px;
  border: 2px solid var(--blue);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.solid-button {
  background: linear-gradient(135deg, #0089ff, #1e6bff);
  box-shadow: 0 16px 40px rgba(22, 139, 255, 0.32);
}

.outline-button {
  background: rgba(3, 8, 20, 0.42);
}

.solid-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.header-cta {
  min-height: 58px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 140px max(clamp(24px, 7vw, 128px), calc((100vw - 1351.11px) / 2 + 64px)) 86px;
  border-bottom: 1px solid var(--line);
  background: #050913;
  overflow: hidden;
}

.hero-bg {
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.hero-video-fill {
  z-index: 0;
  object-fit: cover;
  filter: blur(18px) saturate(1.15);
  opacity: 0.7;
  transform: scale(1.08);
}

.hero-video-main {
  z-index: 1;
  object-fit: contain;
}

.hero-copy {
  position: relative;
  max-width: 780px;
  z-index: 3;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.contact-copy h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.section-intro h2 span,
.contact-copy h2 span {
  color: #59a7ff;
}

.hero-lede {
  margin: 22px 0 36px;
  max-width: 560px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 750;
  line-height: 1.25;
}

.hero-frame {
  display: contents;
}

.pixel-icon {
  display: block;
  object-fit: contain;
  image-rendering: pixelated;
}

.scroll-cue {
  position: absolute;
  left: 42px;
  bottom: 48px;
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 16px;
  height: 31px;
  border: 1px solid var(--muted);
  border-radius: 20px;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 58px;
  order: -1;
  background: linear-gradient(var(--muted) 40%, transparent 0);
  background-size: 1px 8px;
}

.trusted-strip {
  display: grid;
  align-items: center;
  gap: 36px;
  padding: 30px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 14, 28, 0.8);
}

.trusted-strip {
  grid-template-columns: auto 1fr;
}

.trusted-strip p {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trusted-strip ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.trusted-strip li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  opacity: 0.88;
}

.platform-mark {
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.88;
}

.platform-mark.ps {
  border-radius: 2px 14px 14px 2px;
}

.platform-mark.xbox {
  border-radius: 50%;
  background: linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
}

.platform-mark.switch {
  border-radius: 7px;
  box-shadow: inset 10px 0 0 transparent;
}

.platform-mark.epic {
  border-radius: 4px;
}

.platform-mark.ios {
  border-radius: 44% 44% 50% 50%;
  width: 23px;
}

.platform-mark.google-play {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background: conic-gradient(from 212deg, #39d98a 0 22%, #21b7ff 0 52%, #ffcf45 0 74%, #ff5b68 0 100%);
  clip-path: polygon(12% 5%, 92% 50%, 12% 95%);
  filter: drop-shadow(0 0 8px rgba(57, 217, 138, 0.28));
}

.platform-logo {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.88;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px clamp(24px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.service-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  min-height: 170px;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-card h2 {
  margin: 0 0 14px;
  max-width: 280px;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 850;
}

.service-card:nth-child(2) h2 {
  color: var(--magenta);
}

.service-card:nth-child(3) h2 {
  color: var(--green);
}

.service-card:nth-child(4) h2 {
  color: var(--amber);
}

.service-card p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.service-icon {
  width: 96px;
  height: 96px;
  margin-top: 14px;
}

.service-icon.heart {
  filter: brightness(0) saturate(100%) invert(70%) sepia(96%) saturate(1332%) hue-rotate(152deg) brightness(102%) contrast(103%) drop-shadow(0 0 14px rgba(40, 215, 255, 0.28));
}

.service-icon.wrench {
  filter: brightness(0) saturate(100%) invert(46%) sepia(79%) saturate(3963%) hue-rotate(259deg) brightness(104%) contrast(102%) drop-shadow(0 0 14px rgba(198, 70, 255, 0.3));
}

.service-icon.rocket {
  filter: brightness(0) saturate(100%) invert(82%) sepia(77%) saturate(484%) hue-rotate(42deg) brightness(94%) contrast(88%) drop-shadow(0 0 14px rgba(118, 223, 79, 0.28));
}

.service-icon.chip {
  filter: brightness(0) saturate(100%) invert(80%) sepia(73%) saturate(1146%) hue-rotate(334deg) brightness(103%) contrast(102%) drop-shadow(0 0 14px rgba(255, 187, 69, 0.3));
}

.content-section {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px clamp(24px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section-intro h2 {
  font-size: 3.6rem;
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.rail-wrap {
  position: relative;
  min-width: 0;
}

.game-rail,
.team-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 310px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 6px 6px 10px;
}

.team-rail {
  grid-auto-columns: minmax(168px, 190px);
  gap: 18px;
}

.game-rail::-webkit-scrollbar,
.team-rail::-webkit-scrollbar {
  display: none;
}

.game-card,
.team-card,
.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 27, 52, 0.86), rgba(5, 10, 20, 0.88));
  box-shadow: var(--shadow);
}

.game-card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.game-card:hover,
.game-card:focus-visible {
  border-color: rgba(88, 169, 255, 0.78);
  box-shadow: 0 22px 70px rgba(22, 139, 255, 0.18), var(--shadow);
  transform: translateY(-3px);
  outline: 0;
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.game-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 48px;
  margin: 0;
  padding: 14px 14px 5px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.game-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px 5px;
}

.game-services span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.game-services .development {
  color: var(--cyan);
}

.game-services .porting {
  color: var(--magenta);
}

.game-services .publishing {
  color: var(--green);
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  margin-top: auto;
  padding: 6px 14px 14px;
}

.game-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.game-meta a:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 169, 255, 0.78);
  background: rgba(88, 169, 255, 0.1);
}

.game-meta img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.9;
}

.game-meta span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.game-meta.is-empty {
  display: none;
}

body.is-modal-open {
  overflow: hidden;
}

.game-modal[hidden] {
  display: none;
}

.game-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 6, 15, 0.82);
  backdrop-filter: blur(18px);
}

.game-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 34px;
  width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(88, 169, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(22, 139, 255, 0.14), transparent 42%),
    linear-gradient(215deg, rgba(198, 70, 255, 0.12), transparent 48%),
    rgba(6, 12, 25, 0.98);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.72);
}

.game-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(3, 8, 20, 0.82);
  cursor: pointer;
}

.game-modal-close::before,
.game-modal-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.game-modal-close::before {
  transform: rotate(45deg);
}

.game-modal-close::after {
  transform: rotate(-45deg);
}

.game-modal-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.game-modal-media > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #02050d;
}

.game-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.game-modal-thumbs button {
  padding: 0;
  border: 1px solid rgba(152, 191, 255, 0.22);
  background: #050913;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.game-modal-thumbs button:hover,
.game-modal-thumbs button.is-active {
  border-color: var(--blue);
  opacity: 1;
  transform: translateY(-2px);
}

.game-modal-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.game-modal-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 36px;
}

.game-modal-copy .kicker {
  margin-top: 0;
}

.game-modal-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.game-modal-copy p[data-game-modal-description] {
  margin: 20px 0 28px;
  color: #dbe6f8;
  font-size: 1rem;
  font-weight: 500;
}

.game-modal-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.game-modal-services span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-modal-services .development {
  color: var(--cyan);
}

.game-modal-services .porting {
  color: var(--magenta);
}

.game-modal-services .publishing {
  color: var(--green);
}

.game-modal-links {
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: auto;
}

.game-modal-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-modal-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-modal-store-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.game-modal-store-links a:hover {
  border-color: rgba(88, 169, 255, 0.78);
  background: rgba(88, 169, 255, 0.1);
  transform: translateY(-2px);
}

.game-modal-store-links img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.game-modal-store-links span {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
}

.rail-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(3, 7, 16, 0.78);
  transform: translateY(-50%);
  cursor: pointer;
}

.rail-button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.rail-button.previous {
  left: -17px;
}

.rail-button.previous::before {
  transform: rotate(225deg);
}

.rail-button.next {
  right: -17px;
}

.rail-button.next::before {
  transform: rotate(45deg);
}

.stats {
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.stat-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 260px;
  padding: 28px 18px;
  text-align: center;
}

.stat-card.cyan {
  border-color: rgba(40, 215, 255, 0.65);
}

.stat-card.magenta {
  border-color: rgba(198, 70, 255, 0.65);
}

.stat-card.green {
  border-color: rgba(118, 223, 79, 0.65);
}

.stat-card.amber {
  border-color: rgba(255, 187, 69, 0.65);
}

.stat-card strong {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.9;
}

.stat-card h3 {
  margin: 10px 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.stat-icon {
  width: 52px;
  height: 52px;
}

.cyan .stat-icon {
  filter: brightness(0) saturate(100%) invert(70%) sepia(96%) saturate(1332%) hue-rotate(152deg) brightness(102%) contrast(103%);
}

.magenta .stat-icon {
  filter: brightness(0) saturate(100%) invert(46%) sepia(79%) saturate(3963%) hue-rotate(259deg) brightness(104%) contrast(102%);
}

.green .stat-icon {
  filter: brightness(0) saturate(100%) invert(82%) sepia(77%) saturate(484%) hue-rotate(42deg) brightness(94%) contrast(88%);
}

.amber .stat-icon {
  filter: brightness(0) saturate(100%) invert(80%) sepia(73%) saturate(1146%) hue-rotate(334deg) brightness(103%) contrast(102%);
}

.team-card {
  scroll-snap-align: start;
  padding: 10px 10px 14px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.team-card h3 {
  margin: 14px 0 4px;
  min-height: 37px;
  font-size: 0.9rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.28;
}

.socials,
.social-row {
  display: flex;
  gap: 9px;
  align-items: center;
}

.socials a,
.social-row a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trusted-strip {
  border-top: 1px solid var(--line);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(0, 620px);
  justify-content: space-between;
  gap: clamp(28px, 5vw, 84px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px clamp(24px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(22, 139, 255, 0.08), transparent 48%),
    rgba(7, 14, 28, 0.5);
}

.newsletter-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.newsletter-copy h2 span {
  color: #59a7ff;
}

.newsletter-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.newsletter-field {
  display: grid;
  gap: 8px;
}

.newsletter-field span,
.newsletter-consent {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(88, 169, 255, 0.45);
  background: rgba(3, 8, 20, 0.7);
  color: #fff;
  font: inherit;
}

.newsletter-field input:focus {
  outline: 2px solid rgba(40, 215, 255, 0.55);
  outline-offset: 2px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.35;
  text-transform: none;
  font-weight: 500;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.newsletter-form .solid-button {
  justify-self: start;
}

.newsletter-error {
  margin: -6px 0 0;
  color: #ff7a7a;
  font-size: 0.82rem;
  font-weight: 700;
}

.newsletter-honeypot {
  position: absolute;
  left: -5000px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(220px, 330px) auto minmax(220px, 320px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px clamp(24px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.contact-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.contact-copy h2 {
  font-size: 4rem;
}

.contact-copy p {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.outline-button.big {
  min-width: 210px;
  min-height: 70px;
  font-size: 0.9rem;
}

.solid-button.compact,
.outline-button.compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.78rem;
}

address {
  display: grid;
  gap: 20px;
  min-height: 190px;
  padding-left: 46px;
  border-left: 1px dashed var(--line);
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

address a,
address .follow {
  color: #58a9ff;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 30px var(--page-pad);
  color: var(--muted);
  background: rgba(3, 7, 16, 0.82);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-link:hover,
.site-footer nav a:hover {
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

.site-footer .brand-logo {
  width: 165px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(88, 169, 255, 0.55);
  background: rgba(5, 10, 22, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-copy h2,
.cookie-modal-panel h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-copy p,
.cookie-modal-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-copy a {
  display: inline-block;
  margin-top: 8px;
  color: #58a9ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 5, 12, 0.72);
}

.cookie-modal-panel {
  width: min(640px, 100%);
  padding: 26px;
  border: 1px solid rgba(88, 169, 255, 0.55);
  background: #07101f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.cookie-option strong {
  display: block;
  color: #fff;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.cookie-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.cookie-option.is-disabled {
  opacity: 0.78;
}

.cookie-modal-actions {
  margin-top: 22px;
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4.9rem;
  }

  .section-intro h2 {
    font-size: 3.2rem;
  }

  .contact-copy h2 {
    font-size: 3.4rem;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 7, 16, 0.97);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(152, 191, 255, 0.12);
  }

  .header-cta {
    justify-self: end;
  }

  .service-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 32px;
  }

  .service-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .content-section,
  .newsletter-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .game-modal-panel {
    grid-template-columns: 1fr;
  }

  .game-modal-copy {
    padding-right: 0;
  }

  .section-intro {
    max-width: 620px;
  }

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

  address {
    padding-left: 0;
    border-left: 0;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand-main {
    font-size: 1.16rem;
  }

  .brand-sub {
    font-size: 1.04rem;
  }

  .brand-logo {
    width: 150px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    order: initial;
  }

  .hero {
    min-height: 690px;
    padding: 128px 22px 58px;
  }

  .hero-video-main {
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-video-fill {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .section-intro h2 {
    font-size: 2.55rem;
  }

  .contact-copy h2 {
    font-size: 2.6rem;
  }

  .scroll-cue {
    display: none;
  }

  .trusted-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: hidden;
  }

  .trusted-strip ul {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .service-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
  }

  .content-section {
    padding-block: 56px;
    gap: 30px;
  }

  .section-intro .outline-button {
    width: 100%;
  }

  .game-rail {
    grid-auto-columns: minmax(235px, 78%);
  }

  .game-modal {
    padding: 12px;
  }

  .game-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 18px;
    gap: 22px;
  }

  .game-modal-copy h2 {
    padding-right: 42px;
    font-size: 2.55rem;
  }

  .game-modal-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-modal-store-links a {
    width: 100%;
  }

  .team-rail {
    grid-auto-columns: minmax(166px, 58%);
  }

  .rail-button {
    display: none;
  }

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

  .stat-card {
    min-height: 210px;
  }

  .contact-band {
    padding-block: 44px;
  }

  .newsletter-copy h2 {
    font-size: 2.6rem;
  }

  .newsletter-form .solid-button {
    width: 100%;
  }

  .outline-button.big {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 28px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-actions,
  .cookie-actions button,
  .cookie-modal-actions,
  .cookie-modal-actions button {
    width: 100%;
  }

  .cookie-modal {
    padding: 14px;
  }

  .cookie-modal-panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
    padding: 20px;
  }
}

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