:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --scene-rgb: 4, 7, 14;
  --surface-rgb: 8, 14, 25;
  --ink-rgb: 246, 247, 250;
  --muted-rgb: 171, 181, 199;
  --accent-rgb: 112, 102, 220;
  --accent-2-rgb: 116, 204, 232;
  --gold-rgb: 221, 187, 121;
  --danger-rgb: 255, 112, 132;
  --film-x: 0px;
  --film-y: 0px;
  --haze-x: 0px;
  --haze-y: 0px;
  --ui-x: 0px;
  --ui-y: 0px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  color: rgb(var(--ink-rgb));
  background: rgb(var(--scene-rgb));
}

:root[data-theme="light"] {
  color-scheme: light;
  --scene-rgb: 229, 235, 244;
  --surface-rgb: 249, 251, 255;
  --ink-rgb: 17, 28, 47;
  --muted-rgb: 83, 97, 121;
  --accent-rgb: 67, 93, 170;
  --accent-2-rgb: 54, 155, 191;
  --gold-rgb: 164, 119, 50;
}

* { box-sizing: border-box; }
html { width: 100%; min-width: 320px; min-height: 100%; background: rgb(var(--scene-rgb)); }
body {
  width: 100%;
  min-width: 320px;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  color: rgb(var(--ink-rgb));
  background: rgb(var(--scene-rgb));
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button { font: inherit; }
[hidden] { display: none; }

.cinema-world,
.cinema-world::before,
.cinema-world::after,
.cinema-haze,
.cinema-impact,
.cinema-grain,
.cinema-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.cinema-world {
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: rgb(var(--scene-rgb)) url("/cinema/cinema-tiger-dark-desktop.webp") 50% 50% / cover no-repeat;
}
.cinema-film {
  position: absolute;
  z-index: 1;
  inset: -12px;
  display: block;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  filter: saturate(1.06) contrast(1.08) brightness(.9);
  transform: translate3d(var(--film-x), var(--film-y), 0) scale(1.018);
  transition: opacity 1.25s ease;
  backface-visibility: hidden;
  will-change: opacity, transform;
}
body.has-cinema-film .cinema-film { opacity: 1; }
.cinema-world::before {
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 5, 12, .55) 0%, rgba(2, 5, 12, .16) 43%, rgba(2, 5, 12, .05) 68%, rgba(2, 5, 12, .24) 100%),
    linear-gradient(180deg, rgba(2, 5, 12, .2), transparent 24% 70%, rgba(2, 5, 12, .5));
}
.cinema-world::after {
  z-index: 2;
  content: "";
  opacity: .38;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(var(--gold-rgb), .14), transparent 32%);
  animation: atmosphere-breathe 9s ease-in-out infinite alternate;
}
.cinema-haze {
  z-index: 2;
  background:
    radial-gradient(ellipse at 18% 54%, rgba(var(--scene-rgb), .08), transparent 42%),
    radial-gradient(ellipse at 78% 70%, rgba(var(--accent-rgb), .09), transparent 38%);
  transform: translate3d(var(--haze-x), var(--haze-y), 0) scale(1.04);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.cinema-impact {
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 218, 144, .62), transparent 8%, rgba(225, 174, 80, .16) 19%, transparent 42%),
    radial-gradient(circle at 58% 38%, transparent 0 16%, rgba(255, 225, 165, .22) 16.4% 16.8%, transparent 17.2%);
  mix-blend-mode: screen;
  animation: impact-sync 15s linear infinite;
}
.cinema-grain {
  z-index: 2;
  opacity: .016;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  animation: grain-shift .42s steps(2) infinite;
}
.cinema-vignette { z-index: 4; box-shadow: inset 0 0 10vmax rgba(0, 0, 0, .32); }
.cinema-transition {
  position: fixed;
  z-index: 9;
  inset: -8%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), .26), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(var(--accent-2-rgb), .24), transparent 48%),
    rgb(var(--scene-rgb));
  filter: blur(20px);
  transform: scale(1.16);
  transition: opacity .82s ease, filter .82s ease, transform .82s cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="light"] .cinema-world { background-image: url("/cinema/cinema-tiger-light-desktop.webp"); }
:root[data-theme="light"] .cinema-film { filter: saturate(.94) contrast(1.015) brightness(1.01); }
:root[data-theme="light"] .cinema-world::before {
  background:
    linear-gradient(90deg, rgba(242, 247, 255, .58) 0%, rgba(238, 245, 255, .18) 42%, rgba(236, 243, 253, .04) 67%, rgba(226, 236, 250, .18) 100%),
    linear-gradient(180deg, rgba(240, 246, 255, .18), transparent 25% 70%, rgba(224, 234, 248, .34));
}
:root[data-theme="light"] .cinema-world::after { opacity: .22; }
:root[data-theme="light"] .cinema-impact {
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, .8), transparent 9%, rgba(132, 180, 220, .19) 21%, transparent 44%),
    radial-gradient(circle at 58% 38%, transparent 0 16%, rgba(114, 165, 210, .2) 16.4% 16.8%, transparent 17.2%);
}
:root[data-theme="light"] .cinema-vignette { box-shadow: inset 0 0 9vmax rgba(77, 93, 125, .1); }

.cinema-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1480px, 100%);
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 auto;
  padding:
    max(40px, calc(env(safe-area-inset-top) + 24px))
    max(48px, calc(env(safe-area-inset-right) + 30px))
    max(46px, calc(env(safe-area-inset-bottom) + 28px))
    max(48px, calc(env(safe-area-inset-left) + 30px));
  transform: translate3d(var(--ui-x), var(--ui-y), 0);
  transition: filter .7s ease, opacity .7s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.brand-signature {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  opacity: 0;
  transform: translateY(-12px);
  animation: signature-in 1.25s .65s cubic-bezier(.22, 1, .36, 1) forwards;
}
.brand-emblem {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), .54);
  border-radius: 50%;
  color: rgb(var(--gold-rgb));
  background: rgba(var(--surface-rgb), .28);
  box-shadow: inset 0 0 0 5px rgba(var(--ink-rgb), .025), 0 12px 38px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px) saturate(1.2);
}
.brand-emblem img { display: block; width: 42px; height: 42px; object-fit: contain; }
.brand-emblem > span { font-size: 14px; font-weight: 800; letter-spacing: -.05em; }
.brand-signature-copy { display: grid; gap: 4px; }
.brand-signature-copy strong { font-size: 14px; font-weight: 680; letter-spacing: .26em; }
.brand-signature-copy small { color: rgba(var(--muted-rgb), .7); font-size: 8px; font-weight: 680; letter-spacing: .42em; }

.brand-story {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: min(780px, 100%);
  margin: 4vh 0 0 clamp(0px, 3vw, 52px);
  text-align: left;
  perspective: 1000px;
}
.cinema-kicker {
  margin: 0 0 clamp(17px, 2.5vh, 28px);
  color: rgba(var(--gold-rgb), .82);
  font-size: clamp(8px, .62vw, 10px);
  font-weight: 650;
  letter-spacing: .56em;
  opacity: 0;
  animation: focus-in 1.35s 1.25s ease forwards;
}
.brand-story h1 {
  margin: 0;
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 690;
  letter-spacing: .1em;
  line-height: .98;
  white-space: nowrap;
}
.brand-story h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(105deg, rgb(var(--ink-rgb)) 0 34%, rgb(var(--gold-rgb)) 46%, rgb(var(--ink-rgb)) 58% 100%);
  background-position: 0 50%;
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  filter: blur(20px);
  transform: translate3d(-20px, 8px, -70px) scale(.96);
  animation: brand-focus 2.4s 1.7s cubic-bezier(.16, 1, .3, 1) forwards, brand-film-light 8.6s 4.8s ease-in-out infinite;
}
.brand-english {
  margin: clamp(15px, 2.2vh, 24px) 0 0;
  color: rgba(var(--muted-rgb), .75);
  font-size: clamp(9px, .82vw, 13px);
  font-weight: 580;
  letter-spacing: clamp(.34em, .78vw, .66em);
  opacity: 0;
  animation: focus-in 1.4s 3.1s ease forwards;
}
.brand-lightline {
  position: relative;
  display: block;
  width: min(260px, 42vw);
  height: 1px;
  margin: clamp(25px, 4.2vh, 44px) 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), .65), rgba(var(--muted-rgb), .12), transparent);
  opacity: 0;
  animation: line-reveal 1.45s 3.35s ease forwards;
}
.brand-lightline::after {
  position: absolute;
  inset: -1px auto -1px -35%;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(var(--ink-rgb)), transparent);
  animation: line-glide 7s 4s ease-in-out infinite;
}
.brand-story h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 430;
  letter-spacing: .22em;
  line-height: 1.25;
  opacity: 0;
  filter: blur(13px);
  transform: translateY(12px);
  animation: slogan-focus 2s 4.2s cubic-bezier(.16, 1, .3, 1) forwards;
}
.brand-note {
  margin: clamp(16px, 2.3vh, 24px) 0 0;
  color: rgba(var(--muted-rgb), .72);
  font-size: clamp(10px, .9vw, 13px);
  letter-spacing: .2em;
  opacity: 0;
  animation: focus-in 1.35s 5.45s ease forwards;
}

.entry-console {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  display: grid;
  width: min(420px, 100%);
  justify-items: stretch;
  opacity: 0;
  transform: translateY(18px);
  animation: console-in 1.35s 8.55s cubic-bezier(.22, 1, .36, 1) forwards;
}
.connection-state {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  margin: 0 0 14px 22px;
  color: rgba(var(--muted-rgb), .9);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: .12em;
}
.state-orb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--accent-2-rgb));
  box-shadow: 0 0 0 6px rgba(var(--accent-2-rgb), .08), 0 0 18px rgba(var(--accent-2-rgb), .62);
  animation: state-pulse 1.5s ease-in-out infinite;
}
.connection-state.is-ready { color: rgba(var(--ink-rgb), .92); }
.connection-state.is-ready .state-orb { background: rgb(var(--gold-rgb)); box-shadow: 0 0 0 6px rgba(var(--gold-rgb), .08), 0 0 18px rgba(var(--gold-rgb), .58); }
.enter-button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 0 27px 0 32px;
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), .24);
  border-radius: 999px;
  color: rgb(var(--ink-rgb));
  background: linear-gradient(112deg, rgba(var(--surface-rgb), .46), rgba(var(--surface-rgb), .22));
  box-shadow: inset 0 1px rgba(255, 255, 255, .18), 0 20px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(28px) saturate(1.28);
  cursor: pointer;
  transition: border-color .35s ease, box-shadow .35s ease, transform .25s ease, opacity .3s ease;
}
.enter-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .2) 48%, transparent 69%);
  transform: translateX(-130%);
}
.enter-button::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(var(--gold-rgb), .1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.enter-button:not(:disabled)::before { animation: button-glide 5.2s 1s ease-in-out infinite; }
.enter-button:disabled { opacity: .58; cursor: wait; }
.enter-button:not(:disabled):hover { border-color: rgba(var(--gold-rgb), .52); box-shadow: inset 0 1px rgba(255, 255, 255, .25), 0 24px 70px rgba(0, 0, 0, .28), 0 0 35px rgba(var(--gold-rgb), .08); transform: translateY(-2px); }
.enter-button:not(:disabled):active { transform: scale(.988); }
.enter-button > span:not(.enter-button-glow) { position: relative; z-index: 1; font-size: 14px; font-weight: 650; letter-spacing: .26em; }
.enter-button svg { position: relative; z-index: 1; width: 19px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.enter-button:not(:disabled):hover svg { transform: translateX(3px); }
.enter-button-glow { position: absolute; right: 12%; bottom: -35px; width: 115px; height: 58px; border-radius: 50%; background: rgba(var(--accent-2-rgb), .22); filter: blur(27px); }
.film-timeline { width: calc(100% - 34px); height: 1px; margin: 17px auto 0; overflow: hidden; background: rgba(var(--muted-rgb), .2); }
.film-timeline span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, rgba(var(--accent-2-rgb), .74), rgb(var(--gold-rgb))); box-shadow: 0 0 9px rgba(var(--gold-rgb), .42); }
.auto-hint { margin: 9px 0 0; color: rgba(var(--muted-rgb), .58); font-size: 8px; letter-spacing: .26em; text-align: center; }

.fault-state {
  position: fixed;
  z-index: 7;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  left: max(18px, env(safe-area-inset-left));
  width: min(460px, calc(100% - 36px));
  margin: auto;
  padding: 16px 18px;
  border: 1px solid rgba(var(--danger-rgb), .26);
  border-radius: 18px;
  color: rgb(var(--ink-rgb));
  background: rgba(var(--surface-rgb), .76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  backdrop-filter: blur(24px);
  text-align: center;
}
.fault-state strong { display: block; font-size: 12px; line-height: 1.6; }
.fault-state button { min-height: 44px; margin-top: 10px; padding: 0 18px; border: 1px solid rgba(var(--ink-rgb), .15); border-radius: 999px; color: inherit; background: rgba(var(--accent-rgb), .16); cursor: pointer; }
.enter-button:focus-visible,
.fault-state button:focus-visible { outline: 3px solid rgba(var(--accent-2-rgb), .78); outline-offset: 3px; }
.screen-reader-status { position: fixed; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

body.is-ready .brand-story h1 span { text-shadow: 0 0 62px rgba(var(--accent-2-rgb), .12); }
body.is-leaving .cinema-stage { opacity: 0; filter: blur(18px); transform: translate3d(var(--ui-x), var(--ui-y), 0) scale(1.055); }
body.is-leaving .cinema-world { animation: world-exit .72s ease forwards; }
body.is-leaving .cinema-transition { opacity: 1; filter: blur(0); transform: scale(1); }
body.is-suspended .cinema-impact,
body.is-suspended .cinema-grain,
body.is-suspended .cinema-world::after,
body.is-suspended .brand-lightline::after,
body.is-suspended .enter-button::before,
body.is-suspended .state-orb { animation-play-state: paused !important; }

@keyframes atmosphere-breathe { to { opacity: .72; transform: scale(1.06) translate3d(-1%, 1%, 0); } }
@keyframes grain-shift { 0% { transform: translate(0); } 25% { transform: translate(1.2%, -.8%); } 50% { transform: translate(-.8%, 1.1%); } 75% { transform: translate(.7%, .4%); } }
@keyframes signature-in { to { opacity: 1; transform: none; } }
@keyframes focus-in { from { opacity: 0; filter: blur(7px); } to { opacity: 1; filter: none; } }
@keyframes brand-focus { to { opacity: 1; filter: none; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes brand-film-light { 0%, 24% { background-position: 0 50%; } 60%, 100% { background-position: 100% 50%; } }
@keyframes slogan-focus { to { opacity: 1; filter: none; transform: none; } }
@keyframes line-reveal { to { opacity: 1; } }
@keyframes line-glide { 0%, 18% { transform: translateX(0); opacity: 0; } 42%, 68% { opacity: 1; } 88%, 100% { transform: translateX(650%); opacity: 0; } }
@keyframes console-in { to { opacity: 1; transform: none; } }
@keyframes state-pulse { 50% { opacity: .42; transform: scale(.72); } }
@keyframes button-glide { 0%, 19% { transform: translateX(-130%); } 52%, 100% { transform: translateX(150%); } }
@keyframes world-exit { to { filter: brightness(1.28) blur(3px); transform: scale(1.065); } }
@keyframes impact-sync {
  0%, 39% { opacity: 0; transform: scale(.76); filter: blur(9px); }
  42% { opacity: .08; }
  45.5% { opacity: .82; transform: scale(1.02); filter: blur(0); }
  48% { opacity: .18; transform: scale(1.3); }
  52%, 100% { opacity: 0; transform: scale(1.62); filter: blur(4px); }
}

@media (max-width: 820px) {
  .cinema-world { background-image: url("/cinema/cinema-tiger-dark-mobile.webp"); }
  :root[data-theme="light"] .cinema-world { background-image: url("/cinema/cinema-tiger-light-mobile.webp"); }
  .cinema-film { object-position: 50% 50%; }
  .cinema-world::before {
    background:
      linear-gradient(180deg, rgba(2, 5, 12, .24), transparent 22% 62%, rgba(2, 5, 12, .54)),
      radial-gradient(ellipse at 50% 48%, transparent 18%, rgba(2, 5, 12, .18) 68%, rgba(2, 5, 12, .34));
  }
  :root[data-theme="light"] .cinema-world::before {
    background:
      linear-gradient(180deg, rgba(239, 245, 254, .22), transparent 24% 62%, rgba(224, 234, 248, .4)),
      radial-gradient(ellipse at 50% 48%, transparent 18%, rgba(226, 236, 250, .08) 68%, rgba(226, 236, 250, .2));
  }
  .cinema-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding:
      max(22px, calc(env(safe-area-inset-top) + 15px))
      max(18px, calc(env(safe-area-inset-right) + 16px))
      max(28px, calc(env(safe-area-inset-bottom) + 18px))
      max(18px, calc(env(safe-area-inset-left) + 16px));
  }
  .brand-signature { grid-column: 1; grid-row: 1; gap: 11px; }
  .brand-emblem { width: 44px; height: 44px; }
  .brand-emblem img { width: 35px; height: 35px; }
  .brand-signature-copy strong { font-size: 12px; letter-spacing: .22em; }
  .brand-signature-copy small { font-size: 7px; letter-spacing: .34em; }
  .brand-story {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: 100%;
    margin: 1vh 0 0;
    text-align: center;
  }
  .cinema-kicker { margin-bottom: 15px; font-size: 8px; letter-spacing: .4em; }
  .brand-story h1 { font-size: clamp(43px, 13.5vw, 60px); letter-spacing: .1em; }
  .brand-english { margin-top: 12px; font-size: 8px; letter-spacing: .42em; }
  .brand-lightline { width: min(190px, 52vw); margin: 23px auto; background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .64), transparent); }
  .brand-story h2 { font-size: clamp(21px, 6.8vw, 30px); letter-spacing: .13em; }
  .brand-note { margin-top: 14px; font-size: 9px; letter-spacing: .12em; }
  .entry-console { grid-column: 1; grid-row: 3; width: min(350px, 100%); justify-self: center; }
  .connection-state { justify-self: center; margin-left: 0; }
  .enter-button { min-height: 58px; padding-right: 24px; padding-left: 28px; }
}

@media (max-height: 680px) {
  .cinema-stage { padding-top: max(18px, calc(env(safe-area-inset-top) + 10px)); padding-bottom: max(18px, calc(env(safe-area-inset-bottom) + 11px)); }
  .brand-emblem { width: 38px; height: 38px; }
  .brand-emblem img { width: 30px; height: 30px; }
  .brand-story { margin-top: 0; }
  .brand-story h1 { font-size: clamp(42px, 12vh, 72px); }
  .cinema-kicker { margin-bottom: 8px; }
  .brand-english { margin-top: 7px; }
  .brand-lightline { margin-top: 12px; margin-bottom: 12px; }
  .brand-note { margin-top: 9px; }
  .connection-state { margin-bottom: 8px; }
  .enter-button { min-height: 52px; }
  .film-timeline { margin-top: 10px; }
}

@media (max-height: 520px) and (orientation: landscape) {
  body { overflow-y: auto; }
  .cinema-stage { min-height: max(100svh, 470px); min-height: max(100dvh, 470px); }
}

@media (max-width: 360px) {
  .brand-story h1 { font-size: 42px; }
  .brand-story h2 { font-size: 20px; }
  .brand-note { max-width: 270px; margin-right: auto; margin-left: auto; }
  .entry-console { width: 100%; }
}

:root[data-motion="low"] .cinema-film { transform: none; transition-duration: .35s; }
:root[data-motion="low"] .cinema-grain { animation: none; opacity: .006; }
:root[data-motion="low"] .cinema-world::after { animation: none; }
:root[data-motion="low"] .cinema-impact { animation: none; }
:root[data-motion="low"] .brand-lightline::after,
:root[data-motion="low"] .enter-button::before,
:root[data-motion="low"] .state-orb { animation-duration: 10s; }
:root[data-motion="low"] body.is-leaving .cinema-world { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .cinema-grain,
  .cinema-impact,
  .cinema-world::after,
  .brand-lightline::after,
  .enter-button::before,
  .state-orb { animation-duration: 12s !important; animation-iteration-count: infinite !important; }
  .brand-signature,
  .cinema-kicker,
  .brand-story h1 span,
  .brand-english,
  .brand-lightline,
  .brand-story h2,
  .brand-note,
  .entry-console { animation-delay: 0s !important; animation-duration: .25s !important; animation-iteration-count: 1 !important; }
}
