:root {
  --ink: #101112;
  --ink-soft: #191b1d;
  --paper: #f4f1ea;
  --paper-bright: #fbfaf6;
  --white: #ffffff;
  --muted: #787a7b;
  --line: rgba(16, 17, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --faint: rgba(255, 255, 255, 0.12);
  --gold: #d4a14a;
  --coral: #ff6b4a;
  --mint: #9ee4c8;
  --max: 1240px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}* {
  box-sizing: border-box;
}html {
  scroll-behavior: smooth;
  background: var(--ink);
}body {
  margin: 0;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}body.menu-open {
  overflow: hidden;
}img {
  display: block;
  max-width: 100%;
}a {
  color: inherit;
  text-decoration: none;
}button, input, select, textarea {
  font: inherit;
  letter-spacing: 0;
}button, a {
  -webkit-tap-highlight-color: transparent;
}:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 400ms var(--ease);
}.skip-link:focus {
  transform: translateY(0);
}.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  color: var(--paper-bright);
  background: rgba(16, 17, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}.desktop-nav {
  justify-self: center;
}.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}.brand-copy {
  display: grid;
  line-height: 1.2;
}.brand-copy strong {
  font-size: 14px;
  font-weight: 700;
}.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}.desktop-nav a {
  position: relative;
  transition: color 400ms var(--ease);
}.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease);
}.desktop-nav a:hover {
  color: var(--white);
}.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}.header-cta:hover {
  background: var(--paper-bright);
  transform: translateY(-2px);
}.menu-toggle, .mobile-menu {
  display: none;
}.hero {
  position: relative;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(720px 420px at 88% 6%, rgba(158, 228, 200, 0.12), transparent 60%),
    linear-gradient(135deg, #101112 0%, #151718 58%, #1b1814 100%);
  padding: 64px 0 72px;
}.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 440px;
}.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  animation: hero-img-in 0.9s var(--ease) both;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease), border-color 500ms var(--ease);
}.hero-gallery__main { animation-delay: 0.08s; }.hero-gallery__side1 { animation-delay: 0.2s; }.hero-gallery__side2 { animation-delay: 0.32s; }.hero-gallery img:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.55);
}

@keyframes hero-img-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}.hero-content .eyebrow, .hero-content h1, .hero-content .hero-lede, .hero-content .hero-social {
  animation: hero-copy-in 0.9s var(--ease) both;
}.hero-content h1 { animation-delay: 0.12s; }.hero-content .hero-lede { animation-delay: 0.28s; }.hero-content .hero-social { animation-delay: 0.4s; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}.hero-gallery__main { grid-column: 1; grid-row: 1 / span 2; }.hero-gallery__side1 { grid-column: 2; grid-row: 1; }.hero-gallery__side2 { grid-column: 2; grid-row: 2; }.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--coral);
}.hero h1, .section h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-weight: 700;
  letter-spacing: 0;
}.hero h1 {
  max-width: 850px;
  font-size: 64px;
  line-height: 1.08;
}.hero-tag {
  display: inline-block;
  margin: 6px 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
}.hero-lede {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
  white-space: nowrap;
}/* hero 荣誉数据条：抖音粉丝数，珊瑚色呼应 eyebrow，数字自证 */
.hero-social {
  margin: 14px 0 0;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 8px 8px 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 600ms var(--ease), color 600ms var(--ease), background 600ms var(--ease);
}.button:hover {
  transform: translateY(-3px);
}.button:active {
  transform: scale(0.98);
}.problem-strip {
  display: block;
  text-align: center;
  color: var(--ink);
  background: var(--mint);
}.problem-strip p {
  margin: 0;
  padding: 18px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  letter-spacing: 0.3px;
}.problem-strip p::before, .problem-strip p::after {
  content: "✦";
  display: inline-block;
  margin: 0 16px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.55;
  vertical-align: 2px;
}

@media (max-width: 767px) {.problem-strip p { white-space: normal; }.problem-strip p::before, .problem-strip p::after { display: none; }
}.section {
  width: 100%;
  padding: 64px max(24px, calc((100% - var(--max)) / 2));
}.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.7fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}.section-heading h2 {
  font-size: 28px;
  line-height: 1.28;
}.section-heading #fitTitle, .section-heading #servicesTitle {
  white-space: nowrap;
  font-size: 24px;
}.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}.service-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 74px;
  padding: 0 20px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: color 500ms var(--ease), background 500ms var(--ease);
}.service-tab:last-child {
  border-right: 0;
}.service-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 600ms var(--ease);
}.service-tab span {
  color: var(--coral);
  font-size: 11px;
}.service-tab:hover, .service-tab.is-active {
  color: var(--ink);
  background: rgba(16, 17, 18, 0.035);
}.service-tab.is-active::after {
  transform: scaleX(1);
}.section.services {
  --accent: #ff6b4a;
}.service-stage {
  margin-top: 32px;
}.service-panel {
  display: block;
  padding: 56px max(24px, calc((100% - var(--max)) / 2));
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}/* 仅短剧拍摄：正文黑底（其余三个 panel 保留各自 accent 混色背景） */
.service-panel[data-panel="shoot"] {
  background: #0b0b0d;
}.service-panel[hidden] {
  display: none;
}.service-credentials {
  max-width: 880px;
  margin: 0 auto;
}.service-pitch {
  margin: 0 0 36px;
  max-width: 720px;
  color: var(--paper-bright);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
  text-indent: 2em;
  letter-spacing: 0.01em;
}.service-panel.is-entering {
  animation: panel-in 700ms var(--ease) both;
}.fit {
  padding-bottom: 28px;
}.fit-stage {
  position: relative;
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
}.fit-tabs {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.fit-tab {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(16, 17, 18, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}.fit-tab:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
}.fit-tab--quick.is-active {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}.fit-tab--algo.is-active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}.fit-tab--custom.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}.fit-tab--data.is-active {
  background: #7f77dd;
  color: var(--white);
  border-color: #7f77dd;
}.fit-tab--full.is-active {
  background: #1d9e75;
  color: var(--white);
  border-color: #1d9e75;
}.fit-tab--faq.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}.fit-panel {
  grid-area: 1 / 1;
  min-height: 410px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}.fit-panel.is-active {
  opacity: 1;
  visibility: visible;
}.fit-panel--quick {
  color: var(--ink);
  background: var(--mint);
}.fit-panel--algo {
  color: var(--white);
  background: var(--coral);
}.fit-panel--custom {
  color: var(--ink);
  background: var(--gold);
}.fit-panel--data {
  color: var(--white);
  background: #7f77dd;
}.fit-panel--full {
  color: var(--white);
  background: #1d9e75;
}/* FAQ 面板（WHY US 第 1 项）：黑底白字 + 主色珊瑚点缀，压得住整排彩色卖点块 */
.fit-panel--faq {
  color: var(--white);
  background: var(--ink);
}.fit-panel--faq .fit-panel__body {
  padding-top: 86px;
  text-align: left;
}.fit-panel--faq .fit-pitch {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}.fit-panel--faq .fit-pitch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: var(--coral);
}/* 桌面两列网格铺排：去掉内滚小框，内容自然铺满，Q 标记 + 淡分隔线 */
.fit-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 16px;
  align-content: start;
  margin: 0;
}.fit-faq__item {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}.fit-faq dt {
  position: relative;
  padding-left: 24px;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}.fit-faq dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}.fit-faq dd {
  margin: 0 0 0 24px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}.fit-panel__body {
  flex: 1;
  padding: 110px 42px 40px;
  text-align: left;
}/* 前 5 个卖点面板：左标题右正文分栏（杂志式布局），内容垂直居中；
   旧的逐面板 padding-top 微调已由 align-content:center 取代，删除 */
.fit-panel--quick .fit-panel__body, .fit-panel--algo .fit-panel__body, .fit-panel--custom .fit-panel__body, .fit-panel--data .fit-panel__body, .fit-panel--full .fit-panel__body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  column-gap: 52px;
  align-items: center;
  align-content: center;
}.fit-pitch {
  position: relative;
  margin: 0 0 18px;
  padding-left: 14px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  opacity: 0.92;
}/* 竖条标记：与 FAQ 标题同款，颜色随面板文字色自动适配（currentColor） */
.fit-pitch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  border-radius: 2px;
  background: currentColor;
}.fit-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.9;
  text-align: left;
  text-indent: 2em;
}.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 9;
  padding: 34px max(24px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}.footer-filing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}.footer-filing a {
  color: inherit;
  text-decoration: none;
}.footer-loc {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.5px;
}.footer-loc b {
  color: var(--gold);
  font-weight: 700;
}.footer-copy {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}.site-footer > a {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}.site-footer > a.footer-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}.site-footer > a.footer-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  background: #e9b85a;
}.site-footer > a:hover {
  color: var(--white);
}.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from { opacity: 0.42; transform: scale(1.0); }
  to { opacity: 1; transform: scale(1.0); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {.site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    min-height: 70px;
  }.desktop-nav {
    display: none;
  }.header-cta {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    align-self: center;
    gap: 6px;
    padding: 6px 10px 6px 14px;
    font-size: 12px;
  }.menu-toggle {
    position: relative;
    grid-column: 3;
    grid-row: 1;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
  }.menu-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 500ms var(--ease);
  }.menu-toggle span:first-child {
    top: 17px;
  }.menu-toggle span:last-child {
    top: 25px;
  }.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }.mobile-menu {
    position: fixed;
    inset: 70px 0 0;
    z-index: 9;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(16, 17, 18, 0.97);
    backdrop-filter: blur(20px);
  }.mobile-menu[hidden] {
    display: none;
  }.mobile-menu nav {
    display: grid;
    gap: 18px;
    width: min(420px, calc(100% - 40px));
  }.mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Songti SC", "STSong", serif;
    font-size: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: menu-link-in 600ms var(--ease) forwards;
  }.mobile-menu a:nth-child(2) { animation-delay: 60ms; }.mobile-menu a:nth-child(3) { animation-delay: 120ms; }.mobile-menu a:nth-child(4) { animation-delay: 180ms; }.mobile-menu a:nth-child(5) { animation-delay: 240ms; color: var(--gold); }.hero h1 {
    font-size: 56px;
  }.section-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }.section-heading > p:last-child {
    grid-column: 2;
  }.service-panel {
    grid-template-columns: 1fr;
  }


  @keyframes menu-link-in {
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 767px) {main {
    width: 100%;
    margin: 0;
    padding: 108px 0 120px;
  }body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }.site-header {
    padding: 0 16px;
  }.brand-copy strong {
    font-size: 13px;
  }.hero {
    padding: 52px 0 44px;
  }.hero-grid {
    background-size: 56px 56px;
  }.hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }.hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0;
    text-align: left;
  }.hero-gallery {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 190px;
  }.hero-gallery__main, .hero-gallery__side1, .hero-gallery__side2 {
    grid-column: auto;
    grid-row: 1;
  }.eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }.hero h1 {
    font-size: 26px;
    line-height: 1.22;
  }.hero-br-line {
    display: none;
  }.hero-tag {
    display: inline;
    margin: 0 0 0 .45em;
    font-size: .62em;
    letter-spacing: 2px;
    vertical-align: middle;
  }.hero-lede {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    white-space: normal;
  }.button {
    min-height: 50px;
    padding-left: 20px;
  }.problem-strip p {
    padding: 18px 16px;
    font-size: 13px;
  }.section {
    width: 100%;
    padding: 20px max(24px, calc((100% - var(--max)) / 2));
  }.section-heading {
    display: block;
    margin-bottom: 14px;
  }.section-heading h2 {
    font-size: 16px;
  }.section-heading > p:last-child {
    margin-top: 18px;
  }.service-tabs {
    grid-template-columns: repeat(4, 1fr);
  }.service-tab {
    min-height: 56px;
    gap: 6px;
    padding: 0 6px;
    font-size: 12px;
  }.service-stage {
    margin-top: 20px;
  }.service-panel {
    min-height: 0;
    border-radius: 6px;
  }.fit {
    padding-bottom: 28px;
  }.fit-stage {
    border-radius: 6px;
  }/* 移动端标签改 3×2 网格：6 个胶囊正好两行，不甩孤行；绝对定位须显式限宽，否则网格按内容撑开 */
  .fit-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: calc(100% - 32px);
  }.fit-tab {
    padding: 8px 4px;
    font-size: 12px;
    text-align: center;
  }.fit-panel {
    min-height: 0;
  }/* 非激活面板移出文档流：块高只由当前激活面板决定，
     否则 6 个面板同格堆叠会互相拉高到最高（FAQ），短面板上下全是空白 */
  .fit-panel:not(.is-active) {
    position: absolute;
    inset: 0;
    width: 100%;
  }.fit-panel__body {
    padding: 144px 24px 24px;
  }/* 前 5 个面板移动端退化为单列：标题在上、正文在下 */
  .fit-panel--quick .fit-panel__body, .fit-panel--algo .fit-panel__body, .fit-panel--custom .fit-panel__body, .fit-panel--data .fit-panel__body, .fit-panel--full .fit-panel__body {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }.fit-panel--faq .fit-panel__body {
    padding-top: 144px;
  }.fit-panel--faq .fit-pitch {
    margin-bottom: 16px;
    font-size: 19px;
  }.fit-faq {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }.fit-faq dt {
    font-size: 13.5px;
  }.fit-faq dd {
    font-size: 12.5px;
  }.fit-pitch {
    font-size: 22px;
  }.site-footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
  }.site-footer > a.footer-top {
    position: static;
    order: -1;
    right: auto;
    bottom: auto;
    padding: 0;
    background: transparent;
    color: var(--gold);
    border-radius: 0;
    box-shadow: none;
    font-size: 12px;
  }.footer-filing {
    justify-content: center;
    line-height: 1.6;
  }.site-footer > a {
    white-space: nowrap;
  }
}

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

@media (prefers-reduced-motion: reduce) {html {
    scroll-behavior: auto;
  }*, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }.reveal {
    opacity: 1;
    transform: none;
  }
}.credentials { padding: 136px 24px 80px; }

@media (max-width: 767px) {.credentials { padding: 40px 16px; }
}.contact-band {
  padding: 80px max(24px, calc((100% - var(--max)) / 2)) 80px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
}.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: var(--max);
  margin: 0 auto;
}.contact-text { min-width: 520px; }.contact-text h2 {
  margin: 0 0 22px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.28;
  color: var(--white);
}.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}/* 折行符：桌面一行不折，移动端值分两行 */
.contact-list .br-mobile {
  display: none;
}.contact-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
  padding: 20px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}.contact-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}.contact-headline { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }/* 第三个框标签较长（微信视频号 微信公众号），单行小字避免换行拥挤，并与前两框保持横排一致 */
.contact-list li:nth-child(3) .contact-label { font-size: 12px; white-space: nowrap; }.contact-icon { width: 20px; height: 20px; flex: 0 0 20px; color: var(--gold); }.contact-label { font-size: 13px; color: rgba(255, 255, 255, 0.72); letter-spacing: 1px; white-space: normal; line-height: 1.35; }.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}.contact-value:hover { color: var(--gold); }.contact-value strong { font-weight: 700; color: var(--gold); }.contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 165px;
}.contact-qr-caption {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}.contact-qr-frame {
  padding: 12px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  line-height: 0;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease), outline-color 500ms var(--ease);
  outline: 2px solid transparent;
  outline-offset: 3px;
}.contact-qr:hover .contact-qr-frame {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
  outline-color: var(--gold);
}.contact-qr-frame img {
  width: 130px;
  height: auto;
  display: block;
  border-radius: 6px;
}.contact-qr-meta { margin: 0; font-size: 12px; letter-spacing: 1px; color: rgba(255, 255, 255, 0.5); }

@media (max-width: 767px) {.contact-band { padding: 44px 16px 36px; }/* 移动端两列：标题+三框整行在上，两个二维码并排在下一行 */
  .contact-card {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    padding: 24px 18px;
    justify-items: center;
  }.contact-text {
    order: -1;
    grid-column: 1 / -1;
    min-width: 0;
    text-align: center;
  }.contact-text h2 { font-size: 16px; margin-bottom: 18px; text-align: center; }.contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }.contact-list .br-mobile { display: inline; }.contact-list .dot-mobile { display: none; }.contact-list li { padding: 14px 16px; }/* 第三框标签恢复 13px 统一字号、允许折行，不再 12px 单行挤 */
  .contact-list li:nth-child(3) .contact-label { font-size: 13px; white-space: normal; }.contact-qr { min-width: 0; }.contact-qr-frame img { width: 120px; }
}

@media (max-width: 900px) {.contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }.contact-list .br-mobile { display: inline; }.contact-list .dot-mobile { display: none; }.contact-value { white-space: normal; }/* 图标移出文档流挂在文字左侧：标签文字本体居中，与下方两行值文字同中线
     （原状图标占左侧 28px，把长标签文字顶得偏右，眼睛看着没对齐） */
  .contact-headline { position: relative; }.contact-headline .contact-icon {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
  }
}main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}h1, h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  letter-spacing: 0;
}h1 {
  font-size: 76px;
  line-height: 1.08;
}

@supports not (aspect-ratio: 9 / 16) {.ws-filmstrip__frames .ws-style-card { height: 597px; }
}

@media (max-width: 767px) {

  @supports not (aspect-ratio: 9 / 16) {.ws-filmstrip__frames .ws-style-card { height: 420px; }
  }
}

@media (max-width: 767px) {h1 { font-size: 24px; letter-spacing: -0.04em; }.section-heading #fitTitle, .section-heading #servicesTitle {
    white-space: normal;
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {*, *::before, *::after { transition-duration: 0.01ms !important; }
}.service-credentials .credentials-stats {
  margin: 0 0 32px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
  line-height: 1.85;
  color: var(--paper-bright);
  max-width: 880px;
}.service-credentials .credentials-stats .num { font-weight: 500; }.service-credentials .credentials-stats .label {
  color: rgba(255, 255, 255, 0.62);
  font-family: -apple-system, "PingFang SC", sans-serif;
  font-size: 15px;
  margin-left: 4px;
}.service-credentials .credentials-stats .sep {
  color: rgba(255, 255, 255, 0.32);
  margin: 0 14px;
}.service-credentials .credentials-works {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
}.service-credentials .credentials-works li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.12);
  font-family: "Songti SC", "STSong", serif;
  font-size: 18px;
}.service-credentials .credentials-works li:first-child {
  border-top: 1px dotted rgba(255, 255, 255, 0.12);
}.service-credentials .credentials-works .year {
  font-family: "Songti SC", "STSong", serif;
  font-size: 15px;
  color: var(--accent, var(--gold));
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 52px;
}.service-credentials .credentials-works .title {
  color: var(--paper-bright);
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}.service-credentials .credentials-works .title {
  margin-left: 2em;
}.service-credentials .credentials-works li {
  justify-content: center;
}.service-credentials .credentials-works .role {
  margin-left: auto;
  font-family: -apple-system, "PingFang SC", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}/* 已删：空 @media (max-width: 980px) */.section.services, .section.fit {
  background: var(--ink);
  color: var(--paper-bright);
}.fit-panel__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}.fit-panel__body a:hover { opacity: .8; }.section.services h2, .section.fit h2 {
  color: var(--paper-bright);
}.section.fit .section-heading, .section.services .section-heading {
  display: block;
}.section.services .service-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}.section.services .service-tab {
  color: rgba(255, 255, 255, 0.62);
  border-right-color: rgba(255, 255, 255, 0.16);
}.section.services .service-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}.section.services .service-tab.is-active {
  color: var(--ink);
  background: var(--accent);
}/* 仅短剧拍摄：激活白底（其余三个 tab 保留各自 accent 色） */
.section.services .service-tab[data-service="shoot"].is-active {
  color: var(--ink);
  background: var(--white);
}.section.services .service-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
}.section.fit .fit-stage {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {main {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}.problem-strip-coral { background: var(--coral); color: var(--white); }.problem-strip-pink { background: #ff8fb1; color: var(--white); }.problem-strip-olive { background: #9ee493; color: var(--ink); }

@media (max-width: 767px) {.service-credentials .credentials-stats { font-size: 13px; line-height: 1.7; white-space: nowrap; overflow-x: auto; padding-bottom: 4px; }.service-credentials .credentials-stats .label { font-size: 11px; }.service-credentials .credentials-stats .sep { margin: 0 8px; font-size: 11px; }.service-credentials .credentials-stats .num { font-size: 15px; }.service-credentials .service-pitch {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
  }.service-credentials .credentials-works li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
    font-size: 15px;
  }.service-credentials .credentials-works .year {
    font-size: 11px;
    color: var(--accent, var(--gold));
    margin-bottom: 2px;
  }.service-credentials .credentials-works .title {
    font-size: 15px;
    line-height: 1.4;
  }.service-credentials .credentials-works .role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }.service-panel {
    padding: 28px 16px;
  }.section .section-heading h2 { font-size: 16px; line-height: 1.4; white-space: nowrap; }.site-footer { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
}/* ===== WORKS / 灯箱 / 分类 单源样式（原 index.html 内联块迁移，commit 6271023 后合并） ===== */

.ws-section {
      --accent: #d4a14a;
      color: var(--white);
      padding: 0 max(24px, calc((100% - var(--max)) / 2));
      background:
        radial-gradient(720px 420px at 90% 5%, rgba(158, 228, 200, 0.11), transparent 68%),
        linear-gradient(142deg, #101112 0%, #151718 56%, #1b1814 100%);
    }.ws-hero {
      position: relative;
      display: flex; align-items: center;
      min-height: 110px; padding-top: 20px; padding-bottom: 6px;
      border-bottom: none;
    }.ws-hero::after { display: none; }.ws-hero-copy { max-width: none; }#ws-pageTitle {
      margin: 0; font-family: "Songti SC", "STSong", serif;
      font-size: 24px; font-weight: 700; line-height: 1.28; letter-spacing: 0; color: var(--paper-bright);
    }.ws-hero-copy > p:last-child { margin: 22px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 17px; }.ws-category-nav {
      display: grid; grid-template-columns: repeat(8, 1fr);
      gap: 7px;
      margin-top: 4px;
      padding: 14px 4px 4px 4px;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 16px;
    }.ws-category-tab:last-child { border-right: 1px solid rgba(255, 255, 255, 0.26); }.ws-category-tab {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 138px;
      padding: 28px 12px 38px;
      background: transparent;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px; cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 12px;
      transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
    }.ws-category-tab span {
      writing-mode: vertical-rl;
      text-orientation: upright;
      letter-spacing: 2px;
      line-height: 1.3;
    }.ws-category-tab .ws-ip {
      writing-mode: horizontal-tb;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }.ws-category-tab .ws-cn {
      writing-mode: vertical-rl;
      text-orientation: upright;
      letter-spacing: 1px;
      line-height: 1.2;
    }.ws-category-tab:hover {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.04);
    }.ws-category-tab.ws-is-active {
      color: var(--ink);
      background: var(--accent);
      border-color: var(--accent);
    }.ws-style-stage {
      display: grid;
      grid-template-columns: 1fr;
      padding: 18px 0 8px;
    }#ws-categoryTitle {
      margin: 14px 0 18px; font-family: "Songti SC", "STSong", serif;
      font-size: 44px; line-height: 1.18; letter-spacing: 0; color: var(--white);
    }#ws-categoryDescription { margin: 0 0 22px; color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.7; }.ws-style-board {
      position: relative;
      min-width: 0;
      align-self: start;
      margin-top: 18px;
      padding: 18px 0 32px;
      border: 0;
      border-radius: 0;
      background: transparent;
    }.ws-style-cards { display: block; }.ws-filmstrip {
      position: relative;
      min-width: 0;
      background: linear-gradient(180deg, #131416, #1a1b1d 45%, #121314);
      border: 0;
      border-radius: 0;
      padding: 10px 0 14px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }.ws-filmstrip__sprocket {
      height: 9px;
      margin: 2px 0 12px;
      background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 7px, transparent 7px 13px);
      border-radius: 2px;
    }.ws-filmstrip__sprocket:last-child { margin: 12px 0 0; }.ws-filmstrip__frames {
      display: flex;
      min-width: 0;
      gap: 14px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      will-change: scroll-position; 
    }.ws-filmstrip__frames::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {.ws-filmstrip__frames {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
      }.ws-filmstrip__frames:active { cursor: grabbing; }.ws-filmstrip__frames::-webkit-scrollbar { display: block; height: 6px; }.ws-filmstrip__frames::-webkit-scrollbar-track { background: transparent; }.ws-filmstrip__frames::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 3px; }
    }.ws-filmstrip__frames .ws-style-card {
      flex: 0 0 auto;
      width: 336px;
      aspect-ratio: 9 / 16;
      scroll-snap-align: center;
    }.ws-style-card {
      position: relative;
      min-height: 0;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: #26282a;
      border: 2px solid rgba(255, 255, 255, 0.5);
    }.ws-style-card::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.42));
    }.ws-style-card:nth-child(1) { background: linear-gradient(145deg, #b97042 0%, #45251f 64%, #1c1716 100%); }.ws-style-card:nth-child(2) { background: linear-gradient(150deg, #416462 0%, #1e3135 54%, #141819 100%); }.ws-style-card:nth-child(3) { background: linear-gradient(155deg, #b99a55 0%, #57462a 50%, #1c1a17 100%); }.ws-style-card:nth-child(4) { background: linear-gradient(150deg, #3f5a8a 0%, #1e2c47 54%, #141826 100%); }.ws-style-card:nth-child(5) { background: linear-gradient(155deg, #7a4a6a 0%, #47283f 50%, #1a161c 100%); }

@media (max-width: 980px) {.ws-style-stage { grid-template-columns: 1fr; gap: 12px; padding: 12px 0 8px; }.ws-style-board { align-self: start; margin-top: 12px; }.ws-hero { min-height: 150px; padding-bottom: 8px; }.ws-hero::after { right: 6%; bottom: -12px; width: 58px; height: 58px; }#ws-pageTitle { font-size: 28px; line-height: 1.28; letter-spacing: 0; }#ws-categoryTitle { font-size: 26px; margin: 10px 0 14px; }
    }

@media (max-width: 767px) {.ws-hero { display: flex; align-items: center; min-height: 92px; padding-top: 16px; padding-bottom: 6px; }#ws-pageTitle { font-size: 16px; line-height: 1.28; letter-spacing: 0; }.ws-hero-copy > p:last-child { font-size: 15px; }.ws-category-nav { grid-template-columns: repeat(8, 1fr); margin-top: 2px; gap: 3px; padding: 10px 4px 4px 4px; border: 1px solid rgba(255, 255, 255, 0.26); border-radius: 14px; }.ws-category-tab {
      min-height: 118px;
      padding: 26px 6px 34px;
        border: 1px solid rgba(255, 255, 255, 0.26);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
      }.ws-category-tab span {
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: 2px;
        font-size: 13px;
        line-height: 1.3;
      }.ws-category-tab.ws-is-active { color: var(--ink); background: var(--accent); border-color: var(--accent); }.ws-style-stage { padding: 12px 0 8px; gap: 8px; }.ws-style-board { min-width: 0; min-height: 0; align-self: start; margin-top: 12px; padding: 8px 0 22px; border: 0; }.ws-style-card { min-height: 0; }.ws-filmstrip { padding: 8px 0 12px; border-radius: 0; }.ws-filmstrip__sprocket { height: 7px; margin: 2px 0 10px; }.ws-filmstrip__frames { gap: 12px; }.ws-filmstrip__frames .ws-style-card { width: 236px; }
      @supports not (aspect-ratio: 9 / 16) {.ws-filmstrip__frames .ws-style-card { height: 420px; }
      }#ws-categoryTitle { font-size: 22px; margin: 6px 0 10px; }#ws-categoryDescription { margin: 0 0 10px; font-size: 14px; }
    }.ws-style-card { cursor: pointer; transition: transform .25s var(--ease), border-color .25s var(--ease); }.ws-style-card:hover { transform: translateY(-4px); border-color: var(--accent); }.ws-style-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }.ws-style-card__cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; display: block; will-change: transform; transform: translateZ(0); }.ws-style-card::before { z-index: 1; }/* 已删：空 @media (max-width: 767px) */.ws-lightbox {
      --accent: #d4a14a;
      position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
      padding: 0; background: #000;
    }.ws-lightbox[hidden] { display: none; }.ws-lightbox__close {
      position: absolute; right: 16px; bottom: calc(64px + env(safe-area-inset-bottom)); z-index: 10;
      display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px;
      border-radius: 999px; border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
      background: rgba(0, 0, 0, 0.5); color: color-mix(in srgb, var(--accent) 75%, #fff); font-size: 13px; font-weight: 600; cursor: pointer;
      opacity: 0.5;
      transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
    }.ws-lightbox__close:hover { background: color-mix(in srgb, var(--accent) 32%, #000); border-color: var(--accent); opacity: 1; }.ws-lightbox__close-ico { font-size: 14px; line-height: 1; }.ws-lightbox__full {
  position: absolute; top: 16px; right: 16px; z-index: 5; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--accent, #d4a14a); background: color-mix(in srgb, var(--accent, #d4a14a) 28%, #000); color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; backdrop-filter: blur(6px);
}.ws-lightbox__full:hover { background: var(--accent, #d4a14a); color: #111; }.ws-lightbox__full[hidden] { display: none; }.ws-lightbox__dialog {
      position: relative; width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center; background: #000;
      animation: ws-lb-in .34s cubic-bezier(.32, .72, 0, 1) both;
    }.ws-lightbox__stage {
      position: relative; background: #000; overflow: hidden;
      width: 100%; height: 100%;
      box-shadow: inset 0 0 100px color-mix(in srgb, var(--accent) 15%, transparent);
    }.ws-lightbox__video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: contain; -webkit-object-fit: contain; background: #000; opacity: 1; transition: opacity .3s ease; z-index: 1; }.ws-lightbox__video.is-loading { opacity: 0; }.ws-lightbox__video[hidden] { display: none; }.ws-lightbox__play {
      position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 8;
      width: 68px; height: 68px; border-radius: 50%; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0, 0, 0, 0.6); color: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      transition: background .2s ease, transform .2s ease;
    }.ws-lightbox__play:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.06); }.ws-lightbox__play svg { width: 30px; height: 30px; margin-left: 3px; }.ws-lightbox__bar {
      position: absolute; left: 16px; right: 76px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 8;
      display: flex; align-items: center; gap: 12px;
    }.ws-lightbox__bar-progress {
      flex: 1; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.28); cursor: pointer;
      position: relative; overflow: hidden;
    }.ws-lightbox__bar-fill { display: block; height: 100%; width: 0; background: var(--accent, #d4a14a); border-radius: 2px; }.ws-lightbox__time { color: rgba(255, 255, 255, 0.85); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; flex: 0 0 auto; }.ws-lightbox__play[hidden], .ws-lightbox__bar[hidden] { display: none; }.ws-lightbox__empty {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      color: rgba(255, 255, 255, 0.7); font-size: 14px; text-align: center; padding: 24px;
      background: rgba(0, 0, 0, 0.92); z-index: 2;
    }.ws-lightbox__empty[hidden] { display: none; }

@keyframes ws-lb-in {
      from { opacity: .35; }
      to { opacity: 1; }
    }
