/* ============================================================
   本草榜官网 · 由 Ardot 设计稿还原
   设计 token 全部取自画布节点实际取值
   ============================================================ */

/* 标题衬线字体（子集自托管，仅覆盖本站用字，700/900 两档字重） */
@font-face {
  font-family: "Noto Serif SC";
  src: url("fonts/NotoSerifSC-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif SC";
  src: url("fonts/NotoSerifSC-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* 底色 */
  --page-bg:      #F7F4EC;
  --panel-bg:     #F1EDDF;
  --stage-bg:     #F5EFDC;
  --chart-bg:     #F4F8F0;
  --white:        #FFFFFF;

  /* 深绿 */
  --deep-1:       #173B2F;
  --deep-2:       #0C2B1F;
  --deep-cta-1:   #143628;
  --deep-cta-2:   #0B2318;
  --deep-panel:   #0F3123;
  --deep-footer:  #0B2318;
  --green:        #31A450;
  --green-ink:    #1F7A43;

  /* 金 */
  --gold:         #FAC63C;
  --gold-ink:     #9A7B1A;

  /* 赭石 */
  --ochre:        #B4552D;
  --ochre-ink:    #A34E27;

  /* 文字 */
  --ink-title:    #1F2A20;
  --ink-body:     #33402F;
  --ink-sub:      #6B7263;
  --ink-mute:     #98A090;

  /* 涨跌（中国市场惯例） */
  --up:           #BE3B2A;
  --down:         #0E5A33;

  /* 线条 */
  --line:         #E6E0CE;

  /* 字体 */
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --sans:  "Sarasa Gothic SC", "PingFang SC", "Hiragino Sans GB",
           "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* 通用容器 */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* 通用文字层级 */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold-ink);
}
.h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.35;
  color: var(--ink-title);
}

/* 胶囊：痛点 / 方案 */
.cap {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  flex-shrink: 0;
}
.cap-pain  { background: rgba(180, 85, 45, .12); color: var(--ochre-ink); }
.cap-fix   { background: rgba(49, 164, 80, .12); color: var(--green-ink); }

/* 标签 pill */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-body);
}
.chip.bare {
  background: var(--panel-bg);
  border-color: transparent;
}

/* ============================================================
   顶部导航
   ============================================================ */
.nav {
  background: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-logo { width: 150px; height: 60px; border-radius: 8px; overflow: hidden; }
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }

.nav-menu { display: flex; gap: 40px; padding-left: 56px; flex: 1; }
.nav-menu a {
  font-size: 15px;
  color: var(--ink-body);
  transition: color .18s;
}
.nav-menu a:hover { color: var(--green-ink); }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-gzh { font-size: 14px; color: var(--ink-sub); }
.btn-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.nav-divider { height: 1px; background: var(--line); }

/* ============================================================
   首屏
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--deep-1) 0%, var(--deep-2) 100%);
  padding-top: 80px;
  padding-bottom: 88px;
}
.hero-row {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 26px; }

.badge {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .078);
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.hero-brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 60px;
  line-height: 1.2;
  color: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.32;
  color: var(--white);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .059);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
}

.qr-card {
  width: 391px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}
.qr-card img { width: 124px; height: 124px; border-radius: 10px; flex-shrink: 0; }
.qr-copy { display: flex; flex-direction: column; gap: 8px; }
.qr-copy strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-title);
}
.qr-copy span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-sub);
}

/* 首屏手机展示区（绝对定位叠放） */
.hero-stage {
  position: relative;
  width: 620px;
  height: 580px;
  flex-shrink: 0;
}
.phone {
  position: absolute;
  overflow: hidden;
  background: var(--white);
}
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-a {
  left: 64px; top: 12px;
  width: 278px; height: 556px;
  border-radius: 32px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, .45);
}
.phone-b {
  left: 330px; top: 64px;
  width: 248px; height: 508px;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .40);
  z-index: 2;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .30);
}
.float-market { left: 42px; top: 203px; width: 198px; display: flex; flex-direction: column; gap: 6px; z-index: 3; }
.float-market small { font-size: 12px; color: var(--ink-sub); }
.float-market b { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1.3; color: var(--up); }
.float-market i { font-style: normal; font-size: 11px; color: var(--ink-mute); }

.float-bid { left: 394px; top: 383px; width: 200px; display: flex; flex-direction: column; gap: 8px; z-index: 4; }
.float-bid strong { font-size: 13px; font-weight: 600; color: var(--ink-title); }
.float-bid span { font-size: 12px; color: var(--ink-sub); }
.float-bid em {
  align-self: flex-start;
  font-style: normal;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(250, 198, 60, .18);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-ink);
}

/* ============================================================
   痛点与解决方案区
   ============================================================ */
.features {
  background: var(--page-bg);
  padding-top: 88px;
  padding-bottom: 72px;
}
.features .wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.features-desc { font-size: 16px; color: var(--ink-sub); }

.feat-row {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
  text-align: left;
}
.feat-row.top1 { padding-top: 56px; }
.feat-row.top2 { padding-top: 72px; }
.feat-row.reverse { flex-direction: row-reverse; }

.feat-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.feat-head { display: flex; align-items: center; gap: 14px; }
.feat-icon {
  width: 68px; height: 68px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 34px; height: 34px; }
.icon-green { background: rgba(49, 164, 80, .10); }
.icon-green svg { stroke: var(--green-ink); }
.icon-gold  { background: rgba(250, 198, 60, .15); }
.icon-gold svg { stroke: var(--gold-ink); }

.feat-titles { display: flex; flex-direction: column; gap: 4px; }
.feat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gold-ink);
}
.feat-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.3;
  color: var(--ink-title);
}
.line { display: flex; align-items: center; gap: 10px; }
.line.pain p { font-size: 15px; line-height: 1.7; color: var(--ink-sub); }
.line.fix  p { font-size: 16px; line-height: 1.7; color: var(--ink-body); }

.feat-stage {
  position: relative;
  width: 500px; height: 520px;
  border-radius: 24px;
  background: var(--stage-bg);
  flex-shrink: 0;
}
.feat-stage .phone-shot {
  position: absolute;
  left: 140px; top: 30px;
  width: 220px; height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20, 51, 36, .28);
}
.feat-stage .phone-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* 卡片网格 */
.grid { display: flex; flex-direction: column; gap: 24px; width: 100%; padding-top: 72px; }
.grid-row { display: flex; gap: 24px; }
.card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: left;
}
.card-head { display: flex; align-items: center; gap: 12px; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-ink);
}
.card-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink-title);
}
.card .line { gap: 10px; }
.card .line.pain p { font-size: 14px; color: var(--ochre-ink); }
.card .line.fix  p { font-size: 15px; color: var(--ink-body); }

.card-visual {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--chart-bg);
}
.card-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.card-visual.chart { display: flex; align-items: center; justify-content: center; }
.card-visual.chart svg { width: 100%; height: 100%; display: block; }

.gap-seal {
  background: var(--panel-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 250px;
  border-radius: 12px;
}
.gap-seal svg { width: 92px; height: 92px; }
.gap-seal b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-title);
}
.gap-seal span { font-size: 14px; color: var(--ink-sub); }
.gap-seal i { font-style: normal; font-size: 12px; font-weight: 600; color: var(--gold-ink); }

/* ============================================================
   数据看板
   ============================================================ */
.dashboard {
  background: var(--deep-panel);
  padding-top: 88px;
  padding-bottom: 88px;
}
.dashboard .wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dash-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
}
.dash-head h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 38px;
  line-height: 1.35;
  color: var(--white);
  margin: 14px 0;
}
.dash-head p { font-size: 15px; color: rgba(255, 255, 255, .82); }
.live {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .059);
  border: 1px solid rgba(255, 255, 255, .20);
  font-size: 13px;
  color: #8FD6A8;
  white-space: nowrap;
  flex-shrink: 0;
}

.dash-body { display: flex; gap: 32px; align-items: flex-start; }
.metrics { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.metric-row { display: flex; gap: 20px; }
.metric {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
}
.metric b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--gold);
}
.metric span { font-size: 14px; color: rgba(255, 255, 255, .85); }

.rank-card {
  width: 380px;
  height: 304px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
}
.rank-head { display: flex; align-items: center; justify-content: space-between; }
.rank-head h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-title);
}
.rank-head em {
  font-style: normal;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(250, 198, 60, .20);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-ink);
}
.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item { display: flex; align-items: center; gap: 12px; }
.rank-no {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.rank-no.top { background: var(--ochre); color: var(--white); }
.rank-no.plain { background: #EEEBDD; color: var(--ink-sub); }
.rank-item .name { font-size: 15px; font-weight: 600; color: var(--ink-title); white-space: nowrap; }
.rank-item .origin { flex: 1; font-size: 12px; color: var(--ink-mute); }
.rank-item .delta { font-family: var(--serif); font-weight: 700; font-size: 15px; white-space: nowrap; }
.delta.up { color: var(--up); }
.delta.down { color: var(--down); }

/* ============================================================
   用户证言
   ============================================================ */
.stories {
  background: var(--panel-bg);
  padding-top: 88px;
  padding-bottom: 88px;
}
.stories .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}
.story-row { display: flex; gap: 24px; width: 100%; text-align: left; }
.story {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}
.story p { font-size: 16px; line-height: 1.75; color: var(--ink-body); }
.story-by { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
}
.avatar.g { background: var(--green); }
.avatar.o { background: var(--ochre); }
.avatar.d { background: #123B2A; }
.story-meta { display: flex; flex-direction: column; gap: 3px; }
.story-meta strong { font-size: 15px; font-weight: 600; color: var(--ink-title); }
.story-meta span { font-size: 12px; color: var(--ink-mute); }

/* ============================================================
   底部转化
   ============================================================ */
.cta {
  background: linear-gradient(180deg, var(--deep-cta-1) 0%, var(--deep-cta-2) 100%);
  padding-top: 96px;
  padding-bottom: 96px;
}
.cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.3;
  color: var(--white);
}
.cta-sub { font-size: 16px; color: rgba(255, 255, 255, .85); }
.cta-qrs { display: flex; justify-content: center; gap: 40px; }
.qr-box {
  width: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
}
.qr-box.ghost { background: var(--white); border: 1px solid rgba(255, 255, 255, .25); }
.qr-box img { width: 160px; height: 160px; border-radius: 10px; }
.qr-box.ghost img { border-radius: 8px; }
.qr-box span { font-size: 13px; color: var(--ink-body); }
.qr-box span strong { font-weight: 600; }
.cta-contact { font-size: 14px; color: rgba(255, 255, 255, .75); }

/* ============================================================
   页脚
   ============================================================ */
.footer {
  background: var(--deep-footer);
  padding-top: 56px;
  padding-bottom: 28px;
}
.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  width: 124px; height: 40px;
  border-radius: 8px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  max-width: 300px;
}
.footer-cols {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--gold); }
.footer-col a { font-size: 13px; color: rgba(255, 255, 255, .80); transition: color .18s; }
.footer-col a:hover { color: var(--gold); }
.footer-line { height: 1px; background: rgba(255, 255, 255, .10); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

/* ============================================================
   移动端适配（≤ 900px）
   ============================================================ */
.mobile-only { display: none; }

@media (max-width: 900px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  /* 导航 */
  .nav { padding-top: 14px; padding-bottom: 14px; }
  .nav-logo { width: 107px; height: 46px; border-radius: 6px; }
  .btn-cta { padding: 9px 16px; }

  /* 首屏 */
  .hero { padding: 40px 24px 36px; }
  .hero-row { display: block; }
  .hero-copy { gap: 20px; }
  .badge { padding: 7px 14px; font-size: 12px; }
  .hero-brand { font-size: 38px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 14px; color: rgba(255, 255, 255, .72); }
  .trust-row { gap: 8px; }
  .trust { padding: 7px 12px; font-size: 12px; }
  .qr-card { width: 100%; padding: 12px; gap: 12px; border-radius: 14px; }
  .qr-card img { width: 92px; height: 92px; }
  .qr-copy strong { font-size: 15px; }
  .qr-copy span { font-size: 12px; }

  /* 移动端首屏轮播（全宽滚动轮播） */
  .m-slider { margin-top: 20px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .m-track {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 16px;
  }
  .m-track::-webkit-scrollbar { display: none; }
  .m-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 108 / 223;
    scroll-snap-align: center;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    object-position: top center;
  }
  .m-dots { display: flex; gap: 6px; justify-content: center; }
  .m-dots i { width: 6px; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .35); transition: width .25s ease, background .25s ease; cursor: pointer; }
  .m-dots i.on { width: 18px; background: var(--gold); }

  /* 功能区 */
  .features { padding: 56px 20px 48px; }
  .features .wrap { gap: 14px; align-items: flex-start; text-align: left; }
  .features .eyebrow { font-size: 11px; }
  .features .h2 { font-size: 26px;margin: 14px 0; }
  .features-desc { display: none; }
  .feat-row, .grid, .grid-row { display: none; }
  .m-cards { display: flex; flex-direction: column; gap: 14px; width: 100%; }
  .m-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
  }
  .m-card .card-icon { width: 40px; height: 40px; border-radius: 10px; }
  .m-card .card-icon svg { width: 20px; height: 20px; }
  .m-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
  .m-card-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--ink-title);
  }
  .m-line { display: flex; align-items: flex-start; gap: 8px; }
  .m-line .cap { padding: 3px 8px; border-radius: 5px; font-size: 11px; }
  .m-line p { flex: 1; min-width: 0; font-size: 12px; line-height: 1.65; }
  .m-line.pain p { color: var(--ochre-ink); }
  .m-line.fix p { font-size: 13px; color: var(--ink-body); }
  .m-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .m-chips .chip { padding: 4px 10px; border-radius: 999px; font-size: 11px; background: var(--panel-bg); border-color: transparent; }

  /* 看板 */
  .dashboard { padding: 56px 20px; }
  .dashboard .wrap { gap: 24px; }
  .dash-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dash-eyebrow { font-size: 11px; }
  .dash-head h2 { font-size: 26px; margin: 8px 0; }
  .dash-body { flex-direction: column; gap: 14px; }
  .metrics { gap: 14px;  width:100%;}
  .metric-row { gap: 14px; }
  .metric { padding: 18px; gap: 6px; }
  .metric b { font-size: 28px; }
  .metric span { font-size: 12px; }
  .rank-card { width: 100%; height: auto; padding: 18px; gap: 12px; border-radius: 14px; }

  /* 证言 */
  .stories { padding: 56px 20px 48px; }
  .stories .wrap { gap: 16px; align-items: flex-start; text-align: left; }
  .stories .eyebrow { font-size: 11px; }
  .stories .h2 { font-size: 26px; }
  .story-row { flex-direction: column; gap: 14px; }
  .story { padding: 20px; gap: 14px; border-radius: 14px; }
  .story p { font-size: 15px; }

  /* 转化 */
  .cta { padding: 56px 24px; }
  .cta .wrap { gap: 18px; }
  .cta h2 { font-size: 30px; }
  .cta-sub { font-size: 14px; }
  .cta-qrs { gap: 16px; }
  .qr-box { width: 150px; padding: 14px; gap: 10px; border-radius: 14px; }
  .qr-box img { width: 122px; height: 122px; border-radius: 8px; }
  .qr-box span { font-size: 12px; }

  /* 页脚 */
  .footer { padding: 36px 20px 24px; }
  .footer .wrap { gap: 20px; align-items: center; text-align: center; }
  .footer-top { flex-direction: column; align-items: center; gap: 20px; }
  .footer-brand { align-items: center; gap: 12px; }
  .footer-brand p { font-size: 12px; }
  .footer-cols { display: flex; gap: 24px; }
  .footer-col { gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: 11px; }
}
