/* ═══════════════════════════════════════════════════════════
   DayDreamer Production — 影片直播 × 影像製作
   Design language inherited from interactive-report template:
   paper-white surface / deep-navy ink / electric-blue accent,
   mono labels, hairline components. Live-red reserved for
   REC / ON AIR status only.
   ═══════════════════════════════════════════════════════════ */
:root {
  --paper: #ffffff;
  --paper-hi: #f7f9fc;
  --ink: #051c2c;
  --ink-md: #42566a;
  --ink-lo: #8595a6;
  --line: #dbe2ea;
  --line-lo: #eef1f6;
  --red: #2251ff;
  --red-hi: #1233b8;
  --blue: #2251ff;
  --blue-hi: #1233b8;
  --blue-lo: #7d9bff;
  --live: #e5484d;          /* semantic: REC tally / ON AIR only */
  --neg: #c22f4e;
  --serif: "et-book", "Iowan Old Style", Palatino, Georgia, "Songti TC", "Songti SC", "Noto Serif TC", "Noto Serif SC", "Source Han Serif TC", "SimSun", serif;
  --sans: "et-book", "Iowan Old Style", Palatino, Georgia, "Songti TC", "Noto Serif TC", "Noto Serif SC", serif;
  --mono: Menlo, Consolas, "SF Mono", "PingFang TC", "PingFang SC", "Noto Sans TC", "Noto Sans SC", "Microsoft JhengHei", "Microsoft YaHei", monospace;
  --shadow: 0 1px 2px rgba(5,28,44,.05), 0 8px 28px rgba(5,28,44,.07);
  --shadow-lg: 0 2px 6px rgba(5,28,44,.08), 0 18px 48px rgba(5,28,44,.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  --railw: 380px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(34,81,255,.15); }
b, strong { font-weight: 700; }
a { color: var(--blue); }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── 頂部導航 ── */
#top-rail {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .4s, transform .4s;
}
#top-rail.on { opacity: 1; transform: none; pointer-events: auto; }
.rail-brand { display: flex; align-items: center; }
.rail-brand img { height: 22px; width: auto; }
.rail-links { display: flex; gap: 4px; overflow-x: auto; }
.rail-links a {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--ink-md); text-decoration: none; white-space: nowrap;
  padding: 6px 12px; border-radius: 6px; border: 1.5px solid transparent;
  transition: all .18s;
}
.rail-links a:hover { color: var(--ink); border-color: var(--line); }
.rail-links a.active { color: var(--blue); border-color: var(--blue); background: rgba(34,81,255,.06); }

/* ── 封面 ── */
#cover { position: relative; min-height: 100vh; overflow: hidden; background: #04101c; }
.cover-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 38%;
  transform: scale(1.04);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-14px); }
}
.cover-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,16,28,.62) 0%, rgba(4,16,28,.42) 42%, rgba(4,16,28,.88) 100%);
}
#cover-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cover-inner {
  position: relative; z-index: 2; max-width: 1120px;
  margin: 0 auto; padding: 13vh 24px 60px;
}
.cover-logo {
  height: 46px; width: auto; margin-bottom: 34px;
  filter: invert(1) brightness(2);
}
.cover-kicker {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .28em;
  color: #8fb0ff; margin-bottom: 22px; text-transform: uppercase;
}
.cover-title {
  font-size: clamp(42px, 6.4vw, 76px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.01em; color: #fff;
  text-shadow: 0 2px 26px rgba(0,0,0,.35);
}
.cover-title .cover-num { color: #6f93ff; }
.cover-sub {
  font-size: clamp(17px, 2.1vw, 24px); font-weight: 700; color: rgba(255,255,255,.86);
  margin: 20px 0 24px;
}
.cover-lede { max-width: 640px; font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.8; }
.cover-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 24px; }
.chip {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--ink); border-radius: 6px; padding: 7px 13px; cursor: pointer;
  transition: all .15s; text-decoration: none; display: inline-block;
}
.chip:hover { background: var(--red); border-color: var(--red); color: #fff; }
#cover .chip {
  color: #fff; background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px);
}
#cover .chip:hover { background: var(--blue); border-color: var(--blue); }
#cover .chip-live { border-color: var(--live); color: #ffb3b5; }
#cover .chip-live:hover { background: var(--live); border-color: var(--live); color: #fff; }
.chip-cta { background: var(--blue); border-color: var(--blue); color: #fff !important; padding: 11px 20px; font-size: 14px; }
.chip-cta:hover { background: var(--blue-hi); }
.chip-tel { border-color: var(--blue); color: var(--blue) !important; padding: 11px 20px; font-size: 14px; }
.chip-tel:hover { background: var(--blue); border-color: var(--blue); color: #fff !important; }
.cover-anchor { font-size: 12.5px; color: rgba(255,255,255,.5); font-family: var(--mono); letter-spacing: .01em; }
.scroll-hint {
  margin-top: 6vh; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; align-items: center; gap: 8px; letter-spacing: .3em;
}
.scroll-hint span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(#6f93ff, transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── 章節 ── */
.band { padding: 64px 0 72px; border-top: 1px solid var(--line-lo); }
.prose { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.wide { max-width: 1080px; margin: 26px auto 0; padding: 0 24px; }
.wide.xl { max-width: 1240px; }
.sec-no {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .26em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 14px;
}
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
.sub-h { font-size: 20px; margin: 34px 0 12px; }
.dek { font-size: 18.5px; color: var(--ink-md); line-height: 1.72; margin-bottom: 18px; }
.dek strong { color: var(--ink); }
.prose p { margin-bottom: 15px; }
.muted { color: var(--ink-lo); }
.note-box {
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  background: var(--paper-hi); border-radius: 6px; padding: 14px 18px;
  font-size: 15px; color: var(--ink-md); margin: 18px 0;
}
.colophon { font-family: var(--mono); font-size: 12px; color: var(--ink-lo); margin-top: 34px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 8px; }

/* ── 數字統計 ── */
.now-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.now-cell {
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper-hi);
  padding: 22px 20px 18px; box-shadow: var(--shadow);
}
.now-cell .n-v {
  font-family: var(--mono); font-weight: 700; font-size: 38px; color: var(--blue);
  font-variant-numeric: tabular-nums; line-height: 1.1;
}
.now-cell .n-v small { font-size: 16px; color: var(--blue-hi); margin-left: 2px; }
.now-cell .n-l { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink); margin-top: 8px; letter-spacing: .04em; }
.now-cell .n-s { font-size: 13.5px; color: var(--ink-lo); margin-top: 4px; line-height: 1.55; }

/* ── 服務卡 ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--paper); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card .svc-img { height: 210px; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 20px 20px 22px; }
.svc-tag {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; padding: 3px 9px; border-radius: 4px; margin-bottom: 12px;
  color: var(--blue); border: 1px solid var(--blue-lo); background: rgba(34,81,255,.06);
}
.svc-card.lead .svc-tag { color: #fff; background: var(--live); border-color: var(--live); }
.svc-card.lead { border-color: rgba(229,72,77,.45); }
.svc-body h3 { font-size: 21px; margin-bottom: 8px; }
.svc-body p { font-size: 14.5px; color: var(--ink-md); line-height: 1.7; }
.svc-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.svc-list span {
  font-family: var(--mono); font-size: 11px; color: var(--ink-md);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; background: var(--paper-hi);
}

/* ── 直播能力 ── */
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; margin-top: 8px; }
.cap-cell {
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px;
  background: var(--paper); box-shadow: var(--shadow);
}
.cap-cell .c-t { font-weight: 700; font-size: 15.5px; margin-bottom: 5px; }
.cap-cell .c-t::before { content: "◉ "; color: var(--live); }
.cap-cell .c-d { font-size: 13.5px; color: var(--ink-md); line-height: 1.65; }

/* ── 案例展廊 ── */
.gallery-grid { columns: 3; column-gap: 14px; }
.g-item {
  position: relative; break-inside: avoid; margin-bottom: 14px;
  border-radius: 10px; overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.g-item img { width: 100%; transition: transform .5s; }
.g-item:hover img { transform: scale(1.04); }
.g-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 10px;
  background: linear-gradient(transparent, rgba(4,16,28,.82));
  color: #fff; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .03em;
  opacity: 0; transition: opacity .25s;
}
.g-item:hover .g-cap { opacity: 1; }
.g-item .g-no {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  color: #fff; background: rgba(4,16,28,.55); border-radius: 4px; padding: 2px 7px;
  backdrop-filter: blur(3px);
}

/* 燈箱 */
#lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,16,28,.92); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 4vh 4vw;
}
#lightbox[hidden] { display: none; }
#lightbox img { max-width: min(1100px, 92vw); max-height: 80vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
#lightbox .lb-cap { color: rgba(255,255,255,.85); font-family: var(--mono); font-size: 13px; letter-spacing: .05em; }
#lightbox .lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5); background: transparent; color: #fff;
  font-size: 15px; cursor: pointer; transition: all .18s;
}
#lightbox .lb-close:hover { background: var(--live); border-color: var(--live); }

/* ── 客戶跑馬燈 ── */
.marquee {
  overflow: hidden; border: 1px solid var(--line); background: var(--paper);
  position: relative;
}
.marquee + .marquee { border-top: none; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.marquee-track { display: flex; width: max-content; animation: mq 46s linear infinite; }
#marquee-b .marquee-track { animation-duration: 54s; animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 108px; width: auto; flex: none; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 團隊 ── */
.crew-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.crew-card {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--paper); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.crew-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.crew-photo { aspect-ratio: 1; overflow: hidden; background: var(--paper-hi); }
.crew-photo img { width: 100%; height: 100%; object-fit: cover; }
.crew-body { padding: 16px 16px 18px; }
.crew-name { font-size: 19px; font-weight: 700; }
.crew-role {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--blue); margin: 4px 0 10px; text-transform: uppercase;
}
.crew-exp {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  color: var(--ink); background: var(--paper-hi); border: 1px solid var(--line);
  border-radius: 4px; padding: 2px 8px; margin-bottom: 10px;
}
.crew-bio { font-size: 13px; color: var(--ink-md); line-height: 1.7; }

/* ── ON AIR 儀表欄 ── */
#dash-rail { display: none; }
#drill-card { display: none; }

/* ── 封面入場（倒數結束後依次浮現） ── */
body.pre-enter .cover-inner > * { opacity: 0; }
body.entered .cover-inner > * { animation: covUp .9s cubic-bezier(.2,.7,.3,1) both; }
body.entered .cover-inner > *:nth-child(1) { animation-delay: .05s; }
body.entered .cover-inner > *:nth-child(2) { animation-delay: .14s; }
body.entered .cover-inner > *:nth-child(3) { animation-delay: .24s; }
body.entered .cover-inner > *:nth-child(4) { animation-delay: .34s; }
body.entered .cover-inner > *:nth-child(5) { animation-delay: .44s; }
body.entered .cover-inner > *:nth-child(6) { animation-delay: .56s; }
body.entered .cover-inner > *:nth-child(7) { animation-delay: .66s; }
body.entered .cover-inner > *:nth-child(8) { animation-delay: .76s; }
@keyframes covUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
body.entered .cover-bg { animation: heroDrift 26s ease-in-out infinite alternate, heroReveal 1.6s ease-out both; }
@keyframes heroReveal { from { filter: brightness(.4) saturate(.6); } to { filter: none; } }

/* ── GEO 摘要：視覺隱藏但可供搜尋引擎與 AI 爬蟲讀取 ── */
.geo-summary {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; margin: -1px; padding: 0; border: 0;
}

/* ── 滾動揭示（scroll reveal） ── */
.rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s ease var(--d, 0s), transform .7s cubic-bezier(.2,.7,.3,1) var(--d, 0s);
  will-change: opacity, transform;
}
.rv.in { opacity: 1; transform: none; }
/* 標題下劃線掃入 */
.band h2::after {
  content: ""; display: block; width: 0; height: 3px; border-radius: 2px;
  background: var(--blue); margin-top: 12px;
  transition: width .8s cubic-bezier(.2,.7,.3,1) .3s;
}
.band h2.in::after { width: 64px; }
/* 展廊照片：浮現 + 輕微縮放 */
.gallery-grid .rv { transform: translateY(34px) scale(.97); }
.gallery-grid .rv.in { transform: none; }
/* 章節分隔線掃入 */
.band { position: relative; }
.band::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0;
  background: var(--blue); opacity: .5;
  transition: width 1.1s cubic-bezier(.2,.7,.3,1);
}
.band.in-view::before { width: 100%; }

/* ── Hover 微互動 ── */
.chip { transition: all .15s, transform .18s; }
.chip:hover { transform: translateY(-2px); }
.now-cell { transition: transform .25s, box-shadow .25s, border-color .25s; }
.now-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-lo); }
.cap-cell { transition: transform .22s, border-color .22s, box-shadow .22s; }
.cap-cell:hover { transform: translateY(-3px); border-color: var(--blue-lo); box-shadow: var(--shadow-lg); }
.crew-photo img { transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.crew-card:hover .crew-photo img { transform: scale(1.07); }
.g-item { transition: box-shadow .25s; }
.g-item:hover { box-shadow: var(--shadow-lg); }
.g-item:hover .g-no { background: var(--blue); }
.marquee img { transition: filter .3s; }
.marquee:hover img { filter: saturate(1.15); }

/* ── 進場倒數 slate ── */
#intro {
  position: fixed; inset: 0; z-index: 300;
  background: #04101c;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s;
}
#intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
#intro::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 3px);
}
.intro-frame { position: absolute; inset: 22px; pointer-events: none; }
.intro-frame::before, .intro-frame::after,
.intro-center::before, .intro-center::after {
  content: ""; position: absolute; width: 34px; height: 34px;
  border: 2px solid rgba(255,255,255,.45);
}
.intro-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.intro-frame::after { top: 0; right: 0; border-left: none; border-bottom: none; }
.intro-center { position: relative; text-align: center; padding: 60px 90px; }
.intro-center::before { bottom: -38px; left: calc(50% - 46vw); border-right: none; border-top: none; display: none; }
.intro-center::after { display: none; }
.intro-logo {
  height: 30px; width: auto; margin: 0 auto 40px;
  filter: invert(1) brightness(2); opacity: .85;
}
.intro-num {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(110px, 22vw, 200px); line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums; min-height: 1em;
}
.intro-num.tick { animation: numPop .82s cubic-bezier(.2,.7,.3,1) both; }
@keyframes numPop {
  0% { opacity: 0; transform: scale(1.55); }
  18% { opacity: 1; transform: scale(1); }
  78% { opacity: 1; }
  100% { opacity: 0; transform: scale(.92); }
}
.intro-onair {
  display: none;
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(54px, 11vw, 110px); letter-spacing: .12em; color: var(--live);
  text-shadow: 0 0 34px rgba(229,72,77,.55);
}
.intro-onair.show { display: block; animation: onAirFlash 1s both; }
@keyframes onAirFlash {
  0% { opacity: 0; transform: scale(1.25); }
  22% { opacity: 1; transform: scale(1); }
  40% { opacity: .25; } 52% { opacity: 1; }
  64% { opacity: .35; } 76% { opacity: 1; }
  100% { opacity: 1; }
}
.intro-sub {
  margin-top: 34px; font-family: var(--mono); font-size: 12px;
  letter-spacing: .3em; color: rgba(255,255,255,.55);
}
.intro-meta {
  position: absolute; left: 34px; right: 34px; top: 34px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.8);
  font-variant-numeric: tabular-nums;
}
.intro-rec { display: flex; align-items: center; gap: 8px; color: #ff8a8d; }
.intro-rec i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--live);
  animation: recBlink .7s steps(1) infinite;
}
@keyframes recBlink { 50% { opacity: .12; } }
#intro-skip {
  position: absolute; right: 34px; bottom: 30px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.6); background: transparent;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 6px;
  padding: 8px 14px; cursor: pointer; transition: all .18s;
}
#intro-skip:hover { color: #fff; border-color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .intro-num.tick, .intro-onair.show, .intro-rec i { animation: none; }
  #intro { transition: none; }
}

/* ── 響應式 ── */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { columns: 1; }
  .crew-grid { grid-template-columns: 1fr; }
  .rail-links a { padding: 5px 8px; font-size: 11px; }
}
@media (min-width: 1560px) {
  #top-rail { right: var(--railw); }
  main { margin-right: var(--railw); }
  #dash-rail {
    display: block; position: fixed; top: 0; right: 0; bottom: 0; width: var(--railw);
    border-left: 1px solid var(--line); background: var(--paper-hi); z-index: 60;
    opacity: 0; visibility: hidden; transition: opacity .4s;
  }
  #dash-rail canvas { width: 100%; height: 100%; display: block; }
}

/* ── 減少動效 ── */
@media (prefers-reduced-motion: reduce) {
  .cover-bg { animation: none; }
  .marquee-track { animation: none; }
  .scroll-hint span { animation: none; }
  html { scroll-behavior: auto; }
  /* 關閉所有揭示與入場動畫，直接顯示 */
  body.pre-enter .cover-inner > * { opacity: 1; }
  body.entered .cover-inner > * { animation: none; }
  body.entered .cover-bg { animation: none; }
  .rv { opacity: 1 !important; transform: none !important; transition: none; }
  .band h2::after { width: 64px; transition: none; }
  .band::before { width: 100%; transition: none; }
  .chip:hover, .now-cell:hover, .cap-cell:hover { transform: none; }
  .crew-card:hover .crew-photo img, .g-item:hover img, .svc-card:hover .svc-img img { transform: none; }
}
