:root {
  color-scheme: dark;
  --ink: #03060b;
  --ink-soft: #07101c;
  --panel: rgba(8, 17, 30, 0.92);
  --panel-solid: #091321;
  --panel-bright: #0e1d31;
  --line: rgba(114, 175, 216, 0.22);
  --line-strong: rgba(77, 232, 255, 0.58);
  --text: #f2f7fc;
  --muted: #9aabc1;
  --cyan: #4de8ff;
  --cyan-soft: rgba(77, 232, 255, 0.12);
  --green: #3be483;
  --orange: #ff9248;
  --violet: #b879ff;
  --yellow: #ffd45b;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
[id] { scroll-margin-top: 92px; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 16%, rgba(77, 232, 255, 0.07), transparent 34rem),
    radial-gradient(circle at 8% 58%, rgba(184, 121, 255, 0.06), transparent 30rem),
    var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(77, 232, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 232, 255, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, select { font: inherit; }
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.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;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  color: #001217;
  background: var(--cyan);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(77, 232, 255, 0.16);
  background: rgba(3, 7, 13, 0.84);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; width: 218px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 32px); margin-left: auto; }
.nav-links a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-picker { position: relative; display: inline-flex; }
.language-picker::after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
.language-picker select {
  min-width: 126px;
  height: 40px;
  padding: 0 29px 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #dce9f6;
  background: #08111e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  appearance: none;
  cursor: pointer;
}
.language-picker select:hover { border-color: var(--line-strong); }
.nav-store {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(59, 228, 131, 0.64);
  border-radius: 7px;
  color: #dffff0;
  background: rgba(59, 228, 131, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.nav-store:hover, .nav-store:focus-visible { color: #02130b; background: var(--green); transform: translateY(-1px); }

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid rgba(77, 232, 255, 0.12);
}
.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 11, 0.96) 0%, rgba(3, 6, 11, 0.78) 43%, rgba(3, 6, 11, 0.28) 100%),
    linear-gradient(0deg, var(--ink), transparent 35%),
    url("assets/cavern-wide.webp") center / cover no-repeat;
}
.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 72% 48%, rgba(77, 232, 255, 0.14), transparent 27rem);
}
.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-block: 82px 88px;
}
.hero-copy { position: relative; z-index: 2; }
.availability {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 7px 11px;
  border: 1px solid rgba(59, 228, 131, 0.3);
  border-radius: 999px;
  color: #b8f9d3;
  background: rgba(7, 32, 23, 0.68);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.availability > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kicker::before { width: 28px; height: 2px; content: ""; background: currentColor; box-shadow: 0 0 12px currentColor; }
h1, h2, h3 { margin-top: 0; font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif; text-wrap: balance; }
h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(3.6rem, 7.2vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.48);
}
h1 > span, h1 > mark { display: block; }
h1 mark { color: var(--cyan); background: transparent; }
.lead { max-width: 660px; margin: 28px 0 0; color: #b4c2d3; font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); filter: brightness(1.08); }
.button.primary { color: #021116; background: var(--cyan); box-shadow: 0 0 30px rgba(77, 232, 255, 0.22); }
.button.secondary { color: #d7f9ff; background: rgba(8, 18, 31, 0.78); }
.play-mark { font-size: 0.72rem; }
.proof-list { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 30px 0 0; padding: 0; list-style: none; }
.proof-list li { display: flex; align-items: center; gap: 9px; color: #b7c6d6; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.03em; }
.proof-icon { width: 9px; height: 9px; display: inline-block; transform: rotate(45deg); }
.proof-icon.cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.proof-icon.violet { background: var(--violet); box-shadow: 0 0 10px var(--violet); }
.proof-icon.green { background: var(--green); box-shadow: 0 0 10px var(--green); }

.hero-stage { position: relative; min-height: 610px; }
.game-capture {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 232, 255, 0.48);
  border-radius: var(--radius);
  background: #050a12;
  box-shadow: var(--shadow), 0 0 42px rgba(77, 232, 255, 0.12);
}
.game-capture::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.capture-toolbar {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(77, 232, 255, 0.24);
  color: #6d839d;
  background: #07111f;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.capture-toolbar b { color: var(--green); font-size: inherit; }
.hero-capture { position: absolute; top: 0; right: 7%; width: min(72%, 320px); transform: rotate(1.8deg); }
.hero-capture img { width: 100%; height: auto; }
.hero-capture-secondary {
  position: absolute;
  bottom: 4%;
  left: -2%;
  z-index: 2;
  width: min(38%, 160px);
  border-color: rgba(255, 146, 72, 0.62);
  border-radius: 13px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.62), 0 0 30px rgba(255, 146, 72, 0.12);
  transform: rotate(-4deg);
}
.hero-capture-secondary img { width: 100%; height: auto; }
.hero-capture-secondary figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 146, 72, 0.4);
  border-radius: 5px;
  color: #fff1e7;
  background: rgba(24, 11, 4, 0.88);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.stage-readout { position: absolute; right: 0; bottom: 3%; display: flex; gap: 7px; }
.stage-readout span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--orange);
  background: rgba(3, 7, 13, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  transform: rotate(45deg);
}
.stage-readout span:nth-child(2) { color: var(--cyan); }
.stage-readout span:nth-child(3) { color: var(--violet); }

.section { padding: 104px 0; }
.section-heading { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.section-heading .kicker { justify-content: center; }
.section-heading h2, .mission-copy h2, .final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}
.section-heading > p:last-child { max-width: 700px; margin: 20px auto 0; color: var(--muted); line-height: 1.72; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr); align-items: end; gap: 56px; text-align: left; }
.split-heading .kicker { justify-content: flex-start; }
.split-heading > p:last-child { margin: 0; }

.gameplay-section { position: relative; background: linear-gradient(180deg, rgba(6, 13, 23, 0.96), rgba(3, 6, 11, 0.9)); }
.loop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loop-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 29, 48, 0.86), rgba(6, 12, 21, 0.96));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}
.loop-card::after {
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.07;
  box-shadow: 0 0 0 22px currentColor, 0 0 0 44px currentColor;
}
.loop-card.cyan { border-top-color: var(--cyan); }
.loop-card.violet { border-top-color: var(--violet); }
.loop-number { color: #53667d; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.15em; }
.loop-symbol { width: 48px; height: 48px; margin: 39px 0 25px; position: relative; color: var(--orange); }
.resource-iron { width: 33px; height: 33px; margin-left: 7px; background: currentColor; box-shadow: 0 0 24px rgba(255, 146, 72, 0.42); transform: rotate(45deg); }
.resource-iron::after { position: absolute; inset: 7px; border: 2px solid rgba(5, 12, 22, 0.65); content: ""; }
.build-symbol { border: 3px solid var(--cyan); border-radius: 9px; color: var(--cyan); box-shadow: inset 0 0 18px rgba(77, 232, 255, 0.18), 0 0 22px rgba(77, 232, 255, 0.18); }
.build-symbol::before, .build-symbol::after { position: absolute; content: ""; background: var(--cyan); }
.build-symbol::before { top: 20px; right: -10px; left: -10px; height: 3px; }
.build-symbol::after { top: -10px; bottom: -10px; left: 20px; width: 3px; }
.defend-symbol { border: 3px solid var(--violet); border-radius: 50%; color: var(--violet); box-shadow: 0 0 22px rgba(184, 121, 255, 0.24); }
.defend-symbol::before { position: absolute; inset: 10px; border: 3px solid currentColor; border-radius: 50%; content: ""; }
.defend-symbol::after { position: absolute; top: 21px; left: -9px; width: 60px; height: 3px; content: ""; background: currentColor; transform: rotate(-35deg); }
.loop-card h3 { margin: 0 0 12px; font-size: 1.42rem; letter-spacing: 0.02em; text-transform: uppercase; }
.loop-card p { margin: 0; color: var(--muted); line-height: 1.67; }

.evolution-section { overflow: hidden; }
.progression-gallery {
  max-width: 780px;
  display: grid;
  grid-template-columns: minmax(0, 280px) 92px minmax(0, 280px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
}
.progression-shot {
  width: 100%;
  max-width: 280px;
  justify-self: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.progression-shot::before { position: absolute; top: 0; right: 0; left: 0; z-index: 2; height: 3px; content: ""; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.progression-shot.late-shot::before { background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.progression-shot img { width: 100%; height: auto; object-fit: contain; }
.progression-shot figcaption { min-height: 126px; display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px; border-top: 1px solid var(--line); }
.progression-shot figcaption > span { color: var(--orange); font-size: 1.35rem; font-weight: 900; }
.progression-shot.late-shot figcaption > span { color: var(--cyan); }
.progression-shot strong { display: block; margin-bottom: 5px; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; }
.progression-shot p { margin: 0; color: var(--muted); font-size: 0.89rem; line-height: 1.55; }
.progression-arrow { display: grid; place-items: center; gap: 12px; color: var(--cyan); }
.progression-arrow span { font-size: 3rem; text-shadow: 0 0 20px rgba(77, 232, 255, 0.42); }
.progression-arrow small { color: #64758c; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.11em; text-align: center; }

.mission-section { position: relative; overflow: hidden; background: #050a12; }
.mission-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.21;
  background: url("assets/cavern-wide.webp") center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}
.mission-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr); align-items: center; gap: clamp(54px, 8vw, 110px); }
.mission-copy h2 { max-width: 720px; }
.mission-copy > p:not(.kicker) { max-width: 690px; margin: 23px 0 0; color: var(--muted); line-height: 1.75; }
.mission-points { display: grid; gap: 12px; margin: 33px 0 0; padding: 0; list-style: none; }
.mission-points li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 16px 18px; border-left: 2px solid var(--violet); background: rgba(10, 18, 32, 0.78); }
.mission-points li:nth-child(2) { border-color: var(--cyan); }
.mission-points li:nth-child(3) { border-color: var(--orange); }
.mission-points li > span { color: #62738a; font-size: 0.67rem; font-weight: 900; }
.mission-points strong { display: block; margin-bottom: 3px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.mission-points p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.mission-visual { width: min(100%, 300px); margin: 0 auto; border-color: rgba(184, 121, 255, 0.6); box-shadow: var(--shadow), 0 0 50px rgba(184, 121, 255, 0.13); transform: rotate(1.5deg); }
.mission-visual img { width: 100%; height: auto; }

.depth-section { background: linear-gradient(180deg, #03060b, #06101b 50%, #03060b); }
.depth-grid {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  gap: 16px;
  margin-inline: auto;
}
.depth-card { position: relative; overflow: hidden; min-height: 270px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(14, 28, 47, 0.93), rgba(5, 11, 19, 0.98)); }
.depth-card-image { grid-row: 1 / 3; min-height: 570px; padding: 0; }
.depth-card-image img {
  width: min(calc(100% - 44px), 300px);
  height: auto;
  margin: 22px auto 0;
  border: 1px solid rgba(77, 232, 255, 0.22);
  border-radius: 12px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}
.depth-card-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 0.12) 58%, transparent 78%); }
.depth-overlay { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 38px; }
.depth-overlay > span, .depth-code { display: block; margin-bottom: 15px; color: var(--cyan); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.depth-card h3 { max-width: 500px; margin: 0 0 12px; font-size: clamp(1.45rem, 2.6vw, 2.25rem); letter-spacing: -0.02em; line-height: 1.03; text-transform: uppercase; }
.depth-card p { max-width: 590px; margin: 0; color: var(--muted); line-height: 1.65; }
.mini-grid { position: absolute; right: 28px; bottom: 25px; display: grid; grid-template-columns: repeat(3, 17px); gap: 5px; opacity: 0.52; }
.mini-grid i { height: 17px; border: 1px solid var(--cyan); background: rgba(77, 232, 255, 0.12); }
.signal-lines { position: absolute; right: 28px; bottom: 28px; display: flex; align-items: end; gap: 7px; opacity: 0.52; }
.signal-lines i { width: 7px; height: 18px; background: var(--violet); box-shadow: 0 0 12px rgba(184, 121, 255, 0.45); }
.signal-lines i:nth-child(2) { height: 30px; }
.signal-lines i:nth-child(3) { height: 43px; }
.signal-lines i:nth-child(4) { height: 57px; }

.final-cta {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  margin-block: 74px 96px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.95), rgba(5, 11, 19, 0.76)),
    url("assets/cavern-wide.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.final-cta::before { position: absolute; top: 18px; right: 22px; color: rgba(77, 232, 255, 0.38); content: "// TRANSMISSION READY"; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.16em; }
.cta-icon { width: 92px; border-radius: 22%; box-shadow: 0 0 36px rgba(77, 232, 255, 0.2); }
.final-cta .kicker { margin-bottom: 12px; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.final-cta p:not(.kicker) { max-width: 650px; margin: 13px 0 0; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #02050a; }
.footer-inner { min-height: 125px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 24px; color: #71849c; font-size: 0.76rem; }
.footer-brand { width: 172px; display: inline-flex; }
.footer-brand img { width: 100%; height: auto; object-fit: contain; }
.footer-inner p { margin: 0; white-space: nowrap; }
.footer-inner nav { display: flex; justify-content: flex-end; gap: 20px; }
.footer-inner a { color: #91a2b7; text-decoration: none; }
.footer-inner a:hover, .footer-inner a:focus-visible { color: var(--cyan); }

/* Availability page kept for visitors using the former campaign URL. */
.release-wrap { width: min(1040px, calc(100% - 40px)); margin: 62px auto 92px; }
.release-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(5, 11, 19, 0.96), rgba(5, 11, 19, 0.58)),
    url("assets/cavern-wide.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.release-hero::after { position: absolute; top: 19px; right: 23px; color: rgba(59, 228, 131, 0.5); content: "// AVAILABLE NOW"; font-size: 0.61rem; font-weight: 900; letter-spacing: 0.15em; }
.release-icon { width: 96px; margin-bottom: 28px; border-radius: 22%; box-shadow: 0 0 34px rgba(77, 232, 255, 0.22); }
.release-hero h1 { max-width: 850px; font-size: clamp(3rem, 7vw, 6rem); }
.release-hero > p:not(.kicker) { max-width: 700px; margin: 24px 0 0; color: #b0bfd0; font-size: 1.05rem; line-height: 1.72; }
.release-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 22px; }
.release-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.release-card > span { color: var(--cyan); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.13em; }
.release-card h2 { margin: 24px 0 10px; font-size: 1.25rem; text-transform: uppercase; }
.release-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.release-support { margin-top: 22px; padding: 30px; border-left: 2px solid var(--orange); background: rgba(29, 16, 9, 0.62); }
.release-support h2 { margin: 0 0 8px; font-size: 1.15rem; text-transform: uppercase; }
.release-support p { margin: 0; color: var(--muted); }
.release-support a { color: var(--cyan); }

/* Legal pages. */
.legal-wrap { width: min(940px, calc(100% - 40px)); margin: 62px auto 94px; }
.legal-hero { margin-bottom: 18px; padding: clamp(34px, 6vw, 58px); border: 1px solid var(--line-strong); border-radius: 20px; background: linear-gradient(145deg, rgba(13, 26, 44, 0.94), rgba(6, 12, 21, 0.98)); box-shadow: var(--shadow); }
.legal-hero .kicker { margin-bottom: 12px; }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.legal-hero h1 { overflow-wrap: anywhere; hyphens: auto; }
.legal-hero p:last-child { margin: 18px 0 0; color: var(--muted); }
.legal-content { padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: 20px; background: rgba(7, 14, 25, 0.96); }
.legal-content h2 { margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 1.15rem; letter-spacing: 0.03em; text-transform: uppercase; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.78; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin: 8px 0; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--cyan); }
.back-link { display: inline-flex; margin-top: 28px; color: var(--green) !important; font-weight: 850; text-decoration: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr); gap: 30px; }
  .hero-stage { min-height: 600px; }
  .depth-grid { grid-template-columns: minmax(300px, 390px) minmax(0, 1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(var(--max), calc(100% - 32px)); }
  .hero-section, .hero { min-height: 0; }
  .hero-section::before { background: linear-gradient(180deg, rgba(3, 6, 11, 0.76), rgba(3, 6, 11, 0.96) 65%, var(--ink)), url("assets/cavern-wide.webp") 68% center / cover no-repeat; }
  .hero { grid-template-columns: 1fr; padding: 72px 0 78px; }
  .hero-copy { text-align: center; }
  .availability, .kicker, .hero-actions, .proof-list { justify-content: center; }
  .availability, .lead { margin-inline: auto; }
  .hero-stage { width: min(100%, 440px); min-height: 590px; margin: 18px auto 0; }
  .hero-capture { right: 7%; }
  .hero-capture-secondary { left: 2%; }
  .loop-grid { grid-template-columns: 1fr; }
  .loop-card { min-height: 0; }
  .loop-symbol { margin-top: 28px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .split-heading .kicker { justify-content: center; }
  .split-heading > p:last-child { margin-inline: auto; }
  .progression-gallery { grid-template-columns: minmax(0, 260px) 58px minmax(0, 260px); gap: 16px; }
  .progression-shot { max-width: 260px; }
  .progression-shot figcaption { grid-template-columns: 1fr; }
  .mission-layout { grid-template-columns: 1fr; }
  .mission-copy { text-align: center; }
  .mission-copy .kicker { justify-content: center; }
  .mission-copy > p:not(.kicker) { margin-inline: auto; }
  .mission-points { text-align: left; }
  .mission-visual { width: min(100%, 280px); margin-top: 10px; }
  .depth-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .depth-card-image { grid-row: auto; min-height: 590px; }
  .final-cta { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .final-cta .kicker { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; padding: 32px 0; text-align: center; }
  .footer-inner nav { justify-content: center; flex-wrap: wrap; }
  .release-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .shell { width: min(var(--max), calc(100% - 24px)); }
  .nav { min-height: 66px; gap: 10px; }
  .brand { width: 154px; }
  .language-picker select { min-width: 62px; max-width: 62px; padding-left: 9px; color: transparent; }
  .language-picker select option { color: var(--text); }
  .language-picker::before { position: absolute; top: 50%; left: 10px; z-index: 1; color: var(--text); content: attr(data-short-label); pointer-events: none; font-size: 0.7rem; font-weight: 900; transform: translateY(-50%); }
  .nav-store { display: none; }
  .hero { padding-top: 56px; }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .proof-list { display: grid; justify-content: center; text-align: left; }
  .hero-stage { width: min(100%, 320px); min-height: 490px; }
  .hero-capture { right: 3%; width: min(78%, 252px); }
  .hero-capture-secondary { left: 1%; width: min(36%, 112px); }
  .stage-readout { display: none; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .mission-copy h2, .final-cta h2 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .loop-card { padding: 27px; }
  .progression-gallery { grid-template-columns: 1fr; }
  .progression-shot { max-width: 250px; }
  .progression-arrow span { transform: rotate(90deg); }
  .progression-shot figcaption { min-height: 0; padding: 19px; }
  .mission-points li { grid-template-columns: 32px 1fr; padding-inline: 14px; }
  .depth-card { padding: 26px; }
  .mission-visual { width: min(100%, 252px); }
  .depth-card-image { min-height: 520px; padding: 0; }
  .depth-card-image img { width: min(calc(100% - 48px), 250px); margin-top: 20px; }
  .depth-overlay { padding: 26px; }
  .final-cta { margin-block: 52px 72px; padding: 46px 24px 32px; }
  .final-cta::before, .release-hero::after { display: none; }
  .release-wrap, .legal-wrap { width: min(100% - 24px, 1040px); margin-top: 30px; }
  .release-hero { padding: 34px 24px; text-align: center; }
  .release-icon, .release-hero .availability { margin-inline: auto; }
  .release-actions { display: grid; }
  .legal-hero { text-align: center; }
  .legal-hero .kicker { justify-content: center; }
  .footer-inner nav { flex-direction: column; gap: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
