:root {
  color-scheme: dark;
  --bg: #07080b;
  --surface: #0d0f14;
  --surface-2: #13161d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f7f5f0;
  --muted: #a1a4ad;
  --acid: #d8ff57;
  --pink: #ff4fd8;
  --cyan: #65e8ff;
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(101, 232, 255, .07), transparent 28rem),
    radial-gradient(circle at 14% 50%, rgba(255, 79, 216, .05), transparent 26rem),
    var(--bg);
  font-family: var(--body);
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }
::selection { background: var(--acid); color: #080909; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #050607;
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
  --x: 50vw;
  --y: 30vh;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(216, 255, 87, .055), transparent 70%);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header[data-scrolled="true"] {
  min-height: 66px;
  border-color: var(--line);
  background: rgba(7, 8, 11, .82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; text-decoration: none; }
.brand-mark { position: relative; display: inline-grid; width: 28px; height: 28px; grid-template-columns: repeat(3, 1fr); gap: 2px; transform: skewX(-10deg); }
.brand-mark i { background: var(--text); }
.brand-mark i:nth-child(2) { background: var(--acid); transform: translateY(5px); }
.brand-mark i:nth-child(3) { transform: translateY(10px); }
.brand-type { font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.brand-type b { color: var(--muted); font-weight: 600; }
.main-nav { display: flex; gap: 30px; }
.main-nav a, .header-cta { color: #d8d8db; font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; }
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--acid); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 10px; color: var(--acid); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 122px var(--gutter) 78px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: .16;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-content { position: relative; z-index: 2; width: min(1180px, 92vw); margin: auto; }
.eyebrow, .section-kicker { margin: 0 0 24px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 36px; height: 2px; background: var(--acid); box-shadow: 0 0 20px rgba(216, 255, 87, .7); }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(66px, 11.2vw, 178px); font-weight: 900; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { margin-left: 8.5vw; color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero h1 span:nth-child(3) { margin-left: 2.8vw; color: var(--acid); }
.hero-bottom { display: grid; grid-template-columns: minmax(260px, 470px) auto; gap: 48px; align-items: end; margin-top: clamp(38px, 6vw, 76px); margin-left: 12vw; }
.hero-bottom p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.45vw, 21px); line-height: 1.55; }
.primary-button, .secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 23px;
  border: 1px solid var(--acid);
  color: #080909;
  background: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 12px 42px rgba(216, 255, 87, .18); }
.hero-side { position: absolute; right: var(--gutter); top: 50%; display: flex; gap: 46px; color: #6d7079; font-size: 10px; font-weight: 800; letter-spacing: .15em; writing-mode: vertical-rl; }
.scroll-cue { position: absolute; z-index: 2; left: var(--gutter); bottom: 38px; display: flex; align-items: center; gap: 13px; color: #6f727a; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { width: 38px; height: 1px; background: #6f727a; animation: pulse-line 1.7s ease-in-out infinite; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.hero-orbit::before { content: ""; position: absolute; top: 12%; left: 9%; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 28px var(--pink); }
.orbit-a { width: 68vw; aspect-ratio: 1; right: -26vw; top: -12vw; animation: orbit 26s linear infinite; }
.orbit-b { width: 38vw; aspect-ratio: 1; left: -20vw; bottom: -12vw; animation: orbit 18s linear reverse infinite; }

.signal-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--acid); color: #080909; transform: rotate(-1deg) scale(1.02); transform-origin: center; }
.signal-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 14px 0; font-family: var(--display); font-size: 18px; font-weight: 900; letter-spacing: .05em; animation: ticker 28s linear infinite; }
.signal-track i { font-style: normal; }

.section-shell { width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.games-section { padding-top: clamp(110px, 12vw, 185px); padding-bottom: clamp(100px, 11vw, 170px); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 470px); gap: 60px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .studio-copy h2, .manifesto h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.section-heading h2 { font-size: clamp(58px, 8vw, 122px); }
.section-heading > p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6; }
.filter-bar { display: flex; gap: 8px; margin-bottom: 26px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button:hover, .filter-button.is-active { border-color: var(--text); color: var(--bg); background: var(--text); }

.games-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 28px); }
.game-card { grid-column: span 6; min-width: 0; border: 1px solid var(--line); background: var(--surface); animation: card-in .55s cubic-bezier(.2,.8,.2,1) both; animation-delay: var(--delay); }
.game-card:nth-child(3n) { grid-column: span 4; }
.game-card:nth-child(3n + 1):not(:first-child) { grid-column: span 8; }
.game-card-button { display: block; width: 100%; padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; }
.game-card-art { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); background: #0b0d12; }
.game-card-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 32%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.04), transparent 44%); transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s ease; }
.art-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(500px) rotateX(58deg) scale(1.5) translateY(14%); }
.art-title { position: absolute; left: 28px; bottom: 24px; max-width: 70%; font-family: var(--display); font-size: clamp(27px, 4vw, 60px); font-weight: 900; line-height: .85; letter-spacing: -.055em; text-transform: uppercase; text-shadow: 0 3px 25px #000; }
.art-index { position: absolute; top: 22px; right: 24px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.art-object { position: absolute; display: block; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.visual-layers .art-object { right: 10%; top: 12%; width: 40%; height: 68%; background: repeating-linear-gradient(to bottom, var(--accent) 0 6%, transparent 6% 10%); transform: skewY(-10deg) rotate(8deg); filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 46%, transparent)); }
.visual-roads .art-object { right: 7%; top: 14%; width: 52%; height: 72%; border: 4px solid var(--accent); clip-path: polygon(6% 100%, 31% 64%, 11% 46%, 48% 12%, 61% 30%, 90% 0, 100% 13%, 60% 56%, 77% 71%, 47% 100%); filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 46%, transparent)); }
.visual-beast .art-object { right: 8%; top: 8%; width: 46%; aspect-ratio: 1; border: 2px solid var(--accent); border-radius: 48% 52% 42% 58% / 60% 42% 58% 40%; box-shadow: inset 0 0 50px color-mix(in srgb, var(--accent) 25%, transparent), 0 0 35px color-mix(in srgb, var(--accent) 24%, transparent); transform: rotate(-14deg); }
.visual-beast .art-object::before, .visual-beast .art-object::after { content: ""; position: absolute; top: 42%; width: 13%; aspect-ratio: 1; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.visual-beast .art-object::before { left: 25%; } .visual-beast .art-object::after { right: 25%; }
.visual-sand .art-object { right: -4%; bottom: -20%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle at center, var(--accent) 0 2%, transparent 2.5% 6%); transform: rotate(-12deg); opacity: .8; }
.visual-magnet .art-object { right: 13%; top: 14%; width: 34%; height: 58%; border: 22px solid var(--accent); border-top: 0; border-radius: 0 0 80px 80px; filter: drop-shadow(0 0 20px color-mix(in srgb, var(--accent) 38%, transparent)); }
.visual-magnet .art-object::before, .visual-magnet .art-object::after { content: ""; position: absolute; top: -7px; width: 23px; height: 35px; background: #f6f4ef; }
.visual-magnet .art-object::before { left: -22px; } .visual-magnet .art-object::after { right: -22px; }
.game-card-button:hover .game-card-art::before { transform: scale(1.12); opacity: 1.3; }
.game-card-button:hover .art-object { transform: translateY(-10px) rotate(3deg) scale(1.04); }
.visual-layers .game-card-button:hover .art-object { transform: skewY(-10deg) rotate(11deg) translateY(-10px); }
.visual-beast .game-card-button:hover .art-object { transform: rotate(-8deg) translateY(-8px) scale(1.05); }
.game-card-body { display: block; padding: 22px 24px 26px; }
.game-card-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.game-card-meta span:last-child { margin-left: auto; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.game-card-title-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; margin-top: 18px; }
.game-card-title-row strong { font-family: var(--display); font-size: clamp(25px, 3vw, 43px); line-height: .95; letter-spacing: -.04em; }
.round-arrow { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); transition: transform .2s ease, background .2s ease, color .2s ease; }
.game-card-button:hover .round-arrow { transform: rotate(45deg); color: #080909; background: var(--accent); }
.game-card-tagline { display: block; margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.loading-card, .empty-state, .catalog-error { grid-column: 1 / -1; min-height: 240px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); }
.loading-card span { width: 34px; height: 34px; border: 2px solid var(--line); border-top-color: var(--acid); border-radius: 50%; animation: spin .8s linear infinite; }
.loading-card p { margin-top: -80px; }

.studio-section { position: relative; border-block: 1px solid var(--line); background: #0a0b0f; overflow: hidden; }
.studio-visual { position: absolute; inset: 0 50% 0 0; display: grid; place-items: center; border-right: 1px solid var(--line); background: radial-gradient(circle, rgba(255,79,216,.11), transparent 58%), #090a0d; overflow: hidden; }
.studio-visual::before { content: ""; position: absolute; inset: -20%; background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.05) 0 1deg, transparent 1deg 9deg); animation: orbit 60s linear infinite; }
.studio-disc { position: relative; z-index: 1; display: grid; place-items: center; width: min(35vw, 470px); aspect-ratio: 1; border: 1px solid var(--line-strong); border-radius: 50%; box-shadow: inset 0 0 70px rgba(255,79,216,.08); }
.studio-disc::before, .studio-disc::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.studio-disc::before { inset: 9%; } .studio-disc::after { inset: 25%; border-color: var(--pink); }
.studio-disc span { font-family: var(--display); font-size: clamp(70px, 12vw, 170px); font-weight: 900; letter-spacing: -.09em; }
.studio-code { position: absolute; left: 28px; bottom: 24px; color: #666a73; font-size: 9px; font-weight: 800; letter-spacing: .18em; writing-mode: vertical-rl; }
.studio-copy { width: 50%; margin-right: 0; padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 11vw, 160px); padding-left: clamp(38px, 7vw, 100px); }
.studio-copy h2 { font-size: clamp(50px, 7vw, 105px); }
.studio-lead { max-width: 660px; margin: 44px 0 62px; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.studio-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.studio-values article { padding-top: 20px; border-top: 1px solid var(--line); }
.studio-values span { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.studio-values h3 { margin: 20px 0 8px; font-family: var(--display); font-size: 24px; letter-spacing: -.02em; text-transform: uppercase; }
.studio-values p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.manifesto { display: grid; grid-template-columns: 130px 1fr minmax(240px, 350px); gap: 48px; align-items: end; padding-top: clamp(100px, 11vw, 165px); padding-bottom: clamp(100px, 11vw, 165px); }
.manifesto-index { color: var(--acid); font-family: var(--display); font-size: 38px; font-weight: 900; }
.manifesto h2 { max-width: 930px; font-size: clamp(42px, 5.5vw, 84px); line-height: .98; }
.manifesto > p { margin: 0; color: var(--muted); line-height: 1.7; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 42px var(--gutter); border-top: 1px solid var(--line); background: #050608; }
.footer-brand { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); font-weight: 900; letter-spacing: -.05em; }
.footer-brand span { color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--acid); }
.site-footer > p { grid-column: 1 / -1; margin: 0; color: #666973; font-size: 11px; }

.game-dialog { width: min(1100px, calc(100vw - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 1px solid var(--line-strong); color: var(--text); background: var(--surface); box-shadow: 0 35px 120px rgba(0,0,0,.7); overflow: auto; }
.game-dialog::backdrop { background: rgba(3,4,6,.82); backdrop-filter: blur(12px); }
.game-dialog[open] { display: grid; grid-template-columns: minmax(300px, 46%) 1fr; animation: dialog-in .25s ease both; }
.dialog-close { position: fixed; z-index: 3; top: max(24px, calc((100vh - min(760px, 100vh - 32px))/2 + 14px)); right: max(24px, calc((100vw - min(1100px, 100vw - 32px))/2 + 14px)); width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--text); background: rgba(7,8,11,.7); font-size: 24px; cursor: pointer; }
.dialog-art { position: relative; min-height: 620px; overflow: hidden; background: radial-gradient(circle at 58% 35%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 34%), #080a0e; }
.dialog-art::before { content: ""; position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 48px 48px; transform: perspective(500px) rotateX(65deg) scale(1.8) translateY(26%); }
.dialog-art span { position: absolute; inset: 18%; border: 2px solid var(--accent); box-shadow: 0 0 45px color-mix(in srgb, var(--accent) 35%, transparent); transform: rotate(-12deg); }
.dialog-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px); }
.dialog-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.dialog-meta span:first-child { color: var(--acid); }
.dialog-content h2 { margin: 28px 0 0; font-family: var(--display); font-size: clamp(48px, 6vw, 90px); line-height: .85; letter-spacing: -.06em; }
.dialog-tagline { margin: 28px 0 0; font-size: 19px; font-weight: 700; line-height: 1.45; }
.dialog-description { margin: 20px 0 0; color: var(--muted); line-height: 1.7; }
.dialog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.dialog-tags li { padding: 8px 10px; border: 1px solid var(--line); color: #c8c9ce; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dialog-actions { display: flex; gap: 10px; margin-top: 38px; }
.secondary-button { border-color: var(--line-strong); color: var(--text); background: transparent; cursor: pointer; }
.primary-button.is-disabled { border-color: var(--line); color: #6c7078; background: #15171c; pointer-events: none; box-shadow: none; }
.dialog-note { margin: 20px 0 0; color: #6c7078; font-size: 11px; line-height: 1.55; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes pulse-line { 50% { width: 65px; background: var(--acid); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes card-in { from { opacity: 0; transform: translateY(28px); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(16px) scale(.985); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-bottom { margin-left: 5vw; }
  .game-card, .game-card:nth-child(3n), .game-card:nth-child(3n + 1):not(:first-child) { grid-column: span 6; }
  .studio-visual { inset: 0 58% 0 0; }
  .studio-copy { width: 58%; }
  .studio-values { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 80px 1fr; }
  .manifesto > p { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .site-header { min-height: 66px; }
  .brand-type { font-size: 12px; }
  .header-cta { font-size: 10px; }
  .hero { min-height: 92svh; padding-top: 104px; align-items: flex-start; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(58px, 21vw, 104px); line-height: .82; }
  .hero h1 span:nth-child(2) { margin-left: 0; }
  .hero h1 span:nth-child(3) { margin-left: 0; }
  .hero-bottom { grid-template-columns: 1fr; margin: 42px 0 0; gap: 28px; }
  .hero-bottom .primary-button { width: 100%; }
  .hero-side { display: none; }
  .scroll-cue { bottom: 18px; }
  .signal-track { font-size: 15px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .games-grid { display: block; }
  .game-card { margin-bottom: 16px; }
  .game-card-art { aspect-ratio: 5/4; }
  .studio-section { display: flex; flex-direction: column; }
  .studio-visual { position: relative; inset: auto; min-height: 430px; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-disc { width: 70vw; }
  .studio-copy { width: 100%; padding-left: var(--gutter); }
  .manifesto { grid-template-columns: 1fr; gap: 24px; }
  .manifesto > p { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .game-dialog[open] { grid-template-columns: 1fr; }
  .dialog-art { min-height: 260px; }
  .dialog-content { padding: 38px 24px; }
  .dialog-actions { flex-direction: column; }
  .dialog-close { top: 24px; right: 24px; }
}

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