@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #08090b;
  --bg-raised: #101216;
  --ink: #f2f3f5;
  --muted: #a6aab1;
  --line: #292c32;
  --accent: #246bfd;
  --accent-dark: #1658de;
  --radius: 12px;
  --header-height: 72px;
  --page-pad: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 12px 16px;
  translate: 0 -160%;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 11, 0.94);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 19px;
  font-weight: 850;
  font-stretch: 92%;
  letter-spacing: -0.02em;
}

.wordmark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-contact {
  justify-self: end;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-contact:hover,
.primary-action:hover {
  background: var(--accent-dark);
}

.header-contact:active,
.primary-action:active {
  transform: translateY(1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

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

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 118px;
  background: rgba(8, 9, 11, 0.56);
  pointer-events: none;
}

.game-wall {
  position: absolute;
  inset: 0 0 118px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 5px;
  transform: scale(1.035);
  transform-origin: 70% 50%;
  animation: wall-arrive 1.1s var(--ease-out) both;
}

.wall-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--bg-raised);
}

.wall-tile::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: var(--tile-image) center / cover no-repeat;
  filter: blur(18px) brightness(0.54) saturate(0.72);
  transform: scale(1.08);
}

.wall-tile::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(3, 5, 8, 0.18);
}

.wall-tile img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.82) contrast(1.08);
}

.wall-tile-1 { --tile-image: url("assets/games/gym-climbing.png"); grid-area: 1 / 1; }
.wall-tile-2 { --tile-image: url("assets/games/blind-tag.png"); grid-area: 1 / 2; }
.wall-tile-3 { --tile-image: url("assets/games/grow-dragons.png"); grid-area: 1 / 3; }
.wall-tile-4 { --tile-image: url("assets/games/free-ugc.png"); grid-area: 2 / 1; }
.wall-tile-5 { --tile-image: url("assets/games/anime-auras.png"); grid-area: 2 / 2; }
.wall-tile-6 { --tile-image: url("assets/games/build-your-drill.png"); grid-area: 2 / 3; }
.wall-tile-7 { --tile-image: url("assets/games/mage-incremental.png"); grid-area: 3 / 1 / 4 / 3; }
.wall-tile-8 { --tile-image: url("assets/games/luckyworld.png"); grid-area: 3 / 3; }

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(64px, 9vw, 160px);
  width: clamp(190px, 19vw, 320px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.48));
  transform: translateY(-58%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - var(--header-height) - 118px);
  width: min(48%, 700px);
  padding: clamp(34px, 5vh, 72px) var(--page-pad);
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(58px, 6.8vw, 102px);
  font-weight: 650;
  font-stretch: 108%;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 490px;
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: #bec1c7;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
}

.primary-action {
  align-self: flex-start;
  margin-top: clamp(22px, 3vh, 34px);
  padding: 15px 22px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.live-module {
  width: min(100%, 420px);
  margin-top: clamp(24px, 4vh, 44px);
  padding: 18px 20px 16px;
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.live-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(36, 107, 253, 0.12);
}

.live-module.is-stale .live-dot {
  background: #737782;
  box-shadow: none;
}

.live-module dl,
.proof-baseline {
  margin: 0;
}

.live-module dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.live-module dl > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.live-module dt,
.proof-baseline dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.live-module dd {
  min-height: 34px;
  margin: 5px 0 0;
  font-size: clamp(24px, 2.1vw, 34px);
  font-variant-numeric: tabular-nums;
  font-weight: 570;
  letter-spacing: -0.03em;
}

.proof-baseline {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 118px;
  padding: 0 var(--page-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 11, 0.96);
}

.proof-baseline > div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 6px;
}

.proof-baseline > div + div {
  padding-left: clamp(24px, 4vw, 64px);
  border-left: 1px solid var(--line);
}

.proof-baseline dd {
  margin: 0;
  font-size: clamp(27px, 2.8vw, 43px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.games-section,
.studio-section,
.careers-section,
.contact-section,
footer {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.games-section {
  padding-top: clamp(96px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.section-intro {
  max-width: 740px;
}

.section-intro h2,
.studio-copy h2,
.careers-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 560;
  font-stretch: 108%;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro p,
.studio-copy > p,
.careers-heading p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.section-intro .games-disclaimer {
  max-width: 560px;
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
}

.games-carousel {
  position: relative;
  margin-top: clamp(54px, 7vw, 92px);
}

.carousel-stage {
  position: relative;
  height: clamp(390px, 43vw, 620px);
  margin-inline: calc(var(--page-pad) * -1);
  overflow: hidden;
}

.game-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(61vw, 820px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050608;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 620ms var(--ease-out), opacity 360ms ease, filter 420ms ease;
}

.game-panel.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.game-panel.is-prev,
.game-panel.is-next {
  z-index: 1;
  opacity: 0.34;
  filter: blur(3px) saturate(0.62) brightness(0.72);
}

.game-panel.is-prev {
  transform: translate(-130%, -50%) scale(0.78);
}

.game-panel.is-next {
  transform: translate(30%, -50%) scale(0.78);
}

.game-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.panel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.04) 62%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.panel-copy {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 280ms 90ms ease, transform 400ms 90ms var(--ease-out);
}

.game-panel.is-active .panel-shade,
.game-panel.is-active .panel-copy {
  opacity: 1;
}

.game-panel.is-active .panel-copy {
  transform: translateY(0);
}

.panel-copy strong {
  max-width: 510px;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.025em;
}

.panel-copy > span {
  flex: none;
  color: #c7cad0;
  font-size: 13px;
}

.panel-copy b {
  color: var(--ink);
  font-weight: 650;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.carousel-button {
  display: grid;
  width: 52px;
  height: 52px;
  flex: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-raised);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  border-color: #4b4f58;
  background: #181b20;
}

.carousel-button:active {
  transform: scale(0.96);
}

.carousel-arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.carousel-arrow-left {
  transform: translateX(2px) rotate(-135deg);
}

.carousel-arrow-right {
  transform: translateX(-2px) rotate(45deg);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-raised);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  flex: none;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #555a64;
  cursor: pointer;
  transition: width 280ms var(--ease-out), background 180ms ease;
}

.carousel-dot[aria-current="true"] {
  width: 22px;
  background: var(--accent);
}

.game-panel {
  will-change: transform, opacity;
}

.games-carousel.is-moving-next .game-panel.is-active {
  animation: carousel-enter-next 720ms var(--ease-out) both;
}

.games-carousel.is-moving-next .game-panel.is-prev {
  animation: carousel-exit-next 720ms var(--ease-out) both;
}

.games-carousel.is-moving-prev .game-panel.is-active {
  animation: carousel-enter-prev 720ms var(--ease-out) both;
}

.games-carousel.is-moving-prev .game-panel.is-next {
  animation: carousel-exit-prev 720ms var(--ease-out) both;
}

@keyframes carousel-enter-next {
  from { opacity: 0.2; transform: translate(30%, -50%) scale(0.78); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes carousel-exit-next {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0.34; transform: translate(-130%, -50%) scale(0.78); }
}

@keyframes carousel-enter-prev {
  from { opacity: 0.2; transform: translate(-130%, -50%) scale(0.78); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes carousel-exit-prev {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0.34; transform: translate(30%, -50%) scale(0.78); }
}

@keyframes carousel-reduced-in {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: center;
  padding-top: clamp(96px, 12vw, 180px);
  padding-bottom: clamp(96px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.studio-copy {
  padding-left: clamp(0px, 3vw, 48px);
}

.studio-links {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}

.studio-links a,
.role-detail a {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 680;
}

.studio-visual {
  position: relative;
  min-height: clamp(500px, 55vw, 760px);
  overflow: hidden;
  border-radius: var(--radius);
}

.studio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.86) 0%, transparent 58%);
}

.studio-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.studio-visual blockquote {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 58px);
  left: clamp(24px, 4vw, 58px);
  margin: 0;
}

.studio-visual blockquote p {
  max-width: 710px;
  margin: 0;
  font-size: clamp(25px, 3.6vw, 52px);
  font-weight: 520;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.careers-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(54px, 9vw, 150px);
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.careers-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.role-list {
  border-top: 1px solid var(--line);
}

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

.role-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
}

.role-list summary::-webkit-details-marker {
  display: none;
}

.role-list summary span {
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 550;
  letter-spacing: -0.02em;
}

.role-list summary small {
  color: var(--muted);
  font-size: 13px;
}

.role-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 0 28px;
  color: var(--muted);
}

.role-detail p {
  margin: 0;
  line-height: 1.5;
}

.role-detail a {
  flex: none;
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(120px, 14vw, 210px);
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 84px);
}

.contact-copy > img {
  width: 82px;
  height: 82px;
  margin-bottom: 34px;
  object-fit: contain;
}

.contact-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.contact-copy > p:not(.contact-kicker) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
}

.contact-talent {
  display: inline-block;
  margin-top: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 680;
}

.contact-form {
  border-top: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 10px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 630;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.contact-row label {
  border-bottom: 0;
}

.contact-row label + label {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select:invalid {
  color: #737782;
}

.contact-form option {
  background: var(--bg-raised);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 0;
  box-shadow: 0 2px 0 var(--accent);
}

.contact-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.contact-submit {
  align-self: auto;
  margin-top: 0;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact-status.is-error {
  color: #ff9c9c;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-top: 64px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
}

footer > p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.copyright {
  align-self: end;
}

@keyframes wall-arrive {
  from { opacity: 0.55; transform: scale(1.09) translateX(28px); filter: blur(8px); }
  to { opacity: 1; transform: scale(1.035) translateX(0); filter: blur(0); }
}

@media (max-width: 1024px) {
  :root { --header-height: 68px; }

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

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 240ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 90px var(--page-pad) 50px;
    background: var(--bg);
  }

  .mobile-nav[hidden] { display: none; }

  .mobile-nav a {
    padding: 10px 0;
    font-size: clamp(38px, 9vw, 64px);
    font-weight: 560;
    letter-spacing: -0.035em;
  }

  .game-wall { left: 0; }

  .hero-logo {
    right: 5vw;
    width: clamp(150px, 20vw, 210px);
  }

  .hero-content {
    width: 58%;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 84px);
  }

  .carousel-stage {
    height: clamp(340px, 55vw, 510px);
  }

  .game-panel {
    width: min(72vw, 680px);
  }

  .studio-section,
  .careers-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 64px;
  }

  .studio-copy {
    padding-left: 0;
  }

  .studio-visual {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .game-wall {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: calc(100dvh - var(--header-height));
    transform: none;
    animation: wall-arrive 1.1s var(--ease-out) both;
  }

  .wall-tile-1,
  .wall-tile-2,
  .wall-tile-3,
  .wall-tile-4,
  .wall-tile-5,
  .wall-tile-6,
  .wall-tile-7,
  .wall-tile-8 {
    grid-area: auto;
  }

  .hero::before {
    inset: 0;
    background: rgba(8, 9, 11, 0.5);
  }

  .hero-logo {
    top: 22px;
    right: auto;
    left: 50%;
    width: clamp(86px, 23vw, 112px);
    opacity: 0.94;
    transform: translateX(-50%);
  }

  .hero-content {
    width: 100%;
    min-height: calc(100dvh - var(--header-height));
    justify-content: flex-end;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.94;
  }

  .hero-content > p {
    max-width: 440px;
    margin-top: 16px;
  }

  .hero .primary-action { margin-top: 18px; }

  .live-module {
    width: 100%;
    margin-top: 20px;
    padding: 14px 16px 13px;
    background: rgba(8, 9, 11, 0.88);
    box-shadow: none;
  }

  .live-heading { margin-bottom: 10px; }

  .live-module dd { font-size: 24px; }

  .proof-baseline {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 0 var(--page-pad);
  }

  .proof-baseline > div {
    min-height: 104px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .proof-baseline > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-baseline dt {
    max-width: 140px;
  }

  .section-intro h2,
  .studio-copy h2,
  .careers-heading h2,
  .contact-section h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .games-carousel {
    margin-top: 42px;
  }

  .carousel-stage {
    height: clamp(240px, 66vw, 320px);
    margin-inline: calc(var(--page-pad) * -1);
  }

  .game-panel {
    width: calc(100% - 44px);
  }

  .game-panel.is-prev {
    transform: translate(-117%, -50%) scale(0.78);
  }

  .game-panel.is-next {
    transform: translate(17%, -50%) scale(0.78);
  }

  .panel-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .panel-copy strong {
    font-size: clamp(21px, 7vw, 27px);
  }

  .carousel-controls {
    gap: 10px;
    margin-top: 14px;
  }

  .carousel-button {
    width: 48px;
    height: 48px;
  }

  .carousel-dots {
    gap: 6px;
    padding-inline: 10px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot[aria-current="true"] {
    width: 18px;
  }

  .studio-section,
  .careers-section {
    gap: 58px;
  }

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

  .studio-links {
    flex-wrap: wrap;
  }

  .role-list summary {
    min-height: 80px;
  }

  .role-detail {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .contact-section {
    gap: 52px;
  }

  .contact-copy > img {
    margin-bottom: 24px;
  }

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

  .contact-row label:first-child {
    border-bottom: 1px solid var(--line);
  }

  .contact-row label + label {
    padding-left: 0;
    border-left: 0;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
  }

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

  footer > p {
    justify-self: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@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;
  }

  .games-carousel .game-panel {
    transition-duration: 180ms !important;
  }

  .games-carousel.is-moving-next .game-panel.is-active,
  .games-carousel.is-moving-prev .game-panel.is-active {
    animation: carousel-reduced-in 180ms ease both !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .live-module {
    backdrop-filter: none;
    background: var(--bg);
  }
}
