/* 自托管 IBM Plex Sans(拉丁/数字,4字重·latin子集·各45KB):修"声明了却没加载"——
   数字终于统一为设计字体且与 PDF 报告同族;不再依赖 Google(华人网络更稳)。中文仍 Noto(二步再子集化自托管)。 */
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:400;font-display:swap;
  src:url('/static/fonts/ibm-plex-sans-400-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+20AC,U+2013,U+2019;}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:500;font-display:swap;
  src:url('/static/fonts/ibm-plex-sans-500-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+20AC,U+2013,U+2019;}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:600;font-display:swap;
  src:url('/static/fonts/ibm-plex-sans-600-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+20AC,U+2013,U+2019;}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:700;font-display:swap;
  src:url('/static/fonts/ibm-plex-sans-700-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+20AC,U+2013,U+2019;}
/* ImmoExpert H5 设计系统 —— 与报告同语言（绿 #15795b、克制中性、tabular 数字） */
:root{
  --ink:#1b211f; --muted:#5f6b66; --faint:#8a938f; --line:#e4e8e6; --line2:#d8dddb;
  --bg:#f4f6f5; --card:#fff; --accent:#15795b; --accent-soft:#e7f1ec; --accent-ring:#cfe6dc;
  --warn:#b0524b; --warn-soft:#fbeeec;
  --r-sm:6px; --r:8px; --r-lg:10px;
  --shadow-card:0 2px 14px rgba(27,33,31,.07); --shadow-pop:0 -4px 16px rgba(27,33,31,.08);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'IBM Plex Sans','Noto Sans SC',-apple-system,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Segoe UI",sans-serif;
  font-variant-numeric:tabular-nums; line-height:1.6; -webkit-font-smoothing:antialiased;
}
.wrap{max-width:560px; margin:0 auto; padding:28px 20px 40px;}
a{color:var(--accent); text-decoration:none}

/* 排版 */
.eyebrow{font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); font-weight:600;}
.topline{display:flex; align-items:baseline; justify-content:space-between; gap:8px; flex-wrap:wrap;}
.brandmark{font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--accent); font-weight:600; white-space:nowrap;}
h1{font-size:23px; line-height:1.3; font-weight:700; margin:10px 0 8px;}
.sub{color:var(--muted); font-size:14px; line-height:1.55; margin:0;}
.sec-title{font-size:11.5px; letter-spacing:.05em; font-weight:600; color:var(--muted); margin:0;}
.note{color:var(--faint); font-size:12px;}
.center{text-align:center}

/* 徽章 / chip */
.badge{display:inline-flex; align-items:center; gap:6px; padding:5px 10px; border-radius:999px;
  background:var(--accent-soft); color:var(--accent); font-size:11.5px; font-weight:600;}
.badge svg{width:14px;height:14px}

/* 卡片 */
.card{background:var(--card); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:18px; box-shadow:var(--shadow-card);}
.stack{display:flex; flex-direction:column;}
.gap-s{gap:8px} .gap-m{gap:14px} .gap-l{gap:18px}

/* 按钮 */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; width:100%;
  background:var(--accent); color:#fff; border:0; border-radius:var(--r); padding:14px 18px;
  font-size:16px; font-weight:700; font-family:inherit; cursor:pointer;
  transition:transform .08s ease, filter .15s ease;}
.btn:hover{filter:brightness(1.05)}
.btn:active{transform:translateY(1px) scale(.985)}
.btn[disabled]{opacity:.7; cursor:default}
.btn-outline{background:var(--accent-soft); color:var(--accent); border:1px solid var(--accent);}
.btn-outline:hover{filter:brightness(.99)}

/* 表单：标签在上 + 聚焦环（无占位符当标签） */
.form-q{font-size:15px; font-weight:700; line-height:1.45; color:var(--ink)}
.form-q-hint{font-size:12px; font-weight:400; color:var(--faint); line-height:1.4; margin-top:5px}
.field{display:flex; flex-direction:column; gap:6px; width:100%}
.field>label{font-size:12.5px; font-weight:500; color:var(--muted)}
.field .hint{font-size:11px; color:var(--faint)}
.field input,.field select{width:100%; padding:12px 13px; font-size:16px; font-family:inherit;
  color:var(--ink); background:#fff; border:1px solid var(--line2); border-radius:var(--r-sm);
  appearance:none; transition:border-color .15s ease, box-shadow .15s ease;}
.field input:focus,.field select:focus{outline:0; border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-ring);}
.field input::placeholder{color:#aab2ae; font-weight:400;}
.field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235f6b66' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; padding-right:36px;}

/* 速览：街区均价 */
.snap .k{color:var(--muted); font-size:13px}
.snap .v{font-size:26px; font-weight:700; color:var(--accent); line-height:1.1; margin:4px 0}

/* 市场脉搏 */
.pulse .range-row{display:flex; align-items:center; gap:8px}
.pulse .range-row .end{font-size:13px; font-weight:700; color:var(--ink)}
.pulse .track{flex:1; height:14px; border-radius:999px; background:var(--accent-soft);
  display:flex; align-items:center; justify-content:center;}
.pulse .q{width:20px; height:20px; border-radius:999px; background:var(--accent);
  color:#fff; font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center;}
.pulse .cap{font-size:12px; color:var(--muted)}
.pulse .cap b{color:var(--accent)}
.pulse .trend-head{display:flex; justify-content:space-between; align-items:center}
.pulse .yoy{font-size:15px; font-weight:700; color:var(--accent)}
.bars{display:flex; align-items:flex-end; gap:18px}
.bars .col{display:flex; flex-direction:column; align-items:center; gap:4px}
.bars .col .pm{font-size:11px; font-weight:600; color:var(--ink)}
.bars .col .bar{width:30px; background:var(--accent); border-radius:4px 4px 0 0}
.bars .col .yr{font-size:10.5px; color:var(--muted)}

/* 付费预告 / 提示块 */
.paynote{display:flex; gap:9px; align-items:flex-start; padding:13px; border-radius:var(--r);
  background:var(--accent-soft);}
.paynote svg{width:15px;height:15px;flex:0 0 auto;margin-top:2px;color:var(--accent)}
.paynote .t1{font-size:12.5px; color:var(--ink); line-height:1.45}
.paynote .t2{font-size:12.5px; color:var(--muted); line-height:1.45}

/* 价值点：报告式条目行(词条 + 释义，发丝线分隔)，替代图标块列表 */
.vrows{display:flex; flex-direction:column; margin:0}
.vrow{display:flex; gap:16px; padding:12px 2px; border-top:1px solid var(--line)}
.vrow:first-child{border-top:0}
.vrow dt{flex:0 0 60px; font-size:13px; font-weight:700; color:var(--ink); line-height:1.55}
.vrow dd{margin:0; font-size:13px; color:#2a322e; line-height:1.55}

/* 首页表单卡：与报告卡同语言(顶部 3px 品牌绿) */
.card-accent{border-top:3px solid var(--accent)}

/* 手机端价格行：左侧细绿边，白底，不再用整块浅绿高亮 */
.price-line{padding:12px 14px; background:var(--card); border:1px solid var(--line);
  border-left:3px solid var(--accent); border-radius:var(--r-sm)}
.price-line .pl-main{margin:0; font-size:13.5px; font-weight:500; color:var(--ink); line-height:1.5}
.price-line .pl-main b{color:var(--accent)}
.price-line .pl-main s{color:var(--faint); font-weight:400}
.price-line .pl-sub{margin:4px 0 0; font-size:12.5px; color:var(--muted); line-height:1.5}

/* 手机端报告纸样横滑条 */
.shots{display:flex; flex-direction:column; gap:9px}
.shots-head{margin:0; font-size:14px; font-weight:700; color:var(--ink)}
.shots-scroll{display:flex; gap:10px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:2px 2px 8px; -webkit-overflow-scrolling:touch}
.shots-scroll img{width:44%; flex:0 0 auto; scroll-snap-align:start;
  border:1px solid var(--line2); border-radius:4px; background:#fff;
  box-shadow:0 2px 10px rgba(27,33,31,.08)}
/* 样例图脱敏(照片模糊+地址灰条)已直接烤进 static/shots/*.jpg,无需 CSS 遮罩 */

/* 付费墙（报告末尾静态面板；底部 sticky CTA 由 app.py 的 slim 条负责） */
.upsell{background:var(--card); border-top:2px solid var(--accent);
  padding:22px 18px 28px; scroll-margin-top:56px;}
.upsell .inner{max-width:520px; margin:0 auto; text-align:center; display:flex;
  flex-direction:column; align-items:center; gap:9px}
.upsell .price{font-size:17px; font-weight:700; color:var(--accent)}
.upsell .qr{width:120px;height:120px;border-radius:var(--r);object-fit:cover;
  border:1px solid var(--line2); background:#f7faf9}
.upsell .hint{font-size:13px; color:var(--ink)}
.upsell .flow{width:100%; padding:11px; border-radius:var(--r-sm); background:var(--accent-soft); text-align:left}
.upsell .flow .f1{font-size:11.5px; color:var(--ink); line-height:1.5}
.upsell .flow .f2{font-size:11px; color:var(--muted); line-height:1.45; margin-top:3px}
.upsell form{display:flex; gap:6px; width:100%}
.upsell form input{flex:1; padding:11px 12px; font-size:15px; font-family:inherit;
  border:1px solid var(--line2); border-radius:var(--r-sm);}
.upsell form input:focus{outline:0;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-ring)}
.upsell form button{padding:11px 18px; border:0; border-radius:var(--r-sm);
  background:var(--accent); color:#fff; font-weight:700; font-family:inherit; cursor:pointer}
.upsell .em-help{font-size:11.5px; color:var(--faint)}
.upsell .warn{display:flex; gap:8px; padding:11px; border-radius:var(--r-sm);
  background:var(--warn-soft); color:var(--warn); font-size:12.5px; line-height:1.4; text-align:left}
.upsell .appeal{font-size:11.5px; font-weight:500}

/* H5 报告页注入条 */
.h5-bar{max-width:860px; margin:0 auto; padding:10px 16px; font-size:13px;}
.h5-edit{display:block}
.h5-inline-cta{display:flex; align-items:center; justify-content:center; gap:6px;
  margin:0 auto; max-width:820px; padding:11px 16px; border-radius:var(--r-sm);
  background:var(--accent-soft); border:1px solid var(--accent); color:var(--accent);
  font-weight:700; font-size:14px; text-decoration:none}
.h5-download{position:sticky;bottom:0;background:var(--accent);text-align:center;padding:15px 18px}
.h5-download a{color:#fff;font-weight:700;font-size:16px}

/* 生成中 */
.gen{min-height:60vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:16px; padding:40px 36px;}
.spinner{width:54px;height:54px;border-radius:50%;border:4px solid var(--accent-soft);
  border-top-color:var(--accent); animation:spin .9s linear infinite}
.gen-title{font-size:18px;font-weight:700}
.gen-sub{font-size:13px;color:var(--muted);line-height:1.5;max-width:300px}

/* 首页画布=暖白纸面(=blog --canvas #fbfbf9)，平铺不加柔光；层级靠排版与纸样，不靠色雾 */
body.page-landing{background:#fbfbf9}
body.page-landing .site-header{background:rgba(251,251,249,.9)}

/* hero 图标 */
.hero-ic{width:46px;height:46px;border-radius:14px;background:var(--accent-soft);
  display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.hero-ic svg{width:22px;height:22px;color:var(--accent)}

/* 行式列表（找回报告等）—— 发丝线分隔，胜过一堆阴影卡 */
.list-head{font-size:11.5px;letter-spacing:.05em;font-weight:600;color:var(--muted)}
.rowlist{display:flex;flex-direction:column}
.rowlist .row{display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:13px 2px;border-bottom:1px solid var(--line);text-decoration:none;
  transition:background .12s ease}
.rowlist .row:last-child{border-bottom:0}
.rowlist .row:active{background:var(--bg)}
.rowlist .rowmain{min-width:0;flex:1}
.rowlist .date{display:block;font-size:11px;letter-spacing:.04em;color:var(--faint)}
.rowlist .addr{display:block;margin-top:2px;color:var(--ink);font-weight:600;font-size:13px;
  line-height:1.35;text-transform:uppercase}
.rowlist .rowside{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.rowlist .chev{color:var(--faint)}
.pill{display:inline-flex;align-items:center;padding:3px 9px;border-radius:999px;
  font-size:11.5px;font-weight:600;white-space:nowrap}
.pill-ok{background:var(--accent-soft);color:var(--accent)}
.pill-mut{background:#f0f3f2;color:var(--muted)}

/* 空态 */
.empty{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;
  padding:14px 8px;color:var(--muted);font-size:13px;line-height:1.5}
.empty .ec{width:44px;height:44px;border-radius:50%;background:var(--bg);
  display:flex;align-items:center;justify-content:center}
.empty .ec svg{width:22px;height:22px;color:var(--faint)}

/* ===== 动效 ===== */
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes fadeUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@keyframes revealBlur{from{filter:blur(7px);opacity:.45}to{filter:none;opacity:1}}
[data-anim]{animation:fadeUp .4s both}
.reveal{animation:revealBlur .5s both}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
  .spinner{border-top-color:var(--accent)}
}

/* ===== 顶栏(与 blog 统一：品牌左 / 导航右) ===== */
.site-header{position:sticky; top:0; z-index:20;
  background:rgba(244,246,245,.9); backdrop-filter:saturate(180%) blur(10px);
  -webkit-backdrop-filter:saturate(180%) blur(10px); border-bottom:1px solid var(--line)}
.site-header .bar{max-width:1040px; margin:0 auto; height:62px; padding:0 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px}   /* 内边距与正文 .wrap(20px) 对齐，logo 与标题同缩进 */
.brand{display:flex; align-items:center; gap:9px; color:var(--ink); text-decoration:none}
.brand .mark{width:22px; height:22px; color:var(--accent); flex:0 0 auto}
.brand .b-text{display:flex; align-items:center; gap:9px; min-width:0}   /* 品牌名 + 定位语容器：电脑横排；手机竖叠(方案A) */
.brand .b-name{font-family:'IBM Plex Sans',-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Microsoft YaHei',sans-serif; font-size:17px; font-weight:700; letter-spacing:-.02em; white-space:nowrap}
.brand .b-name .b-en{margin-left:8px; font-size:14px; font-weight:500; color:var(--muted); letter-spacing:0}  /* 仿 blog：法国房研所(主) + ImmoExpert(浅灰次级) */
.brand .b-tag{font-size:11px; font-weight:500; color:var(--muted); padding-left:10px; border-left:1px solid var(--line); white-space:nowrap}
.nav{display:flex; align-items:center; gap:4px}
.nav a{font-size:14px; font-weight:500; padding:8px 12px; text-decoration:none}
/* 普通导航链接(如「买房知识库」)—— 与 blog.immo-expert.info 头部完全一致:瞬时切换,无 transition */
.nav a:not(.cta){color:#6b756f; border-radius:10px}
.nav a:not(.cta):hover{color:#16201c; background:#f4f6f4}
.nav a:not(.cta):focus-visible{outline:none; box-shadow:0 0 0 3px #e9f1ed}
.nav a.cta{color:#fff; background:var(--accent); padding:9px 16px; border-radius:8px}
.nav a.cta:hover{color:#fff; filter:brightness(1.06)}
@media (max-width:600px){
  .site-header .nav{display:none}      /* 手机端隐藏右侧导航「买房知识库」，品牌+定位语横排占满整宽、一行放下 */
}
/* 极窄屏(≤360px，如 iPhone SE 一代)才收起定位语防溢出；常见手机(≥375px)一行放得下 */
@media (max-width:360px){
  .brand .b-tag{display:none}
}

/* ===== 落地页响应式：手机=现有 H5 表单流程 / 电脑=展示样例 + 扫码引流(不操作) ===== */
.wrap-landing h1{font-size:27px; line-height:1.28; margin:6px 0 0}
.foot-links{display:flex; gap:18px; justify-content:center; flex-wrap:wrap; font-size:13px; font-weight:500}

/* 设备可见性：默认手机视图。.only-desk 手机隐藏；.only-mob 桌面隐藏 */
.only-desk{display:none}

/* 电脑端扫码区：白卡 + 发丝线 + 品牌绿顶边，与表单卡同语言 */
.scan{display:none; gap:16px; align-items:center; background:var(--card);
  border:1px solid var(--line); border-top:3px solid var(--accent);
  border-radius:var(--r-lg); padding:16px 18px; box-shadow:var(--shadow-card)}
.scan .qr{width:118px; height:118px; flex:0 0 auto; border:1px solid var(--line2);
  border-radius:var(--r-sm); background:#fff; padding:8px}
.scan .qr img{width:100%; height:100%; display:block}
.scan .st{font-size:16px; font-weight:700; color:var(--ink)}
.scan .ss{font-size:12.5px; color:var(--muted); margin-top:4px; line-height:1.5}

/* 电脑端报告样例展示：A4 纸样堆叠 + 内页自动滚动(产品即 PDF 报告，纸张比手机壳诚实) */
.showcase{display:flex; flex-direction:column; align-items:center}
.sheet-stack{position:relative; width:330px}
.sheet-stack::before,.sheet-stack::after{content:""; position:absolute; inset:0;
  background:#fff; border:1px solid var(--line2); border-radius:4px}
.sheet-stack::before{transform:rotate(-2.2deg) translate(-8px,6px)}
.sheet-stack::after{transform:rotate(1.6deg) translate(9px,-4px)}
.sheet-main{position:relative; z-index:1; background:#fff; border:1px solid var(--line2);
  border-radius:4px; overflow:hidden; box-shadow:0 18px 44px rgba(27,33,31,.13)}
.sheet-view{height:470px; overflow:hidden}
.rp{animation:rpscroll 26s linear infinite alternate}
.rp img{width:100%; display:block}
@keyframes rpscroll{from{transform:translateY(0)} to{transform:translateY(calc(-100% + 470px))}}
.sc-cap{margin-top:20px; font-size:13px; color:var(--muted); text-align:center; max-width:320px; line-height:1.55}
.sc-cap b{color:var(--ink)}
@media (prefers-reduced-motion: reduce){.rp{animation:none}}

@media (min-width:880px){
  .wrap-landing{max-width:1040px; padding:40px 24px 56px}
  .hero-grid{display:grid; grid-template-columns:1fr 400px; gap:64px; align-items:center}
  .only-mob{display:none}              /* 桌面隐藏:地址表单 + 付费说明 + 横滑纸样 */
  .only-desk{display:block}
  .scan{display:flex}                  /* 扫码区在桌面用 flex */
  .hero-main{gap:24px}
  .wrap-landing h1{font-size:46px; line-height:1.16; letter-spacing:.01em}
  .wrap-landing .sub{font-size:17px; max-width:34em}
  .vrow{padding:13px 2px}
  .vrow dt{flex-basis:72px; font-size:13.5px}
  .vrow dd{font-size:13.5px}
  .showcase{margin:0 auto}
}

/* ===== Dossier「官方档案」语言（v1：市场速览页；数字当主角 / 发丝线结构 / 绿色克制） ===== */
.d-head{border-top:2px solid var(--accent); padding-top:11px}
.d-row{display:flex; justify-content:space-between; align-items:baseline; gap:12px}
.d-label{font-size:10.5px; color:var(--faint); letter-spacing:.02em}
.d-addr{font-size:15px; font-weight:600; color:var(--ink); margin-top:4px; line-height:1.3}
.d-addr a{color:inherit !important; text-decoration:none !important}   /* 压掉手机把地址自动识别成链接后的蓝字/下划线 */
.d-meta{font-family:'IBM Plex Mono',ui-monospace,Menlo,Consolas,monospace; font-size:10.5px; color:var(--faint); margin-top:5px; letter-spacing:.02em}

.d-fig-lab{font-size:11.5px; color:var(--muted)}
.d-fig-num{font-size:52px; font-weight:750; letter-spacing:-.03em; color:var(--ink); line-height:1; margin-top:4px; display:flex; align-items:baseline; gap:9px}
.d-fig-num .d-u{font-size:16px; font-weight:600; color:var(--muted); letter-spacing:0}
.d-fig-cap{font-size:11.5px; color:var(--faint); margin-top:9px}

.d-stats{display:flex; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.d-stat{flex:1; padding:12px 0; text-align:center}
.d-stat + .d-stat{border-left:1px solid var(--line)}
.d-sv{font-size:20px; font-weight:700; color:var(--ink); line-height:1}
.d-sv small{font-size:10.5px; color:var(--faint); font-weight:500}
.d-sl{font-size:11px; color:var(--muted); margin-top:4px}

.d-blab{font-size:11.5px; font-weight:600; color:var(--ink); margin:0 0 13px}
.d-ruler{display:flex; align-items:center; gap:10px}
.d-e{font-size:12px; font-weight:600; color:var(--ink)}
.d-rline{flex:1; position:relative; height:20px}
.d-rline::before{content:""; position:absolute; left:0; right:0; top:50%; height:1.5px; background:var(--line2)}
.d-tick{position:absolute; top:calc(50% - 4px); width:1.5px; height:8px; background:var(--line2)}
.d-tick.t0{left:0}.d-tick.t1{left:33%}.d-tick.t2{left:66%}.d-tick.t3{right:0}
.d-mark{position:absolute; left:44%; top:50%; transform:translate(-50%,-50%); width:12px; height:12px;
  border-radius:999px; background:var(--card); border:2px solid var(--accent); box-shadow:0 0 0 3px var(--card)}
.d-rcap{font-size:11.5px; color:var(--muted); margin-top:11px}
.d-rcap b{color:var(--accent)}

.d-trend{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px}
.d-tl{font-size:11.5px; font-weight:600; color:var(--ink)}
.d-ty{font-size:13px; font-weight:700; color:var(--ink)}
.d-bars{display:flex; align-items:flex-end; gap:16px}
.d-col{display:flex; flex-direction:column; align-items:center; gap:6px; flex:1}
.d-bv{font-size:10.5px; font-weight:600; color:var(--muted)}
.d-bb{width:100%; max-width:34px; background:linear-gradient(180deg,#ccd3ce,#b4bdb7); border-radius:3px 3px 0 0}
.d-by{font-size:10px; color:var(--faint)}

.d-fine{font-size:12px; color:var(--muted); line-height:1.55; text-align:center; margin:0}
.d-fine b{color:var(--ink); font-weight:600}
.d-fine s{color:var(--faint); font-weight:400}

/* 免费/次要动作：描边绿字（付费主转化仍用实心 .btn） */
.btn-ghost{background:#fff; color:var(--accent); border:1.5px solid var(--accent);}
.btn-ghost:hover{filter:none; background:var(--accent-soft)}

/* 官方数据源信任条（机构感：命名源做成小标签） */
.d-src{border-top:1px solid var(--line); padding-top:14px}
.d-src-h{font-size:11px; color:var(--faint); margin:0 0 9px; letter-spacing:.02em}
.d-src-row{display:flex; flex-wrap:wrap; gap:7px}
.d-src-row span{font-size:11px; color:var(--muted); border:1px solid var(--line2);
  border-radius:5px; padding:3px 9px; background:#fff; white-space:nowrap}

/* 生成中：档案建立式加载（三点脉动，替代通用转圈） */
.d-gload{display:flex; gap:7px; margin-bottom:4px}
.d-gload i{width:9px; height:9px; border-radius:9px; background:var(--accent); opacity:.35;
  animation:gp 1.2s ease-in-out infinite}
.d-gload i:nth-child(2){animation-delay:.2s}
.d-gload i:nth-child(3){animation-delay:.4s}
@keyframes gp{0%,100%{opacity:.3; transform:translateY(0)} 50%{opacity:1; transform:translateY(-4px)}}
@media (prefers-reduced-motion:reduce){.d-gload i{animation:none; opacity:.7}}
