/* ============================================================
   HMI 设计开发 · services/hmi.html 专用样式
   接在 aw.css 之后，只用 aw.css 里已有的 token（--pad / --sec-gap /
   --r-card / --r-media / --accent / --violet …），不另起色板。
   色彩只在爆点上小面积出现：对比器手柄、进度线、青柠卡片。
   ============================================================ */

/* ------------------------------------------------------------
   首屏 · 左文字、右「新旧界面对比器」
   主视觉是两张手绘的界面（内联 SVG），不是实拍。
   ------------------------------------------------------------ */
.hmi-hero { margin-top: 52px; }

.hmi-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px clamp(20px, 3vw, 48px);
  align-items: end;
}

.hmi-hero__lead { max-width: 30ch; color: var(--mut); margin-top: 6px; }
.hmi-hero__lead b { font-weight: 500; color: var(--ink); }

@media (max-width: 1100px) {
  .hmi-hero__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 对比器 ---------- */
.cmp {
  --x: 100%;      /* 手柄位置（百分比） */
  --xn: 1;        /* 同一位置的 0–1 数值，给标签算透明度 */
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-media);
  overflow: hidden;
  background: #c6c9ce;
  box-shadow: inset 0 0 0 0.5px var(--line);
  user-select: none;
  -webkit-user-select: none;
}

.cmp__layer { position: absolute; inset: 0; }
.cmp__layer svg { width: 100%; height: 100%; display: block; }
/* 右边是「之后」：只露出手柄右侧 */
.cmp__after { clip-path: inset(0 0 0 var(--x)); }

.cmp__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  width: 0;
  pointer-events: none;
}
.cmp__handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.18);
}
.cmp__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 0 0 0.5px rgba(0, 0, 0, 0.12);
}
.cmp__knob::after {
  /* 青柠爆点：告诉人这是能拖的 */
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: var(--accent);
}
.cmp__knob svg { width: 20px; height: 20px; display: block; }

.cmp__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}
.cmp:has(.cmp__range:focus-visible) .cmp__knob { outline: 2px solid var(--ink); outline-offset: 3px; }

.cmp__tag {
  position: absolute;
  top: 14px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 18px;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.cmp__tag--before {
  left: 14px;
  background: rgba(34, 34, 34, 0.8);
  color: #fff;
  opacity: clamp(0, calc((var(--xn) - 0.14) * 10), 1);
}
.cmp__tag--after {
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  opacity: clamp(0, calc((0.86 - var(--xn)) * 10), 1);
}

.cmp__hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cmp.is-touched .cmp__hint { opacity: 0; }

.cmp-cap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mut);
}
.cmp-cap i { width: 5px; height: 5px; border-radius: 1px; background: var(--accent); flex: none; }

/* 老界面里的报警条：闪，越闪越像 */
@keyframes hbBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.25; } }
.hb-blink { animation: hbBlink 1s steps(1, end) infinite; }
@media (prefers-reduced-motion: reduce) { .hb-blink { animation: none; } }

/* ------------------------------------------------------------
   01 · 为什么要拯救：六个维度的「现状 → 收益」表
   ------------------------------------------------------------ */
.why { margin-top: 48px; border-top: 0.5px solid var(--line); }

.why__row {
  display: grid;
  grid-template-columns: 56px 220px minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--line);
  align-items: baseline;
  transition: background-color 0.3s var(--ease), padding-inline 0.3s var(--ease);
}
.why__row:not(.why__row--head):hover { background: rgba(34, 34, 34, 0.03); padding-inline: 16px; }

.why__row--head {
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut-2);
}

.why__n { font-family: var(--mono); font-size: 13px; color: var(--mut-2); }

.why__dim { font-size: 17px; font-weight: 500; line-height: 24px; }
.why__dim small {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut-2);
}

.why__now { font-size: 15px; font-weight: 300; line-height: 24px; color: var(--mut); }

.why__gain {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}
.why__gain i { width: 7px; height: 7px; border-radius: 1.5px; background: var(--accent); flex: none; transform: translateY(-1px); }

.why__lead { max-width: 40ch; color: var(--mut); margin-top: 6px; }

.why__sum {
  margin-top: 34px;
  max-width: none;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.55;
}
.why__sum b { font-weight: 600; }

@media (max-width: 860px) {
  .why__row { grid-template-columns: 40px minmax(0, 1fr); row-gap: 6px; }
  .why__row--head { display: none; }
  .why__now, .why__gain { grid-column: 2; }
  .why__row:not(.why__row--head):hover { padding-inline: 0; background: none; }
}

/* ------------------------------------------------------------
   02 · 主张：导语 + 两栏 + 作品墙照片带 + 跑马灯
   ------------------------------------------------------------ */
.mani {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px var(--gap-x);
  align-items: start;
  margin-top: 40px;
}
.mani__text p { max-width: 46ch; color: var(--mut); }
.mani__text p + p { margin-top: 12px; }
.mani__text p b { font-weight: 500; color: var(--ink); }
.mani__aside { padding-left: clamp(0px, 3vw, 52px); }
.mani__aside .heading-5 { max-width: 16ch; }

@media (max-width: 860px) {
  .mani { grid-template-columns: minmax(0, 1fr); }
  .mani__aside { padding-left: 0; }
}

/* ------------------------------------------------------------
   03 · 流程：五步时间轴（复用 aw.js 的 data-story / data-beat 钩子）
   每步：编号 · 轨道 · 正文 + 产出物 · 4:3 照片
   ------------------------------------------------------------ */
.proc { --rail-x: 108px; position: relative; margin-top: 56px; }

.proc__rail {
  position: absolute;
  left: var(--rail-x);
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.proc__rail > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--violet), var(--accent));
  transform: scaleY(var(--p, 0));
  transform-origin: top;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 86px 44px minmax(0, 1fr) minmax(260px, 34%);
  gap: 0 20px;
  padding: 34px 0 40px;
  border-top: 0.5px solid var(--line);
  align-items: start;
}
.step:first-of-type { border-top: 0; padding-top: 8px; }

.step__dot {
  position: absolute;
  left: var(--rail-x);
  top: 44px;
  width: 9px;
  height: 9px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--ground);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.5s var(--ease);
}
.step:first-of-type .step__dot { top: 18px; }
.step.is-on .step__dot {
  background: var(--violet);
  box-shadow: inset 0 0 0 1px var(--violet), 0 0 0 5px rgba(94, 106, 210, 0.13);
  transform: scale(1.15);
}
.step--last.is-on .step__dot {
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(34, 34, 34, 0.25), 0 0 0 5px rgba(217, 242, 79, 0.32);
}

.step__num { grid-column: 1; font-family: var(--mono); font-size: 13px; line-height: 22px; color: var(--ink); }
.step__num em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut-2);
}

.step__body { grid-column: 3; max-width: 600px; }
.step__body h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.step__body h3 small {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--mut);
}
.step__body p { max-width: 52ch; font-size: 14px; font-weight: 300; line-height: 26px; color: var(--mut); }
.step__body p b { font-weight: 500; color: var(--ink); }

.step__out { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 16px; }
.step__out dt {
  margin-right: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 24px;
  color: var(--mut-2);
}
.step__out dd {
  padding: 0 10px;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  line-height: 22px;
  background: var(--card);
}

.step__media {
  grid-column: 4;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-media);
  overflow: hidden;
  background: var(--grey);
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.3s var(--ease);
}
.step.is-on .step__media img { transform: none; }

.step__num, .step__body, .step__media {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.step__body { transition-delay: 0.06s; }
.step__media { transition-delay: 0.12s; }
.step.is-on .step__num,
.step.is-on .step__body,
.step.is-on .step__media { opacity: 1; transform: none; }
.no-js .step__num, .no-js .step__body, .no-js .step__media { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .step { grid-template-columns: 86px 44px minmax(0, 1fr); }
  .step__media { grid-column: 3; max-width: 520px; margin-top: 22px; }
}
@media (max-width: 860px) {
  .proc { --rail-x: 4px; }
  .step { grid-template-columns: minmax(0, 1fr); padding-left: 26px; }
  .step__num, .step__body, .step__media { grid-column: 1; }
  .step__num { margin-bottom: 8px; }
  .step__dot { top: 40px; }
  .step:first-of-type .step__dot { top: 14px; }
}

/* ---------- 八类成果物 ---------- */
.dlv-head { margin-top: 70px; }

.dlv {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-x);
  margin-top: 30px;
}
.dlv__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 156px;
  padding: 20px 22px 18px;
  background: var(--card);
  border-radius: var(--r-card);
  box-shadow: inset 0 0 0 0.5px var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dlv__item:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.2); }
.dlv__item::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: var(--grey);
  transition: background 0.3s var(--ease);
}
.dlv__item:hover::after { background: var(--accent); }
.dlv__item--key::after { background: var(--violet); }
.dlv__n { font-family: var(--mono); font-size: 12px; color: var(--mut-2); }
.dlv__name { margin-top: auto; padding-top: 28px; font-size: 18px; font-weight: 500; line-height: 24px; }
.dlv__sub { margin-top: 2px; font-size: 13px; line-height: 20px; color: var(--mut); }

.dlv__note {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
  font-size: 15px;
  line-height: 24px;
}
.dlv__note i { width: 7px; height: 7px; border-radius: 1.5px; background: var(--violet); flex: none; transform: translateY(-1px); }
.dlv__note b { font-weight: 500; }

@media (max-width: 1100px) { .dlv { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ------------------------------------------------------------
   04 · 我们说机器的语言：你说 / 我们听到
   ------------------------------------------------------------ */
.hear { margin-top: 44px; border-top: 0.5px solid var(--line); }
.hear__row {
  display: grid;
  grid-template-columns: 96px minmax(0, 0.85fr) 96px minmax(0, 1.15fr);
  gap: 20px;
  padding: 30px 0;
  border-bottom: 0.5px solid var(--line);
  align-items: start;
}
.hear__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 24px;
  color: var(--mut-2);
}
.hear__say {
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.hear__say::before { content: "「"; color: var(--mut-2); }
.hear__say::after { content: "」"; color: var(--mut-2); }
.hear__get { font-size: 14px; font-weight: 300; line-height: 26px; color: var(--mut); }
.hear__get b { font-weight: 500; color: var(--ink); }

@media (max-width: 860px) {
  .hear__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .hear__k + .hear__get, .hear__k + .hear__say { margin-bottom: 8px; }
}

/* ------------------------------------------------------------
   05 · 伙伴：四张彩色伙伴卡 + 「不局限品牌」字标流动带 + 客户标识流动墙
   卡片底图是生成的平涂色底 + 写实 3D 面板（母版 assets/img/gen/partners/brand-*.png，
   网页引 gen/web/partners/，配方见 gen/_BRIEF.md R8），一卡一色；
   --c 是从各自底图采样的平涂色，只在悬停的箭头圆点上出现。
   字标仍是排版出来的文字，不是各家的正式标识。
   ------------------------------------------------------------ */
.pcards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-x);
  margin-top: 40px;
}
.pcard {
  --c: var(--violet);
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 5;
  padding: 24px 26px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--grey);
  isolation: isolate;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
a.pcard:hover { transform: translateY(-5px); box-shadow: 0 34px 54px -36px rgba(34, 34, 34, 0.55); }
.pcard__art { position: absolute; inset: 0; z-index: -1; }
.pcard__art img,
.pcard__art picture { display: block; width: 100%; height: 100%; }
.pcard__art img { object-fit: cover; transition: transform 1.1s var(--ease); }
.pcard:hover .pcard__art img { transform: scale(1.045); }

.pcard__head { display: flex; flex-direction: column; gap: 5px; }
.pcard__mark { font-size: 27px; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
.pcard__mark--wide { letter-spacing: 0.16em; }
.pcard__mark small { font-size: 0.7em; font-weight: 400; letter-spacing: normal; }
.pcard__cn { font-size: 13px; line-height: 18px; color: rgba(34, 34, 34, 0.62); }

/* 卡底的白色贴纸：文字不压在彩色底上 */
.pcard__sheet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: auto -14px -12px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: calc(var(--r-card) - 4px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.pcard__role { font-size: 14px; font-weight: 400; line-height: 23px; color: var(--mut); }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.pcard__tag i { width: 6px; height: 6px; border-radius: 1.5px; background: var(--accent); }
.pcard--v .pcard__tag i { background: var(--violet); }
.pcard__go {
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.45s var(--ease);
}
.pcard__go svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pcard:hover .pcard__go { background: var(--c); color: var(--ink); transform: translate(2px, -2px); }

@media (max-width: 1100px) { .pcards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .pcards { grid-template-columns: 1fr; }
  .pcard { aspect-ratio: 4 / 4.5; padding: 20px 22px; }
  .pcard__sheet { margin: auto -12px -10px; padding: 16px; }
}

/* ---------- 不局限品牌：标题 + 字标流动带 ---------- */
.allb { margin-top: 70px; padding-top: 40px; border-top: 0.5px solid var(--line); }
.allb__text { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 40px; flex-wrap: wrap; }
.allb__text .heading-5 { max-width: 12ch; }
.allb__text p { max-width: 34ch; font-size: 18px; line-height: 26px; color: var(--mut); }

/* 流动带通用：出血到视口两侧，边缘渐隐；三份同样的内容首尾相接，位移 1/3 即无缝 */
.flow {
  --dur: 56s;
  position: relative;
  overflow: hidden;
  margin: 28px calc(-1 * var(--pad)) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.flow__row { display: flex; width: max-content; animation: pflow var(--dur) linear infinite; will-change: transform; }
.flow__row--rev { animation-direction: reverse; }
.flow__row + .flow__row { margin-top: 14px; }
.flow:hover .flow__row,
.flow.is-off .flow__row { animation-play-state: paused; }
.flow__set { display: flex; align-items: center; gap: 14px; padding-right: 14px; margin: 0; list-style: none; }
@keyframes pflow { to { transform: translateX(calc(-100% / 3)); } }

/* 字标带：大字号排版字标，中间隔一颗青柠 / 紫罗兰小方块（沿用站内跑马灯的语言） */
.flow--brands { margin-top: 34px; padding: 6px 0; }
.flow--brands .flow__set { gap: 0; padding-right: 0; }
.bm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: var(--ink);
}
.bm::after {
  content: "";
  width: 12px;
  height: 12px;
  margin: 0 34px;
  border-radius: 2px;
  background: var(--accent);
  flex: none;
}
.bm:nth-child(even)::after { background: var(--violet); }
.bm--wide { letter-spacing: 0.16em; }
.bm small { font-size: 0.56em; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut); }
.bm em { font-style: normal; font-size: 0.72em; font-weight: 600; letter-spacing: 0.04em; color: var(--mut); }
.bm--any {
  height: 1.6em;
  padding: 0 0.7em;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--violet);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--violet);
}
.bm--any::after { display: none; }

/* ---------- 客户标识流动墙：两行反向，白色小卡里放单色标识 ---------- */
.clients { margin-top: 70px; padding-top: 40px; border-top: 0.5px solid var(--line); }
.clients__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.clients__head .t-13 { margin: 0; }
.flow--logos { margin-top: 26px; padding: 2px 0; }
.lf__cell {
  display: grid;
  place-items: center;
  height: 92px;
  padding: 0 30px;
  background: var(--card);
  border-radius: var(--r-ui);
  box-shadow: inset 0 0 0 0.5px var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.lf__cell:hover { box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.28); }
.lf__cell img {
  height: 30px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease);
}
.lf__cell:hover img { opacity: 1; }
.clients__audit { margin-top: 24px; max-width: 72ch; font-size: 13px; line-height: 22px; color: var(--mut); }
.clients__audit b { font-weight: 500; color: var(--ink); }

@media (max-width: 560px) {
  .flow { margin-left: -20px; margin-right: -20px; }
  .lf__cell { height: 72px; padding: 0 20px; }
  .lf__cell img { height: 24px; max-width: 170px; }
  .bm::after { margin: 0 22px; }
}

/* 减少动效 / 无 JS：不流动，三份里只留一份，换行平铺（副本的图靠 hmi.js 才会加载） */
@media (prefers-reduced-motion: reduce) {
  .flow { margin-left: 0; margin-right: 0; -webkit-mask-image: none; mask-image: none; }
  .flow__row { width: auto; animation: none; }
  .flow__set[aria-hidden="true"] { display: none; }
  .flow__set { flex-wrap: wrap; }
  .pcard, .pcard__art img, .pcard__go { transition: none; }
}
.no-js .flow { margin-left: 0; margin-right: 0; -webkit-mask-image: none; mask-image: none; }
.no-js .flow__row { width: auto; animation: none; }
.no-js .flow__set[aria-hidden="true"] { display: none; }
.no-js .flow__set { flex-wrap: wrap; }

/* ------------------------------------------------------------
   06 · 案例：一张 16:9 主图 + 2×2 作品卡（复用 card-slide / figure-rollover）
   ------------------------------------------------------------ */
.works-feat {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin-top: 40px;
  border-radius: var(--r-media);
  overflow: hidden;
  background: var(--grey);
}
.works-feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.works-feat:hover img { transform: scale(1.02); }
.works-feat__cap { position: absolute; left: 18px; bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.works-feat__cap span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.4) blur(3px);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}
.works-feat__cap span b { font-weight: 500; }
.works-feat__cap span i { width: 5px; height: 5px; border-radius: 1px; background: var(--accent); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-y) var(--gap-x);
  margin-top: var(--gap-y);
}
.works-grid .figure-rollover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.works-more { margin-top: 30px; }

@media (max-width: 860px) {
  .works-feat { aspect-ratio: 4 / 3; }
  .works-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   07 · 还有两件事：上位机 / 硬件与授权（青柠卡是全页唯一的大色块）
   ------------------------------------------------------------ */
.more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-x);
  margin-top: 40px;
}
.more__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  padding: 34px 34px 30px;
  background: var(--card);
  border-radius: var(--r-card);
  box-shadow: inset 0 0 0 0.5px var(--line);
  scroll-margin-top: 90px;
}
.more__card .sec__label { color: var(--mut); }
.more__card h3 { font-size: clamp(22px, 2vw, 30px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; max-width: 16ch; }
.more__card > p { max-width: 44ch; color: var(--mut); }
.more__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
}
.more__list div { font-size: 14px; line-height: 22px; }
.more__list b { display: block; font-weight: 500; }
.more__list span { font-size: 13px; color: var(--mut); }

.more__card--lime { background: var(--accent); box-shadow: none; }
.more__card--lime .sec__label,
.more__card--lime > p,
.more__card--lime .more__list span { color: rgba(34, 34, 34, 0.68); }
.more__card--lime .more__list { border-top-color: rgba(34, 34, 34, 0.18); }

@media (max-width: 860px) {
  .more { grid-template-columns: 1fr; }
  .more__card { padding: 26px 24px 24px; min-height: 0; }
}

/* ------------------------------------------------------------
   减少动效
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .step__num, .step__body, .step__media { opacity: 1; transform: none; transition: none; }
  .step__media img { transform: none; transition: none; }
  .cmp__tag, .cmp__hint { transition: none; }
}

/* 案例卡里的画面多是 16:9 的真实交付图，画框放宽到 16:10 少裁一点 */
.works-grid .figure-rollover { aspect-ratio: 16 / 10; }

/* ---------- 视觉化改造（2026-09-05）----------
   WHY 六行表格原来是纯文字网格，逐行加了 emoji 圆章与彩色收益标签；
   圆章样式本体在 vibe.css，这里只做本页的对齐与配色接线。 */
.why__gain i { background: var(--vb-f); }
.why__gain {
  padding: 2px 9px;
  border-radius: 6px;
  background: var(--vb-b);
  color: var(--vb-f);
  font-weight: 500;
  /* 静止时只有文字，hover 才浮出彩底：一排六个色块会太吵 */
  background-size: 0% 100%;
  background-image: linear-gradient(var(--vb-b), var(--vb-b));
  background-color: transparent;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease);
}
.why__row:hover .why__gain { background-size: 100% 100%; }

/* 现场原话前的 emoji 章 */
/* 现场原话的 emoji 圆章走 .vb-e 的 ::before；引号由 .hear__say 自己的 ::before 提供，
   两者会打架，所以原话这行改用 ::after 收尾的引号 */
.hear__say.vb-e::before { content: attr(data-e); }

/* 供应商审核：从灰色长句改成提示条后，宽度与页面栅格对齐 */
.clients__audit.vb-note { max-width: 92ch; font-size: 13px; line-height: 23px; }
.clients__audit.vb-note b { font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .why__gain { background-size: 100% 100%; transition: none; }
}
