:root {
  --bg: #07070c;
  --bg-soft: #0d0e16;
  --panel: #11121b;
  --panel-2: #171823;
  --ink: #f4f2ed;
  --muted: #9b9aa7;
  --line: rgba(255, 255, 255, 0.12);
  --violet: #a679ff;
  --violet-bright: #c3a6ff;
  --lime: #c7f75a;
  --amber: #ffbd63;
  --teal: #61d7c7;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 10%, rgba(116, 75, 207, 0.1), transparent 29rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.025) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 80% 70%, rgba(166,121,255,.02) 0 1px, transparent 1px 5px);
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--lime);
  color: #101206;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 12, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 11px;
  background: #10101a;
  box-shadow: inset 0 0 18px rgba(166, 121, 255, 0.2);
}

.brand-mark::before {
  width: 6px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(var(--violet-bright), #6a34f7);
  box-shadow: 0 0 14px var(--violet);
  content: "";
  transform: rotate(38deg);
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #cfced6;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(199, 247, 90, 0.55);
  border-radius: 99px;
  color: var(--lime);
}

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

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.is-open .nav-toggle span {
  opacity: 0;
}

.is-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.is-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: end;
  overflow: hidden;
  background: #07070b;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 5, 11, 0.96) 0%, rgba(5, 6, 12, 0.82) 28%, rgba(7, 8, 15, 0.22) 66%, rgba(7, 7, 12, 0.16) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%);
  content: "";
}

.hero::after {
  position: absolute;
  top: 25%;
  left: -10%;
  z-index: 1;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: rgba(98, 52, 209, 0.13);
  filter: blur(90px);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 180px;
  padding-bottom: 86px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 9.2vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em {
  color: var(--violet-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 545px;
  margin: 30px 0 0;
  color: #cac8d0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: #111407;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 15, 0.35);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 62px;
  z-index: 2;
  display: grid;
  width: min(390px, 32vw);
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px 0 0 18px;
  background: rgba(5, 6, 12, 0.45);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-index span {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #aaa8b1;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index span:last-child {
  border: 0;
}

.hero-index strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.78rem;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0a0a10;
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  animation: ticker 30s linear infinite;
}

.signal-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  color: #c9c7cf;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-track span::after {
  color: var(--violet-bright);
  content: "✦";
}

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

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.studio-copy h2,
.legal-hero h1,
.deletion-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-heading p,
.studio-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.games-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
}

.game-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.game-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 430px;
}

.game-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

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

.game-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 7, 12, 0.98) 0%, rgba(7, 7, 12, 0.44) 52%, transparent 83%);
  content: "";
}

.ink-visual {
  background:
    radial-gradient(circle at 18% 12%, rgba(158, 105, 255, 0.55), transparent 22%),
    radial-gradient(circle at 70% 38%, rgba(76, 28, 169, 0.72), transparent 28%),
    linear-gradient(135deg, #0a0a16, #201243 50%, #0a0a10);
}

.ink-visual::before {
  position: absolute;
  top: -30%;
  left: 48%;
  width: 28px;
  height: 170%;
  border-radius: 50%;
  background: #c6a3ff;
  box-shadow: 0 0 28px 8px #7c40ed, 0 0 90px 25px rgba(115, 58, 227, 0.75);
  content: "";
  transform: rotate(32deg);
}

.ink-visual::after {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background: repeating-radial-gradient(circle at 65% 30%, transparent 0 28px, rgba(255,255,255,.09) 30px, transparent 32px);
  content: "";
}

.jungle-visual {
  background:
    radial-gradient(circle at 25% 16%, rgba(185, 241, 72, 0.5), transparent 17%),
    linear-gradient(152deg, #163c31, #071510 54%, #0b080f);
}

.orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 45% 55% 52% 48%;
  background: radial-gradient(circle at 32% 26%, #f1ffb3 0 5%, #81c94d 18%, #163f2b 72%);
  box-shadow: inset -18px -20px 32px rgba(0,0,0,.28), 0 20px 45px rgba(0,0,0,.3);
}

.orb-one { top: 16%; left: 14%; transform: rotate(12deg); }
.orb-two { top: 10%; right: 13%; width: 90px; height: 90px; filter: hue-rotate(46deg); transform: rotate(-12deg); }
.orb-three { top: 38%; left: 42%; width: 150px; height: 150px; filter: hue-rotate(-38deg); transform: rotate(26deg); }

.story-visual {
  background:
    linear-gradient(90deg, rgba(14, 11, 14, 0.96), rgba(14, 11, 14, 0.12)),
    radial-gradient(circle at 73% 45%, rgba(255, 189, 99, 0.64), transparent 24%),
    linear-gradient(135deg, #2a1510, #0b0a0e 70%);
}

.story-visual::before {
  position: absolute;
  top: 13%;
  right: 13%;
  width: min(34vw, 340px);
  height: min(38vw, 380px);
  border: 2px solid rgba(255, 233, 189, 0.48);
  border-radius: 48% 48% 4px 4px;
  background: linear-gradient(90deg, #5f341d, #ffd389 49%, #4e2817 51%);
  box-shadow: 0 0 90px rgba(255, 181, 74, 0.35);
  content: "";
}

.game-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.game-num {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.game-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 99px;
  background: rgba(0,0,0,.2);
  color: #d8d6dd;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.game-card p {
  max-width: 530px;
  margin: 0;
  color: #aaa8b1;
}

.studio-section {
  padding: 84px 0 124px;
}

.studio-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.studio-copy,
.studio-manifesto {
  min-height: 530px;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--violet);
  color: #120b22;
}

.studio-copy .eyebrow,
.studio-copy > p {
  color: #24123f;
}

.studio-copy h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.studio-manifesto {
  background:
    radial-gradient(circle at 100% 0, rgba(199, 247, 90, 0.12), transparent 27rem),
    var(--panel);
}

.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principle:first-child { padding-top: 0; }
.principle:last-child { border-bottom: 0; padding-bottom: 0; }

.principle > span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.principle h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-block: 1px solid var(--line);
  background: #d8ff78;
  color: #0e1306;
}

.contact-band::after {
  position: absolute;
  top: -90%;
  right: -5%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(14,19,6,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(14,19,6,.04), 0 0 0 140px rgba(14,19,6,.03);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: end;
}

.contact-band h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  text-decoration: none;
}

.contact-info address {
  font-style: normal;
}

.site-footer {
  padding: 50px 0 34px;
  background: #07070c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
}

.footer-links a {
  color: #d5d3dc;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #74727d;
  font-size: 0.72rem;
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 86% 0, rgba(166, 121, 255, 0.16), transparent 32rem),
    var(--bg);
}

.legal-main {
  padding: 160px 0 110px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-meta {
  min-width: 220px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.legal-meta span {
  display: block;
  color: #777581;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-meta strong {
  display: block;
  margin-top: 3px;
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 80px;
  align-items: start;
  justify-content: space-between;
  padding-top: 56px;
}

.legal-toc {
  position: sticky;
  top: 112px;
}

.legal-toc h2 {
  margin: 0 0 18px;
  color: #777581;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal;
}

.legal-toc li {
  counter-increment: legal;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 7px 0;
  color: #9f9da7;
  font-size: 0.76rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease;
}

.legal-toc a::before {
  color: #5f5d68;
  content: counter(legal, decimal-leading-zero);
  font-size: 0.62rem;
  font-weight: 850;
}

.legal-toc a:hover {
  color: #fff;
}

.legal-copy {
  color: #c6c4cc;
}

.legal-intro {
  margin: 0 0 50px;
  color: #dcdae1;
  font-size: 1.16rem;
  line-height: 1.75;
}

.legal-copy section {
  padding: 18px 0 46px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:last-child {
  border-bottom: 0;
}

.legal-copy h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 1rem;
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-copy li {
  margin-bottom: 9px;
}

.legal-copy a {
  color: var(--violet-bright);
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 26px 0;
  padding: 22px 24px;
  border: 1px solid rgba(199,247,90,.3);
  border-radius: 18px;
  background: rgba(199,247,90,.055);
}

.legal-callout strong {
  color: var(--lime);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.legal-table th,
.legal-table td {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.operator-card p {
  margin: 0;
}

.operator-card span {
  display: block;
  margin-bottom: 5px;
  color: #777581;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deletion-wrap {
  max-width: 900px;
  margin-inline: auto;
  padding: 160px 20px 110px;
}

.deletion-card {
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(166, 121, 255, .18), transparent 26rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.deletion-card h1 {
  max-width: 700px;
  margin-bottom: 24px;
}

.deletion-lede {
  max-width: 680px;
  color: #b4b2bc;
  font-size: 1.08rem;
}

.deletion-steps {
  display: grid;
  gap: 12px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.deletion-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  counter-increment: steps;
}

.deletion-steps li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #101407;
  content: counter(steps, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 900;
}

.deletion-steps h2 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.deletion-steps p {
  margin: 0;
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--violet-bright);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 940px) {
  .hero-index { display: none; }
  .section-heading,
  .studio-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .game-card:nth-child(3) {
    grid-column: auto;
  }
  .studio-copy,
  .studio-manifesto {
    min-height: auto;
  }
  .studio-copy h2 {
    margin-bottom: 80px;
  }
  .legal-hero {
    grid-template-columns: 1fr;
  }
  .legal-meta {
    width: 100%;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-toc {
    position: static;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .legal-toc ol {
    column-count: 2;
    column-gap: 30px;
  }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 12, 0.97);
  }
  .is-open .nav-links { display: grid; }
  .nav-links a { padding: 15px 6px; }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: 700px; }
  .hero-media { object-position: 63% center; opacity: .78; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(4,5,11,.9), rgba(5,6,12,.32)),
      linear-gradient(0deg, var(--bg) 0%, transparent 52%);
  }
  .hero-content { padding-top: 135px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(4.1rem, 19vw, 6.5rem); }
  .section { padding: 82px 0; }
  .section-heading { gap: 24px; margin-bottom: 38px; }
  .game-card,
  .game-card:nth-child(3) { min-height: 500px; }
  .game-body { padding: 26px; }
  .game-card h3 { font-size: 2.7rem; }
  .story-visual::before { width: 220px; height: 260px; right: -2%; }
  .studio-section { padding: 20px 0 88px; }
  .contact-band { padding: 78px 0; }
  .contact-band h2 { font-size: clamp(3.3rem, 17vw, 5.8rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .legal-main { padding: 125px 0 80px; }
  .legal-hero { gap: 30px; padding-bottom: 36px; }
  .legal-hero h1 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .legal-layout { padding-top: 36px; }
  .legal-toc ol { column-count: 1; }
  .operator-card { grid-template-columns: 1fr; }
  .deletion-wrap { padding-top: 120px; }
}

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