/* ============================================================
   CASE STUDY — 板块库
   作品详情页共用样式。依赖 style.css 的字体与色彩变量。
   注意：html 根字号为 13.28px，本文件统一使用 px / clamp(px)
        以避免换算歧义。
   ============================================================ */

.case-page {
  --cs-paper:     #FBFBF4;
  --cs-paper-2:   #F2EFE7;
  --cs-paper-3:   #E4E0D6;
  --cs-ink:       #020202;
  --cs-ink-2:     #3A3733;
  --cs-ink-3:     #75706A;
  --cs-accent:    #FF852D;
  /* 强调色的 rgb 分量单独存一份，供 rgb(var(--cs-accent-rgb) / A) 调透明度用。
     不要在板块里写死 rgba(255,133,45,…)，否则整页换色时改不动。 */
  --cs-accent-rgb: 255 133 45;
  /* 浅底上压强调色文字时用这个更深的版本：强调色本身压在自己的浅色底上
     对比度只有 2 点几，不够看。 */
  --cs-accent-deep: #A84A12;
  /* 深底（首屏 / 计数条）上压强调色文字时用这个更亮的版本。
     橙色本身在黑底上就有 7:1，所以默认等于强调色本身；
     红色不行——#E60012 压在 #020202 上只有 4.35:1，字会发闷。 */
  --cs-accent-lift: var(--cs-accent);
  --cs-hair:      rgba(2, 2, 2, 0.11);
  --cs-hair-dark: rgba(251, 251, 244, 0.14);
  --cs-max:       1240px;
}
/* 版式作用域与主色是两件事，分成两组类：
   `is-editorial` 只管版式——从内刊案例长出来的那一套板块（cs-map-list /
   cs-deck / cs-tocmap / cs-delivery-* / cs-reflection-list …）。想复用这套
   版式的新案例页，body 上加 `is-editorial` 就行，不必再抄一遍 CSS。
   `is-vision` / `is-culture` 只管颜色，各自定义一组强调色变量。 */

/* 《昂楷视界》内刊案例：整页换成期刊自己的主色（规范里的 #E60012 / #222222）。 */
.case-page.is-vision {
  --cs-accent:      #E60012;
  --cs-accent-rgb:  230 0 18;
  --cs-accent-deep: #A8000D;
  --cs-accent-lift: #FF3B47;   /* 黑底上约 5.8:1 */
}

/* 文化墙 / 展厅案例：取企业标识与展厅背光字的那支蓝。
   #4265F5 压在 #020202 上只有 4.1:1，所以深底另给一版更亮的 lift。 */
.case-page.is-culture {
  --cs-accent:      #4265F5;
  --cs-accent-rgb:  66 101 245;
  --cs-accent-deep: #2A46B8;   /* 浅底上压深字 */
  --cs-accent-lift: #8CA4FF;   /* 黑底上约 7.1:1 */
}

/* 全局 img 规则是 cover + 100% 高，详情页的图需要按原比例显示 */
.case-page img {
  height: auto;
  object-fit: contain;
}

/* ────────────────────────────────────────
   页内导航（左侧固定目录）
   由 case.js 依据正文板块自动生成，只在正文区间显示。
   可用宽度取决于「正文容器居中后剩下的左侧空白」，
   空间不够时退化为只显示序号、hover 再展开标题。
──────────────────────────────────────── */
.cs-toc {
  position: fixed;
  left: 20px;
  top: 132px;               /* 顶部锚定：留出固定导航的高度 */
  z-index: 60;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.cs-toc.is-visible { opacity: 1; visibility: visible; }
.cs-toc.is-dark-zone { opacity: 0; visibility: hidden; pointer-events: none; }

.cs-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cs-toc a {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 7px 0 7px 12px;
  border-left: 2px solid var(--cs-hair);
  font-family: var(--f-cjk);
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--cs-ink-3);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cs-toc a i {
  font-style: normal;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--cs-paper-3);
  flex: 0 0 auto;
  width: 17px;
  transition: color .3s var(--ease);
}
.cs-toc a time {
  margin-left: auto;
  color: var(--cs-ink-3);
  font: 500 11px/1 var(--f-body);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.cs-toc a:hover { color: var(--cs-ink); border-left-color: var(--cs-ink-3); }
.cs-toc a:hover i { color: var(--cs-ink-3); }
.cs-toc li.is-active a {
  color: var(--cs-ink);
  font-weight: 600;
  border-left-color: var(--cs-accent);
}
.cs-toc li.is-active a i { color: var(--cs-accent); }

/* ≥1024 才出现。默认只显示序号、hover 展开为浮层；
   空间够时由 JS 加上 .is-wide 让标题常显——用实测空隙判定，
   而不是写死断点，这样正文容器宽度再调也不用回来改这里。 */
@media (min-width: 1024px) {
  .cs-toc {
    display: block;
    padding: 8px;
    border-radius: 8px;
    transition: opacity .45s var(--ease), visibility .45s var(--ease),
                background .3s var(--ease), box-shadow .3s var(--ease);
  }
  .cs-toc a span { display: none; }
  .cs-toc a time { display: none; }
  .cs-toc:hover,
  .cs-toc:focus-within {
    background: var(--cs-paper);
    box-shadow: 0 10px 34px rgba(2,2,2,0.12);
  }
  .cs-toc:hover a span,
  .cs-toc:focus-within a span { display: inline; white-space: nowrap; }
  .cs-toc:hover a time,
  .cs-toc:focus-within a time { display: inline; }

  .cs-toc.is-wide { padding: 0; width: 174px; }
  .cs-toc.is-wide a span { display: inline; }
  .cs-toc.is-wide a time { display: inline; }
  .cs-toc.is-wide:hover,
  .cs-toc.is-wide:focus-within { background: none; box-shadow: none; }
}

/* 文化墙的 10 分钟参观 HUD：只在 01—06 之间出现。 */
.culture-timebar {
  position: fixed;
  z-index: 58;
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: 116px minmax(430px, 1fr) auto;
  align-items: center;
  width: min(940px, calc(100vw - 48px));
  min-height: 66px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  background: rgba(7,10,16,.86);
  box-shadow: 0 18px 54px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
}
.culture-timebar.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.culture-timebar-clock { display: grid; gap: 2px; }
.culture-timebar-clock small { color: rgba(255,255,255,.55); font: 12px/1 var(--f-cjk); }
.culture-timebar-clock b { font: 500 23px/1 var(--f-body); font-variant-numeric: tabular-nums; }
.culture-timebar nav { display: grid; grid-template-columns: repeat(5, 1fr); align-self: stretch; }
.culture-timebar nav button { position: relative; display: grid; place-content: center; gap: 4px; border: 0; border-radius: 12px; color: rgba(255,255,255,.52); background: transparent; font-family: var(--f-cjk); cursor: pointer; transition: color .25s, background .25s; }
.culture-timebar nav button small { color: #7896ff; font: 600 10px/1 var(--f-body); letter-spacing: .08em; }
.culture-timebar nav button span { font-size: 13px; }
.culture-timebar nav button.is-active { color: #fff; background: rgba(94,119,234,.3); }
.culture-timebar-status { display: flex; align-items: center; gap: 8px; margin-left: 14px; padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.08); white-space: nowrap; }
.culture-timebar-status span { width: 7px; height: 7px; border-radius: 50%; background: #7896ff; box-shadow: 0 0 0 5px rgba(120,150,255,.13); }
.culture-timebar-status b { font: 500 13px/1 var(--f-cjk); }
.culture-timebar-progress { position: absolute; right: 16px; bottom: 5px; left: 16px; height: 2px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.14); }
.culture-timebar-progress i { display: block; width: 100%; height: 100%; background: #7896ff; transform: scaleX(0); transform-origin: left center; will-change: transform; }

@media (max-width: 760px) {
  .culture-timebar { grid-template-columns: auto 1fr; width: calc(100vw - 28px); min-height: 58px; padding: 9px 12px 11px; border-radius: 15px; }
  .culture-timebar-clock { grid-template-columns: auto auto; align-items: baseline; gap: 6px; }
  .culture-timebar-clock b { font-size: 18px; }
  .culture-timebar nav { display: none; }
  .culture-timebar-status { justify-self: end; margin-left: 10px; padding: 9px 11px; }
}

/* ────────────────────────────────────────
   通用：段落容器 / 编号 / 标题
──────────────────────────────────────── */
.cs-section {
  max-width: var(--cs-max);
  margin: 0 auto;
  /* 章节之间只用间距分隔，不画发丝线。没有线之后间距要相应收窄：
     原来上下各 96px（合 192px）是为了配合分隔线，现在会空出一大块。 */
  padding: clamp(40px, 4.4vw, 62px) var(--gutter);
}

.cs-num {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-ink-3);
  margin: 0 0 10px;
}
.cs-title {
  font-family: var(--f-cjk);
  font-size: clamp(27.5px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--cs-ink);
  margin: 0 0 8px;
  /* 不设 max-width。20em 在 44px 下只有 880px，容器却有 1240px——
     标题会在右边还空着 360px 的时候就折行，看起来像被硬断开的。 */
}
.cs-title em {
  font-style: normal;
  color: var(--cs-accent);
}
.cs-lede {
  font-family: var(--f-cjk);
  font-size: clamp(18.5px, 1.4vw, 20.5px);
  line-height: 1.85;
  color: var(--cs-ink-2);
  margin: 18px 0 0;
}
.cs-sub {
  font-family: var(--f-cjk);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--cs-ink);
  margin: 40px 0 16px;
}

/* 浅色段落的正文默认色 */
.cs-body { background: var(--cs-paper); color: var(--cs-ink); }
.cs-body p { color: var(--cs-ink-2); }

/* ────────────────────────────────────────
   HERO（深色）
──────────────────────────────────────── */
.cs-hero {
  background: var(--cs-ink);
  padding: clamp(120px, 14vw, 190px) var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.cs-hero-glow {
  position: absolute;
  left: 50%; top: -20%;
  width: 90vw; height: 70vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgb(var(--cs-accent-rgb) / 0.16), transparent 68%);
  pointer-events: none;
}
.cs-hero-inner {
  max-width: var(--cs-max);
  margin: 0 auto;
  position: relative;
}
.cs-eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cs-accent-lift);
  margin: 0 0 22px;
}
.cs-hero-title {
  font-family: var(--f-cjk);
  font-size: clamp(33.5px, 5.4vw, 68px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--cs-paper);
  margin: 0 0 22px;
}
.cs-hero-title em {
  font-style: normal;
  color: var(--cs-accent-lift);
}
.cs-hero-sub {
  font-family: var(--f-cjk);
  font-size: clamp(17.5px, 1.4vw, 20px);
  line-height: 1.85;
  color: rgba(251,251,244,0.66);
  margin: 0 0 30px;
}
.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-tag {
  font-family: var(--f-cjk);
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid var(--cs-hair-dark);
  border-radius: 100px;
  color: rgba(251,251,244,0.72);
}

/* HERO META（角色 / 时间 / 交付） */
.cs-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--cs-hair-dark);
}
.cs-hero-meta dt {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,251,244,0.38);
  margin-bottom: 7px;
}
.cs-hero-meta dd {
  font-family: var(--f-cjk);
  font-size: 17px;
  color: rgba(251,251,244,0.82);
  margin: 0;
  line-height: 1.5;
}

/* ────────────────────────────────────────
   单页墙 — 双轨反向滚动
──────────────────────────────────────── */
.cs-wall {
  background: var(--cs-ink);
  padding: clamp(48px, 6vw, 78px) 0 0;
  position: relative;
}
.cs-wall-rows { display: flex; flex-direction: column; gap: 16px; }
.cs-wall-row {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}
.cs-wall-row[data-dir="left"]  { animation: cs-wall-left  64s linear infinite; }
.cs-wall-row[data-dir="right"] { animation: cs-wall-right 64s linear infinite; }
.cs-wall:hover .cs-wall-row { animation-play-state: paused; }

@keyframes cs-wall-left  { from { transform: translate3d(0,0,0); }     to { transform: translate3d(-50%,0,0); } }
@keyframes cs-wall-right { from { transform: translate3d(-50%,0,0); }  to { transform: translate3d(0,0,0); } }

/* 左右边缘渐隐，避免宽屏露白（沿用首页 AI 轨道的做法） */
.cs-wall-mask {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.cs-sheet {
  flex: 0 0 auto;
  width: clamp(132px, 13vw, 186px);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4), 0 14px 34px rgba(0,0,0,0.34);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  cursor: zoom-in;
  display: block;
}
/* aspect-ratio 必须写死：缩略图是 lazy 的，没有它则图片加载前高度为 0，
   单页墙第二排会整排塌成一条线；而 0 高度的 lazy 图 Chrome 又永远不会去加载，
   于是死锁在「只有一排」。同时它还保证首屏之后的页面高度从一开始就是最终值，
   ScrollTrigger 测出来的位置不会因为图片陆续到货而失效。 */
.cs-sheet img { width: 100%; display: block; aspect-ratio: 420 / 543; }
.cs-sheet:hover {
  transform: translateY(-10px) scale(1.045);
  box-shadow: 0 6px 12px rgba(0,0,0,0.45), 0 26px 56px rgba(0,0,0,0.5);
  z-index: 3;
}
.cs-sheet-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 10px 9px;
  background: linear-gradient(to top, rgba(2,2,2,0.9), transparent);
  font-family: var(--f-cjk);
  font-size: 13px;
  line-height: 1.35;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cs-sheet:hover .cs-sheet-label { opacity: 1; transform: translateY(0); }
.cs-sheet-label b { display: block; font-weight: 600; }
.cs-sheet-label span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.62);
  font-size: var(--fs-xs);
}
/* 产品主色细条，坐实“色彩编码” */
.cs-sheet::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--sheet-c, transparent);
  z-index: 2;
}

/* ────────────────────────────────────────
   HERO 计数条（深色，紧接单页墙）
──────────────────────────────────────── */
.cs-metrics {
  background: var(--cs-ink);
  padding: clamp(46px, 5.5vw, 74px) var(--gutter) clamp(52px, 6vw, 84px);
}
.cs-metrics-inner {
  max-width: var(--cs-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-metric-n {
  font-family: var(--f-heading);
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1;
  color: var(--cs-accent-lift);
}
.cs-metric-n small {
  font-family: var(--f-cjk);
  font-size: 0.32em;
  color: rgba(251,251,244,0.55);
  margin-left: 5px;
  letter-spacing: 0.04em;
}
.cs-metric-l {
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(251,251,244,0.55);
  margin-top: 9px;
}

/* ────────────────────────────────────────
   数字 / 卡片 / 提问
──────────────────────────────────────── */
.cs-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 68px);
  margin: 34px 0 40px;
}
.cs-stat-n {
  font-family: var(--f-heading);
  font-size: clamp(35.5px, 4vw, 52px);
  line-height: 1;
  color: var(--cs-ink);
}
.cs-stat-n small {
  font-family: var(--f-cjk);
  font-size: 0.34em;
  color: var(--cs-ink-3);
  margin-left: 4px;
}
.cs-stat-l {
  font-family: var(--f-cjk);
  font-size: 16px;
  color: var(--cs-ink-3);
  margin-top: 8px;
  line-height: 1.55;
}

.cs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.cs-card {
  padding: 26px;
  background: var(--cs-paper-2);
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
}
.cs-card-label {
  display: block;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 12px;
}
.cs-card-text {
  font-family: var(--f-cjk);
  font-size: 17px;
  line-height: 1.8;
  color: var(--cs-ink-2);
  margin: 0;
}

.cs-question {
  padding: 30px 36px;
  border-left: 2px solid var(--cs-accent);
  background: var(--cs-paper-2);
  border-radius: 0 6px 6px 0;
  font-family: var(--f-cjk);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--cs-ink);
}

/* 深色引言块 */
.cs-quote-dark {
  padding: 30px 34px;
  background: var(--cs-ink);
  color: var(--cs-paper);
  border-radius: 6px;
  font-family: var(--f-cjk);
  font-size: clamp(17.5px, 1.5vw, 20px);
  line-height: 1.85;
  margin: 32px 0 0;
}
.cs-quote-dark em { font-style: normal; color: var(--cs-accent); }

/* 浅色引言块 —— 一个详情页只需要一处黑色强调，其余收束型引言用这个。
   注意：强调色不能直接用 --cs-accent，橙字压在橙色浅底上对比度不足，
   改用更深的 var(--cs-accent-deep)（对比度约 5:1）。 */
.cs-quote-soft {
  padding: 30px 34px;
  background: rgb(var(--cs-accent-rgb) / 0.07);
  border-radius: clamp(14px, 1.4vw, 18px);
  box-shadow: inset 0 1.5px 0 0 rgba(255, 255, 255, 0.6);
  font-family: var(--f-cjk);
  font-size: clamp(17.5px, 1.5vw, 20px);
  line-height: 1.85;
  color: var(--cs-ink-2);
  margin: 32px 0 0;
}
.cs-quote-soft em {
  font-style: normal;
  font-weight: 600;
  color: var(--cs-accent-deep);
}

/* ────────────────────────────────────────
   跨部门汇聚图
──────────────────────────────────────── */
.cs-hub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 190px;
  margin: 34px 0 0;
  align-items: start;
}
.cs-hub-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  pointer-events: none;
}
.cs-hub-svg path {
  fill: none;
  stroke: var(--cs-accent);
  stroke-width: 1;
  opacity: 0.5;
}
.cs-hub-node {
  padding: 18px 20px;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  background: var(--cs-paper);
  position: relative;
  z-index: 1;
}
.cs-hub-node h4 {
  font-family: var(--f-cjk);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--cs-ink);
}
.cs-hub-node p {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cs-ink-3);
  margin: 0;
}
.cs-hub-core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--cs-ink);
  color: var(--cs-paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
}
.cs-hub-core b {
  font-family: var(--f-cjk);
  font-size: 17.5px;
  font-weight: 600;
}
.cs-hub-core span {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-accent);
}

/* ────────────────────────────────────────
   两栏对照（传统 vs 我的方案）
──────────────────────────────────────── */
.cs-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  margin: 22px 0;
}
.cs-compare-col + .cs-compare-col { border-left: 1px solid var(--cs-hair); }
.cs-compare-head {
  padding: 14px 22px;
  font-family: var(--f-cjk);
  font-size: 14px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--cs-hair);
  background: var(--cs-paper-2);
  color: var(--cs-ink-3);
}
.cs-compare-col.is-mine .cs-compare-head {
  background: var(--cs-accent);
  color: #fff;
}
.cs-compare-row {
  padding: 15px 22px;
  border-bottom: 1px solid var(--cs-hair);
}
.cs-compare-row:last-child { border-bottom: none; }
.cs-compare-k {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cs-ink-3);
  margin-bottom: 5px;
}
.cs-compare-v {
  font-family: var(--f-cjk);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--cs-ink-2);
}
.cs-compare-col.is-mine .cs-compare-v { color: var(--cs-ink); }
.cs-gain {
  display: inline-block;
  margin-top: 9px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgb(var(--cs-accent-rgb) / 0.12);
  color: var(--cs-accent-deep);
  font-family: var(--f-cjk);
  font-size: 13.5px;
}

/* ────────────────────────────────────────
   痛点 → 解法（.cs-shift）
   替代 .cs-compare 的表格式对照。两栏不是对等关系：
   左栏（问题）弱——灰、圆点清单、收尾一句引文；
   右栏（挑战）强——关键词用主色，其余交给留白。
   层级靠色阶和字重建立，不用竖条、不用格子。
──────────────────────────────────────── */
.cs-shift {
  display: grid;
  /* 等宽两栏：两个表头是同级的表头，宽度不一致会看出来。
     列间距为 0，让它们连成一条通栏色带（和 02 的对照表头一致）；
     正文两栏的间距改由左栏 padding-right 撑出来，不用 column-gap。 */
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
  margin: 30px 0 8px;
}
.cs-shift-body { padding-top: 8px; }
.cs-shift-body:first-of-type { padding-right: clamp(28px, 4vw, 64px); }

/* 两个表头。字号字重与清单里的关键词同级——它们是这一段的骨架，
   不该比正文还小。常驻底色，不依赖 hover：鼠标不在这里时也要立得住。
   配色沿用 02 对照表头那一套——弱的一侧用纸底灰字，重的一侧用主色实底
   白字，全页保持同一种「主 / 次」表达。 */
.cs-shift-label {
  font-family: var(--f-cjk);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cs-ink-3);
  background: var(--cs-paper-2);
  padding: 12px 14px;
}
.cs-shift-label.is-mine {
  color: #fff;
  background: var(--cs-accent);
}
/* 圆角按位置判定，不按 is-mine——主色一侧可能在左（02）也可能在右（01）。 */
.cs-shift-label:first-of-type  { border-radius: 4px 0 0 4px; }
.cs-shift-label:nth-of-type(2) { border-radius: 0 4px 4px 0; }

/* 单句说明（左右任一栏都可用）。内边距与清单行对齐。 */
.cs-shift-text {
  padding: 14px;
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.72;
  color: var(--cs-ink);
}

/* 左栏：问题清单 */
.cs-shift-flaws {
  list-style: none;
  margin: 0;
  padding: 2px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-shift-flaws li {
  position: relative;
  padding-left: 18px;
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--cs-ink-2);
}
.cs-shift-flaws li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cs-ink-3);
}

/* 关键词 + 说明的清单。关键词只靠颜色区分，字号字重与说明文字一致。
   --kw 是关键词列宽：默认放得下三个字，四个字的用 .is-wide。 */
.cs-shift-goals { list-style: none; margin: 0; padding: 0; --kw: 68px; }
.cs-shift-goals.is-wide { --kw: 82px; }
.cs-shift-goals li {
  display: grid;
  grid-template-columns: var(--kw) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px;
  border-bottom: 1px solid var(--cs-hair);
  border-radius: 4px;
  transition: background .3s ease;
}
.cs-shift-goals li:last-child { border-bottom: none; }
.cs-shift-goals li:hover { background: rgb(var(--cs-accent-rgb) / 0.05); }
.cs-shift-goals b {
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cs-accent-deep);
}
.cs-shift-goals span {
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.72;
  color: var(--cs-ink);
}
/* 次要一侧：关键词转灰、说明降一档、hover 底色转中性，
   与灰底表头配成一套。 */
.cs-shift-goals.is-muted b { color: var(--cs-ink-3); }
.cs-shift-goals.is-muted span { color: var(--cs-ink-2); }
.cs-shift-goals.is-muted li:hover { background: rgb(2 2 2 / 0.035); }

.cs-review-paths {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-review-paths li {
  position: relative;
  padding-left: 16px;
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.72;
  color: var(--cs-ink);
}
.cs-review-paths li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--cs-accent-rgb) / 0.68);
}

/* ────────────────────────────────────────
   01 / 战略诊断
   不把问题归结为表面样式，而是把刊物作为企业内容产品来审视：
   先拆出系统断点，再给出一一对应的行动路径。
──────────────────────────────────────── */
.case-page.is-editorial .cs-strategy {
  margin-top: clamp(42px, 5vw, 68px);
  border-top: 0;
}
.case-page.is-editorial .cs-strategy-head {
  display: grid;
  grid-template-columns: minmax(180px, .64fr) minmax(0, 1.36fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(32px, 4vw, 52px) 0;
}
.case-page.is-editorial .cs-strategy-kicker {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
  color: var(--cs-accent-deep);
}
.case-page.is-editorial .cs-strategy-kicker span {
  display: block;
  margin-top: 5px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-strategy-head h3,
.case-page.is-editorial .cs-strategy-brief-intro h3 {
  margin: 0;
  max-width: 19em;
  font-family: var(--f-cjk);
  font-size: clamp(24px, 2.55vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-strategy-head h3 + p,
.case-page.is-editorial .cs-strategy-brief-intro h3 + p {
  margin: 14px 0 0;
  max-width: 46em;
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cs-ink-2);
}
.case-page.is-editorial .cs-strategy-diagnosis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.case-page.is-editorial .cs-strategy-card {
  position: relative;
  min-height: 300px;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  background: transparent;
  border-right: 1px solid var(--cs-hair);
  transition: background .35s var(--ease);
}
.case-page.is-editorial .cs-strategy-card:last-child { border-right: 0; }
.case-page.is-editorial .cs-strategy-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--cs-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.case-page.is-editorial .cs-strategy-card:hover { background: transparent; }
.case-page.is-editorial .cs-strategy-card:hover::before { transform: scaleX(0); }
.case-page.is-editorial .cs-strategy-card header {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-bottom: 26px;
}
.case-page.is-editorial .cs-strategy-card header span,
.case-page.is-editorial .cs-strategy-pillar > span {
  flex: 0 0 auto;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--cs-accent-deep);
}
.case-page.is-editorial .cs-strategy-card h4,
.case-page.is-editorial .cs-strategy-pillar h4 {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-strategy-card > p {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 15px;
  line-height: 1.75;
  color: var(--cs-ink-2);
}
.case-page.is-editorial .cs-strategy-card strong {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--f-cjk);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-strategy-card strong::before {
  content: '后果';
  display: block;
  margin-bottom: 6px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-strategy-brief {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  margin-top: clamp(50px, 6vw, 78px);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.case-page.is-editorial .cs-strategy-brief-intro {
  padding: clamp(30px, 4vw, 54px);
}
.case-page.is-editorial .cs-strategy-brief-intro h3 { margin-top: 46px; }
.case-page.is-editorial .cs-strategy-path { border-left: 0; }
.case-page.is-editorial .cs-strategy-pillar {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 24px clamp(24px, 3vw, 38px);
  border-bottom: 1px solid var(--cs-hair);
  transition: background .3s var(--ease);
}
.case-page.is-editorial .cs-strategy-pillar:last-child { border-bottom: 0; }
.case-page.is-editorial .cs-strategy-pillar:hover { background: rgb(255 255 255 / .42); }
.case-page.is-editorial .cs-strategy-pillar p {
  margin: 6px 0 0;
  font-family: var(--f-cjk);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--cs-ink-2);
}
.case-page.is-editorial .cs-strategy-result {
  display: grid;
  grid-template-columns: minmax(100px, .34fr) minmax(0, 1.66fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: baseline;
  margin: 0;
  padding: clamp(28px, 3vw, 40px) 0 0;
  font-family: var(--f-cjk);
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.6;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-strategy-result span {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cs-accent-deep);
}

@media (max-width: 980px) and (min-width: 769px) {
  .case-page.is-editorial .cs-strategy-diagnosis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-page.is-editorial .cs-strategy-card:nth-child(2) { border-right: 0; }
  .case-page.is-editorial .cs-strategy-card:nth-child(-n+2) { border-bottom: 1px solid var(--cs-hair); }
}

/* ────────────────────────────────────────
   礼盒开启（.cs-reveal）
   视频进度绑定滚轮：钉住区块，把滚动距离换算成 currentTime。
   滚多快动多快，往回滚就反着关上。视频是全关键帧编码的，
   逐帧 seek 才不会卡（见 HANDOFF「滚动绑定视频」）。
──────────────────────────────────────── */
.cs-reveal-scroll {
  position: relative;
  width: 100%;
  background: var(--cs-paper);
}
.cs-reveal-scroll.is-mobile-scrub {
  height: var(--reveal-track-height, 340svh);
}
.cs-reveal-scroll.is-mobile-scrub.is-reduced { height: 100svh; }
.cs-reveal-scroll.is-mobile-scrub > .cs-reveal {
  position: sticky;
  top: 0;
  min-height: 0;
  background: #f4f0e7;
}
.cs-reveal-scroll.is-mobile-scrub.is-reduced > .cs-reveal { position: relative; }
.cs-reveal-scroll.is-mobile-scrub .cs-reveal-video {
  object-fit: cover;
  object-position: center;
}
.cs-reveal {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  background: var(--cs-paper);
}
.cs-reveal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cs-paper-2);
}
.cs-reveal::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgb(251 251 244 / 0.22));
}
.cs-reveal-cap {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 3vw, 44px);
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s var(--ease);
}
.cs-reveal.is-open .cs-reveal-cap { opacity: 0; }
.cs-reveal.is-reduced .cs-reveal-cap { display: none; }
.cs-reveal-k {
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--cs-ink-3);
  margin: 0 0 6px;
}
.cs-reveal-t {
  font-family: var(--f-cjk);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--cs-ink);
  margin: 0;
}

/* ────────────────────────────────────────
   横向面板组（.cs-deck）
   把区块钉在视口，纵向滚动换算成横向位移：五张面板从左到右依次推过，
   走完最后一张才把滚动还给页面。桌面端专用；窄屏退回纵向堆叠。
   用它来合并「同一主题下的多个小节」，比拆成四个纵向小节更有节奏。
──────────────────────────────────────── */
.cs-deck {
  /* 底部不留 padding：钉住后由 pin-spacer 接管间距，
     留了会把面板挤出视口下缘。 */
  padding: clamp(30px, 3.2vw, 46px) 0 0;
  overflow: hidden;
}
.cs-deck-head {
  max-width: var(--cs-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cs-deck-head .cs-lede { margin-bottom: 0; }

.cs-deck-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  margin: 18px 0 0;
  padding: 0;
}
.cs-deck-step {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  color: var(--cs-ink-3);
  transition: color .35s var(--ease);
}
.cs-deck-step i {
  font-style: normal;
  font-family: var(--f-body);
  letter-spacing: 0.06em;
}
.cs-deck-step.is-on { color: var(--cs-accent-deep); }

.cs-deck-rail {
  position: relative;
  height: 2px;
  border-radius: 2px;
  background: var(--cs-hair);
  margin: 11px 0 0;
}
.cs-deck-rail b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 2px;
  background: var(--cs-accent);
}

/* 轨道外面这层不动，遮罩加在它身上：面板滑出左缘时渐隐，
   不会硬邦邦地压在左侧目录上；往回滚会原样渐显回来。 */
.cs-deck-view {
  /* 可见区左缘 = 正文容器的左缘（容器居中后 + gutter），和轨道的
     padding-left 用同一个表达式。左侧目录就贴在这条线外面，所以
     这条线以左必须是全透明的，不能只是「淡一点」。 */
  --deck-edge: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  overflow: visible;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent calc(var(--deck-edge) - 56px),
    #000 var(--deck-edge),
    #000 calc(100% - 48px),
    transparent 100%);
  mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent calc(var(--deck-edge) - 56px),
    #000 var(--deck-edge),
    #000 calc(100% - 48px),
    transparent 100%);
}
.cs-deck-track {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.2vw, 34px);
  width: max-content;
  /* 左内边距要对齐正文容器的左缘（容器居中 + gutter），
     否则第一张面板会比上面的标题更靠左。 */
  padding: 22px var(--gutter) 0 max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  will-change: transform;
}
.cs-panel {
  flex: 0 0 min(920px, 76vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(22px, 2.6vw, 40px);
  align-items: center;
  padding: clamp(22px, 2.4vw, 34px);
  background: var(--cs-paper-2);
  border-radius: 10px;
}
.cs-panel.is-wide { flex-basis: min(1060px, 86vw); }
/* 纯文字面板：没有图，单栏、窄一点，别把一句话摊成一整屏 */
.cs-panel.is-solo {
  grid-template-columns: minmax(0, 1fr);
  flex-basis: min(720px, 68vw);
}
.cs-panel.is-solo .cs-panel-txt { align-self: center; }
.cs-panel.is-solo .cs-stats { margin: 14px 0 16px; gap: clamp(20px, 3vw, 40px); }
.cs-panel.is-solo .cs-stat-n { font-size: clamp(30px, 3.4vw, 42px); }
.cs-panel .cs-shift { margin: 14px 0; }
/* 面板里的对照块整体收一档，面板高度要卡在视口以内 */
.cs-panel .cs-shift-label { padding: 10px 12px; font-size: var(--fs-base); margin-bottom: 4px; }
.cs-panel .cs-shift-goals li { padding: 10px 12px; }
.cs-panel .cs-shift-goals b,
.cs-panel .cs-shift-goals span { font-size: var(--fs-sm); }
.cs-panel .cs-quote-soft { margin: 12px 0 0; font-size: var(--fs-sm); }

/* 关键词换行排的变体：说明较长时，关键词单独占一行 */
.cs-specs-mini.is-block li { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
.cs-specs-mini.is-block b { font-size: var(--fs-base); color: var(--cs-ink); font-weight: 600; }

/* 面板里的图统一压到视口高度以内——反正点开能放大，
   没必要在页面上占掉一屏。 */
.cs-panel-fig { min-width: 0; }
.cs-panel-fig .cs-figure { margin: 0; }
.cs-panel-fig .cs-figure img { max-height: 42vh; object-fit: contain; background: var(--cs-paper); }
.cs-panel-fig.is-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cs-panel-fig.is-pair .cs-figure img { max-height: 42vh; }
.cs-panel-fig .cs-tocmap { grid-template-columns: 1fr; margin: 0; }
.cs-panel-fig .cs-tocmap-fig img { max-height: 44vh; object-fit: contain; }
.cs-panel-fig .cs-pagedemo { margin: 0; }
/* 面板里的页码演示：文字已经搬到右栏，这里只留纸张本身，
   高度压到视口以内，别把整组面板顶高。 */
.cs-panel-fig .cs-pd-wrap { display: block; }
.cs-panel-fig .cs-pd-stage {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}
.cs-panel-fig .cs-pd-ctrl { justify-content: center; margin-top: 14px; }

.cs-panel-txt { min-width: 0; }
.cs-panel-txt h3 {
  font-family: var(--f-cjk);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--cs-ink);
  margin: 0 0 12px;
  line-height: 1.35;
}
.cs-panel-txt p {
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.78;
  color: var(--cs-ink-2);
  margin: 0 0 12px;
}
.cs-panel-txt p:last-child { margin-bottom: 0; }
.cs-panel-txt strong { color: var(--cs-ink); font-weight: 600; }

/* 推导链：一行小字，用箭头串起来 */
.cs-chain {
  font-size: var(--fs-sm) !important;
  color: var(--cs-ink-3) !important;
  line-height: 1.9 !important;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--cs-paper);
}

/* 面板里的规范清单：关键词 + 一行说明，比卡片省地方 */
.cs-specs-mini { list-style: none; margin: 14px 0 0; padding: 0; }
.cs-specs-mini li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--cs-hair);
}
.cs-specs-mini li:last-child { border-bottom: none; }
.cs-specs-mini b {
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--cs-accent-deep);
}
.cs-specs-mini span {
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--cs-ink-2);
}
.cs-specs-mini span i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 5px;
  vertical-align: -1px;
}

/* 面板里的印章：跟着滚动自动在阳刻／阴刻之间翻转，不需要点 */
.cs-seal.is-inline {
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--cs-paper);
}
.cs-seal.is-inline .cs-seal-stage { padding: 12%; border-radius: 8px; }
.cs-seal.is-inline p { font-size: var(--fs-sm); line-height: 1.7; color: var(--cs-ink-2); margin: 0; }
.cs-seal-now {
  font-family: var(--f-cjk);
  font-size: var(--fs-sm) !important;
  font-weight: 600;
  color: var(--cs-accent-deep) !important;
  margin: 0 0 5px !important;
}

/* 面板里的三级优先级：竖排、收紧内边距，去掉外层横滑壳 */
.cs-panel-txt .cs-prios {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.cs-panel-txt .cs-prio { padding: 11px 14px; gap: 12px; }
.cs-panel-txt .cs-prio h4 { margin-bottom: 3px; }
.cs-panel-txt .cs-prio p { font-size: var(--fs-sm); line-height: 1.6; margin: 0; }

/* 面板头的大标题比常规小节小一档：它上面还压着导航，
   用 2xl 会把面板挤出视口。 */
.cs-deck-head .cs-title { font-size: var(--fs-xl); }

/* ────────────────────────────────────────
   竖向时间轴（.cs-line）
   一条主线随滚动从上往下描出来，走到哪一节哪个圆点亮。
   适合「一关一关往下走」的流程，比横向推移安静，也不占额外滚动。
──────────────────────────────────────── */
.cs-line {
  position: relative;
  margin-top: 30px;
  padding-left: 46px;
}
.cs-line-rail {
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 2px;
  background: var(--cs-hair);
}
.cs-line-rail b {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  border-radius: 2px;
  background: var(--cs-accent);
}
.cs-line-item { position: relative; padding: 0 0 clamp(34px, 5vh, 58px); }
.cs-line-item:last-child { padding-bottom: 0; }
.cs-line-dot {
  position: absolute;
  left: -42px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cs-paper-3);
  background: var(--cs-paper);
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.cs-line-item.is-on .cs-line-dot {
  border-color: var(--cs-accent);
  background: var(--cs-accent);
  transform: scale(1.18);
}
.cs-line-k {
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  color: var(--cs-ink-3);
  margin: 0 0 6px;
  transition: color .4s var(--ease);
}
.cs-line-item.is-on .cs-line-k { color: var(--cs-accent-deep); }
.cs-line-body h3 {
  font-family: var(--f-cjk);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--cs-ink);
  margin: 0 0 12px;
  line-height: 1.35;
}
.cs-line-body p {
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  line-height: 1.78;
  color: var(--cs-ink-2);
  margin: 0 0 12px;
}
.cs-line-body p:last-child { margin-bottom: 0; }
.cs-line-body strong { color: var(--cs-ink); font-weight: 600; }
.cs-line-body .cs-plates.is-two { margin: 14px 0; max-width: 520px; }
.cs-line-body .cs-stats { margin: 16px 0 0; }
.cs-line-body .cs-shift { margin: 14px 0; }
.cs-line-body .cs-quote-soft { font-size: var(--fs-sm); margin: 12px 0 0; }

/* ────────────────────────────────────────
   版面小样一排（.cs-plates）
   一排等宽的书页缩略图，点开放大。用来替代「大图 + 缩略图切换」那种
   看板式控件：读者要的是一眼看到这一组长什么样，不是逐张切。
──────────────────────────────────────── */
.cs-plates.is-two { grid-template-columns: 1fr 1fr; margin-top: 0; }
.cs-plates.is-two .cs-plate img { aspect-ratio: 4 / 3; }
.cs-plates {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: 22px;
}
.cs-plate {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: zoom-in;
  font: inherit;
}
.cs-plate img {
  width: 100%;
  display: block;
  aspect-ratio: 923 / 1217;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--cs-hair);
  background: var(--cs-paper);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cs-plate:hover img {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 2, 2, 0.13);
}
.cs-plate b {
  display: block;
  margin: 11px 0 3px;
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--cs-ink);
}
.cs-plate small {
  display: block;
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--cs-ink-3);
}

/* ────────────────────────────────────────
   多面受众（.cs-facets）
   一排等宽格子，衬线大序号 + 标题 + 一句说明。
   用在「同一件东西，要对 N 类人说话」这种并列关系上；
   它不是对照（那用 .cs-shift），所以不分主次、不上底色。
──────────────────────────────────────── */
.cs-facets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--cs-hair);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 22px;
}
.cs-facet { padding: 30px 26px 32px; }
.cs-facet + .cs-facet { border-left: 1px solid var(--cs-hair); }
.cs-facet-n {
  font-family: var(--f-heading);
  font-size: 38px;
  line-height: 1;
  /* 序号是节奏，不是信息：主色压到四成，别跟标题抢。 */
  color: rgb(var(--cs-accent-rgb) / 0.42);
  margin-bottom: 20px;
}
.cs-facet h4 {
  font-family: var(--f-cjk);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--cs-ink);
  margin: 0 0 10px;
}
/* 中英并置的能力名：英文用衬线显示体另起一行，是名字的一部分，
   不是装饰性眉标——所以不用主色、不做大写字距。 */
.cs-facet-en {
  display: block;
  margin-top: 3px;
  font-family: var(--f-heading);
  font-size: var(--fs-md);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cs-ink-3);
}
.cs-facet p {
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--cs-ink-2);
  margin: 0;
}

/* 移动端会把下一章节标题放进卡片的固定舞台，桌面仍显示原章节标题。 */
.cs-audience-stage { display: contents; }
.cs-mobile-pin-preview { display: none; }

/* ────────────────────────────────────────
   区块填写法（PPT 协作）
──────────────────────────────────────── */
.cs-blocks { display: flex; flex-direction: column; gap: 9px; }
.cs-block {
  padding: 11px 14px;
  border: 1px dashed var(--cs-paper-3);
  border-radius: 5px;
}
.cs-block.is-filled {
  border-style: solid;
  border-color: rgb(var(--cs-accent-rgb) / 0.5);
  background: rgb(var(--cs-accent-rgb) / 0.05);
}
.cs-block-k {
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--cs-accent);
  margin-bottom: 4px;
}
.cs-block-v {
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cs-ink-2);
}

/* ────────────────────────────────────────
   制度 / 成员 / 阶段
──────────────────────────────────────── */
.cs-inst {
  padding: clamp(24px, 3vw, 34px);
  background: var(--cs-paper-2);
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  margin: 34px 0 0;
}
.cs-inst-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.cs-inst-title {
  font-family: var(--f-cjk);
  font-size: clamp(18.5px, 1.8vw, 22.5px);
  font-weight: 600;
  margin: 0;
  color: var(--cs-ink);
}
.cs-badge {
  padding: 5px 13px;
  background: var(--cs-ink);
  color: var(--cs-paper);
  border-radius: 100px;
  font-family: var(--f-cjk);
  font-size: 13px;
  white-space: nowrap;
}
.cs-members { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.cs-member {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 5px;
  background: var(--cs-paper);
  border: 1px solid var(--cs-hair);
  border-radius: 100px;
  font-family: var(--f-cjk);
  font-size: 15.5px;
  color: var(--cs-ink-2);
}
.cs-member i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cs-ink-3);
  color: #fff;
  font-style: normal;
  font-size: var(--fs-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-member.is-me i { background: var(--cs-accent); }
.cs-member.is-me { border-color: rgb(var(--cs-accent-rgb) / 0.45); }

.cs-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 20px;
  background: var(--cs-paper);
}
.cs-stage { padding: 22px; }
.cs-stage + .cs-stage { border-left: 1px solid var(--cs-hair); }
.cs-stage-n {
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  color: var(--cs-accent);
  margin-bottom: 8px;
}
.cs-stage h4 {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--cs-ink);
}
.cs-stage ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.cs-stage li {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cs-ink-3);
  padding-left: 13px;
  position: relative;
}
.cs-stage li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--cs-accent);
}

.cs-note {
  padding: 13px 17px;
  background: rgb(var(--cs-accent-rgb) / 0.07);
  border-left: 2px solid var(--cs-accent);
  border-radius: 0 5px 5px 0;
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cs-ink-2);
  margin: 20px 0 0;
}
.cs-note b { color: var(--cs-ink); font-weight: 600; }

/* ────────────────────────────────────────
   文件凭证（叠放 → 点击放大）
──────────────────────────────────────── */
.cs-docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.cs-doc {
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cs-paper);
  text-align: left;
  width: 100%;
  padding: 0;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cs-doc:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(2,2,2,0.1); }
.cs-doc-fig {
  aspect-ratio: 4 / 3;
  background: var(--cs-paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cs-doc-fig img { width: 100%; height: 100%; object-fit: cover; }
.cs-doc-empty {
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
  text-align: center;
  padding: 20px;
  line-height: 1.7;
}
.cs-doc-empty svg { margin: 0 auto 10px; display: block; opacity: 0.35; }
.cs-doc-cap {
  padding: 13px 16px;
  text-align: center;
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cs-ink-2);
  border-top: 1px solid var(--cs-hair);
}
.cs-doc-cap b { display: block; font-weight: 600; color: var(--cs-ink); margin-bottom: 2px; }

/* 会议纪要 */
.cs-minutes {
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 24px;
}
.cs-minutes-head {
  padding: 14px 20px;
  background: var(--cs-ink);
  color: var(--cs-paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--f-cjk);
  font-size: 15.5px;
}
.cs-minutes-head span { color: rgba(251,251,244,0.5); font-size: 14px; }
.cs-minutes-body { padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cs-minutes-prod h5 {
  font-family: var(--f-cjk);
  font-size: 15px;
  font-weight: 600;
  color: var(--cs-accent);
  margin: 0 0 8px;
}
.cs-minutes-prod ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.cs-minutes-prod li {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--cs-ink-2);
  padding-left: 26px;
  position: relative;
}
.cs-minutes-prod li::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  color: var(--cs-ink-3);
}

/* ────────────────────────────────────────
   翻面演示
──────────────────────────────────────── */
.cs-flip-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  margin: 34px 0 0;
}
.cs-flip {
  perspective: 1600px;
  width: 100%;
  max-width: 400px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  pointer-events: none;
}
.cs-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  aspect-ratio: 210 / 297;
  will-change: transform;
}

/* ============================================================
   产品单页系列：手机端阅读规范
   与《昂楷视界》共用 64px 章节节奏、自然文档流和轻量交互，
   但保留产品体系自己的橙色识别与色彩切换。
   ============================================================ */
@media (max-width: 768px) {
  .case-page.is-product-sheets .cs-eyebrow { display: none; }

  .case-page.is-product-sheets .cs-body {
    --ps-section-gap: 64px;
    --ps-content-gap: 28px;
  }

  /* 首屏只保留定位、标题与一句项目说明，避免黑色区域拖过两屏。 */
  .case-page.is-product-sheets .cs-hero {
    padding: 116px var(--gutter) 48px;
  }
  .case-page.is-product-sheets .cs-hero-glow {
    width: 130vw;
    height: 460px;
    top: -80px;
  }
  .case-page.is-product-sheets .cs-eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: .16em;
  }
  .case-page.is-product-sheets .cs-hero-title {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.22;
  }
  .case-page.is-product-sheets .cs-hero-title em { color: var(--cs-accent-lift); }
  .case-page.is-product-sheets .cs-desktop-break { display: none; }
  .case-page.is-product-sheets .cs-hero-sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.72;
  }
  .case-page.is-product-sheets .cs-tags,
  .case-page.is-product-sheets .cs-hero-meta { display: none; }

  /* 单页墙是产品索引，不再用两排厚重卡片抢首屏。 */
  .case-page.is-product-sheets .cs-wall { padding: 4px 0 28px; }
  .case-page.is-product-sheets .cs-wall-rows { gap: 0; }
  .case-page.is-product-sheets .cs-wall-row:nth-child(2) { display: none; }
  .case-page.is-product-sheets .cs-wall-row { gap: 9px; }
  .case-page.is-product-sheets .cs-wall-row[data-dir="left"] { animation-duration: 52s; }
  .case-page.is-product-sheets .cs-wall-mask {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }
  .case-page.is-product-sheets .cs-wall .cs-sheet {
    width: 112px;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  }
  .case-page.is-product-sheets .cs-wall .cs-sheet-label { display: none; }

  .case-page.is-product-sheets .cs-metrics { padding: 26px var(--gutter) 48px; }
  .case-page.is-product-sheets .cs-metrics-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .case-page.is-product-sheets .cs-metric-n { font-size: 34px; }
  .case-page.is-product-sheets .cs-metric-l {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  /* 所有章节共用一套标题、正文和垂直间距。 */
  .case-page.is-product-sheets .cs-body > .cs-section {
    padding-top: var(--ps-section-gap);
    padding-bottom: 0;
  }
  .case-page.is-product-sheets .cs-body > .cs-section:last-child { padding-bottom: var(--ps-section-gap); }
  .case-page.is-product-sheets .cs-num { display: none; }
  .case-page.is-product-sheets .cs-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
  }
  .case-page.is-product-sheets .cs-title em {
    display: block;
    color: var(--cs-accent-deep);
  }
  .case-page.is-product-sheets .cs-lede {
    margin-top: 14px;
    font-size: 15.5px;
    line-height: 1.72;
  }
  .case-page.is-product-sheets .cs-sub {
    margin: 40px 0 0;
    font-size: 17px;
    line-height: 1.45;
  }
  .case-page.is-product-sheets .hscroll-dots { display: none !important; }

  /* 数据与背景直接排在纸面上，不再横滑或套卡片。 */
  .case-page.is-product-sheets .cs-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: var(--ps-content-gap) 0 32px;
  }
  .case-page.is-product-sheets .cs-stat-n { font-size: 29px; }
  .case-page.is-product-sheets .cs-stat-l {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .case-page.is-product-sheets .cs-cards {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }
  .case-page.is-product-sheets .cs-card {
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-card:first-child { padding-top: 0; }
  .case-page.is-product-sheets .cs-card:last-child { border-bottom: 0; }
  .case-page.is-product-sheets .cs-card-label { margin-bottom: 8px; }
  .case-page.is-product-sheets .cs-card-text { font-size: 14px; line-height: 1.68; }
  .case-page.is-product-sheets .cs-question {
    margin: 28px 0 0;
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
    font-size: 18px !important;
    line-height: 1.62;
  }

  /* 协作关系改成一个信息汇聚点加四条职责，不做节点卡片。 */
  .case-page.is-product-sheets .cs-hub {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-hub-svg { display: none; }
  .case-page.is-product-sheets .cs-hub-core {
    position: static;
    order: -1;
    width: auto;
    height: auto;
    transform: none;
    align-items: flex-start;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
    color: var(--cs-ink);
    text-align: left;
  }
  .case-page.is-product-sheets .cs-hub-core b { font-size: 18px; }
  .case-page.is-product-sheets .cs-hub-core span { margin-top: 3px; }
  .case-page.is-product-sheets .cs-hub-node {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-hub-node h4 { margin-bottom: 5px; font-size: 16px; }
  .case-page.is-product-sheets .cs-hub-node p { font-size: 14px; line-height: 1.62; }
  .case-page.is-product-sheets .cs-quote-dark,
  .case-page.is-product-sheets .cs-quote-soft {
    margin-top: 32px;
    padding: 0 0 0 18px;
    border-left: 2px solid var(--cs-accent);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--cs-ink-2);
    font-size: 16px;
    line-height: 1.72;
  }
  .case-page.is-product-sheets .cs-quote-dark em { color: var(--cs-accent-deep); }

  /* 两栏比较拆成两段，标题与条目共用同一条基线。 */
  .case-page.is-product-sheets .cs-compare {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: var(--ps-content-gap) 0 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .case-page.is-product-sheets .cs-compare-col + .cs-compare-col { border: 0; }
  .case-page.is-product-sheets .cs-compare-head,
  .case-page.is-product-sheets .cs-compare-col.is-mine .cs-compare-head {
    padding: 0 0 11px;
    border-bottom: 1px solid var(--cs-hair);
    background: transparent;
    color: var(--cs-ink);
    font-size: 15px;
    font-weight: 600;
  }
  .case-page.is-product-sheets .cs-compare-col.is-mine .cs-compare-head { color: var(--cs-accent-deep); }
  .case-page.is-product-sheets .cs-compare-row { padding: 12px 0; }
  .case-page.is-product-sheets .cs-compare-k { margin-bottom: 4px; }
  .case-page.is-product-sheets .cs-compare-v { font-size: 14px; line-height: 1.62; }
  .case-page.is-product-sheets .cs-blocks { gap: 0; }
  .case-page.is-product-sheets .cs-block,
  .case-page.is-product-sheets .cs-block.is-filled {
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
  }

  /* 制度文件与阶段都回归自然文档流。 */
  .case-page.is-product-sheets .cs-inst {
    margin-top: var(--ps-content-gap);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-inst-head { display: block; margin-bottom: 20px; }
  .case-page.is-product-sheets .cs-inst-title { font-size: 18px; line-height: 1.45; }
  .case-page.is-product-sheets .cs-badge {
    display: block;
    margin-top: 7px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--cs-accent-deep);
    font-size: 12.5px;
  }
  .case-page.is-product-sheets .cs-members {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-bottom: 20px;
  }
  .case-page.is-product-sheets .cs-member,
  .case-page.is-product-sheets .cs-member.is-me {
    gap: 7px;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13.5px;
  }
  .case-page.is-product-sheets .cs-member i,
  .case-page.is-product-sheets .cs-member.is-me i {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--cs-accent-deep);
  }
  .case-page.is-product-sheets .cs-inst > .cs-card-text { font-size: 14px; line-height: 1.68; }
  .case-page.is-product-sheets .cs-stages {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-stage {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
  }
  .case-page.is-product-sheets .cs-stage + .cs-stage { border-left: 0; }
  .case-page.is-product-sheets .cs-stage-n { display: none; }
  .case-page.is-product-sheets .cs-stage h4 { font-size: 16px; }
  .case-page.is-product-sheets .cs-stage li { font-size: 14px; line-height: 1.55; }
  .case-page.is-product-sheets .cs-note { margin-top: 20px; font-size: 14px; line-height: 1.65; }

  .case-page.is-product-sheets .cs-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 10px;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-doc {
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-doc-fig { border-radius: 2px; }
  .case-page.is-product-sheets .cs-doc-cap {
    padding: 9px 0 0;
    border: 0;
    text-align: left;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .case-page.is-product-sheets .cs-redacted {
    margin-top: 14px;
    padding: 0;
    border: 0;
    font-size: 12.5px;
  }
  .case-page.is-product-sheets .cs-minutes {
    margin-top: var(--ps-content-gap);
    border: 0;
    border-radius: 0;
  }
  .case-page.is-product-sheets .cs-minutes-head {
    padding: 0 0 14px;
    border-bottom: 1px solid var(--cs-hair);
    background: transparent;
    color: var(--cs-ink);
    font-size: 15px;
  }
  .case-page.is-product-sheets .cs-minutes-head span { color: var(--cs-ink-3); font-size: 12.5px; }
  .case-page.is-product-sheets .cs-minutes-body { grid-template-columns: 1fr; gap: 24px; padding: 18px 0 0; }
  .case-page.is-product-sheets .cs-minutes-prod li { font-size: 13.5px; }

  /* 产品正反面是本页主交互：明确点击，不再把翻面绑在滚动位置上。 */
  .case-page.is-product-sheets .cs-flip-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-flip {
    width: min(78vw, 286px);
    margin: 0 auto;
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
  }
  .case-page.is-product-sheets .cs-flip:focus-visible { outline: 2px solid var(--cs-accent); outline-offset: 6px; }
  .case-page.is-product-sheets .cs-flip-copy h4 { font-size: 19px; margin-bottom: 10px; }
  .case-page.is-product-sheets .cs-flip-copy p { font-size: 14px; line-height: 1.68; }
  .case-page.is-product-sheets .cs-flip-hint { margin-top: 16px; }
  .case-page.is-product-sheets .cs-layouts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
  .case-page.is-product-sheets .cs-layout {
    padding-top: 14px;
    border: 0;
    border-top: 1px solid var(--cs-hair);
    border-radius: 0;
  }
  .case-page.is-product-sheets .cs-layout-k { min-height: 48px; padding: 0; background: transparent; line-height: 1.45; }
  .case-page.is-product-sheets .cs-layout.is-mine .cs-layout-k { background: transparent; }
  .case-page.is-product-sheets .cs-layout-vis { min-height: 140px; padding: 12px 0 0; }
  .case-page.is-product-sheets .cs-pills { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 20px; }
  .case-page.is-product-sheets .cs-pill {
    position: relative;
    padding: 11px 0 11px 16px;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
    color: var(--cs-ink-2);
    font-size: 14px;
    white-space: normal;
  }
  .case-page.is-product-sheets .cs-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pill-c);
  }

  /* 方法与设计规范使用同一种扁平列表。 */
  .case-page.is-product-sheets .cs-flow.is-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-flow.is-steps .cs-flow-step {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
    text-align: left;
  }
  .case-page.is-product-sheets .cs-flow.is-steps b { display: flex; gap: 10px; align-items: baseline; font-size: 15.5px; }
  .case-page.is-product-sheets .cs-flow.is-steps b i { display: inline; margin: 0; font-size: 12px; }
  .case-page.is-product-sheets .cs-flow.is-steps small { margin: 5px 0 0 30px; font-size: 13.5px; }

  .case-page.is-product-sheets .cs-palette {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-palette-preview {
    order: -1;
    position: static;
    max-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-palette-fig { aspect-ratio: 16 / 9; border-radius: 2px; }
  .case-page.is-product-sheets .cs-palette-meta { padding: 12px 0 0; border: 0; }
  .case-page.is-product-sheets .cs-palette-meta p { font-size: 14px; }
  .case-page.is-product-sheets .cs-swatches { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .case-page.is-product-sheets .cs-swatch {
    min-width: 0;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    padding: 8px 3px 7px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    text-align: center;
  }
  .case-page.is-product-sheets .cs-swatch:hover,
  .case-page.is-product-sheets .cs-swatch.is-active {
    border-color: transparent;
    background: color-mix(in srgb, var(--sw-c) 10%, var(--cs-paper));
  }
  .case-page.is-product-sheets .cs-swatch i { width: 22px; height: 7px; border-radius: 1px; box-shadow: none; }
  .case-page.is-product-sheets .cs-swatch-t b { display: none; }
  .case-page.is-product-sheets .cs-swatch-t small { display: block; overflow: hidden; font-size: 9px; letter-spacing: 0; text-overflow: ellipsis; }

  .case-page.is-product-sheets .cs-specs {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-spec {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-spec h4 { font-size: 16px; }
  .case-page.is-product-sheets .cs-spec p { font-size: 14px; line-height: 1.62; }

  .case-page.is-product-sheets .cs-phases {
    grid-template-columns: 1fr;
    margin-top: var(--ps-content-gap);
    border: 0;
    border-radius: 0;
  }
  .case-page.is-product-sheets .cs-phase,
  .case-page.is-product-sheets .cs-phase.is-dark {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--cs-hair);
    background: transparent;
  }
  .case-page.is-product-sheets .cs-phase + .cs-phase { border-left: 0; }
  .case-page.is-product-sheets .cs-phase-n,
  .case-page.is-product-sheets .cs-phase.is-dark .cs-phase-n {
    display: none;
  }
  .case-page.is-product-sheets .cs-phase h4,
  .case-page.is-product-sheets .cs-phase.is-dark h4 { color: var(--cs-ink); font-size: 17px; }
  .case-page.is-product-sheets .cs-phase > p,
  .case-page.is-product-sheets .cs-phase.is-dark > p { color: var(--cs-ink-2); font-size: 14px; line-height: 1.68; }
  .case-page.is-product-sheets .cs-phase li,
  .case-page.is-product-sheets .cs-phase.is-dark li {
    padding: 4px 0;
    background: transparent;
    color: var(--cs-ink-3);
    font-size: 13.5px;
  }

  /* 图片只承担预览，完整细节统一交给灯箱。 */
  .case-page.is-product-sheets .cs-figure {
    margin-top: var(--ps-content-gap);
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-figure img {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    border-radius: 2px;
    object-fit: cover;
    object-position: top;
  }
  .case-page.is-product-sheets .cs-figure-cap {
    padding: 10px 0 0;
    border: 0;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .case-page.is-product-sheets .cs-figure-cap i { display: none; }
  .case-page.is-product-sheets .cs-figure-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: var(--ps-content-gap); }
  .case-page.is-product-sheets .cs-figure-pair .cs-figure-cap { display: block; }

  .case-page.is-product-sheets .cs-timeline { margin-top: var(--ps-content-gap); }
  .case-page.is-product-sheets .cs-ms { gap: 15px; padding: 16px 0; }
  .case-page.is-product-sheets .cs-ms-dot { width: 27px; height: 27px; font-size: 10px; }
  .case-page.is-product-sheets .cs-timeline::before,
  .case-page.is-product-sheets .cs-timeline-line { left: 13px; }
  .case-page.is-product-sheets .cs-ms-body h4 { font-size: 15px; line-height: 1.5; }
  .case-page.is-product-sheets .cs-ms-body p { font-size: 13.5px; line-height: 1.62; }

  /* 交付数据与 13 款成品是紧凑索引，不制造第二套横向交互。 */
  .case-page.is-product-sheets .cs-delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    margin-top: var(--ps-content-gap);
  }
  .case-page.is-product-sheets .cs-deliver {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-deliver-n { font-size: 34px; }
  .case-page.is-product-sheets .cs-deliver-l { font-size: 13px; }
  .case-page.is-product-sheets .cs-grid13 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
  }
  .case-page.is-product-sheets .cs-grid13 .cs-sheet {
    min-width: 0;
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(2, 2, 2, .09);
  }
  .case-page.is-product-sheets .cs-grid13 .cs-sheet-label { display: none; }

  .case-page.is-product-sheets .cs-lessons { margin-top: var(--ps-content-gap); }
  .case-page.is-product-sheets .cs-lesson,
  .case-page.is-product-sheets .cs-lesson:first-child {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 34px;
    border: 0;
  }
  .case-page.is-product-sheets .cs-lesson:last-child { padding-bottom: 0; }
  .case-page.is-product-sheets .cs-lesson-n { display: none; }
  .case-page.is-product-sheets .cs-lesson h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.45; }
  .case-page.is-product-sheets .cs-lesson p { font-size: 14.5px; line-height: 1.72; }

  /* 页尾沿用内刊页的无分隔线与轻量信息层级。 */
  .case-page.is-product-sheets .cs-outro {
    padding-top: var(--ps-section-gap);
    border-top: 0;
  }
  .case-page.is-product-sheets .cs-nav { border-top: 0; }
}

/* 文化墙首屏：信息先落在黑色门板上，滚动后再点亮可交互空间。 */
.case-page.is-culture .culture-tour {
  height: 185svh;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: var(--cs-paper);
}
.case-page.is-culture .culture-tour::before { display: none; }
.case-page.is-culture .culture-tour-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #05070b;
}
.case-page.is-culture .culture-tour-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  pointer-events: none;
}
.case-page.is-culture .culture-tour.is-entered .culture-tour-stage { pointer-events: auto; }
.case-page.is-culture .culture-panorama-frame {
  filter: saturate(calc(.76 + var(--culture-light-progress,0) * .24)) brightness(calc(.3 + var(--culture-light-progress,0) * .7)) contrast(1.02);
  transform: scale(calc(1.06 - var(--culture-light-progress,0) * .04));
  transition: filter .08s linear;
}
.case-page.is-culture .culture-tour-vignette { background: none; }
.case-page.is-culture .culture-tour-door {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(110deg,rgba(2,4,9,.96),rgba(4,8,20,.88) 58%,rgba(6,12,28,.8));
  pointer-events: none;
  will-change: opacity;
}
.case-page.is-culture .culture-tour-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  width: min(1180px,calc(100% - 96px));
  margin: 0;
  opacity: var(--culture-intro-opacity,1);
  transform: translate3d(0,0,0);
  translate: -50% -52%;
  pointer-events: none;
  will-change: opacity,transform;
}
.case-page.is-culture .culture-tour-copy h1,
.case-page.is-culture .culture-tour-copy > p,
.case-page.is-culture .culture-tour-meta { grid-column: auto; }
.case-page.is-culture .culture-tour-copy h1 { font-size: clamp(48px,5.8vw,84px); }
.case-page.is-culture .culture-tour-copy > p { max-width: 1040px; margin: 0; color: rgba(247,247,242,.72); }
.case-page.is-culture .culture-tour-meta { margin-top: 8px; }
.case-page.is-culture .culture-tour-enter {
  position: absolute;
  left: 50%;
  bottom: max(28px,5vh);
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  translate: -50% 0;
  color: rgba(255,255,255,.8);
  pointer-events: none;
  will-change: opacity;
}
.case-page.is-culture .culture-tour-enter span { width: 20px; height: 31px; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; }
.case-page.is-culture .culture-tour-enter span::after { content: ''; display: block; width: 2px; height: 6px; margin: 6px auto 0; border-radius: 2px; background: currentColor; }
.case-page.is-culture .culture-tour-enter p { margin: 0; font: 13px/1.4 var(--f-cjk); letter-spacing: .08em; }
.case-page.is-culture .culture-tour-enter i { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.case-page.is-culture :is(.culture-tour-step,.culture-tour-bearing,.culture-tour-hint,.culture-tour-caption,.culture-tour-index) {
  opacity: var(--culture-ui-opacity,0);
}

@media (max-width: 768px) {
  .case-page.is-culture .culture-tour { height: 170svh; padding: 0; }
  .case-page.is-culture .culture-tour-sticky { height: 100svh; min-height: 560px; }
  .case-page.is-culture .culture-tour-stage { display: block; margin: 0; }
  .case-page.is-culture .culture-panorama { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
  .case-page.is-culture .culture-tour-vignette { inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
  .case-page.is-culture .culture-tour-copy { top: 46%; gap: 16px; width: calc(100% - 36px); translate: -50% -50%; }
  .case-page.is-culture .culture-tour-copy h1 { font-size: clamp(35px,10vw,44px); line-height: 1.14; }
  .case-page.is-culture .culture-tour-copy > p { font-size: 15px; line-height: 1.72; }
  .case-page.is-culture .culture-tour-meta { flex-wrap: wrap; gap: 8px; width: 100%; margin-top: 2px; overflow: visible; }
  .case-page.is-culture .culture-tour-meta span { flex: 0 0 auto; padding: 7px 12px; white-space: nowrap; }
  .case-page.is-culture .culture-tour-enter { bottom: max(22px,env(safe-area-inset-bottom)); }
  .case-page.is-culture .culture-tour-caption,
  .case-page.is-culture .culture-tour-caption.has-detail { position: absolute; right: 16px; bottom: 76px; left: 16px; width: auto; margin: 0; }
  .case-page.is-culture .culture-tour-hint { position: absolute; bottom: 26px; left: 16px; margin: 0; }
  .case-page.is-culture .culture-tour-index { position: absolute; bottom: 30px; left: 50%; margin: 0; transform: translateX(-50%); }
  .case-page.is-culture .culture-tour-step { position: absolute; top: 0; bottom: 0; height: 100%; aspect-ratio: auto; }
}
.cs-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 8px rgba(2,2,2,0.13), 0 22px 48px rgba(2,2,2,0.16);
}
.cs-flip-face img { width: 100%; height: 100%; object-fit: contain; }
.cs-flip-back { transform: rotateY(180deg); }

.cs-flip-copy [data-flip-side] {
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.cs-flip-copy [data-flip-side].is-out {
  opacity: 0;
  transform: translateY(-8px);
  position: absolute;
  pointer-events: none;
}
.cs-flip-copy { position: relative; }
.cs-flip-side-k {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 10px;
}
.cs-flip-copy h4 {
  font-family: var(--f-cjk);
  font-size: clamp(21.5px, 2.2vw, 27.5px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 14px;
  color: var(--cs-ink);
}
.cs-flip-copy p {
  font-family: var(--f-cjk);
  font-size: 18px;
  line-height: 1.85;
  color: var(--cs-ink-2);
  margin: 0;
}
.cs-flip-hint {
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-flip-hint i {
  width: 34px; height: 1px;
  background: var(--cs-paper-3);
  display: block;
  position: relative;
  overflow: hidden;
}
.cs-flip-hint i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cs-accent);
  transform: scaleX(var(--flip-progress, 0));
  transform-origin: left;
}

/* 版式对比示意 */
.cs-layouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 0;
}
.cs-layout {
  border: 1px solid var(--cs-hair);
  border-radius: 5px;
  overflow: hidden;
}
.cs-layout.is-mine { border-color: rgb(var(--cs-accent-rgb) / 0.45); }
.cs-layout-k {
  padding: 8px 12px;
  font-family: var(--f-cjk);
  font-size: 13px;
  background: var(--cs-paper-2);
  color: var(--cs-ink-3);
}
.cs-layout.is-mine .cs-layout-k { background: rgb(var(--cs-accent-rgb) / 0.1); color: var(--cs-accent-deep); }
.cs-layout-vis { padding: 14px; display: flex; flex-direction: column; gap: 6px; min-height: 190px; }
.cs-bar {
  height: 15px;
  border-radius: 2px;
  background: var(--cs-paper-3);
  transform-origin: left;
}
.cs-bar.is-accent { background: rgb(var(--cs-accent-rgb) / 0.35); }
.cs-bar.is-block { flex: 1; background: var(--cs-paper-3); }

/* 副标题 pills */
.cs-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; }
.cs-pill {
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--f-cjk);
  font-size: 15.5px;
  color: #fff;
  background: var(--pill-c, var(--cs-ink));
  white-space: nowrap;
}

/* ────────────────────────────────────────
   方法流程
──────────────────────────────────────── */
.cs-flow {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 0;
}
.cs-flow-step {
  flex: 1 1 130px;
  padding: 16px 14px;
  background: var(--cs-paper-2);
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  text-align: center;
}
.cs-flow-step span {
  display: block;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 6px;
}
/* 序号版流程条：左对齐、序号 + 标题一行、下面挂一句说明。
   原来的红色英文小标（Research / System …）看着眼花，换成 01–06。 */
/* 序号在上、文字在下。横排时每格只有 ~150px，序号和文字挤一行会
   把两三个字的标题也压成两行；上下排之后大多数标题都能单行。
   整体居中：个别标题（如「封面封底信息分配」）仍会换行，居中才不会
   在一排格子里看出参差。 */
.cs-flow.is-steps { align-items: stretch; }
.cs-flow.is-steps .cs-flow-step {
  text-align: center;
  padding: 18px 12px 19px;
}
.cs-flow.is-steps b {
  display: block;
  font-size: var(--fs-base);
}
.cs-flow.is-steps b i {
  display: block;
  margin-bottom: 9px;
  font-style: normal;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--cs-ink-3);
  letter-spacing: 0.06em;
}
.cs-flow.is-steps small {
  display: block;
  margin-top: 7px;
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--cs-ink-2);
}

.cs-flow-step b {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--cs-ink);
}

/* ────────────────────────────────────────
   色彩系统（13 色 ↔ 单页联动）
──────────────────────────────────────── */
.cs-palette {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 278px;
  gap: clamp(24px, 3vw, 40px);
  margin: 34px 0 0;
  align-items: start;
}
.cs-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px;
}
.cs-swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--cs-hair);
  border-radius: 5px;
  background: var(--cs-paper);
  text-align: left;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.cs-swatch:hover,
.cs-swatch.is-active {
  border-color: var(--sw-c);
  background: color-mix(in srgb, var(--sw-c) 7%, var(--cs-paper));
}
.cs-swatch i {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--sw-c);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(2,2,2,0.08);
}
.cs-swatch-t { min-width: 0; }
.cs-swatch-t b {
  display: block;
  font-family: var(--f-cjk);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cs-ink);
}
.cs-swatch-t small {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--cs-ink-3);
}

.cs-palette-preview {
  position: sticky;
  top: 96px;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cs-paper);
}
.cs-palette-fig {
  aspect-ratio: 210 / 297;
  background: var(--cs-paper-2);
  overflow: hidden;
  cursor: zoom-in;
}
.cs-palette-fig img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cs-palette-meta { padding: 14px 16px; border-top: 1px solid var(--cs-hair); }
.cs-palette-meta b {
  display: block;
  font-family: var(--f-cjk);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--cs-ink);
}
.cs-palette-meta p {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  color: var(--cs-ink-2);
  margin: 4px 0 0;
  line-height: 1.6;
}
.cs-palette-meta small {
  display: block;
  margin-top: 8px;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--cs-ink-3);
}

/* 规范卡 */
.cs-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0 0;
}
.cs-spec {
  padding: 20px;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  background: var(--cs-paper);
}
.cs-spec h4 {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--cs-ink);
}
.cs-spec p {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--cs-ink-3);
  margin: 12px 0 0;
}
.cs-spec-type div { line-height: 1.35; }
.cs-spec-type .t1 { font-family: var(--f-cjk); font-size: 18.5px; font-weight: 600; color: var(--cs-ink); }
.cs-spec-type .t2 { font-family: var(--f-cjk); font-size: 15px; color: var(--cs-ink-2); }
.cs-spec-type .t3 { font-family: var(--f-cjk); font-size: 13px; color: var(--cs-ink-3); }
.cs-spec-bars { display: flex; flex-direction: column; gap: 5px; }
.cs-spec-bars i { height: 8px; border-radius: 2px; background: var(--cs-paper-3); display: block; }
.cs-spec-bars i:first-child { background: rgb(var(--cs-accent-rgb) / 0.6); }

/* ────────────────────────────────────────
   三阶段
──────────────────────────────────────── */
.cs-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  margin: 34px 0 0;
}
.cs-phase { padding: clamp(22px, 2.6vw, 30px); background: var(--cs-paper); }
.cs-phase + .cs-phase { border-left: 1px solid var(--cs-hair); }
.cs-phase.is-dark { background: var(--cs-ink); }
.cs-phase-n {
  font-family: var(--f-heading);
  font-size: 52px;
  line-height: 1;
  color: var(--cs-paper-3);
  margin-bottom: 14px;
}
.cs-phase.is-dark .cs-phase-n { color: rgba(251,251,244,0.14); }
.cs-phase h4 {
  font-family: var(--f-cjk);
  font-size: 17.5px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--cs-ink);
}
.cs-phase.is-dark h4 { color: var(--cs-paper); }
.cs-phase > p {
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cs-ink-2);
  margin: 0;
}
.cs-phase.is-dark > p { color: rgba(251,251,244,0.7); }
.cs-phase ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cs-phase li {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  padding: 7px 11px;
  background: var(--cs-paper-2);
  border-radius: 4px;
  color: var(--cs-ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-phase.is-dark li { background: rgba(251,251,244,0.07); color: rgba(251,251,244,0.72); }
.cs-phase li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cs-accent);
  flex-shrink: 0;
}

/* ────────────────────────────────────────
   甘特图
──────────────────────────────────────── */
.cs-gantt-scroll { overflow-x: auto; margin: 34px 0 0; padding-bottom: 6px; }
.cs-gantt { min-width: 720px; }
.cs-gantt-head,
.cs-gantt-row {
  display: grid;
  grid-template-columns: 170px repeat(6, 1fr);
}
.cs-gantt-head > div {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--cs-ink-3);
  text-align: center;
  padding: 8px 4px;
}
.cs-gantt-head > div:first-child { text-align: left; font-family: var(--f-cjk); }
.cs-gantt-row { align-items: center; margin-bottom: 5px; }
.cs-gantt-row > .cs-gantt-name {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  color: var(--cs-ink-2);
  padding-right: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-gantt-cell { padding: 2px 3px; }
.cs-gantt-bar {
  height: 21px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  transform-origin: left;
}
.cs-gantt-bar.done   { background: var(--cs-ink-2); }
.cs-gantt-bar.review { background: var(--cs-accent); }
.cs-gantt-bar.pub    { background: #2D6B4A; }
.cs-gantt-bar.wip    { background: #B07D2A; }
.cs-gantt-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; }
.cs-gantt-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-cjk);
  font-size: 13.5px;
  color: var(--cs-ink-3);
}
.cs-gantt-legend i { width: 10px; height: 10px; border-radius: 2px; display: block; }

/* 里程碑 */
.cs-timeline { position: relative; margin: 40px 0 0; }
.cs-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--cs-paper-3);
}
.cs-timeline-line {
  position: absolute;
  left: 15px; top: 24px;
  width: 1px;
  background: var(--cs-accent);
  transform-origin: top;
  transform: scaleY(0);
}
.cs-ms {
  display: flex;
  gap: 22px;
  padding: 17px 0;
  position: relative;
}
.cs-ms-dot {
  width: 31px; height: 31px;
  border-radius: 50%;
  background: var(--cs-paper);
  border: 1px solid var(--cs-accent);
  color: var(--cs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  flex-shrink: 0;
  z-index: 1;
}
.cs-ms.is-done .cs-ms-dot { background: var(--cs-accent); color: #fff; }
.cs-ms-body { padding-top: 5px; }
.cs-ms-body h4 {
  font-family: var(--f-cjk);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--cs-ink);
}
.cs-ms-body p {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--cs-ink-3);
  margin: 0;
}

/* ────────────────────────────────────────
   交付 / 13 款全系列
──────────────────────────────────────── */
.cs-delivery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 34px 0 0;
}
.cs-deliver {
  padding: 24px;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  background: var(--cs-paper);
}
.cs-deliver-n {
  font-family: var(--f-heading);
  font-size: clamp(31.5px, 3.4vw, 44px);
  line-height: 1;
  color: var(--cs-accent);
}
.cs-deliver-l {
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--cs-ink-3);
  margin-top: 9px;
}

.cs-grid13 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}
.cs-grid13 .cs-sheet {
  width: 100%;
  box-shadow: 0 1px 3px rgba(2,2,2,0.1), 0 10px 26px rgba(2,2,2,0.09);
}
.cs-grid13 .cs-sheet:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 4px 10px rgba(2,2,2,0.13), 0 20px 44px rgba(2,2,2,0.16);
}
.cs-grid13 .cs-sheet-label {
  background: linear-gradient(to top, rgba(2,2,2,0.88), transparent);
}

/* ────────────────────────────────────────
   学习与总结 — 大序号 + 完整阅读宽度的长文
──────────────────────────────────────── */
.cs-lessons {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}
.cs-lesson {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(14px, 2.6vw, 36px);
  padding: clamp(26px, 3vw, 38px) 0;
  border-top: 1px solid var(--cs-hair);
}
.cs-lesson:first-child { border-top: none; padding-top: 6px; }
.cs-lesson-n {
  font-family: var(--f-heading);
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 0.86;
  color: rgb(var(--cs-accent-rgb) / 0.32);
}
.cs-lesson h3 {
  font-family: var(--f-cjk);
  font-size: clamp(18.5px, 2.1vw, 25px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--cs-ink);
  margin: 0 0 14px;
}
.cs-lesson p {
  font-family: var(--f-cjk);
  font-size: clamp(17.5px, 1.35vw, 19.5px);
  line-height: 1.9;
  color: var(--cs-ink-2);
  margin: 0;
}
.cs-lesson strong { font-weight: 600; color: var(--cs-ink); }

/* ────────────────────────────────────────
   可放大的整幅图（原始文件凭证）
──────────────────────────────────────── */
.cs-figure {
  margin: 34px 0 0;
  border: 1px solid var(--cs-hair);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cs-paper);
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
  transition: box-shadow .4s var(--ease);
}
.cs-figure:hover { box-shadow: 0 14px 36px rgba(2,2,2,0.1); }
.cs-figure img {
  width: 100%;
  display: block;
  /* 图都能点开放大，页面上没必要占掉一整屏。统一压到 58vh 以内。 */
  max-height: 58vh;
  object-fit: contain;
  background: var(--cs-paper);
}
.cs-figure figcaption,
.cs-figure-cap {
  padding: 13px 18px;
  border-top: 1px solid var(--cs-hair);
  font-family: var(--f-cjk);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cs-ink-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cs-figure-cap b { font-weight: 600; color: var(--cs-ink); }
.cs-figure-cap i {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cs-accent);
  white-space: nowrap;
}

/* 双图并排 */
.cs-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0 0;
}
.cs-figure-pair .cs-figure { margin: 0; }
/* 照片类并排：统一比例，避免两张原始比例不同导致高度错位 */
.cs-figure-pair.is-media .cs-figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* 脱敏说明 */
.cs-redacted {
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
  margin: 14px 0 0;
  padding-left: 13px;
  border-left: 2px solid var(--cs-paper-3);
  line-height: 1.7;
}

/* 场景图 */
.cs-scene {
  margin: 34px 0 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cs-paper-2);
  border: 1px solid var(--cs-hair);
}
.cs-scene img { width: 100%; display: block; }
.cs-scene-slot {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-cjk);
  font-size: 16px;
  color: var(--cs-ink-3);
  text-align: center;
  padding: 24px;
  line-height: 1.7;
}
.cs-scene-slot svg { opacity: 0.3; }
.cs-scene-slot code {
  font-family: var(--f-body);
  font-size: 13.5px;
  background: var(--cs-paper-3);
  padding: 3px 8px;
  border-radius: 3px;
  color: var(--cs-ink-2);
}
.cs-cap {
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
  margin: 10px 0 0;
  text-align: center;
}

/* ────────────────────────────────────────
   收尾（深色）
──────────────────────────────────────── */
.cs-closing {
  background: var(--cs-ink);
  padding: clamp(64px, 8vw, 118px) var(--gutter) clamp(36px, 4.5vw, 60px);
}
.cs-closing-inner { max-width: var(--cs-max); margin: 0 auto; }
.cs-closing blockquote {
  font-family: var(--f-cjk);
  font-size: clamp(21.5px, 2.6vw, 34.5px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--cs-paper);
  border-left: 2px solid var(--cs-accent);
  padding-left: clamp(22px, 3vw, 38px);
  margin: 0;
  max-width: 30em;
}
.cs-closing blockquote em { font-style: normal; color: var(--cs-accent); }
.cs-closing cite {
  display: block;
  margin-top: 22px;
  padding-left: clamp(22px, 3vw, 38px);
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(251,251,244,0.4);
  font-style: normal;
}

/* ────────────────────────────────────────
   页尾行动区：项目总结 / 联系方式 / 问问 AI
   形制参考 murynmukha.com：浅底、大圆角、药丸控件、
   分层柔和阴影 + 顶部内高光。主色沿用本站橙色，
   参考站的蓝配暖白纸底会显得外来。
──────────────────────────────────────── */
.cs-outro {
  background: var(--cs-paper);
  border-top: 1px solid var(--cs-hair);
  padding: clamp(44px, 5.5vw, 78px) var(--gutter) clamp(30px, 3.5vw, 46px);
}
.cs-outro-inner {
  max-width: var(--cs-max);
  margin: 0 auto;
  display: grid;
  /* 中间列给定宽轨，而不是 auto：
     auto 轨会随卡内文字（邮箱 / 电话长度不同）改变宽度，
     切换时右侧「问问 AI」会跟着左右跳动 */
  grid-template-columns: 1fr minmax(0, 560px) 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
}
.cs-outro-left {
  display: flex;
  align-items: center;      /* 与右侧 AI 图标胶囊同处一条水平中线 */
}
/* 面板的定位参照：尺寸与按钮一致，面板才会紧贴按钮上方弹出 */
.cs-summary-anchor {
  position: relative;
  display: inline-flex;
}
.cs-outro-center { justify-self: stretch; display: flex; justify-content: center; }
/* 1fr auto 1fr：上下两个 fr 等高，中间的图标胶囊必然落在整列的中线上。
   这样它和左侧「项目总结」按钮（同样在行内居中）能精确对齐，
   而且标题与说明文字的行数变化也不会把胶囊挤偏。 */
.cs-outro-right {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
}
.cs-ai-title { align-self: end; margin-bottom: 14px; }

/* ── 项目总结按钮 ── */
.cs-summary-btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 100px;
  background: rgba(2, 2, 2, 0.045);
  box-shadow: inset 0 1.5px 0 0 rgba(255, 255, 255, 0.7);
  font-family: var(--f-cjk);
  font-size: 16px;
  font-weight: 600;
  color: var(--cs-ink-2);
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cs-summary-btn:hover { background: rgba(2, 2, 2, 0.08); color: var(--cs-ink); }
.cs-summary-btn[aria-expanded="true"] { background: rgba(2, 2, 2, 0.08); color: var(--cs-ink); }

/* ── 总结面板：贴着按钮向上弹出 ── */
.cs-summary {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  z-index: 90;
  width: min(560px, calc(100vw - 44px));
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cs-summary.is-open { opacity: 1; transform: none; pointer-events: auto; }
.cs-summary-card {
  position: relative;
  background: #181212;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 10px 34px rgba(24, 18, 18, 0.22);
  /* 上限由 JS 按「按钮上方到导航栏之间的可用空间」算出，
     保证向上弹出时不会钻到固定导航下面把关闭按钮挡住 */
  max-height: var(--cs-summary-max, 60vh);
  overflow-y: auto;
}
.cs-summary-card p {
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 240, 240, 0.82);
  margin: 0 0 12px;
  padding-right: 14px;
}
.cs-summary-card p:last-child { margin-bottom: 0; }
.cs-summary-card strong { color: #F5F0F0; font-weight: 600; }
.cs-summary-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 240, 0.5);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.cs-summary-close:hover { color: #F5F0F0; background: rgba(245, 240, 240, 0.1); }

/* ── 联系卡 ── */
.cs-cta-card {
  width: 100%;
  background: rgb(var(--cs-accent-rgb) / 0.07);
  border-radius: clamp(26px, 3vw, 36px);
  padding: clamp(24px, 2.6vw, 32px) clamp(24px, 3vw, 38px) clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 1.5px 0 0 rgba(255, 255, 255, 0.6);
}
.cs-cta-title {
  font-family: var(--f-cjk);
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--cs-ink);
  text-align: center;
  margin: 0;
}
.cs-cta-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 100px;
  background: rgba(2, 2, 2, 0.05);
}
.cs-cta-switch button {
  padding: 7px 20px;
  border-radius: 100px;
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.cs-cta-switch button.is-active {
  background: #fff;
  color: var(--cs-ink);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(2,2,2,0.06), 0 0 0 1px rgba(2,2,2,0.03);
}

.cs-cta-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.cs-cta-pill {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1000px;
  padding: 4px 4px 4px 22px;
  box-shadow:
    inset 0 1.5px 0 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(2, 2, 2, 0.04),
    0 1px 3px rgba(2, 2, 2, 0.03);
}
.cs-cta-value {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--cs-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-ink-3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1.5px 0 0 #fff,
    0 0 0 1px rgba(2, 2, 2, 0.04),
    0 1px 6px -2px rgba(2, 2, 2, 0.06);
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease);
}
.cs-icon-btn:hover {
  background: #fff;
  color: var(--cs-ink);
  box-shadow:
    inset 0 1.5px 0 0 #fff,
    0 0 0 1px rgba(2, 2, 2, 0.06),
    0 4px 14px -6px rgba(2, 2, 2, 0.14);
}
.cs-icon-btn:active { box-shadow: 0 1px 0 rgba(2,2,2,0.05); }

.cs-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 18px 0 24px;
  border-radius: 100px;
  background: var(--cs-accent);
  color: #fff;
  font-family: var(--f-cjk);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 6px 16px -8px rgba(160, 70, 10, 0.3),
    0 2px 6px -3px rgba(160, 70, 10, 0.2),
    inset 0 -1px 0 1px rgba(120, 50, 0, 0.14);
  transition: filter .2s var(--ease), transform .3s var(--ease);
}
.cs-cta-btn:hover { filter: brightness(1.06); }
.cs-cta-btn:hover svg { transform: translateX(3px); }
.cs-cta-btn svg { transition: transform .35s var(--ease); }
.cs-cta-btn:active { transform: scale(.985); box-shadow: none; }
/* ── 问问 AI ── */
.cs-ai-title {
  font-family: var(--f-cjk);
  font-size: clamp(16px, 1.7vw, 21px);
  color: var(--cs-ink-2);
  text-align: center;
  margin: 0;
}
.cs-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 1000px;
  overflow: hidden;
  background: rgba(2, 2, 2, 0.05);
  box-shadow: inset 0 1.5px 0 0 rgba(255, 255, 255, 0.7);
}
.cs-ai-pill.is-ai-roll-ready .cs-ai-btn { pointer-events: none; }
.cs-ai-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-ink-2);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1.5px 0 0 #fff,
    0 0 0 1px rgba(2, 2, 2, 0.03),
    0 1px 6px -3px rgba(2, 2, 2, 0.06);
  transition: background .2s var(--ease), color .2s var(--ease),
              box-shadow .25s var(--ease), transform .3s var(--ease);
}
.cs-ai-btn:hover {
  background: #fff;
  color: var(--cs-ink);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 0 #fff,
    0 0 0 1px rgba(2, 2, 2, 0.05),
    0 8px 20px -8px rgba(2, 2, 2, 0.18);
}
.cs-ai-btn i {
  width: 21px; height: 21px;
  display: block;
  background-color: currentColor;
  -webkit-mask: var(--ai-icon) center / contain no-repeat;
          mask: var(--ai-icon) center / contain no-repeat;
}
/* ── 复制提示 ── */
.cs-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 12px);
  z-index: 220;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--cs-ink);
  color: var(--cs-paper);
  font-family: var(--f-cjk);
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}
.cs-toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* 上一个 / 下一个作品 —— 详情页不带页脚，这里就是页面结尾，
   底部多留一些空间，收得不至于太突然 */
.cs-nav {
  background: var(--cs-paper);
  border-top: 1px solid var(--cs-hair);
  padding: clamp(26px, 3vw, 38px) var(--gutter) clamp(48px, 6vw, 78px);
}
.cs-nav-inner {
  max-width: var(--cs-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cs-nav a {
  font-family: var(--f-cjk);
  font-size: 16px;
  color: var(--cs-ink-3);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .3s var(--ease);
}
.cs-nav a:hover { color: var(--cs-accent); }
.cs-nav a[aria-disabled="true"] { opacity: 0.3; pointer-events: none; }

/* ────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────── */
.cs-lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2,2,2,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s var(--ease), visibility .38s var(--ease);
}
.cs-lb.is-open { opacity: 1; visibility: visible; }
.cs-lb-stage {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cs-lb-stage img {
  max-width: min(88vw, 900px);
  max-height: 78vh;
  width: auto;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.cs-lb-meta {
  font-family: var(--f-cjk);
  font-size: 15px;
  color: rgba(251,251,244,0.72);
  text-align: center;
}
.cs-lb-meta small {
  display: block;
  margin-top: 4px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(251,251,244,0.4);
}
.cs-lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cs-hair-dark);
  color: rgba(251,251,244,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.cs-lb-btn:hover { background: rgba(251,251,244,0.1); border-color: rgba(251,251,244,0.4); }
.cs-lb-prev { left: 18px; }
.cs-lb-next { right: 18px; }
.cs-lb-close { top: 18px; right: 18px; transform: none; position: absolute; }
.cs-lb-flip {
  font-family: var(--f-cjk);
  font-size: 14.5px;
  padding: 8px 18px;
  border: 1px solid var(--cs-hair-dark);
  border-radius: 100px;
  color: rgba(251,251,244,0.82);
  transition: background .3s var(--ease);
}
.cs-lb-flip:hover { background: rgba(251,251,244,0.1); }

/* 单图模式：只看一张，不需要翻面与前后切换 */
.cs-lb.is-single .cs-lb-prev,
.cs-lb.is-single .cs-lb-next,
.cs-lb.is-single .cs-lb-flip { display: none; }
.cs-lb.is-single .cs-lb-stage img { max-height: 84vh; max-width: min(94vw, 1400px); }
/* 图组：留着前后按钮，但效果图没有背面 */
.cs-lb.is-zoomset .cs-lb-flip { display: none; }
.cs-lb.is-zoomset .cs-lb-stage img { max-height: 84vh; max-width: min(94vw, 1500px); }

/* ════════════════════════════════════════
   内刊案例专用板块
   （《昂楷视界》/《昂楷之道》。放在库里而不是页面内联，
     以后再做画册 / 期刊类作品可以直接复用。）
════════════════════════════════════════ */

/* ── 三本刊物：深色头图下方的封面并排 ── */
.cs-journals {
  background: var(--cs-ink);
  /* 上内边距不能省：紧贴 hero-meta 那条信息行会显得挤 */
  padding: clamp(46px, 5.4vw, 78px) 24px clamp(46px, 5.4vw, 74px);
}
.cs-journals-inner {
  max-width: var(--cs-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 34px);
}
.cs-journal {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.cs-journal-fig {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(251, 251, 244, 0.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 26px 60px rgba(0,0,0,0.42);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.cs-journal-fig img { width: 100%; display: block; aspect-ratio: 922 / 1217; }
.cs-journal:hover .cs-journal-fig {
  transform: translateY(-10px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.55), 0 34px 74px rgba(0,0,0,0.5);
}

/* 「可翻阅」标记：常驻在封面上，不做成 hover 才出现——
   鼠标没移上去的人根本不会知道这里能点。 */
.cs-journal-fig::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(2,2,2,0.72));
  opacity: 0.9;
  transition: opacity .45s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.cs-journal-badge {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 1.6vw, 22px);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(251, 251, 244, 0.94);
  color: #141210;
  font-family: var(--f-cjk);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: background .35s var(--ease), color .35s var(--ease),
              transform .45s var(--ease), box-shadow .45s var(--ease);
  pointer-events: none;
}
.cs-journal-badge svg { flex-shrink: 0; }
.cs-journal-badge b { font-weight: 600; }
.cs-journal-badge span { font-weight: 400; opacity: 0.62; }
.cs-journal:hover .cs-journal-badge {
  background: var(--cs-accent);
  color: #fff;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 10px 26px rgb(var(--cs-accent-rgb) / 0.5);
}
.cs-journal:hover .cs-journal-badge span { opacity: 0.8; }
.cs-journal:hover .cs-journal-fig::before { opacity: 1; }

/* 进入视口时，三个标记依次弹一下，确保被看见 */
.cs-journal-badge.is-cue { animation: cs-badge-cue 1.5s var(--ease) 1; }
@keyframes cs-badge-cue {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgb(var(--cs-accent-rgb) / 0.5); }
  30%      { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 14px rgb(var(--cs-accent-rgb) / 0); }
  55%      { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgb(var(--cs-accent-rgb) / 0.5); }
  85%      { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 14px rgb(var(--cs-accent-rgb) / 0); }
}
.cs-journal-meta { margin: 16px 0 0; }
/* 封面下面只留一行：刊名 + 这一期的主题。年份不写在这里——
   三本的出版年份不是「一年一本」，写上去反而制造疑问。 */
.cs-journal-n {
  font-family: var(--f-cjk);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.5;
  color: var(--on-dark-1);
  margin: 0;
}

/* ── 印章：阳刻 / 阴刻 切换（手稿里的「黑白反白实验」） ── */
.cs-seal {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin: 32px 0 0;
}
.cs-seal-stage {
  position: relative;
  aspect-ratio: 1;
  border-radius: clamp(14px, 1.4vw, 18px);
  display: grid;
  place-items: center;
  padding: 14%;
  background: var(--cs-paper-2);
  transition: background .5s var(--ease);
}
/* 阴刻时底色换成主色，白字才立得住 */
.cs-seal-stage.is-inverse { background: var(--cs-accent); }
.cs-seal-stage img {
  width: 100%;
  display: block;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.cs-seal-stage img.is-off { opacity: 0; transform: scale(.94); position: absolute; }
/* 切换按钮放在印章正下方——放在右侧文字上方时没人发现这里可以点 */
.cs-seal-left { display: flex; flex-direction: column; gap: 14px; }
.cs-seal-switch { display: flex; gap: 8px; margin: 0; }
.cs-seal-switch button { flex: 1; text-align: center; }
.cs-seal-switch button {
  font-family: var(--f-cjk);
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 100px;
  border: 1px solid var(--cs-hair);
  background: transparent;
  color: var(--cs-ink-3);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.cs-seal-switch button.is-active {
  border-color: rgb(var(--cs-accent-rgb) / 0.5);
  background: rgb(var(--cs-accent-rgb) / 0.08);
  color: var(--cs-accent-deep);
}
.cs-seal-keys { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
.cs-seal-key {
  font-family: var(--f-cjk);
  font-size: 13.5px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--cs-hair);
  color: var(--cs-ink-2);
}

/* ── 目录热区：hover 优先级 → 高亮真实目录页上对应的位置 ── */
.cs-tocmap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  margin: 30px 0 0;
}
.cs-tocmap-fig {
  position: relative;
  border-radius: clamp(10px, 1vw, 14px);
  overflow: hidden;
  border: 1px solid var(--cs-hair);
  background: #fff;
  cursor: zoom-in;
}
.cs-tocmap-fig img { width: 100%; display: block; aspect-ratio: var(--fig-ar, 1800 / 1187); }
/* 未高亮时压一层灰，让被点亮的区块跳出来 */
.cs-tocmap-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.5);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.cs-tocmap-fig.is-lit::after { opacity: 1; }
.cs-hot {
  position: absolute;
  border: 1.5px solid var(--cs-accent);
  border-radius: 4px;
  box-shadow: 0 0 0 9999px rgba(2, 2, 2, 0);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  /* 高亮块自己要盖在灰罩之上 */
  z-index: 2;
  background: rgb(var(--cs-accent-rgb) / 0.1);
  backdrop-filter: brightness(1.9) saturate(1.15);
}
.cs-hot.is-on { opacity: 1; transform: scale(1); }
.cs-hot span {
  position: absolute;
  top: -11px;
  left: -1px;
  font-family: var(--f-mono, var(--f-body));
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--cs-accent);
  color: #fff;
  white-space: nowrap;
}
.cs-prios { display: flex; flex-direction: column; gap: 12px; }
.cs-prio {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--cs-hair);
  border-radius: clamp(10px, 1vw, 14px);
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.cs-prio:hover,
.cs-prio.is-active {
  border-color: rgb(var(--cs-accent-rgb) / 0.45);
  background: rgb(var(--cs-accent-rgb) / 0.05);
}
.cs-prio-n {
  font-family: var(--f-display, var(--f-heading));
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1;
  color: var(--cs-accent);
}
.cs-prio-n small {
  display: block;
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--cs-ink-3);
  margin-top: 5px;
}
.cs-prio h4 {
  font-family: var(--f-cjk);
  font-size: clamp(15.5px, 1.35vw, 17px);
  font-weight: 600;
  color: var(--cs-ink);
  margin: 2px 0 5px;
  line-height: 1.45;
}
.cs-prio p {
  font-family: var(--f-cjk);
  font-size: 15px;
  line-height: 1.75;
  color: var(--cs-ink-2);
  margin: 0;
}
.cs-prio p em { font-style: normal; font-weight: 600; color: var(--cs-accent-deep); }


.cs-art {
  position: relative;
  padding: 9px 0 9px 15px;
  border-bottom: 1px solid rgb(2 2 2 / 0.05);
  font-family: var(--f-cjk);
  font-size: 14px;
  line-height: 1.55;
  color: var(--cs-ink-2);
}
.cs-art:last-child { border-bottom: none; }
.cs-art::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--cs-accent-rgb) / 0.55);
}
.cs-art i {
  font-style: normal;
  color: var(--cs-ink-3);
  font-size: var(--fs-xs);
  white-space: nowrap;
}


/* ── 印章式页码演示 ──
   点上一页 / 下一页，页码跟着变，印章按奇偶落到左下或右下角，
   演示的正是规范里那条「奇数页左对齐、偶数页右对齐，距边各 12mm」。 */
.cs-pagedemo { margin: 26px 0 0; }
.cs-pd-stage {
  position: relative;
  max-width: 340px;
  aspect-ratio: 210 / 297;
  border: 1px solid var(--cs-hair);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(2,2,2,0.06), 0 16px 34px rgba(2,2,2,0.07);
  overflow: hidden;
}
/* 版面示意：页眉红线 + 几行灰色文字块，够读者认出这是内页就行 */
.cs-pd-head {
  position: absolute;
  left: 8%; right: 8%; top: 7%;
  border-bottom: 1.5px solid var(--cs-accent);
  padding-bottom: 5px;
  font-family: var(--f-cjk);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--cs-accent);
}
.cs-pd-lines { position: absolute; left: 8%; right: 8%; top: 17%; }
.cs-pd-lines i {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: rgb(2 2 2 / 0.09);
  margin-bottom: 9px;
}
.cs-pd-num {
  position: absolute;
  bottom: 5.5%;
  width: 13.5%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: left .55s var(--ease), right .55s var(--ease);
}
.cs-pd-num img { position: absolute; inset: 0; width: 100%; opacity: 0.34; }
.cs-pd-num b {
  position: relative;
  font-family: var(--f-cjk);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  color: var(--cs-ink);
}
.cs-pd-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.cs-pd-ctrl button {
  font-family: var(--f-cjk);
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--cs-hair);
  background: transparent;
  color: var(--cs-ink-2);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.cs-pd-ctrl button:hover {
  border-color: rgb(var(--cs-accent-rgb) / 0.5);
  color: var(--cs-accent-deep);
}
.cs-pd-state {
  font-family: var(--f-cjk);
  font-size: 14px;
  color: var(--cs-ink-3);
}
.cs-pd-state b { color: var(--cs-accent-deep); font-weight: 600; }
.cs-pd-wrap {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
}


/* 大图收窄：规范图 / 手稿 / 时间线这类横图铺满整栏会把版面撑散，
   限宽居中，细节留给点击放大。 */
.cs-figure.is-compact {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.cs-figure.is-compact.is-narrow { max-width: 520px; }

/* ════════════════════════════════════════
   刊物阅读器 —— 整本翻页
   两页并排 + 一层绕书脊旋转的翻页元素。
   页面尺寸不写死：--pg-ar 是单页宽高比，各刊不同，由 JS 设进来；
   书高取「视口高」与「视口宽能容下两页」中较小的一个。
════════════════════════════════════════ */
.cs-reader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  flex-direction: column;
  background: rgba(2, 2, 2, 0.94);
  backdrop-filter: blur(6px);
}
.cs-reader.is-open { display: flex; }

/* 左侧竖排刊物导航 —— 横排在左上角太像装饰，很多人不会当成导航。
   选中态用「半透明白底 + 白字」，不用红底红字：
   纯黑上压红底再压红字，刺眼且笔画糊在一起。 */
.cs-rd-rail {
  flex: 0 0 auto;
  width: 232px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: center;
}
.cs-rd-tabs { display: flex; flex-direction: column; gap: 6px; }
.cs-rd-tab {
  font-family: var(--f-cjk);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  padding: 15px 18px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: var(--on-dark-2);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.cs-rd-tab:hover { background: rgba(251, 251, 244, 0.07); color: var(--on-dark-1); }
.cs-rd-tab.is-active {
  background: rgba(251, 251, 244, 0.14);
  color: #FFF;
}
.cs-rd-tab small {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--on-dark-3);
  margin-top: 5px;
}
.cs-rd-tab.is-active small { color: var(--on-dark-2); }
.cs-rd-close {
  position: absolute;
  top: 16px;
  right: clamp(14px, 2vw, 28px);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251, 251, 244, 0.18);
  background: transparent;
  color: rgba(251, 251, 244, 0.8);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cs-rd-close:hover { background: rgba(251, 251, 244, 0.1); }

/* 书台 */
.cs-rd-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 0 clamp(10px, 3vw, 48px);
  min-height: 0;
  overflow: hidden;
}
.cs-rd-book {
  --pg-ar: 0.758;
  --rail: 254px;   /* 左侧导航 210 + 间距 */
  /* 高度按「视口减去上下留白」算，不用 vh 硬写——短窗口下 vh 会撑出去 */
  --bh: min(calc(100vh - 150px), calc((100vw - var(--rail) - clamp(20px, 6vw, 96px)) / (2 * var(--pg-ar))));
  position: relative;
  height: var(--bh);
  width: calc(var(--bh) * var(--pg-ar) * 2);
  display: flex;
  perspective: 2600px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.6));
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  isolation: isolate;
}
.cs-rd-loading {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.cs-rd-book.is-loading .cs-rd-loading { opacity: 1; visibility: visible; }
.cs-rd-loading span {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(24, 24, 21, .14);
  border-top-color: var(--cs-accent);
  border-radius: 50%;
  animation: cs-rd-load .75s linear infinite;
}
@keyframes cs-rd-load { to { transform: rotate(360deg); } }
.cs-rd-pg {
  width: 50%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  opacity: 1;
  transition: opacity .16s ease;
}
.cs-rd-pg img { width: 100%; height: 100%; display: block; }
.cs-rd-pg.is-blank { background: rgba(251, 251, 244, 0.06); }
/* 书脊阴影，两页之间那道折痕 */
.cs-rd-book::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 20px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent 0,
    rgba(0,0,0,.035) 24%,
    rgba(0,0,0,.11) 49%,
    rgba(0,0,0,.11) 51%,
    rgba(0,0,0,.035) 76%,
    transparent 100%);
  pointer-events: none;
  /* 始终压在静态页与翻动页上方，避免翻页元素经过书脊时阴影忽隐忽现。 */
  z-index: 7;
  opacity: 1;
}
.cs-rd-book.is-opening .cs-rd-pg { opacity: 0; }
.cs-rd-book.is-opening .cs-rd-loading {
  opacity: 1;
  visibility: visible;
  transition: none;
}

/* 翻动中的那一页 */
.cs-rd-flip {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  display: none;
  z-index: 5;
}
.cs-rd-flip.is-on { display: block; }
.cs-rd-flip.to-left  { left: 50%; transform-origin: left center; }
.cs-rd-flip.to-right { left: 0;   transform-origin: right center; }
.cs-rd-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background: #fff;
  overflow: hidden;
}
.cs-rd-face img { width: 100%; height: 100%; display: block; }
.cs-rd-face.back { transform: rotateY(180deg); }

/* 点击区：左右各半页，角上给一个翻角提示 */
.cs-rd-hit {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 6;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.cs-rd-hit.prev { left: 0; }
.cs-rd-hit.next { left: 50%; }
.cs-rd-hit::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 62px;
  height: 62px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cs-rd-hit.next::after {
  right: 0;
  background: linear-gradient(225deg, rgba(255,255,255,0.9) 0 46%, rgba(0,0,0,0.16) 47%, transparent 54%);
}
.cs-rd-hit.prev::after {
  left: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0 46%, rgba(0,0,0,0.16) 47%, transparent 54%);
}
.cs-rd-hit:hover::after { opacity: 1; }
.cs-rd-hit[disabled] { cursor: default; }
.cs-rd-hit[disabled]::after { display: none; }

/* 底栏：页码 + 进度条 */
.cs-rd-bottom {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  padding: 14px clamp(14px, 3vw, 40px) 20px;
  color: var(--on-dark-2);
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
}
.cs-rd-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251, 251, 244, 0.18);
  background: transparent;
  color: rgba(251, 251, 244, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s var(--ease);
}
.cs-rd-nav:hover:not([disabled]) { background: rgba(251, 251, 244, 0.12); }
.cs-rd-nav[disabled] { opacity: 0.28; cursor: default; }
.cs-rd-range {
  flex: 1;
  accent-color: var(--cs-accent);
  cursor: pointer;
  min-width: 0;
}
.cs-rd-count { font-variant-numeric: tabular-nums; white-space: nowrap; }
.cs-rd-count b { color: rgba(251, 251, 244, 0.95); font-weight: 600; }
.cs-rd-hint {
  white-space: nowrap;
  font-size: var(--fs-xs);
  color: var(--on-dark-3);
}

/* 首次进来的翻页引导 —— 压在合着的那半边书上。
   不做卡片、不写标题，只留一只手的方向示意和三种翻法，横排一行。 */
.cs-rd-coach {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 7;
  display: grid;
  place-content: center;
  gap: 22px;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.cs-rd-coach.is-on { opacity: 1; }
/* 一只手从右往左划，示意拖拽方向 */
.cs-rd-coach-hand {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(251, 251, 244, 0.12);
  color: var(--on-dark-1);
  animation: cs-rd-swipe 2.1s var(--ease) infinite;
}
@keyframes cs-rd-swipe {
  0%, 100% { transform: translateX(16px); opacity: 0.3; }
  35%      { transform: translateX(16px); opacity: 1; }
  75%      { transform: translateX(-16px); opacity: 1; }
  90%      { transform: translateX(-16px); opacity: 0; }
}
.cs-rd-coach ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.cs-rd-coach li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-cjk);
  font-size: var(--fs-sm);
  color: var(--on-dark-2);
  white-space: nowrap;
}
.cs-rd-coach li i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(251, 251, 244, 0.14);
  color: var(--on-dark-1);
  font-style: normal;
  font-size: var(--fs-xs);
}

@media (max-width: 768px) {
  .case-page.is-editorial .cs-body {
    --cs-mobile-section-gap: 64px;
    --cs-mobile-content-gap: 32px;
  }
  /* 窄屏没有左侧空间，导航回到顶部横排，但保留「选中=红、未选中=白」 */
  .cs-rd-stage { flex-direction: column; gap: 12px; padding-top: 8px; }
  .cs-rd-rail {
    width: 100%;
    flex-direction: row;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 12px;
    align-self: stretch;
  }
  .cs-rd-rail::-webkit-scrollbar { display: none; }
  .cs-rd-tabs { flex-direction: row; gap: 6px; }
  .cs-rd-tab { flex: 0 0 auto; padding: 9px 14px; font-size: 13.5px; border-radius: 100px; }
  .cs-rd-tab small { display: none; }
  .cs-rd-coach { width: 100%; }
  /* 手机上没有方向键，这一条去掉 */
  .cs-rd-coach li:last-child { display: none; }
  .cs-rd-book {
    --rail: 0px;
    /* 窄屏一次只看一页，两页并排每页会小到看不清 */
    --bh: min(calc(100dvh - 210px), calc((100vw - 32px) / var(--pg-ar)));
    width: min(calc(var(--bh) * var(--pg-ar)), calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .cs-rd-book.is-single .cs-rd-pg.is-left { display: none; }
  .cs-rd-book::after { display: none; }
  .cs-rd-book .cs-rd-pg { width: 100%; }
  /* 单页模式：翻动的那一页要盖满整个可见页，不能还是半页宽 */
  .cs-rd-flip,
  .cs-rd-flip.to-left,
  .cs-rd-flip.to-right { width: 100%; left: 0; }
  /* 点击区仍按左右半边分，方便单手点 */
  .cs-rd-hit { width: 50%; }
  .cs-rd-hit.next { left: 50%; }
  .cs-rd-tab small { display: none; }
  /* 底栏一行放不下：提示文字收起，其余允许换行 */
  .cs-rd-hint { display: none; }
  .cs-rd-bottom { flex-wrap: wrap; padding-bottom: 14px; }
  .cs-rd-top { padding: 10px 12px; gap: 10px; }
  .cs-rd-tab { font-size: 13px; padding: 7px 13px; }
}


/* ────────────────────────────────────────
   进场（JS 未跑时不隐藏内容）
──────────────────────────────────────── */
.cs-reveal { will-change: transform, opacity; }

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cs-palette { grid-template-columns: 1fr; }
  .cs-palette-preview { max-width: 300px; position: static; }
  .cs-specs { grid-template-columns: repeat(2, 1fr); }
  .cs-hub { gap: 14px 120px; }
  .cs-hub-core { width: 104px; height: 104px; }
  /* 目录热区在窄屏上没法边看图边 hover，改成上下堆叠，
     并把热区高亮关掉（见 case.js 的 matchMedia 判断） */
  .cs-tocmap { grid-template-columns: 1fr; }
  .cs-seal { grid-template-columns: 1fr; }
  .cs-seal-stage { max-width: 260px; }
}

@media (max-width: 768px) {
  .cs-reveal::after { height: 30%; }

  .cs-hero-meta,
  .cs-metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cs-cards,
  .cs-specs,
  .cs-delivery,
  .cs-docs,
  .cs-minutes-body { grid-template-columns: 1fr; }
  .cs-compare,
  .cs-stages,
  .cs-phases,
  .cs-layouts { grid-template-columns: 1fr; }
  /* .cs-shift 上下堆叠即可：左右两栏不是同级重复块，是「问题→解法」的
     单向关系，横向滚动反而会拆散这层因果。 */
  /* 单列时表头不再相邻，各自恢复完整圆角；DOM 顺序是「表头 表头 正文 正文」
     （为了让两个表头在 PC 上连成一条带），所以这里必须用 order 重新交错，
     否则手机上会变成两个表头挨在一起。 */
  /* 面板组在窄屏退回纵向堆叠：横向钉住在手机上滑起来不稳，
     而且面板里的图文两栏也塞不下。 */
  .cs-deck { overflow: visible; }
  /* 单列堆叠时没有滑出的边，遮罩会白白把首尾两张切掉一块 */
  .cs-deck-view { -webkit-mask-image: none; mask-image: none; }
  .cs-deck-track {
    flex-direction: column;
    width: auto;
    gap: 18px;
    padding: 24px var(--gutter) 0;
    transform: none;
  }
  .cs-panel, .cs-panel.is-wide {
    flex-basis: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cs-panel-fig .cs-figure img { max-height: 42vh; }
  .cs-deck-steps { display: none; }

  .cs-plates[data-hscroll-track] > .cs-plate { flex: 0 0 min(56vw, 220px); }


  .cs-line { padding-left: 32px; }
  .cs-line-rail { left: 5px; }
  .cs-line-dot { left: -32px; width: 10px; height: 10px; }

  .cs-shift { grid-template-columns: 1fr; }
  /* order 必须按位置判定，不能按 is-mine——02 的主色一侧在左，
     按 is-mine 排会把表头和另一栏的内容配错。 */
  .cs-shift-label { border-radius: 4px; }
  .cs-shift-label:first-of-type  { order: 1; }
  .cs-shift-body:first-of-type   { order: 2; padding-right: 0; }
  .cs-shift-label:nth-of-type(2) { order: 3; margin-top: 30px; }
  .cs-shift-body:last-of-type    { order: 4; }
  .cs-shift-goals li { grid-template-columns: 1fr; gap: 4px; padding-right: 4px; }
  .cs-compare-col + .cs-compare-col,
  .cs-stage + .cs-stage,
  .cs-phase + .cs-phase { border-left: none; border-top: 1px solid var(--cs-hair); }
  .cs-flip-wrap { grid-template-columns: 1fr; }
  .cs-flip { max-width: 330px; margin: 0 auto; }
  .cs-hub { grid-template-columns: 1fr; gap: 12px; }
  .cs-hub-svg { display: none; }
  .cs-hub-core { position: static; transform: none; width: 100%; height: auto; padding: 18px; border-radius: 6px; margin-top: 12px; }
  .cs-grid13 { grid-template-columns: repeat(2, 1fr); }
  /* 两张一组的图在手机上并排放小，细节交给点击放大——
     一张一张竖着堆，两张就能吃掉一屏半。 */
  .cs-figure-pair { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cs-figure-pair .cs-figure-cap { padding: 9px 10px; font-size: var(--fs-xs); flex-direction: column; align-items: flex-start; gap: 4px; }
  .cs-figure-pair .cs-figure-cap i { font-size: var(--fs-xs); }
  /* 调研照片改 2×2 */
  .cs-docs { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .cs-doc-cap { padding: 9px 11px; font-size: var(--fs-xs); }
  .cs-lesson { grid-template-columns: 1fr; gap: 10px; }
  .cs-lesson-n { font-size: 38px; }

  /* 页尾行动区：联系方式优先，其次问 AI，最后总结 */
  .cs-outro-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cs-outro-center { order: 1; justify-self: stretch; }
  .cs-outro-right  { order: 2; }
  .cs-outro-left   { order: 3; justify-content: center; }
  .cs-cta-card { width: 100%; }
  .cs-cta-br { display: none; }
  .cs-cta-controls { flex-direction: column; align-items: stretch; }
  .cs-cta-value { text-align: center; }
  .cs-cta-btn { justify-content: center; padding: 0 22px; }
  /* 面板改为居中定位，避免贴着最底部按钮向上弹时越出屏幕 */
  .cs-summary {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 10px);
    width: calc(100vw - 32px);
  }
  .cs-summary.is-open { transform: translate(-50%, 0); }
  .cs-lb { padding: 60px 16px 24px; }
  .cs-lb-prev { left: 6px; }
  .cs-lb-next { right: 6px; }
  .cs-stats { gap: 26px; }

  /* 内刊案例的板块 */
  .cs-journals-inner { grid-template-columns: 1fr; gap: 26px; }
  .cs-journal-fig { max-width: 320px; }.cs-pd-wrap { grid-template-columns: 1fr; }
  .cs-pd-stage { max-width: 300px; }

}

@media (prefers-reduced-motion: reduce) {
  .cs-wall-row { animation: none !important; }
}

/* 文化墙重构：从「平面灯箱」改为可进入的空间首屏。 */
.culture-tour {
  position: relative;
  min-height: 1600px;
  padding: clamp(132px, 15vh, 184px) var(--gutter) 120px;
  overflow: hidden;
  background: #05070b;
  color: #f7f7f2;
}
.culture-tour::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 28%, rgba(66,101,245,.18), transparent 34%), linear-gradient(180deg, #020306, #090d15 70%, #030405);
  pointer-events: none;
}
.culture-tour-copy,
.culture-tour-stage { position: relative; z-index: 1; max-width: 1320px; margin-inline: auto; }
.culture-tour-copy { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.55fr); gap: 22px 70px; align-items: end; }
.culture-tour-copy .cs-eyebrow { grid-column: 1 / -1; margin: 0; color: #8ca4ff; }
.culture-tour-copy h1 { grid-column: 1 / -1; margin: 0; font-family: var(--f-cjk); font-size: clamp(48px,5.8vw,84px); font-weight: 600; line-height: 1.08; letter-spacing: -.055em; }
.culture-tour-copy > p { grid-column: 1 / -1; }
.culture-tour-copy h1 em { color: #8ca4ff; font-style: normal; }
.culture-tour-copy > p { max-width: none; margin: 0 0 8px; font-family: var(--f-cjk); font-size: clamp(16px,1.35vw,19px); line-height: 1.82; color: rgba(247,247,242,.62); text-align: left; }
.culture-tour-meta { grid-column: 1 / -1; display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.culture-tour-meta span { padding: 8px 16px; border: 1px solid rgba(247,247,242,.16); border-radius: 999px; font: 14px/1.2 var(--f-cjk); color: rgba(247,247,242,.7); }
.culture-tour-stage { width: 100vw; max-width: none; height: 100svh; min-height: 680px; margin: 76px calc(50% - 50vw) 0; overflow: hidden; background: #080b11; cursor: grab; touch-action: pan-y; user-select: none; }
.culture-tour-stage.is-dragging { cursor: grabbing; }
.culture-panorama { position: absolute; inset: 0; overflow: hidden; }
.culture-panorama::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,.34); pointer-events: none; }
.case-page .culture-panorama-frame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.92) brightness(.84) contrast(1.04); will-change: transform; pointer-events: none; }
.culture-tour-vignette { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,rgba(2,3,6,.28),transparent 22% 78%,rgba(2,3,6,.34)),linear-gradient(180deg,rgba(2,3,6,.18),transparent 42%,rgba(2,3,6,.86)); }
.culture-tour-step { position: absolute; z-index: 3; top: 0; bottom: 0; width: 12%; padding: 0; border: 0; background: transparent; color: #fff; cursor: pointer; }
.culture-tour-step.is-prev { left: 0; text-align: left; }
.culture-tour-step.is-next { right: 0; text-align: right; }
.culture-tour-step span { display: inline-grid; width: 46px; height: 46px; margin-inline: 3vw; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(5,7,11,.2); font: 20px/1 var(--f-body); opacity: 0; transform: translateX(var(--step-shift,0)); backdrop-filter: blur(8px); transition: opacity .25s ease,transform .25s ease,background .25s ease; }
.culture-tour-step.is-prev span { --step-shift: -8px; }
.culture-tour-step.is-next span { --step-shift: 8px; }
.culture-tour-stage:hover .culture-tour-step span,.culture-tour-step:focus-visible span { opacity: 1; transform: none; }
.culture-tour-step:hover span { background: rgba(5,7,11,.52); }
.culture-tour-stage:focus-visible { outline: 2px solid #8ca4ff; outline-offset: -2px; }
.culture-tour-hint { position: absolute; left: 4vw; bottom: 34px; z-index: 4; display: flex; gap: 10px; align-items: center; margin: 0; font: 14px/1.4 var(--f-cjk); letter-spacing: .08em; color: rgba(247,247,242,.72); text-shadow: 0 2px 18px rgba(0,0,0,.8); }
.culture-tour-hint span { width: 30px; height: 18px; border: 1px solid rgba(247,247,242,.35); border-radius: 9px; }
.culture-tour-caption { position: absolute; right: 5vw; bottom: 78px; z-index: 4; display: grid; gap: 11px; width: min(520px,42vw); padding: 0; border: 0; background: transparent; text-shadow: 0 3px 26px rgba(0,0,0,.92); }
.culture-tour-caption small { font: 14px/1.3 var(--f-cjk); letter-spacing: .11em; color: rgba(255,255,255,.76); }
.culture-tour-caption strong { font: 500 clamp(24px,2.25vw,36px)/1.35 var(--f-cjk); color: #fff; }
.culture-tour-caption.has-detail { width: min(680px,48vw); }
.culture-tour-caption.has-detail strong { font-size: clamp(24px,1.8vw,32px); }
.culture-tour-caption p { max-width: 42em; margin: 2px 0 0; color: rgba(255,255,255,.76); font: 18px/1.7 var(--f-cjk); text-shadow: 0 2px 18px rgba(0,0,0,.92); }
.culture-tour-detail-toggle { display: none; }
.culture-tour-bearing { position: absolute; z-index: 4; top: 30px; right: 4vw; display: grid; grid-template-columns: auto 90px auto; gap: 10px; align-items: center; color: rgba(255,255,255,.78); font: 12px/1 var(--f-body); letter-spacing: .08em; text-shadow: 0 2px 14px rgba(0,0,0,.7); }
.culture-tour-bearing i { position: relative; display: block; height: 1px; background: rgba(255,255,255,.28); }
.culture-tour-bearing i::after { content: ''; position: absolute; top: -2px; left: var(--tour-bearing,0%); width: 5px; height: 5px; border-radius: 50%; background: #8ca4ff; transform: translateX(-50%); }
.culture-tour-bearing b { font-weight: 400; opacity: .45; }
.culture-tour-index { position: absolute; z-index: 5; left: 50%; bottom: 38px; display: flex; gap: 6px; transform: translateX(-50%); }
.culture-tour-index button { width: 16px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.3); overflow: hidden; text-indent: -999px; cursor: pointer; transition: width .25s ease,background .25s ease; }
.culture-tour-index button.is-active { width: 34px; background: #8ca4ff; }

@media (min-width: 1100px) {
  .culture-tour-copy > p { white-space: nowrap; }
}

@media (max-width: 768px) {
  .culture-tour { min-height: 0; padding: 112px 16px 28px; }
  .culture-tour-copy { grid-template-columns: 1fr; gap: 18px; }
  .culture-tour-copy .cs-eyebrow,.culture-tour-copy h1,.culture-tour-copy > p,.culture-tour-meta { grid-column: auto; }
  .culture-tour-copy h1 { font-size: 38px; }
  .culture-tour-stage { display: flex; flex-direction: column; width: 100vw; height: auto; min-height: 0; margin: 28px -16px 0; background: #080b11; }
  .culture-panorama { position: relative; flex: none; width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .culture-tour-vignette { position: absolute; top: 0; right: 0; bottom: auto; left: 0; height: auto; aspect-ratio: 4 / 3; background: linear-gradient(180deg,transparent 42%,rgba(2,3,6,.55)); }
  .case-page .culture-panorama-frame { object-fit: cover; object-position: center 46%; }
  .culture-tour-caption,.culture-tour-caption.has-detail { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: auto; margin: 12px 16px 0; padding: 14px 16px; gap: 6px; border: 0; border-radius: 14px; background: rgba(4,8,18,.72); box-shadow: 0 12px 36px rgba(0,0,0,.28); backdrop-filter: blur(16px); text-shadow: none; pointer-events: auto; }
  .culture-tour-caption strong,.culture-tour-caption.has-detail strong { padding-right: 44px; font-size: 19px; line-height: 1.38; }
  .culture-tour-caption small { color: rgba(255,255,255,.72); }
  .culture-tour-caption p { display: none; max-height: min(34svh,260px); margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); overflow-y: auto; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.72; text-shadow: none; overscroll-behavior: contain; }
  .culture-tour-caption.is-expanded p { display: block; }
  .culture-tour-detail-toggle { position: absolute; top: 18px; right: 10px; display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; background: transparent; color: rgba(255,255,255,.82); cursor: pointer; }
  .culture-tour-detail-toggle span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .culture-tour-detail-toggle i { width: 0; height: 0; border-right: 6px solid transparent; border-left: 6px solid transparent; border-top: 8px solid currentColor; transition: transform .22s ease; }
  .culture-tour-caption.is-expanded .culture-tour-detail-toggle i { transform: rotate(180deg); }
  .culture-tour-step { top: 0; bottom: auto; display: flex; width: 22%; height: auto; aspect-ratio: 4 / 3; align-items: center; }
  .culture-tour-step.is-prev { justify-content: flex-start; }
  .culture-tour-step.is-next { justify-content: flex-end; }
  .culture-tour-step span { width: 38px; height: 38px; margin-inline: 12px; opacity: .78; font-size: 17px; }
  .culture-tour-hint { display: flex; position: relative; left: auto; bottom: auto; margin: 10px 16px 0; justify-content: center; font-size: 13px; letter-spacing: .06em; }
  .culture-tour-bearing { display: none; }
  .culture-tour-index { position: relative; left: auto; bottom: auto; transform: none; justify-content: center; flex-wrap: wrap; gap: 8px; max-width: none; margin: 12px 16px 8px; }
  .culture-tour-index button { width: 8px; height: 8px; border-radius: 99px; text-indent: -999px; }
  .culture-tour-index button.is-active { width: 22px; }
}

/* ============================================================
   《昂楷视界》后半段叙事重构
   04 是建立规则的视觉实验室；05 展示内容架构；06 验证体系；
   07 回到生产现场；08 用结果收束。每一段使用不同的阅读节奏。
   ============================================================ */

/* 04 / 视觉实验室 */
.is-system-lab {
  --lab-bg: #11100f;
  --lab-panel: #1b1a18;
  position: relative;
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 78% 4%, rgba(230, 0, 18, 0.18), transparent 31%),
    linear-gradient(135deg, #151311 0%, var(--lab-bg) 64%);
  color: #fbfbf4;
}
.is-system-lab::before {
  content: 'SYSTEM / 01—05';
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  top: 34px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(251, 251, 244, .28);
}
.is-system-lab .cs-num,
.is-system-lab .cs-lede { color: rgba(251, 251, 244, .55); }
.is-system-lab .cs-title { color: #fbfbf4; }
.is-system-lab .cs-title em { color: #ff4450; }
.is-system-lab .cs-deck-step { color: rgba(251, 251, 244, .34); }
.is-system-lab .cs-deck-step.is-on { color: #fff; }
.is-system-lab .cs-deck-step.is-on i { color: #ff4450; }
.is-system-lab .cs-deck-rail { background: rgba(251, 251, 244, .12); }
.is-system-lab .cs-deck-rail b { background: linear-gradient(90deg, #e60012, #ff6670); }
.is-system-lab .cs-deck-track { counter-reset: lab-panel; padding-top: 28px; }
.is-system-lab .cs-panel {
  counter-increment: lab-panel;
  position: relative;
  min-height: min(61vh, 600px);
  overflow: hidden;
  color: #fbfbf4;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 42%),
    var(--lab-panel);
  border: 1px solid rgba(251, 251, 244, .1);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  opacity: .42;
  transform: scale(.965);
  transition: opacity .45s var(--ease), transform .55s var(--ease), border-color .45s var(--ease);
}
.is-system-lab .cs-panel::before {
  content: '0' counter(lab-panel);
  position: absolute;
  right: 20px;
  top: -18px;
  z-index: 0;
  font-family: var(--f-heading);
  font-size: clamp(100px, 12vw, 170px);
  line-height: 1;
  color: rgba(251, 251, 244, .035);
  pointer-events: none;
}
.is-system-lab .cs-panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 59, 71, .38);
}
.is-system-lab .cs-panel-fig,
.is-system-lab .cs-panel-txt { position: relative; z-index: 1; }
.is-system-lab .cs-panel-txt h3,
.is-system-lab .cs-panel-txt strong,
.is-system-lab .cs-specs-mini.is-block b { color: #fbfbf4; }
.is-system-lab .cs-panel-txt p,
.is-system-lab .cs-specs-mini span { color: rgba(251, 251, 244, .65); }
.is-system-lab .cs-specs-mini b,
.is-system-lab .cs-seal-now { color: #ff5c67 !important; }
.is-system-lab .cs-specs-mini li { border-color: rgba(251, 251, 244, .1); }
.is-system-lab .cs-chain,
.is-system-lab .cs-seal.is-inline,
.is-system-lab .cs-prio { background: rgba(251, 251, 244, .055); }
.is-system-lab .cs-chain { color: rgba(251, 251, 244, .48) !important; }
.is-system-lab .cs-figure,
.is-system-lab .cs-tocmap-fig { border: 0; background: #f7f4ed; }
.is-system-lab .cs-figure-cap { background: rgba(251, 251, 244, .94); color: #111; }
.is-system-lab .cs-panel-fig .cs-figure img,
.is-system-lab .cs-panel-fig .cs-tocmap-fig img { max-height: 48vh; }
.is-system-lab .cs-prio { border-color: rgba(251, 251, 244, .08); }
.is-system-lab .cs-prio h4 { color: #fbfbf4; }
.is-system-lab .cs-prio p { color: rgba(251, 251, 244, .55); }
.is-system-lab .cs-prio.is-active { border-color: rgba(255, 59, 71, .65); background: rgba(230,0,18,.12); }
.is-system-lab .cs-pd-ctrl button { border-color: rgba(251,251,244,.2); color: rgba(251,251,244,.72); }
.is-system-lab .cs-pd-state { color: rgba(251,251,244,.48); }
.is-system-lab .cs-pd-state b { color: #ff5c67; }

/* 05 / 可切换的章节舞台 */
.is-architecture {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(76px, 8vw, 118px);
  background:
    radial-gradient(circle at 72% 50%, rgba(230,0,18,.06), transparent 33%),
    var(--cs-paper);
}


/* 06 / 体系落地，改成占满内容宽度的编辑现场 */
.is-evolution {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(74px, 7vw, 108px);
  padding-bottom: clamp(74px, 7vw, 108px);
  background: #e8e2d7;
}


/* 05 / 校对室 */
.is-proofroom {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 124px);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 82% 28%, rgba(230,0,18,.16), transparent 28%),
    #11100f;
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: #fbfbf4;
}
.is-proofroom .cs-num,
.is-proofroom .cs-lede { color: rgba(251,251,244,.58); }
.is-proofroom .cs-title,
.is-proofroom .cs-line-body h3,
.is-proofroom .cs-line-body strong { color: #fbfbf4; }
.is-proofroom .cs-title em,
.is-proofroom .cs-line-item.is-on .cs-line-k { color: #ff515d; }
.is-proofroom .cs-line { max-width: 1100px; margin: 50px auto 0; }
.is-proofroom .cs-line-rail { background: rgba(251,251,244,.12); }
.is-proofroom .cs-line-item { padding-bottom: clamp(42px, 6vw, 74px); }
.is-proofroom .cs-line-body {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(251,251,244,.1);
  border-radius: 22px;
  background: rgba(251,251,244,.045);
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
  transition: border-color .45s var(--ease), transform .45s var(--ease), background .45s var(--ease);
}
.is-proofroom .cs-line-body::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 40%, rgba(230,0,18,.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 1.2s var(--ease);
}
.is-proofroom .cs-line-item.is-on .cs-line-body {
  border-color: rgba(255,81,93,.4);
  background: rgba(251,251,244,.065);
  transform: translateX(8px);
}
.is-proofroom .cs-line-item.is-on .cs-line-body::after { transform: translateX(120%); }
.is-proofroom .cs-line-body p,
.is-proofroom .cs-specs-mini span,
.is-proofroom .cs-quote-soft { color: rgba(251,251,244,.64); }
.is-proofroom .cs-line-k { color: rgba(251,251,244,.4); }
.is-proofroom .cs-plate b { color: rgba(251,251,244,.76); }
.is-proofroom .cs-plate img { border-color: rgba(251,251,244,.12); }
.is-proofroom .cs-stat-n { color: #fbfbf4; }
.is-proofroom .cs-stat-l { color: rgba(251,251,244,.5); }
.is-proofroom .cs-shift-label { color: #fbfbf4; background: rgba(251,251,244,.08); }
.is-proofroom .cs-shift-label.is-mine { background: rgba(230,0,18,.55); }
.is-proofroom .cs-shift-body { border-color: rgba(251,251,244,.1); }
.is-proofroom .cs-shift-goals li { border-color: rgba(251,251,244,.1); }
.is-proofroom .cs-shift-goals b { color: #ff5d68; }

/* 06 / 结果收束 */
.is-outcome {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(76px, 8vw, 120px);
  padding-bottom: clamp(80px, 9vw, 132px);
  background: #e60012;
  color: #fff;
}
.is-outcome .cs-num { color: rgba(255,255,255,.6); }
.is-outcome .cs-title,
.is-outcome .cs-title em { color: #fff; }
.is-outcome .cs-lessons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
  margin-top: 42px;
}
.is-outcome .cs-lesson {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(89,0,7,.12);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.is-outcome .cs-lesson:first-child { padding-top: clamp(24px, 3vw, 38px); border-top: 1px solid rgba(255,255,255,.22); }
.is-outcome .cs-lesson:hover { transform: translateY(-8px); background: rgba(89,0,7,.22); }
.is-outcome .cs-lesson-n { color: rgba(255,255,255,.34); }
.is-outcome .cs-lesson h3,
.is-outcome .cs-lesson strong { color: #fff; }
.is-outcome .cs-lesson p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.8; }
.is-outcome > .cs-quote-soft {
  max-width: 960px;
  margin: clamp(42px, 5vw, 72px) 0 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--f-cjk);
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1.45;
  color: rgba(255,255,255,.76);
}
.is-outcome > .cs-quote-soft em { color: #fff; }

@media (max-width: 900px) {
  .is-outcome .cs-lessons { grid-template-columns: 1fr; }
  .is-outcome .cs-lesson { min-height: 0; }
}

@media (max-width: 768px) {
  .is-system-lab::before { display: none; }
  .is-system-lab .cs-panel { min-height: 0; opacity: 1; transform: none; border-radius: 16px; }
  .is-system-lab .cs-panel::before { font-size: 96px; top: -8px; }
  .is-system-lab .cs-deck-track { padding-top: 22px; }


  .is-proofroom .cs-line { margin-top: 30px; }
  .is-proofroom .cs-line-body { padding: 22px; border-radius: 16px; }
  .is-proofroom .cs-line-item.is-on .cs-line-body { transform: none; }
}

@media (prefers-reduced-motion: reduce) {.is-system-lab .cs-panel,
.is-proofroom .cs-line-body,
.is-outcome .cs-lesson { transition: none !important; }
}

/* ============================================================
   《昂楷视界》后半段：米白编辑版
   整页只使用纸张色阶。层次来自图片比例、排版、留白和滚动节奏，
   刊物红仅用于进度、编号与极少量强调。
   ============================================================ */

/* 04 / 规则系统：统一为 16:9 媒体 + 正文 + 分割线的编辑流。 */
.case-page.is-editorial .is-system-lab {
  padding-top: clamp(64px, 6vw, 92px);
  padding-bottom: clamp(42px, 5vw, 72px);
  overflow: visible;
  background: var(--cs-paper);
  color: var(--cs-ink);
}
.case-page.is-editorial .is-system-lab::before { display: none; }
.case-page.is-editorial .is-system-lab .cs-num,
.case-page.is-editorial .is-system-lab .cs-panel-txt p,
.case-page.is-editorial .is-system-lab .cs-specs-mini span,
.case-page.is-editorial .is-system-lab .cs-prio p,
.case-page.is-editorial .is-system-lab .cs-chain { color: var(--cs-ink-2) !important; }
.case-page.is-editorial .is-system-lab .cs-title,
.case-page.is-editorial .is-system-lab .cs-panel-txt h3,
.case-page.is-editorial .is-system-lab .cs-panel-txt strong,
.case-page.is-editorial .is-system-lab .cs-prio h4,
.case-page.is-editorial .is-system-lab .cs-specs-mini.is-block b { color: var(--cs-ink); }
.case-page.is-editorial .is-system-lab .cs-title em,
.case-page.is-editorial .is-system-lab .cs-specs-mini b,
.case-page.is-editorial .is-system-lab .cs-seal-now { color: var(--cs-accent-deep) !important; }
.case-page.is-editorial .is-system-lab .cs-deck-view {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}
.case-page.is-editorial .is-system-lab .cs-deck-track {
  display: grid;
  width: auto;
  max-width: var(--cs-max);
  margin: 0 auto;
  gap: 0;
  padding: clamp(32px, 4vw, 52px) var(--gutter) 0;
  transform: none !important;
  will-change: auto;
}
.case-page.is-editorial .is-system-lab .cs-panel {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, .84fr);
  gap: clamp(28px, 4vw, 58px);
  width: auto;
  max-width: none;
  min-height: 0;
  padding: clamp(38px, 5vw, 64px) 0;
  background: transparent;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--cs-ink);
  opacity: 1;
  transform: none;
}
.case-page.is-editorial .is-system-lab .cs-panel:not(:last-child) { border-bottom: 1px solid var(--cs-hair); }
.case-page.is-editorial .is-system-lab .cs-panel::before { display: none; }
.case-page.is-editorial .is-system-lab .cs-panel.is-active {
  opacity: 1;
  transform: none;
}
.case-page.is-editorial .is-system-lab .cs-chain,
.case-page.is-editorial .is-system-lab .cs-seal.is-inline,
.case-page.is-editorial .is-system-lab .cs-prio {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.case-page.is-editorial .is-system-lab .cs-prio.is-active {
  background: transparent;
  border-color: transparent;
}
.case-page.is-editorial .is-system-lab .cs-specs-mini li { border: 0; }
.case-page.is-editorial .is-system-lab .cs-figure,
.case-page.is-editorial .is-system-lab .cs-tocmap-fig {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.case-page.is-editorial .is-system-lab .cs-panel-fig .cs-figure img,
.case-page.is-editorial .is-system-lab .cs-panel-fig .cs-tocmap-fig img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: var(--cs-paper);
}
.case-page.is-editorial .is-system-lab .cs-figure.is-trimmed img { transform: scale(1.012); }
.case-page.is-editorial .is-system-lab .cs-figure:hover { box-shadow: none; }
.case-page.is-editorial .is-system-lab .cs-pd-ctrl button { border-color: var(--cs-hair); color: var(--cs-ink-2); }
.case-page.is-editorial .is-system-lab .cs-pd-state { color: var(--cs-ink-3); }
.case-page.is-editorial .is-system-lab .cs-pd-state b { color: var(--cs-accent-deep); }

/* 05 / 内容架构：真实跨页是主角，说明只做一张纸签 */
.case-page.is-editorial .is-architecture {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(86px, 9vw, 132px);
  background: var(--cs-paper);
}


/* 06 / 延展：浅色编辑台，图片切换但不换页面色调 */
.case-page.is-editorial .is-evolution {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(84px, 8vw, 124px);
  padding-bottom: clamp(84px, 8vw, 124px);
  background: var(--cs-paper-2);
}


/* 05 / 校对与印刷：回到纸张式时间线，不做深色卡片墙 */
.case-page.is-editorial .is-proofroom {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  padding-top: clamp(86px, 9vw, 132px);
  /* 下一节（.is-outcome）底色与这里完全相同，两边各留 130px 会拼出
     一块 260px 的空洞。相接的这一侧收到常规节奏附近即可。 */
  padding-bottom: clamp(52px, 5vw, 72px);
  background: var(--cs-paper);
  color: var(--cs-ink);
}
/* 时间轴最后一项不需要再垫一段：区块自己的下内边距已经够了 */
.case-page.is-editorial .is-proofroom .cs-line-item:last-child { padding-bottom: 0; }
.case-page.is-editorial .is-proofroom .cs-num,
.case-page.is-editorial .is-proofroom .cs-lede,
.case-page.is-editorial .is-proofroom .cs-line-body p,
.case-page.is-editorial .is-proofroom .cs-specs-mini span,
.case-page.is-editorial .is-proofroom .cs-quote-soft { color: var(--cs-ink-2); }
.case-page.is-editorial .is-proofroom .cs-title,
.case-page.is-editorial .is-proofroom .cs-line-body h3,
.case-page.is-editorial .is-proofroom .cs-line-body strong { color: var(--cs-ink); }
.case-page.is-editorial .is-proofroom .cs-title em,
.case-page.is-editorial .is-proofroom .cs-line-item.is-on .cs-line-k { color: var(--cs-accent-deep); }
.case-page.is-editorial .is-proofroom .cs-line-k {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}
.case-page.is-editorial .is-proofroom .cs-line { max-width: 1040px; margin: 54px auto 0; }
.case-page.is-editorial .is-proofroom .cs-line-rail { background: var(--cs-hair); }
.case-page.is-editorial .is-proofroom .cs-line-item {
  margin-bottom: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 42px);
  border-bottom: 1px solid var(--cs-hair);
}
.case-page.is-editorial .is-proofroom .cs-line-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.case-page.is-editorial .is-proofroom .cs-line-body {
  padding: 0 0 clamp(24px, 3vw, 38px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.case-page.is-editorial .is-proofroom .cs-line-item:last-child .cs-line-body { border-bottom: 0; }
.case-page.is-editorial .is-proofroom .cs-line-item.is-on .cs-line-body {
  transform: none;
  border-color: var(--cs-hair);
  background: transparent;
}
.case-page.is-editorial .is-proofroom .cs-line-body::after { display: none; }
.case-page.is-editorial .is-proofroom .cs-plate b {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .is-proofroom .cs-plate img {
  border: 0;
  border-radius: 0;
}
.case-page.is-editorial .is-proofroom .cs-stat-n { color: var(--cs-ink); }
.case-page.is-editorial .is-proofroom .cs-stat-l { color: var(--cs-ink-3); }
.case-page.is-editorial .is-proofroom .cs-shift-label { color: var(--cs-ink); background: var(--cs-paper-2); }
.case-page.is-editorial .is-proofroom .cs-shift-label.is-mine { color: var(--cs-ink); background: var(--cs-paper-3); }
.case-page.is-editorial .is-proofroom .cs-shift-body,
.case-page.is-editorial .is-proofroom .cs-shift-goals li { border-color: var(--cs-hair); }
.case-page.is-editorial .is-proofroom .cs-shift-goals b { color: var(--cs-accent-deep); }

/* 06–07 / 总结与能力：统一为先结论、后深读的极简手风琴。 */
.case-page.is-editorial .is-outcome {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  /* 上接 05、下接 07，三节同底色，靠间距分节即可，不用堆到 140px */
  padding-top: clamp(52px, 5vw, 72px);
  padding-bottom: clamp(52px, 5vw, 72px);
  background: var(--cs-paper);
  color: var(--cs-ink);
}
.case-page.is-editorial .is-outcome .cs-num { color: var(--cs-ink-3); }
.case-page.is-editorial .is-outcome .cs-title { color: var(--cs-ink); }
.case-page.is-editorial .is-capabilities {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--cs-max)) / 2 + var(--gutter)));
  background: var(--cs-paper);
}
.case-page.is-editorial .is-capabilities .cs-title { color: var(--cs-ink); }
.case-page.is-editorial .cs-accordion {
  max-width: 980px;
  margin-top: clamp(28px, 3.5vw, 48px);
}
.case-page.is-editorial .cs-accordion-item + .cs-accordion-item {
  margin-top: clamp(34px, 4vw, 52px);
}
.case-page.is-editorial .cs-accordion-item h3 { margin: 0; }
.case-page.is-editorial .cs-accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cs-ink);
  font-family: var(--f-cjk);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}
.case-page.is-editorial .cs-accordion-trigger i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: var(--cs-accent-deep);
}
.case-page.is-editorial .cs-accordion-trigger i::before,
.case-page.is-editorial .cs-accordion-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}
.case-page.is-editorial .cs-accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .35s var(--ease);
}
.case-page.is-editorial .cs-accordion-item.is-open .cs-accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
.case-page.is-editorial .cs-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .45s var(--ease), opacity .3s var(--ease);
}
.case-page.is-editorial .cs-accordion-panel > div { overflow: hidden; }
.case-page.is-editorial .cs-accordion-panel p {
  max-width: 42em;
  margin: 0;
  padding-top: 20px;
  color: var(--cs-ink-2);
  font-family: var(--f-cjk);
  font-size: 17px;
  line-height: 1.82;
}
.case-page.is-editorial .cs-accordion-panel strong { color: var(--cs-ink); font-weight: 600; }
.case-page.is-editorial .cs-accordion-item.is-open .cs-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.case-page.is-editorial .cs-accordion-trigger:focus-visible {
  outline: 0;
  color: var(--cs-accent-deep);
}
.case-page.is-editorial .cs-outro { border-top: 0; }
.case-page.is-editorial .cs-only-mobile { display: none; }

/* 本页以纸面排版为主，图片和并列能力不再套独立卡片。 */
.case-page.is-editorial .cs-doc {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.case-page.is-editorial .cs-doc:hover {
  transform: none;
  box-shadow: none;
}
.case-page.is-editorial .cs-doc-cap {
  padding-inline: 0;
  border-top: 0;
}
.case-page.is-editorial .cs-audience-pin .cs-facets {
  gap: clamp(28px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.case-page.is-editorial .cs-audience-pin .cs-facet,
.case-page.is-editorial .cs-audience-pin .cs-facet + .cs-facet {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
@media (max-width: 768px) {
  /* 手机内容不是桌面稿的缩放版：收紧字号，并删掉依赖桌面页内导航的章节编号。 */
  /* 礼盒在手机上就是一块真正的 16:9 画布；它进入视口时立即推进，
     不使用 sticky 轨道，也不额外制造滚动占位。 */
  .case-page.is-editorial .cs-reveal-scroll.is-mobile-scrub {
    height: auto;
  }
  .case-page.is-editorial .cs-reveal-scroll.is-mobile-scrub > .cs-reveal {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .case-page.is-editorial .cs-reveal-scroll.is-mobile-scrub .cs-reveal-video {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: transparent;
  }

  /* 三本刊物在桌面端是主视觉，手机端只是进入阅读器的紧凑索引。 */
  .case-page.is-editorial .cs-journals { padding: 24px 12px 26px; }
  .case-page.is-editorial .cs-journals-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .case-page.is-editorial .cs-journal-fig { max-width: none; border-radius: 3px; }
  .case-page.is-editorial .cs-journal-badge {
    bottom: 7px;
    gap: 3px;
    padding: 5px 7px;
    font-size: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .34);
  }
  .case-page.is-editorial .cs-journal-badge svg,
  .case-page.is-editorial .cs-journal-badge span { display: none; }
  .case-page.is-editorial .cs-journal-meta { margin-top: 8px; }
  .case-page.is-editorial .cs-journal-n {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 1.45;
  }

  .case-page.is-editorial .cs-hero-title { font-size: 29px; line-height: 1.2; margin-bottom: 16px; }
  .case-page.is-editorial .cs-hero-sub { font-size: 15px; line-height: 1.72; margin-bottom: 22px; }
  .case-page.is-editorial .cs-body > .cs-section > .cs-title,
  .case-page.is-editorial .cs-deck-head > .cs-title,
  .case-page.is-editorial .cs-mobile-pin-preview > .cs-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cs-ink);
  }
  .case-page.is-editorial .cs-body .cs-title em {
    display: block;
    color: var(--cs-accent-deep);
  }
  .case-page.is-editorial .cs-lede { font-size: 15.5px; line-height: 1.72; margin-top: 14px; }
  .case-page.is-editorial .cs-sub {
    margin-top: var(--cs-mobile-content-gap);
    margin-bottom: 0;
    font-size: 16px;
  }
  .case-page.is-editorial .cs-body .cs-num { display: none; }
  .case-page.is-editorial .cs-body > .cs-section,
  .case-page.is-editorial .cs-body > .cs-deck {
    padding-top: var(--cs-mobile-section-gap);
    padding-bottom: 0;
  }
  .case-page.is-editorial .cs-panel-txt h3,
  .case-page.is-editorial .cs-lesson h3,
  .case-page.is-editorial .cs-facet h4 { font-size: 20px; line-height: 1.35; }
  .case-page.is-editorial .cs-facet p,
  .case-page.is-editorial .cs-shift-body p,
  .case-page.is-editorial .cs-shift-flaws li,
  .case-page.is-editorial .cs-shift-goals span { font-size: 14px; line-height: 1.68; }

  /* 01 战略诊断：手机按阅读顺序自然排布，不复制桌面的四栏矩阵。 */
  .case-page.is-editorial .is-strategy { padding-bottom: 0; }
  .case-page.is-editorial .cs-strategy {
    margin-top: 32px;
  }
  .case-page.is-editorial .cs-strategy-head {
    display: block;
    padding: 26px 0 22px;
  }
  .case-page.is-editorial .cs-strategy-kicker {
    font-size: 12px;
  }
  .case-page.is-editorial .cs-strategy-kicker span {
    display: inline;
    margin: 0 0 0 8px;
    font-size: 9px;
  }
  .case-page.is-editorial .cs-strategy-head h3,
  .case-page.is-editorial .cs-strategy-brief-intro h3 {
    margin-top: 20px;
    font-size: 21px;
    line-height: 1.38;
  }
  .case-page.is-editorial .cs-strategy-head h3 + p,
  .case-page.is-editorial .cs-strategy-brief-intro h3 + p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.68;
  }
  .case-page.is-editorial .cs-strategy-diagnosis {
    grid-template-columns: 1fr;
    border-radius: 7px;
  }
  .case-page.is-editorial .cs-strategy-card {
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--cs-hair);
    background: transparent;
  }
  .case-page.is-editorial .cs-strategy-card:last-child { border-bottom: 0; }
  .case-page.is-editorial .cs-strategy-card::before { display: none; }
  .case-page.is-editorial .cs-strategy-card header {
    gap: 9px;
    margin-bottom: 12px;
  }
  .case-page.is-editorial .cs-strategy-card h4,
  .case-page.is-editorial .cs-strategy-pillar h4 {
    font-size: 17px;
  }
  .case-page.is-editorial .cs-strategy-card > p {
    font-size: 14px;
    line-height: 1.68;
  }
  .case-page.is-editorial .cs-strategy-card strong {
    margin-top: 16px;
    padding-top: 0;
    font-size: 12.5px;
  }
  .case-page.is-editorial .cs-strategy-card strong::before {
    display: inline;
    margin: 0 8px 0 0;
  }
  .case-page.is-editorial .cs-strategy-brief {
    grid-template-columns: 1fr;
    margin-top: 34px;
    border-radius: 7px;
  }
  .case-page.is-editorial .cs-strategy-brief-intro {
    padding: 22px 0 24px;
  }
  .case-page.is-editorial .cs-strategy-brief-intro h3 { margin-top: 20px; }
  .case-page.is-editorial .cs-strategy-path {
    border-top: 0;
    border-left: 0;
  }
  .case-page.is-editorial .cs-strategy-pillar {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 20px;
  }
  .case-page.is-editorial .cs-strategy-pillar p {
    margin-top: 5px;
    font-size: 13.5px;
    line-height: 1.62;
  }
  /* 面向对象由纵向手势直接驱动横移，不 pin，也不生成纵向占位。 */
  .case-page.is-editorial .cs-audience-stage {
    display: block;
    overflow: visible;
    padding-bottom: 0;
  }
  .case-page.is-editorial .cs-audience-pin {
    width: calc(100% + 2 * var(--gutter));
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
  }
  .case-page.is-editorial .cs-audience-pin::-webkit-scrollbar { display: none; }
  .case-page.is-editorial .cs-audience-pin.is-auto-x {
    overflow-x: hidden;
    touch-action: pan-y;
    scroll-snap-type: none;
  }
  .case-page.is-editorial .cs-audience-pin .cs-facets {
    display: flex;
    width: max-content;
    margin-top: var(--cs-mobile-content-gap);
    align-items: stretch;
    border: 0;
    border-radius: 0;
    overflow: visible;
    gap: 20px;
    padding-right: var(--gutter);
  }
  .case-page.is-editorial .cs-audience-pin .cs-facet {
    box-sizing: border-box;
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    max-width: none;
    padding: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: start;
    column-gap: 10px;
    row-gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .case-page.is-editorial .cs-audience-pin .cs-facet + .cs-facet { border-left: 0; }
  .case-page.is-editorial .cs-audience-pin .cs-facet-n {
    align-self: baseline;
    margin: 0;
    font-family: var(--f-body);
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .08em;
    color: rgb(var(--cs-accent-rgb) / .68);
  }
  .case-page.is-editorial .cs-audience-pin .cs-facet h4 {
    align-self: baseline;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
  }
  .case-page.is-editorial .cs-audience-pin .cs-facet p {
    grid-column: 1 / -1;
    align-self: start;
    margin: 0;
  }
  .case-page.is-editorial .cs-audience-pin .hscroll-dots { display: none; }
  .case-page.is-editorial .cs-mobile-pin-preview {
    display: block;
    margin-top: var(--cs-mobile-section-gap);
  }
  .case-page.is-editorial .cs-mobile-pin-preview.is-stage-copy { padding-bottom: 0; }
  .case-page.is-editorial .cs-mobile-pin-preview.is-follow-copy { margin-top: var(--cs-mobile-content-gap); }
  .case-page.is-editorial .cs-mobile-pin-preview .cs-title { margin: 0; }
  .case-page.is-editorial .cs-mobile-pin-preview .cs-lede { margin-bottom: 0; }
  .case-page.is-editorial .cs-mobile-pin-preview .cs-lede + .cs-lede { margin-top: 12px; }
  .case-page.is-editorial .cs-mobile-pin-preview .cs-docs { margin-bottom: 0; }
  .case-page.is-editorial .cs-mobile-preview-source { display: none; }
  .case-page.is-editorial .cs-mobile-research-source { display: none; }

  /* HERO 的四组履历信息在桌面承担快速扫读，手机会把黑色首屏拖得过长。 */
  .case-page.is-editorial .cs-hero-meta { display: none; }

  /* 调研模块保留方法和现场照片，七个桌面式索引方块在手机省略。 */
  .case-page.is-editorial .cs-flow.is-steps { display: none; }

  /* 手机删去的细节卡与补充句；桌面仍完整保留。 */
  .case-page.is-editorial .is-mobile-omit { display: none !important; }
  .case-page.is-editorial .cs-only-desktop { display: none; }
  .case-page.is-editorial .cs-only-mobile { display: inline; }

  /* 视觉体系沿用同一套 16:9 图文规范，手机只收紧留白。 */
  .case-page.is-editorial .is-system-lab {
    padding-top: var(--cs-mobile-section-gap);
    padding-bottom: 0;
  }
  .case-page.is-editorial .is-system-lab .cs-deck-view {
    position: relative;
    padding-bottom: 0;
  }
  .case-page.is-editorial .is-system-lab .cs-deck-track {
    display: grid;
    max-width: none;
    gap: 0;
    padding: var(--cs-mobile-content-gap) var(--gutter) 0;
  }
  .case-page.is-editorial .is-system-lab .cs-panel {
    width: auto;
    max-width: none;
    max-height: none;
    height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    padding: 30px 0;
    transition: none;
    contain: none;
  }
  .case-page.is-editorial .is-system-lab .cs-panel:first-child { padding-top: 0; }
  .case-page.is-editorial .is-system-lab .cs-panel:last-child { padding-bottom: 0; }
  .case-page.is-editorial .is-system-lab .cs-panel-fig {
    width: 100%;
    margin-inline: 0;
  }
  .case-page.is-editorial .is-system-lab .cs-panel-txt { padding-inline: 0; }
  .case-page.is-editorial .is-system-lab .cs-panel-txt h3 { margin-bottom: 10px; font-size: 19px; line-height: 1.38; }
  .case-page.is-editorial .is-system-lab .cs-panel-txt p { font-size: 14px; line-height: 1.68; }
  .case-page.is-editorial .is-system-lab .cs-specs-mini { margin-top: 6px; }
  .case-page.is-editorial .is-system-lab .cs-specs-mini li { padding-block: 4px; }
  .case-page.is-editorial .is-system-lab .cs-chain { font-size: 12px; line-height: 1.5; padding: 8px 10px; }
  .case-page.is-editorial .is-system-lab .cs-seal.is-inline {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    margin-top: 8px;
    padding: 8px 10px;
  }
  .case-page.is-editorial .is-system-lab .cs-seal.is-inline .cs-seal-stage { padding: 8%; }
  .case-page.is-editorial .is-system-lab .cs-prio { padding: 8px 10px; }
  .case-page.is-editorial .is-system-lab .cs-prio p { display: none; }
  .case-page.is-editorial .hscroll-dots { display: flex; }
  .case-page.is-editorial .hscroll-dots.is-in-rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    z-index: 3;
    margin: 0;
  }

  /* 05 回到竖向自然阅读，卡片高度由内容撑开。 */
  .case-page.is-editorial .is-proofroom { overflow: visible; }
  .case-page.is-editorial .is-proofroom .cs-line {
    display: block;
    max-width: none;
    margin: 32px 0 0;
    padding: 0 0 0 32px;
    overflow: visible;
  }
  .case-page.is-editorial .is-proofroom .cs-line-item,
  .case-page.is-editorial .is-proofroom .cs-line-item:last-child {
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    margin-bottom: 26px;
    padding: 0 0 26px;
  }
  .case-page.is-editorial .is-proofroom .cs-line-item:last-child { margin-bottom: 0; padding-bottom: 0; }
  .case-page.is-editorial .is-proofroom .cs-line-body,
  .case-page.is-editorial .is-proofroom .cs-line-item:last-child .cs-line-body {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .case-page.is-editorial .is-proofroom .cs-line-k { font-size: 18px; margin-bottom: 8px; }
  .case-page.is-editorial .is-proofroom .cs-line-body p { font-size: 14px; line-height: 1.62; }
  .case-page.is-editorial .is-proofroom .cs-review-paths { margin-top: 10px; gap: 4px; }
  .case-page.is-editorial .is-proofroom .cs-review-paths li { font-size: 14px; line-height: 1.62; }
  .case-page.is-editorial .is-proofroom .cs-plates { gap: 8px; margin-top: 10px; }
  .case-page.is-editorial .is-proofroom .cs-plate img { max-height: 112px; object-fit: cover; }
  .case-page.is-editorial .is-proofroom .cs-plate b { margin-top: 6px; font-size: 13px; }
  .case-page.is-editorial .is-proofroom .cs-stats { margin-top: 12px; }
  .case-page.is-editorial .is-proofroom { padding-bottom: 0; }
  /* 总结与能力共用一套紧凑的手机手风琴规范。 */
  .case-page.is-editorial .is-outcome { overflow: visible; }
  .case-page.is-editorial .cs-accordion { margin-top: var(--cs-mobile-content-gap); }
  .case-page.is-editorial .cs-accordion-item + .cs-accordion-item { margin-top: 32px; }
  .case-page.is-editorial .cs-accordion-trigger {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 18px;
    font-size: 25px;
  }
  .case-page.is-editorial .cs-accordion-trigger i { width: 28px; height: 28px; }
  .case-page.is-editorial .cs-accordion-trigger i::before,
  .case-page.is-editorial .cs-accordion-trigger i::after { width: 18px; }
  .case-page.is-editorial .cs-accordion-panel p {
    padding-top: 16px;
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-page.is-editorial .cs-accordion-panel,
  .case-page.is-editorial .cs-accordion-trigger i::after { transition: none; }
}

/* ============================================================
   作品详情手机首屏规范
   产品单页与企业内刊使用同一组标题和导语参数，避免各页面单独漂移。
   ============================================================ */
@media (max-width: 768px) {
  .case-page:is(.is-vision, .is-product-sheets) .cs-hero {
    padding: 120px var(--gutter) 0;
  }
  .case-page:is(.is-vision, .is-product-sheets) .cs-hero-title {
    margin: 0 0 16px;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
  }
  .case-page:is(.is-vision, .is-product-sheets) .cs-hero-title em {
    display: block;
  }
  .case-page:is(.is-vision, .is-product-sheets) .cs-hero-sub {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.72;
  }
}

/* ============================================================
   产品单页手机正文规范
   不使用卡片、描边和容器阴影；层级只由留白、字重与强调色建立。
   ============================================================ */
@media (max-width: 768px) {
  .case-page.is-product-sheets .cs-body {
    --ps-space-xs: 8px;
    --ps-space-sm: 16px;
    --ps-space-md: 28px;
    --ps-space-lg: 40px;
    --ps-section-gap: 64px;
    --ps-content-gap: 32px;
  }

  /* 五级文字体系：章节、小节、导语、正文、注释。 */
  .case-page.is-product-sheets .cs-body > .cs-section > .cs-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
  }
  .case-page.is-product-sheets .cs-body .cs-sub,
  .case-page.is-product-sheets .cs-body .cs-inst-title,
  .case-page.is-product-sheets .cs-body .cs-flip-copy h4,
  .case-page.is-product-sheets .cs-body .cs-stage h4,
  .case-page.is-product-sheets .cs-body .cs-spec h4,
  .case-page.is-product-sheets .cs-body .cs-phase h4,
  .case-page.is-product-sheets .cs-body .cs-phase.is-dark h4,
  .case-page.is-product-sheets .cs-body .cs-ms-body h4,
  .case-page.is-product-sheets .cs-body .cs-lessons h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .case-page.is-product-sheets .cs-body .cs-sub {
    margin-top: var(--ps-content-gap);
    margin-bottom: 0;
  }
  .case-page.is-product-sheets .cs-body .cs-lede {
    margin-top: 14px;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.72;
  }
  .case-page.is-product-sheets .cs-body :is(
    .cs-card-text,
    .cs-hub-node p,
    .cs-block-v,
    .cs-compare-v,
    .cs-stage li,
    .cs-note,
    .cs-flip-copy p,
    .cs-pill,
    .cs-flow-step small,
    .cs-spec p,
    .cs-phase > p,
    .cs-phase.is-dark > p,
    .cs-phase li,
    .cs-phase.is-dark li,
    .cs-ms-body p,
    .cs-lessons p,
    .cs-cap
  ) {
    font-size: 14px;
    line-height: 1.68;
    letter-spacing: 0;
  }
  .case-page.is-product-sheets .cs-body :is(
    .cs-card-label,
    .cs-block-k,
    .cs-compare-k,
    .cs-badge,
    .cs-redacted,
    .cs-doc-cap,
    .cs-figure-cap,
    .cs-flip-side-k
  ) {
    font-size: 12.5px;
    line-height: 1.5;
    letter-spacing: .06em;
  }
  .case-page.is-product-sheets .cs-body .cs-question {
    margin-top: var(--ps-content-gap);
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.62;
  }
  .case-page.is-product-sheets .cs-body :is(.cs-quote-dark, .cs-quote-soft) {
    margin-top: var(--ps-content-gap);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--cs-ink-2);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.72;
  }
  .case-page.is-product-sheets .cs-body :is(.cs-quote-dark, .cs-quote-soft) em {
    color: var(--cs-accent-deep);
    font-weight: 600;
  }

  /* 内容组只靠留白分段，不再画横线或包进卡片。 */
  .case-page.is-product-sheets .cs-body :is(
    .cs-card,
    .cs-hub-core,
    .cs-hub-node,
    .cs-compare-head,
    .cs-compare-row,
    .cs-block,
    .cs-block.is-filled,
    .cs-stage,
    .cs-doc,
    .cs-minutes,
    .cs-minutes-head,
    .cs-layout,
    .cs-pill,
    .cs-flow-step,
    .cs-palette-preview,
    .cs-swatch,
    .cs-spec,
    .cs-phase,
    .cs-phase.is-dark,
    .cs-figure,
    .cs-deliver,
    .cs-lesson
  ) {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .case-page.is-product-sheets .cs-card { padding: 0; }
  .case-page.is-product-sheets .cs-card + .cs-card { margin-top: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-card-label { display: block; margin-bottom: var(--ps-space-xs); }

  .case-page.is-product-sheets .cs-hub { gap: 0; }
  .case-page.is-product-sheets .cs-hub-core { padding: 0; margin-bottom: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-hub-node { padding: 0; }
  .case-page.is-product-sheets .cs-hub-node + .cs-hub-node { margin-top: 22px; }
  .case-page.is-product-sheets .cs-hub-node h4 { margin: 0 0 6px; font-size: 16px; line-height: 1.5; }

  .case-page.is-product-sheets .cs-compare { gap: var(--ps-space-lg); }
  .case-page.is-product-sheets .cs-compare-head {
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .case-page.is-product-sheets .cs-body .cs-compare-col.is-mine .cs-compare-head {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .case-page.is-product-sheets .cs-compare-row { padding: 0; }
  .case-page.is-product-sheets .cs-compare-row + .cs-compare-row { margin-top: 22px; }
  .case-page.is-product-sheets .cs-blocks { gap: 22px; }
  .case-page.is-product-sheets .cs-block,
  .case-page.is-product-sheets .cs-block.is-filled { padding: 0; }
  .case-page.is-product-sheets .cs-block-k { margin-bottom: 5px; }

  .case-page.is-product-sheets .cs-inst-head { margin-bottom: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-members { gap: 10px 18px; margin-bottom: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-member { font-size: 14px; line-height: 1.5; }
  .case-page.is-product-sheets .cs-member i { display: none; }
  .case-page.is-product-sheets .cs-stages { gap: var(--ps-space-md); margin-top: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-stage { padding: 0; }
  .case-page.is-product-sheets .cs-stage ul { margin-top: 10px; }
  .case-page.is-product-sheets .cs-note {
    margin-top: var(--ps-space-md);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-note b { color: var(--cs-accent-deep); }

  .case-page.is-product-sheets .cs-docs { gap: 24px 10px; }
  .case-page.is-product-sheets .cs-doc { padding: 0; overflow: visible; }
  .case-page.is-product-sheets .cs-doc-fig,
  .case-page.is-product-sheets .cs-palette-fig {
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .case-page.is-product-sheets .cs-minutes { margin-top: var(--ps-content-gap); padding: 0; }
  .case-page.is-product-sheets .cs-minutes-head { padding: 0; font-size: 15.5px; line-height: 1.5; }
  .case-page.is-product-sheets .cs-minutes-head span { display: block; margin-top: 6px; }
  .case-page.is-product-sheets .cs-minutes-body { padding-top: 22px; }
  .case-page.is-product-sheets .cs-minutes-prod h5 { font-size: 16px; line-height: 1.5; }
  .case-page.is-product-sheets .cs-minutes-prod li { font-size: 14px; line-height: 1.68; }
  .case-page.is-product-sheets .cs-body :is(.cs-redacted, .cs-doc-cap, .cs-figure-cap) { letter-spacing: 0; }

  /* 图片和交互本身可以存在，但不再伪装成悬浮卡片。 */
  .case-page.is-product-sheets .cs-flip-face,
  .case-page.is-product-sheets .cs-wall .cs-sheet,
  .case-page.is-product-sheets .cs-grid13 .cs-sheet {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .case-page.is-product-sheets .cs-figure img { border-radius: 0; }
  .case-page.is-product-sheets .cs-layouts { gap: 20px; }
  .case-page.is-product-sheets .cs-layout { padding-top: 0; }
  .case-page.is-product-sheets .cs-layout-k { min-height: 0; margin-bottom: 12px; font-size: 14px; }
  .case-page.is-product-sheets .cs-pills { gap: 14px; }
  .case-page.is-product-sheets .cs-pill { padding: 0 0 0 16px; }
  .case-page.is-product-sheets .cs-pill::before { top: 8px; width: 6px; height: 6px; }

  .case-page.is-product-sheets .cs-flow.is-steps { gap: 24px; }
  .case-page.is-product-sheets .cs-flow.is-steps .cs-flow-step { padding: 0; }
  .case-page.is-product-sheets .cs-flow.is-steps b { font-size: 16px; line-height: 1.5; }
  .case-page.is-product-sheets .cs-flow.is-steps b i { font-size: 12.5px; }
  .case-page.is-product-sheets .cs-flow.is-steps small { margin: 5px 0 0 31px; }

  .case-page.is-product-sheets .cs-swatches { gap: 10px 7px; }
  .case-page.is-product-sheets .cs-swatch {
    padding: 4px 0;
    opacity: .34;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .case-page.is-product-sheets .cs-swatch:hover,
  .case-page.is-product-sheets .cs-swatch.is-active {
    background: transparent;
    opacity: 1;
    transform: translateY(-2px);
  }
  .case-page.is-product-sheets .cs-swatch i { border-radius: 0; }
  .case-page.is-product-sheets .cs-palette-meta small { font-size: 12.5px; line-height: 1.5; letter-spacing: 0; }
  .case-page.is-product-sheets .cs-specs { gap: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-spec { padding: 0; }
  .case-page.is-product-sheets .cs-phases { gap: var(--ps-content-gap); }
  .case-page.is-product-sheets .cs-phase,
  .case-page.is-product-sheets .cs-phase.is-dark { padding: 0; }

  .case-page.is-product-sheets .cs-gain {
    display: inline;
    margin-left: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--cs-accent-deep);
    font-size: 12.5px;
    font-weight: 600;
  }

  /* 里程碑改成普通时间清单，不再用描边圆点和轨道。 */
  .case-page.is-product-sheets .cs-timeline::before,
  .case-page.is-product-sheets .cs-timeline-line,
  .case-page.is-product-sheets .cs-ms-dot { display: none; }
  .case-page.is-product-sheets .cs-ms { display: block; padding: 0; }
  .case-page.is-product-sheets .cs-ms + .cs-ms { margin-top: var(--ps-space-md); }
  .case-page.is-product-sheets .cs-ms-body h4 { margin-bottom: 6px; }

  .case-page.is-product-sheets .cs-lessons { display: grid; gap: var(--ps-content-gap); }
  .case-page.is-product-sheets .cs-lesson,
  .case-page.is-product-sheets .cs-lesson:first-child,
  .case-page.is-product-sheets .cs-lesson:last-child { padding: 0; }
  .case-page.is-product-sheets .cs-lesson h3 { margin-bottom: 8px; }
  .case-page.is-product-sheets .cs-deliver-l { font-size: 12.5px; line-height: 1.5; }

  /* 触屏反馈不依赖卡片底色，只用轻微位移和透明度。 */
  .case-page.is-product-sheets :is(.cs-flip, .cs-figure, .cs-sheet, .cs-swatch) {
    -webkit-tap-highlight-color: transparent;
  }
  .case-page.is-product-sheets .cs-flip,
  .case-page.is-product-sheets .cs-figure img,
  .case-page.is-product-sheets .cs-sheet {
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }
  .case-page.is-product-sheets .cs-flip:active { transform: scale(.985); }
  .case-page.is-product-sheets .cs-figure:active img,
  .case-page.is-product-sheets .cs-sheet:active { transform: scale(.975); opacity: .72; }
  .case-page.is-product-sheets .cs-swatch:active { transform: translateY(-2px) scale(.9); }
}

/* ============================================================
   《昂楷视界》v104：五章叙事与统一编辑语法
   不用卡片堆层级；首屏由真实封面承担视觉主权，正文靠字号、留白、
   图像比例和少量红色建立节奏。
   ============================================================ */
.case-page.is-editorial .cs-hero {
  min-height: 0;
  padding: clamp(132px, 11vw, 176px) var(--gutter) clamp(62px, 7vw, 92px);
}
.case-page.is-editorial .cs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 5vw, 68px);
  width: 100%;
  max-width: 1180px;
}
.case-page.is-editorial .cs-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
.case-page.is-editorial .cs-hero-title {
  max-width: none;
  font-size: clamp(42px, 5.4vw, 68px);
}
.case-page.is-editorial .cs-hero-sub {
  max-width: 52em;
  margin-right: auto;
  margin-left: auto;
}
.case-page.is-editorial .cs-tags { justify-content: center; gap: 10px 20px; }
.case-page.is-editorial .cs-tag {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  color: rgba(251, 251, 244, .58);
}
.case-page.is-editorial .cs-tag:not(:last-child)::after {
  position: absolute;
  right: -12px;
  color: rgba(251, 251, 244, .24);
  content: "·";
}
.case-page.is-editorial .cs-hero-books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 2vw, 26px);
  width: min(1180px, 100%);
  margin: 0 auto;
}
.case-page.is-editorial .cs-hero-book {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: none;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s var(--ease);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,.5), 0 26px 60px rgba(0,0,0,.42);
}
.case-page.is-editorial .cs-hero-book::after {
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(2,2,2,.72));
  pointer-events: none;
}
.case-page.is-editorial .cs-hero-book img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .42));
}
.case-page.is-editorial .cs-hero-book:hover { transform: translateY(-10px); filter: brightness(1.05); }
.case-page.is-editorial .cs-hero-book:hover .cs-journal-badge {
  background: var(--cs-accent);
  color: #fff;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 10px 26px rgb(var(--cs-accent-rgb) / .5);
}
.case-page.is-editorial .cs-hero-book:hover .cs-journal-badge span { opacity: .8; }
.case-page.is-editorial .cs-hero-book:focus-visible {
  outline: 2px solid var(--cs-accent-lift);
  outline-offset: 8px;
}
.case-page.is-editorial .cs-hero-books-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center;
  color: rgba(251, 251, 244, .42);
}

.case-page.is-editorial .cs-body > .cs-section {
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 118px);
}
.case-page.is-editorial .cs-body > .cs-section + .cs-section { padding-top: clamp(82px, 8vw, 118px); }

/* 01：问题与行动是一张信息映射图，而不是八张文字卡。 */
.case-page.is-editorial .cs-map-list { margin-top: clamp(42px, 5vw, 68px); }
.case-page.is-editorial .cs-map-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(76px, 8vw, 118px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-top: 1px solid var(--cs-hair);
}
.case-page.is-editorial .cs-map-row:last-child { border-bottom: 1px solid var(--cs-hair); }
.case-page.is-editorial .cs-map-row small,
.case-page.is-editorial .cs-delivery-notes small {
  display: block;
  margin-bottom: 9px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--cs-accent-deep);
  text-transform: uppercase;
}
.case-page.is-editorial .cs-map-row h3,
.case-page.is-editorial .cs-delivery-notes h3 {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-map-row p,
.case-page.is-editorial .cs-delivery-notes p {
  margin: 8px 0 0;
  font-family: var(--f-cjk);
  font-size: 16px;
  line-height: 1.72;
  color: var(--cs-ink-2);
}
.case-page.is-editorial .cs-map-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-map-link span {
  height: 1px;
  background: var(--cs-hair);
  transition: background .3s var(--ease);
}
.case-page.is-editorial .cs-map-link i {
  margin-left: 8px;
  font-family: var(--f-body);
  font-size: 18px;
  font-style: normal;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.case-page.is-editorial .cs-map-row:hover .cs-map-link span { background: var(--cs-accent); }
.case-page.is-editorial .cs-map-row:hover .cs-map-link i { color: var(--cs-accent); transform: translateX(4px); }
.case-page.is-editorial .cs-map-row:hover .cs-map-action h3 { color: var(--cs-accent-deep); }

/* 02：受众、七个研究模块和图书馆证据只保留一条内容流。 */
.case-page.is-editorial .cs-audience-stage { display: block; }
.case-page.is-editorial .cs-audience-pin { overflow: visible; }
.case-page.is-editorial .cs-audience-pin .cs-facets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}
.case-page.is-editorial .cs-research-method { margin-top: clamp(72px, 8vw, 112px); }
.case-page.is-editorial .cs-research-intro {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.case-page.is-editorial .cs-research-intro h3 {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.28;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-research-intro p {
  max-width: 42em;
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 17px;
  line-height: 1.82;
  color: var(--cs-ink-2);
}
.case-page.is-editorial .cs-flow.is-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(36px, 4vw, 52px);
}
.case-page.is-editorial .cs-flow.is-steps .cs-flow-step {
  min-width: 0;
  padding: 0 10px;
  border: 0;
  border-left: 1px solid var(--cs-hair);
  border-radius: 0;
  background: transparent;
  text-align: left;
}
.case-page.is-editorial .cs-flow.is-steps .cs-flow-step:last-child { border-right: 1px solid var(--cs-hair); }
.case-page.is-editorial .cs-flow.is-steps b { font-size: 14px; line-height: 1.45; }
.case-page.is-editorial .cs-flow.is-steps b i { margin-bottom: 8px; font-size: 11px; color: var(--cs-accent-deep); }
.case-page.is-editorial .cs-research-method .cs-docs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 5vw, 68px);
}
.case-page.is-editorial .cs-research-method .cs-doc { overflow: visible; }
.case-page.is-editorial .cs-research-method .cs-doc-cap {
  padding: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-research-method .cs-doc-cap b {
  display: block;
  margin-bottom: 2px;
  color: var(--cs-ink);
  font-size: 15px;
}

/* 03：给五个面板统一补上锚点；封面与封底始终完整显示。 */
.case-page.is-editorial .is-system-lab .cs-panel::before {
  position: static;
  display: block;
  grid-column: 1 / -1;
  width: auto;
  height: auto;
  margin: 0 0 -8px;
  padding: 0;
  background: transparent;
  content: attr(data-panel-label);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .14em;
  color: var(--cs-accent-deep);
  opacity: 1;
  transform: none;
}
.case-page.is-editorial .is-system-lab .is-mobile-cover .cs-figure {
  aspect-ratio: 922 / 1217;
  background: var(--cs-paper-2);
}
.case-page.is-editorial .is-system-lab .is-mobile-cover .cs-figure img { object-fit: contain; }

/* 04：成果、生产过程与实物照片合并成同一个落地高潮。 */
.case-page.is-editorial .is-delivery { max-width: var(--cs-max); }
.case-page.is-editorial .cs-delivery-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(44px, 5vw, 68px);
}
.case-page.is-editorial .cs-delivery-metrics strong {
  display: flex;
  align-items: baseline;
  color: var(--cs-accent-deep);
  font-family: var(--f-heading);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}
.case-page.is-editorial .cs-delivery-metrics small {
  margin-left: 5px;
  font-family: var(--f-cjk);
  font-size: .28em;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-delivery-metrics p {
  margin: 11px 0 0;
  font-family: var(--f-cjk);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cs-ink-3);
}
.case-page.is-editorial .cs-delivery-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(62px, 7vw, 100px);
}
.case-page.is-editorial .cs-delivery-photo {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.case-page.is-editorial .cs-delivery-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .7s var(--ease);
}
.case-page.is-editorial .cs-delivery-photo:hover img { transform: scale(1.018); }
.case-page.is-editorial .cs-delivery-photo > span {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 24px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, .76), transparent);
  text-align: left;
  color: #fff;
}
.case-page.is-editorial .cs-delivery-photo b,
.case-page.is-editorial .cs-delivery-photo small { display: block; font-family: var(--f-cjk); }
.case-page.is-editorial .cs-delivery-photo b { font-size: 22px; line-height: 1.35; }
.case-page.is-editorial .cs-delivery-photo small { margin-top: 4px; font-size: 12px; color: rgba(255, 255, 255, .66); }
.case-page.is-editorial .cs-delivery-notes { display: grid; gap: clamp(34px, 4vw, 52px); }
.case-page.is-editorial .cs-delivery-notes article { padding: 0; border: 0; background: transparent; }
.case-page.is-editorial .cs-delivery-notes h3 { font-size: clamp(22px, 2.2vw, 30px); }
.case-page.is-editorial .cs-review-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 520px);
  margin-top: 22px;
}
.case-page.is-editorial .cs-review-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
}
.case-page.is-editorial .cs-review-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.case-page.is-editorial .cs-review-shot span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  background: rgba(2, 2, 2, .72);
  font-family: var(--f-cjk);
  font-size: 10px;
  line-height: 1;
  color: #fff;
}
.case-page.is-editorial .cs-review-shot:hover img { transform: scale(1.025); opacity: .92; }
.case-page.is-editorial .cs-review-shot:focus-visible {
  outline: 2px solid var(--cs-accent-deep);
  outline-offset: 3px;
}
.case-page.is-editorial .cs-delivery-reveal {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* 05：三条结论直接露出，不再把最重要的话藏进手风琴。 */
.case-page.is-editorial .is-reflection { padding-bottom: clamp(110px, 12vw, 170px); }
.case-page.is-editorial .cs-reflection-list {
  display: grid;
  gap: clamp(52px, 7vw, 92px);
  margin-top: clamp(52px, 6vw, 82px);
}
.case-page.is-editorial .cs-reflection-list article {
  display: grid;
  grid-template-columns: 70px minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.case-page.is-editorial .cs-reflection-list span {
  font-family: var(--f-heading);
  font-size: 20px;
  line-height: 1.4;
  color: var(--cs-accent-deep);
}
.case-page.is-editorial .cs-reflection-list h3 {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--cs-ink);
}
.case-page.is-editorial .cs-reflection-list p {
  max-width: 38em;
  margin: 2px 0 0;
  font-family: var(--f-cjk);
  font-size: 17px;
  line-height: 1.82;
  color: var(--cs-ink-2);
}

@media (max-width: 980px) and (min-width: 769px) {
  .case-page.is-editorial .cs-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 46px; }
  .case-page.is-editorial .cs-hero-books { width: min(720px, 100%); }
  .case-page.is-editorial .cs-map-row { grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr); }
  .case-page.is-editorial .cs-flow.is-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 0; }
  .case-page.is-editorial .cs-delivery-main { grid-template-columns: 1fr 1fr; }
  .case-page.is-editorial .cs-reflection-list article { grid-template-columns: 52px minmax(0, 1fr); }
  .case-page.is-editorial .cs-reflection-list p { grid-column: 2; }
}

@media (max-width: 768px) {
  .case-page.is-editorial .cs-hero {
    min-height: 0;
    padding: 108px var(--gutter) 50px;
  }
  .case-page.is-editorial .cs-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-page.is-editorial .cs-hero-copy { text-align: left; }
  .case-page.is-editorial .cs-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .16em;
  }
  .case-page.is-editorial .cs-hero-title {
    max-width: none;
    margin-bottom: 12px;
    font-size: 29px;
  }
  .case-page.is-editorial .cs-hero-sub {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.68;
  }
  .case-page.is-editorial .cs-hero .cs-tags { display: none; }
  .case-page.is-editorial .cs-hero-books { width: 100%; gap: 8px; }
  .case-page.is-editorial .cs-hero-book {
    width: 100%;
  }
  .case-page.is-editorial .cs-hero-book:hover { transform: none; }
  .case-page.is-editorial .cs-hero-books-hint { margin-top: 2px; font-size: 10px; }

  .case-page.is-editorial .cs-body > .cs-section,
  .case-page.is-editorial .cs-body > .cs-section + .cs-section {
    padding-top: 72px;
    padding-bottom: 0;
  }

  .case-page.is-editorial .cs-map-list { margin-top: 30px; }
  .case-page.is-editorial .cs-map-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .case-page.is-editorial .cs-map-row h3 { font-size: 19px; }
  .case-page.is-editorial .cs-map-row p { margin-top: 5px; font-size: 14px; line-height: 1.65; }
  .case-page.is-editorial .cs-map-link {
    grid-template-columns: 28px auto;
    justify-content: start;
    width: 54px;
    transform: rotate(90deg);
    transform-origin: 16px 50%;
  }

  .case-page.is-editorial .cs-audience-pin { overflow-x: auto; }
  .case-page.is-editorial .cs-audience-pin .cs-facets {
    display: flex;
    grid-template-columns: none;
    margin-top: var(--cs-mobile-content-gap);
  }
  .case-page.is-editorial .cs-research-method { margin-top: 72px; }
  .case-page.is-editorial .cs-research-intro { grid-template-columns: 1fr; gap: 14px; }
  .case-page.is-editorial .cs-research-intro h3 { font-size: 23px; }
  .case-page.is-editorial .cs-research-intro p { font-size: 14.5px; line-height: 1.72; }
  .case-page.is-editorial .cs-flow.is-steps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
    margin-top: 30px;
  }
  .case-page.is-editorial .cs-flow.is-steps .cs-flow-step,
  .case-page.is-editorial .cs-flow.is-steps .cs-flow-step:last-child {
    padding: 0;
    border: 0;
  }
  .case-page.is-editorial .cs-flow.is-steps b { font-size: 14px; }
  .case-page.is-editorial .cs-flow.is-steps b i { margin-bottom: 5px; }
  .case-page.is-editorial .cs-research-method .cs-docs {
    display: flex !important;
    grid-template-columns: none !important;
    width: calc(100% + 2 * var(--gutter));
    margin: 34px calc(var(--gutter) * -1) 0;
    padding: 0 var(--gutter);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .case-page.is-editorial .cs-research-method .cs-docs::-webkit-scrollbar { display: none; }
  .case-page.is-editorial .cs-research-method .cs-doc {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .case-page.is-editorial .is-system-lab .cs-panel::before {
    margin-bottom: 0;
    font-size: 10px;
  }
  .case-page.is-editorial .is-system-lab .cs-panel { gap: 16px; padding: 34px 0; }
  .case-page.is-editorial .is-system-lab .is-mobile-cover .cs-panel-fig {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .case-page.is-editorial .is-system-lab .cs-pagedemo { max-width: 220px; margin-inline: auto; }
  .case-page.is-editorial .is-system-lab .cs-pd-stage { width: 180px; }
  .case-page.is-editorial .is-system-lab .cs-pd-ctrl { gap: 7px; }
  .case-page.is-editorial .is-system-lab .cs-pd-ctrl button { padding: 7px 9px; font-size: 11px; }

  .case-page.is-editorial .cs-delivery-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
    margin-top: 34px;
  }
  .case-page.is-editorial .cs-delivery-metrics strong { font-size: 42px; }
  .case-page.is-editorial .cs-delivery-metrics p { margin-top: 7px; font-size: 13px; }
  .case-page.is-editorial .cs-delivery-main {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }
  .case-page.is-editorial .cs-delivery-photo { max-width: 420px; }
  .case-page.is-editorial .cs-delivery-photo b { font-size: 18px; }
  .case-page.is-editorial .cs-delivery-notes { gap: 34px; }
  .case-page.is-editorial .cs-delivery-notes h3 { font-size: 20px; }
  .case-page.is-editorial .cs-delivery-notes p { font-size: 14px; line-height: 1.68; }
  .case-page.is-editorial .cs-review-evidence { gap: 8px; margin-top: 18px; }
  .case-page.is-editorial .cs-review-shot span { right: 5px; bottom: 5px; padding: 4px 6px; font-size: 9px; }
  .case-page.is-editorial .cs-delivery-reveal { margin-top: 64px; }
  .case-page.is-editorial .cs-delivery-reveal.is-mobile-scrub,
  .case-page.is-editorial .cs-delivery-reveal.is-mobile-scrub > .cs-reveal {
    height: auto;
    min-height: 0;
  }
  .case-page.is-editorial .cs-delivery-reveal .cs-reveal { aspect-ratio: 16 / 9; }

  .case-page.is-editorial .is-reflection { padding-bottom: 96px !important; }
  .case-page.is-editorial .cs-reflection-list { gap: 52px; margin-top: 40px; }
  .case-page.is-editorial .cs-reflection-list article { grid-template-columns: 1fr; gap: 10px; }
  .case-page.is-editorial .cs-reflection-list span { font-size: 14px; }
  .case-page.is-editorial .cs-reflection-list h3 { font-size: 25px; line-height: 1.34; }
  .case-page.is-editorial .cs-reflection-list p { margin-top: 0; font-size: 15px; line-height: 1.75; }
}

@media (prefers-reduced-motion: reduce) {
  .case-page.is-editorial .cs-hero-book,
  .case-page.is-editorial .cs-delivery-photo img,
  .case-page.is-editorial .cs-map-link i { transition: none; }
}

/* 文化墙的两张证据：一张横向线稿、一张竖向聊天截图。
   板块默认 4:3 + object-fit:cover，竖图会被裁掉大半只剩中间一条。
   这里改成整张放进去，白底衬着，看图纸和看截图都不缺内容。 */
.case-page.is-culture .cs-doc-fig { aspect-ratio: 4 / 3; background: #fff; }
.case-page.is-culture .cs-doc-fig img { height: 100%; object-fit: contain; }

/* ════════════════════════════════════════════════════════════
   文化墙 / 展厅案例专用：会亮起来的展厅
   ════════════════════════════════════════════════════════════
   这一页讲的是空间，不能只靠文字排版。首屏是一个黑着的展厅轮廓，
   随滚动一面墙一面墙地把灯箱点亮，最后地面氛围灯亮起。
   亮到第几盏由 JS 在 .cs-hall-room 上写 data-lit="0..7"，
   过渡全部交给 CSS——不用 GSAP 逐个补间，滚动再快也不会失步。
   将来接 Three.js：把 .cs-hall-frame 里那层 .cs-hall-art 换成
   <canvas> 或渲染图即可，点亮时序不用动。
   ──────────────────────────────────────────────────────────── */
.cs-hall {
  position: relative;
  height: 200vh;                 /* 滚动行程：够把七级灯依次点完，又不留长尾空转 */
  background: #020202;
}
.cs-hall-view {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  align-content: start;
  justify-items: center;
  padding-top: clamp(92px, 13vh, 148px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 62% 52% at 50% 66%, #12141a 0%, #020202 72%);
}

/* 文字在上、展厅在下，两块不重叠——标题压在灯箱标签上时两边都读不清 */
.cs-hall-room {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  padding-bottom: clamp(74px, 13vh, 132px);   /* 给地面网格留出位置，灯箱才像站在地上 */
}
.cs-hall-scene {
  position: relative;
  width: min(1180px, 88vw);
  height: min(340px, 36vh);
  transform: rotateX(5deg);
  transform-style: preserve-3d;
}

/* 地面网格：一开始几乎看不见，灯亮起来才浮出 */
.cs-hall-floor {
  position: absolute;
  bottom: -6%;
  left: 50%;
  width: 132%;
  height: 62%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .07;
  transform: translateX(-50%) perspective(620px) rotateX(68deg);
  transform-origin: bottom center;
  transition: opacity 1.1s var(--ease);
}
[data-lit="1"] .cs-hall-floor { opacity: .16; }
[data-lit="2"] .cs-hall-floor,
[data-lit="3"] .cs-hall-floor { opacity: .2; }
[data-lit="4"] .cs-hall-floor,
[data-lit="5"] .cs-hall-floor { opacity: .26; }
[data-lit="6"] .cs-hall-floor,
[data-lit="7"] .cs-hall-floor { opacity: .34; }

/* 灯箱：五块，按 data-lit 依次点亮 */
.cs-hall-frames {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 30px);
  padding-bottom: 8%;
}
.cs-hall-frame {
  position: relative;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(251, 251, 244, .1);
  background: rgba(251, 251, 244, .015);
  opacity: .3;
  transition:
    opacity 1s var(--ease),
    border-color 1s var(--ease),
    background 1s var(--ease),
    box-shadow 1.2s var(--ease),
    transform 1s var(--ease);
}
/* 从左到右就是展厅里的真实次序：西墙灯光柜 → 背墙三块 → 东墙。
   高矮宽窄按各自的形态给：灯光柜落地最高，荣誉墙最宽。 */
.cs-hall-frame:nth-child(1) { width: 14%; height: 74%; }
.cs-hall-frame:nth-child(2) { width: 21%; height: 60%; }
.cs-hall-frame:nth-child(3) { width: 24%; height: 68%; }
.cs-hall-frame:nth-child(4) { width: 21%; height: 60%; }
.cs-hall-frame:nth-child(5) { width: 14%; height: 64%; }

/* 灯箱里那层「内容」——现在是抽象的发光面，
   将来换成渲染图 / 现场照，只要塞一个 <img> 进来即可 */
.cs-hall-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(140, 164, 255, .1), rgba(140, 164, 255, 0) 62%);
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.cs-hall-frame b {
  position: relative;
  font-family: var(--f-cjk);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(251, 251, 244, .3);
  transition: color 1s var(--ease);
}
.cs-hall-frame small {
  position: relative;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(251, 251, 244, .18);
  transition: color 1s var(--ease);
}

.cs-hall-frame.is-on {
  opacity: 1;
  border-color: rgba(140, 164, 255, .55);
  background: rgba(140, 164, 255, .05);
  box-shadow:
    0 0 44px rgba(66, 101, 245, .3),
    inset 0 0 34px rgba(140, 164, 255, .09);
  transform: translateY(-5px);
}
.cs-hall-frame.is-on .cs-hall-art { opacity: 1; }
.cs-hall-frame.is-on b { color: #dfe6ff; }
.cs-hall-frame.is-on small { color: rgba(140, 164, 255, .72); }

/* 地面光晕：最后一步的氛围灯 */
.cs-hall-pools { position: absolute; inset: 0; pointer-events: none; }
.cs-hall-pool {
  position: absolute;
  bottom: 4%;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}
.cs-hall-pool:nth-child(1) { left: 12%; width: 210px; height: 116px; background: rgba(66, 101, 245, .5); }
.cs-hall-pool:nth-child(2) { left: 42%; width: 250px; height: 130px; background: rgba(140, 164, 255, .42); }
.cs-hall-pool:nth-child(3) { right: 13%; width: 200px; height: 112px; background: rgba(66, 101, 245, .44); }
[data-lit="6"] .cs-hall-pool { opacity: .55; }
[data-lit="7"] .cs-hall-pool { opacity: 1; }

/* 首屏文字压在展厅之上 */
.cs-hall-copy {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 var(--gutter);
  text-align: center;
  pointer-events: none;
}
.cs-hall-copy h1 {
  margin: 16px 0 0;
  font-family: var(--f-cjk);
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #fbfbf4;
}
.cs-hall-copy h1 em { font-style: normal; color: var(--cs-accent-lift); }
.cs-hall-copy p {
  max-width: 34em;
  margin: 22px auto 0;
  font-family: var(--f-cjk);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
  color: rgba(251, 251, 244, .6);
}
.cs-hall-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.cs-hall-tags span {
  padding: 7px 15px;
  border: 1px solid rgba(251, 251, 244, .17);
  border-radius: 100px;
  font-family: var(--f-cjk);
  font-size: 12.5px;
  color: rgba(251, 251, 244, .66);
}

.cs-hall-cue {
  position: absolute;
  bottom: clamp(24px, 4vh, 44px);
  left: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 11px;
  transform: translateX(-50%);
  pointer-events: none;
}
.cs-hall-cue span {
  font-family: var(--f-cjk);
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(251, 251, 244, .5);
  transition: color .6s var(--ease);
}
.cs-hall-cue i {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--cs-accent-lift), transparent);
  animation: cs-beam 2.1s ease-in-out infinite;
}
@keyframes cs-beam {
  0%, 100% { opacity: .3; transform: scaleY(.78); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);   transform-origin: top; }
}
[data-lit="7"] ~ .cs-hall-cue i { opacity: 0; }

/* ── 展厅轴测图：点编号或图例，看对应展位 ── */
.cs-axo {
  margin-top: clamp(34px, 4vw, 54px);
  border: 1px solid var(--cs-hair);
  border-radius: clamp(10px, 1vw, 14px);
  overflow: hidden;
  background: linear-gradient(180deg, #0b0d12, #05070a);
}
.cs-axo-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 17px 24px;
  border-bottom: 1px solid rgba(251, 251, 244, .1);
}
.cs-axo-head b {
  font-family: var(--f-cjk);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(251, 251, 244, .78);
}
.cs-axo-head small {
  font-family: var(--f-cjk);
  font-size: 12px;
  color: rgba(140, 164, 255, .8);
}
.cs-axo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .95fr);
}
.cs-axo-canvas {
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.4vw, 34px);
  border-right: 1px solid rgba(251, 251, 244, .1);
}
/* 轴测 SVG 已经退役：那张手算的等轴测画的是第一版（内容全在一面背墙上）。
   最终布局是四面墙都有内容的房间，与其再手算一张 SVG，不如直接用
   用户画的那张平面图——按构造就是对的，热区是覆在图上的按钮。 */
.cs-axo-canvas { --axo-ar: 16 / 10; }
.cs-axo-plan {
  position: relative;
  width: 100%;
  max-width: 660px;
  /* 和 .cs-room 同宽同比例：3D 顶掉平面图时文档高度不跳 */
  aspect-ratio: var(--axo-ar);
}
.cs-axo-plan img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  /* 线稿是黑线白底，这一节是深色的，反相之后才融得进去 */
  filter: invert(1) hue-rotate(180deg) brightness(.92) contrast(1.05);
}
.cs-axo-zone {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid rgba(251, 251, 244, .26);
  border-radius: 3px;
  background: rgb(251 251 244 / .05);
  cursor: pointer;
  transition: background .38s var(--ease), border-color .38s var(--ease),
              box-shadow .38s var(--ease);
}
.cs-axo-zone i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.4px solid var(--cs-accent-lift);
  background: #05070a;
  font-family: var(--f-body);
  font-size: 11px;
  font-style: normal;
  color: var(--cs-accent-lift);
  transition: background .38s var(--ease), color .38s var(--ease);
}
.cs-axo-zone.is-on {
  border-color: var(--cs-accent-lift);
  background: rgb(var(--cs-accent-rgb) / .34);
  box-shadow: 0 0 0 1px rgb(var(--cs-accent-rgb) / .3), 0 0 22px rgb(var(--cs-accent-rgb) / .3);
}
.cs-axo-zone.is-on i { background: var(--cs-accent-lift); color: #05070a; }
.cs-axo-zone:focus-visible { outline: 2px solid var(--cs-accent-lift); outline-offset: 2px; }

.cs-axo-info {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 40px);
}
.cs-axo-info-idx {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cs-accent-lift);
}
.cs-axo-info h3 {
  margin: 13px 0 0;
  font-family: var(--f-cjk);
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 600;
  line-height: 1.3;
  color: #fbfbf4;
}
.cs-axo-info p {
  margin: 14px 0 0;
  font-family: var(--f-cjk);
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(251, 251, 244, .6);
}
.cs-axo-info dl {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 251, 244, .12);
}
.cs-axo-info dl div { display: flex; gap: 12px; }
.cs-axo-info dt {
  flex: 0 0 74px;
  font-family: var(--f-cjk);
  font-size: 12px;
  color: rgba(251, 251, 244, .38);
}
.cs-axo-info dd {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(251, 251, 244, .78);
}

.cs-axo-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 18px;
  padding: 16px 24px;
  border-top: 1px solid rgba(251, 251, 244, .1);
}
.cs-axo-leg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--f-cjk);
  font-size: 12.5px;
  text-align: left;
  color: rgba(251, 251, 244, .52);
  transition: color .3s var(--ease);
}
.cs-axo-leg i {
  display: grid;
  flex: 0 0 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 10px;
  font-style: normal;
}
.cs-axo-leg:hover,
.cs-axo-leg.is-on { color: var(--cs-accent-lift); }

@media (max-width: 900px) {
  .cs-axo-stage { grid-template-columns: minmax(0, 1fr); }
  .cs-axo-canvas { border-right: 0; border-bottom: 1px solid rgba(251, 251, 244, .1); }
  .cs-axo-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .cs-hall { height: 190vh; }
  .cs-hall-scene { width: 92vw; height: 46vh; }
  .cs-hall-frames { gap: 7px; padding-bottom: 6%; }
  .cs-hall-frame { padding: 9px; }
  .cs-hall-frame small { display: none; }
  .cs-hall-frame b { font-size: 10px; }
  .cs-hall-copy h1 { font-size: 34px; }
  .cs-hall-copy p { margin-top: 16px; font-size: 14.5px; line-height: 1.78; }
  .cs-hall-tags { margin-top: 20px; }
  .cs-hall-tags span { padding: 6px 12px; font-size: 11.5px; }
  .cs-axo-head { padding: 14px 16px; }
  .cs-axo-legend { padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-hall { height: auto; }
  .cs-hall-view { position: relative; }
  .cs-hall-frame { opacity: 1; }
  .cs-hall-cue i { animation: none; }
}

/* 待补图位：结构和 .cs-doc 一样，但不是按钮（还没有图可以放大）。
   写清将来放什么、文件放哪，方便以后直接替换成 <img>。 */
.cs-doc.is-slot {
  border-style: dashed;
  background: transparent;
  cursor: default;
}
.cs-doc.is-slot:hover { transform: none; box-shadow: none; }
.cs-doc.is-slot .cs-doc-fig { background: rgb(var(--cs-accent-rgb) / .04); }
.cs-doc-empty small {
  display: block;
  margin-top: 7px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--cs-ink-3);
  opacity: .8;
}
.cs-note {
  max-width: 44em;
  margin: 22px 0 0;
  font-family: var(--f-cjk);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--cs-ink-3);
}
.cs-note code {
  padding: 2px 6px;
  border-radius: 3px;
  background: rgb(var(--cs-accent-rgb) / .08);
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--cs-accent-deep);
}

/* ── 展厅 3D：起得来就顶掉轴测 SVG，起不来 SVG 原地兜底 ── */
.cs-room {
  position: relative;
  display: none;
  width: 100%;
  max-width: 660px;
  aspect-ratio: var(--axo-ar, 16 / 10);
  border-radius: 8px;
  overflow: hidden;
  background: #05070a;
  cursor: grab;
}
.cs-axo.is-3d .cs-room { display: block; }
.cs-axo.is-3d .cs-axo-plan { display: none; }
.cs-axo.is-dragging .cs-room { cursor: grabbing; }
.cs-room canvas { display: block; width: 100%; height: 100%; }
.cs-axo.is-3d .cs-axo-canvas { padding: clamp(12px, 1.4vw, 20px); }

.cs-room-ui {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 7px;
}
.cs-room-ui button {
  padding: 7px 13px;
  border: 1px solid rgba(251, 251, 244, .2);
  border-radius: 100px;
  background: rgba(5, 7, 10, .62);
  backdrop-filter: blur(6px);
  font-family: var(--f-cjk);
  font-size: 12px;
  color: rgba(251, 251, 244, .8);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.cs-room-ui button:hover,
.cs-room-ui button.is-on {
  border-color: var(--cs-accent-lift);
  background: rgb(var(--cs-accent-rgb) / .22);
  color: #fff;
}

.cs-room-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  margin: 0;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(5, 7, 10, .66);
  backdrop-filter: blur(6px);
  font-family: var(--f-cjk);
  font-size: 12px;
  color: rgba(251, 251, 244, .78);
  white-space: nowrap;
  transform: translateX(-50%);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.cs-room-hint.is-gone {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

@media (max-width: 900px) {
  .cs-axo-canvas { --axo-ar: 4 / 3; }
}
@media (max-width: 560px) {
  .cs-room-ui { top: 8px; right: 8px; }
  .cs-room-ui button { padding: 6px 10px; font-size: 11px; }
  .cs-room-hint { bottom: 8px; padding: 6px 12px; font-size: 11px; }
}

/* ── 单面墙 3D：把一张施工图按真实毫米立起来 ──
   壳子先用 aspect-ratio 把高度锁死，画布是后来才塞进去的，
   不锁的话首屏高度和加载完的高度对不上，ScrollTrigger 全歪。 */
.cs-wall {
  margin: clamp(26px, 3.4vw, 46px) 0 0;
}
.cs-wall-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: #05070a;
  cursor: grab;
  touch-action: pan-y;          /* 竖着划仍然是翻页，不抢滚动 */
}
.cs-wall-stage.is-dragging { cursor: grabbing; }
.cs-wall-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
/* 画布是后 append 的，同为定位元素时会盖住按钮——
   展厅那个查看器的画布是静态流内元素，没这问题，这里得显式抬一层 */
.cs-wall-stage .cs-room-ui,
.cs-wall-stage .cs-room-hint { z-index: 2; }
/* WebGL 起不来时这张实景照就是兜底；起来了就淡出让位 */
.cs-wall-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .9s var(--ease);
}
.cs-wall.is-3d .cs-wall-photo { opacity: 0; pointer-events: none; }

.cs-wall figcaption {
  max-width: 46em;
  margin: 0;
  padding-top: 14px;
  color: var(--cs-ink-2);
  font-family: var(--f-cjk);
  font-size: 14px;
  line-height: 1.76;
}
.cs-wall figcaption b {
  margin-right: .5em;
  color: var(--cs-ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .cs-wall-stage { aspect-ratio: 4 / 3; }
}

/* ── 动线平面图：图比目录页那张宽得多，右栏再挤就读不了 ── */
.cs-tocmap.is-route { grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr); }
.cs-tocmap.is-route .cs-prio { padding: 13px 15px; gap: 12px; }
.cs-tocmap.is-route .cs-prio h4 { font-size: 15px; }
.cs-tocmap.is-route .cs-prio p { font-size: 13px; line-height: 1.62; }
/* 线稿图压灰会糊成一团，罩子轻一点就够把亮区拎出来 */
.cs-tocmap.is-route .cs-tocmap-fig::after { background: rgba(2, 2, 2, .34); }
@media (max-width: 900px) {
  .cs-tocmap.is-route { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   效果图画廊 —— 图为主、字为辅
   面试官滚到这一屏时看的是画面，所以图给到接近正文满宽，
   说明压成一行贴在图下。.is-wide 占满两列，用来放主视觉。
════════════════════════════════════════════════════════════ */
.cs-renders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: 26px;
}
.cs-render { margin: 0; min-width: 0; }
.cs-render.is-wide { grid-column: 1 / -1; }

.cs-render-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--cs-hair);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cs-paper-2);
  position: relative;
  cursor: zoom-in;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cs-render-btn img { display: block; width: 100%; height: auto; }
.cs-render-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(2, 2, 2, .13); }
.cs-render-btn:focus-visible { outline: 2px solid var(--cs-accent); outline-offset: 3px; }

/* 编号角标：压在图上，不占版面高度 */
.cs-render-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 8px;
  border-radius: 100px;
  background: rgba(2, 2, 2, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fbfbf4;
  font-family: var(--f-cjk);
  font-size: 12.5px;
  line-height: 1;
  letter-spacing: .01em;
  pointer-events: none;
}
.cs-render-tag i {
  font-style: normal;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  color: var(--cs-accent-lift);
}

/* 放大提示：只在能 hover 的设备上出现 */
.cs-render-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(2, 2, 2, .58);
  color: #fbfbf4;
  opacity: 0;
  transform: scale(.86);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.cs-render-btn:hover .cs-render-zoom { opacity: 1; transform: scale(1); }

.cs-render figcaption {
  padding-top: 11px;
  font-family: var(--f-cjk);
  font-size: 14px;
  line-height: 1.72;
  color: var(--cs-ink-2);
}
.cs-render figcaption b {
  margin-right: .5em;
  color: var(--cs-ink);
  font-weight: 600;
}

/* 效果图与实景之间的小标：说清楚哪张是图、哪张是墙 */
.cs-shot-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 -6px;
  font-family: var(--f-cjk);
  font-size: 13px;
  color: var(--cs-ink-3);
}
.cs-shot-note::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cs-hair);
}
.cs-shot-note b {
  font-weight: 600;
  color: var(--cs-ink-2);
}

@media (hover: none) {
  .cs-render-btn:hover { transform: none; box-shadow: none; }
}
@media (max-width: 760px) {
  .cs-renders { grid-template-columns: 1fr; }
  .cs-render.is-wide { grid-column: auto; }
}

/* Culture wall — spatial story */
.space-story { display: flow-root; overflow: clip; }
.space-jump {
  position: sticky;
  top: 18px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto 112px;
  padding: 7px;
  border: 1px solid rgba(15, 20, 30, .1);
  border-radius: 18px;
  background: rgba(250, 249, 244, .86);
  box-shadow: 0 14px 40px rgba(17, 24, 39, .08);
  backdrop-filter: blur(18px);
}
.space-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 12px;
  color: var(--cs-ink-2);
  font-family: var(--f-cjk);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s, background .25s;
}
.space-jump a:hover { color: #274ee8; background: #fff; }
.space-jump span { color: #4166f5; font-size: 14px; }
.space-chapter { padding-top: 118px; padding-bottom: 0; scroll-margin-top: 70px; }
.space-heading { max-width: none; margin-bottom: 54px; }
.space-heading .cs-lede { max-width: none; }
.space-hero-figure, .space-cinema, .space-split figure, .space-card-gallery figure { margin: 0; }
.space-hero-figure .cs-render-btn,
.space-cinema .cs-render-btn { aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; background: #e7e8e8; }
.space-hero-figure img, .space-cinema img, .space-split img, .space-card-gallery img { width: 100%; height: 100%; object-fit: contain; }
.space-before-after { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border-radius: 6px; background: #dfe2e8; user-select: none; }
.space-compare-layer { position: absolute; inset: 0; overflow: hidden; }
.space-compare-layer img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.space-compare-layer.is-render { z-index: 2; clip-path: inset(0 calc(100% - var(--split)) 0 0); }
.space-compare-layer span { position: absolute; bottom: 22px; padding: 8px 13px; border-radius: 999px; background: rgba(5,11,25,.66); color: #fff; font: 600 14px/1 var(--f-cjk); backdrop-filter: blur(10px); }
.space-compare-layer.is-render span { left: 22px; }
.space-compare-layer.is-built span { right: 22px; }
.space-compare-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--split); width: 1px; background: rgba(255,255,255,.9); pointer-events: none; }
.space-compare-divider i { position: absolute; top: 50%; left: 50%; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.94); color: #111827; box-shadow: 0 8px 28px rgba(0,0,0,.18); font: normal 600 14px/1 var(--f-cjk); white-space: nowrap; transform: translate(-50%,-50%); }
.space-before-after input[type="range"] { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.space-image-index {
  position: absolute; left: 24px; bottom: 22px;
  padding: 9px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  color: #fff; background: rgba(6, 11, 22, .34); backdrop-filter: blur(12px);
  font: 14px/1 var(--f-sans); letter-spacing: .12em;
}
.space-judgement { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; background: var(--cs-hair); }
.space-judgement article { padding: 38px 42px 42px; background: var(--cs-paper); }
.space-judgement small, .space-mini-grid small, .space-wall-answer small, .space-cinema figcaption span {
  color: #4166f5; font: 600 14px/1.2 var(--f-cjk); letter-spacing: .08em;
}
.space-judgement h3 { max-width: 520px; margin: 18px 0 12px; font: 500 clamp(22px, 2vw, 31px)/1.28 var(--f-cjk); }
.space-judgement p, .space-split-copy > p, .space-mini-grid p, .space-cinema figcaption p, .space-card-gallery figcaption p { color: var(--cs-ink-2); font: 18px/1.78 var(--f-cjk); }

.space-wall-switcher { display: grid; grid-template-columns: 1fr; width: min(1400px, calc(100vw - 48px)); margin-left: 50%; background: #07101f; color: #fff; transform: translateX(-50%); }
.space-wall-media { position: relative; min-height: 0; align-self: start; aspect-ratio: 16 / 9; overflow: hidden; background: #07101f; }
.space-wall-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(7,16,31,.32)); pointer-events: none; }
.space-wall-media img { width: 100%; height: 100%; object-fit: contain; transition: opacity .24s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.space-wall-media.is-changing img { opacity: .25; transform: scale(1.018); }
.space-wall-media > span { position: absolute; z-index: 2; left: 28px; bottom: 25px; color: rgba(255,255,255,.72); font: 14px/1 var(--f-sans); letter-spacing: .14em; }
.space-wall-media > span { z-index: 5; pointer-events: none; }
.space-wall-media:not(.is-single) > span { top: 25px; bottom: auto; }
.space-wall-media .space-compare-divider { display: block; }
.space-wall-media input[type="range"] { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.space-wall-media:not(.is-single) .space-compare-layer img { object-fit: cover; }
.space-wall-media.is-single .space-compare-layer.is-built,
.space-wall-media.is-single .space-compare-divider,
.space-wall-media.is-single input[type="range"],
.space-wall-media.is-single .space-compare-layer span { display: none; }
.space-wall-media.is-single .space-compare-layer.is-render { clip-path: none; }
.space-wall-copy { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(38px, 5vw, 80px); padding: 32px 44px 44px; }
.space-wall-tabs { display: grid; gap: 2px; }
.space-wall-tabs button { position: relative; width: 100%; padding: 16px 0 16px 20px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); background: none; color: rgba(255,255,255,.46); text-align: left; font: 16px/1.35 var(--f-cjk); cursor: pointer; transition: color .25s, padding .25s; }
.space-wall-tabs button::before { content: ''; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; transform: translateY(-50%); }
.space-wall-tabs button.is-active { padding-left: 28px; color: var(--wall-accent, #86a1ff); }
.space-wall-tabs button.is-active::before { border-color: var(--wall-accent, #7594ff); background: var(--wall-accent, #7594ff); box-shadow: 0 0 0 5px color-mix(in srgb, var(--wall-accent, #7594ff) 18%, transparent); }
.space-wall-answer { margin-top: 0; padding-top: 0; }
.space-wall-answer h3 { margin: 15px 0 28px; font: 500 clamp(27px, 2.4vw, 42px)/1.2 var(--f-cjk); }
.space-wall-answer dl, .space-wall-answer dd { margin: 0; }
.space-wall-answer dl { display: grid; gap: 20px; }
.space-wall-answer dl div { display: grid; grid-template-columns: 108px 1fr; gap: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.space-wall-answer dt { color: rgba(255,255,255,.58); font: 600 16px/1.6 var(--f-cjk); }
.space-wall-answer dd { color: rgba(255,255,255,.86); font: 18px/1.75 var(--f-cjk); }

.space-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.space-split.is-reverse figure { order: 2; }
.space-split figure { overflow: hidden; background: #d9dde5; }
.space-split .cs-render-btn { height: auto; }
.space-split figure img { height: auto; object-fit: contain; }
.space-split-copy .cs-title { margin-top: 24px; }
.space-split-copy > p { margin: 28px 0 40px; }
.space-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 28px; border-top: 1px solid var(--cs-hair); }
.space-mini-grid p { margin: 11px 0 0; font-size: 16px; }
.space-cinema { position: relative; }
.space-cinema figcaption { position: absolute; right: 26px; bottom: 26px; width: min(390px, calc(100% - 52px)); padding: 26px 28px; background: rgba(250,249,244,.92); backdrop-filter: blur(16px); }
.space-cinema figcaption strong { display: block; margin: 12px 0 8px; color: var(--cs-ink); font: 500 23px/1.3 var(--f-cjk); }
.space-cinema figcaption p { margin: 0; font-size: 16px; }
.space-cinema.is-blue figcaption { background: rgba(5,13,28,.9); }
.space-cinema.is-blue figcaption strong { color: #fff; }
.space-cinema.is-blue figcaption p { color: rgba(255,255,255,.68); }
.space-card-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.space-card-gallery figure { transition: transform .35s ease; }
.space-card-gallery figure:hover { transform: translateY(-8px); }
.space-card-gallery .cs-render-btn { aspect-ratio: 16 / 9; overflow: hidden; background: #e7e8e8; }
.space-card-gallery img { object-fit: contain; }
.space-card-gallery .cs-render-btn span { position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(5,11,25,.66); color: #fff; font: 14px var(--f-sans); backdrop-filter: blur(10px); }
.space-card-gallery figcaption { padding: 20px 4px; }
.space-card-gallery figcaption strong { font: 500 21px/1.3 var(--f-cjk); }
.space-card-gallery figcaption p { margin: 7px 0 0; font-size: 16px; }

@media (max-width: 900px) {
  .space-jump { grid-template-columns: repeat(4, 1fr); }
  .space-wall-switcher { grid-template-columns: 1fr; }
  .space-wall-media { min-height: 0; }
  .space-wall-copy { grid-template-columns: 1fr; min-height: 0; }
  .space-wall-answer { padding-top: 12px; }
  .space-split { grid-template-columns: 1fr; }
  .space-split.is-reverse figure { order: initial; }
  .space-card-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .space-jump { position: relative; top: auto; display: flex; justify-content: flex-start; width: calc(100% - 28px); margin-bottom: 42px; overflow-x: auto; }
  .space-jump a { flex: 0 0 auto; padding: 0 13px; }
  .space-chapter { padding-top: 70px; padding-bottom: 0; }
  .space-heading { margin-bottom: 34px; }
  .space-mini-grid { grid-template-columns: 1fr; }
  .space-judgement article { padding: 28px 24px 31px; }
  .space-wall-switcher { width: auto; margin-inline: -18px; transform: none; }
  .space-wall-media { min-height: 0; }
  .space-wall-copy { min-height: 0; padding: 22px 22px 30px; }
  .space-wall-answer dl div { grid-template-columns: 1fr; gap: 7px; }
  .space-wall-tabs button { min-height: 44px; border: 1px solid rgba(255,255,255,.12); }
  .space-wall-tabs button.is-active { background: rgba(255,255,255,.08); }
  .space-wall-tabs button::before { left: 10px; }
  .space-cinema figcaption { position: relative; right: auto; bottom: auto; width: auto; padding: 24px 0 0; background: none; backdrop-filter: none; }
  .space-cinema.is-blue figcaption { padding: 24px; background: #07101f; }
  .space-card-gallery .cs-render-btn { aspect-ratio: 16 / 10; }
  .space-before-after { aspect-ratio: 4 / 3; }
  .space-compare-layer span { bottom: 14px; }
  .space-compare-layer.is-render span { left: 14px; }
  .space-compare-layer.is-built span { right: 14px; }
}

/* Culture wall — project evidence and delivery */
.case-page.is-culture .cs-num { font-size: 14px; }
.case-page.is-culture .cs-render figcaption { font-size: 16px; }
.case-page.is-culture .cs-shot-note { font-size: 14px; }
.case-page.is-culture .space-story > .space-chapter { width: min(100%, calc(1400px + var(--gutter) + var(--gutter))); max-width: none; }
.case-page.is-culture .space-brief { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px,8vw,120px); width: min(1400px, calc(100% - 48px)); margin: 92px auto 55px; padding: 56px 0; border-top: 1px solid var(--cs-hair); background: transparent !important; color: var(--cs-ink); }
.space-brief small { color: #7896ff; font: 14px var(--f-sans); letter-spacing: .14em; }
.space-brief h2 { margin: 18px 0 24px; font: 500 clamp(27px,3vw,46px)/1.18 var(--f-cjk); }
.space-brief p { margin: 0; color: var(--cs-ink-2); font: 18px/1.82 var(--f-cjk); }
.space-brief dl { margin: 0; }
.space-brief dl div { display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--cs-hair); }
.space-brief dl div:last-child { border-bottom: 0; }
.space-brief dt { color: #000; font: 600 18px/1.65 var(--f-cjk); }.space-brief dd { margin: 0; color: var(--cs-ink-3); font: 16px/1.65 var(--f-cjk); }
.case-page.is-culture main section.space-constraint { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr); gap: clamp(56px, 8vw, 120px); width: min(1400px, calc(100% - 48px)); margin: 0 auto 96px; padding: clamp(48px, 6vw, 82px); background: #0d121b !important; color: #f5f3ec; }
.space-constraint small { color: rgba(255,255,255,.58); font: 14px var(--f-sans); letter-spacing: .2em; }
.space-constraint h2 { max-width: 720px; margin: 24px 0 26px; font: 500 clamp(30px, 3.4vw, 54px)/1.16 var(--f-cjk); }
.space-constraint h2 em { color: #f5f3ec; font-style: normal; }
.space-constraint-lead p { max-width: 760px; margin: 0; color: #fff; font: 18px/1.82 var(--f-cjk); }
.space-audiences { margin: 0; align-self: center; }
.space-audiences div { display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.space-audiences dt { color: #86a1ff; font: 600 18px/1.65 var(--f-cjk); }
.space-audiences dd { margin: 0; color: #fff; font: 16px/1.65 var(--f-cjk); }
.space-built-proof { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1px; margin-top: 54px; background: var(--cs-hair); }
.space-built-proof figure { margin: 0; min-height: 390px; background: #e7e8e8; }.space-built-proof .cs-render-btn { height: 100%; }.space-built-proof img { width: 100%; height: 100%; object-fit: contain; }
.space-built-proof > div { padding: clamp(35px,5vw,70px); background: #f0eee7; }
.space-built-proof small, .delivery-review > small { color: #3158ea; font: 14px var(--f-sans); letter-spacing: .14em; }
.space-built-proof h3 { margin: 18px 0; font: 500 clamp(24px,2.3vw,36px)/1.28 var(--f-cjk); }.space-built-proof p { color: var(--cs-ink-2); font: 18px/1.78 var(--f-cjk); }
.space-built-grid, .space-corridor-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.space-built-grid figure, .space-corridor-pair figure { margin: 0; }.space-built-grid .cs-render-btn, .space-corridor-pair .cs-render-btn { aspect-ratio: 16/10; overflow: hidden; }
.space-built-grid img, .space-corridor-pair img { width: 100%; height: 100%; object-fit: contain; background: #e7e8e8; }.space-built-grid figcaption, .space-corridor-pair figcaption { padding: 12px 2px; color: var(--cs-ink-3); font: 16px/1.6 var(--f-cjk); }
.delivery-rail-viewport { width: 100%; overflow: hidden; }
.delivery-rail { display: grid; grid-template-columns: repeat(7,1fr); border-top: 1px solid var(--cs-hair); border-bottom: 1px solid var(--cs-hair); }
.delivery-rail article { padding: 25px 18px 30px; border-right: 1px solid var(--cs-hair); }.delivery-rail article:last-child { border: 0; }
.delivery-rail i { color: #3158ea; font: normal 14px var(--f-sans); }.delivery-rail h3 { margin: 22px 0 12px; font: 600 18px/1.35 var(--f-cjk); }.delivery-rail p { margin: 0; color: var(--cs-ink-2); font: 16px/1.7 var(--f-cjk); }
@media (min-width: 901px) {
  .delivery-rail-viewport { position: relative; overflow: hidden; }
  .delivery-rail { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: calc(100% / 3.5); width: 100%; will-change: transform; }
  .delivery-rail { background: var(--cs-paper); }
  .delivery-rail article { min-height: 300px; }
}
.delivery-evidence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 64px; }
.delivery-evidence figure { display: grid; grid-template-rows: auto 1fr; margin: 0; }
.delivery-evidence .cs-render-btn { aspect-ratio: 4/3; overflow: hidden; background: #e8e5dc; }
.delivery-evidence img { width: 100%; height: 100%; object-fit: cover; }
.delivery-evidence figcaption { display: grid; grid-template-rows: 26px auto; align-content: start; min-height: 88px; padding: 15px 2px 0; color: var(--cs-ink-2); font: 16px/1.6 var(--f-cjk); }
.delivery-evidence b { display: block; color: var(--cs-ink); }
.delivery-evidence p { margin: 0; }
.delivery-decisions { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 65px; background: var(--cs-hair); }.delivery-decisions article { padding: 38px 34px; background: var(--cs-paper); }.delivery-decisions small { color: #3158ea; font: 600 14px var(--f-cjk); }.delivery-decisions h3 { margin: 18px 0 11px; font: 500 23px/1.3 var(--f-cjk); }.delivery-decisions p { margin: 0; color: var(--cs-ink-2); font: 16px/1.72 var(--f-cjk); }
.space-film-player { position: relative; overflow: hidden; border-radius: 6px; background: #020202; }
.space-film video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #020202; }
.space-film-play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: clamp(72px,7vw,104px); aspect-ratio: 1; padding: 0; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(4,10,22,.58); color: #fff; box-shadow: 0 16px 48px rgba(0,0,0,.28); backdrop-filter: blur(14px); cursor: pointer; transform: translate(-50%,-50%); transition: opacity .25s ease, transform .25s ease, background .25s ease; }
.space-film-play span { width: 0; height: 0; margin-left: 7%; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-left: 21px solid currentColor; }
.space-film-play:hover { background: rgba(49,88,234,.82); transform: translate(-50%,-50%) scale(1.05); }
.space-film-player.is-playing .space-film-play { opacity: 0; visibility: hidden; pointer-events: none; }
.space-film-player:focus-within .space-film-play { outline: 2px solid #fff; outline-offset: 4px; }
.space-film-status { margin: 12px 0 0; color: var(--cs-ink-3); font: 14px/1.6 var(--f-cjk); }
.space-film-status[hidden] { display: none; }
.delivery-review { width: 100vw; margin-top: 118px; margin-left: calc(50% - 50vw); padding: clamp(48px,7vw,90px) max(24px,calc((100vw - 1400px)/2 + 24px)); background: #0a1222; color: #fff; }.delivery-review h2 { margin: 20px 0 25px; font: 500 clamp(30px,3.2vw,52px)/1.16 var(--f-cjk); }.delivery-review h2 em { color: #7896ff; font-style: normal; }.delivery-review > p { max-width: none; color: rgba(255,255,255,.82); font: 18px/1.8 var(--f-cjk); }.delivery-review > div { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; margin-top: 45px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }.delivery-review span { color: #7896ff; font: 600 16px/1.6 var(--f-cjk); }.delivery-review strong { font: 500 16px/1.6 var(--f-cjk); }
@media (max-width: 900px) { .case-page.is-culture .space-brief { grid-template-columns: 1fr; gap: 34px; padding: 40px; }.case-page.is-culture main section.space-constraint { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 620px) {
  .culture-tour-stage { min-height: 0 !important; height: auto !important; }
  .case-page.is-culture .space-brief { width: calc(100% - 28px); margin-top: 55px; padding: 30px 24px; }
  .case-page.is-culture main section.space-constraint { width: calc(100% - 28px); margin-bottom: 68px; padding: 38px 24px; gap: 38px; }
  .space-constraint h2 { font-size: 31px; }
  .space-audiences div { grid-template-columns: 82px 1fr; gap: 14px; }
  .space-built-proof { grid-template-columns: 1fr; }
  .space-built-proof figure { min-height: 260px; }

  .space-wall-media { aspect-ratio: 4 / 3; }
  .space-wall-media > span { top: 12px; bottom: auto; left: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(5,11,25,.55); font-size: 12px; letter-spacing: .08em; }
  .space-wall-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; width: 100%; margin: 0; padding: 0 0 12px; overflow: visible; scroll-snap-type: none; }
  .space-wall-tabs button { width: 100%; min-width: 0; padding: 11px 4px 11px 18px; border-radius: 12px; font-size: 12px; line-height: 1.3; white-space: nowrap; scroll-snap-align: unset; }
  .space-wall-tabs button.is-active { padding-left: 18px; }

  /* 横向信息组：卡片宽度锁死，露出的是下一张图的边缘，而不是被挤扁的正文。 */
  .space-judgement,
  .space-card-gallery,
  .space-built-grid,
  .space-corridor-pair,
  .delivery-evidence,
  .delivery-decisions {
    display: flex;
    gap: 14px;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    background: transparent;
  }
  .space-judgement::-webkit-scrollbar,
  .space-card-gallery::-webkit-scrollbar,
  .space-built-grid::-webkit-scrollbar,
  .space-corridor-pair::-webkit-scrollbar,
  .delivery-evidence::-webkit-scrollbar,
  .delivery-decisions::-webkit-scrollbar { display: none; }
  .space-judgement > *,
  .space-card-gallery > *,
  .space-built-grid > *,
  .space-corridor-pair > *,
  .delivery-evidence > *,
  .delivery-decisions > * { flex: 0 0 min(82vw, 340px); width: min(82vw, 340px); min-width: min(82vw, 340px); max-width: min(82vw, 340px); height: auto; overflow: hidden; scroll-snap-align: start; }
  .delivery-evidence figcaption { overflow: hidden; }
  .space-card-gallery figure { position: static; }
  .space-card-gallery figcaption { position: static; padding: 16px 4px 4px; background: none; }
  .space-judgement,
  .space-card-gallery,
  .space-built-grid,
  .space-corridor-pair,
  .delivery-evidence,
  .delivery-decisions,
  .delivery-rail-viewport { -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 22px), transparent); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 22px), transparent); }
  .space-judgement article,
  .delivery-decisions article { border: 1px solid var(--cs-hair); border-radius: 12px; }
  .space-built-grid,.space-corridor-pair { margin-top: 18px; }
  .delivery-evidence { margin-top: 52px; }
  .delivery-decisions { margin-top: 52px; }

  .delivery-rail-viewport { width: calc(100% + 16px); margin-right: -16px; padding-right: 28px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .delivery-rail-viewport::-webkit-scrollbar { display: none; }
  .delivery-rail { display: flex; grid-template-columns: none; grid-auto-flow: unset; grid-auto-columns: unset; width: max-content; transform: none !important; }
  .delivery-rail article { flex: 0 0 min(78vw, 320px); width: min(78vw, 320px); min-width: min(78vw, 320px); min-height: 270px; overflow: hidden; border-right: 1px solid var(--cs-hair); border-bottom: 0; scroll-snap-align: start; }
  .delivery-review { margin-top: 70px; }
  .delivery-review > div { grid-template-columns: 1fr; }
}
