@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel-Variable.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ink: #090b0d;
  --ink-soft: #111519;
  --paper: #e9e3d7;
  --paper-deep: #d8cfbe;
  --gold: #c4a15d;
  --gold-bright: #e1c580;
  --gold-dark: #775c2e;
  --wine: #5e1820;
  --teal: #17343a;
  --mist: #aeb5b5;
  --line: rgba(196, 161, 93, 0.28);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --display: "Cinzel", Georgia, serif;
  --page: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-dark) var(--ink);
}

body {
  margin: 0;
  color: #26231e;
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 42px;
  color: #f5efe3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: height 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(8, 10, 12, 0.94);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  font: 600 13px/1 var(--display);
  letter-spacing: 0.06em;
  transform: rotate(45deg);
}

.brand-mark::first-line {
  transform: rotate(-45deg);
}

.brand-mark {
  text-indent: 1px;
}

.brand-mark::after {
  content: "MC";
  transform: rotate(-45deg);
}

.brand-mark {
  font-size: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy b {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font: 500 8px/1 var(--display);
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.14em;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  left: 0;
  width: 100%;
}

.site-nav .nav-steam {
  color: var(--gold-bright);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(196, 161, 93, 0.36);
  background: rgba(4, 6, 7, 0.3);
}

.language-switch button {
  min-width: 31px;
  height: 30px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(196, 161, 93, 0.2);
  cursor: pointer;
  font: 600 9px/1 var(--sans);
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button:hover {
  color: #fff;
}

.language-switch button.active {
  color: #17130c;
  background: var(--gold-bright);
}

.nav-tools {
  display: none;
}

.audio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.12em;
}

.audio-toggle:hover,
.audio-toggle[aria-pressed="true"] {
  color: var(--gold-bright);
}

.audio-bars {
  height: 17px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.audio-bars i {
  width: 2px;
  height: 5px;
  background: currentColor;
}

.audio-bars i:nth-child(2) {
  height: 12px;
}

.audio-toggle[aria-pressed="true"] .audio-bars i {
  animation: audio-bars 0.8s ease-in-out infinite alternate;
}

.audio-toggle[aria-pressed="true"] .audio-bars i:nth-child(2) {
  animation-delay: -0.28s;
}

.audio-toggle[aria-pressed="true"] .audio-bars i:nth-child(3) {
  animation-delay: -0.56s;
}

@keyframes audio-bars {
  to { height: 16px; }
}

.button {
  position: relative;
  min-width: 176px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  color: #19140c;
  background: linear-gradient(135deg, var(--gold-bright), #a37b3a);
  border: 1px solid rgba(255, 231, 171, 0.5);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.12em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: #fff0c1;
}

.button::before {
  top: 4px;
  left: 4px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.button::after {
  right: 4px;
  bottom: 4px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.button-small {
  min-width: 108px;
  min-height: 38px;
  padding: 9px 16px;
  font-size: 11px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background: #050607;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop,
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-backdrop {
  background: url("assets/images/hero.webp") center center / cover no-repeat;
  transform: scale(1.025);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  to { transform: scale(1.06) translate3d(-0.4%, -0.4%, 0); }
}

.hero-vignette {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.92) 0%, rgba(3, 5, 7, 0.7) 34%, rgba(3, 5, 7, 0.08) 64%, rgba(3, 5, 7, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 5, 7, 0.9) 0%, transparent 35%, rgba(3, 5, 7, 0.35) 100%);
}

.hero-content {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0 90px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font: 600 11px/1.4 var(--display), var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.65);
}

.hero h1 span {
  font-size: clamp(58px, 7.1vw, 112px);
  letter-spacing: 0.08em;
}

.hero h1 small {
  margin-top: 24px;
  padding-left: 5px;
  color: var(--gold-bright);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.48em;
}

html[data-language="ja"] .hero h1 span {
  font-size: clamp(48px, 5.7vw, 88px);
  letter-spacing: 0.035em;
}

html[data-language="ja"] .hero h1 small {
  letter-spacing: 0.62em;
}

html[data-language="en"] .hero h1 span {
  font: 600 clamp(48px, 5.7vw, 88px)/1.05 var(--display);
  letter-spacing: 0.035em;
}

html[data-language="en"] .hero h1 small {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.28em;
}

.hero-lead {
  max-width: 640px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: 0.08em;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.1em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

.text-link:hover {
  color: #fff;
  border-color: var(--gold);
}

.hero-meta {
  margin: 64px 0 0;
  display: flex;
  gap: 0;
}

.hero-meta div {
  min-width: 170px;
  padding: 0 30px;
  border-left: 1px solid rgba(196, 161, 93, 0.34);
}

.hero-meta div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta dt {
  margin-bottom: 8px;
  color: var(--gold);
  font: 500 10px/1 var(--sans);
  letter-spacing: 0.18em;
}

.hero-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  right: 44px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll span {
  font: 500 8px/1 var(--display);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 62px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.marquee {
  width: 100%;
  padding: 15px 0;
  color: var(--gold-bright);
  background: var(--wine);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 30s linear infinite;
  font: 500 11px/1 var(--display);
  letter-spacing: 0.28em;
}

.marquee-track i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
}

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

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 140px 0;
}

.section-number {
  position: absolute;
  top: 104px;
  left: -70px;
  color: rgba(74, 58, 32, 0.08);
  font: 700 170px/1 var(--display);
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.story h2,
.section-heading h2,
.release h2,
.faq h2 {
  margin: 0;
  color: #181713;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.03em;
}

.story-copy > p:not(.kicker) {
  margin: 28px 0 0;
  color: #5e584e;
  font-size: 16px;
  line-height: 2;
}

.story blockquote {
  position: relative;
  margin: 46px 0 0;
  padding: 23px 0 23px 32px;
  color: #29241c;
  border-left: 1px solid var(--gold);
  font-size: 21px;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.story blockquote span {
  position: absolute;
  top: -25px;
  left: 15px;
  color: rgba(119, 92, 46, 0.15);
  font: 80px/1 Georgia, serif;
}

.story-visual {
  position: relative;
  padding: 18px;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 74px;
  border: 1px solid rgba(119, 92, 46, 0.3);
  transform: translate(18px, 18px);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #0e0d0c;
  box-shadow: 0 30px 70px rgba(35, 27, 16, 0.24);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(214, 183, 116, 0.26);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.story-visual:hover .image-frame img {
  transform: scale(1.035);
}

.story-visual > p {
  position: relative;
  margin: 30px 0 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.story-visual > p b {
  color: var(--gold-dark);
  font: 500 23px/1 var(--display);
  letter-spacing: 0.12em;
}

.story-visual > p span {
  color: #6a6357;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.features {
  padding-top: 90px;
}

.section-heading {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: #71695c;
  font-size: 15px;
}

.feature {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: center;
  min-height: 530px;
  margin-top: 90px;
  background: var(--ink-soft);
  box-shadow: 0 25px 80px rgba(35, 27, 16, 0.18);
}

.feature-image {
  position: relative;
  height: 100%;
  min-height: 530px;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(17, 21, 25, 0.95));
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 1.2s var(--ease), filter 0.8s ease;
}

.feature:hover .feature-image img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.05);
}

.feature-index {
  position: absolute;
  left: 25px;
  bottom: 4px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.15);
  font: 500 110px/1 var(--display);
}

.feature-copy {
  position: relative;
  z-index: 2;
  padding: 60px 54px 60px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-copy h3 {
  margin: 0 0 22px;
  color: #f2eadb;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.feature-copy > p:not(.kicker) {
  margin: 0;
  font-size: 14px;
}

.feature-copy ul {
  margin: 34px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(196, 161, 93, 0.25);
}

.feature-copy li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 9px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.feature-copy li b {
  min-width: 36px;
  color: var(--gold-bright);
  font: 500 21px/1 var(--display);
}

.feature-deduce {
  grid-template-columns: 0.75fr 1.45fr;
}

.feature-deduce .feature-image {
  grid-column: 2;
  grid-row: 1;
}

.feature-deduce .feature-image::after {
  background: linear-gradient(270deg, transparent 55%, rgba(17, 21, 25, 0.95));
}

.feature-deduce .feature-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 60px 22px 60px 54px;
}

.acts {
  width: 100%;
  max-width: none;
  padding: 140px max(48px, calc((100vw - 1240px) / 2));
  color: #eee7db;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.acts-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/paris.webp") center 40% / cover no-repeat;
  opacity: 0.18;
  filter: grayscale(1);
}

.acts::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 10, 12, 0.98), rgba(8, 10, 12, 0.8), rgba(8, 10, 12, 0.95));
}

.section-heading-light h2 {
  color: #f2eadb;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.54);
}

.act-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.act-list li {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, transform 0.35s var(--ease);
}

.act-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width 0.45s var(--ease);
}

.act-list li:hover {
  z-index: 2;
  background: rgba(196, 161, 93, 0.1);
  transform: translateY(-5px);
}

.act-list li:hover::before {
  width: 100%;
}

.act-list span {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--gold);
  font: 500 11px/1 var(--display);
  letter-spacing: 0.18em;
}

.act-list b {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.act-list small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.characters {
  padding-bottom: 110px;
}

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

.character-card {
  position: relative;
  height: 540px;
  color: #fff;
  background: #17191a;
  overflow: hidden;
  cursor: default;
  outline: 0;
}

.character-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.65) 30%, transparent 68%);
}

.character-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(196, 161, 93, 0);
  transition: border-color 0.35s ease;
  pointer-events: none;
}

.character-card:hover::after,
.character-card:focus::after {
  border-color: rgba(196, 161, 93, 0.55);
}

.character-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: scale(1.03);
  filter: saturate(0.75) brightness(0.86);
  transition: transform 0.7s var(--ease), filter 0.7s ease;
}

.character-card:hover img,
.character-card:focus img {
  transform: scale(1.075) translateY(-5px);
  filter: saturate(0.92) brightness(0.96);
}

.character-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  transform: translateY(71px);
  transition: transform 0.55s var(--ease);
}

.character-card:hover > div,
.character-card:focus > div {
  transform: translateY(0);
}

.character-card span {
  color: var(--gold);
  font: 500 9px/1 var(--display);
  letter-spacing: 0.2em;
}

.character-card h3 {
  margin: 8px 0 16px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.character-card p {
  min-height: 62px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.75;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}

.character-card:hover p,
.character-card:focus p {
  opacity: 1;
}

.gallery {
  padding-top: 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 255px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  background: var(--ink);
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 8, 0.82), transparent 58%);
  transition: background 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.75s var(--ease), filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1);
}

.gallery-item span {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.gallery-item span::after {
  content: "+";
  color: var(--gold-bright);
  font: 300 24px/1 var(--sans);
}

.release {
  width: 100%;
  max-width: none;
  padding: 100px max(48px, calc((100vw - 1240px) / 2));
  background: #cec3b0;
}

.release-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 80px;
  padding: 78px;
  background:
    linear-gradient(120deg, rgba(10, 12, 14, 0.98), rgba(15, 21, 24, 0.92)),
    url("assets/images/island.webp") center / cover;
  box-shadow: 0 25px 70px rgba(43, 32, 19, 0.22);
}

.release h2 {
  color: #f3ecde;
}

.release-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.release-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.release-actions span {
  color: rgba(255, 255, 255, 0.42);
  font: 500 9px/1 var(--display);
  letter-spacing: 0.14em;
}

.release-badge {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--gold-bright);
  border: 1px solid rgba(196, 161, 93, 0.45);
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.14em;
}

.release-steam {
  margin-top: 28px;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(196, 161, 93, 0.34);
  border-left: 1px solid rgba(196, 161, 93, 0.34);
}

.platforms div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(196, 161, 93, 0.34);
  border-bottom: 1px solid rgba(196, 161, 93, 0.34);
}

.platforms span {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.platforms b {
  color: #f0e7d6;
  font: 500 17px/1 var(--display);
  letter-spacing: 0.08em;
}

.platforms small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.faq h2 {
  font-size: 42px;
}

.faq-list {
  border-top: 1px solid rgba(61, 51, 37, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(61, 51, 37, 0.22);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #28241d;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  letter-spacing: 0.04em;
}

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

.faq-list summary span {
  color: var(--gold-dark);
  font: 300 25px/1 var(--sans);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 27px;
  padding-right: 70px;
  color: #6a6256;
  font-size: 14px;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #050708;
  isolation: isolate;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/act8-ending.webp") center / cover no-repeat;
  opacity: 0.44;
  transform: scale(1.03);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(8, 11, 12, 0.35), rgba(5, 7, 8, 0.95) 80%);
}

.final-cta-content {
  width: min(760px, calc(100vw - 48px));
  padding: 60px 20px;
  text-align: center;
}

.final-cta-content > p {
  margin: 0 0 32px;
  color: var(--gold);
  font: 500 10px/1 var(--display);
  letter-spacing: 0.28em;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(33px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.final-cta strong {
  margin: 25px 0 40px;
  display: block;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5em;
}

.site-footer {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
  padding: 55px max(48px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.42);
  background: #07090a;
  border-top: 1px solid var(--line);
  font: 400 10px/1.7 var(--sans);
  letter-spacing: 0.04em;
}

.footer-brand img {
  width: 112px;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.65;
}

.footer-brand p {
  margin: 8px 0 0;
}

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

.footer-links a:hover {
  color: var(--gold-bright);
}

.copyright {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.lightbox {
  width: min(1180px, calc(100vw - 64px));
  max-width: none;
  padding: 0;
  color: #fff;
  background: #080a0b;
  border: 1px solid var(--line);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(2, 3, 4, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font: 300 24px/1 var(--sans);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.act-list .reveal:nth-child(2),
.character-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.act-list .reveal:nth-child(3),
.character-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.act-list .reveal:nth-child(4),
.character-grid .reveal:nth-child(4),
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.18s; }

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 56px, 980px);
  }

  .site-header,
  .site-header.scrolled {
    height: 74px;
    grid-template-columns: 1fr auto;
    padding: 0 28px;
    background: rgba(8, 10, 12, 0.92);
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 36px max(36px, 12vw);
    background: rgba(7, 9, 10, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(196, 161, 93, 0.2);
    font-size: 16px;
  }

  .header-actions {
    display: none;
  }

  .nav-tools {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle span:nth-child(2) {
    width: 18px;
  }

  .menu-toggle i {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .story {
    gap: 50px;
  }

  .feature,
  .feature-deduce {
    grid-template-columns: 1.3fr 0.9fr;
  }

  .feature-copy,
  .feature-deduce .feature-copy {
    padding-right: 34px;
    padding-left: 34px;
  }

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

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

  .character-card {
    height: 620px;
  }

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

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header,
  .site-header.scrolled {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
    background: rgba(8, 10, 12, 0.92);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy b {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle span:nth-child(2) {
    width: 18px;
  }

  .menu-toggle i {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 36px;
    background: rgba(7, 9, 10, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 18px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(196, 161, 93, 0.2);
    font-size: 17px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
  }

  .hero-backdrop {
    background-position: 61% center;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(3, 5, 7, 0.98) 0%, rgba(3, 5, 7, 0.7) 54%, rgba(3, 5, 7, 0.2) 100%),
      linear-gradient(90deg, rgba(3, 5, 7, 0.58), transparent 70%);
  }

  .hero-content {
    padding: 130px 0 70px;
  }

  .eyebrow {
    max-width: 300px;
    font-size: 9px;
  }

  .hero h1 span {
    font-size: clamp(44px, 14vw, 70px);
    letter-spacing: 0.02em;
  }

  .hero h1 small {
    margin-top: 17px;
    font-size: 23px;
    letter-spacing: 0.34em;
  }

  html[data-language="ja"] .hero h1 span,
  html[data-language="en"] .hero h1 span {
    font-size: clamp(39px, 11.5vw, 58px);
    line-height: 1.12;
  }

  html[data-language="en"] .hero h1 small {
    letter-spacing: 0.18em;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
    margin-top: 42px;
  }

  .hero-meta div,
  .hero-meta div:first-child {
    min-width: 0;
    padding: 0 15px;
    border-left: 1px solid rgba(196, 161, 93, 0.34);
  }

  .hero-meta div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-number {
    display: none;
  }

  .story,
  .section-heading,
  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story h2,
  .section-heading h2,
  .release h2 {
    font-size: 35px;
  }

  .story-copy > p:not(.kicker) {
    font-size: 15px;
  }

  .story blockquote {
    padding-left: 20px;
    font-size: 17px;
  }

  .story-visual {
    padding: 0;
  }

  .story-visual::before {
    display: none;
  }

  .story-visual > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .feature,
  .feature-deduce {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 42px;
  }

  .feature-image,
  .feature-deduce .feature-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .feature-image::after,
  .feature-deduce .feature-image::after {
    background: linear-gradient(0deg, rgba(17, 21, 25, 1), transparent 65%);
  }

  .feature-copy,
  .feature-deduce .feature-copy {
    padding: 0 26px 38px;
  }

  .feature-copy h3 {
    font-size: 28px;
  }

  .feature-index {
    font-size: 74px;
  }

  .acts {
    padding: 90px 18px;
  }

  .act-list {
    grid-template-columns: 1fr;
  }

  .act-list li {
    min-height: 145px;
  }

  .character-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .character-card {
    height: 410px;
  }

  .character-card > div {
    padding: 20px;
    transform: none;
  }

  .character-card p {
    display: none;
  }

  .character-card h3 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 175px;
    gap: 8px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-item span {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 11px;
  }

  .release {
    padding: 60px 18px;
  }

  .release-panel {
    gap: 48px;
    padding: 45px 24px;
  }

  .release-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .platforms div {
    min-height: 112px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta-bg {
    background-position: 62% center;
  }

  .final-cta strong {
    font-size: 18px;
    letter-spacing: 0.35em;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 24px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .copyright {
    justify-self: center;
    text-align: center;
  }

  .lightbox {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 430px) {
  .hero-meta div:nth-child(3) dd {
    font-size: 11px;
    letter-spacing: 0;
  }

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

  .character-card {
    height: 520px;
  }
}

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

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