/* ═══════════════════════════════════════════════════════════════
   财小云官网 V2 原型 — 首页完整样式（全 8 段 + 明暗双主题）
   红线：token 零硬编码 —— 色值/间距/时长全部引用 var(--cxy-*)；
   透明色用 color-mix(in srgb, token ×%, transparent)，不写 rgba 字面量。
   动效纪律：UI 过渡 ≤320ms（token 上限）；环境性动效（极光漂移 / 对话循环 /
   渐变流动）属「氛围层」，时长另计，幅度必须低感知、可降级。
   ═══════════════════════════════════════════════════════════════ */

/* ────────── 导航（logo 加大 + 主题切换）────────── */
.nav {
  position: sticky; top: 0; z-index: var(--cxy-z-nav);
  background: color-mix(in srgb, var(--cxy-surface-page) 82%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--cxy-border-hairline) solid transparent;
  transition: border-color var(--cxy-duration-base) var(--cxy-ease-standard),
              background-color var(--cxy-duration-base) var(--cxy-ease-standard);
}
.nav.is-scrolled { border-bottom-color: var(--cxy-border); }
.nav-in { display: flex; align-items: center; gap: var(--cxy-space-6); height: 72px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }   /* v16 为 28px，字过小看不清 → 38px */
/* 彩色 logo 深字在暗底上不可读 → 暗色换白色版 */
.nav-logo .logo-dark { display: none; }
:root[data-theme="dark"] .nav-logo .logo-light { display: none; }
:root[data-theme="dark"] .nav-logo .logo-dark { display: block; }
.nav-links { display: flex; gap: var(--cxy-space-6); margin-left: auto; }
.nav-links a {
  font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-medium); color: var(--cxy-ink-2);
  transition: color var(--cxy-duration-fast) var(--cxy-ease-standard);
}
.nav-links a:hover { color: var(--cxy-action); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--cxy-radius-pill);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
  background: var(--cxy-surface-card); color: var(--cxy-ink-2);
  transition: border-color var(--cxy-duration-fast) var(--cxy-ease-standard),
              color var(--cxy-duration-fast) var(--cxy-ease-standard);
}
.theme-toggle:hover { border-color: var(--cxy-border-strong); color: var(--cxy-action); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ic-moon, :root[data-theme="dark"] .theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: block; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ────────── 按钮 ────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--cxy-space-3) var(--cxy-space-6);
  border-radius: var(--cxy-radius-md);
  font-size: var(--cxy-size-body); font-weight: var(--cxy-weight-semibold);
  transition: transform var(--cxy-duration-fast) var(--cxy-ease-out),
              box-shadow var(--cxy-duration-fast) var(--cxy-ease-out),
              background var(--cxy-duration-fast) var(--cxy-ease-standard),
              border-color var(--cxy-duration-fast) var(--cxy-ease-standard);
}
.btn:active { transform: scale(0.98); }
.btn-pri { background: var(--cxy-blue); color: var(--cxy-on-color); }
.btn-pri:hover { background: var(--cxy-action-hover); box-shadow: var(--cxy-glow-aurora); transform: translateY(-1px); }
.btn-soft {
  background: var(--cxy-surface-card); color: var(--cxy-ink);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
}
.btn-soft:hover { border-color: var(--cxy-border-strong); box-shadow: var(--cxy-elevation-1); transform: translateY(-1px); }
.btn-sm { padding: var(--cxy-space-2) var(--cxy-space-4); font-size: var(--cxy-size-sm); }

/* ────────── Hero ────────── */
.hero {
  position: relative; overflow: hidden;
  padding: var(--cxy-space-10) 0 var(--cxy-space-12);
  background: var(--cxy-surface-page);
}
/* 极光氛围层 —— V2 核心：品牌签名从「一条渐变细线」升为「首屏环境光」。
   两团 color-mix 低透明光斑反向慢漂；透明度压在 6–14%，文字对比度 AA 不受影响。
   暗色下整体压暗一半，防光斑在暗底过曝。 */
.hero::before {
  content: ""; position: absolute; inset: -10%; pointer-events: none;
  background:
    radial-gradient(46% 40% at 76% 16%, color-mix(in srgb, var(--cxy-cyan) 14%, transparent), transparent 72%),
    radial-gradient(38% 42% at 14% 74%, color-mix(in srgb, var(--cxy-blue) 9%, transparent), transparent 70%);
  animation: none;   /* 光斑只落左文区与右上空白，对话卡四周不留光晕（Haning 确认） */
}
.hero::after {
  content: ""; position: absolute; inset: -10%; pointer-events: none;
  background:
    radial-gradient(34% 30% at 30% 8%, color-mix(in srgb, var(--cxy-blue) 7%, transparent), transparent 70%),
    linear-gradient(180deg, transparent 62%, var(--cxy-surface-page) 96%);
  animation: none;
}
:root[data-theme="dark"] .hero::before { opacity: 0.55; }
:root[data-theme="dark"] .hero::after { opacity: 0.5; }
@keyframes aurora-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, 2.5%, 0) scale(1.06); }
}
@keyframes aurora-drift-b {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(2.5%, -2%, 0); }
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 6fr 6fr; gap: var(--cxy-space-10);
  align-items: center;
}
.hello {
  display: inline-flex; align-items: center; gap: var(--cxy-space-2);
  background: var(--cxy-surface-card);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-pill); padding: var(--cxy-space-2) var(--cxy-space-4);
  font-size: var(--cxy-size-caption); color: var(--cxy-ink-2); box-shadow: var(--cxy-elevation-1);
}
/* 中文视觉中心低于几何中心 ~1px，绿点下移 1px 视觉对齐 */
.hello .dot-live {
  position: relative; top: 1px; flex: none;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cxy-positive);
  animation: pulse-dot 2.4s var(--cxy-ease-standard) infinite;   /* V2.2 恢复：状态指示豁免（在线/待命语义，非装饰） */
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--cxy-positive) 35%, transparent); }
  55%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--cxy-positive) 0%, transparent); }
}
/* V2 流式字阶：34px(375) → 56px(≥1100)，上限即 token --cxy-size-display */
.hero h1 {
  font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-heavy);
  font-size: clamp(2.125rem, 1.15rem + 3.4vw, var(--cxy-size-display));
  line-height: var(--cxy-leading-tight); letter-spacing: var(--cxy-tracking-display);
  color: var(--cxy-ink); margin: var(--cxy-space-5) 0 var(--cxy-space-4);
}
/* 渐变文字「活」起来：背景放大 170% 后 9s 慢流 */
.grad {
  background-image: var(--cxy-gradient-aurora); background-size: 170% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: none;
}
/* 暗色下渐变文字换亮版，保对比 */
:root[data-theme="dark"] .grad {
  background-image: linear-gradient(135deg, var(--cxy-tint-blue-fg), var(--cxy-tint-cyan-fg));
}
@keyframes grad-flow {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.hero-sub { font-size: var(--cxy-size-body-article); color: var(--cxy-text); max-width: 26em; margin: 0 0 var(--cxy-space-7); }
.hero-ctas { display: flex; gap: var(--cxy-space-4); flex-wrap: wrap; }
.hero-note { margin: 0 0 var(--cxy-space-5); font-size: var(--cxy-size-caption); color: var(--cxy-muted); }   /* V2.2：note 移至按钮上方，hero 弹码落点无遮挡 */

/* ── 手机对话卡：高度锁定 + 打字指示器绝对定位（修复播放中跳动）── */
.phone-wrap { position: relative; }
/* V2.2：删除卡后光晕层（Haning 反馈卡片四周尤其左侧有光晕透出） */
.phone {
  position: relative; z-index: 1;
  width: min(400px, 100%); margin-left: auto;
  background: var(--cxy-surface-card);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-2xl); box-shadow: var(--cxy-elevation-2);
  overflow: hidden;
  animation: none;
}
@keyframes phone-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}
.phone-top {
  display: flex; align-items: center; gap: var(--cxy-space-3);
  padding: var(--cxy-space-4) var(--cxy-space-5);
  border-bottom: var(--cxy-border-hairline) solid var(--cxy-border);
  position: relative;
}
.phone-top::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--cxy-gradient-aurora); opacity: 0.55;
}
.phone-top img { width: 46px; height: 46px; border-radius: var(--cxy-radius-md); background: var(--cxy-tint-blue-bg); padding: var(--cxy-space-1); }
.phone-top b { font-size: var(--cxy-size-body); color: var(--cxy-ink); display: block; font-weight: var(--cxy-weight-bold); }
.ph-status {
  display: inline-flex; align-items: center; gap: var(--cxy-space-1); margin-top: var(--cxy-space-1);
  font-size: var(--cxy-size-label); font-weight: var(--cxy-weight-semibold);
  color: var(--cxy-positive-ink); background: var(--cxy-tint-green-bg);
  padding: 2px var(--cxy-space-2); border-radius: var(--cxy-radius-pill);
}
.ph-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--cxy-positive); }

/* .chat 高度由 JS 在字体就绪后锁定为完整对话高度；
   typing 指示器 position:absolute 不占文档流——播放全程卡片高度零变化 */
.chat { position: relative; padding: var(--cxy-space-5); display: flex; flex-direction: column; gap: var(--cxy-space-3); background: var(--cxy-surface-subtle); }
.msg {
  max-width: 82%; padding: var(--cxy-space-3) var(--cxy-space-4);
  border-radius: var(--cxy-radius-lg);
  font-size: var(--cxy-size-sm); line-height: var(--cxy-leading-body);
}
.msg-ai {
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  color: var(--cxy-ink-2); border-top-left-radius: var(--cxy-radius-xs); align-self: flex-start;
}
.msg-me { background: var(--cxy-blue); color: var(--cxy-on-color); border-top-right-radius: var(--cxy-radius-xs); align-self: flex-end; }
.msg-card {
  align-self: flex-start; width: 88%; background: var(--cxy-surface-card);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); border-top-left-radius: var(--cxy-radius-xs); overflow: hidden;
}
.msg-card .mc-h {
  padding: var(--cxy-space-3) var(--cxy-space-4); font-size: var(--cxy-size-caption); font-weight: var(--cxy-weight-bold);
  color: var(--cxy-ink); border-bottom: var(--cxy-border-hairline) solid var(--cxy-border);
  display: flex; justify-content: space-between;
}
.msg-card .mc-h span { font-weight: var(--cxy-weight-medium); color: var(--cxy-muted); }
.msg-card ul { list-style: none; padding: var(--cxy-space-2); }
.msg-card li { display: flex; align-items: center; gap: var(--cxy-space-2); font-size: var(--cxy-size-caption); color: var(--cxy-ink-2); padding: var(--cxy-space-2); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-g { background: var(--cxy-positive); }
.dot-y { background: var(--cxy-warning); }
.dot-r { background: var(--cxy-negative); }
.msg-card li em { font-style: normal; margin-left: auto; font-size: var(--cxy-size-label); color: var(--cxy-muted); }
.msg-human {
  align-self: flex-start; max-width: 88%;
  background: var(--cxy-tint-green-bg); border-radius: var(--cxy-radius-lg); border-top-left-radius: var(--cxy-radius-xs);
  padding: var(--cxy-space-3) var(--cxy-space-4); font-size: var(--cxy-size-caption); color: var(--cxy-tint-green-fg);
}
.chat-note { text-align: center; font-size: var(--cxy-size-label); color: var(--cxy-muted); padding: var(--cxy-space-3) 0 var(--cxy-space-4); background: var(--cxy-surface-subtle); }

[data-chat] { opacity: 0; transform: translateY(10px); }
[data-chat].is-in {
  opacity: 1; transform: none;
  transition: opacity var(--cxy-duration-slow) var(--cxy-ease-out),
              transform var(--cxy-duration-slow) var(--cxy-ease-out);
}
.msg-typing {
  position: absolute; left: var(--cxy-space-5); z-index: 1;   /* top 由 JS 按目标消息位置设置 */
  display: none; gap: var(--cxy-space-1); padding: var(--cxy-space-3) var(--cxy-space-4);
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); border-top-left-radius: var(--cxy-radius-xs);
}
.msg-typing.is-on { display: inline-flex; }
.msg-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--cxy-muted); animation: typing var(--cxy-duration-base) var(--cxy-ease-standard) 1 both; }
.msg-typing i:nth-child(2) { animation-delay: 60ms; }
.msg-typing i:nth-child(3) { animation-delay: 120ms; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: none; } 30% { opacity: 1; transform: translateY(-3px); } }

/* ────────── 滚动渐入（兄弟错峰 --rv-delay）────────── */
.rv { opacity: 0; transform: translateY(16px); }
.rv.rv-in {
  opacity: 1; transform: none;
  transition: opacity var(--cxy-duration-slow) var(--cxy-ease-out) var(--rv-delay, 0ms),
              transform var(--cxy-duration-slow) var(--cxy-ease-out) var(--rv-delay, 0ms);
}

/* ────────── Section 通用 ────────── */
.sec { padding: var(--cxy-space-12) 0; }
.sec-alt { background: var(--cxy-surface-subtle); }
.sec-tight { padding: var(--cxy-space-10) 0; }
.sec-band { padding: 120px 0; background: var(--cxy-gradient-soft); }
.sec-h { max-width: 65ch; }
.sec-h h2 {
  font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-heavy);
  font-size: clamp(var(--cxy-size-h3), 1.1rem + 1.4vw, var(--cxy-size-h2));
  letter-spacing: var(--cxy-tracking-tight); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-3);
}
.sec-h p { color: var(--cxy-text); font-size: var(--cxy-size-body); }
.sec-h-row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--cxy-space-6); max-width: none; }
.more-link { font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-semibold); white-space: nowrap; }

/* ────────── Stats：数字 count-up ────────── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--cxy-space-8); }
.stat { display: flex; flex-direction: column; gap: var(--cxy-space-3); }
.stat-num {
  font-family: var(--cxy-font-display); font-weight: var(--cxy-weight-bold); line-height: 1;
  font-size: clamp(56px, 8vw, 96px); color: var(--cxy-ink);
  letter-spacing: var(--cxy-tracking-display); font-variant-numeric: tabular-nums;
}
.stat-num small { font-size: 0.38em; font-weight: var(--cxy-weight-semibold); color: var(--cxy-ink-2); margin-left: var(--cxy-space-1); }
.stat-num.grad { background-size: 100% 100%; }
.aurora-rule { border: 0; height: 3px; width: 48px; border-radius: 2px; background: var(--cxy-gradient-aurora); }
.stat-label { font-size: var(--cxy-size-body); color: var(--cxy-ink-2); max-width: 18em; }

/* ────────── 一天时间线：滚动驱动进度（坐标系已校准）──────────
   校准：timeline 内容左缘 32px（space-7）；轨道 left:15px 宽 2 → 中心 16px；
   圆点 left:-23px 宽 14 → 中心 = 32-23+7 = 16px。线穿圆心，四点成串。 */
.tl-grid { display: grid; grid-template-columns: 6fr 6fr; gap: var(--cxy-space-10); align-items: center; }
.timeline { position: relative; margin-top: var(--cxy-space-9); padding-left: var(--cxy-space-7); }
.tl-rail {
  position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
  border-radius: 2px; background: var(--cxy-border-strong); overflow: hidden;
}
.tl-rail::before {
  content: ""; position: absolute; inset: 0;
  background: var(--cxy-gradient-aurora);
  transform: scaleY(var(--p, 0)); transform-origin: top center;
}
.tl-item { position: relative; padding: 0 0 var(--cxy-space-9) var(--cxy-space-6); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -23px; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cxy-surface-card); border: 3px solid var(--cxy-border-strong);
  transition: background var(--cxy-duration-base) var(--cxy-ease-standard),
              border-color var(--cxy-duration-base) var(--cxy-ease-standard),
              box-shadow var(--cxy-duration-base) var(--cxy-ease-standard);
}
.tl-item.is-on::before {
  background: var(--cxy-blue); border-color: var(--cxy-blue);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--cxy-blue) 14%, transparent);
}
.tl-time {
  font-family: var(--cxy-font-num); font-weight: var(--cxy-weight-semibold);
  font-size: var(--cxy-size-caption); letter-spacing: var(--cxy-tracking-label);
  color: var(--cxy-muted);
  transition: color var(--cxy-duration-base) var(--cxy-ease-standard);
}
.tl-item.is-on .tl-time { color: var(--cxy-action); }
.tl-item h3 { font-size: var(--cxy-size-title); font-weight: var(--cxy-weight-bold); color: var(--cxy-ink); margin: var(--cxy-space-2) 0 var(--cxy-space-1); }
.tl-item p { font-size: var(--cxy-size-sm); color: var(--cxy-text); max-width: 46em; }
.tl-aside { background: var(--cxy-gradient-soft); border-radius: var(--cxy-radius-xl); padding: var(--cxy-space-8); }
.tl-aside p {
  font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-bold);
  font-size: var(--cxy-size-h3); line-height: var(--cxy-leading-snug);
  color: var(--cxy-ink); margin: 0 0 var(--cxy-space-5);
}
.tl-aside span { font-size: var(--cxy-size-sm); color: var(--cxy-text); }

/* ────────── 双产品线 亮/沉双卡 ────────── */
.duo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--cxy-space-6); margin-top: var(--cxy-space-8); }
.dcard {
  border-radius: var(--cxy-radius-xl); padding: var(--cxy-space-8); position: relative; overflow: hidden;
  box-shadow: var(--cxy-elevation-1);   /* V2.2：默认有影，hover 升级（原 hover 才出影） */
  transition: transform var(--cxy-duration-base) var(--cxy-ease-out),
              box-shadow var(--cxy-duration-base) var(--cxy-ease-out);
}
.dcard:hover { transform: translateY(-3px); box-shadow: var(--cxy-elevation-2); }
.dcard-ai { background: var(--cxy-gradient-soft); border: var(--cxy-border-hairline) solid var(--cxy-border); }
.dcard-ai::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: var(--cxy-gradient-aurora);
}
.dcard-ai::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--cxy-cyan) 26%, transparent), transparent 70%);
  pointer-events: none;
}
/* 沉轨墨底：局部重定义 token（明暗主题下都保持墨底，是页面的「重」锚点） */
.dcard-wy, .cert-side, .footer {
  --cxy-ink: var(--cxy-isle-ink); --cxy-ink-2: var(--cxy-isle-ink-2); --cxy-text: var(--cxy-isle-text);
  --cxy-muted: var(--cxy-isle-muted); --cxy-border: var(--cxy-isle-border); --cxy-border-strong: var(--cxy-isle-border-strong);
  --cxy-tint-green-bg: var(--cxy-isle-tint-green-bg); --cxy-tint-green-fg: var(--cxy-isle-tint-green-fg);
  --cxy-surface-card: var(--cxy-isle-surface-card);
}
.dcard-wy { background: var(--cxy-isle-bg); color: var(--cxy-text); }
/* 暗色下墨岛提亮后，补细边框确立边界 */
:root[data-theme="dark"] .dcard-wy,
:root[data-theme="dark"] .cert-side { border: var(--cxy-border-hairline) solid var(--cxy-border); }
.line-tag {
  display: inline-flex; font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-bold);
  padding: var(--cxy-space-1) var(--cxy-space-4); border-radius: var(--cxy-radius-sm);
}
.tag-blue { background: var(--cxy-tint-blue-bg); color: var(--cxy-tint-blue-fg); }
.tag-green { background: var(--cxy-tint-green-bg); color: var(--cxy-tint-green-fg); }
.dcard h3 {
  font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-heavy);
  font-size: var(--cxy-size-h3); margin: var(--cxy-space-4) 0 var(--cxy-space-3); color: var(--cxy-ink);
}
.dcard p { font-size: var(--cxy-size-body); margin: 0 0 var(--cxy-space-5); color: var(--cxy-text); max-width: 30em; }
.dcard .go { font-weight: var(--cxy-weight-semibold); font-size: var(--cxy-size-body); }
.dcard-wy .go { color: var(--cxy-tint-green-fg); }
.dcard .who { margin: var(--cxy-space-6) 0 0; font-size: var(--cxy-size-caption); color: var(--cxy-muted); }
.dcard .disclaimer { margin: var(--cxy-space-3) 0 0; font-size: var(--cxy-size-label); color: var(--cxy-muted); }

/* ────────── 免费体检三步：编辑式编号列表 ────────── */
.edit-list { list-style: none; margin-top: var(--cxy-space-8); }
.edit-list > li {
  display: grid; grid-template-columns: 88px 1fr; gap: var(--cxy-space-6);
  padding: var(--cxy-space-6) 0;
  border-top: var(--cxy-border-hairline) solid var(--cxy-border);
}
.edit-list > li:first-child { border-top: 2px solid transparent; border-image: var(--cxy-gradient-aurora) 1; }
.edit-num {
  font-family: var(--cxy-font-display); font-weight: var(--cxy-weight-semibold);
  font-size: var(--cxy-size-h3); color: var(--cxy-blue); line-height: var(--cxy-leading-snug);
}
.edit-body h3 { font-size: var(--cxy-size-title); font-weight: var(--cxy-weight-bold); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-2); }
.edit-body p { font-size: var(--cxy-size-body); color: var(--cxy-text); }
.step-scan {
  position: relative; display: inline-flex; align-items: center; gap: var(--cxy-space-2);
  margin-top: var(--cxy-space-4); padding: var(--cxy-space-2) var(--cxy-space-4);
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-pill); box-shadow: var(--cxy-elevation-1);
  font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-semibold); color: var(--cxy-action);
}
.step-scan img { width: 22px; height: 22px; border-radius: var(--cxy-radius-xs); }
.qr-pop {
  position: absolute; bottom: calc(100% + var(--cxy-space-3)); left: 0; z-index: var(--cxy-z-popover);
  display: flex; flex-direction: column; align-items: center; gap: var(--cxy-space-2);
  width: max-content;   /* 修复：shrink-to-fit 被 40px 圆钮挤压，连带 img 被 max-width:100% 压扁 */
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); padding: var(--cxy-space-4); box-shadow: var(--cxy-elevation-2);
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity var(--cxy-duration-base) var(--cxy-ease-out),
              transform var(--cxy-duration-base) var(--cxy-ease-out);
}
.qr-pop img { width: 132px; height: 132px; max-width: none; border-radius: var(--cxy-radius-sm); }
.qr-pop b { font-size: var(--cxy-size-caption); color: var(--cxy-ink); white-space: nowrap; }
.step-scan:hover .qr-pop, .step-scan:focus-visible .qr-pop { opacity: 1; transform: none; pointer-events: auto; }
.free-note { display: flex; align-items: center; gap: var(--cxy-space-3); margin-top: var(--cxy-space-6); font-size: var(--cxy-size-sm); color: var(--cxy-muted); }
.free-tag {
  font-size: var(--cxy-size-caption); font-weight: var(--cxy-weight-bold);
  color: var(--cxy-tint-green-fg); background: var(--cxy-tint-green-bg);
  padding: var(--cxy-space-1) var(--cxy-space-3); border-radius: var(--cxy-radius-pill); white-space: nowrap;
}

/* ────────── 信任区：价值卡提亮 + 资质证据卡（亮沉对比）────────── */
.trust { display: grid; grid-template-columns: 7fr 5fr; gap: var(--cxy-space-6); margin-top: var(--cxy-space-8); }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--cxy-space-6); }
.tile {
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); padding: var(--cxy-space-6);
  box-shadow: var(--cxy-elevation-1);   /* V2.2：默认有影 */
  transition: transform var(--cxy-duration-base) var(--cxy-ease-out),
              box-shadow var(--cxy-duration-base) var(--cxy-ease-out),
              border-color var(--cxy-duration-base) var(--cxy-ease-standard);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--cxy-elevation-2); border-color: var(--cxy-border-strong); }
.tile .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--cxy-radius-sm);
  background: var(--cxy-tint-blue-bg); margin-bottom: var(--cxy-space-4);
}
.tile .ic svg { width: 22px; height: 22px; fill: none; stroke: var(--cxy-action); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tile h3 { font-size: var(--cxy-size-title); font-weight: var(--cxy-weight-bold); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-2); }
.tile p { font-size: var(--cxy-size-sm); color: var(--cxy-text); }
/* 资质证据卡：墨底沉轨，与价值卡构成亮/沉对比 */
.cert-side {
  background: var(--cxy-isle-bg); border-radius: var(--cxy-radius-xl); padding: var(--cxy-space-7);
  display: flex; flex-direction: column;
}
.cert-side h3 { font-size: var(--cxy-size-title); font-weight: var(--cxy-weight-bold); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-3); }
.cert-side ul { list-style: none; flex: 1; display: flex; flex-direction: column; }
.cert-side li {
  padding: var(--cxy-space-4) 0;
  border-top: var(--cxy-border-hairline) solid color-mix(in srgb, var(--cxy-on-color) 10%, transparent);
}
.cert-side li b { display: block; font-size: var(--cxy-size-body); color: var(--cxy-ink); margin-bottom: var(--cxy-space-1); }
.cert-side li span { font-size: var(--cxy-size-caption); color: var(--cxy-muted); }

/* ────────── 知识预览卡 ────────── */
.art-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--cxy-space-6); margin-top: var(--cxy-space-8); }
/* V2.2：主卡整列 flex + body 拉伸居中，消灭 span 2 行下的底部空洞 */
.art-grid .acard:first-child { grid-row: span 2; display: flex; flex-direction: column; }
.art-grid .acard:first-child .acard-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: var(--cxy-space-7);
}
.art-grid .acard:first-child .acard-body h3 { font-size: var(--cxy-size-h3); max-width: 22em; }
.acard {
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); overflow: hidden;
  box-shadow: var(--cxy-elevation-1);   /* V2.2：默认有影 */
  transition: transform var(--cxy-duration-base) var(--cxy-ease-out),
              box-shadow var(--cxy-duration-base) var(--cxy-ease-out);
}
.acard:hover { transform: translateY(-3px); box-shadow: var(--cxy-elevation-2); }
.acard-cover {
  background: var(--cxy-gradient-soft); padding: var(--cxy-space-8) var(--cxy-space-5) var(--cxy-space-5);
}
.acard-body { padding: var(--cxy-space-5); }
.acard-body h3 { font-size: var(--cxy-size-body); font-weight: var(--cxy-weight-bold); line-height: var(--cxy-leading-snug); margin: 0 0 var(--cxy-space-4); }
.acard-body h3 a { color: var(--cxy-ink); }
.acard-body h3 a:hover { color: var(--cxy-action); }
/* V2.2：杂志主卡摘要（撑起 span 2 行的高度，文案引自文章 frontmatter description） */
.acard-excerpt { font-size: var(--cxy-size-sm); color: var(--cxy-text); line-height: var(--cxy-leading-body); margin: 0 0 var(--cxy-space-4); max-width: 34em; }
.acard-read { font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-semibold); }

/* ────────── CTA band（间距回滚 V2.1 值，Haning 确认税无忧版间距）────────── */
.cta-band { padding: var(--cxy-space-9) 0 var(--cxy-space-12); }   /* V17 修正（260719）：召唤卡上沿加 48px 呼吸空间，防浅底连片显得贴着上一 section（Haning 反馈）*/
.cta-card {
  position: relative; overflow: hidden;   /* V2.2：召唤卡光影（cursor spotlight）的裁剪与定位基 */
  background: var(--cxy-gradient-soft); border-radius: var(--cxy-radius-2xl);
  padding: var(--cxy-space-10);
  display: flex; align-items: center; justify-content: space-between; gap: var(--cxy-space-8);
}
/* 召唤卡光影层叠顺序：光斑在内容下 */
.cta-card.spot::after { z-index: 0; }
.cta-card > * { position: relative; z-index: 1; }
/* 深色召唤卡（税无忧）用白色光斑 */
.wy-cta .cta-card.spot::after {
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--cxy-on-color) 10%, transparent), transparent 70%);
}
.cta-card h2 {
  font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-heavy);
  font-size: clamp(var(--cxy-size-h3), 1.1rem + 1.4vw, var(--cxy-size-h2));
  letter-spacing: var(--cxy-tracking-tight); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-3);
}
.cta-card p { color: var(--cxy-text); font-size: var(--cxy-size-body); }
.cta-qr-pair { display: flex; gap: var(--cxy-space-4); flex: none; }
.cta-qr-card {
  background: var(--cxy-surface-card); border-radius: var(--cxy-radius-lg);
  padding: var(--cxy-space-4); text-align: center; box-shadow: var(--cxy-elevation-1);
  display: flex; flex-direction: column; align-items: center; gap: var(--cxy-space-1);
}
.cta-qr-card img { width: 96px; height: 96px; border-radius: var(--cxy-radius-sm); margin-bottom: var(--cxy-space-2); }
.cta-qr-card b { font-size: var(--cxy-size-sm); color: var(--cxy-ink); }
.cta-qr-card span { font-size: var(--cxy-size-caption); color: var(--cxy-muted); }

/* ────────── Footer（墨底深色岛，明暗主题下均保持）────────── */
.footer { background: var(--cxy-isle-bg); color: var(--cxy-text); }
.footer > .aurora-rule { width: 100%; border-radius: 0; }
.footer-in {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--cxy-space-8);
  padding: var(--cxy-space-10) 0 var(--cxy-space-8);   /* 回滚 V2.1 值 */
}
.footer-logo { height: 40px; width: auto; margin-bottom: var(--cxy-space-4); }   /* V2.2：32 → 40 放大（Haning 反馈） */
.footer-brand p { font-size: var(--cxy-size-sm); color: var(--cxy-muted); max-width: 24em; }
.footer-follow { display: flex; gap: var(--cxy-space-3); margin-top: var(--cxy-space-5); }
.follow-item {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--cxy-radius-pill);
  border: var(--cxy-border-hairline) solid var(--cxy-border-strong); color: var(--cxy-text);
  transition: color var(--cxy-duration-fast) var(--cxy-ease-standard),
              border-color var(--cxy-duration-fast) var(--cxy-ease-standard);
}
.follow-item:hover { color: var(--cxy-on-color); border-color: var(--cxy-muted); }
.follow-item svg { width: 20px; height: 20px; }
.follow-item .qr-pop { bottom: calc(100% + var(--cxy-space-3)); left: 50%; transform: translate(-50%, 6px); }
.follow-item:hover .qr-pop, .follow-item:focus-visible .qr-pop { opacity: 1; transform: translate(-50%, 0); }
.follow-item .qr-pop b { color: var(--cxy-ink-2); }
.footer-h { font-size: var(--cxy-size-sm); font-weight: var(--cxy-weight-bold); color: var(--cxy-on-color); margin-bottom: var(--cxy-space-4); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--cxy-space-2); }   /* V2.2：行距 12→8 收紧 */
.footer-links a { font-size: var(--cxy-size-sm); color: var(--cxy-muted); transition: color var(--cxy-duration-fast) var(--cxy-ease-standard); }
.footer-links a:hover { color: var(--cxy-on-color); }
.footer-contact { font-size: var(--cxy-size-sm); color: var(--cxy-muted); margin-bottom: var(--cxy-space-2); }   /* V2.2：12→8 收紧 */
.footer-contact a { color: var(--cxy-muted); }
.footer-contact a:hover { color: var(--cxy-on-color); }
.footer-trust {
  display: flex; flex-wrap: wrap; gap: var(--cxy-space-4) var(--cxy-space-8);
  padding: var(--cxy-space-6) 0;   /* 回滚 V2.1 值 */
  border-top: var(--cxy-border-hairline) solid color-mix(in srgb, var(--cxy-on-color) 10%, transparent);
}
.footer-trust-item { display: inline-flex; align-items: center; gap: var(--cxy-space-2); font-size: var(--cxy-size-caption); color: var(--cxy-muted); }
.footer-trust-item svg { width: 16px; height: 16px; color: var(--cxy-tint-cyan-fg); }
:root:not([data-theme="dark"]) .footer-trust-item svg { color: var(--cxy-isle-tint-cyan-fg); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--cxy-space-3);
  padding: var(--cxy-space-5) 0 var(--cxy-space-6);   /* 回滚 V2.1 值 */
  border-top: var(--cxy-border-hairline) solid color-mix(in srgb, var(--cxy-on-color) 10%, transparent);
  font-size: var(--cxy-size-caption); color: var(--cxy-muted);
}
.footer-bottom-links { display: flex; gap: var(--cxy-space-5); }
.footer-bottom-links a { color: var(--cxy-muted); }
.footer-bottom-links a:hover { color: var(--cxy-on-color); }

/* ────────── 原型说明条 ────────── */
.proto-note {
  background: var(--cxy-surface-subtle); border-top: var(--cxy-border-hairline) solid var(--cxy-border);
  padding: var(--cxy-space-5) 0; text-align: center;
  font-size: var(--cxy-size-caption); color: var(--cxy-muted);
}

/* ────────── 响应式 ────────── */
@media (max-width: 960px) {
  .hero-in, .tl-grid { grid-template-columns: 1fr; gap: var(--cxy-space-9); }
  .phone { margin: 0 auto; }
  .hero { padding: var(--cxy-space-9) 0 var(--cxy-space-10); }
  .trust { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr 1fr; gap: var(--cxy-space-7); }
}
@media (max-width: 768px) {
  .stats-row, .duo-cards, .art-grid { grid-template-columns: 1fr; }
  .art-grid .acard:first-child { grid-row: auto; }
  .art-grid .acard:first-child .acard-body { min-height: 0; padding: var(--cxy-space-5); }
  .art-grid .acard:first-child .acard-body h3 { font-size: var(--cxy-size-body); }
  .stats-row { gap: var(--cxy-space-7); }
  .edit-list > li { grid-template-columns: 56px 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: var(--cxy-space-7); }
  .sec-band { padding: var(--cxy-space-10) 0; }
}
@media (max-width: 480px) {
  .tiles { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr; }
  .cta-qr-pair { width: 100%; }
  .cta-qr-card { flex: 1; }
}

/* ────────── 降级：一切动画归零，内容直接可见 ────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .rv, [data-chat] { opacity: 1 !important; transform: none !important; }
  .tl-rail::before { transform: scaleY(1); }
  .tl-item::before { background: var(--cxy-blue); border-color: var(--cxy-blue); }
  .tl-time { color: var(--cxy-action); }
  .msg-typing { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   第三轮 · 高级感冲刺（科技材质 / 首映编排 / 字阶放大 / 光标追光）
   说明：英文眉题为装饰性新增文案，回迁前需过 27 号口径确认；
   h1 上限 64px 是 token 扩展提案（--cxy-size-display-xl，待 DS 评审）。
   ═══════════════════════════════════════════════════════════════ */

/* ── 英文 mono 眉题：科技感的「签名」 ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--cxy-space-2);
  font-family: var(--cxy-font-display); font-size: var(--cxy-size-label);
  font-weight: var(--cxy-weight-semibold); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cxy-action);
  margin-bottom: var(--cxy-space-4);
}
.eyebrow::before {
  content: ""; width: var(--cxy-space-6); height: 1px;
  background: var(--cxy-gradient-aurora);
}
.wy-dark .eyebrow { color: var(--cxy-tint-cyan-fg); }

/* ── Hero 首映编排：元素错峰「落成」，极光同步淡入 ── */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero [data-hero] { animation: hero-in var(--cxy-duration-slow) var(--cxy-ease-out) both; animation-delay: var(--hd, 0ms); }
@keyframes aurora-in { from { opacity: 0; } to { opacity: 1; } }
/* V2.2 动效配额制：每页 hero 允许 1 组慢速环境动效（≥20s 周期、低幅度、低透明），
   首映淡入后接续漂移；其余区域与组件仍禁无限装饰动画 */
.hero::before { animation: aurora-in 1.6s var(--cxy-ease-out) both, aurora-drift-a 26s ease-in-out 1.6s infinite alternate; }
.hero::after { animation: aurora-in 1.8s var(--cxy-ease-out) both, aurora-drift-b 34s ease-in-out 1.8s infinite alternate; }

/* ── Hero 材质层：72px 蓝图网格（径向渐隐）+ 2.5% 颗粒噪点 ── */
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-fx::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--cxy-ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--cxy-ink) 5%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 68% 18%, black 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 75% at 68% 18%, black 25%, transparent 72%);
}
:root[data-theme="dark"] .hero-fx::before {
  background-image:
    linear-gradient(color-mix(in srgb, var(--cxy-on-color) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--cxy-on-color) 5%, transparent) 1px, transparent 1px);
}
.hero-fx::after {
  content: ""; position: absolute; inset: 0; opacity: 0.05;
  background-image: url("../img/noise.png");   /* 预生成 PNG 颗粒，免 feTurbulence 运行时滤镜开销 */
  background-size: 160px 160px;
}

/* ── Hero 布局与字阶：左栏加宽 7fr/5fr，h1 上限 64px（token 扩展提案）── */
.hero-in { grid-template-columns: 7fr 5fr; }
.hero h1 {
  font-size: clamp(2.0625rem, 1.2rem + 3.6vw, 4rem);   /* 33px → 64px */
  letter-spacing: -0.025em;
}
/* 渐变词组永不内部断裂，防孤字（375px 以下在词组边界换行） */
.hero h1 .grad { white-space: nowrap; }
@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; }
}

/* ── 对话卡：实底（V2.2 修复网格透出）+ 顶部内高光 ── */
.phone {
  background: var(--cxy-surface-card);
  box-shadow: var(--cxy-elevation-2),
              inset 0 1px 0 color-mix(in srgb, var(--cxy-on-color) 55%, transparent);
}
:root[data-theme="dark"] .phone {
  box-shadow: var(--cxy-elevation-2),
              inset 0 1px 0 color-mix(in srgb, var(--cxy-on-color) 10%, transparent);
}

/* ── 主按钮内高光（玻璃厚度感）── */
.btn-pri { box-shadow: inset 0 1px 0 color-mix(in srgb, var(--cxy-on-color) 22%, transparent); }
.btn-pri:hover { box-shadow: var(--cxy-glow-aurora), inset 0 1px 0 color-mix(in srgb, var(--cxy-on-color) 22%, transparent); }

/* ── 导航玻璃加深：饱和模糊 ── */
.nav { backdrop-filter: blur(14px) saturate(1.5); -webkit-backdrop-filter: blur(14px) saturate(1.5); }

/* ── Stats 仪表带：hairline 框 + 眉题 ── */
.sec-band { border-top: var(--cxy-border-hairline) solid color-mix(in srgb, var(--cxy-ink) 6%, transparent); }
.band-eyebrow { margin-bottom: var(--cxy-space-7); }

/* ── 卡片光标追光（Raycast/Linear 式微交互，JS 供 --mx/--my）── */
.spot { position: relative; }
.spot::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  width: auto; height: auto;   /* 覆盖 dcard-ai 原 ::after 的 280px 残留尺寸，防方形亮块 */
  opacity: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--cxy-blue) 9%, transparent), transparent 70%);
  transition: opacity var(--cxy-duration-base) var(--cxy-ease-standard);
}
.spot:hover::after { opacity: 1; }
.wy-dark .spot::after, .dcard-wy.spot::after, .footer .spot::after {
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--cxy-on-color) 9%, transparent), transparent 70%);
}

/* ── 降级补充：首映动画归零后元素直接可见 ── */
@media (prefers-reduced-motion: reduce) {
  .hero [data-hero] { animation: none !important; }
  .spot::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   第四轮 · 定稿打磨：副标一行 / 导航双码弹层 / footer 夜光
   ═══════════════════════════════════════════════════════════════ */

/* ── hero 副标一行放下（7fr 栏宽足够 33 字 × 17px）── */
.hero-sub { max-width: none; }

/* ── 二维码弹层：导航与 hero 按钮通用（气泡尾指明从属按钮）── */
.nav-cta { display: flex; align-items: center; gap: var(--cxy-space-3); }
.nav-cta .btn, .hero-ctas .btn { position: relative; }
/* hero 弹码用紧凑尺寸（img 112px），保证弹层只落在 hero/邻段的空白 padding 区，不压任何内容行 */
.hero-ctas .nav-qr img { width: 112px; height: 112px; }
.nav-qr {
  position: absolute; top: calc(100% + var(--cxy-space-3)); right: 0; z-index: var(--cxy-z-popover);
  display: flex; flex-direction: column; align-items: center; gap: var(--cxy-space-2);
  width: max-content;
  background: var(--cxy-surface-card); border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); padding: var(--cxy-space-4); box-shadow: var(--cxy-elevation-2);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity var(--cxy-duration-base) var(--cxy-ease-out),
              transform var(--cxy-duration-base) var(--cxy-ease-out);
}
/* 气泡尾：指明「这张码从哪个按钮弹出」 */
.nav-qr::before {
  content: ""; position: absolute; top: -5px; right: var(--cxy-space-6);
  width: 10px; height: 10px; transform: rotate(45deg);
  background: var(--cxy-surface-card);
  border-top: var(--cxy-border-hairline) solid var(--cxy-border);
  border-left: var(--cxy-border-hairline) solid var(--cxy-border);
}
.nav-qr img { width: 132px; height: 132px; max-width: none; border-radius: var(--cxy-radius-sm); }
.nav-qr b { font-size: var(--cxy-size-caption); color: var(--cxy-ink); white-space: nowrap; }
.btn:hover .nav-qr, .btn:focus-visible .nav-qr,
.btn:focus-within .nav-qr { opacity: 1; transform: none; pointer-events: auto; }
/* body 级浮层态（JS 提升，防 hero overflow 裁切；样式与原弹层一致） */
.nav-qr.is-floating {
  position: absolute; z-index: var(--cxy-z-popover);
  opacity: 1; transform: none; pointer-events: auto;
}
@media (max-width: 480px) {
  .nav-cta .btn-soft { display: none; }   /* 小屏只留主按钮，点按直接跳线上 */
}

/* ── footer 夜航光晕（背景层不溢出，无需 overflow 裁剪，不伤 qr 弹层）── */
.footer { position: relative; }
.footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(34% 42% at 6% 0%, color-mix(in srgb, var(--cxy-cyan) 7%, transparent), transparent 72%),
    radial-gradient(38% 46% at 98% 100%, color-mix(in srgb, var(--cxy-blue) 11%, transparent), transparent 74%);
}
.footer > * { position: relative; z-index: 1; }

/* ────────── 口诀带（creed-band）共享组件 ──────────
   从 aitax.css 提升：AI 页与知识中心页共用；页级间距由各自 page.css 覆盖 */
.creed-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--cxy-space-5); }
.creed-band {
  text-align: left; background: var(--cxy-surface-card);
  border: var(--cxy-border-hairline) solid var(--cxy-border);
  border-radius: var(--cxy-radius-lg); padding: var(--cxy-space-5) var(--cxy-space-6);
  box-shadow: var(--cxy-elevation-1);
  transition: transform var(--cxy-duration-base) var(--cxy-ease-out),
              box-shadow var(--cxy-duration-base) var(--cxy-ease-out),
              border-color var(--cxy-duration-base) var(--cxy-ease-standard);
}
.creed-band:hover { transform: translateY(-2px); box-shadow: var(--cxy-elevation-1); border-color: var(--cxy-border-strong); }
.creed-tag {
  display: inline-flex; font-family: var(--cxy-font-display); font-size: var(--cxy-size-label);
  font-weight: var(--cxy-weight-semibold); letter-spacing: var(--cxy-tracking-label);
  color: var(--cxy-action); margin-bottom: var(--cxy-space-2);
}
.creed-band p { font-family: var(--cxy-font-cn); font-weight: var(--cxy-weight-bold); font-size: var(--cxy-size-title); color: var(--cxy-ink); margin: 0 0 var(--cxy-space-1); }
.creed-sub { font-size: var(--cxy-size-caption); color: var(--cxy-muted); }
@media (max-width: 960px) {
  .creed-row { grid-template-columns: 1fr; }
}

/* 补充：sec-flush（文章页文末 CTA 段距，v16 同名规则回迁） */
.sec-flush { padding-top: var(--cxy-space-9); }
