/* ==========================================================
   搜柚科技 公司门户 v3 · style.css
   「苹果官网式」极简设计体系：深空灰 × 纯白 × 柚橙点缀
   修改主题色请编辑下方「设计令牌」区块的 CSS 变量
   ========================================================== */

/* ===== 设计令牌 ===== */
:root {
  /* 主色：深空灰 / 纯白 */
  --c-ink: #1d1d1f;
  --c-ink-2: #424245;
  --c-ink-3: #6e6e73;
  --c-ink-4: #86868b;

  /* 背景：纯白与极浅灰交替 */
  --c-bg: #ffffff;
  --c-bg-alt: #f5f5f7;
  --c-line: #e8e8ed;

  /* 强调色：柚橙仅用于 CTA 与关键数据 */
  --c-accent: #FF7A1A;
  --c-accent-strong: #F06400;

  /* 深色强调区块（仅保留个别点缀，克制使用） */
  --c-dark: #1d1d1f;
  --c-dark-2: #000000;
  --c-on-dark: #f5f5f7;
  --c-on-dark-sub: rgba(245, 245, 247, 0.64);

  /* 文字 */
  --c-text: #1d1d1f;
  --c-text-sub: #6e6e73;
  --c-text-inv: #f5f5f7;
  --c-text-inv-sub: rgba(245, 245, 247, 0.72);

  /* 间距 */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sec-pad: 144px;          /* 桌面端 section 上下留白（加大呼吸感） */

  /* 圆角：统一加大 */
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 20px;
  --r-full: 999px;

  /* 阴影：微妙柔和（层级主要靠阴影而非色块） */
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 18px 50px rgba(0, 0, 0, 0.09);
  --shadow-pop: 0 24px 70px rgba(0, 0, 0, 0.16);
  --shadow-pill: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-accent: 0 6px 22px rgba(240, 100, 0, 0.28);
  --shadow-accent-hover: 0 10px 34px rgba(240, 100, 0, 0.40);

  /* 动效 */
  --d: 0.1s;                                        /* 交错动画延迟步长 */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);     /* 渐入缓动 */
  --marquee-duration: 32s;                          /* 品牌墙滚动周期（JS 可微调） */

  /* 布局 */
  --container-width: 1200px;
  --header-h: 56px;
}

/* ===== 基础重置 ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
}

/* 锚点定位避让固定顶栏 */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* ===== 通用布局 ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--sp-5);
  padding-right: var(--sp-5);
}

.section {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad);
}

/* ===== 图片预留位（后续补图时替换 .visual-slot） ===== */
.visual-slot {
  background: linear-gradient(135deg, var(--c-bg-alt) 0%, var(--c-line) 55%, var(--c-bg-alt) 100%);
  border-radius: var(--r-l);
  min-height: 180px;
}

/* ===== 内容图片（圆角 + 柔和阴影 + 点击放大 + 滚动入场） ===== */
.pic {
  width: 100%;
  height: auto;
  border-radius: var(--r-l);
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
}

/* 图片滚动入场：轻微 scale(1.04→1) + 透明度（仅 JS 可用时） */
html.js .pic {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

html.js .pic.is-shown {
  opacity: 1;
  transform: scale(1);
}

/* ===== 渐入动画（仅 JS 可用时隐藏，无 JS 内容完整可见） ===== */
html.js .reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: calc(var(--d) * var(--i, 0));
}

html.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== 区块标题（超大标题 + 细体副标题） ===== */
.sec-head {
  max-width: 820px;
  margin-bottom: var(--sp-8);
}

.sec-head__tag {
  display: inline-block;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-accent-strong);
  margin-bottom: var(--sp-4);
}

.sec-head__title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.sec-head__desc {
  margin-top: var(--sp-6);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 300;
  line-height: 2;
  color: var(--c-ink-3);
}

/* ===== 按钮（hover 柔和阴影扩散，不移位） ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 15px 36px;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: box-shadow 0.35s var(--ease), opacity 0.35s var(--ease);
}

.btn--accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
  box-shadow: var(--shadow-accent-hover);
}

.btn--ghost {
  border: 1px solid rgba(245, 245, 247, 0.5);
  color: var(--c-text-inv);
}

.btn--ghost:hover {
  box-shadow: 0 8px 28px rgba(245, 245, 247, 0.22);
}

/* ===== 固定顶栏（深色毛玻璃，克制通透） ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled {
  background: rgba(29, 29, 31, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* 支持毛玻璃时使用半透明 + 模糊 */
@supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
  .header.is-scrolled {
    background: rgba(29, 29, 31, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
  }
}

.header__inner {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-text-inv);
}

.header__logo em {
  font-style: normal;
  font-weight: 300;
  color: var(--c-text-inv-sub);
}

.header__logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text-inv-sub);
  transition: opacity 0.25s var(--ease);
}

/* 底部线条滑入 */
.header__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--c-text-inv);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.header__link:hover {
  color: var(--c-text-inv);
}

.header__link.is-active {
  color: var(--c-text-inv);
}

.header__link.is-active::after {
  transform: scaleX(1);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--r-s);
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: var(--c-text-inv);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

html.nav-open .header__burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

html.nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

html.nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== 模块一：Hero（全屏大图 + 视差 + 深色遮罩） ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-5) var(--sp-9);
  background: #000;
  overflow: hidden;
}

/* 背景层独立成伪元素，供 JS 视差位移（只写 transform） */
.hero::before {
  content: "";
  position: absolute;
  inset: -14% 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.30) 45%, rgba(0, 0, 0, 0.62) 100%),
    url("../img/hero-banner.png") center / cover no-repeat;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

/* 背景光斑层：柔和橙白光晕，由 JS 视差驱动（只写 transform） */
.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(38% 34% at 22% 32%, rgba(255, 122, 26, 0.14), transparent 70%),
    radial-gradient(44% 40% at 78% 24%, rgba(255, 255, 255, 0.10), transparent 72%);
  transform: translate3d(0, var(--hero-glow, 0px), 0);
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero__tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(245, 245, 247, 0.28);
  color: var(--c-text-inv-sub);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-6);
}

.hero__title {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__title span {
  display: block;
  font-weight: 300;
  color: var(--c-text-inv-sub);
}

.hero__sub {
  margin: var(--sp-6) auto 0;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-text-inv-sub);
}

.hero__cta {
  margin-top: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* 首屏下滑提示 */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(245, 245, 247, 0.4);
  border-radius: 13px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(245, 245, 247, 0.85);
  transform: translateX(-50%);
  animation: scrollHint 2s var(--ease) infinite;
}

@keyframes scrollHint {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ===== 公司简介条 ===== */
.intro {
  background: var(--c-bg);
}

.intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-9);
  flex-wrap: wrap;
}

.intro__text {
  max-width: 640px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-ink-3);
}

.intro__text strong {
  font-weight: 700;
  color: var(--c-ink);
}

.intro__facts {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.intro__fact {
  padding: 10px 22px;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-ink-2);
}

.intro__fact b {
  font-weight: 700;
  color: var(--c-ink);
}

/* ===== 三位一体增长引擎 ===== */
.engines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.engine-card {
  position: relative;
  padding: var(--sp-7) var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease);
}

.engine-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.engine-card__num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(29, 29, 31, 0.08);
}

.engine-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.engine-card__sub {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-accent-strong);
}

.engine-card__desc {
  margin-top: var(--sp-4);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-ink-3);
  min-height: 84px;
}

/* 链接：底部线条滑入 */
.engine-card__more {
  position: relative;
  display: inline-block;
  margin-top: var(--sp-5);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-accent-strong);
}

.engine-card__more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: var(--c-accent-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.engine-card__more:hover::after {
  transform: scaleX(1);
}

/* ===== 核心优势摘要（深色强调区块，克制） ===== */
.adv-strip {
  padding-top: 0;
}

.adv-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.adv-item {
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--r-l);
  background: var(--c-bg-alt);
  transition: box-shadow 0.45s var(--ease);
}

.adv-item:hover {
  box-shadow: var(--shadow-card);
}

.adv-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--c-ink);
  background: rgba(29, 29, 31, 0.06);
  margin-bottom: var(--sp-5);
}

.adv-item__icon svg {
  width: 24px;
  height: 24px;
}

.adv-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
}

.adv-item__desc {
  margin-top: var(--sp-2);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-ink-3);
}

/* ===== 合作品牌墙（无缝滚动 marquee） ===== */
.brands-sec {
  padding: var(--sp-8) 0 var(--sec-pad);
}

.brands-sec__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--c-ink-4);
  margin-bottom: var(--sp-6);
}

.brands {
  overflow: hidden;
  padding: var(--sp-2) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands__track {
  display: flex;
  width: max-content;
  animation: brandsScroll var(--marquee-duration, 32s) linear infinite;
}

.brands:hover .brands__track,
.brands:focus-within .brands__track {
  animation-play-state: paused;
}

.brands__row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-right: var(--sp-4);
}

.brands__item {
  padding: 12px 32px;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-ink-2);
  white-space: nowrap;
}

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== 模块二：解决方案（浅灰分区 + 分段控件 Tab） ===== */
.solutions {
  background: var(--c-bg-alt);
}

/* 苹果分段控件：药丸容器 + 白色滑块 */
.sol-tabs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 900px;
  margin: 0 auto var(--sp-8);
  padding: 6px;
  border-radius: var(--r-full);
  background: rgba(29, 29, 31, 0.05);
}

.sol-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 14px 16px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink-3);
  text-align: center;
  transition: opacity 0.3s var(--ease);
}

.sol-tabs__tab:hover {
  opacity: 0.72;
}

.sol-tabs__tab-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.08);
  color: var(--c-ink-3);
  font-size: 13px;
  font-weight: 700;
}

.sol-tabs__tab.is-active {
  color: var(--c-ink);
  background: var(--c-bg);
  box-shadow: var(--shadow-pill);
}

.sol-tabs__tab.is-active .sol-tabs__tab-num {
  background: var(--c-accent);
  color: #fff;
}

/* 无 JS：隐藏 Tab 条，三个面板顺序堆叠全部可见 */
html:not(.js) .sol-tabs__list {
  display: none;
}

html:not(.js) .sol-tabs__panel[hidden] {
  display: block;
}

html:not(.js) .sol-tabs__panel + .sol-tabs__panel {
  margin-top: var(--sp-9);
  padding-top: var(--sp-9);
  border-top: 1px solid var(--c-line);
}

/* 有 JS：只显示激活面板 */
html.js .sol-tabs__panel {
  display: none;
}

html.js .sol-tabs__panel.is-active {
  display: block;
}

.sol-tabs__panel[hidden] {
  display: none;
}

.sol-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-bottom: var(--sp-8);
}

.sol-hero__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--c-ink);
}

.sol-hero__desc {
  margin-top: var(--sp-5);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-ink-3);
}

.sol-sub {
  margin: var(--sp-8) 0 var(--sp-6);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

/* 直播业务三类 */
.live-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-5);
  align-items: stretch;
}

.live-types {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.live-card {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease);
}

.live-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.live-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}

.live-card__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-ink-3);
}

.live-grid__media {
  min-height: 100%;
}

.live-grid__media .pic {
  height: 100%;
  object-fit: cover;
}

/* 流程条 */
.flow {
  display: grid;
  gap: var(--sp-4);
}

.flow--3 {
  grid-template-columns: repeat(3, 1fr);
}

.flow--4 {
  grid-template-columns: repeat(4, 1fr);
}

.flow__step {
  position: relative;
  padding: 20px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-bg);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-card);
}

.flow__step b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-accent-strong);
  margin-bottom: 4px;
}

.flow__meta {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--c-ink-4);
}

.flow__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1 * var(--sp-4) / 2 - 4px);
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--c-ink-4);
  border-right: 1.5px solid var(--c-ink-4);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.flow__step:last-child::after {
  display: none;
}

.flow__step:last-child {
  background: var(--c-dark);
  color: var(--c-on-dark);
}

.flow__step:last-child b {
  color: var(--c-accent);
}

.flow__step:last-child .flow__meta {
  color: var(--c-on-dark-sub);
}

/* 爆款内容打造 */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.content-card {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease);
}

.content-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.content-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
}

.content-card__desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-ink-3);
}

.kol-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kol-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--r-s);
  background: var(--c-bg-alt);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-3);
}

.kol-list li b {
  font-weight: 600;
  color: var(--c-ink);
}

.kol-list li span {
  font-weight: 700;
  color: var(--c-accent-strong);
}

/* 投流升级 & 线索清洗 */
.lead-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.lead-list__item {
  position: relative;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) 52px;
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-ink-3);
}

.lead-list__item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
}

.lead-list__item b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 4px;
}

/* 三级分层管理（阶梯宽度递变） */
.tiers {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.tier {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  color: var(--c-text);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease);
}

.tier:hover {
  box-shadow: var(--shadow-card-hover);
}

.tier--b {
  width: 86%;
}

.tier--c {
  width: 72%;
}

.tier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.tier__lv {
  font-size: 17px;
  font-weight: 700;
}

.tier__res {
  padding: 4px 14px;
  border-radius: var(--r-full);
  background: rgba(29, 29, 31, 0.06);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-ink-2);
}

.tier__name {
  margin-top: var(--sp-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-accent-strong);
}

.tier__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-3);
}

/* 核心赋能动作 */
.empower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.empower-card {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease);
}

.empower-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.empower-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}

.empower-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-ink-3);
}

/* SOP 徽章条 */
.sop-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.sop-strip__item {
  padding: 10px 24px;
  border-radius: var(--r-full);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  color: var(--c-ink-2);
  font-size: 14.5px;
  font-weight: 600;
}

.sop-note {
  margin-top: var(--sp-4);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-4);
}

/* SCRM 数据卡（白底 + 浅阴影，数字用点缀色强调） */
.scrm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.scrm-stat {
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}

.scrm-stat__num {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.scrm-stat__label {
  margin-top: var(--sp-2);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-3);
}

/* 私域运营策略 */
.priv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.priv-card {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease);
}

.priv-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.priv-card--wide {
  grid-column: span 2;
}

.priv-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}

.priv-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-ink-3);
}

.priv-grid__media .pic {
  height: 100%;
  object-fit: cover;
}

/* ===== 模块三：成功案例（可展开） ===== */
.cases {
  background: var(--c-bg);
}

.case {
  border-radius: var(--r-l);
  background: var(--c-bg-alt);
  overflow: hidden;
}

.case + .case {
  margin-top: var(--sp-5);
}

.case__head {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  width: 100%;
  padding: var(--sp-6) var(--sp-7);
  text-align: left;
}

.case__tag {
  flex-shrink: 0;
  padding: 6px 18px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.case__tag--alt {
  background: var(--c-ink);
}

.case__titles {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.case__name {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.case__brief {
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-3);
}

.case__arrow {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--c-ink-3);
  border-bottom: 1.5px solid var(--c-ink-3);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease);
}

.case.is-open .case__arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* 折叠详情：无 JS 直接可见；有 JS 用 grid 行高平滑过渡 */
.case__detail-inner {
  padding: 0 var(--sp-7) var(--sp-7);
}

html.js .case__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

html.js .case__detail-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

html.js .case.is-open .case__detail {
  grid-template-rows: 1fr;
}

html.js .case.is-open .case__detail-inner {
  opacity: 1;
}

.case__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  padding-top: var(--sp-5);
}

.case__info-item dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-ink-4);
}

.case__info-item dd {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
}

.case__metrics {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.metric__num {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.metric__label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: var(--c-ink-3);
}

/* ===== 模块四：实力资源 ===== */
.resources {
  background: var(--c-bg-alt);
}

.res-sub {
  margin: var(--sp-9) 0 var(--sp-6);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.res-sub:first-of-type {
  margin-top: 0;
}

/* 专业团队 */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.team-card {
  padding: var(--sp-7) var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow 0.45s var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.team-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
}

.team-card__num {
  margin: var(--sp-3) 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.team-card__desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--c-ink-3);
}

/* 直播基地 */
.base-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-7);
  align-items: start;
}

.base-wrap__media .pic {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.base-block {
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}

.base-block + .base-block {
  margin-top: var(--sp-4);
}

.base-block__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-4);
}

.base-block__name strong {
  color: var(--c-accent-strong);
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adv-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-ink-3);
}

.adv-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

/* 45 间直播间阵列（轻量色块示意，避免大面积深色） */
.rooms {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 5px;
  margin-top: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}

.rooms i {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: rgba(29, 29, 31, 0.08);
}

.rooms i:nth-child(3n) {
  background: var(--c-ink-2);
}

/* 场地硬件 */
.hw-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.hw-list__item {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-m);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ink-3);
}

.hw-list__item b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 2px;
}

/* 主播资源 */
.anchor-wrap {
  padding: var(--sp-7);
  border-radius: var(--r-l);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}

.anchor-wrap__lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--c-ink-3);
  margin-bottom: var(--sp-6);
}

.anchor-wrap__lead b {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent-strong);
  font-variant-numeric: tabular-nums;
}

.anchor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}

.anchor-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--sp-5);
  border-radius: var(--r-m);
  background: var(--c-bg-alt);
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ink-3);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.anchor-item:hover {
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}

.anchor-item b {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
}

.anchor-item span:nth-child(2) {
  font-weight: 600;
  color: var(--c-accent-strong);
}

/* 自研产品（深色强调区块） */
.scrm-prod {
  padding: var(--sp-8) var(--sp-7);
  border-radius: var(--r-l);
  background: var(--c-dark);
}

.scrm-prod__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-on-dark);
}

.scrm-prod__desc {
  margin-top: var(--sp-3);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-on-dark-sub);
  max-width: 560px;
}

.scrm-prod__feats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.feat {
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-on-dark);
  background: rgba(245, 245, 247, 0.08);
}

.feat--hl {
  color: #fff;
  background: var(--c-accent);
  box-shadow: var(--shadow-accent);
}

/* ===== 模块五：关于我们 ===== */
.about-sec {
  background: var(--c-bg);
}

.about-sec__intro {
  max-width: 820px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 2;
  color: var(--c-ink-3);
  margin-bottom: var(--sp-8);
}

.about-sec__value {
  margin-top: var(--sp-6);
  padding: var(--sp-6) var(--sp-6);
  border-radius: var(--r-l);
  background: var(--c-bg-alt);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.about-sec .brands {
  margin-bottom: var(--sp-9);
}

/* 联系我们 */
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-7);
  text-align: center;
  border-radius: var(--r-l);
  background: var(--c-bg-alt);
}

.contact-card__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.contact-card__placeholder {
  margin-top: var(--sp-4);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  color: var(--c-accent-strong);
}

.contact-card__addr {
  margin-top: var(--sp-3);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-ink-3);
}

/* ===== 页脚（深空灰） ===== */
.footer {
  background: var(--c-dark);
  color: var(--c-on-dark-sub);
  padding-top: var(--sp-8);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-on-dark);
}

.footer__logo em {
  font-style: normal;
  font-weight: 300;
  color: var(--c-on-dark-sub);
}

.footer__slogan {
  margin-top: var(--sp-2);
  font-size: 14px;
  font-weight: 300;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  max-width: 560px;
}

.footer__link {
  position: relative;
  font-size: 14px;
  font-weight: 300;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--c-on-dark);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.footer__link:hover {
  color: var(--c-on-dark);
}

.footer__link:hover::after {
  transform: scaleX(1);
}

.footer__copy {
  padding: var(--sp-5) 0;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ===== 返回顶部 ===== */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-on-dark);
  background: rgba(29, 29, 31, 0.82);
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

.to-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== 图片灯箱 ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-7);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-show {
  opacity: 1;
}

.lightbox__img {
  max-width: min(1080px, 92vw);
  max-height: 84vh;
  border-radius: var(--r-m);
  box-shadow: var(--shadow-pop);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease);
}

.lightbox.is-show .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--c-on-dark);
  background: rgba(245, 245, 247, 0.12);
  transition: opacity 0.25s var(--ease);
}

.lightbox__close:hover {
  opacity: 0.7;
}

/* ===== 响应式：≤1024px ===== */
@media (max-width: 1024px) {
  :root {
    --header-h: 52px;
    --sec-pad: 112px;
  }

  .engines__grid {
    grid-template-columns: 1fr;
  }

  .engine-card__desc {
    min-height: 0;
  }

  .adv-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-tabs__list {
    grid-template-columns: 1fr;
    border-radius: var(--r-l);
    max-width: 560px;
  }

  .sol-tabs__tab {
    border-radius: var(--r-m);
  }

  .sol-hero {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .empower-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .priv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .priv-card--wide {
    grid-column: span 2;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .base-wrap {
    grid-template-columns: 1fr;
  }

  .base-wrap__media .pic {
    position: static;
  }
}

/* ===== 响应式：≤768px ===== */
@media (max-width: 768px) {
  /* 汉堡菜单：导航转为抽屉面板 */
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-3) var(--sp-5) var(--sp-5);
    background: rgba(29, 29, 31, 0.97);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  @supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
    .header__nav {
      background: rgba(29, 29, 31, 0.82);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
    }
  }

  html.nav-open .header__nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  html.nav-open .header {
    background: rgba(29, 29, 31, 0.94);
  }

  .header__link {
    padding: 13px 8px;
    font-size: 16px;
    border-bottom: 1px solid rgba(245, 245, 247, 0.08);
  }

  .header__link::after {
    display: none;
  }

  .header__link.is-active {
    color: var(--c-on-dark);
  }

  .hero {
    min-height: 88vh;
  }

  .intro__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .adv-strip__grid {
    grid-template-columns: 1fr;
  }

  .flow--3,
  .flow--4 {
    grid-template-columns: 1fr 1fr;
  }

  .flow__step:nth-child(2n)::after {
    display: none;
  }

  .lead-list {
    grid-template-columns: 1fr;
  }

  .tier--b { width: 93%; }
  .tier--c { width: 86%; }

  .empower-grid {
    grid-template-columns: 1fr;
  }

  .scrm-stats {
    grid-template-columns: 1fr;
  }

  .priv-grid {
    grid-template-columns: 1fr;
  }

  .priv-card--wide {
    grid-column: span 1;
  }

  .case__head {
    flex-wrap: wrap;
    padding: var(--sp-5);
  }

  .case__detail-inner {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }

  .case__metrics {
    gap: var(--sp-6);
  }

  .hw-list {
    grid-template-columns: 1fr;
  }

  .anchor-wrap {
    padding: var(--sp-5);
  }

  .scrm-prod {
    padding: var(--sp-6);
  }

  .footer__inner {
    flex-direction: column;
  }
}

/* ===== 响应式：≤480px ===== */
@media (max-width: 480px) {
  :root {
    --sec-pad: 84px;
  }

  .container {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }

  .hero__cta .btn {
    width: 100%;
  }

  .flow--3,
  .flow--4 {
    grid-template-columns: 1fr;
  }

  .flow__step::after {
    display: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .brands__item {
    font-size: 15px;
    padding: 10px 22px;
  }

  .rooms {
    grid-template-columns: repeat(9, 1fr);
  }

  .to-top {
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ===== 动效降级：跟随系统减弱动态效果 =====
   URL 带 ?motion=1 时 JS 会给 <html> 加 .force-motion 类，
   本段降级整体失效，恢复完整动画 */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) {
    scroll-behavior: auto;
  }

  html:not(.force-motion) *,
  html:not(.force-motion) *::before,
  html:not(.force-motion) *::after {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    transition-delay: 0s !important;
  }

  /* 品牌墙静止 */
  html:not(.force-motion) .brands__track {
    animation: none;
  }

  /* Hero 视差归零（背景图与光斑层） */
  html:not(.force-motion) .hero::before,
  html:not(.force-motion) .hero::after {
    transform: none;
  }
}
