:root {
  --bg: #05090f;
  --bg-soft: #07111b;
  --surface: #0a1520;
  --surface-strong: #0d1b29;
  --brand: #00acee;
  --brand-deep: #2d96d3;
  --text: #f4f7fb;
  --muted: #a8b3c2;
  --muted-strong: #c8d0da;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(0, 172, 238, 0.38);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: 1200px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 172, 238, 0.08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: #00131b;
  background: var(--brand);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #00131b;
  background: var(--brand);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 9, 15, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 9, 15, 0.93);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(148px, 15vw, 190px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 1711.86 / 540;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand);
  transition: transform 220ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-subscribe-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
  margin-inline: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button--primary {
  border-color: var(--brand);
  color: #00131b;
  background: var(--brand);
  box-shadow: 0 12px 34px rgba(0, 172, 238, 0.16);
}

.button--primary:hover {
  border-color: #46c7f8;
  background: #46c7f8;
  box-shadow: 0 16px 44px rgba(0, 172, 238, 0.28);
}

.button--text {
  min-height: auto;
  padding: 0 0 5px;
  border-width: 0 0 1px;
  border-radius: 0;
  border-bottom-color: rgba(0, 172, 238, 0.55);
  background: transparent;
}

.button--text:hover {
  transform: none;
  border-bottom-color: var(--brand);
  background: transparent;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.header-subscribe {
  min-height: 44px;
  padding-inline: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.display-title,
.section-title,
.card-title,
.page-title {
  margin-bottom: 0;
  font-family: "Arial Black", "Segoe UI Black", Impact, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.display-title {
  max-width: 820px;
  font-size: clamp(3.25rem, 7.8vw, 7rem);
}

.page-title {
  max-width: 960px;
  font-size: clamp(3rem, 7vw, 6.25rem);
}

.section-title {
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
}

.card-title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.accent-text {
  color: var(--brand);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(0, 172, 238, 0.17), transparent 27rem),
    radial-gradient(circle at 18% 12%, rgba(45, 150, 211, 0.10), transparent 25rem),
    linear-gradient(135deg, #07111b 0%, #05090f 52%, #07101a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  min-height: calc(100svh - var(--header-height));
  padding-block: 80px;
}

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

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.hero-logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0, 172, 238, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 172, 238, 0.12), rgba(0, 172, 238, 0.025) 46%, transparent 70%);
  box-shadow:
    inset 0 0 90px rgba(0, 172, 238, 0.06),
    0 0 120px rgba(0, 172, 238, 0.08);
}

.hero-logo-frame::before,
.hero-logo-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-logo-frame::before {
  inset: 9%;
}

.hero-logo-frame::after {
  inset: 20%;
  border-color: rgba(0, 172, 238, 0.22);
}

.hero-mark {
  position: relative;
  z-index: 1;
  width: 67%;
  height: auto;
  aspect-ratio: 1000.89 / 1023;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 172, 238, 0.18));
}

.hero-badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 3;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(5, 9, 15, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.platform-pill,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 150px);
}

.section--surface {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 21, 32, 0.78), rgba(7, 17, 27, 0.82));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 21, 32, 0.86);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.game-poster {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #090d14;
}

.game-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(10, 21, 32, 0.9));
  pointer-events: none;
}

.game-poster img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  aspect-ratio: 724 / 1024;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease);
}

.game-card:hover .game-poster img {
  transform: scale(1.025);
}

.game-status {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 9, 15, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.game-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.game-content p {
  margin: 20px 0 0;
  color: var(--muted);
}

.game-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.logo-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(0, 172, 238, 0.12), transparent 55%),
    linear-gradient(145deg, #08131e, #05090f);
  box-shadow: var(--shadow);
}

.logo-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(0, 172, 238, 0.18);
  border-radius: calc(var(--radius-lg) - 12px);
}

.logo-panel img {
  position: relative;
  z-index: 1;
  width: min(68%, 390px);
  height: auto;
  aspect-ratio: 1000.89 / 1023;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 172, 238, 0.16));
}

.copy-stack p {
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-stack p + p {
  margin-top: 20px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.fact {
  min-height: 118px;
  padding: 22px;
  background: var(--surface);
}

.fact strong {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 30%, rgba(0, 172, 238, 0.16), transparent 28rem),
    linear-gradient(180deg, #07111b, #05090f);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
  align-items: center;
  gap: 60px;
  min-height: 510px;
  padding-block: 82px;
}

.page-hero-copy p {
  max-width: 720px;
}

.page-hero-mark {
  justify-self: end;
  width: min(100%, 350px);
}

.page-hero-mark img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000.89 / 1023;
  object-fit: contain;
  opacity: 0.83;
  filter: drop-shadow(0 20px 55px rgba(0, 172, 238, 0.20));
}

.prose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.prose {
  max-width: 780px;
}

.prose .section-title {
  margin-bottom: 30px;
}

.prose p {
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.85;
}

.prose p:first-of-type {
  color: var(--text);
  font-size: clamp(1.12rem, 1.65vw, 1.32rem);
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 27, 41, 0.92), rgba(8, 17, 27, 0.92));
  box-shadow: var(--shadow);
}

.sticky-card-logo {
  width: min(78%, 240px);
  margin: 0 auto 30px;
}

.sticky-card-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1096.02 / 1022.41;
  object-fit: contain;
}

.detail-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.detail-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.detail-list span:first-child {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list span:last-child {
  color: var(--text);
  font-weight: 700;
}

.career-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 25%, rgba(0, 172, 238, 0.13), transparent 24rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.career-panel p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 27, 41, 0.86), rgba(7, 17, 27, 0.86));
  transition: transform 200ms var(--ease), border-color 200ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.contact-card h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.contact-card p {
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
  word-break: break-word;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-list a:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(0, 172, 238, 0.06);
}

.newsletter-section {
  padding-block: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid rgba(0, 172, 238, 0.25);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 15%, rgba(0, 172, 238, 0.14), transparent 25rem),
    linear-gradient(145deg, #0b1a28, #07111b);
  box-shadow: var(--shadow);
}

.newsletter::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0, 172, 238, 0.16);
  border-radius: 50%;
}

.newsletter-copy,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.newsletter p {
  color: var(--muted);
}

.newsletter-control {
  display: flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 15, 0.68);
}

.newsletter-control:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 172, 238, 0.09);
}

.newsletter-control input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 17px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.newsletter-control input::placeholder {
  color: #7f8b9a;
}

.newsletter-control .button {
  flex: 0 0 auto;
  min-height: 48px;
}

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

.form-message {
  min-height: 24px;
  margin: 12px 8px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-message.is-success {
  color: #8be7bd;
}

.form-message.is-error {
  color: #ffaaa2;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #03070c;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(150px, 0.55fr));
  gap: 60px;
  padding-block: 64px;
}

.footer-brand img {
  width: min(100%, 220px);
  height: auto;
  aspect-ratio: 1711.86 / 540;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: #7f8b9a;
  font-size: 0.8rem;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 70px;
  background:
    radial-gradient(circle at center, rgba(0, 172, 238, 0.13), transparent 34rem),
    var(--bg);
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.error-logo {
  width: min(100%, 360px);
  justify-self: center;
}

.error-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 780.11 / 1098.57;
  object-fit: contain;
}

.error-code {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal-delay="1"] {
  transition-delay: 110ms;
}

.js [data-reveal-delay="2"] {
  transition-delay: 220ms;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }

  .nav-list {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

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

  .game-card {
    grid-template-columns: 0.8fr 1fr;
  }

  .game-content {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

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

  .header-subscribe {
    display: none;
  }

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

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    padding: 28px 16px;
    background: rgba(5, 9, 15, 0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    align-content: start;
    gap: 0;
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    width: 100%;
    min-height: 64px;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-subscribe-mobile {
    display: block;
  }

  .hero::before {
    background:
      radial-gradient(circle at 58% 65%, rgba(0, 172, 238, 0.14), transparent 24rem),
      linear-gradient(180deg, #07111b, #05090f 76%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 72px 86px;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .hero-logo-frame {
    width: min(78vw, 500px);
  }

  .section-heading,
  .page-hero-inner,
  .split,
  .prose-layout,
  .newsletter,
  .error-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .page-hero-inner {
    min-height: auto;
    padding-block: 72px;
  }

  .page-hero-mark {
    display: none;
  }

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

  .game-card {
    min-height: 520px;
  }

  .sticky-card {
    position: static;
  }

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

  .newsletter {
    gap: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .error-logo {
    width: min(72vw, 330px);
  }
}

@media (max-width: 680px) {
  .display-title {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  .page-title {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-inner {
    padding-block: 56px 72px;
  }

  .hero-logo-frame {
    width: min(86vw, 430px);
  }

  .hero-badge {
    right: 0;
    bottom: 2%;
  }

  .section {
    padding-block: 76px;
  }

  .game-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .game-poster {
    aspect-ratio: 16 / 12;
    min-height: 0;
  }

  .game-poster::after {
    background: linear-gradient(180deg, transparent 62%, rgba(10, 21, 32, 0.94));
  }

  .game-poster img {
    min-height: 0;
    aspect-ratio: 16 / 12;
    object-position: 50% 28%;
  }

  .game-content {
    padding: 28px 24px 32px;
  }

  .logo-panel {
    min-height: 390px;
  }

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

  .fact {
    min-height: auto;
  }

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

  .newsletter-control {
    display: grid;
    border-radius: 18px;
  }

  .newsletter-control .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand {
    width: 142px;
  }

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

  .actions .button,
  .game-links .button {
    width: 100%;
  }

  .newsletter {
    padding: 26px 20px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   Responsive hardening
   Keeps the desktop art direction intact while improving
   phones, tablets, landscape screens, touch input and notches.
   ========================================================== */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  width: 100%;
  overflow-x: clip;
}

main,
header,
footer,
section,
.shell,
.header-inner,
.hero-inner,
.hero-copy,
.hero-visual,
.section-heading,
.game-grid,
.game-card,
.game-content,
.split,
.page-hero-inner,
.page-hero-copy,
.prose-layout,
.prose,
.career-panel,
.contact-grid,
.newsletter {
  min-width: 0;
}

a,
button,
input {
  touch-action: manipulation;
}

.display-title,
.page-title,
.section-title,
.card-title {
  max-width: 100%;
  text-wrap: balance;
}

.lead,
.section-heading p,
.game-content p,
.copy-stack p,
.prose p,
.career-panel p,
.contact-card p,
.newsletter p,
.footer-brand p {
  overflow-wrap: anywhere;
}

.contact-link {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-header {
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  height: var(--header-height);
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

.hero,
.hero-inner,
.error-page {
  min-height: calc(100svh - var(--header-height) - env(safe-area-inset-top, 0px));
  min-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
}

.sticky-card {
  top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 30px);
}

@media (max-width: 900px) {
  .primary-nav {
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    bottom: auto;
    height: calc(100svh - var(--header-height) - env(safe-area-inset-top, 0px));
    height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding:
      clamp(20px, 4vw, 30px)
      max(16px, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  .nav-list {
    width: min(100%, 640px);
  }

  .nav-link {
    min-height: 60px;
  }

  .hero-inner {
    gap: clamp(42px, 7vw, 66px);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-logo-frame {
    width: min(76vw, 430px);
  }

  .page-hero-copy,
  .page-hero-copy .lead {
    width: 100%;
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand {
    width: clamp(138px, 41vw, 158px);
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: 0.7rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }

  .eyebrow::before {
    width: 22px;
    flex: 0 0 22px;
  }

  .display-title {
    font-size: clamp(2.7rem, 13vw, 4.45rem);
    letter-spacing: -0.05em;
  }

  .page-title {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    letter-spacing: -0.048em;
  }

  .section-title {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .card-title {
    font-size: clamp(1.55rem, 7.8vw, 2rem);
  }

  .lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-inner {
    gap: 44px;
    padding-block: 48px 64px;
  }

  .hero-logo-frame {
    width: min(78vw, 330px);
  }

  .hero-badge {
    right: 1%;
    bottom: 3%;
    padding: 8px 10px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .actions {
    margin-top: 26px;
  }

  .platform-row {
    gap: 8px;
    margin-top: 26px;
  }

  .platform-pill,
  .pill {
    padding: 5px 10px;
    font-size: 0.66rem;
  }

  .section {
    padding-block: 68px;
  }

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

  .section-heading p {
    font-size: 1rem;
  }

  .game-grid {
    gap: 20px;
  }

  .game-card {
    border-radius: 20px;
  }

  .game-content {
    padding: 25px 21px 29px;
  }

  .game-content p {
    margin-top: 17px;
    line-height: 1.7;
  }

  .game-links {
    margin-top: 24px;
  }

  .game-status {
    top: 14px;
    left: 14px;
    padding: 7px 9px;
    font-size: 0.63rem;
  }

  .logo-panel {
    min-height: 330px;
    border-radius: 24px;
  }

  .logo-panel::before {
    inset: 18px;
    border-radius: 15px;
  }

  .copy-stack p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .fact-grid {
    margin-top: 30px;
  }

  .fact {
    padding: 20px;
  }

  .page-hero-inner {
    gap: 30px;
    padding-block: 58px;
  }

  .prose .section-title {
    margin-bottom: 24px;
  }

  .prose p,
  .prose p:first-of-type {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.76;
  }

  .sticky-card {
    padding: 24px;
    border-radius: 20px;
  }

  .career-panel {
    gap: 26px;
    padding: 29px 23px;
    border-radius: 20px;
  }

  .contact-grid {
    gap: 16px;
  }

  .contact-card {
    min-height: 0;
    padding: 29px 23px;
    border-radius: 20px;
  }

  .contact-card h2 {
    font-size: 1.32rem;
  }

  .social-list a {
    min-height: 44px;
  }

  .newsletter-section {
    padding-block: 64px;
  }

  .newsletter {
    gap: 27px;
    padding: 29px 23px;
    border-radius: 24px;
  }

  .newsletter h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .newsletter-control input {
    min-height: 48px;
    font-size: 16px;
  }

  .footer-main {
    gap: 34px;
    padding-block: 52px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .footer-bottom {
    padding-block: 20px max(20px, env(safe-area-inset-bottom, 0px));
  }

  .error-page {
    padding-block: 48px;
  }
}

@media (max-width: 520px) {
  .actions,
  .game-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .actions .button,
  .game-links .button {
    width: 100%;
  }

  .newsletter-control {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 18px;
  }

  .newsletter-control .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand {
    width: clamp(132px, 42vw, 146px);
  }

  .hero-inner {
    padding-block: 44px 58px;
  }

  .hero-logo-frame {
    width: min(82vw, 300px);
  }

  .page-hero-inner {
    padding-block: 52px;
  }

  .section {
    padding-block: 62px;
  }

  .newsletter {
    padding: 27px 20px;
  }
}

@media (max-width: 350px) {
  :root {
    --header-height: 66px;
  }

  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .brand {
    width: 128px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .display-title {
    font-size: clamp(2.45rem, 12.8vw, 3.2rem);
  }

  .page-title {
    font-size: clamp(2.2rem, 11.2vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.9rem, 9.2vw, 2.5rem);
  }

  .button {
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .hero-logo-frame {
    width: min(84vw, 278px);
  }
}

/* Compact phone and small-tablet landscape layout. */
@media (min-width: 600px) and (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  :root {
    --header-height: 64px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.72fr);
    align-items: center;
    gap: 28px;
    min-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
    padding-block: 30px;
  }

  .display-title {
    font-size: clamp(2.7rem, 6.5vw, 4.05rem);
  }

  .lead {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .actions {
    margin-top: 18px;
  }

  .platform-row {
    margin-top: 18px;
  }

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

  .hero-logo-frame {
    width: min(32vw, 280px);
  }

  .hero-badge {
    display: none;
  }

  .page-hero-inner {
    padding-block: 42px;
  }
}

/* Avoid sticky hover states and motion jumps on touch screens. */
@media (hover: none), (pointer: coarse) {
  .button:hover,
  .game-card:hover,
  .contact-card:hover {
    transform: none;
  }

  .game-card:hover .game-poster img {
    transform: none;
  }
}

/* Final responsive QA adjustments. */
@media (min-width: 901px) {
  .display-title {
    font-size: clamp(3.25rem, 7.4vw, 6rem);
  }
}

@media (max-width: 900px) {
  .button--text {
    min-height: 44px;
    padding-block: 8px;
  }

  .social-list a {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 350px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    pointer-events: none;
  }

  .primary-nav.is-open {
    pointer-events: auto;
  }
}

@media (max-width: 680px) {
  .footer-links a {
    min-height: 44px;
  }
}
