:root {
  --bg: #f6f4f0;
  --paper: #ffffff;
  --paper-soft: #fbfaf8;
  --ink: #2d313d;
  --muted: #68707d;
  --line: rgba(45, 49, 61, 0.14);
  --accent: #f3b23d;
  --accent-strong: #9f6d13;
  --blue-soft: #eaf3f7;
  --violet-soft: #f3edf7;
  --dark: #252934;
  --radius: 8px;
  --shadow: 0 18px 52px rgba(35, 39, 50, 0.12);
  --container: 1160px;
  --heading-weight: 850;
  --label-weight: 850;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.022;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, #000 0 1px, transparent 1px);
  background-size: 18px 18px, 23px 23px;
  mix-blend-mode: multiply;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

section,
article {
  scroll-margin-top: 84px;
}

.page-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(45, 49, 61, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line), 0 18px 42px rgba(35, 39, 50, 0.06);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(45, 49, 61, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  text-decoration: none;
}

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

.mobile-contact-link {
  display: none;
  align-items: center;
  color: rgba(45, 49, 61, 0.76);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.mobile-contact-link:hover {
  color: var(--ink);
}

.section,
.case-study {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
}

.section + .section::before,
.section + .case-study::before,
.case-study + .case-study::before,
.case-study + .section::before {
  position: absolute;
  inset: -1px 0 auto;
  z-index: 0;
  height: clamp(44px, 6vw, 84px);
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    radial-gradient(ellipse at 50% 0%, rgba(45, 49, 61, 0.06), transparent 62%);
  mix-blend-mode: soft-light;
}

.section > .page-container,
.case-study > .page-container {
  position: relative;
  z-index: 1;
}

body.has-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  body.has-reveal .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 72px;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
}

.section-hero::before,
.section-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-hero::before {
  background: url("./assets/00_identity_profile/hero_ready_background_v2.jpg") center center / cover no-repeat;
  filter: none;
  opacity: 1;
}

.section-hero::after {
  inset: 84px 0 0;
  background: url("./assets/00_identity_profile/hero_logo_large.png") 88% 36% / min(527px, 29vw) auto no-repeat;
  filter: drop-shadow(0 18px 42px rgba(255, 255, 255, 0.1));
  opacity: 0.94;
}

.section-hero .page-container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.section-hero .eyebrow {
  color: var(--muted);
}

.section-hero h1 {
  color: var(--ink);
}

.section-hero h1 span {
  color: rgba(45, 49, 61, 0.72);
}

.section-hero .hero-subtitle {
  color: #3e4450;
}

.section-hero .hero-description {
  color: var(--muted);
}

.section-hero .button-primary {
  color: var(--paper);
  background: var(--ink);
}

.section-hero .button-secondary {
  border-color: rgba(45, 49, 61, 0.18);
  color: rgba(45, 49, 61, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(45, 49, 61, 0.07);
}

.eyebrow,
.case-index,
.case-categories {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7.6vw, 92px);
  font-weight: var(--heading-weight);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: rgba(45, 49, 61, 0.72);
  font-size: 0.48em;
  line-height: 1.18;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: var(--heading-weight);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: var(--heading-weight);
  line-height: 1.08;
}

.hero-subtitle {
  width: min(740px, 100%);
  margin-bottom: 16px;
  color: #3e4450;
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.24;
}

.hero-description {
  width: min(760px, 100%);
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 34px rgba(35, 39, 50, 0.1);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  backdrop-filter: blur(16px) saturate(1.16);
}

.button::before {
  position: absolute;
  inset: 1px 12px auto;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  content: "";
  pointer-events: none;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(35, 39, 50, 0.14);
}

.button-primary,
.button-secondary {
  isolation: isolate;
}

.button-primary {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 46%),
    linear-gradient(180deg, #343947 0%, var(--ink) 64%, #171a20 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -18px 30px rgba(0, 0, 0, 0.18),
    0 16px 38px rgba(35, 39, 50, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: rgba(45, 49, 61, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.88), transparent 42%);
}

.section-hero .button-secondary {
  border-color: rgba(45, 49, 61, 0.18);
  color: rgba(45, 49, 61, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(45, 49, 61, 0.07);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(45, 49, 61, 0.78);
  list-style: none;
}

.tag-row li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-transform: none;
}

.tag-row li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.5;
}

.profile-section,
.skills-section,
.practice-section {
  background: var(--paper);
}

@media (min-width: 1680px) {
  :root {
    --container: 1360px;
  }

  .section-hero .page-container {
    width: min(100% - clamp(120px, 8vw, 220px), 1920px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  }

  .hero-copy {
    max-width: 840px;
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: start;
}

.profile-section {
  padding: clamp(44px, 5vw, 68px) 0;
}

.profile-media {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding-top: 8px;
}

.profile-media img {
  width: min(238px, 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-media p {
  margin: 0;
  color: rgba(45, 49, 61, 0.64);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.profile-copy h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(29px, 3.9vw, 48px);
}

.profile-copy h2 span {
  display: block;
}

.copy-block {
  display: grid;
  gap: 10px;
  max-width: 800px;
}

.profile-copy .copy-block p {
  font-size: 17px;
  line-height: 1.5;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 18px;
  max-width: 800px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 49, 61, 0.12);
}

.profile-meta div {
  min-width: 0;
  padding-right: 14px;
  border-right: 1px solid rgba(45, 49, 61, 0.1);
}

.profile-meta div:last-child {
  border-right: 0;
  padding-right: 0;
}

.profile-meta dt,
.profile-meta dd {
  margin: 0;
}

.profile-meta dt {
  color: #252934;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.profile-meta dd {
  margin-top: 5px;
  color: rgba(104, 112, 125, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.copy-block p,
.section-heading p,
.case-summary,
.visual-copy p,
.outcome-card p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.skills-section {
  padding: clamp(58px, 7vw, 96px) 0;
}

.skills-section .section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.skills-section .section-heading h2 {
  font-size: clamp(30px, 4.1vw, 52px);
}

.skills-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
}

.section-heading.narrow {
  max-width: 760px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skill-card,
.info-card,
.outcome-card,
.tools-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.skill-card,
.info-card,
.outcome-card {
  padding: clamp(22px, 3vw, 32px);
}

.skills-section .skill-card {
  padding: clamp(18px, 2.2vw, 24px);
}

.skill-index {
  margin: 0 0 10px;
  color: rgba(45, 49, 61, 0.42);
  font-size: 12px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
}

.skills-section .skill-card h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 28px);
}

.skill-card ul,
.info-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.skills-section .skill-card ul {
  gap: 7px;
  font-size: 15px;
  line-height: 1.45;
}

.tools-panel {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding: 20px;
}

.tools-panel h3 {
  margin-bottom: 0;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tools-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(45, 49, 61, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.tools-list img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
}

.tools-list span {
  min-width: 0;
}

.cases-intro {
  padding: clamp(54px, 7vw, 86px) 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 8%, rgba(243, 178, 61, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(33, 36, 46, 0.98), rgba(22, 24, 31, 0.96));
}

.cases-intro .eyebrow {
  color: rgba(255, 255, 255, 0.54);
}

.cases-intro h2 {
  max-width: 620px;
}

.cases-intro-heading {
  max-width: 720px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.case-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.case-nav-grid a {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.case-nav-grid a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.case-nav-grid h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.08;
}

.case-nav-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.case-study {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.case-switcher {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.92), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -16px 28px rgba(255, 255, 255, 0.28),
    0 18px 52px rgba(35, 39, 50, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
  -webkit-backdrop-filter: blur(22px) saturate(1.26);
  backdrop-filter: blur(22px) saturate(1.26);
}

.case-switcher::before {
  position: absolute;
  inset: 2px 10px auto;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.14));
  content: "";
  pointer-events: none;
}

.case-switcher.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.case-switcher a {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  color: rgba(45, 49, 61, 0.52);
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.case-switcher a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.case-switcher a.is-active {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 22px rgba(35, 39, 50, 0.1);
}

.case-switcher span {
  font-size: 12px;
  font-weight: var(--label-weight);
  line-height: 1;
}

.scroll-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 41;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.92), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -16px 28px rgba(255, 255, 255, 0.28),
    0 18px 52px rgba(35, 39, 50, 0.16);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
  -webkit-backdrop-filter: blur(22px) saturate(1.26);
  backdrop-filter: blur(22px) saturate(1.26);
}

.scroll-top-button::before {
  position: absolute;
  inset: 4px 10px auto;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12));
  content: "";
  pointer-events: none;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.96), transparent 46%);
  transform: translateY(-1px);
}

.scroll-top-button span {
  position: relative;
  z-index: 1;
  opacity: 0.56;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-1px);
}

.case-game {
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 12%, rgba(107, 201, 244, 0.2), transparent 32%),
    linear-gradient(180deg, #f6fbfd 0%, #eaf5fa 44%, #eef7fb 100%);
}

.case-liveops {
  background:
    radial-gradient(circle at 83% 12%, rgba(154, 111, 255, 0.2), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(255, 214, 83, 0.13), transparent 30%),
    linear-gradient(180deg, #fbf8ff 0%, #f3edfb 48%, #f8f2ff 100%);
}

.case-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 18%, rgba(142, 132, 184, 0.14), transparent 30%),
    linear-gradient(180deg, #171920 0%, #12141a 100%);
}

.case-history {
  background:
    radial-gradient(circle at 85% 18%, rgba(191, 127, 64, 0.18), transparent 32%),
    linear-gradient(180deg, #f7efe4 0%, #efe2d0 100%);
}

.case-cover {
  position: relative;
  min-height: clamp(520px, 70vw, 720px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.04fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  overflow: hidden;
  margin-bottom: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(45, 49, 61, 0.1);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 90px rgba(35, 39, 50, 0.12);
}

.case-cover::before,
.case-cover::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.case-cover::before {
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.25)),
    url("./assets/00_identity_profile/abstract_background_light_01.png") center / cover no-repeat;
}

.case-cover::after {
  inset: 0;
  background: radial-gradient(circle at 72% 48%, transparent 0 34%, rgba(255, 255, 255, 0.45) 72%);
}

.case-cover > div:first-child,
.case-cover > .case-summary {
  position: relative;
  z-index: 2;
}

.case-cover > div:first-child {
  max-width: 610px;
}

.case-cover .case-summary {
  align-self: end;
  max-width: 570px;
}

.cover-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cover-art img {
  position: absolute;
  user-select: none;
  filter: drop-shadow(0 26px 42px rgba(35, 39, 50, 0.2));
}

.game-cover {
  grid-template-rows: auto auto;
  row-gap: 24px;
  align-content: center;
  text-align: left;
  min-height: clamp(660px, 56vw, 820px);
  margin-bottom: clamp(8px, 2vw, 28px);
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 4vw, 54px) 0 clamp(8px, 2vw, 22px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.game-cover > div:first-child {
  grid-column: 1;
  align-self: end;
  max-width: 620px;
}

.game-cover > .case-summary {
  grid-column: 1;
  position: relative;
  z-index: 2;
}

.game-cover .case-summary {
  max-width: 560px;
  align-self: start;
  margin: 0;
  font-size: 18px;
}

.game-cover::before {
  display: none;
}

.game-cover::after {
  background: none;
}

.case-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(45, 49, 61, 0.11);
  border-radius: 999px;
  color: rgba(45, 49, 61, 0.74);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(35, 39, 50, 0.05);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.game-cover-mockup {
  left: min(70vw, 930px);
  right: auto;
  top: clamp(325px, 31vw, 445px);
  width: min(83vw, 1140px);
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 46px 76px rgba(35, 39, 50, 0.16));
}

.liveops-cover {
  grid-template-rows: auto auto;
  row-gap: 24px;
  align-content: center;
  min-height: clamp(660px, 56vw, 820px);
  margin-bottom: clamp(8px, 2vw, 28px);
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 4vw, 54px) 0 clamp(8px, 2vw, 22px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.liveops-cover::before {
  display: none;
}

.liveops-cover::after {
  background: none;
}

.liveops-cover > div:first-child {
  grid-column: 1;
  align-self: end;
  max-width: 620px;
}

.liveops-cover > .case-summary {
  grid-column: 1;
  position: relative;
  z-index: 2;
}

.liveops-cover .case-summary {
  max-width: 560px;
  align-self: start;
  margin: 0;
  font-size: 18px;
}

.liveops-cover h2 span {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  color: rgba(45, 49, 61, 0.58);
  font-size: 0.38em;
  font-weight: 760;
  line-height: 1.18;
}

.liveops-highlights li {
  border-color: rgba(126, 109, 232, 0.18);
  color: rgba(72, 57, 126, 0.76);
  background: rgba(255, 255, 255, 0.62);
}

.liveops-cover-art {
  overflow: visible;
}

.liveops-rays {
  position: absolute;
  left: min(72vw, 930px);
  top: clamp(330px, 30vw, 430px);
  z-index: 0;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.48;
  background:
    repeating-conic-gradient(
      from -8deg,
      rgba(255, 208, 53, 0.36) 0deg 4deg,
      transparent 4deg 16deg
    ),
    radial-gradient(circle, rgba(255, 231, 108, 0.36) 0 18%, rgba(255, 198, 42, 0.16) 32%, transparent 68%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  mask-image: radial-gradient(circle, #000 0 62%, transparent 80%);
}

.liveops-cover-mockup {
  left: min(72vw, 930px);
  right: auto;
  top: clamp(330px, 30vw, 430px);
  z-index: 1;
  width: min(39vw, 590px);
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 46px 76px rgba(65, 38, 111, 0.17));
}

.live-phone {
  width: min(17vw, 205px);
}

.live-phone.main {
  right: 17%;
  top: 15%;
  width: min(24vw, 290px);
}

.live-phone.side-a {
  right: 40%;
  bottom: 8%;
  transform: rotate(-7deg);
}

.live-phone.side-b {
  right: 2%;
  bottom: 10%;
  transform: rotate(7deg);
}

.live-float.frame {
  right: 2%;
  top: 7%;
  width: min(18vw, 210px);
}

.live-float.coin {
  right: 47%;
  top: 15%;
  width: 64px;
}

.live-float.heart {
  right: 8%;
  top: 43%;
  width: 54px;
}

.live-float.gift {
  right: 50%;
  bottom: 11%;
  width: 92px;
}

.cinematic-cover {
  grid-template-rows: auto auto;
  row-gap: 22px;
  align-content: start;
  min-height: clamp(560px, 50vw, 680px);
  margin-bottom: clamp(8px, 2vw, 28px);
  padding-top: clamp(24px, 3vw, 42px);
  border-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: transparent;
  background:
    radial-gradient(circle at 78% 44%, rgba(134, 118, 173, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(18, 20, 26, 0.98), rgba(30, 31, 39, 0.92));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.cinematic-cover::before {
  opacity: 1;
  background:
    linear-gradient(105deg, rgba(16, 18, 24, 0.98) 0%, rgba(16, 18, 24, 0.82) 45%, rgba(16, 18, 24, 0.42) 100%),
    url("./assets/00_identity_profile/abstract_background_dark.png") center / cover no-repeat;
}

.cinematic-cover::after {
  background:
    radial-gradient(circle at 76% 44%, transparent 0 22%, rgba(0, 0, 0, 0.18) 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 46%);
}

.cinematic-cover > div:first-child {
  grid-column: 1;
  align-self: end;
  max-width: 660px;
}

.cinematic-cover > .case-summary {
  grid-column: 1;
  align-self: start;
  max-width: 620px;
  margin: 0;
  font-size: 18px;
}

.cinematic-bg-scene {
  right: 0;
  top: 10%;
  width: min(62vw, 760px);
  opacity: 0.46;
  filter: grayscale(0.45) contrast(1.1);
}

.cinematic-creature {
  right: 22%;
  bottom: 8%;
  width: min(42vw, 520px);
  opacity: 0.55;
  transform: rotate(-2deg);
}

.cinematic-character-cover {
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  width: min(39vw, 520px);
  max-width: none;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.58));
}

.cinematic-highlights li {
  border-color: rgba(203, 195, 235, 0.16);
  color: rgba(236, 232, 249, 0.78);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.cinematic-scope-strip {
  margin-top: clamp(24px, 3vw, 38px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  overflow: visible;
  isolation: isolate;
}

.cinematic-scope-strip::before {
  position: absolute;
  inset: calc(-1 * clamp(24px, 3vw, 38px)) 0 0;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background:
    radial-gradient(circle at 76% 0%, rgba(134, 118, 173, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(18, 20, 26, 0.98), rgba(30, 31, 39, 0.92));
  content: "";
  pointer-events: none;
}

.cinematic-scope-strip div {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
}

.cinematic-scope-strip span {
  color: rgba(255, 255, 255, 0.48);
}

.cinematic-scope-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.cinematic-gallery-section {
  margin-top: clamp(38px, 6vw, 76px);
}

.cinematic-gallery-heading {
  max-width: 780px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.cinematic-gallery-heading p:first-child {
  margin-bottom: 10px;
  color: rgba(220, 215, 235, 0.58);
  font-size: 15px;
}

.cinematic-gallery-heading h3 {
  color: rgba(255, 255, 255, 0.92);
}

.cinematic-gallery-heading p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.55;
}

.cinematic-gallery {
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 8%, rgba(173, 162, 210, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(24, 26, 32, 0.98), rgba(12, 13, 17, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.cinematic-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #0b0c10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 24px 70px rgba(0, 0, 0, 0.32);
}

.cinematic-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 28%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.22));
  content: "";
  pointer-events: none;
}

.cinematic-frame-button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.cinematic-frame-button img {
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: contain;
  background: #0b0c10;
  transform: scale(1);
}

.cinematic-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(18, 20, 26, 0.54);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cinematic-nav:hover {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(42, 44, 54, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.cinematic-prev {
  left: 14px;
}

.cinematic-next {
  right: 14px;
}

.cinematic-counter {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(18, 20, 26, 0.58);
  font-size: 12px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
}

.cinematic-thumbnails {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.cinematic-thumbnails button {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  opacity: 0.58;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.cinematic-thumbnails button:hover,
.cinematic-thumbnails button.is-active {
  border-color: rgba(218, 210, 247, 0.56);
  box-shadow: 0 0 0 1px rgba(218, 210, 247, 0.14), 0 12px 28px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.cinematic-thumbnails button:hover {
  transform: translateY(-1px);
}

.cinematic-thumbnails img {
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
  cursor: pointer;
}

.cinematic-video-block {
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 12%, rgba(173, 162, 210, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(24, 26, 32, 0.98), rgba(12, 13, 17, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.cinematic-video-block h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 760;
  line-height: 1.15;
}

.cinematic-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #0b0c10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cinematic-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.history-cover {
  background:
    radial-gradient(circle at 78% 22%, rgba(230, 148, 73, 0.22), transparent 34%),
    linear-gradient(130deg, #fbf3e9 0%, #ead8bd 100%);
}

.history-cover::before {
  background:
    linear-gradient(105deg, rgba(255, 249, 239, 0.95) 0%, rgba(255, 249, 239, 0.48) 50%, rgba(255, 249, 239, 0.12) 100%),
    url("./assets/00_identity_profile/abstract_background_light_02.png") center / cover no-repeat;
}

.history-landscape {
  right: 0;
  bottom: 0;
  width: min(58vw, 760px);
  opacity: 0.64;
}

.history-rider-cover {
  right: 21%;
  bottom: 5%;
  width: min(34vw, 420px);
}

.history-scene {
  width: min(23vw, 280px);
  border-radius: var(--radius);
  opacity: 0.82;
}

.history-scene.scene-a {
  right: 46%;
  top: 10%;
  transform: rotate(-4deg);
}

.history-scene.scene-b {
  right: 4%;
  top: 13%;
  transform: rotate(5deg);
}

.historical-cover {
  min-height: clamp(560px, 70vw, 720px);
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  row-gap: 18px;
  margin-bottom: 0;
  padding-top: clamp(24px, 3vw, 42px);
  border-bottom-color: transparent;
  color: #332a24;
  background:
    radial-gradient(circle at 80% 16%, rgba(214, 145, 92, 0.26), transparent 34%),
    radial-gradient(circle at 34% 92%, rgba(148, 92, 54, 0.12), transparent 32%),
    linear-gradient(135deg, #fff5eb 0%, #edd9c6 100%);
}

.historical-cover::before {
  opacity: 0.64;
  background:
    linear-gradient(105deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 246, 234, 0.72) 45%, rgba(255, 235, 216, 0.18) 100%),
    url("./assets/00_identity_profile/abstract_background_light_02.png") center / cover no-repeat;
}

.historical-cover::after {
  background:
    radial-gradient(circle at 72% 54%, rgba(170, 92, 47, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(255, 250, 243, 0.08), rgba(255, 255, 255, 0.34) 46%, rgba(255, 245, 232, 0.02));
}

.historical-cover .case-categories {
  color: rgba(113, 75, 45, 0.72);
}

.historical-cover .case-summary {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 620px;
  color: rgba(69, 53, 42, 0.72);
}

.historical-highlights li {
  border-color: rgba(113, 75, 45, 0.14);
  color: rgba(76, 55, 41, 0.74);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 24px rgba(113, 75, 45, 0.06);
}

.historical-cover-art {
  right: -4%;
  bottom: 0;
  z-index: 1;
  width: min(34vw, 520px);
  opacity: 1;
  transform: none;
}

.historical-rider-cover {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 34px 58px rgba(91, 52, 32, 0.18));
}

.case-scope-strip.historical-scope-strip {
  margin-top: 0;
  border-color: rgba(113, 75, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(113, 75, 45, 0.08);
  box-shadow: 0 28px 80px rgba(113, 75, 45, 0.1);
  overflow: visible;
  isolation: isolate;
}

.case-scope-strip.historical-scope-strip::before {
  display: none;
}

.case-scope-strip.historical-scope-strip div {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 249, 0.9);
}

.case-scope-strip.historical-scope-strip div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.case-scope-strip.historical-scope-strip div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.case-scope-strip.historical-scope-strip span {
  color: rgba(113, 75, 45, 0.54);
}

.case-scope-strip.historical-scope-strip p {
  color: rgba(61, 47, 39, 0.82);
}

.historical-gallery-section {
  color: #3d2f27;
}

.historical-gallery-heading p:first-child {
  color: rgba(113, 75, 45, 0.58);
}

.historical-gallery-heading h3 {
  color: #332a24;
}

.historical-gallery-heading p:last-child {
  color: rgba(91, 70, 56, 0.72);
}

.historical-gallery,
.historical-video-block {
  border-color: rgba(113, 75, 45, 0.13);
  background:
    radial-gradient(circle at 74% 10%, rgba(216, 148, 96, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 249, 240, 0.94), rgba(239, 218, 199, 0.86));
  box-shadow: 0 32px 88px rgba(113, 75, 45, 0.14);
}

.historical-stage,
.historical-video-frame {
  border-color: rgba(113, 75, 45, 0.14);
  background: #ead7c4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 22px 64px rgba(113, 75, 45, 0.14);
}

.historical-stage::after {
  background:
    linear-gradient(180deg, rgba(74, 49, 34, 0.04), transparent 30%, rgba(74, 49, 34, 0.1)),
    radial-gradient(circle at 50% 50%, transparent 62%, rgba(99, 62, 39, 0.12));
}

.historical-stage .cinematic-frame-button img {
  background: #ead7c4;
}

.historical-gallery .cinematic-nav {
  border-color: rgba(113, 75, 45, 0.14);
  color: rgba(61, 47, 39, 0.7);
  background: rgba(255, 249, 241, 0.64);
  box-shadow: 0 12px 36px rgba(113, 75, 45, 0.12);
}

.historical-gallery .cinematic-nav:hover {
  color: rgba(61, 47, 39, 0.9);
  background: rgba(255, 250, 245, 0.82);
}

.historical-gallery .cinematic-counter {
  border-color: rgba(113, 75, 45, 0.14);
  color: rgba(61, 47, 39, 0.66);
  background: rgba(255, 249, 241, 0.7);
}

.historical-thumbnails button {
  border-color: rgba(113, 75, 45, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.historical-thumbnails {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.historical-thumbnails button:hover,
.historical-thumbnails button.is-active {
  border-color: rgba(159, 94, 55, 0.5);
  box-shadow: 0 0 0 1px rgba(159, 94, 55, 0.12), 0 12px 28px rgba(113, 75, 45, 0.14);
}

.historical-video-block h3 {
  color: #332a24;
}

.historical-outcome {
  border-color: rgba(113, 75, 45, 0.13);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 148, 96, 0.13), transparent 30%),
    rgba(255, 249, 241, 0.82);
  box-shadow: 0 26px 70px rgba(113, 75, 45, 0.1);
}

.historical-outcome span {
  color: rgba(113, 75, 45, 0.54);
}

.historical-outcome p {
  color: rgba(61, 47, 39, 0.82);
}

.case-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 28px;
}

.case-header h2 {
  margin-bottom: 12px;
}

.case-categories {
  color: #7e6de8;
}

.case-dark .case-index,
.case-dark .case-summary {
  color: rgba(255, 255, 255, 0.68);
}

.case-dark .case-categories {
  color: #c1b9ff;
}

.case-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.case-scope-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  width: 100%;
  margin: -126px 0 clamp(34px, 5vw, 60px);
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  background: rgba(45, 49, 61, 0.08);
  box-shadow: 0 22px 60px rgba(35, 39, 50, 0.08);
  text-align: left;
}

.case-scope-strip div {
  min-height: 126px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.case-scope-strip span,
.game-story .story-copy span,
.game-outcome span {
  display: block;
  margin-bottom: 12px;
  color: rgba(45, 49, 61, 0.48);
  font-size: 12px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-scope-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.game-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  margin-top: clamp(36px, 7vw, 86px);
}

.game-story .story-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.game-story .story-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 0.98;
}

.game-story .story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.mini-games-showcase {
  display: block;
  width: 100%;
  margin-top: clamp(36px, 6vw, 76px);
}

.mini-games-showcase .story-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.mini-games-showcase .story-copy h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.mini-games-showcase .story-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-game-categories {
  margin: 0 0 18px !important;
  color: rgba(83, 101, 126, 0.78) !important;
  font-size: clamp(18px, 1.9vw, 24px) !important;
  line-height: 1.2;
}

.mini-game-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 38px);
  background:
    radial-gradient(circle at 78% 18%, rgba(115, 204, 246, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 253, 0.86));
  box-shadow: 0 24px 70px rgba(35, 39, 50, 0.09);
}

.mini-game-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent);
}

.mini-game-scroll-hint {
  display: none;
}

.mini-game-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px) clamp(16px, 2.6vw, 34px);
  align-items: center;
  justify-items: center;
}

.mini-game-grid img {
  width: min(100%, 148px);
  max-width: none;
  height: auto;
  max-height: clamp(220px, 18vw, 292px);
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(35, 39, 50, 0.14));
  transition: transform 180ms ease, filter 180ms ease;
}

.mini-game-grid img:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 22px 28px rgba(35, 39, 50, 0.18));
}

.game-system-showcase {
  margin-top: clamp(48px, 7vw, 88px);
}

.game-system-showcase .story-copy {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.game-system-showcase .story-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-system-showcase .story-copy h3 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.game-system-showcase .story-copy p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.game-system-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3.2vw, 42px);
  align-items: start;
}

.system-final-screen,
.system-piece {
  position: relative;
  margin: 0;
}

.system-final-screen {
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.system-final-glow {
  position: absolute;
  z-index: 0;
  top: -6%;
  left: -42%;
  width: 178%;
  height: 108%;
  border-radius: 999px;
  background:
    repeating-conic-gradient(
      from -18deg at 50% 52%,
      rgba(82, 128, 255, 0.22) 0deg 5deg,
      rgba(82, 128, 255, 0) 5deg 17deg,
      rgba(92, 213, 255, 0.16) 17deg 22deg,
      rgba(92, 213, 255, 0) 22deg 34deg
    ),
    radial-gradient(circle at 50% 52%, rgba(108, 215, 255, 0.32), rgba(108, 215, 255, 0.1) 32%, transparent 64%);
  filter: blur(2px);
  mask-image: radial-gradient(ellipse at center, #000 0 52%, transparent 74%);
  transform: rotate(-7deg);
}

.system-final-screen img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  filter: drop-shadow(0 28px 42px rgba(35, 39, 50, 0.16));
}

.system-final-screen figcaption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(104, 112, 125, 0.48);
  font-size: 20px;
}

.system-column {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

.system-piece figcaption {
  margin-bottom: 9px;
  color: rgba(45, 49, 61, 0.76);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 750;
  line-height: 1.18;
}

.system-piece img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(35, 39, 50, 0.08));
}

.game-system-showcase img {
  cursor: default;
}

.season-pack-showcase {
  margin-top: clamp(48px, 7vw, 88px);
}

.season-pack-showcase .story-copy {
  max-width: 820px;
  margin-bottom: clamp(20px, 2.8vw, 32px);
}

.season-pack-showcase .story-copy h3 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.season-pack-showcase .story-copy p:not(.product-scenarios) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.season-pack-stage {
  position: relative;
}

.season-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.24fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
}

.season-pack-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(92, 76, 153, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 222, 113, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 255, 0.78));
  box-shadow: 0 22px 60px rgba(65, 38, 111, 0.08);
}

.season-pack-panel figcaption {
  order: 2;
  margin: 0;
  padding: 0 20px 14px;
  color: rgba(104, 112, 125, 0.54);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 450;
  line-height: 1.08;
  text-align: center;
}

.season-pack-frames {
  grid-column: 1 / -1;
  padding-top: clamp(18px, 2vw, 24px);
}

.season-frame-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
  padding: 0 clamp(34px, 4.6vw, 68px) clamp(8px, 1.2vw, 14px);
}

.season-frame-row img {
  width: 100%;
  min-width: 0;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(65, 38, 111, 0.1));
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.season-frame-row img:hover {
  transform: scale(1.035);
  filter: drop-shadow(0 20px 28px rgba(65, 38, 111, 0.16));
}

.season-pack-column {
  display: contents;
}

.season-pack-gifts {
  grid-column: 1;
  min-height: 164px;
}

.season-gift-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 26px) clamp(28px, 4vw, 52px) clamp(6px, 0.8vw, 10px);
}

.season-gift-grid img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(65, 38, 111, 0.1));
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.season-gift-grid img:hover {
  transform: scale(1.055);
  filter: drop-shadow(0 18px 26px rgba(65, 38, 111, 0.16));
}

.season-pack-icon {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 164px;
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.6vw, 30px) 0;
}

.season-pack-icon img {
  width: min(100%, 138px);
  margin: auto 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(65, 38, 111, 0.12));
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.season-pack-icon img:hover {
  transform: scale(1.055);
  filter: drop-shadow(0 18px 26px rgba(65, 38, 111, 0.18));
}

.season-pack-scroll-hint {
  display: none;
}

.season-pack-showcase img {
  cursor: zoom-in;
}

.liveops-ui-showcase {
  margin-top: clamp(54px, 8vw, 96px);
}

.liveops-ui-showcase .story-copy {
  max-width: 860px;
  margin-bottom: clamp(22px, 3.4vw, 38px);
}

.liveops-ui-showcase .story-copy h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.liveops-ui-showcase .story-copy p:not(.product-scenarios) {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.liveops-ui-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  border: 1px solid rgba(92, 76, 153, 0.12);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 78% 12%, rgba(154, 111, 255, 0.14), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(255, 222, 113, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 255, 0.84));
  box-shadow: 0 22px 58px rgba(65, 38, 111, 0.08);
}

.liveops-ui-card img {
  width: 100%;
  max-height: 590px;
  object-fit: contain;
  cursor: zoom-in;
  filter: drop-shadow(0 18px 26px rgba(65, 38, 111, 0.12));
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.liveops-ui-card img:hover {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 24px 34px rgba(65, 38, 111, 0.17));
}

.product-monetization-showcase {
  margin-top: clamp(54px, 8vw, 96px);
}

.product-monetization-showcase .story-copy {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.product-monetization-showcase .story-copy h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.product-scenarios {
  margin: 0 0 18px !important;
  color: rgba(83, 101, 126, 0.78) !important;
  font-size: clamp(18px, 1.9vw, 24px) !important;
  line-height: 1.2;
}

.product-monetization-showcase .story-copy p:not(.product-scenarios) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 72% 18%, rgba(116, 204, 246, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.88));
  box-shadow: 0 22px 58px rgba(35, 39, 50, 0.08);
}

.product-card-onboarding {
  grid-column: span 2;
}

.product-card-copy {
  margin-bottom: 10px;
}

.product-card h4 {
  margin: 0 0 6px;
  color: rgba(45, 49, 61, 0.76);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 750;
  line-height: 1.18;
}

.product-card-copy p {
  margin: 0;
  color: rgba(83, 101, 126, 0.76);
  font-size: 15px;
  line-height: 1.35;
}

.product-card-media {
  display: grid;
  align-items: start;
  justify-items: center;
}

.product-card-media-double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.product-card img {
  width: min(100%, 190px);
  max-height: 470px;
  object-fit: contain;
  cursor: zoom-in;
  filter: drop-shadow(0 18px 26px rgba(35, 39, 50, 0.13));
  transition: transform 180ms ease, filter 180ms ease;
}

.product-card-onboarding img {
  width: min(100%, 190px);
  max-height: 470px;
}

.product-card img:hover {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 24px 34px rgba(35, 39, 50, 0.17));
}

.product-mobile-carousel {
  display: none;
}

.app-store-showcase {
  margin-top: clamp(54px, 8vw, 96px);
}

.app-store-showcase .story-copy {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.app-store-showcase .story-copy h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.app-store-showcase .story-copy p:not(.product-scenarios) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.app-store-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  align-items: start;
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 76% 16%, rgba(116, 204, 246, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.88));
  box-shadow: 0 22px 58px rgba(35, 39, 50, 0.08);
}

.app-store-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  cursor: zoom-in;
  filter: drop-shadow(0 18px 26px rgba(35, 39, 50, 0.13));
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-card img:hover {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 24px 34px rgba(35, 39, 50, 0.17));
}

.bonus-paywall-block {
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(45, 49, 61, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(116, 204, 246, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.88));
  box-shadow: 0 22px 58px rgba(35, 39, 50, 0.08);
}

.bonus-paywall-block summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(18px, 2.8vw, 30px);
  cursor: pointer;
  list-style: none;
}

.bonus-paywall-block summary::-webkit-details-marker {
  display: none;
}

.bonus-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--label-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-copy h3 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.04;
}

.bonus-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
}

.bonus-copy strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(45, 49, 61, 0.12);
  border-radius: 999px;
  color: rgba(45, 49, 61, 0.78);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 26px rgba(35, 39, 50, 0.05);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.bonus-paywall-block[open] .bonus-copy strong {
  color: rgba(45, 49, 61, 0.56);
}

.bonus-paywall-block[open] .bonus-copy strong::before {
  content: "Скрыть экраны";
}

.bonus-paywall-block[open] .bonus-copy strong {
  font-size: 0;
}

.bonus-paywall-block[open] .bonus-copy strong::before {
  font-size: 13px;
}

.bonus-preview {
  position: relative;
  min-height: 244px;
  max-height: 270px;
  opacity: 1;
  overflow: visible;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    min-height 240ms ease,
    max-height 240ms ease;
}

.bonus-preview img {
  position: absolute;
  bottom: 0;
  width: auto;
  height: 230px;
  max-width: 42%;
  border-radius: calc(var(--radius) + 4px);
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(35, 39, 50, 0.16);
}

.bonus-preview img:nth-child(1) {
  left: 50%;
  z-index: 3;
  height: 252px;
  max-width: 48%;
  transform: translate(-50%, -10px);
}

.bonus-preview img:nth-child(2) {
  left: 2%;
  z-index: 2;
  height: 220px;
  max-width: 40%;
  transform: translateY(18px) rotate(-6deg);
}

.bonus-preview img:nth-child(3) {
  right: 0;
  z-index: 1;
  height: 220px;
  max-width: 40%;
  transform: translateY(24px) rotate(7deg);
}

.bonus-paywall-block[open] .bonus-preview {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.96);
}

.bonus-paywall-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  padding: 0 clamp(18px, 2.8vw, 30px) clamp(18px, 2.8vw, 30px);
}

.bonus-paywall-gallery figure {
  margin: 0;
}

.bonus-paywall-gallery img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: contain;
  cursor: zoom-in;
  filter: drop-shadow(0 18px 26px rgba(35, 39, 50, 0.13));
  transition: transform 180ms ease, filter 180ms ease;
}

.bonus-paywall-gallery img:hover {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 24px 34px rgba(35, 39, 50, 0.17));
}

.bonus-paywall-gallery figcaption {
  display: none;
}

.gameplay-stage,
.store-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(45, 49, 61, 0.07);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 24%, rgba(106, 204, 241, 0.32), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 252, 0.86));
  box-shadow: var(--shadow);
}

.gameplay-stage::before,
.store-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.62;
  background: url("./assets/00_identity_profile/abstract_background_light_02.png") center / cover no-repeat;
}

.gameplay-stage::after {
  position: absolute;
  right: -18%;
  bottom: -34%;
  width: 64%;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  filter: blur(8px);
}

.watch-card {
  position: absolute;
  z-index: 2;
  width: min(26vw, 310px);
  filter: drop-shadow(0 28px 36px rgba(35, 39, 50, 0.18));
}

.watch-card.main {
  right: 8%;
  top: 13%;
  width: min(34vw, 410px);
  transform: rotate(2deg);
}

.watch-card.tic {
  left: 7%;
  top: 10%;
  width: min(18vw, 210px);
  transform: rotate(-9deg);
}

.watch-card.race {
  left: 18%;
  bottom: 9%;
  width: min(21vw, 250px);
  transform: rotate(7deg);
}

.watch-card.donut {
  right: 33%;
  bottom: 4%;
  width: min(19vw, 230px);
  transform: rotate(-5deg);
}

.game-story-system {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
}

.game-story-system .story-copy {
  order: 2;
}

.game-asset-board {
  min-height: 480px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 18% 22%, rgba(38, 202, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 252, 0.9));
}

.game-asset-board img {
  max-height: 142px;
}

.game-asset-board .system-screen {
  max-height: 390px;
}

.store-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.5fr);
  gap: 22px;
  align-items: center;
  min-height: auto;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 20% 16%, rgba(243, 178, 61, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 252, 0.88));
}

.product-flow,
.store-strip {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
}

.product-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-flow img,
.store-strip img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(35, 39, 50, 0.14));
}

.product-flow img:nth-child(1) {
  transform: translateY(18px) rotate(-3deg);
}

.product-flow img:nth-child(2) {
  z-index: 2;
  transform: translateY(-10px);
}

.product-flow img:nth-child(3) {
  transform: translateY(22px) rotate(3deg);
}

.store-strip {
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  gap: 8px;
  padding: 14px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(45, 49, 61, 0.06);
}

.game-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(45, 49, 61, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 204, 246, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.72);
}

.game-outcome span {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: var(--heading-weight);
  line-height: 1.08;
}

.game-outcome p {
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(45, 49, 61, 0.11);
  border-radius: 999px;
  color: rgba(45, 49, 61, 0.74);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(35, 39, 50, 0.05);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.liveops-outcome {
  background:
    radial-gradient(circle at 82% 18%, rgba(154, 111, 255, 0.12), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 222, 113, 0.09), transparent 26%),
    rgba(255, 255, 255, 0.72);
}

.liveops-outcome .result-pills li {
  border-color: rgba(126, 109, 232, 0.16);
  color: rgba(72, 57, 126, 0.76);
}

.cinematic-outcome {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 78% 18%, rgba(173, 162, 210, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.cinematic-outcome span {
  color: rgba(255, 255, 255, 0.9);
}

.cinematic-outcome p {
  color: rgba(255, 255, 255, 0.68);
}

.case-dark .info-card,
.case-dark .outcome-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.case-dark .info-card ul,
.case-dark .outcome-card p,
.case-dark .visual-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.visual-section {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 6vw, 70px);
}

.visual-section.two-column {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.visual-copy {
  max-width: 680px;
}

.watch-gallery {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) repeat(4, minmax(110px, 0.52fr));
  gap: 0;
  align-items: center;
  border-radius: var(--radius);
  padding: 26px;
  background:
    radial-gradient(circle at 30% 20%, rgba(122, 211, 246, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.58);
}

.media-frame,
.zoomable {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.media-frame {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 44px rgba(35, 39, 50, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-frame:first-child {
  z-index: 2;
  transform: translateX(16px) scale(1.06);
  padding: 28px;
}

.media-frame:nth-child(2),
.media-frame:nth-child(4) {
  transform: rotate(-3deg);
}

.media-frame:nth-child(3),
.media-frame:nth-child(5) {
  transform: rotate(3deg);
}

.media-frame:hover {
  z-index: 4;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 28px 58px rgba(35, 39, 50, 0.18);
}

.media-frame img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.asset-system-board {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.52fr);
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 252, 0.86)),
    var(--paper);
  box-shadow: var(--shadow);
}

.asset-system-board img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.asset-system-board .system-screen {
  grid-row: span 2;
  max-height: 360px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 78% 16%, rgba(243, 178, 61, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(45, 49, 61, 0.05);
}

.phone-gallery img,
.store-gallery img,
.paywall-gallery img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.store-gallery img,
.phone-gallery img {
  filter: drop-shadow(0 16px 24px rgba(35, 39, 50, 0.12));
}

.store-gallery img,
.practice-gallery img,
.cinematic-layout img,
.history-layout img {
  border-radius: var(--radius);
}

.case-study img,
.practice-gallery img {
  cursor: zoom-in;
}

.case-study .game-system-showcase img {
  cursor: default;
}

.outcome-card {
  margin-top: clamp(34px, 6vw, 70px);
  background: rgba(255, 255, 255, 0.7);
}

.outcome-card p {
  max-width: 820px;
  margin-bottom: 0;
}

.liveops-phones {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.liveops-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 178, 61, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.liveops-board img {
  width: 100%;
  height: 150px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--paper);
}

.cinematic-layout,
.history-layout {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.cinematic-layout {
  grid-template-columns: minmax(220px, 0.65fr) repeat(2, minmax(0, 1fr));
}

.cinematic-layout img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.cinematic-layout .cinematic-character {
  grid-row: span 2;
  height: 492px;
  object-fit: contain;
  background: #f2f2f2;
}

.history-layout {
  grid-template-columns: minmax(220px, 0.65fr) repeat(2, minmax(0, 1fr));
}

.history-layout img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.95);
}

.history-layout .rider {
  grid-row: span 2;
  height: 472px;
  object-fit: contain;
  background: var(--paper);
}

.practice-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
  gap: clamp(22px, 2.4vw, 34px) clamp(28px, 6vw, 72px);
  align-items: center;
  align-content: end;
  overflow: hidden;
  min-height: 700px;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 62px) clamp(30px, 5vw, 62px) clamp(22px, 2.4vw, 34px);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 34%, rgba(35, 104, 92, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(18, 20, 26, 0.98) 0%, rgba(24, 27, 35, 0.94) 50%, rgba(16, 18, 24, 0.72) 100%),
    url("./assets/00_identity_profile/abstract_background_dark.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.practice-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 78% 46%, transparent 0 28%, rgba(0, 0, 0, 0.32) 70%);
}

.practice-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.practice-copy .eyebrow,
.practice-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.practice-copy p:last-child {
  margin-bottom: 0;
}

.practice-blog-button {
  position: relative;
  z-index: 2;
  grid-column: 1;
  justify-self: start;
  margin-top: 0;
  color: rgba(34, 37, 46, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.practice-blog-button:hover {
  background: rgba(255, 255, 255, 0.94);
}

.practice-hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.practice-character {
  position: absolute;
  right: clamp(42px, 9vw, 128px);
  bottom: -2%;
  width: min(40vw, 500px);
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.46));
}

.practice-selected {
  margin-top: clamp(42px, 6vw, 72px);
}

.practice-selected-heading {
  max-width: 720px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.practice-selected-heading h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.practice-gallery {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.08fr;
  align-items: stretch;
  gap: clamp(12px, 1.5vw, 18px);
  padding: clamp(12px, 1.5vw, 18px);
  border-radius: var(--radius);
  background: #efede8;
}

.practice-gallery img {
  width: 100%;
  object-fit: cover;
  background: #f2f0eb;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.practice-gallery img:hover {
  transform: scale(1.018);
  box-shadow: 0 18px 42px rgba(35, 39, 50, 0.16);
}

.practice-gallery .feature {
  height: auto;
  aspect-ratio: 0.71 / 1;
}

.practice-gallery-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 18px);
}

.practice-gallery-stack img {
  height: auto;
  aspect-ratio: 1.36 / 1;
}

.sketch-gallery-section {
  margin-top: clamp(48px, 7vw, 86px);
  color: #3b332c;
}

.sketch-gallery-heading p:first-child {
  color: rgba(113, 75, 45, 0.58);
}

.sketch-gallery-heading h3 {
  color: #2d313d;
}

.sketch-gallery-heading p:last-child {
  color: rgba(45, 49, 61, 0.68);
}

.sketch-gallery {
  border-color: rgba(113, 75, 45, 0.12);
  background:
    radial-gradient(circle at 82% 16%, rgba(211, 154, 88, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(235, 226, 211, 0.88));
  box-shadow: 0 28px 74px rgba(113, 75, 45, 0.12);
}

.sketch-stage {
  border-color: rgba(113, 75, 45, 0.14);
  background: #eadfce;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 20px 58px rgba(113, 75, 45, 0.12);
}

.sketch-stage::after {
  background:
    linear-gradient(180deg, rgba(74, 49, 34, 0.04), transparent 36%, rgba(74, 49, 34, 0.08)),
    radial-gradient(circle at 50% 50%, transparent 62%, rgba(99, 62, 39, 0.1));
}

.sketch-stage .cinematic-frame-button img {
  background: #eadfce;
  object-fit: contain;
}

.sketch-gallery .cinematic-nav,
.sketch-gallery .cinematic-counter {
  border-color: rgba(113, 75, 45, 0.14);
  color: rgba(61, 47, 39, 0.72);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 32px rgba(113, 75, 45, 0.12);
}

.sketch-thumbnails {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.sketch-thumbnails button {
  border-color: rgba(113, 75, 45, 0.12);
  background: rgba(255, 255, 255, 0.48);
}

.sketch-thumbnails button:hover,
.sketch-thumbnails button.is-active {
  border-color: rgba(159, 94, 55, 0.46);
  box-shadow: 0 0 0 1px rgba(159, 94, 55, 0.12), 0 12px 28px rgba(113, 75, 45, 0.14);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 20%, rgba(243, 178, 61, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(37, 41, 52, 0.98), rgba(27, 30, 39, 0.94));
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.contact-section h2 {
  max-width: 820px;
}

.contact-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  text-align: center;
}

.contact-section p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 18px;
}

.button {
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-button {
  min-width: 220px;
  color: rgba(34, 37, 46, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.96);
}

.faq-block {
  margin-top: clamp(42px, 6vw, 72px);
}

.faq-block h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 20px 22px;
  color: var(--paper);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span:last-child {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.faq-answer p + p {
  margin-top: 12px;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  place-items: center;
  padding: 58px 18px 28px;
  background: rgba(10, 12, 16, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: 94vw;
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .hero-grid,
  .profile-grid,
  .case-cover,
  .visual-section.two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid,
  .case-info-grid,
  .case-scope-strip,
  .game-story,
  .game-story-system,
  .store-stage {
    grid-template-columns: 1fr;
  }

  .game-story-system .story-copy {
    order: 0;
  }

  .game-system-layout {
    grid-template-columns: 1fr;
  }

  .system-final-screen {
    width: 100%;
  }

  .system-final-screen img {
    width: min(56vw, 330px);
  }

  .tools-panel {
    grid-template-columns: 1fr;
  }

  .watch-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-gallery .media-frame:first-child {
    grid-column: span 2;
  }

  .store-gallery,
  .liveops-board,
  .practice-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinematic-layout,
  .history-layout {
    grid-template-columns: 1fr 1fr;
  }

  .case-cover {
    min-height: 640px;
  }

  .game-cover {
    min-height: 650px;
  }

  .case-cover .case-summary {
    max-width: 620px;
  }

  .liveops-scope-strip {
    margin-top: 20px;
  }

  .game-cover-mockup,
  .cinematic-bg-scene,
  .history-landscape {
    width: min(112vw, 980px);
  }

  .cinematic-character-cover,
  .history-rider-cover {
    width: min(42vw, 420px);
  }

  .practice-hero {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .practice-bg {
    width: min(72vw, 620px);
  }

  .practice-character {
    width: min(44vw, 430px);
  }
}

@media (max-width: 720px) {
  .page-container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: 12px;
    padding-right: 16px;
  }

  .brand {
    gap: 5px;
  }

  .nav-links {
    display: none;
  }

  .mobile-contact-link {
    display: inline-flex;
  }

  .section-hero {
    min-height: 100svh;
    padding: 104px 0 54px;
  }

  .section-hero::before {
    background-position: 43% center;
  }

  .section-hero::after {
    display: none;
  }

  .cases-intro-heading,
  .case-nav-grid {
    grid-template-columns: 1fr;
  }

  .case-nav-grid a {
    min-height: auto;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .profile-media img {
    width: 178px;
  }

  .profile-media {
    padding-top: 0;
  }

  .profile-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: 0;
    padding-top: 0;
  }

  .profile-meta div {
    border-top: 1px solid rgba(45, 49, 61, 0.12);
    border-right: 0;
    padding-top: 10px;
    padding-right: 0;
  }

  .tools-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-gallery,
  .phone-gallery,
  .store-gallery,
  .liveops-phones,
  .liveops-board,
  .cinematic-layout,
  .history-layout,
  .practice-gallery,
  .asset-system-board,
  .product-flow {
    grid-template-columns: 1fr 1fr;
  }

  .mini-games-showcase {
    margin-top: 46px;
  }

  .mini-games-showcase .story-copy {
    margin-bottom: 20px;
  }

  .mini-game-categories {
    font-size: 17px !important;
  }

  .mini-game-panel {
    margin-inline: 0;
    padding: 22px 0 28px;
    overflow: hidden;
  }

  .mini-game-panel::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(239, 247, 252, 0.82) 0, transparent 34px, transparent calc(100% - 34px), rgba(239, 247, 252, 0.82) 100%);
  }

  .mini-game-scroll-hint {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid rgba(45, 49, 61, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(35, 39, 50, 0.08);
  }

  .mini-game-scroll-hint span {
    display: block;
    width: 18px;
    height: 4px;
    border-radius: 999px;
    background: rgba(45, 49, 61, 0.22);
  }

  .mini-game-scroll-hint span:first-child {
    background: rgba(45, 49, 61, 0.58);
  }

  .mini-game-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px calc((100vw - min(84vw, 340px)) / 2) 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mini-game-grid::-webkit-scrollbar {
    display: none;
  }

  .mini-game-grid img {
    flex: 0 0 min(84vw, 340px);
    width: min(84vw, 340px);
    height: min(132vw, 530px);
    max-height: none;
    scroll-snap-align: center;
  }

  .game-system-showcase {
    margin-top: 52px;
  }

  .game-system-showcase .story-copy {
    margin-bottom: 22px;
  }

  .game-system-showcase .story-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .season-pack-showcase {
    margin-top: 52px;
  }

  .season-pack-showcase .story-copy {
    margin-bottom: 22px;
  }

  .season-pack-showcase .story-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .season-pack-showcase .story-copy p:not(.product-scenarios) {
    font-size: 17px;
  }

  .season-pack-stage {
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }

  .season-pack-stage::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(248, 242, 255, 0.82) 0, transparent 28px, transparent calc(100% - 28px), rgba(248, 242, 255, 0.82) 100%);
  }

  .season-pack-layout {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 16px 32px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .season-pack-layout::-webkit-scrollbar {
    display: none;
  }

  .season-pack-panel,
  .season-pack-column {
    flex: 0 0 min(84vw, 340px);
    width: min(84vw, 340px);
    scroll-snap-align: center;
  }

  .season-pack-panel {
    min-height: min(82vw, 316px);
  }

  .season-pack-column {
    display: contents;
  }

  .season-pack-panel figcaption {
    margin-top: auto;
    padding: 0 16px 16px;
    font-size: 18px;
  }

  .season-frame-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 18px 16px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .season-frame-row::-webkit-scrollbar {
    display: none;
  }

  .season-frame-row img {
    flex: 0 0 62%;
    width: 62%;
    scroll-snap-align: center;
  }

  .season-gift-grid {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
    flex: 1;
    min-height: 0;
    padding: 18px 34px 10px;
  }

  .season-gift-grid img {
    flex: 0 0 72px;
    width: 72px;
  }

  .season-pack-icon {
    justify-content: flex-start;
    min-height: min(82vw, 316px);
    padding: 18px 18px 0;
  }

  .season-pack-icon img {
    width: 124px;
    margin: auto 0;
  }

  .season-pack-scroll-hint {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid rgba(45, 49, 61, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(35, 39, 50, 0.08);
  }

  .season-pack-scroll-hint span {
    display: block;
    width: 18px;
    height: 4px;
    border-radius: 999px;
    background: rgba(45, 49, 61, 0.22);
  }

  .season-pack-scroll-hint span:first-child {
    background: rgba(45, 49, 61, 0.58);
  }

  .liveops-ui-showcase {
    margin-top: 52px;
  }

  .liveops-ui-showcase .story-copy {
    margin-bottom: 22px;
  }

  .liveops-ui-showcase .story-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .liveops-ui-showcase .story-copy p:not(.product-scenarios) {
    font-size: 17px;
  }

  .liveops-ui-card {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    margin-inline: calc(50% - 50vw);
    border: 0;
    padding: 4px calc((100vw - min(78vw, 320px)) / 2) 28px;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .liveops-ui-card::-webkit-scrollbar {
    display: none;
  }

  .liveops-ui-card img {
    flex: 0 0 min(78vw, 320px);
    width: min(78vw, 320px);
    max-height: min(150vw, 610px);
    scroll-snap-align: center;
  }

  .game-system-layout,
  .system-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .system-final-screen {
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(45, 49, 61, 0.08);
    border-radius: var(--radius);
    padding: 22px 18px 18px;
    background:
      radial-gradient(circle at 26% 18%, rgba(106, 204, 241, 0.18), transparent 36%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 253, 0.86));
  }

  .system-final-glow {
    top: 0;
    left: -10%;
    width: 120%;
    height: 78%;
  }

  .system-final-screen img {
    width: min(62vw, 260px);
  }

  .system-final-screen figcaption {
    margin-top: 12px;
    font-size: 16px;
  }

  .system-piece figcaption {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .product-cards {
    display: none;
  }

  .product-monetization-showcase {
    margin-top: 52px;
  }

  .product-monetization-showcase .story-copy {
    margin-bottom: 22px;
  }

  .product-monetization-showcase .story-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .product-scenarios {
    font-size: 17px !important;
  }

  .product-mobile-carousel {
    position: relative;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    margin-inline: 0;
    padding: 4px calc((100vw - min(78vw, 320px)) / 2) 28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .product-mobile-carousel img {
    flex: 0 0 min(78vw, 320px);
    width: min(78vw, 320px);
    max-height: min(150vw, 610px);
    object-fit: contain;
    scroll-snap-align: center;
    filter: drop-shadow(0 18px 26px rgba(35, 39, 50, 0.12));
  }

  .app-store-showcase {
    margin-top: 52px;
  }

  .app-store-showcase .story-copy {
    margin-bottom: 22px;
  }

  .app-store-showcase .story-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .app-store-card {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    margin-inline: 0;
    border: 0;
    padding: 4px calc((100vw - min(78vw, 320px)) / 2) 28px;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .app-store-card::-webkit-scrollbar {
    display: none;
  }

  .app-store-card img {
    flex: 0 0 min(78vw, 320px);
    width: min(78vw, 320px);
    max-height: min(150vw, 610px);
    scroll-snap-align: center;
  }

  .bonus-paywall-block {
    margin-top: 32px;
  }

  .bonus-paywall-block summary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .bonus-paywall-block[open] summary {
    gap: 0;
  }

  .bonus-copy h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .bonus-copy p {
    font-size: 16px;
  }

  .bonus-copy strong {
    margin-top: 2px;
  }

  .bonus-preview {
    min-height: 178px;
    max-height: 190px;
  }

  .bonus-preview img {
    max-height: 178px;
  }

  .bonus-preview img:nth-child(1) {
    left: 50%;
    width: min(42%, 142px);
    transform: translate(-50%, -8px);
  }

  .bonus-preview img:nth-child(2) {
    left: 5%;
    width: min(34%, 112px);
    transform: translateY(16px) rotate(-7deg);
  }

  .bonus-preview img:nth-child(3) {
    right: 5%;
    width: min(34%, 112px);
    transform: translateY(20px) rotate(7deg);
  }

  .bonus-paywall-block[open] .bonus-preview {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }

  .bonus-paywall-gallery {
    position: relative;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 16px 28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bonus-paywall-gallery::-webkit-scrollbar {
    display: none;
  }

  .bonus-paywall-gallery figure {
    flex: 0 0 min(72vw, 292px);
    width: min(72vw, 292px);
    scroll-snap-align: center;
  }

  .bonus-paywall-gallery img {
    max-height: min(150vw, 610px);
  }

  .case-scope-strip div {
    min-height: auto;
    padding: 18px;
  }

  .case-scope-strip {
    margin-top: -220px;
  }

  .game-story {
    margin-top: 46px;
  }

  .game-story .story-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .gameplay-stage {
    min-height: 430px;
  }

  .watch-card.main {
    right: 0;
    top: 12%;
    width: min(64vw, 300px);
  }

  .watch-card.tic {
    left: 2%;
    top: 8%;
    width: min(38vw, 170px);
  }

  .watch-card.race {
    left: 8%;
    bottom: 8%;
    width: min(42vw, 190px);
  }

  .watch-card.donut {
    right: 8%;
    bottom: 4%;
    width: min(38vw, 175px);
  }

  .watch-gallery .media-frame:first-child,
  .asset-system-board .system-screen,
  .cinematic-layout .cinematic-character,
  .history-layout .rider,
  .practice-gallery .feature {
    grid-column: span 2;
    grid-row: auto;
  }

  .media-frame {
    min-height: 190px;
  }

  .case-cover {
    min-height: 620px;
    padding: 26px;
  }

  .game-cover {
    display: block;
    min-height: auto;
    padding: 26px 0 0;
    overflow: visible;
  }

  .game-cover .cover-art {
    position: relative;
    inset: auto;
    z-index: 1;
    height: clamp(260px, 74vw, 380px);
    width: 300vw;
    margin: 18px 0 clamp(44px, 12vw, 64px) 50%;
    overflow: visible;
    background: transparent;
    transform: translateX(-50%);
  }

  .game-cover .case-summary {
    position: relative;
    z-index: 2;
    margin-top: 0;
    font-size: 17px;
  }

  .liveops-cover {
    display: block;
    min-height: auto;
    padding: 26px 0 0;
    overflow: visible;
  }

  .liveops-cover h2 span {
    max-width: 300px;
    margin-top: 7px;
    font-size: 0.42em;
  }

  .liveops-cover .cover-art {
    position: relative;
    inset: auto;
    z-index: 1;
    height: clamp(330px, 92vw, 410px);
    width: 180vw;
    margin: 18px 0 clamp(28px, 8vw, 42px) 50%;
    overflow: visible;
    background: transparent;
    transform: translateX(-50%);
  }

  .liveops-cover .case-summary {
    position: relative;
    z-index: 2;
    margin-top: 0;
    font-size: 17px;
  }

  .case-cover::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.58)),
      url("./assets/00_identity_profile/abstract_background_light_01.png") center / cover no-repeat;
  }

  .game-cover-mockup {
    left: calc(50% + 18px);
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(187vw, 850px);
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .liveops-rays {
    left: calc(50% + 4px);
    top: 50%;
    width: min(142vw, 620px);
    opacity: 0.42;
  }

  .liveops-cover-mockup {
    left: calc(50% + 4px);
    top: 50%;
    width: min(104vw, 455px);
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .case-scope-strip {
    width: 100%;
    margin-top: 20px;
  }

  .live-phone.side-a,
  .live-phone.side-b,
  .live-float,
  .history-scene,
  .cinematic-creature {
    display: none;
  }

  .live-phone.main {
    right: 2%;
    bottom: 4%;
    top: auto;
    width: 48vw;
    opacity: 0.62;
  }

  .cinematic-cover::before {
    background:
      linear-gradient(180deg, rgba(23, 26, 33, 0.96) 0%, rgba(23, 26, 33, 0.78) 56%, rgba(23, 26, 33, 0.36) 100%),
      url("./assets/00_identity_profile/abstract_background_dark.png") center / cover no-repeat;
  }

  .cinematic-cover {
    display: block;
    min-height: auto;
    padding: 26px 26px 0;
  }

  .cinematic-cover .cover-art {
    position: relative;
    inset: auto;
    z-index: 1;
    height: clamp(270px, 74vw, 350px);
    margin: 22px -26px 0;
    overflow: visible;
    pointer-events: none;
  }

  .cinematic-character-cover {
    right: 50%;
    bottom: 0;
    width: min(74vw, 320px);
    opacity: 0.86;
    transform: translateX(50%);
  }

  .cinematic-cover .case-summary {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    font-size: 17px;
  }

  .cinematic-scope-strip {
    margin-top: 20px;
  }

  .historical-cover {
    display: block;
    min-height: auto;
    padding: 26px 26px 0;
    overflow: visible;
  }

  .historical-cover::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 246, 234, 0.78) 58%, rgba(255, 235, 216, 0.3) 100%),
      url("./assets/00_identity_profile/abstract_background_light_02.png") center / cover no-repeat;
  }

  .historical-cover .cover-art {
    position: relative;
    inset: auto;
    z-index: 1;
    height: clamp(300px, 88vw, 390px);
    width: calc(100% + 52px);
    margin: -24px -26px 0;
    overflow: visible;
    background: transparent;
    transform: none;
  }

  .historical-rider-cover {
    right: 0;
    bottom: 0;
    width: min(89vw, 389px);
  }

  .historical-cover .case-summary {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    font-size: 17px;
  }

  .case-scope-strip.historical-scope-strip {
    margin-top: 20px;
  }

  .case-scope-strip.historical-scope-strip div:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .case-scope-strip.historical-scope-strip div:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .cinematic-gallery-section {
    margin-top: 42px;
  }

  .cinematic-gallery-heading {
    margin-bottom: 18px;
  }

  .cinematic-gallery-heading p:first-child {
    font-size: 13px;
    line-height: 1.35;
  }

  .cinematic-gallery-heading p:last-child {
    font-size: 16px;
  }

  .cinematic-gallery {
    padding: 10px;
    margin-right: -2px;
    margin-left: -2px;
    border-radius: var(--radius);
  }

  .cinematic-frame-button img {
    aspect-ratio: 1.72 / 1;
  }

  .cinematic-nav {
    width: 36px;
    height: 36px;
  }

  .cinematic-prev {
    left: 8px;
  }

  .cinematic-next {
    right: 8px;
  }

  .cinematic-counter {
    right: 10px;
    bottom: 10px;
    padding: 6px 9px;
  }

  .cinematic-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 10px -10px 0;
    padding: 0 10px 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .cinematic-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .cinematic-thumbnails button {
    flex: 0 0 92px;
    scroll-snap-align: center;
  }

  .history-landscape {
    right: -22%;
    bottom: 0;
    width: 120vw;
    opacity: 0.38;
  }

  .history-rider-cover {
    right: 2%;
    bottom: 4%;
    width: 55vw;
    opacity: 0.74;
  }

  .phone-gallery,
  .asset-system-board,
  .liveops-board,
  .store-stage {
    padding: 12px;
    gap: 10px;
  }

  .store-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-outcome {
    grid-template-columns: 1fr;
  }

  .game-outcome p {
    font-size: 17px;
    line-height: 1.5;
  }

  .phone-gallery img,
  .store-gallery img {
    max-height: 320px;
  }

  .cinematic-layout img,
  .cinematic-layout .cinematic-character,
  .history-layout img,
  .history-layout .rider,
  .practice-gallery img,
  .practice-gallery .feature {
    height: auto;
    max-height: none;
  }

  .practice-hero {
    min-height: auto;
    padding: 26px 26px 14px;
  }

  .practice-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .practice-gallery-stack {
    grid-template-rows: auto;
    gap: 10px;
  }

  .practice-gallery .feature,
  .practice-gallery-stack img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .practice-hero-art {
    position: relative;
    height: clamp(360px, 96vw, 460px);
    margin: 10px -26px -46px;
  }

  .practice-character {
    right: 5%;
    bottom: 0;
    width: min(82vw, 390px);
    opacity: 0.92;
  }

  .practice-blog-button {
    justify-self: stretch;
    margin-top: 0;
    text-align: center;
  }

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

  .contact-mark {
    width: 120px;
  }
}

@media (min-width: 481px) and (max-width: 720px) {
  .mini-game-panel {
    margin-inline: 0;
    padding: 24px;
  }

  .mini-game-panel::after,
  .mini-game-scroll-hint {
    display: none;
  }

  .mini-game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .mini-game-grid img {
    flex: initial;
    width: 100%;
    height: clamp(260px, 44vw, 340px);
    max-height: none;
    scroll-snap-align: none;
  }
}

@media (min-width: 721px) {
  .historical-cover {
    display: grid;
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
    align-content: start;
    min-height: auto;
    padding-bottom: clamp(18px, 2vw, 28px);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
  }

  .historical-cover > div:first-child,
  .historical-cover > .case-summary {
    z-index: 3;
  }

  .historical-cover .cover-art {
    position: absolute;
    inset: auto 0 0 auto;
    z-index: 1;
    width: min(38vw, 600px);
    height: 100%;
    margin: 0;
    transform: none;
    pointer-events: none;
  }

  .case-scope-strip.historical-scope-strip {
    border-top-color: transparent;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .case-scope-strip.historical-scope-strip div:first-child {
    border-radius: 0 0 0 var(--radius);
  }

  .case-scope-strip.historical-scope-strip div:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .historical-rider-cover {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
  }

  .mini-game-panel {
    margin-inline: 0;
    padding: clamp(20px, 3vw, 38px);
    overflow: hidden;
  }

  .mini-game-panel::after,
  .mini-game-scroll-hint {
    display: none;
  }

  .mini-game-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    gap: clamp(18px, 2.2vw, 28px) clamp(16px, 2.6vw, 34px);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .mini-game-grid img {
    flex: initial;
    width: min(100%, 148px);
    height: auto;
    max-height: clamp(220px, 18vw, 292px);
    scroll-snap-align: none;
  }
}
