/* ============================================================
 * MIYO 多语言落地页共享样式（独立完整，不依赖 apple.css）
 * 根目录英文页与所有语言子目录共用，语言差异通过 :lang() 处理。
 * ============================================================ */

:root {
  color-scheme: dark;
  --bg: #06070c;
  --surface-1: #0d0f17;
  --surface-2: #131622;
  --surface-3: #1b1e2d;
  --text: #f5f6f9;
  --text-2: #a3a7b6;
  --text-3: #767b8d;
  --brand: #ff3d2e;
  --brand-soft: #ff8b76;
  --brand-faint: rgba(255, 61, 46, 0.1);
  --cta: linear-gradient(135deg, #f44836, #d92c20);
  --cta-hover: linear-gradient(135deg, #ff5a47, #e63a2c);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --container: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: Inter, "PingFang SC", "Microsoft YaHei UI", "Segoe UI", sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="zh-CN"] body {
  font-family: Inter, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
}

html[lang="zh-TW"] body {
  font-family: Inter, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang TC", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
  font-variant-east-asian: traditional;
}

html[lang="ja"] body {
  font-family: Inter, "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
}

html[lang="ko"] body {
  font-family: Inter, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, Inter, sans-serif;
}

html:lang(zh-CN),
html:lang(zh-TW),
html:lang(ja),
html:lang(ko) {
  line-break: strict;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
a, button, summary { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 139, 118, 0.8);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ─────────────────────────── 导航 ─────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(6, 7, 12, 0.72), rgba(6, 7, 12, 0));
  transition: background 240ms ease, border-color 240ms ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 7, 12, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.brand-lockup img { width: 76px; height: auto; }

.nav-actions { display: flex; align-items: center; justify-self: end; }

.lang-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-menu-trigger {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 42px;
  gap: 9px;
  padding: 0 11px;
  border: 1px solid rgba(255, 139, 118, 0.24);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.16), rgba(19, 22, 34, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.18);
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.lang-menu-trigger:hover,
.lang-menu-trigger[aria-expanded="true"] {
  border-color: rgba(255, 139, 118, 0.62);
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.26), rgba(27, 30, 45, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.28);
}
.lang-menu-trigger:active { transform: translateY(1px); }
.lang-menu-globe { width: 16px; height: 16px; color: var(--brand-soft); }
.lang-menu-chevron { width: 14px; height: 14px; margin-left: auto; color: var(--text-3); transition: transform 180ms var(--ease); }
.lang-menu-trigger[aria-expanded="true"] .lang-menu-chevron { transform: rotate(180deg); }

.lang-menu-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 264px;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 139, 118, 0.28);
  border-radius: 14px;
  background: rgba(13, 15, 23, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.lang-menu-list[hidden] { display: none !important; }
.lang-menu-list a {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transition: background 160ms ease, color 160ms ease;
}
.lang-menu-list a:hover,
.lang-menu-list a:focus-visible {
  background: rgba(255, 139, 118, 0.12);
  color: var(--text);
}
.lang-menu-list a[aria-current="page"] {
  background: rgba(255, 61, 46, 0.18);
  color: #ffd1cb;
}

/* ─────────────────────────── HERO ─────────────────────────── */

.hero {
  --hero-poster-height: clamp(180px, 25svh, 270px);
  --hero-copy-poster-gap: clamp(16px, 2.4svh, 24px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: max(760px, 100svh);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -22%;
  left: 50%;
  z-index: 0;
  width: min(1100px, 130vw);
  aspect-ratio: 1.4;
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 38%, rgba(255, 61, 46, 0.17), rgba(120, 52, 120, 0.06) 46%, transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: clamp(88px, 10svh, 112px);
  right: 0;
  bottom: calc(var(--hero-poster-height) + var(--hero-copy-poster-gap));
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  text-align: center;
}

.hero-title {
  width: fit-content;
  max-width: min(100%, 1120px);
  margin: auto 0 0;
  padding-inline: 0.12em;
  font-size: var(--hero-title-size, clamp(50px, 6.2vw, 92px));
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.ht-want,
.ht-watch {
  display: inline-block;
  opacity: 0;
  animation: hero-rise 0.9s var(--ease) forwards;
  white-space: nowrap;
  will-change: transform, opacity;
}

.hero-copy.is-title-wrapped .ht-want,
.hero-copy.is-title-wrapped .ht-watch {
  width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* 纵览全球好片——冷调、开阔 */
.ht-want {
  position: relative;
  animation-delay: 0.08s;
  background: linear-gradient(to bottom, #f4f5f9 22%, #9498a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d6d8e0;
}

/* 无须等待片刻——品牌暖调 + 光晕 + 流动光泽 */
.ht-watch {
  position: relative;
  animation: hero-rise 0.9s var(--ease) 0.26s both, hero-sheen 5.5s linear 1.4s infinite;
  background: linear-gradient(96deg, #ff4a37 12%, #ff7a52 38%, #ffcf9f 50%, #ff7a52 62%, #ff3d2e 88%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand);
}

.ht-watch::before {
  position: absolute;
  inset: -18% -10% -22%;
  z-index: -1;
  content: "";
  background: radial-gradient(ellipse at 50% 55%, rgba(255, 80, 58, 0.4), rgba(255, 120, 70, 0.14) 46%, transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.ht-punctuation {
  position: absolute;
  top: 0;
  left: calc(100% + 0.03em);
}
.ht-want .ht-punctuation {
  -webkit-text-fill-color: #9498a8;
  color: #9498a8;
}
.ht-dot {
  -webkit-text-fill-color: var(--brand);
  color: var(--brand);
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(0.42em) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-sheen {
  to { background-position: -220% 0; }
}

.hero-lead {
  max-width: min(100%, 720px);
  margin: clamp(22px, 3.3svh, 30px) 0 0;
  color: var(--text-2);
  font-size: var(--hero-lead-size, clamp(17px, 1.45vw, 20px));
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.hero-meta {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 26px;
  color: var(--text-3);
  font-size: 13px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--brand-soft); }

/* 按钮 */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease, background 200ms ease, filter 200ms ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--cta);
  box-shadow: 0 14px 36px rgba(230, 45, 32, 0.28), inset 0 1px rgba(255, 255, 255, 0.24);
  color: #fff;
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 20px 48px rgba(230, 45, 32, 0.38), inset 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-2px);
}

.button-version {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

/* 海报墙（3D 倾斜无限滚动） */

.poster-wall {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: var(--hero-poster-height);
  overflow: hidden;
  opacity: 0.9;
  mask-image: linear-gradient(to bottom, transparent 0, black 46px, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 46px, black 82%, transparent);
}

.wall-plane {
  position: absolute;
  top: 34px;
  left: 50%;
  display: grid;
  gap: 18px;
  width: max(112vw, 1400px);
  transform: translateX(-50%) rotate(-3deg);
}

.wall-row {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: wall-scroll var(--speed, 90s) linear infinite;
  will-change: transform;
}
.wall-row[data-reverse] { animation-direction: reverse; }

@keyframes wall-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wall-row img {
  width: clamp(122px, 11.6vw, 164px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 300ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .wall-row img:hover { transform: translateY(-8px) scale(1.03); }
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: clamp(220px, 30svh, 330px);
  background: linear-gradient(to top, var(--bg) 3%, rgba(6, 7, 12, 0.82) 35%, transparent 100%);
  pointer-events: none;
}

/* ─────────────────────────── 数据条 ─────────────────────────── */

.stats { padding: clamp(30px, 5vw, 54px) 0 0; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-item {
  min-height: 108px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014) 55%);
}

.stat-item strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-item span {
  display: block;
  margin-top: 7px;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.55;
}

/* ─────────────────────────── 章节骨架 ─────────────────────────── */

.section { position: relative; padding: clamp(96px, 12vw, 150px) 0 0; }
.section:last-of-type { padding-bottom: clamp(96px, 12vw, 150px); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 52px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.section-head h2,
.cinema-copy h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.cinema-copy h2 { font-size: clamp(32px, 3.6vw, 50px); }

.section-head > p {
  max-width: 420px;
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 139, 118, 0.4);
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.8;
}

/* ─────────────────────────── Bento ─────────────────────────── */

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

.bento-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent 46%),
    linear-gradient(rgba(15, 17, 26, 0.92), rgba(9, 10, 17, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: border-color 240ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .bento-card:hover {
    border-color: rgba(255, 139, 118, 0.32);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 26px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-5px);
  }
}

.micro-label {
  display: inline-block;
  color: var(--brand-soft);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.bento-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bento-card p {
  max-width: 520px;
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
}

.bento-discover { grid-column: span 7; min-height: 520px; }
.bento-player { grid-column: span 5; min-height: 520px; }
.bento-meta, .bento-subtitles, .bento-local { grid-column: span 4; min-height: 330px; }

.bento-discover::after,
.bento-player::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}
.bento-discover::after { right: -100px; bottom: -150px; background: rgba(133, 83, 255, 0.16); }
.bento-player::after { top: -150px; right: -100px; background: rgba(255, 79, 56, 0.16); }

.search-demo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(100%, 430px);
  min-height: 54px;
  gap: 12px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(5, 6, 11, 0.9);
  color: var(--text-2);
  font-size: 13px;
}
.search-demo svg { width: 17px; height: 17px; color: var(--brand-soft); }
.search-demo .key-hint {
  margin-left: auto;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 11px;
}

.poster-rail {
  display: flex;
  width: max-content;
  gap: 14px;
  margin-top: 34px;
}
.poster-rail img {
  flex: none;
  width: 146px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.44);
}

.player-shell {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  overflow: hidden;
  height: 272px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #05060a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
.player-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4, 5, 9, 0.96), transparent 68%);
}
.player-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  opacity: 0.72;
  filter: saturate(0.88);
}
.player-controls {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  z-index: 2;
}
.player-controls .progress {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.player-controls .progress span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}
.player-controls .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11.5px;
}
.player-controls .icons { display: flex; gap: 14px; color: #d4d6de; }
.player-controls svg { width: 16px; height: 16px; }

.info-list, .language-stack, .local-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.info-row, .language-row, .local-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(4, 5, 10, 0.62);
  color: var(--text-2);
  font-size: 13px;
}
.info-row strong, .language-row strong, .local-row strong {
  color: var(--text);
  font-weight: 700;
}

.status-chip {
  padding: 5px 9px;
  border: 1px solid rgba(255, 139, 118, 0.3);
  border-radius: 999px;
  background: rgba(255, 61, 46, 0.09);
  color: var(--brand-soft);
  font-size: 10px;
  font-weight: 800;
}

/* ─────────────────────────── 三步开播 ─────────────────────────── */

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

.flow-card {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 60%);
  counter-increment: flow;
  transition: border-color 240ms ease, transform 240ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .flow-card:hover {
    border-color: rgba(255, 139, 118, 0.3);
    transform: translateY(-4px);
  }
}

.flow-card::before {
  display: block;
  content: "0" counter(flow);
  color: var(--brand-soft);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 34px;
  place-items: center;
  border: 1px solid rgba(255, 139, 118, 0.3);
  border-radius: 15px;
  background: rgba(255, 61, 46, 0.09);
  color: var(--brand-soft);
}
.flow-icon svg { width: 22px; height: 22px; }

.flow-card h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flow-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
}

/* ─────────────────────────── 画质面板 ─────────────────────────── */

.cinema-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(26, 28, 42, 0.96), rgba(9, 10, 17, 0.97));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cinema-poster {
  position: relative;
  overflow: hidden;
}
.cinema-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to right, transparent 38%, rgba(13, 14, 23, 0.99)),
    linear-gradient(to top, rgba(13, 14, 23, 0.9), transparent 42%);
}
.cinema-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  opacity: 0.8;
  filter: saturate(0.85);
}

.cinema-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 52px 64px 52px 28px;
}
.cinema-copy > p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.85;
}

.format-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.format-cloud span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  color: #cbcdd6;
  font-family: var(--mono);
  font-size: 11.5px;
}

/* ─────────────────────────── FAQ ─────────────────────────── */

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}
.faq-list details[open] {
  background: linear-gradient(90deg, rgba(255, 61, 46, 0.07), transparent 60%);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 20px 60px 20px 6px;
  color: var(--text);
  font-size: 17.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary:hover { color: var(--brand-soft); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  right: 10px;
  width: 26px;
  height: 26px;
  color: var(--brand-soft);
  content: "+";
  font-size: 25px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  transition: transform 200ms var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px 6px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.85;
}

/* ─────────────────────────── 尾声 CTA ─────────────────────────── */

.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 32px;
  border: 1px solid rgba(255, 139, 118, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% -30%, rgba(255, 61, 46, 0.24), transparent 58%),
    linear-gradient(rgba(18, 20, 31, 0.97), rgba(8, 9, 15, 0.99));
  text-align: center;
}

.final-panel::after {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(255, 255, 255, 0.02), 0 0 0 128px rgba(255, 255, 255, 0.012);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.final-panel > * { position: relative; z-index: 2; }

.final-panel > p {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.8;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

/* ─────────────────────────── 页脚 ─────────────────────────── */

.footer {
  padding: 46px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 100px; }
.footer-brand p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.75;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 11.5px;
}

/* 标题字号由 landing.js 按可用区域统一测量；这里只保留语言本身需要的排版差异。 */
html:not([lang^="zh"]) .ht-punctuation {
  position: static;
  margin-left: 0;
}
html[lang="hi"] .hero-title {
  line-height: 1.2;
  letter-spacing: -0.015em;
}
html:not([lang^="zh"]) .hero-meta { font-size: 12px; }
html:not([lang^="zh"]) .btn { min-height: 52px; font-size: 14px; }
html:not([lang^="zh"]) .stat-item strong { font-size: 16px; }
html:not([lang^="zh"]) .stat-item span { font-size: 12px; }
html:not([lang^="zh"]) .section-head h2,
html:not([lang^="zh"]) .final-panel h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
html:not([lang^="zh"]) .cinema-copy h2 { font-size: clamp(28px, 3.2vw, 42px); }
html:not([lang^="zh"]) .section-head > p,
html:not([lang^="zh"]) .cinema-copy > p { font-size: 14px; }
html:not([lang^="zh"]) .bento-card h3 { font-size: 20px; }
html:not([lang^="zh"]) .bento-card p,
html:not([lang^="zh"]) .flow-card p { font-size: 13px; }
html:not([lang^="zh"]) .flow-card h3 { font-size: 18px; }
html:not([lang^="zh"]) .faq-list summary { font-size: 16px; }
html:not([lang^="zh"]) .faq-list details p,
html:not([lang^="zh"]) .final-panel > p { font-size: 14px; }

/* ─────────────────────────── 入场动效 ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────── 响应式 ─────────────────────────── */

@media (max-width: 1040px) {
  .bento-discover, .bento-player { grid-column: span 12; }
  .bento-meta, .bento-subtitles { grid-column: span 6; }
  .bento-local { grid-column: span 12; min-height: 0; }

  .cinema-panel { grid-template-columns: 0.9fr 1.1fr; }
  .cinema-copy { padding-right: 40px; }

  .section-head { gap: 40px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }

  .container { width: min(calc(100% - 32px), var(--container)); }

  .nav-inner { min-height: 64px; }
  .brand-lockup img { width: 64px; }
  .lang-menu-trigger { width: max-content; min-height: 38px; gap: 6px; padding: 0 8px; border-radius: 10px; font-size: 11.5px; }
  .lang-menu-globe { width: 14px; height: 14px; }
  .lang-menu-chevron { width: 12px; height: 12px; }
  .lang-menu-list { width: min(264px, calc(100vw - 32px)); }

  .hero {
    --hero-poster-height: 220px;
    --hero-copy-poster-gap: 16px;
    min-height: max(760px, 100svh);
  }
  .hero-copy { top: 84px; }
  .hero-title { font-size: var(--hero-title-size, clamp(40px, 13vw, 64px)); line-height: 1.14; }
  .hero-lead { max-width: 520px; margin-top: 24px; font-size: var(--hero-lead-size, clamp(15px, 4.2vw, 17px)); line-height: 1.75; }
  .lead-break {
    display: inline;
    content: " ";
  }
  .hero-actions { width: 100%; }
  .hero-actions .btn, .final-actions .btn { width: min(100%, 380px); }

  .poster-wall { height: 220px; }
  .wall-plane { top: 30px; gap: 14px; }
  .wall-row { gap: 14px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-item { min-height: 0; padding: 18px; }
  .stat-item strong { font-size: 15px; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
  .section-head > p { padding-left: 18px; }

  .bento-card { padding: 26px; border-radius: 20px; }
  .bento-discover, .bento-player { min-height: 480px; }
  .bento-meta, .bento-subtitles { grid-column: span 12; min-height: 0; }
  .poster-rail img { width: 118px; }
  .player-shell { right: 18px; bottom: 18px; left: 18px; height: 240px; }

  .workflow { grid-template-columns: 1fr; }
  .flow-card { min-height: 0; padding: 28px 24px; }
  .flow-icon { margin-top: 22px; }

  .cinema-panel { grid-template-columns: 1fr; border-radius: 22px; }
  .cinema-poster { min-height: 300px; }
  .cinema-poster::after {
    background: linear-gradient(to top, rgba(13, 14, 23, 1) 16%, rgba(13, 14, 23, 0.6) 46%, transparent 82%);
  }
  .cinema-poster img { opacity: 0.66; }
  .cinema-copy { margin-top: -110px; padding: 0 26px 44px; }

  .faq-list summary { min-height: 74px; font-size: 15.5px; }

  .final-panel { border-radius: 22px; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-title { font-size: var(--hero-title-size, clamp(36px, 12.4vw, 52px)); }
  .wall-row img { width: 112px; }
}

@media (max-width: 760px) {
  html:not([lang^="zh"]) .section-head h2,
  html:not([lang^="zh"]) .final-panel h2 { font-size: clamp(30px, 9vw, 42px); }
  html:not([lang^="zh"]) .cinema-copy h2 { font-size: clamp(27px, 8vw, 38px); }
}

@media (max-width: 420px) {
  html[lang="hi"] .hero-title { line-height: 1.24; }
}

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

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

  .wall-row { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .ht-want, .ht-watch { opacity: 1; transform: none; animation: none; }
}
