:root {
  --paper: #F2E4C6;
  --paper-bright: #FAF0D8;
  --paper-blue: #B8D6D2;
  --ink-line: #322A20;
  --brand-red: #B91F2E;
  --brand-red-deep: #7F1620;
  --text-main: #241F18;
  --text-soft: #675A49;
  --state-success: #3E6B4F;
  --state-warning: #C28325;
  --state-error: #8E1C1C;
  --paper-glaze: rgba(250, 240, 216, 0.92);
  --paper-solid: rgba(250, 240, 216, 1);
  --ink-wash: rgba(50, 42, 32, 0.16);
  --ink-dust: rgba(50, 42, 32, 0.08);
  --red-wash: rgba(185, 31, 46, 0.16);
  --blue-wash: rgba(184, 214, 210, 0.48);
  --veil: rgba(36, 31, 24, 0.72);
  --transparent: rgba(0, 0, 0, 0);
  --font-display: Georgia, "Songti SC", "STSong", SimSun, serif;
  --font-body: "Noto Sans SC", Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --radius-square: 0;
  --radius-small: 3px;
  --radius-round: 999px;
  --stroke-thin: 1px;
  --stroke-medium: 2px;
  --stroke-heavy: 4px;
  --site-width: 1320px;
  --reading-width: 820px;
  --header-size: 78px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-space: clamp(58px, 8vw, 108px);
  --transition-fast: 160ms ease;
  --transition-reveal: 580ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  color: var(--text-main);
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-size) + 18px);
}

html.nav-open {
  overflow: hidden;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--text-main);
  background:
    radial-gradient(circle at 14% 24%, var(--red-wash) 0 1px, var(--transparent) 2px),
    radial-gradient(circle at 81% 17%, var(--ink-dust) 0 1px, var(--transparent) 2px),
    var(--paper);
  background-size: 19px 19px, 23px 23px, auto;
  font-family: var(--font-body);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: var(--brand-red-deep);
  text-decoration-thickness: var(--stroke-thin);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-red);
}

p,
ul,
ol,
dl,
pre,
blockquote,
table {
  margin-top: 0;
  margin-bottom: 1.25em;
}

ul,
ol {
  padding-left: 1.4em;
}

li + li {
  margin-top: 0.35em;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--text-main);
  font-family: var(--font-display);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0.4em;
  font-size: clamp(3.25rem, 7vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0.55em;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.55em;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

h4 {
  margin-bottom: 0.45em;
  font-size: 1.1rem;
}

small,
.text-muted {
  color: var(--text-soft);
}

strong {
  font-weight: 900;
}

code,
kbd,
samp {
  font-family: var(--font-mono);
}

:not(pre) > code {
  padding: 0.08em 0.35em;
  border: var(--stroke-thin) solid var(--ink-line);
  background: var(--paper-blue);
  overflow-wrap: anywhere;
}

pre {
  max-width: 100%;
  padding: 20px;
  overflow-x: auto;
  border: var(--stroke-medium) solid var(--ink-line);
  background: var(--text-main);
  color: var(--paper-bright);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.65;
  tab-size: 2;
  -webkit-overflow-scrolling: touch;
}

pre code {
  color: inherit;
  white-space: pre;
  overflow-wrap: normal;
}

hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: var(--stroke-medium) solid var(--ink-line);
}

::selection {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.wrap {
  width: 100%;
  max-width: calc(var(--site-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.reading-wrap {
  width: 100%;
  max-width: calc(var(--reading-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-tight {
  padding-top: calc(var(--section-space) * 0.6);
  padding-bottom: calc(var(--section-space) * 0.6);
}

.section-blue {
  border-top: var(--stroke-medium) solid var(--ink-line);
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper-blue);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 6px 11px;
  overflow: hidden;
  border-top: var(--stroke-medium) solid var(--ink-line);
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  color: var(--brand-red-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid > * {
  min-width: 0;
}

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

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

.panel,
.card {
  min-width: 0;
  border: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper-bright);
}

.panel {
  padding: clamp(20px, 3vw, 34px);
}

.card {
  position: relative;
  padding: 24px;
}

.card::before {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: var(--stroke-thin) solid var(--ink-wash);
  content: "";
  pointer-events: none;
}

.card > * {
  position: relative;
}

.card-blue {
  background: var(--paper-blue);
}

.card-red {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.card-red h2,
.card-red h3,
.card-red a {
  color: var(--paper-bright);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: var(--stroke-medium) solid var(--ink-line);
  border-radius: var(--radius-square);
  color: var(--text-main);
  background: var(--paper-bright);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-primary {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.button-primary::before,
.button-primary::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 16px;
  border: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper);
  content: "";
  transform: translateY(-50%);
}

.button-primary::before {
  left: -7px;
  border-left: 0;
}

.button-primary::after {
  right: -7px;
  border-right: 0;
}

.button:hover,
.button:focus-visible {
  color: var(--paper-bright);
  background: var(--brand-red-deep);
}

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.language-button:focus-visible {
  outline: var(--stroke-heavy) double var(--brand-red);
  outline-offset: 3px;
}

.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  color: var(--text-soft);
  background: var(--ink-dust);
  opacity: 0.7;
}

.icon-disc {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: var(--stroke-medium) solid var(--ink-line);
  border-radius: var(--radius-round);
  background: var(--paper-blue);
}

.icon-disc svg {
  width: 22px;
  height: 22px;
}

.badge,
.chip,
.tag {
  max-width: 100%;
  min-height: 28px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  border: var(--stroke-thin) solid var(--ink-line);
  border-radius: var(--radius-round);
  color: var(--ink-line);
  background: var(--paper-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.badge-blue {
  background: var(--paper-blue);
}

.badge-red {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.badge-success {
  color: var(--paper-bright);
  background: var(--state-success);
}

.badge-warning {
  color: var(--text-main);
  background: var(--state-warning);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: var(--stroke-thin) solid var(--ink-line);
  border-radius: var(--radius-round);
  background: var(--state-success);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: var(--stroke-medium) solid var(--ink-line);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper-bright);
}

.data-table th,
.data-table td {
  padding: 13px 15px;
  border-right: var(--stroke-thin) solid var(--ink-line);
  border-bottom: var(--stroke-thin) solid var(--ink-line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--paper-bright);
  background: var(--brand-red);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

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

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

.prose {
  min-width: 0;
  font-size: 1.02rem;
}

.prose > * {
  max-width: 100%;
}

.prose h2 {
  margin-top: 2.2em;
  padding-bottom: 0.3em;
  border-bottom: var(--stroke-medium) solid var(--ink-line);
}

.prose h3 {
  margin-top: 1.8em;
}

.prose a {
  text-decoration: underline;
}

.prose img {
  border: var(--stroke-medium) solid var(--ink-line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal);
}

.reveal.shown {
  opacity: 1;
  transform: none;
}

.tilt-left {
  transform: rotate(-1.5deg);
}

.tilt-right {
  transform: rotate(1.5deg);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-size);
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper-glaze);
}

.header-inner {
  width: 100%;
  max-width: calc(var(--site-width) + var(--gutter) * 2);
  min-height: var(--header-size);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: block;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-name {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brand-note {
  overflow: hidden;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-link {
  min-height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: var(--stroke-thin) solid var(--transparent);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.nav-link[aria-current="page"] {
  border-color: var(--ink-line);
  color: var(--paper-bright);
  background: var(--brand-red);
}

.nav-link:hover {
  border-color: var(--ink-line);
  color: var(--brand-red-deep);
  background: var(--paper-bright);
}

.header-tools {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-button,
.menu-toggle {
  min-height: 44px;
  border: var(--stroke-thin) solid var(--ink-line);
  color: var(--ink-line);
  background: var(--paper-blue);
  font-weight: 900;
}

.language-button {
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 6;
  width: 180px;
  display: none;
  border: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper-bright);
}

.language-menu.open {
  display: block;
}

.language-menu a {
  min-height: 44px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  border-bottom: var(--stroke-thin) solid var(--ink-line);
  color: var(--text-main);
  font-weight: 800;
  text-decoration: none;
}

.language-menu a:last-child {
  border-bottom: 0;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.menu-toggle {
  min-width: 44px;
  padding: 0;
  display: none;
  place-items: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-drawer {
  position: fixed;
  top: var(--header-size);
  right: 0;
  z-index: 5;
  width: min(360px, 100%);
  max-height: calc(100dvh - var(--header-size));
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: var(--stroke-medium) solid var(--ink-line);
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  background: var(--paper-bright);
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer a {
  width: 100%;
  min-height: 50px;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: var(--stroke-thin) solid var(--ink-line);
  color: var(--text-main);
  font-weight: 900;
  text-decoration: none;
}

.mobile-drawer a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mobile-drawer a[aria-current="page"] {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.drawer-label {
  padding: 12px var(--gutter) 5px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nav-veil {
  position: fixed;
  inset: var(--header-size) 0 0;
  z-index: 4;
  display: none;
  border: 0;
  background: var(--veil);
}

.nav-veil.open {
  display: block;
}

.site-footer {
  position: relative;
  overflow-x: clip;
  border-top: var(--stroke-heavy) double var(--ink-line);
  background:
    linear-gradient(90deg, var(--ink-dust) var(--stroke-thin), var(--transparent) var(--stroke-thin)),
    var(--paper-blue);
  background-size: 20px 100%, auto;
}

.footer-inner {
  width: 100%;
  max-width: calc(var(--site-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding: 58px var(--gutter) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(160px, 0.75fr));
  gap: 38px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
  color: var(--text-soft);
}

.footer-heading {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brand-red-deep);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: var(--stroke-medium) solid var(--ink-line);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.73rem;
}

.poster-hero {
  position: relative;
  min-height: calc(100vh - var(--header-size));
  overflow-x: clip;
  isolation: isolate;
  border-bottom: var(--stroke-medium) solid var(--ink-line);
  background:
    linear-gradient(90deg, var(--transparent) 0 49.9%, var(--ink-dust) 50%, var(--transparent) 50.1%),
    radial-gradient(circle at 76% 42%, var(--blue-wash), var(--transparent) 38%),
    var(--paper);
}

.poster-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    repeating-linear-gradient(7deg, var(--transparent) 0 3px, var(--ink-dust) 4px, var(--transparent) 5px),
    repeating-linear-gradient(93deg, var(--transparent) 0 11px, var(--paper-glaze) 12px, var(--transparent) 13px);
  background-size: 31px 31px, 47px 47px;
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

.poster-hero-inner {
  width: 100%;
  max-width: calc(var(--site-width) + var(--gutter) * 2);
  min-height: calc(100vh - var(--header-size));
  margin-inline: auto;
  padding: 34px var(--gutter) 150px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 30px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-arc-title {
  width: 100%;
  height: clamp(150px, 16vw, 212px);
  margin: -12px 0 -18px;
  color: var(--brand-red);
}

.hero-arc-title svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-arc-title path {
  fill: none;
}

.hero-arc-title text {
  fill: currentColor;
  stroke: var(--brand-red-deep);
  stroke-width: 0.65px;
  paint-order: stroke fill;
  font-family: var(--font-display);
  font-size: 75px;
  font-weight: 900;
  letter-spacing: -3px;
}

.hero-lead {
  max-width: 580px;
  margin: 0 0 21px 14px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.8;
}

.hero-lead strong {
  padding: 0 4px 2px;
  color: var(--text-main);
  background: linear-gradient(var(--transparent) 62%, var(--paper-blue) 62%);
}

.hero-copy .button-row,
.hero-facts {
  margin-left: 14px;
}

.hero-facts {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-visual {
  position: relative;
  height: min(620px, calc(100vh - 145px));
  min-height: 480px;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-platforms {
  position: absolute;
  right: var(--gutter);
  bottom: 20px;
  left: var(--gutter);
  z-index: 4;
  min-height: 116px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  border-top: var(--stroke-heavy) double var(--ink-line);
  background: var(--paper-glaze);
}

.platform-stamp {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--brand-red-deep);
  text-decoration: none;
}

.platform-stamp-mark {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: var(--stroke-heavy) double var(--brand-red);
  border-radius: var(--radius-round);
  color: var(--brand-red);
  background: var(--paper-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(-4deg);
}

.platform-stamp:nth-child(even) .platform-stamp-mark {
  transform: rotate(4deg);
}

.platform-stamp-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.platform-stamp-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.platform-stamp-copy span {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.35;
}

.platform-stamp:hover .platform-stamp-mark {
  color: var(--paper-bright);
  background: var(--brand-red);
}

.svg-paper {
  fill: var(--paper-bright);
}

.svg-paper-main {
  fill: var(--paper);
}

.svg-red {
  fill: var(--brand-red);
}

.svg-red-dark {
  fill: var(--brand-red-deep);
}

.svg-blue {
  fill: var(--paper-blue);
}

.svg-ink {
  fill: var(--ink-line);
}

.svg-none {
  fill: none;
}

.svg-ink-stroke {
  stroke: var(--ink-line);
}

.svg-paper-stroke {
  stroke: var(--paper-bright);
}

.svg-red-stroke {
  stroke: var(--brand-red);
}

.svg-line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-can-title {
  fill: var(--paper-bright);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 2px;
  text-anchor: middle;
}

.svg-can-small {
  fill: var(--paper-bright);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-anchor: middle;
}

@media (max-width: 1080px) {
  .brand-note {
    display: none;
  }

  .desktop-nav .nav-link {
    padding-inline: 8px;
  }

  .desktop-nav .nav-link svg {
    display: none;
  }

  .poster-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  }

  .platform-stamp-copy {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-size: 68px;
  }

  .desktop-nav,
  .header-tools > .language-button,
  .header-tools > .language-menu {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

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

  .poster-hero-inner {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 154px;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-visual {
    height: 530px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
    --section-space: 58px;
  }

  html,
  body {
    max-width: 100%;
  }

  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .mobile-drawer {
    width: 100%;
    border-left: 0;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 180px;
  }

  .tilt-left,
  .tilt-right {
    transform: none;
  }

  .poster-hero-inner {
    padding-top: 32px;
    padding-bottom: 126px;
  }

  .hero-arc-title {
    height: 142px;
    margin-bottom: -8px;
  }

  .hero-arc-title text {
    font-size: 59px;
    letter-spacing: -2px;
  }

  .hero-lead,
  .hero-copy .button-row,
  .hero-facts {
    margin-left: 0;
  }

  .hero-visual {
    height: 430px;
    min-height: 430px;
    margin-inline: -4px;
  }

  .hero-platforms {
    right: 0;
    bottom: 12px;
    left: 0;
    min-height: 98px;
    padding-inline: var(--gutter);
    gap: 5px;
  }

  .platform-stamp {
    display: grid;
  }

  .platform-stamp-mark {
    width: clamp(52px, 16vw, 65px);
    height: clamp(52px, 16vw, 65px);
    font-size: 0.58rem;
    transform: none;
  }

  .platform-stamp:nth-child(even) .platform-stamp-mark {
    transform: none;
  }

  .footer-bottom {
    display: grid;
  }

  .card,
  .panel {
    padding: 19px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 182px;
  }

  .hero-arc-title text {
    font-size: 53px;
  }

  .hero-facts .chip:nth-child(n + 3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}