@font-face {
  font-family: "Arial Narrow Local";
  src: url("../arial-narrow-bold.ttf") format("truetype");
  font-display: optional;
  font-style: normal;
  font-weight: 700;
}

:root {
  --bg: #05070b;
  --bg-raised: #090d14;
  --panel: rgba(12, 18, 27, 0.82);
  --line: rgba(133, 174, 205, 0.19);
  --line-bright: rgba(78, 214, 255, 0.55);
  --text: #f2f5f7;
  --muted: #8b9bad;
  --cyan: #42dcff;
  --cyan-pale: #bff5ff;
  --red: #ff3f35;
  --red-pale: #ff897f;
  --gold: #ffc857;
  --content: 1180px;
  --header-height: 82px;
  --display: "Arial Narrow Local", "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  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 72% 10%, rgba(18, 103, 146, 0.1), transparent 27%),
    radial-gradient(circle at 17% 42%, rgba(116, 15, 33, 0.08), transparent 26%),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.16;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(141, 205, 255, 0.05) 4px);
  mix-blend-mode: soft-light;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

::selection {
  color: #fff;
  background: rgba(255, 63, 53, 0.72);
}

.page-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  color: #020509;
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.space-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 0 0.6px, transparent 0.8px),
    radial-gradient(circle, rgba(86, 212, 255, 0.35) 0 0.7px, transparent 0.9px);
  background-position: 0 0, 28px 43px;
  background-size: 89px 89px, 137px 137px;
  opacity: 0.18;
  z-index: -1;
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  left: var(--mouse-x, 70%);
  top: var(--mouse-y, 20%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(44, 174, 220, 0.07), transparent 67%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(113, 165, 199, 0.16);
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand > img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(255, 62, 51, 0.22);
}

.brand-copy {
  display: grid;
  line-height: 0.84;
  text-transform: uppercase;
}

.brand-copy strong {
  font: 700 21px/0.9 var(--display);
  letter-spacing: 0.14em;
}

.brand-copy em {
  color: var(--red-pale);
  font: normal 12px/1 var(--display);
  letter-spacing: 0.3em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav > li {
  margin: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  color: #b0bdca;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 1px;
  background: var(--cyan);
  transition: inset 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #465767;
}

.lang-button {
  display: inline-block;
  padding: 4px 2px;
  border: 0;
  color: #617183;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lang-button.is-active {
  color: var(--cyan);
}

.nav-cta {
  position: relative;
  padding: 11px 18px;
  border: 1px solid rgba(255, 75, 63, 0.5);
  color: #ffd3cf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::before,
.nav-cta::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--red);
}

.nav-cta::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.nav-cta::after {
  right: -2px;
  bottom: -2px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 63, 53, 0.1);
  box-shadow: 0 0 24px rgba(255, 63, 53, 0.13);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(8, 13, 19, 0.84);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--cyan-pale);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 68px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -14%;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(60, 210, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(22, 153, 203, 0.05) inset;
}

.hero::after {
  content: attr(data-decor-label);
  position: absolute;
  top: 52%;
  left: -106px;
  color: rgba(126, 165, 190, 0.18);
  font: 11px/1 var(--body);
  letter-spacing: 0.22em;
  transform: rotate(-90deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 58px;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 44px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  background: currentColor;
  box-shadow: 10px 0 14px currentColor;
}

.eyebrow.red {
  color: var(--red-pale);
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  filter: drop-shadow(0 8px 18px #000);
}

.hero h1 span {
  display: block;
  font-size: clamp(78px, 9.4vw, 138px);
  font-weight: 700;
  line-height: 0.69;
  letter-spacing: 0.04em;
}

.hero h1 strong {
  display: block;
  margin-top: 24px;
  color: transparent;
  background: linear-gradient(180deg, #ffc1bb 0%, #ff665b 35%, #b71616 78%, #51090a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.74;
  letter-spacing: 0.13em;
  text-shadow: 0 0 44px rgba(255, 38, 23, 0.22);
}

.hero-lead {
  margin: 38px 0 10px;
  color: #eef7fb;
  font: 31px/1.12 var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.button-primary {
  position: relative;
  color: #fff;
  background: linear-gradient(100deg, #9c1315, #ed342d 58%, #ff5a4d);
  box-shadow: 0 12px 34px rgba(176, 20, 19, 0.24), inset 0 1px rgba(255,255,255,0.22);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 15px 45px rgba(236, 42, 34, 0.35), inset 0 1px rgba(255,255,255,0.3);
}

.button-ghost {
  border: 1px solid rgba(115, 169, 199, 0.25);
  color: #cfdae1;
  background: rgba(10, 15, 22, 0.55);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-bright);
}

.play-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(75, 213, 255, 0.7);
  border-radius: 50%;
}

.play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 7px 0 0 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--cyan);
}

.hero-meta {
  display: flex;
  gap: 23px;
  margin-top: 25px;
  color: #667789;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta > span + span::before {
  content: "/";
  margin-right: 15px;
  color: #283643;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 665px;
}

.art-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 87%, 87% 100%, 0 100%, 0 13%);
  box-shadow: 0 0 90px rgba(43, 131, 190, 0.18);
}

.art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(99, 205, 244, 0.4);
  clip-path: inherit;
  pointer-events: none;
}

.art-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: hero-drift 12s ease-in-out infinite alternate;
}

.art-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,11,0.58), transparent 25%),
    linear-gradient(0deg, rgba(5,7,11,0.7), transparent 31%),
    radial-gradient(circle at center, transparent 35%, rgba(4, 8, 13, 0.35) 100%);
}

.target-corner {
  position: absolute;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-color: rgba(86, 224, 255, 0.78);
}

.corner-tl { top: 24px; left: 24px; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 24px; right: 24px; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 24px; left: 24px; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { right: 24px; bottom: 24px; border-right: 1px solid; border-bottom: 1px solid; }

.signal-readout,
.threat-readout {
  position: absolute;
  z-index: 4;
  display: grid;
  text-transform: uppercase;
}

.signal-readout {
  top: 42px;
  left: 43px;
}

.signal-readout span,
.threat-readout span {
  color: rgba(175, 211, 229, 0.62);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.signal-readout strong {
  color: var(--cyan-pale);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.threat-readout {
  right: 43px;
  bottom: 43px;
  text-align: right;
}

.threat-readout strong {
  color: var(--red-pale);
  font: 25px/1 var(--display);
  letter-spacing: 0.13em;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(74, 199, 237, 0.11);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 48%;
  left: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.orbit-one {
  top: -45px;
  right: -43px;
  width: 690px;
  height: 690px;
  animation: rotate 28s linear infinite;
}

.orbit-two {
  top: 23px;
  right: 29px;
  width: 550px;
  height: 550px;
  animation: rotate 20s linear infinite reverse;
}

.hero-chip {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  padding: 12px 16px 11px;
  border-left: 2px solid var(--cyan);
  background: rgba(4, 8, 13, 0.88);
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.hero-chip small {
  display: block;
  color: #65798b;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.hero-chip strong {
  color: #e8f7ff;
  font: 20px/1.1 var(--display);
  letter-spacing: 0.1em;
}

.chip-left {
  top: 44%;
  left: -31px;
}

.chip-right {
  right: -18px;
  bottom: 5%;
  border-left-color: var(--red);
}

.chip-right strong {
  color: var(--red-pale);
}

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 15, 0.75);
}

.hero-stats::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 27px;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  color: #f8fbfc;
  font: 38px/1 var(--display);
  letter-spacing: 0.03em;
}

.hero-stats span {
  max-width: 105px;
  color: #718294;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.briefing {
  background:
    linear-gradient(90deg, rgba(7, 11, 17, 0.94) 0 48%, rgba(8, 12, 18, 0.76)),
    radial-gradient(circle at 22% 55%, rgba(22, 131, 174, 0.14), transparent 30%);
  overflow: hidden;
}

.briefing::before {
  content: attr(data-decor-label);
  position: absolute;
  top: 32px;
  right: 3vw;
  color: rgba(138, 171, 194, 0.04);
  font: 170px/1 var(--display);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.briefing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 120px;
}

.phone-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 330px;
  height: 650px;
  padding: 9px;
  border: 1px solid rgba(155, 194, 217, 0.35);
  border-radius: 42px;
  background: linear-gradient(135deg, #27323c, #07090c 35%, #1e2a33 70%, #050608);
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(24, 168, 214, 0.11);
  transform: rotate(-3deg);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 39px;
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 19px;
  border-radius: 0 0 12px 12px;
  background: #050609;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #030609;
}

.phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03), transparent 40%, rgba(2,4,7,0.34));
  pointer-events: none;
}

.phone-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 190px;
  text-transform: uppercase;
}

.phone-kicker {
  color: #b1ddea;
  font-size: 7px;
  letter-spacing: 0.35em;
}

.phone-title {
  display: grid;
  margin-top: 7px;
  text-align: center;
  filter: drop-shadow(0 4px 8px #000);
}

.phone-title b {
  font: 52px/0.8 var(--display);
  letter-spacing: 0.09em;
}

.phone-title em {
  color: var(--red-pale);
  font: normal 27px/1 var(--display);
  letter-spacing: 0.15em;
}

.phone-menu {
  width: 70%;
  display: grid;
  gap: 9px;
  margin-top: 86px;
}

.phone-menu span {
  padding: 10px 0 8px;
  border: 1px solid rgba(255, 73, 60, 0.58);
  color: #e9eef2;
  background: linear-gradient(90deg, rgba(49, 6, 6, 0.76), rgba(10, 12, 15, 0.8), rgba(49, 6, 6, 0.76));
  font: 15px/1 var(--display);
  letter-spacing: 0.13em;
  text-align: center;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 9px 100%, 0 50%);
}

.scan-ring {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(61, 210, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(33, 174, 217, 0.1) inset;
}

.scan-ring::before,
.scan-ring::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: rgba(83, 209, 244, 0.14);
}

.scan-ring::before { width: 620px; height: 1px; transform: translate(-50%, -50%); }
.scan-ring::after { width: 1px; height: 620px; transform: translate(-50%, -50%); }

.phone-note {
  position: absolute;
  padding: 5px 9px;
  color: rgba(130, 201, 224, 0.48);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.note-a { top: 15%; left: 1%; border-left: 1px solid var(--cyan); }
.note-b { right: 0; bottom: 19%; border-right: 1px solid var(--cyan); }

.section-copy h2,
.section-heading h2,
.campaign h2,
.release h2 {
  margin: 0;
  font: clamp(46px, 5vw, 72px)/0.98 var(--display);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #8999a9;
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article > span {
  color: rgba(70, 213, 255, 0.62);
  font: 22px/1.2 var(--display);
}

.feature-list h3 {
  margin: 0;
  color: #e5edf2;
  font: 23px/1 var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-list p {
  margin: 7px 0 0;
  color: #748697;
  font-size: 13px;
  line-height: 1.55;
}

.systems {
  border-top: 1px solid rgba(104, 156, 190, 0.09);
  background: linear-gradient(180deg, #05080c, #070b11);
}

.section-heading {
  max-width: 760px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.system-card {
  position: relative;
  min-height: 330px;
  padding: 35px 31px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(21, 29, 40, 0.78), rgba(8, 12, 18, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,0.02) 25px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 213, 255, 0.35);
}

.system-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.05;
}

.system-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(168, 195, 211, 0.18);
  font: 31px/1 var(--display);
}

.system-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 44px;
  color: var(--cyan);
}

.crosshair-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(66, 220, 255, 0.13);
}

.crosshair-icon::before,
.crosshair-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.crosshair-icon::before { width: 70px; height: 1px; margin: 26px 0 0 -8px; }
.crosshair-icon::after { width: 1px; height: 70px; margin: -8px 0 0 26px; }

.upgrade-icon {
  position: relative;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.upgrade-icon::before,
.upgrade-icon::after,
.upgrade-icon span {
  content: "";
  position: absolute;
  background: currentColor;
}

.upgrade-icon::before { top: 25px; left: 10px; width: 32px; height: 2px; }
.upgrade-icon::after { top: 10px; left: 25px; width: 2px; height: 32px; }
.upgrade-icon span { inset: 14px; opacity: 0.15; }

.hex-icon {
  background: currentColor;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.hex-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  height: 42px;
  margin: 6px;
  background: #0d131b;
  clip-path: inherit;
}

.card-red .system-icon { color: var(--red-pale); }
.card-gold .system-icon { color: var(--gold); }

.system-card h3 {
  max-width: 270px;
  margin: 0;
  font: 28px/1 var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.system-card p {
  margin: 16px 0 0;
  color: #788898;
  font-size: 13px;
  line-height: 1.65;
}

.card-line {
  position: absolute;
  right: 31px;
  bottom: 23px;
  left: 31px;
  height: 1px;
  background: linear-gradient(90deg, currentColor 0 28%, rgba(134,164,185,0.11) 28%);
  color: var(--cyan);
}

.card-red .card-line { color: var(--red); }
.card-gold .card-line { color: var(--gold); }

.media-showcase {
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(92, 159, 194, 0.12);
  background:
    radial-gradient(circle at 9% 28%, rgba(29, 159, 196, 0.12), transparent 29%),
    radial-gradient(circle at 91% 45%, rgba(239, 58, 43, 0.09), transparent 26%),
    linear-gradient(180deg, #060a10 0%, #03070b 100%);
}

.media-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(97, 178, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 178, 216, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 74%, transparent);
}

.media-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(72, 217, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(19, 146, 190, 0.07) inset;
}

.media-glow-left {
  top: 23%;
  left: -210px;
}

.media-glow-right {
  right: -230px;
  bottom: 7%;
  border-color: rgba(255, 81, 56, 0.08);
  box-shadow: 0 0 90px rgba(211, 50, 34, 0.06) inset;
}

.media-heading {
  position: relative;
  z-index: 1;
}

.gameplay-reels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.gameplay-card {
  --media-accent: var(--cyan);
  position: relative;
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(215px, 0.84fr) minmax(0, 1.16fr);
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(80, 166, 205, 0.23);
  background:
    linear-gradient(145deg, rgba(15, 23, 33, 0.95), rgba(5, 10, 16, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255,255,255,0.016) 25px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.gameplay-card.card-gates {
  --media-accent: #ff6040;
  border-color: rgba(255, 96, 64, 0.25);
}

.gameplay-card.card-ships {
  --media-accent: var(--gold);
  grid-column: 2 / span 4;
  border-color: rgba(208, 157, 67, 0.23);
}

.gameplay-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96px;
  height: 2px;
  background: var(--media-accent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--media-accent) 55%, transparent);
}

.gameplay-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-right: 1px solid rgba(80, 166, 205, 0.18);
  background: #020509;
}

.card-gates .gameplay-frame {
  border-right-color: rgba(255, 96, 64, 0.19);
}

.card-ships .gameplay-frame {
  border-right-color: rgba(208, 157, 67, 0.17);
}

.gameplay-frame > :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.gameplay-frame > video {
  position: absolute;
  inset: 0;
}

.gameplay-card:hover .gameplay-frame > :is(img, video) {
  transform: scale(1.018);
  filter: saturate(1.15) contrast(1.06);
}

.gameplay-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.13), transparent 24%, transparent 76%, rgba(0,0,0,0.16)),
    linear-gradient(180deg, rgba(1, 5, 9, 0.08), transparent 62%, rgba(2, 6, 11, 0.24));
  pointer-events: none;
}

.gameplay-badge {
  position: absolute;
  top: 16px;
  left: 15px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--media-accent) 52%, transparent);
  background: rgba(2, 7, 12, 0.86);
  color: #dcebf3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.gameplay-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--media-accent);
  box-shadow: 0 0 12px var(--media-accent);
}

.gameplay-corner {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-color: var(--media-accent);
  opacity: 0.82;
}

.gameplay-corner.corner-tl { top: 9px; left: 9px; border-top: 1px solid; border-left: 1px solid; }
.gameplay-corner.corner-tr { top: 9px; right: 9px; border-top: 1px solid; border-right: 1px solid; }
.gameplay-corner.corner-bl { bottom: 9px; left: 9px; border-bottom: 1px solid; border-left: 1px solid; }
.gameplay-corner.corner-br { right: 9px; bottom: 9px; border-right: 1px solid; border-bottom: 1px solid; }

.gameplay-scan {
  position: absolute;
  top: -12%;
  right: 0;
  left: 0;
  z-index: 2;
  height: 12%;
  opacity: 0.32;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--media-accent) 30%, transparent), transparent);
  animation: gameplay-scan 5.4s linear infinite;
  pointer-events: none;
}

.gameplay-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 29px;
}

.media-index {
  color: var(--media-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.gameplay-card h3 {
  margin: 19px 0 0;
  font: clamp(30px, 3vw, 42px)/0.94 var(--display);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.gameplay-card figcaption > p {
  margin: 19px 0 0;
  color: #7e91a1;
  font-size: 13px;
  line-height: 1.68;
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.media-tags span {
  padding: 7px 8px;
  border: 1px solid rgba(104, 163, 190, 0.17);
  color: #8da4b4;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.cinematic-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.cinematic-gallery > figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(80, 166, 205, 0.19);
  background: rgba(7, 12, 19, 0.94);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.cinematic-gallery > figure:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 211, 255, 0.38);
}

.cinematic-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(80, 166, 205, 0.16);
  background: #020509;
}

.cinematic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 47%, rgba(2, 6, 11, 0.76));
  pointer-events: none;
}

.cinematic-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cinematic-gallery > figure:hover .cinematic-image img {
  transform: scale(1.035);
}

.cinematic-image > span {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  z-index: 2;
  color: rgba(223, 239, 247, 0.88);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cinematic-gallery figcaption {
  min-height: 138px;
  padding: 21px 22px 23px;
}

.cinematic-gallery h3 {
  margin: 0;
  font: 24px/1 var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cinematic-gallery p {
  margin: 11px 0 0;
  color: #718391;
  font-size: 11px;
  line-height: 1.58;
}

@keyframes gameplay-scan {
  from { transform: translateY(0); }
  to { transform: translateY(930%); }
}

.campaign {
  overflow: hidden;
  border-top: 1px solid rgba(92, 159, 194, 0.1);
  border-bottom: 1px solid rgba(92, 159, 194, 0.1);
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.98), rgba(6, 12, 19, 0.94)),
    radial-gradient(circle at 75% 50%, rgba(24, 150, 192, 0.18), transparent 30%);
}

.campaign-glow {
  position: absolute;
  top: 50%;
  right: 1%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(56, 213, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(31, 151, 190, 0.08) inset;
  transform: translateY(-50%);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 80px;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 31px;
}

.sector-pills span {
  padding: 7px 11px;
  border: 1px solid rgba(85, 191, 225, 0.19);
  color: #819caf;
  background: rgba(10, 19, 27, 0.6);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.campaign-callout {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 37px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.campaign-callout strong {
  color: var(--cyan-pale);
  font: 42px/1 var(--display);
  letter-spacing: 0.06em;
}

.campaign-callout span {
  max-width: 160px;
  color: #667b8c;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-console {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(78, 190, 224, 0.25);
  background: rgba(5, 10, 15, 0.8);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.44), 0 0 70px rgba(38, 173, 213, 0.08);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.console-top,
.console-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: #5e7485;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.console-top i {
  flex: 1;
  height: 1px;
  background: rgba(77, 191, 224, 0.17);
}

.console-top b {
  color: var(--cyan);
  font-weight: 600;
}

.console-bottom {
  justify-content: space-between;
}

.map-window {
  position: relative;
  height: 610px;
  overflow: hidden;
  border: 1px solid rgba(78, 190, 224, 0.11);
  background:
    linear-gradient(rgba(42, 172, 210, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 172, 210, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(15, 95, 124, 0.2), rgba(2, 6, 10, 0.92) 70%);
  background-size: 36px 36px, 36px 36px, auto;
}

.map-window > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(43, 216, 255, 0.3));
}

.map-scan {
  position: absolute;
  top: -20%;
  right: 0;
  left: 0;
  height: 15%;
  background: linear-gradient(180deg, transparent, rgba(82, 220, 255, 0.11), transparent);
  animation: map-scan 5s linear infinite;
}

.map-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-transform: uppercase;
}

.map-marker span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan-pale);
  background: rgba(3, 10, 15, 0.9);
  box-shadow: 0 0 15px rgba(66, 220, 255, 0.35);
  font-size: 7px;
}

.map-marker small {
  padding: 4px 7px;
  border-left: 1px solid var(--cyan);
  background: rgba(3, 10, 15, 0.82);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.marker-start { bottom: 4%; left: 12%; }
.marker-end { top: 4%; left: 49%; }
.marker-end span { border-color: var(--gold); color: #ffe3a1; box-shadow: 0 0 15px rgba(255,200,87,0.3); }
.marker-end small { border-color: var(--gold); }

.hangar {
  background:
    radial-gradient(circle at 50% 75%, rgba(18, 110, 154, 0.1), transparent 35%),
    linear-gradient(180deg, #070a0f, #05070b);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line-bright);
  color: #78899a;
  font-size: 13px;
  line-height: 1.7;
}

.hangar-console {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 610px;
  margin-top: 64px;
  border: 1px solid rgba(96, 158, 192, 0.2);
  background: rgba(7, 12, 18, 0.8);
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.ship-viewport {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: radial-gradient(circle, rgba(25, 121, 159, 0.12), transparent 58%);
}

.ship-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(rgba(73, 167, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 167, 198, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, #000, transparent 73%);
}

.ship-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(74, 207, 241, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(21, 145, 186, 0.08) inset;
}

.ship-orbit::before,
.ship-orbit::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px dashed rgba(74, 207, 241, 0.11);
  border-radius: 50%;
}

.ship-orbit::after {
  inset: 110px;
  border-style: solid;
}

#ship-image {
  position: relative;
  z-index: 2;
  width: min(76%, 490px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 28px 23px rgba(0,0,0,0.55)) drop-shadow(0 0 20px rgba(34, 160, 218, 0.2));
  transition: opacity 0.18s ease, transform 0.36s cubic-bezier(.2,.8,.2,1);
  animation: ship-float 4.5s ease-in-out infinite;
}

#ship-image.is-switching {
  opacity: 0;
  transform: scale(0.92) translateY(12px);
}

.dimension-line {
  position: absolute;
  z-index: 1;
  opacity: 0.35;
}

.line-x { right: 14%; left: 14%; height: 1px; border-top: 1px dashed var(--cyan); }
.line-y { top: 13%; bottom: 13%; width: 1px; border-left: 1px dashed var(--cyan); }

.ship-id {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: #52697a;
  font: 17px/1 var(--display);
  letter-spacing: 0.15em;
}

.ship-id b { color: var(--cyan); }

.ship-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 42px;
  background: linear-gradient(135deg, rgba(12, 18, 27, 0.9), rgba(6, 10, 15, 0.92));
}

.ship-data-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #687d8e;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ship-data-top b {
  color: var(--cyan);
  font-size: 9px;
}

.ship-data h3 {
  margin: 22px 0 0;
  color: #edf7fa;
  font: 43px/1 var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ship-data > p {
  min-height: 66px;
  margin: 15px 0 0;
  color: #748697;
  font-size: 13px;
  line-height: 1.65;
}

.specs {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specs > div {
  display: grid;
  grid-template-columns: 85px 1fr 24px;
  align-items: center;
  gap: 12px;
}

.specs span,
.specs em {
  color: #657889;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specs em {
  color: #9eb8c7;
  text-align: right;
}

.specs i {
  height: 3px;
  overflow: hidden;
  background: rgba(113, 166, 190, 0.13);
}

.specs i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #197da1, var(--cyan));
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.4s ease;
}

.level-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 27px;
}

.level-selector button {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 12px 7px;
  border: 1px solid var(--line);
  color: #68798a;
  background: rgba(7, 11, 16, 0.7);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.level-selector button:hover,
.level-selector button:focus-visible,
.level-selector button.is-active {
  border-color: rgba(66, 220, 255, 0.52);
  color: var(--cyan-pale);
  background: rgba(21, 90, 111, 0.17);
}

.level-selector button.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.level-selector span {
  font: 26px/1 var(--display);
  letter-spacing: 0.08em;
}

.level-selector small {
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bosses {
  border-top: 1px solid rgba(255, 61, 50, 0.1);
  background:
    radial-gradient(circle at 50% 88%, rgba(143, 17, 18, 0.13), transparent 38%),
    linear-gradient(180deg, #07090d, #080609);
}

.boss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.boss-grid article {
  position: relative;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 25px;
  overflow: hidden;
  border: 1px solid rgba(151, 87, 87, 0.19);
  background:
    radial-gradient(circle at 50% 43%, rgba(159, 26, 21, 0.13), transparent 37%),
    linear-gradient(150deg, rgba(22, 15, 18, 0.85), rgba(8, 8, 11, 0.96));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.boss-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 73, 61, 0.36);
}

.boss-grid article::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  top: 62px;
  border: 1px solid rgba(255, 80, 64, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(213, 34, 26, 0.08) inset;
}

.boss-index {
  align-self: flex-start;
  color: #735154;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.boss-grid img {
  position: relative;
  z-index: 1;
  width: 48%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 25px 22px rgba(0,0,0,0.62)) drop-shadow(0 0 20px rgba(255, 42, 28, 0.12));
  transition: transform 0.35s ease;
}

.boss-grid article:hover img {
  transform: scale(1.06);
}

.boss-grid article > div {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(190, 74, 70, 0.17);
}

.boss-grid h3 {
  margin: 0;
  font: 26px/1 var(--display);
  letter-spacing: 0.08em;
}

.boss-grid p {
  margin: 5px 0 0;
  color: var(--red-pale);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.boss-primary {
  border-color: rgba(255, 69, 55, 0.28) !important;
}

.release {
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid rgba(110, 178, 208, 0.1);
  background:
    radial-gradient(circle at 70% 0, rgba(38, 123, 163, 0.14), transparent 32%),
    #06090d;
}

.release::before {
  content: attr(data-decor-label);
  position: absolute;
  top: -21px;
  right: 2%;
  color: rgba(163, 198, 215, 0.035);
  font: 240px/1 var(--display);
  letter-spacing: 0.05em;
}

.release-beam {
  position: absolute;
  top: -160px;
  left: 11%;
  width: 1px;
  height: 780px;
  background: linear-gradient(transparent, rgba(76, 216, 255, 0.33), transparent);
  transform: rotate(28deg);
  box-shadow: 0 0 80px 10px rgba(56, 180, 220, 0.06);
}

.release-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 38px;
  border: 1px solid rgba(90, 168, 201, 0.2);
  background: rgba(9, 15, 22, 0.8);
  backdrop-filter: blur(15px);
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%, 0 17px);
}

.release-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17px;
  width: 120px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.release-icon {
  width: 132px;
  height: 132px;
  padding: 7px;
  border: 1px solid rgba(94, 186, 220, 0.32);
  background: #071017;
}

.release-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-copy .eyebrow {
  margin-bottom: 13px;
}

.release h2 {
  max-width: 630px;
  font-size: clamp(37px, 4vw, 56px);
}

.release-copy > p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: #748697;
  font-size: 13px;
}

.store-button {
  display: inline-block;
  width: 270px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
}

.store-button img {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  padding: 33px 0;
  border-top: 1px solid var(--line);
  background: #040609;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;
}

.footer-brand img {
  width: 31px;
  height: 31px;
}

.footer-brand .brand-copy strong { font-size: 17px; }
.footer-brand .brand-copy em { font-size: 9px; }

footer p,
.back-top {
  color: #8798a8;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.footer-policy-link {
  color: #91b9c9;
  transition: color 0.2s ease;
}

.footer-policy-link::before {
  content: "/";
  margin-right: 10px;
  color: #334552;
}

.footer-policy-link:hover,
.footer-policy-link:focus-visible {
  color: var(--cyan);
}

.wp-content {
  min-height: 72vh;
  padding: calc(var(--header-height) + 72px) 0 100px;
}

.wp-content article {
  max-width: 820px;
}

.wp-content h1,
.wp-content h2,
.wp-content h3 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.wp-content h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 7vw, 82px);
}

.wp-content .entry-content {
  color: #9aabba;
}

.wp-content .entry-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wp-content .entry-content img {
  height: auto;
}

.privacy-policy-page article.privacy-policy {
  max-width: 940px;
  margin-inline: auto;
}

.privacy-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.privacy-hero .eyebrow,
.privacy-language-header .eyebrow {
  justify-content: center;
}

.privacy-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #b5c6d3;
  font-size: 18px;
  line-height: 1.75;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 25px;
  color: #607587;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-meta a {
  color: var(--cyan);
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0 52px;
  border: 1px solid var(--line);
  background: rgba(9, 15, 22, 0.72);
  text-align: center;
}

.privacy-summary > div {
  min-height: 130px;
  padding: 24px;
}

.privacy-summary > div + div {
  border-left: 1px solid var(--line);
}

.privacy-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-pale);
  font: 25px/1 var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-summary span {
  color: #768a99;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-content section {
  margin-top: 38px;
  padding-left: 22px;
  border-left: 1px solid rgba(66, 220, 255, 0.2);
}

.privacy-content h2,
.privacy-content h3 {
  margin: 0 0 14px;
  color: #e8f7fb;
}

.privacy-content h2 {
  font-size: clamp(29px, 4vw, 39px);
}

.privacy-content h3 {
  font-size: clamp(25px, 3.5vw, 34px);
}

.privacy-content p,
.privacy-content li {
  max-width: 800px;
  color: #91a4b3;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-content ul {
  margin: 18px 0;
  padding-left: 20px;
}

.privacy-content li + li {
  margin-top: 7px;
}

.privacy-content strong {
  color: #dcebf1;
}

.privacy-divider {
  margin: 76px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.privacy-language-header {
  margin-bottom: 44px;
  text-align: center;
}

.privacy-language-header > h2 {
  margin-bottom: 8px;
  font-size: clamp(42px, 6vw, 68px);
}

.privacy-language-header > p:last-child {
  color: #607587;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.post-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(9, 15, 22, 0.72);
}

.post-card h2 {
  margin: 4px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
  color: var(--cyan);
}

.post-meta {
  margin: 0;
  color: #607587;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-thumbnail {
  margin: 0 0 35px;
}

.pagination {
  display: flex;
  gap: 12px;
  margin-top: 42px;
}

.pagination .page-numbers {
  padding: 8px 12px;
  border: 1px solid var(--line);
}

.back-top {
  justify-self: end;
  transition: color 0.2s ease;
}

.back-top:hover,
.back-top:focus-visible {
  color: var(--cyan);
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 200;
  max-width: 350px;
  padding: 13px 17px;
  border: 1px solid rgba(76, 214, 255, 0.45);
  color: #c9f5ff;
  background: rgba(5, 13, 19, 0.96);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  font-size: 12px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-5px, -5px, 0); }
}

@keyframes ship-float {
  0%, 100% { translate: 0 -4px; }
  50% { translate: 0 8px; }
}

@keyframes map-scan {
  from { transform: translateY(0); }
  to { transform: translateY(800%); }
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 20px; }
  .hero-visual { min-height: 570px; }
  .hero h1 span { font-size: clamp(68px, 10vw, 105px); }
  .briefing-grid { gap: 62px; }
  .campaign-grid { gap: 45px; }
  .split-heading { grid-template-columns: 1.2fr 0.8fr; gap: 45px; }
}

@media (max-width: 860px) {
  :root {
    --display: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  }

  :root { --header-height: 72px; }
  .page-shell { width: min(calc(100% - 32px), var(--content)); }
  .section { padding: 96px 0; }
  .nav-shell { width: calc(100% - 32px); }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 12, 0.97);
    backdrop-filter: blur(18px);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(95, 144, 174, 0.1); }
  .main-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { padding-top: calc(var(--header-height) + 40px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 5px; }
  .hero-visual { min-height: 660px; }
  .art-frame { right: 50%; transform: translateX(50%); }
  .chip-left { left: 3%; }
  .chip-right { right: 3%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .hero-stats div:nth-child(4) { border-top: 1px solid var(--line); }
  .briefing-grid,
  .campaign-grid { grid-template-columns: 1fr; }
  .phone-stage { order: 2; }
  .systems-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 270px; }
  .system-icon { margin-bottom: 35px; }
  .campaign-copy { max-width: 650px; }
  .map-console { max-width: 650px; width: 100%; margin-inline: auto; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 590px; }
  .hangar-console { grid-template-columns: 1fr; }
  .ship-viewport { border-right: 0; border-bottom: 1px solid var(--line); }
  .boss-grid { grid-template-columns: 1fr; }
  .boss-grid article { height: 380px; }
  .boss-grid img { width: min(39%, 170px); }
  .release-panel { grid-template-columns: auto 1fr; }
  .store-button { grid-column: 2; width: max-content; }
  .privacy-summary { grid-template-columns: 1fr; }
  .privacy-summary > div + div { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy em { font-size: 10px; }
  .brand > img { width: 34px; height: 34px; }
  .nav-actions { gap: 13px; }
  .hero { padding-top: calc(var(--header-height) + 25px); }
  .hero h1 span { font-size: clamp(64px, 23vw, 94px); }
  .hero h1 strong { margin-top: 20px; font-size: clamp(39px, 13vw, 58px); letter-spacing: 0.1em; }
  .hero-lead { margin-top: 31px; font-size: 25px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { flex-wrap: wrap; gap: 10px; }
  .hero-meta > span + span::before { display: none; }
  .hero-visual { min-height: calc(100vw + 70px); margin-top: 20px; }
  .art-frame { width: 100%; }
  .orbit-one { top: -3%; right: -8%; width: 115%; height: auto; aspect-ratio: 1; }
  .orbit-two { top: 8%; right: 5%; width: 90%; height: auto; aspect-ratio: 1; }
  .hero-chip { min-width: 128px; padding: 9px 12px; }
  .hero-chip strong { font-size: 16px; }
  .chip-left { top: 45%; left: -4px; }
  .chip-right { right: -4px; bottom: 1%; }
  .signal-readout { top: 28px; left: 28px; }
  .threat-readout { right: 28px; bottom: 28px; }
  .hero-stats div { gap: 10px; padding: 18px 14px; }
  .hero-stats strong { font-size: 31px; }
  .hero-stats span { font-size: 7px; }
  .section-copy h2,
  .section-heading h2,
  .campaign h2,
  .release h2 { font-size: clamp(39px, 12.5vw, 55px); }
  .briefing-grid { gap: 45px; }
  .phone-stage { min-height: 600px; }
  .phone { width: 284px; height: 560px; border-radius: 36px; }
  .phone-screen { border-radius: 29px; }
  .phone-overlay { padding-top: 160px; }
  .phone-title b { font-size: 44px; }
  .phone-title em { font-size: 23px; }
  .phone-menu { margin-top: 72px; }
  .scan-ring { width: 360px; height: 360px; }
  .system-card { padding-inline: 25px; }
  .map-window { height: 480px; }
  .console-bottom span:nth-child(2) { display: none; }
  .ship-viewport { min-height: 450px; }
  .ship-orbit { width: 330px; height: 330px; }
  .ship-data { padding: 37px 24px; }
  .ship-data h3 { font-size: 36px; }
  .specs > div { grid-template-columns: 72px 1fr 22px; gap: 8px; }
  .level-selector span { font-size: 23px; }
  .boss-grid article { height: 360px; }
  .release-panel { grid-template-columns: 1fr; gap: 25px; padding: 27px; }
  .release-icon { width: 100px; height: 100px; }
  .store-button { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; grid-row: 2; margin: 6px 0 0; }
  .footer-meta { align-items: flex-start; justify-content: flex-start; }
  .privacy-content section { padding-left: 16px; }
  .privacy-lead { font-size: 16px; }
  .toast { right: 16px; bottom: 16px; left: 16px; }
}

/* Responsive containment and legal-page readability — release 0.3.31. */
.page-shell,
.nav-shell,
.hero-grid,
.hero-grid > *,
.briefing-grid > *,
.campaign-grid > *,
.hangar-console > *,
.release-panel > *,
.wp-content article,
.entry-content,
.privacy-content,
.privacy-content section {
  min-width: 0;
}

.hero-copy,
.hero-lead,
.hero-description,
.wp-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content p,
.privacy-content li {
  max-width: 100%;
}

.public-legal-content ol {
  margin: 18px 0;
  padding-left: 22px;
}

.public-legal-content li + li {
  margin-top: 7px;
}

.privacy-language-switch {
  margin: 18px 0 0;
  font-size: 13px;
}

@media (max-width: 860px) {
  .page-shell,
  .nav-shell {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy em {
    white-space: nowrap;
  }

  .nav-actions {
    min-width: 0;
    gap: 10px;
  }

  .language-switch,
  .menu-toggle {
    flex: 0 0 auto;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    width: 100%;
  }

  .button {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .wp-content article {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .page-shell {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .nav-shell {
    gap: 7px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 16px;
    letter-spacing: 0.11em;
  }

  .brand-copy em {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .nav-actions {
    gap: 7px;
  }

  .language-switch {
    gap: 3px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .eyebrow {
    min-width: 0;
    gap: 9px;
    letter-spacing: 0.16em;
  }

  .eyebrow > span:first-child {
    flex: 0 0 22px;
    width: 22px;
  }

  .eyebrow > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    font-size: clamp(55px, 20vw, 82px);
  }

  .hero h1 strong {
    font-size: clamp(34px, 11.2vw, 46px);
    letter-spacing: 0.095em;
  }

  .hero-lead {
    font-size: clamp(21px, 6.2vw, 25px);
    overflow-wrap: break-word;
  }

  .hero-description,
  .privacy-content p,
  .privacy-content li,
  .privacy-content a {
    overflow-wrap: anywhere;
  }

  .button {
    padding-inline: 17px;
  }

  .wp-content {
    padding-top: calc(var(--header-height) + 48px);
  }

  .privacy-hero {
    padding-bottom: 32px;
  }

  .wp-content h1 {
    font-size: clamp(34px, 11vw, 46px);
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .privacy-content section {
    width: 100%;
    padding-left: 12px;
  }

  .privacy-content h2,
  .privacy-content h3 {
    font-size: clamp(24px, 7.8vw, 31px);
    line-height: 1.12;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .privacy-content ul,
  .public-legal-content ol {
    padding-left: 19px;
  }

  .footer-policy-link::before {
    margin-right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

/* Current-build media refresh — September 2026. */
.art-frame-portrait {
  z-index: 3;
  right: 7%;
  width: min(360px, 62%);
  aspect-ratio: 8 / 15;
  background: #020407;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(34, 181, 226, 0.18);
}

.art-frame-portrait > img {
  transform: none;
  animation-duration: 15s;
}

.hero-preview {
  position: absolute;
  z-index: 1;
  width: 205px;
  aspect-ratio: 8 / 15;
  overflow: hidden;
  border: 1px solid rgba(78, 202, 237, 0.2);
  background: #03070b;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  opacity: 0.58;
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 11, 0.35), transparent 45%, rgba(3, 7, 11, 0.5));
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-preview-map {
  top: 9%;
  left: 0;
  transform: rotate(-5deg);
}

.hero-preview-sector {
  right: -4%;
  bottom: 3%;
  transform: rotate(5deg);
}

.gameplay-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020408;
}

.featured-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  min-height: 48px;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(75, 213, 255, 0.72);
  color: #f2fbff;
  background: rgba(3, 8, 13, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(66, 220, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.featured-video-play:hover,
.featured-video-play:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.56), 0 0 30px rgba(66, 220, 255, 0.22);
}

.featured-video-play[hidden] {
  display: none;
}

.gallery {
  overflow: hidden;
  border-top: 1px solid rgba(76, 189, 222, 0.1);
  border-bottom: 1px solid rgba(76, 189, 222, 0.1);
  background:
    radial-gradient(circle at 50% 0, rgba(22, 143, 181, 0.13), transparent 33%),
    linear-gradient(180deg, #060a0f, #05070b);
}

.gallery::before {
  content: attr(data-decor-label);
  position: absolute;
  top: 34px;
  right: 2vw;
  color: rgba(135, 193, 217, 0.045);
  font: 78px/1 var(--display);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.current-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.screen-card {
  min-width: 0;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(80, 176, 207, 0.19);
  background: linear-gradient(150deg, rgba(15, 24, 32, 0.9), rgba(5, 8, 12, 0.96));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.screen-card:hover {
  z-index: 2;
  border-color: rgba(81, 216, 255, 0.42);
  transform: translateY(-8px);
}

.screen-card-media {
  position: relative;
  aspect-ratio: 8 / 15;
  overflow: hidden;
  background: #020509;
}

.screen-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.screen-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.screen-card:hover img {
  transform: scale(1.025);
}

.screen-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 8px 4px;
  text-transform: uppercase;
}

.screen-card figcaption span {
  color: var(--cyan);
  font: 20px/1 var(--display);
}

.screen-card figcaption strong {
  color: #b6c7d1;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.map-window > img {
  object-fit: contain;
  object-position: center;
}

.boss-grid article.boss-gameplay {
  height: 610px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  background: #040609;
}

.boss-grid article.boss-gameplay::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.05) 58%, rgba(4, 5, 8, 0.12) 82%, rgba(4, 5, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 5, 8, 0.2), transparent 45%, rgba(4, 5, 8, 0.2));
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.boss-grid .boss-gameplay .boss-index {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 7px 9px;
  border-left: 2px solid var(--red);
  color: #e3b9b5;
  background: rgba(5, 7, 10, 0.76);
}

.boss-grid .boss-gameplay img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  filter: none;
}

.boss-grid .boss-gameplay:hover img {
  transform: scale(1.025);
}

.boss-grid .boss-gameplay > div {
  z-index: 3;
  margin-top: auto;
  padding: 78px 24px 25px;
  border-top: 0;
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(4, 5, 8, 0.18) 34px,
    rgba(4, 5, 8, 0.96) 68px,
    #040508 100%
  );
}

@media (max-width: 1080px) {
  .art-frame-portrait {
    right: 5%;
    width: min(330px, 64%);
  }

  .hero-preview {
    width: 170px;
  }

  .boss-grid article.boss-gameplay {
    height: 530px;
  }
}

@media (max-width: 1080px) {
  .gameplay-card {
    grid-template-columns: minmax(185px, 0.78fr) minmax(0, 1.22fr);
  }

  .gameplay-card figcaption {
    padding-inline: 24px;
  }
}

@media (max-width: 1100px) {
  .current-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gameplay-reels {
    grid-template-columns: 1fr;
  }

  .gameplay-card {
    grid-column: auto;
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
    max-width: 720px;
    margin-inline: auto;
  }

  .cinematic-gallery {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
    margin-top: 24px;
  }

  .cinematic-gallery figcaption {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .gameplay-reels {
    margin-top: 42px;
  }

  .gameplay-card {
    display: block;
  }

  .gameplay-frame {
    width: min(calc(100% - 42px), 360px);
    min-height: 0;
    aspect-ratio: 8 / 15;
    margin: 21px auto 0;
    border: 1px solid rgba(80, 166, 205, 0.2);
  }

  .gameplay-card figcaption {
    padding: 28px 24px 31px;
  }

  .gameplay-card h3 {
    font-size: 34px;
  }

  .cinematic-gallery {
    gap: 13px;
  }
}

@media (max-width: 860px) {
  .art-frame-portrait {
    right: 50%;
    width: 345px;
  }

  .hero-preview-map {
    left: 8%;
  }

  .hero-preview-sector {
    right: 8%;
  }

  .current-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boss-grid article.boss-gameplay {
    height: min(980px, 135vw);
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 650px;
  }

  .art-frame-portrait {
    width: min(320px, 86vw);
  }

  .hero-preview {
    display: none;
  }

  .current-gallery {
    width: calc(100vw - 16px);
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 330px);
    grid-template-columns: none;
    gap: 12px;
    margin-right: -16px;
    padding: 0 16px 16px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--cyan) rgba(55, 91, 108, 0.15);
  }

  .screen-card {
    scroll-snap-align: start;
  }

  .boss-grid article.boss-gameplay {
    height: 138vw;
    max-height: 720px;
  }
}
