/* ==========================================================================
   掌财狸官网 Design System — Modern Fintech SaaS
   呼吸感 · 极简白 · 能量橙 · 全矢量
   ========================================================================== */

/* --- 1. 设计令牌 (Design Tokens) ------------------------------------------ */
:root {
  /* 品牌橙：取自 Logo 渐变，作为点睛之笔而非大面积涂抹 */
  --brand-50:  #FFF7ED;
  --brand-100: #FFEDD5;
  --brand-200: #FED7AA;
  --brand-400: #FBA94C;
  --brand-500: #F5851F;
  --brand-600: #E4720C;
  --brand-700: #B85A0B;
  --brand-glow: rgba(245, 133, 31, .34);

  /* 中性色：放弃纯黑，深石板色更显高级 */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --line:    #E7EAF0;
  --line-soft: #F1F3F7;
  --surface: #FFFFFF;
  --surface-alt: #F8FAFC;

  /* 圆角与阴影 */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, .05), 0 10px 24px -6px rgba(15, 23, 42, .10);
  --shadow-lg: 0 12px 32px -8px rgba(15, 23, 42, .12), 0 32px 64px -24px rgba(15, 23, 42, .16);
  --shadow-brand: 0 4px 14px 0 var(--brand-glow);

  /* 布局与节奏 */
  --shell: 1200px;
  --shell-wide: 1400px;
  --nav-h: 72px;
  --ease: cubic-bezier(.16, .84, .44, 1);
  /* 长距离浮现专用：起步快、尾段极缓，长文段落逐行进场时不会看出"停下来"那一帧 */
  --ease-expo: cubic-bezier(.16, 1, .3, 1);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC",
    "Noto Sans CJK SC", sans-serif;
}

/* --- 2. 基础重置 (Reset) --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.2;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
svg { flex: none; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- 3. 布局骨架 (Layout Primitives) -------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}

/* 大屏不做简单拉伸，而是释放更多横向空间 */
@media (min-width: 1600px) { .shell { max-width: var(--shell-wide); } }

.section { padding: 76px 0; position: relative; }
.section--alt { background: var(--surface-alt); }
.section--tight { padding: 52px 0; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: var(--brand-600); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-200));
}
.section-head--center .eyebrow::before { display: none; }

.section-title { font-size: clamp(26px, 3.4vw, 38px); }
.section-desc { margin-top: 16px; font-size: 16.5px; color: var(--ink-500); }

.grad-text {
  background: linear-gradient(96deg, var(--brand-600), var(--brand-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --- 4. 环境光晕 (Ambient Glows) ------------------------------------------ */
/* 纯白底上打两束极低透明度的橙色环境光，明亮但不惨白 */
.glow-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
}
.glow--a {
  top: -26%; left: -16%; width: 34vw; height: 34vw;
  background: rgba(245, 133, 31, .085);
  animation: drift-a 26s var(--ease) infinite;
}
.glow--b {
  top: -14%; right: -14%; width: 36vw; height: 36vw;
  background: rgba(228, 114, 12, .055);
  filter: blur(140px);
  animation: drift-b 32s var(--ease) infinite;
}
.glow--c {
  bottom: -20%; left: 34%; width: 24vw; height: 24vw;
  background: rgba(251, 169, 76, .05);
  animation: drift-c 22s var(--ease) infinite;
}

/* 手机端光晕修正：
   问题一：34vw 在 390px 手机上只有 133px 直径，blur(120px) 把它扩散成一圈极淡的雾，几乎看不见。
   修复：移动端改用 120vw 大球，让它真正填满整个首屏宽度，blur 扩散出来才有面积感。
   问题二：alpha 设计给桌面宽屏，手机小屏白底颜色更浓，要适度加深才看得见。
   问题三：overflow: hidden 在 .hero 上存在，光晕只能放在 .hero 外，或把 hero overflow 改掉——
           现在光晕球比 hero 大很多（120vw），溢出就被 .glow-field 的 overflow:hidden 截住，
           视觉上光晕依然来自那个角落，不会乱跑。 */
@media (max-width: 899px) {
  .glow--a {
    top: -30%; left: -40%; width: 120vw; height: 120vw;
    background: rgba(245, 133, 31, .14);
    filter: blur(80px);
  }
  .glow--b {
    top: -20%; right: -40%; width: 100vw; height: 100vw;
    background: rgba(228, 114, 12, .10);
    filter: blur(90px);
  }
  .glow--c {
    bottom: -10%; left: 10%; width: 80vw; height: 80vw;
    background: rgba(251, 169, 76, .09);
    filter: blur(70px);
  }
}

/* 极慢的位移让白底"呼吸"，速度必须慢到用户盯着看才察觉，否则会分散阅读注意力。
   只动 transform 与 opacity：blur 半径一旦参与动画，每帧都要重算模糊，掉帧很明显。 */
@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 1; }
  50%      { transform: translate3d(5vw, 3vw, 0); opacity: .72; }
}
@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .85; }
  50%      { transform: translate3d(-4vw, 4vw, 0); opacity: 1; }
}
@keyframes drift-c {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .8; }
  50%      { transform: translate3d(3vw, -3vw, 0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .glow { animation: none; }
}

/* --- 5. 导航栏 (Glassmorphism Navbar) ------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 90;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease),
    box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(231, 234, 240, .9);
  box-shadow: 0 1px 20px rgba(15, 23, 42, .05);
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 40px; width: auto; }

.nav__menu { display: none; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600; color: var(--ink-700);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--brand-600); background: var(--brand-50); }
.nav__link.is-active { color: var(--brand-600); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
}
.nav__link .i-chevron-down { transition: transform .25s var(--ease); }

/* 解决方案下拉：桌面端悬停展开 */
.nav__group { position: relative; }
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 264px; padding: 10px;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__group:hover .nav__drop,
.nav__group:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav__group:hover .i-chevron-down,
.nav__group:focus-within .i-chevron-down { transform: rotate(180deg); }
.nav__dropitem {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 12px; border-radius: var(--r-md);
  transition: background-color .18s var(--ease);
}
.nav__dropitem:hover { background: var(--brand-50); }
.nav__dropitem span.ico {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px; border-radius: 9px;
  color: var(--brand-600); background: var(--brand-100);
}
.nav__dropitem b { display: block; font-size: 14.5px; color: var(--ink-900); }
.nav__dropitem small { display: block; font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: var(--r-md);
  color: var(--ink-700); border: 1px solid var(--line); background: rgba(255, 255, 255, .7);
}
.nav__burger:hover { color: var(--brand-600); border-color: var(--brand-200); }

@media (min-width: 1000px) {
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
}

/* --- 6. 移动端抽屉 (Mobile Drawer) ---------------------------------------- */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; inset: 0 0 0 auto;
  width: min(340px, 86vw);
  display: flex; flex-direction: column;
  padding: 18px 18px 28px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__top img { height: 34px; }
.drawer__close {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--r-md); color: var(--ink-500); border: 1px solid var(--line);
}
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px; border-radius: var(--r-md);
  font-size: 16px; font-weight: 650; color: var(--ink-900);
}
.drawer__link:hover, .drawer__link.is-active { background: var(--brand-50); color: var(--brand-600); }
.drawer__sub { padding: 2px 0 8px 12px; }
.drawer__sub a {
  display: block; padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--ink-500);
}
.drawer__sub a:hover { color: var(--brand-600); background: var(--brand-50); }
.drawer__divider { height: 1px; margin: 12px 0; background: var(--line-soft); }
.drawer .btn { width: 100%; margin-top: 6px; }

body.is-locked { overflow: hidden; }

/* --- 7. 按钮 (Buttons) ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg.i-arrow-right { transform: translateX(3px); }

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-600));
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -4px var(--brand-glow), 0 4px 10px rgba(228, 114, 12, .2);
}
.btn--ghost {
  color: var(--ink-700);
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { color: var(--ink-900); border-color: var(--brand-200); background: #fff; transform: translateY(-2px); }
.btn--light {
  color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100);
}
.btn--light:hover { background: var(--brand-100); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 700; color: var(--brand-600);
}
.textlink svg { transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* --- 8. 首屏 (Hero) ------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 56px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 62%, var(--surface-alt) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero--center .hero__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.hero--center .hero__cta { justify-content: center; }
.hero--center .hero__meta { justify-content: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 13px; margin-bottom: 26px;
  border-radius: var(--r-full);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  font-size: 13.5px; font-weight: 700; color: var(--brand-700); letter-spacing: .01em;
}
.pulse { position: relative; display: flex; width: 8px; height: 8px; }
.pulse::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--brand-400); animation: ping 1.9s cubic-bezier(0, 0, .2, 1) infinite;
}
.pulse::after {
  content: ""; position: relative; width: 8px; height: 8px;
  border-radius: 50%; background: var(--brand-500);
}
@keyframes ping { 75%, 100% { transform: scale(2.1); opacity: 0; } }

.hero__title {
  font-size: clamp(34px, 6vw, 62px);
  letter-spacing: -.03em;
  line-height: 1.14;
}
.hero__sub {
  margin-top: 22px; max-width: 660px;
  font-size: clamp(15.5px, 1.6vw, 18.5px);
  color: var(--ink-500); line-height: 1.75;
}
/* 副标题正文是浅灰，关键卖点单靠加粗不够跳；沿用全站强调数字的做法：加粗 + 品牌橙 */
.hero__sub b { font-weight: 800; color: var(--brand-600); }
.hero--center .hero__sub { margin-inline: auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero__meta li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-500);
}
.hero__meta svg { color: var(--brand-500); }

/* 产品页 Hero：左文右视觉 */
.hero__grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero { padding: calc(var(--nav-h) + 68px) 0 72px; }
}

.hero__kicker {
  display: inline-block; margin-bottom: 16px;
  padding: 5px 14px; border-radius: var(--r-full);
  background: var(--ink-900); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
}

/* --- 8.1 首屏左右分栏 (Split Hero · F-Pattern) --------------------------- */
/* 居中排版只适合极短口号；一旦副标题讲具体功能，左对齐 + 限制行宽才不会读成文字墙 */
.hero--split { padding-bottom: 64px; }
.hero--split .hero__inner { display: grid; gap: 44px; align-items: center; }

.hero--split .hero__title { font-size: clamp(32px, 5.2vw, 56px); }
/* 行宽压到约 20 个汉字，副标题折成整齐的三行块，消除"字太多"的错觉。
   中文必须用 em 而不是 ch —— ch 量的是数字 0 的宽度（约 .55em），
   30ch 在中文里只有 16 个字，会把副标题折成过窄的四行。 */
.hero--split .hero__sub { max-width: 20em; }

/* 信任标签降级为装饰性锚点，不再和副标题抢阅读权重 */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 40px;
}
.hero__trust li {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-400);
}
.hero__trust svg { color: var(--brand-400); }

@media (min-width: 1000px) {
  .hero--split .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 56px; }
  .hero--split { padding: calc(var(--nav-h) + 72px) 0 88px; }
}
@media (min-width: 1400px) {
  .hero--split .hero__inner { gap: 80px; }
}

/* --- 8.2 首屏视觉：悬浮玻璃卡 (Glass Mockstack) ------------------------- */
/* 三张卡分别隐喻订单贷 / 分账账户 / 财税合规。只呈现机制与状态，不写任何金额或客户数据 */
.mockstack { display: none; }

@media (min-width: 1000px) {
  .mockstack {
    position: relative;
    display: block;
    height: 470px;
    /* 装饰性视觉，屏幕阅读器跳过 */
  }
}
@media (min-width: 1400px) { .mockstack { height: 510px; } }

.mock {
  position: absolute;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 22px 44px -18px rgba(15, 23, 42, .16), 0 2px 8px rgba(15, 23, 42, .04);
  padding: 18px;
}
.mock__head { display: flex; align-items: center; gap: 11px; }
.mock__ico {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 11px;
  color: var(--brand-600); background: var(--brand-100);
}
.mock__label {
  display: block; line-height: 1.4;
  font-size: 11.5px; font-weight: 700; color: var(--ink-400); letter-spacing: .02em;
}
.mock__value {
  display: block; line-height: 1.4;
  font-size: 15px; font-weight: 800; color: var(--ink-900); letter-spacing: -.01em;
}

/* 卡一：订单贷 — 已发货订单形成周转能力 */
.mock--a { top: 0; right: 2%; width: 292px; z-index: 3; animation: float-a 7s var(--ease) infinite; }
.mock__bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 62px; margin-top: 16px; padding: 10px;
  background: var(--surface-alt); border: 1px solid var(--line-soft); border-radius: var(--r-md);
}
.mock__bars span {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-500));
  transform-origin: bottom;
  animation: bar-rise .9s var(--ease) backwards;
}
.mock__bars span:nth-child(1) { height: 38%; opacity: .5; animation-delay: .35s; }
.mock__bars span:nth-child(2) { height: 56%; opacity: .65; animation-delay: .43s; }
.mock__bars span:nth-child(3) { height: 74%; opacity: .8; animation-delay: .51s; }
.mock__bars span:nth-child(4) { height: 100%; animation-delay: .59s; }
.mock__bars span:nth-child(5) { height: 68%; opacity: .8; animation-delay: .67s; }
@keyframes bar-rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* 卡二：分账账户 — 按规则分给多个对象 */
.mock--b {
  top: 172px; left: 0; width: 300px; z-index: 2;
  background: rgba(255, 255, 255, .7);
  animation: float-b 9s var(--ease) 1s infinite;
}
.mock__rows { display: grid; gap: 11px; margin-top: 15px; }
.mock__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mock__row span { font-size: 12.5px; color: var(--ink-500); }
.mock__pill {
  padding: 2px 9px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
}
/* 能力条目：分账虚拟户讲的是"有没有这个能力"，不是可量化的比例。
   进度条会被读成"完成 62%"，语义不对；改成 图标 + 能力 + 结果标签 三段式，
   每行自成一句话，逐行浮现的节奏感由 --i 延迟保留。 */
.mock__caps { display: grid; gap: 9px; margin-top: 15px; }
.mock__cap {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; border-radius: var(--r-sm);
  background: var(--surface-alt); border: 1px solid var(--line-soft);
  animation: cap-in .5s var(--ease-expo) backwards;
}
.mock__cap:nth-child(1) { animation-delay: .6s; }
.mock__cap:nth-child(2) { animation-delay: .74s; }
.mock__cap-ico {
  display: grid; place-items: center; flex: none;
  width: 22px; height: 22px; border-radius: 6px;
  color: var(--brand-600); background: var(--brand-50);
  border: 1px solid var(--brand-100);
}
/* 能力名占满剩余宽度，把结果标签顶到最右，两行标签对齐成一列 */
.mock__cap-txt { flex: 1; font-size: 12.5px; font-weight: 650; color: var(--ink-700); }
@keyframes cap-in { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

/* 卡三：财税合规 — 深色卡压住视觉底部 */
.mock--c {
  bottom: 0; right: 8%; width: 286px; z-index: 1;
  background: linear-gradient(158deg, #16213A, var(--ink-900));
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, .34);
  animation: float-c 8s var(--ease) 2s infinite;
}
.mock--c .mock__ico {
  color: var(--brand-400); background: rgba(245, 133, 31, .14);
  border: 1px solid rgba(245, 133, 31, .22);
}
.mock--c .mock__label { color: rgba(255, 255, 255, .5); }
.mock--c .mock__value { color: #fff; }
.mock__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.mock__tags span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 11.5px; font-weight: 650; color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
}
.mock__tags svg { color: var(--brand-400); }

/* 卡内大数字：一张卡只放一个数，扫一眼就读到 */
.mock__big {
  display: flex; align-items: baseline; gap: 3px; margin-top: 14px;
  font-size: 34px; font-weight: 800; letter-spacing: -.035em; line-height: 1;
  color: var(--brand-600);
}
.mock__big em { font-style: normal; font-size: .42em; font-weight: 750; letter-spacing: 0; }
.mock__hint { margin-top: 8px; font-size: 12.5px; color: var(--ink-500); line-height: 1.55; }
.mock--c .mock__big { color: var(--brand-400); }
.mock--c .mock__hint { color: rgba(255, 255, 255, .58); }
/* 卡内两行对照：市场一行、自家一行，同一个基数 */
.mock__cmp { display: grid; gap: 7px; margin-top: 14px; padding-top: 12px;
  border-top: 1px dashed var(--line); }
.mock__cmp div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-size: 12.5px; color: var(--ink-500); }
.mock__cmp b { font-size: 14.5px; font-weight: 800; color: var(--ink-400); }
.mock__cmp .is-own { color: var(--brand-700); font-weight: 650; }
.mock__cmp .is-own b { color: var(--brand-600); font-size: 16px; }

/* 极轻微的上下浮动，让右侧像活着的系统而不是一张死图 */
@keyframes float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@keyframes float-c { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  .mock { animation: none; }
  .mock__bars span, .mock__cap { animation: none; opacity: 1; transform: none; }
}

/* --- 9. 卡片 (Cards & Bento Grid) ----------------------------------------- */
.bento { display: grid; gap: 20px; }
.bento--2 { grid-template-columns: 1fr; }
.bento--3 { grid-template-columns: 1fr; }
.bento--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .bento--2, .bento--3, .bento--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .bento--3 { grid-template-columns: repeat(3, 1fr); }
  .bento--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
  box-shadow: 0 14px 34px -12px var(--brand-glow), var(--shadow-md);
}
.card__ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: var(--r-md);
  color: var(--brand-600);
  background: linear-gradient(145deg, var(--brand-50), var(--brand-100));
  border: 1px solid var(--brand-100);
}
.card__title { font-size: 18.5px; font-weight: 750; }
.card__text { margin-top: 10px; font-size: 15px; color: var(--ink-500); line-height: 1.72; }
.card__foot { margin-top: auto; padding-top: 18px; }
.card--flat { box-shadow: none; background: var(--surface-alt); border-color: transparent; }
.card--on-alt { background: #fff; }

/* 产品卡：带图位 + 结果句 + 按钮 */
.pcard { padding: 0; overflow: hidden; }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.pcard__name {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--ink-900);
}
.pcard__name .ico {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; color: #fff;
  background: linear-gradient(145deg, var(--brand-400), var(--brand-600));
  box-shadow: 0 4px 10px -2px var(--brand-glow);
}
.pcard__text { margin-top: 12px; font-size: 15px; color: var(--ink-500); line-height: 1.72; }
.pcard__list { margin-top: 16px; display: grid; gap: 8px; }
.pcard__list li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 14px; color: var(--ink-700);
}
.pcard__list svg { color: var(--brand-500); margin-top: 4px; }
.pcard__foot { margin-top: auto; padding-top: 20px; }

/* 能力条目：无边框轻量列 */
.ability { display: flex; gap: 14px; align-items: flex-start; }
.ability__ico {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: var(--r-md);
  color: var(--brand-600); background: var(--brand-50);
  border: 1px solid var(--brand-100);
}
.ability b { display: block; font-size: 16px; font-weight: 750; color: var(--ink-900); }
.ability p { margin-top: 5px; font-size: 14.5px; color: var(--ink-500); line-height: 1.68; }

/* --- 10. 流程步骤 (Process Steps) ----------------------------------------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 720px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .steps--2 { grid-template-columns: repeat(2, 1fr); } }

.step {
  position: relative;
  padding: 24px 24px 24px 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-md); }
.step__n {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; margin-bottom: 14px;
  border-radius: 11px;
  font-size: 15px; font-weight: 800; color: #fff;
  background: linear-gradient(150deg, var(--brand-400), var(--brand-600));
  box-shadow: 0 4px 10px -3px var(--brand-glow);
}
.step b { display: block; font-size: 16.5px; font-weight: 750; color: var(--ink-900); }
.step p { margin-top: 7px; font-size: 14.5px; color: var(--ink-500); line-height: 1.68; }

/* 资金链路：纯 CSS 竖向链条，移动端天然堆叠 */
.chain { display: grid; gap: 0; }
.chain__node {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.chain__node .ico {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 10px;
  color: var(--brand-600); background: var(--brand-50);
}
.chain__node b { font-size: 15.5px; font-weight: 750; color: var(--ink-900); }
.chain__node small { display: block; font-size: 13px; color: var(--ink-500); }
.chain__arrow {
  display: grid; place-items: center;
  height: 26px; color: var(--brand-400);
}
.chain__arrow svg { animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(3px); opacity: 1; } }

/* --- 11. 数据/信任条 (Trust Strip) --------------------------------------- */
.strip {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .strip--4 { grid-template-columns: repeat(4, 1fr); }
  .strip--3 { grid-template-columns: repeat(3, 1fr); }
}
.strip__cell { padding: 26px 24px; background: #fff; }
.strip__cell svg { color: var(--brand-500); }
.strip__cell b { display: block; margin-top: 12px; font-size: 16.5px; font-weight: 750; color: var(--ink-900); }
.strip__cell p { margin-top: 6px; font-size: 14.5px; color: var(--ink-500); line-height: 1.65; }

/* --- 12. 标签 / 合作机构 (Chips & Logo Wall) ------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 650; color: var(--ink-700);
  background: #fff; border: 1px solid var(--line);
}
.chip svg { color: var(--brand-500); }
.chip--brand { color: var(--brand-700); background: var(--brand-50); border-color: var(--brand-100); }

.logowall {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .logowall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .logowall { grid-template-columns: repeat(4, 1fr); } }
.logowall__cell {
  display: grid; place-items: center;
  padding: 20px 18px; min-height: 92px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.logowall__cell:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logowall__cell img {
  max-height: 46px; width: auto;
  filter: saturate(.9);
  transition: filter .25s var(--ease);
}
.logowall__cell:hover img { filter: saturate(1); }

/* --- 13. 图片位 (Image Slots & Placeholders) ------------------------------ */
.media {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface-alt);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--contain img { object-fit: contain; }
.media--16x10 { aspect-ratio: 16 / 10; }
.media--16x9  { aspect-ratio: 16 / 9; }
.media--2x1   { aspect-ratio: 2 / 1; }
.media--4x3   { aspect-ratio: 4 / 3; }
.media--photo { box-shadow: var(--shadow-lg); border: 1px solid var(--line); }

/* 可放大的图给个抓手提示：悬停出现放大镜描边 */
.media--16x9 { cursor: zoom-in; }
.media--16x9 img { cursor: inherit; }

/* --- 13b. 图片放大预览 (Lightbox) ---------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .22s var(--ease);
  cursor: zoom-out;
}
/* hidden 属性的 display:none 会被上面的 display:flex 覆盖，必须显式压回来，
   否则透明遮罩常驻页面、挡住所有点击 */
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img {
  max-width: min(1280px, 100%); max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: scale(.96);
  transition: transform .22s var(--ease);
  cursor: zoom-out;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
}
.media__cap {
  padding: 12px 16px; font-size: 13px; color: var(--ink-500);
  text-align: center; background: var(--surface-alt);
  border-top: 1px solid var(--line);
}

/* --- 14. 真实纪实照片墙 -------------------------------------------------- */
.realtime-gallery {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}
.realtime-gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.realtime-gallery__item img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.realtime-gallery__item--cooperation {
  grid-column: span 4;
  width: min(100%, 420px);
  justify-self: center;
  aspect-ratio: 4 / 3;
  border: 6px solid #fff;
  border-radius: 34px 58px 42px 64px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, .17);
  transform: rotate(-1.2deg);
}
.realtime-gallery__item--cooperation img { object-position: center center; }
.realtime-gallery__item--meeting {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
}
.realtime-gallery__item--group {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  border-radius: 58px 34px 64px 42px;
  transform: rotate(1.1deg);
}
.realtime-gallery__item--group img { object-position: center center; }
.realtime-gallery__item--service {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
}
.realtime-gallery__item--service img { object-fit: contain; }
@media (max-width: 899px) {
  .realtime-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .realtime-gallery__item--cooperation,
  .realtime-gallery__item--meeting,
  .realtime-gallery__item--group { grid-column: span 1; }
  .realtime-gallery__item--cooperation { width: 100%; border-width: 4px; }
  .realtime-gallery__item--meeting,
  .realtime-gallery__item--group { aspect-ratio: 1; }
  .realtime-gallery__item--service { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .realtime-gallery { grid-template-columns: 1fr; }
  .realtime-gallery__item--cooperation,
  .realtime-gallery__item--meeting,
  .realtime-gallery__item--group,
  .realtime-gallery__item--service { grid-column: 1; }
  .realtime-gallery__item--meeting,
  .realtime-gallery__item--group { aspect-ratio: 16 / 10; border-radius: var(--r-lg); }
  .realtime-gallery__item--cooperation { width: 100%; }
}

/* 缺图占位：不是灰块，而是能读出用途和规格的设计位 */
.slot {
  position: relative;
  display: grid; place-items: center; gap: 10px;
  padding: 28px 22px; text-align: center;
  border-radius: var(--r-lg);
  color: var(--brand-700);
  background:
    linear-gradient(135deg, rgba(245, 133, 31, .05), rgba(245, 133, 31, .015)),
    var(--surface-alt);
  border: 1.5px dashed var(--brand-200);
}
.slot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(45deg,
    rgba(245, 133, 31, .035) 0 10px, transparent 10px 20px);
  pointer-events: none;
}
.slot svg { color: var(--brand-400); }
.slot b { font-size: 14.5px; font-weight: 750; color: var(--brand-700); }
.slot code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; color: var(--ink-500);
  padding: 3px 9px; border-radius: var(--r-full);
  background: #fff; border: 1px solid var(--line);
}
.slot small { font-size: 12.5px; color: var(--ink-500); max-width: 34ch; line-height: 1.6; }

/* --- 14. 折叠面板 (FAQ Accordion) ---------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item.is-open { border-color: var(--brand-200); box-shadow: var(--shadow-md); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 19px 22px; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--ink-900);
}
.faq__q:hover { color: var(--brand-600); }
.faq__q svg { color: var(--brand-500); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 22px 20px; font-size: 15px; color: var(--ink-500); line-height: 1.75;
}

/* --- 15. 产品页侧栏 (Solution Sidebar) ----------------------------------- */
.split { display: grid; gap: 34px; }
@media (min-width: 1000px) {
  .split { grid-template-columns: 236px 1fr; gap: 48px; align-items: start; }
  .sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
}

/* 图文并列：正文与视觉各占一半，与侧栏栅格区分开 */
.duo { display: grid; gap: 36px; align-items: center; }
@media (min-width: 940px) {
  .duo { grid-template-columns: 1fr 1fr; gap: 52px; }
  .duo--text-wide { grid-template-columns: 1.08fr .92fr; }
}
.sidebar__title {
  margin-bottom: 12px; font-size: 12.5px; font-weight: 750;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400);
}
.sidebar__nav { display: grid; gap: 4px; }
.sidebar__nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 650; color: var(--ink-700);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.sidebar__nav a:hover { background: var(--brand-50); color: var(--brand-600); }
.sidebar__nav a.is-active {
  color: var(--brand-700); background: var(--brand-50);
  box-shadow: inset 2px 0 0 var(--brand-500);
}
.sidebar__card {
  margin-top: 22px; padding: 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-900), #1E293B);
  color: rgba(255, 255, 255, .78);
}
.sidebar__card b { display: block; color: #fff; font-size: 15.5px; }
.sidebar__card p { margin-top: 8px; font-size: 13.5px; line-height: 1.65; }
.sidebar__card .btn { margin-top: 16px; width: 100%; }

.block { margin-bottom: 56px; }
.block:last-child { margin-bottom: 0; }
.block__title { font-size: clamp(22px, 2.6vw, 28px); }
.block__desc { margin-top: 12px; font-size: 15.5px; color: var(--ink-500); }
.block__note {
  margin-top: 20px; padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  font-size: 14px; color: var(--brand-700); line-height: 1.7;
}
.block__note b { color: var(--brand-700); }

.deflist { display: grid; gap: 14px; }
@media (min-width: 720px) { .deflist--2 { grid-template-columns: repeat(2, 1fr); } }
.deflist__row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--surface-alt);
}
.deflist__row svg { color: var(--brand-500); margin-top: 4px; }
.deflist__row b { font-size: 15px; color: var(--ink-900); }
.deflist__row p { font-size: 14.5px; color: var(--ink-500); line-height: 1.68; }

/* --- 16. CTA 区块 (Call To Action) ---------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  padding: 52px 34px; border-radius: var(--r-xl);
  background: linear-gradient(150deg, #111C33 0%, #0F172A 52%, #1B1005 100%);
  color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute;
  top: -40%; right: -12%; width: 46%; height: 180%;
  background: radial-gradient(circle, rgba(245, 133, 31, .34), transparent 66%);
  filter: blur(52px); pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 660px; }
.cta__title { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.cta__text { margin-top: 14px; font-size: 16px; line-height: 1.75; }
.cta__row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }

/* 标题左 / 说明与按钮右：卡片是通栏宽度，单列会在右侧留一大片空，
   同时把文案挤成又高又窄的一条 */
.cta__split { position: relative; z-index: 1; display: grid; gap: 24px; }
.cta__split .cta__text { max-width: 26em; }
@media (min-width: 900px) {
  .cta__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
    gap: 52px; align-items: center;
  }
  .cta__split .cta__text { margin-top: 0; }
  .cta__split .cta__row { margin-top: 22px; }
}
.cta .btn--ghost {
  color: #fff; background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2); box-shadow: none;
}
.cta .btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .34); }

/* --- 17. 表单 (Forms) ----------------------------------------------------- */
.form { display: grid; gap: 18px; }
@media (min-width: 720px) { .form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.field { display: grid; gap: 7px; }
.field > label { font-size: 14px; font-weight: 650; color: var(--ink-700); }
.field .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: inherit; font-size: 15px; color: var(--ink-900);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 124px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(245, 133, 31, .12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field__hint { font-size: 12.5px; color: var(--ink-400); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-500); }
.checkline input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--brand-500); flex: none; }
.checkline a { color: var(--brand-600); font-weight: 650; text-decoration: underline; text-underline-offset: 2px; }
.captcha-row { display: flex; gap: 10px; }
.captcha-row input { flex: 1; min-width: 0; }
.captcha-row img {
  width: 118px; height: 48px; flex: none;
  object-fit: cover; border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; cursor: pointer;
}

.formcard {
  padding: 30px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.formnote {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 4px; padding: 14px 16px;
  border-radius: var(--r-md); background: var(--surface-alt);
  font-size: 13.5px; color: var(--ink-500); line-height: 1.65;
}
.formnote svg { color: var(--brand-500); margin-top: 2px; }

/* 状态 UI：成功 / 错误 */
.alert {
  display: none; gap: 11px; align-items: flex-start;
  padding: 15px 17px; border-radius: var(--r-md);
  font-size: 14.5px; line-height: 1.6;
}
.alert.is-shown { display: flex; }
.alert--ok { color: #14532D; background: #F0FDF4; border: 1px solid #BBF7D0; }
.alert--ok svg { color: #16A34A; flex: none; margin-top: 2px; }
.alert--err { color: #7F1D1D; background: #FEF2F2; border: 1px solid #FECACA; }
.alert--err svg { color: #DC2626; flex: none; margin-top: 2px; }

/* --- 18. 页脚 (Footer) ---------------------------------------------------- */
.footer {
  padding: 64px 0 28px;
  background: var(--ink-900); color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
}
.footer__grid { display: grid; gap: 38px; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.1fr; } }
.footer__brand img {
  height: 42px; width: auto; margin-bottom: 18px;
  /* Logo 为深色字版，页脚深底上反白 */
  filter: brightness(0) invert(1);
}
.footer__brand p { max-width: 22em; line-height: 1.75; }
/* 一句品牌语，字号比正文大一档，不再当成一段介绍来读 */
.footer__slogan {
  font-size: 17px; font-weight: 600; color: rgba(255, 255, 255, .9);
  letter-spacing: .01em;
}
.footer h4 {
  margin-bottom: 16px; font-size: 14.5px; color: #fff; letter-spacing: .01em;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: rgba(255, 255, 255, .62); transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--brand-400); }
.footer__contact { display: grid; gap: 13px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.footer__contact svg { color: var(--brand-400); margin-top: 3px; }
.footer__qr { display: flex; gap: 14px; margin-top: 18px; }
.footer__qr-item {
  width: 104px; padding: 8px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18); text-align: center;
}
.footer__qr-item img {
  width: 88px; height: 88px; object-fit: contain; border-radius: 8px; background: #fff;
  cursor: zoom-in;
}
.footer__qr-item b { display: block; margin-top: 7px; color: rgba(255, 255, 255, .85); font-size: 12.5px; }

@media (max-width: 899px) {
  .media--scenario-flow { aspect-ratio: 1122 / 1402; }
}
.footer__bar {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between; align-items: center;
  margin-top: 46px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13.5px; color: rgba(255, 255, 255, .5);
}
.footer__bar a { transition: color .2s var(--ease); }
.footer__bar a:hover { color: var(--brand-400); }

/* --- 19. 浮动客服 (Floating Contact) ------------------------------------- */
.floatbar {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: grid; gap: 10px;
}
.floatbar__btn {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: var(--r-full);
  color: #fff;
  background: linear-gradient(160deg, var(--brand-500), var(--brand-600));
  box-shadow: 0 8px 20px -4px var(--brand-glow), var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.floatbar__btn:hover { transform: translateY(-3px) scale(1.04); }
.floatbar__btn--plain {
  color: var(--ink-700); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.floatbar__btn--plain:hover { color: var(--brand-600); }
@media (min-width: 1000px) { .floatbar { right: 26px; bottom: 26px; } }

/* --- 20. 滚动浮现动画 (Scroll Reveal) ------------------------------------ */
/* 轻微失焦 → 对焦，比单纯位移更像"内容正在展开"而不是"图片被推上来" */
.reveal {
  opacity: 0; transform: translateY(24px); filter: blur(4px);
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo),
    filter .8s var(--ease-expo);
}
.reveal.is-in { opacity: 1; transform: none; filter: blur(0px); }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
.reveal[data-d="5"] { transition-delay: .35s; }

/* 同排卡片由 JS 按 DOM 顺序写入 --i，依次进场而不是整排一起弹出。
   仍带 data-d 的元素保留自己的节奏，两套不打架。 */
.reveal[style*="--i"]:not([data-d]) { transition-delay: calc(var(--i, 0) * .09s); }

/* 尊重系统的"减少动态效果"偏好 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; transition-delay: 0s !important; }
}

/* --- 21. 通用工具类 (Utilities) ------------------------------------------ */
/* hidden 属性会被 .field 等类的 display 规则盖掉，全局压回 none */
[hidden] { display: none !important; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }
.mt-8  { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.lead { font-size: 17px; color: var(--ink-500); line-height: 1.78; }
.muted { color: var(--ink-500); }
.small { font-size: 13.5px; }
.prose p + p { margin-top: 16px; }
.prose h3 { margin: 30px 0 10px; font-size: 19px; }
.prose ul { display: grid; gap: 9px; margin-top: 12px; }
.prose ul li { display: flex; gap: 9px; align-items: flex-start; font-size: 15px; color: var(--ink-500); }
.prose ul li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin-top: 9px;
  border-radius: 50%; background: var(--brand-400);
}
/* 接口下发的富文本隐私政策：h2/ol 结构与站内手写的 h3/ul 不同，单独排版 */
.prose--rich p { font-size: 15px; color: var(--ink-500); line-height: 1.78; }
.prose--rich h2 { margin: 30px 0 10px; font-size: 19px; }
.prose--rich ol { display: grid; gap: 9px; margin-top: 12px; padding-left: 22px; }
.prose--rich ol li { font-size: 15px; color: var(--ink-500); line-height: 1.78; }

/* --- 22. 数字牌 (Figures) -------------------------------------------------
   一个数字配一句话。数字必须大到扫一眼就能读到，说明压到一行。
   ------------------------------------------------------------------------- */
.figures { display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 560px) { .figures { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .figures--4 { grid-template-columns: repeat(4, 1fr); }
  .figures--3 { grid-template-columns: repeat(3, 1fr); }
}
.figure { padding: 28px 24px; background: #fff; }
.figure__num {
  display: flex; align-items: baseline; gap: 2px;
  font-size: clamp(32px, 4.4vw, 42px); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.04; color: var(--ink-900);
}
.figure__num em {
  font-style: normal; font-size: .46em; font-weight: 750;
  color: var(--brand-600); letter-spacing: 0;
}
.figure__cap { margin-top: 12px; font-size: 15px; font-weight: 700; color: var(--ink-900); }
.figure__sub { margin-top: 5px; font-size: 13.5px; color: var(--ink-500); line-height: 1.62; }
.figure--brand .figure__num { color: var(--brand-600); }

/* 数字滚动：JS 把 data-count 的目标值滚上来，不支持时直接显示终值 */
.count { font-variant-numeric: tabular-nums; }

/* --- 23. 比价条 (Versus) --------------------------------------------------
   同一件事只摆两个数：市场一条、掌财狸一条。条长按数值等比，读者不用算。
   ------------------------------------------------------------------------- */
.versus { display: grid; gap: 16px; }
@media (min-width: 880px) { .versus--2 { grid-template-columns: repeat(2, 1fr); } }
.vs {
  padding: 26px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.vs:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); }
.vs__topic { display: flex; align-items: center; gap: 9px;
  font-size: 15.5px; font-weight: 750; color: var(--ink-900); }
.vs__topic svg { color: var(--brand-500); flex: none; }
.vs__row { margin-top: 20px; }
.vs__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.vs__who { font-size: 13.5px; font-weight: 650; color: var(--ink-500); }
.vs__val { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-400); }
.vs__bar { position: relative; height: 9px; margin-top: 9px;
  border-radius: var(--r-full); background: var(--line-soft); overflow: hidden; }
.vs__bar i { position: absolute; top: 0; bottom: 0; left: 0; width: 0;
  border-radius: inherit; background: var(--ink-400);
  transition: width 1.05s var(--ease); }
.vs__row--own .vs__who { color: var(--brand-700); }
.vs__row--own .vs__val { font-size: 27px; color: var(--brand-600); }
.vs__row--own .vs__bar i {
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  box-shadow: 0 0 14px -3px var(--brand-glow);
}
.vs__note { display: flex; gap: 8px; align-items: flex-start;
  margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-size: 14px; font-weight: 650; color: var(--ink-700); line-height: 1.6; }
.vs__note svg { color: var(--brand-500); flex: none; margin-top: 3px; }

/* --- 24. 带名称的合作机构墙 (Named Logo Wall) -----------------------------
   只放 Logo 客户认不出是谁，所以每格都补机构全名和它在业务里的角色。
   ------------------------------------------------------------------------- */
.logowall--named { gap: 16px; }
.logowall--named .logowall__cell {
  display: block; padding: 20px 18px 18px; min-height: 0; text-align: center;
}
.logowall--named .logowall__cell img {
  display: block; width: 100%; max-width: 148px; max-height: none;
  margin: 0 auto; aspect-ratio: 2 / 1; object-fit: contain;
}
.pt__name {
  display: block; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px; font-weight: 750; color: var(--ink-900); letter-spacing: -.01em;
}
.pt__role { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-500); line-height: 1.55; }
.logowall__cell:hover .pt__name { color: var(--brand-700); }

/* --- 25. 报价卡 (Price Card) ----------------------------------------------
   首屏右侧用的实心卡：一个大数字 + 一句人话 + 两行对照，不放假数据。
   ------------------------------------------------------------------------- */
.pricebox {
  padding: 24px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 22px 44px -18px rgba(15, 23, 42, .16), 0 2px 8px rgba(15, 23, 42, .04);
}
.pricebox__big {
  display: flex; align-items: baseline; gap: 4px;
  font-size: clamp(40px, 6vw, 54px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(96deg, var(--brand-600), var(--brand-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricebox__unit { font-size: .34em; font-weight: 750; letter-spacing: 0; }
.pricebox__line { margin-top: 12px; font-size: 16.5px; font-weight: 750; color: var(--ink-900); }
.pricebox__pair { display: grid; gap: 9px; margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--line); }
.pricebox__cmp { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 14px; color: var(--ink-500); }
.pricebox__cmp b { font-size: 16px; font-weight: 800; color: var(--ink-400); }
.pricebox__cmp--own { color: var(--brand-700); font-weight: 650; }
.pricebox__cmp--own b { color: var(--brand-600); }

/* --- 26. 问答卡 (Q&A Cards) -----------------------------------------------
   老板最常被问到的问题，直接摆答案，不折叠。问句一眼能扫，答案一句话。
   ------------------------------------------------------------------------- */
.qa { display: grid; gap: 14px; }
/* 平板先分两列，桌面再上三列，避免 700–1039px 区间白占横向空间 */
@media (min-width: 700px)  { .qa--2, .qa--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .qa--3 { grid-template-columns: repeat(3, 1fr); } }
.qa__item {
  padding: 22px 22px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.qa__item:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.qa__q { display: flex; gap: 10px; align-items: flex-start;
  font-size: 16px; font-weight: 750; color: var(--ink-900); line-height: 1.5; }
.qa__q::before {
  content: "问"; flex: none;
  display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 7px; font-size: 12px; font-weight: 750;
  color: #fff; background: linear-gradient(160deg, var(--brand-500), var(--brand-600));
}
.qa__a { margin-top: 12px; padding-left: 32px; font-size: 15px; color: var(--ink-500); line-height: 1.72; }
.qa__a b { color: var(--ink-900); font-weight: 750; }

/* --- 29. 问答分组 (Grouped QA) ------------------------------------------- */
/* 12 条等大方框会读成一堵字墙。分三组、每组一条头条，制造大小层级。 */
.qagrid { display: grid; gap: 30px; }
@media (min-width: 900px)  { .qagrid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }

.qacol { display: grid; gap: 12px; align-content: start; }

.qacol__head {
  display: flex; align-items: center; gap: 11px;
  padding-bottom: 14px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.qacol__no {
  font-size: 13px; font-weight: 800; color: var(--brand-500);
  letter-spacing: .06em; font-variant-numeric: tabular-nums;
}
.qacol__ico {
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--brand-50); color: var(--brand-600);
}
.qacol__ico svg { flex: none; }
.qacol__head b { font-size: 16.5px; font-weight: 800; color: var(--ink-900); }

/* 头条：深底大字，一眼知道这组在讲什么 */
.qacol__lead {
  padding: 22px 22px 20px; border-radius: var(--r-lg);
  background: linear-gradient(158deg, #141F36 0%, #0F172A 62%, #1A1206 100%);
  box-shadow: var(--shadow-md);
}
.qacol__lead-q {
  font-size: 17.5px; font-weight: 800; color: #fff; line-height: 1.45;
  letter-spacing: -.01em;
}
.qacol__lead-a {
  margin-top: 11px; font-size: 14.5px; line-height: 1.74;
  color: rgba(255, 255, 255, .68);
}
.qacol__lead-a b { color: var(--brand-400); font-weight: 750; }

/* 组内其余条目降级：去掉卡片外壳，只用细线分隔，不跟头条抢权重 */
.qacol .qa__item {
  padding: 15px 2px 0; background: none;
  border: 0; border-top: 1px solid var(--line-soft); border-radius: 0;
}
.qacol .qa__item:hover { box-shadow: none; transform: none; border-color: var(--line); }
.qacol .qa__q { font-size: 15px; font-weight: 750; }
.qacol .qa__q::before { width: 20px; height: 20px; font-size: 11.5px; }
.qacol .qa__a { margin-top: 8px; padding-left: 30px; font-size: 14.2px; line-height: 1.7; }

/* --- 27. 首屏行宽统一 (Hero Measure) --------------------------------------
   居中首屏也要压行宽，否则副标题会拉成一整片文字墙。
   中文用 em：ch 量的是数字 0 的宽度（约 .55em），在中文里会缩掉近一半。
   ------------------------------------------------------------------------- */
.hero--center .hero__sub { max-width: 26em; margin-inline: auto; }
.hero__grid .hero__sub { max-width: 22em; }

/* 信任标签（本体定义见 8.1）：产品页也改用它，居中首屏需要居中排列 */
.hero__trust svg { flex: none; }
.hero--center .hero__trust { justify-content: center; }

/* --- 28. 首屏标题左 / 说明右 (Lead Hero) --------------------------------- */
/* 居中排版只在标语极短时成立。副标题一旦要交代四种情况、三个产品，
   居中会把每行的起点都挪一次，读起来像一坨；改成左标题 + 右说明，
   两栏各自左对齐，眼睛只需要两个落点。窄屏自然回落成单栏。 */
/* 这里不要碰 .hero__inner 的宽度：它本身就带 .shell，
   写 var(--shell) 会把首屏卡在 1200px（.shell 在 1600px 以上要放宽到 1400px），
   写 none 又会盖掉 .shell 自己的 max-width 让内容顶到视口边。两种都会和导航错位。 */
.hero--lead .hero__title { font-size: clamp(30px, 4.6vw, 52px); }
.hero--lead .hero__sub { margin-top: 0; max-width: 24em; }
.hero--lead .hero__trust { margin-top: 26px; }
.hero--lead .hero__cta { margin-top: 26px; }

.hero__lead { display: grid; gap: 22px; align-items: start; }
/* 右栏顶部与标题首行大致对齐，不做像素级吸附 */
@media (min-width: 900px) {
  .hero__lead { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: 56px; }
  .hero__lead > div:last-child { padding-top: 8px; }
  .hero--lead .hero__aside {
    padding-left: 26px;
    border-left: 1px solid var(--line-soft);
  }
}
@media (min-width: 1240px) {
  .hero__lead { gap: 72px; }
}

/* 同一套关系用在 section 头部：标题左，说明右 */
.section-head--split { max-width: none; }
/* 20em 让两行字数接近；26em 会把最后两个字甩到第二行 */
.section-head--split .section-desc { margin-top: 0; max-width: 20em; }
@media (min-width: 900px) {
  .section-head--split {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 48px; align-items: end;
  }
  .section-head--split .section-desc { padding-bottom: 4px; }
}

/* 线下 vs 线上 强对比卡片：左灰右橙，叉号对勾号 */
.vsplit { display: grid; gap: 16px; }
@media (min-width: 720px) { .vsplit { grid-template-columns: 1fr 1fr; gap: 18px; } }
.vscard {
  border-radius: var(--r-lg); padding: 26px 24px 24px;
  border: 1px solid var(--line); background: #fff; position: relative;
  display: flex; flex-direction: column;
}
.vscard--off { background: #E2E6EE; border-color: #CFD5E0; }
.vscard--on {
  background: linear-gradient(160deg, var(--brand-500), var(--brand-600));
  border-color: transparent; box-shadow: var(--shadow-brand);
}
.vscard__tag {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: 13px; font-weight: 750; padding: 6px 12px; border-radius: 999px;
}
.vscard--off .vscard__tag { background: #fff; color: var(--ink-700); border: 1px solid #CFD5E0; }
.vscard--off .vscard__tag svg { color: #E5484D; }
.vscard--on .vscard__tag { background: rgba(255,255,255,.22); color: #fff; }
.vscard__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 16px; }
.vscard__item { display: flex; align-items: flex-start; gap: 12px; }
.vscard__ico {
  flex: none; width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center; margin-top: 1px;
}
.vscard--off .vscard__ico { background: #FDE2E2; color: #E5484D; }
.vscard--on .vscard__ico { background: #fff; color: #16A34A; }
.vscard__txt { flex: 1; }
.vscard__txt b { display: block; font-size: 15px; font-weight: 700; }
.vscard__txt em { display: block; font-style: normal; font-size: 20px; font-weight: 850; letter-spacing: -.01em; margin-top: 3px; }
.vscard--off .vscard__txt b { color: var(--ink-700); }
.vscard--off .vscard__txt em { color: var(--ink-900); }
.vscard--on .vscard__txt b { color: rgba(255,255,255,.82); }
.vscard--on .vscard__txt em { color: #fff; }

/* --- 30. 首屏打字机 (Hero Typewriter) -------------------------------------
   静态前缀 + 动态轮播后半句。首句直接写在 HTML 里，不靠 JS 生成：
   爬虫和禁用 JS 的浏览器都能读到完整标题，JS 只负责后续轮播。
   四句词长统一 8 字，配合 h1 自带的 strut 行高，删字到空也不会跳行。
   ------------------------------------------------------------------------- */
.typer__caret {
  display: inline-block;
  width: .055em; height: .82em;
  margin-left: .06em;
  vertical-align: -.06em;
  border-radius: 1px;
  background: var(--brand-500);
  opacity: 0;
}
/* 只有 JS 真正接管轮播后才亮光标，否则静态标题后面挂一根不动的竖线很像渲染错误 */
.typer.is-live .typer__caret { animation: caret 1s steps(1, end) infinite; }
@keyframes caret { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .typer__caret { display: none; }
}

/* --- 31. 卡片探照灯 (Spotlight Cards) ------------------------------------
   鼠标在卡片上移动时，一束品牌橙柔光跟随光标，同时点亮 1px 边框。
   坐标由 JS 写进 --mx / --my，两层光晕全部走 CSS，不靠 JS 逐帧改样式。
   触屏设备没有悬停，直接不生成这两层，省掉无谓的合成层。
   ------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .spot { isolation: isolate; }
  .spot::before, .spot::after {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    opacity: 0; transition: opacity .35s var(--ease);
  }
  /* 内层：大范围柔光，照亮卡片内部文字 */
  .spot::before {
    z-index: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
      rgba(245, 133, 31, .09), transparent 42%);
  }
  /* 外层：同一束光只留边缘 1px，卡片轮廓跟着光标亮 */
  .spot::after {
    z-index: 1; padding: 1px;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(245, 133, 31, .55), transparent 45%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }
  .spot.is-lit::before, .spot.is-lit::after { opacity: 1; }
  /* 卡片正文必须压在光晕之上，否则文字会被那两层盖住 */
  .spot > * { position: relative; z-index: 2; }
}

/* --- 32. 主按钮流光 (Button Sheen) ---------------------------------------- */
/* 悬停时一道白色高光扫过，只用白色透明度，不引入新色 */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  transform: skewX(-18deg); pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .28), transparent);
}
.btn--primary:hover::after { animation: sheen .75s var(--ease); }
@keyframes sheen { to { left: 130%; } }

@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover::after { animation: none; }
}

/* --- 33. 触屏物理反馈 (Touch Active States) --------------------------------
   移动端没有 hover，所有卡片和按钮的"按压感"靠 :active 实现。
   缩短 transition 让动效贴紧手指，松手时弹性回正靠 ease-expo 的尾段完成。
   只在 hover:none 设备启用，桌面端的 :active 已由全局 .btn:active 处理。
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
  .card, .step, .vscard, .qa {
    transition: transform .15s var(--ease-expo), box-shadow .15s var(--ease-expo);
    will-change: transform;
    transform: translateZ(0);
  }
  .card:active, .step:active, .vscard:active, .qa:active {
    transform: scale(.96) translateY(2px);
    box-shadow: var(--shadow-sm);
  }
  .btn--primary:active {
    transform: scale(.93);
    box-shadow: inset 0 3px 8px rgba(0,0,0,.12);
  }
  .btn--ghost:active, .btn--light:active {
    transform: scale(.95);
  }
}

/* --- 34. 应用场景场景卡堆叠 (Sticky Stacking · 移动端) -------------------
   移动端 4 张场景卡用 position:sticky 堆成扑克牌式：
   卡片依次吸顶，后牌覆盖前牌，滚动时前牌缩小变暗让出空间。
   JS 监听 getBoundingClientRect 并写入 .is-stacked，
   CSS 只负责过渡，不依赖任何 keyframe，性能 = GPU 合成层。
   900px 以上恢复正常网格布局。
   -------------------------------------------------------------------------- */
@media (max-width: 899px) {
  .scene-stack { display: flex; flex-direction: column; gap: 0; }
  .scene-stack > .pcard {
    position: sticky;
    top: calc(var(--nav-h) + 12px);
    margin-bottom: 16px;
    border-top: 1px solid rgba(255,255,255,.7);
    transform-origin: top center;
    transition: transform .4s var(--ease-expo), opacity .4s var(--ease-expo),
      filter .4s var(--ease-expo);
    will-change: transform, opacity, filter;
  }
  .scene-stack > .pcard.is-stacked {
    transform: scale(.93) translateY(-8px);
    opacity: .72;
    filter: brightness(.88);
  }
}
@media (min-width: 900px) {
  /* 桌面端还原为网格，scene-stack 当普通容器。
     列数用 auto-fit 而不是写死 repeat(4)：场景卡增删后不会留空位，
     minmax 下限保证卡片不会被挤得过窄。 */
  .scene-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .scene-stack > .pcard { position: static; margin-bottom: 0; border-top: none; }
}

/* --- 35. 滚动跟随环境光晕 (Scroll-Driven Glow · 仅移动端) ----------------
   桌面端光晕已有 drift 漂浮动画，移动端用 JS 把滚动进度映射到 Y 轴平移，
   让每个区段进入视口时都有"空间在呼吸"的感觉。
   只改 transform，不动 blur 半径（变 blur 每帧重算，低端机必掉帧）。
   -------------------------------------------------------------------------- */
@media (max-width: 899px) {
  .glow-field .glow { will-change: transform; }
}

/* --- 36. 关于页版图水印 (Spark Network Map) -------------------------------
   右栏文字重量轻、左栏大标题重量高，页面重心偏左显空。
   在右栏文字底层垫一张低透明度中国版图，13 个城市节点做呼吸光晕，
   补平视觉、又暗示"全国布局"。版图轮廓与城市点由同一投影生成，坐标天然对齐。
   -------------------------------------------------------------------------- */
.hero__aside--map { position: relative; }
/* 文字层浮在版图之上，保证可读性 */
.hero__aside-body { position: relative; z-index: 2; }

/* 桌面端：右栏撑满整行高度，地图才有足够空间完整显示、不被 hero 底边裁切 */
@media (min-width: 900px) {
  .hero--lead .hero__aside--map { align-self: stretch; }
}

.cmap {
  position: absolute; z-index: 0; pointer-events: none;
  /* 放大铺开：向左右各外扩，撑破右栏边界，地图更大更醒目 */
  top: -8%; bottom: -8%; left: -14%; right: -10%;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
}
/* height:100% + preserveAspectRatio=meet：整幅地图缩放进栏内并居中，绝不裁切。
   max-width 放到 720（约 +30%），配合外扩定位让版图明显变大 */
.cmap svg { display: block; width: 100%; height: 100%; max-width: 720px; overflow: visible; }
/* 陆地填充：底部纯色暗纹不遮字，描边加重让轮廓看得清 */
.cmap__land {
  fill: rgba(245, 133, 31, .10);
  stroke: rgba(245, 133, 31, .42);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

/* 城市呼吸圈：向外扩散淡出，错峰起跳（--d 由内联样式逐点递增） */
.cmap__ring {
  fill: var(--brand-500);
  transform-box: fill-box; transform-origin: center;
  animation: cmap-ping 3.4s cubic-bezier(0, 0, .2, 1) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes cmap-ping {
  0%      { transform: scale(.35); opacity: .55; }
  70%,100%{ transform: scale(2.1); opacity: 0; }
}

/* 城市实心点：总部级更亮更大，服务节点次之 */
.cmap__core { fill: var(--brand-600); }
.cmap__core--big { fill: var(--brand-600); }
.cmap__core--sm  { fill: var(--brand-500); opacity: .8; }

/* 移动端：地图铺满整个右栏区域垫在文字正后方（水印），文字浮在上层。
   inset:0 让地图填满 hero__aside 的完整高度（badge 到 trust 列表），
   不再用 padding 把地图推成独立下段。 */
@media (max-width: 899px) {
  .cmap {
    inset: 0; left: 0; right: 0;
    align-items: center; justify-content: center;
    opacity: 1;
  }
  .cmap svg { max-width: 380px; }
  /* 轮廓加重到能看清"鸡"的外形，填充仍偏淡不压文字 */
  .cmap__land { fill: rgba(245, 133, 31, .12); stroke: rgba(245, 133, 31, .58); stroke-width: 1.6; }
}

/* 尊重"减少动态效果"：停掉呼吸圈，静态点仍在 */
@media (prefers-reduced-motion: reduce) {
  .cmap__ring { animation: none; opacity: .18; }
}
