/* GEO收录查询 — PC + H5 自适应样式（浅色主题） */

:root {
  --primary: #3B5BFD;
  --primary-dark: #2C44C9;
  --primary-light: #EEF1FF;
  --success: #0E9F6E;
  --success-light: #E6F7F0;
  --warning: #DDA500;
  --warning-light: #FDF6E0;
  --danger: #E5484D;
  --danger-light: #FDECEC;
  --text: #1B2340;
  --text-2: #5A6382;
  --text-3: #9AA1BC;
  --border: #E4E7F2;
  --bg: #F6F7FB;
  --card: #FFFFFF;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(27, 35, 64, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- 头部 ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 700; }
.logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), #7B5BFF);
  color: #fff; font-size: 16px;
}
.logo-accent { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 18px; }
.nav-link { color: var(--text-2); text-decoration: none; font-size: 14px; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 500; }
.nav-login-btn {
  padding: 6px 16px; border-radius: 8px; background: var(--primary); color: #fff !important;
  font-size: 13px; font-weight: 500; transition: background 0.2s;
}
.nav-login-btn:hover { background: var(--primary-dark); color: #fff; }
.nav-quota {
  font-size: 12px; color: var(--text-3); padding: 3px 8px;
  background: var(--bg); border-radius: 6px;
}
.nav-tier-badge {
  font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 12px;
}
.nav-tier-badge.tier-free { background: #f0f0f0; color: #888; }
.nav-tier-badge.tier-basic { background: #e6f1fb; color: #185FA5; }
.nav-tier-badge.tier-pro { background: #eeedfe; color: #534AB7; }
.nav-tier-badge.tier-enterprise { background: #faece7; color: #993C1D; }

/* 独立页导航栏（定价页等） */
.top-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 24px; background: #fff;
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;
}
.top-nav .nav-logo { font-size: 18px; font-weight: 700; text-decoration: none; color: var(--text); }
.top-nav .nav-logo span { color: var(--primary); }
.top-nav .nav-right { display: flex; align-items: center; gap: 16px; }
.mode-badge {
  font-size: 12px; color: var(--warning); background: var(--warning-light);
  border-radius: 999px; padding: 3px 10px;
}

/* ---------- 查询区 ---------- */
.hero { padding: 56px 0 40px; text-align: center; }
.hero-title { font-size: 34px; font-weight: 800; letter-spacing: 0.5px; }
.hero-sub { color: var(--text-2); margin: 12px auto 32px; max-width: 640px; font-size: 15px; }

.check-form {
  display: flex; gap: 12px; max-width: 720px; margin: 0 auto;
}
.input-wrap {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 0 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 91, 253, 0.12);
}
.input-icon { font-size: 15px; color: var(--text-3); }
.input-wrap input {
  flex: 1; border: none; outline: none; height: 50px; font-size: 15px;
  background: transparent; color: var(--text); min-width: 0;
}
.btn-primary {
  height: 50px; padding: 0 30px; border: none; border-radius: 12px;
  background: var(--primary); color: #fff; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:disabled { background: var(--text-3); cursor: not-allowed; }

.brand-query-wrap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: #fff; border: 1.5px dashed var(--border); border-radius: 12px;
  padding: 0 14px; max-width: 720px; margin: 12px auto 0;
}
.brand-query-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 91, 253, 0.12);
}
.brand-query-wrap .input-icon { font-size: 15px; color: var(--text-3); }
.brand-query-wrap input {
  flex: 1; min-width: 240px; border: none; outline: none; height: 48px; font-size: 15px;
  background: transparent; color: var(--text);
}
.brand-query-hint { max-width: 720px; margin: 10px auto 0; padding: 0 4px; font-size: 12px; color: var(--text-3); line-height: 1.7; text-align: left; }

.input-error {
  margin: 12px auto 0; max-width: 720px; text-align: left;
  color: var(--danger); background: var(--danger-light);
  border-radius: 10px; padding: 10px 14px; font-size: 14px;
}
.input-error a,
.input-error .link-primary {
  color: var(--danger); text-decoration: underline; font-weight: 600;
}
.input-error a:hover,
.input-error .link-primary:hover {
  opacity: 0.85;
}

/* ---------- 输入框动态提示 ---------- */
.type-hint {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px 4px; margin: 14px auto 0; max-width: 720px;
  font-size: 13px; color: var(--text-3); min-height: 22px;
  transition: opacity .25s;
}
.type-hint.hidden { opacity: 0; pointer-events: none; }
.type-hint-bulb { font-size: 14px; }
.type-hint-models { display: inline-flex; flex-wrap: wrap; gap: 2px 4px; }
.type-hint-models > span { padding: 1px 5px; border-radius: 4px; transition: all .25s; }
.type-hint-models > span.active {
  background: rgba(59, 91, 253, 0.10); color: var(--primary);
  font-weight: 600; transform: scale(1.05);
}
.type-hint-dot { color: var(--text-3); padding: 0 2px !important; }
.type-hint-dot.active { background: transparent !important; color: var(--text-3) !important; transform: none !important; font-weight: 400 !important; }

/* ---------- AI 徽标行 ---------- */
.ai-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 24px auto 0; max-width: 720px;
}
.ai-badge {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 20px;
  background: #fff; border: 1px solid var(--border);
  font-size: 13px; color: var(--text-2); font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.ai-badge:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- 品牌监测卡片 ---------- */
.brand-cta-section { padding: 20px 0 48px; }
.brand-cta-card {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: linear-gradient(135deg, #f0f3ff, #f7f0ff);
  border: 1px solid #d8deff; border-radius: 20px;
  padding: 40px 48px; max-width: 1040px; margin: 0 auto;
}
.brand-cta-content { flex: 1; text-align: left; }
.brand-cta-title { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.brand-cta-desc { font-size: 15px; color: var(--text-2); margin-bottom: 20px; max-width: 480px; line-height: 1.7; }
.brand-cta-btn { display: inline-block; text-decoration: none; padding: 12px 28px; }
.brand-cta-icon { flex-shrink: 0; }
@media (max-width: 640px) {
  .brand-cta-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .brand-cta-content { text-align: center; }
  .brand-cta-title { font-size: 20px; }
  .brand-cta-desc { max-width: 100%; }
}

/* ---------- 检测进度（v20.2：进度条 + 7 家 AI 卡片） ---------- */
.progress-panel {
  max-width: 560px; margin: 36px auto 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow); text-align: left;
}
.prog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.prog-status { font-size: 14px; font-weight: 600; color: var(--text); }
.prog-percent { font-size: 13px; color: var(--primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.prog-bar-track { height: 8px; background: #EEF1F6; border-radius: 99px; overflow: hidden; }
.prog-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #3B5BFD, #6C8BFF); border-radius: 99px; transition: width .5s ease; }
.prog-models { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 16px; }
@media (max-width: 640px) { .prog-models { grid-template-columns: repeat(4, 1fr); } }
.prog-model { border: 1px solid var(--border); border-radius: 10px; padding: 10px 4px; text-align: center; transition: border-color .3s, background .3s; background: #FAFBFD; }
.prog-model.waiting { border-style: dashed; }
.prog-model-icon { font-size: 22px; line-height: 1; margin-bottom: 6px; filter: grayscale(1); opacity: .4; transition: all .35s; }
.prog-model-name { font-size: 12px; font-weight: 600; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prog-model-state { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.prog-model.done-hit { border-color: #34C77B; background: #F0FBF5; animation: progPop .35s ease; }
.prog-model.done-hit .prog-model-icon { filter: none; opacity: 1; }
.prog-model.done-hit .prog-model-name { color: var(--text); }
.prog-model.done-hit .prog-model-state { color: #1FA25E; font-weight: 700; }
.prog-model.done-miss { background: #fff; }
.prog-model.done-miss .prog-model-icon { filter: grayscale(.4); opacity: .75; }
.prog-model.done-miss .prog-model-name { color: var(--text-2); }
.prog-model.done-error { border-color: #F0A020; background: #FEF8EE; animation: progPop .35s ease; }
.prog-model.done-error .prog-model-icon { filter: none; opacity: 1; }
.prog-model.done-error .prog-model-state { color: #D9820B; font-weight: 700; }
.prog-feed { margin-top: 14px; padding: 9px 12px; background: #F5F7FC; border-radius: 8px; font-size: 12.5px; color: var(--text-2); }
@keyframes progPop {
  0% { transform: scale(.92); }
  55% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ---------- 返回按钮 ---------- */
.prog-back-btn {
  background: none; border: none; color: var(--text-3); font-size: 13px;
  cursor: pointer; padding: 4px 0; margin-bottom: 8px; transition: color .2s;
}
.prog-back-btn:hover { color: var(--primary); }

/* ---------- 检测方案信息 ---------- */
.kw-plan-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  margin: 14px 0; padding: 14px 18px;
  background: #F8FAFC; border-radius: 10px; border: 1px solid var(--border);
}
.kw-plan-row { display: flex; align-items: baseline; gap: 8px; }
.kw-plan-label { font-size: 12px; color: var(--text-3); white-space: nowrap; }
.kw-plan-value { font-size: 14px; font-weight: 600; color: var(--text); word-break: break-all; }
@media (max-width: 520px) { .kw-plan-info { grid-template-columns: 1fr; } }

/* ---------- 进度面板内实时分析卡片 ---------- */
.prog-live { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.prog-live-card {
  border-radius: 12px; padding: 14px 18px;
  border: 1px solid var(--border); background: #fff;
  animation: progPop .35s ease;
}
.prog-live-card.card-hit { border-color: #34C77B; background: #F0FBF5; }
.prog-live-card.card-half { border-color: #F0A020; background: #FEF8EE; }
.prog-live-card.card-miss { border-color: var(--border); background: #FAFBFD; }
.prog-live-card.card-error { border-color: #F0A020; background: #FEF8EE; }
.plc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.plc-icon { font-size: 20px; }
.plc-name { font-size: 15px; }
.plc-badge { font-size: 12px; padding: 2px 10px; border-radius: 20px; margin-left: auto; }
.plc-badge-hit { background: #E6F9F0; color: #1FA25E; }
.plc-badge-half { background: #FEF3E0; color: #D9820B; }
.plc-badge-miss { background: #F0F1F6; color: var(--text-3); }
.plc-badge-err { background: #FEF3E0; color: #D9820B; }
.plc-badge-mention { background: #F5F5F5; color: #8C8C8C; border: 1px solid #D9D9D9; }
.plc-body { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.plc-row { display: flex; align-items: center; gap: 6px; }
.plc-label { font-size: 12px; color: var(--text-3); }
.plc-val { font-size: 13px; font-weight: 600; color: var(--text); }
.plc-summary {
  flex-basis: 100%; margin-top: 8px; padding: 10px 12px;
  background: rgba(255,255,255,.6); border-radius: 8px;
  font-size: 13px; line-height: 1.6; color: var(--text-2);
}
@media (max-width: 520px) { .plc-body { gap: 6px 14px; } }

/* ---------- 演示模式提醒横幅（防误读 demo 数据为真实结果） ---------- */
.demo-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, #FFF7E6 0%, #FFE9C2 100%);
  border: 1px solid #F5C36C; border-left: 4px solid #FA8C16;
  border-radius: 10px; padding: 14px 18px; margin-bottom: 22px;
  box-shadow: 0 1px 3px rgba(250, 140, 22, 0.06);
}
.demo-banner-icon { font-size: 22px; line-height: 1.4; flex-shrink: 0; }
.demo-banner-text { font-size: 13.5px; line-height: 1.65; color: #613400; }
.demo-banner-text strong { color: #D4380D; font-weight: 700; margin-right: 4px; }
.demo-banner-text code {
  background: #FFE7BA; padding: 1px 6px; border-radius: 4px;
  font-size: 12px; color: #874D00;
}
.demo-banner-link {
  color: #D4380D; text-decoration: none; font-weight: 600;
  margin-left: 6px;
}
.demo-banner-link:hover { text-decoration: underline; }

/* ---------- 模型卡片数据来源标签 ---------- */
.data-tag {
  display: inline-block; font-size: 11px; padding: 2px 8px;
  border-radius: 999px; margin-left: 8px; font-weight: 500;
  vertical-align: middle; white-space: nowrap;
}
.data-tag-sim  { background: #FFF1F0; color: #CF1322; border: 1px solid #FFA39E; }
.data-tag-live { background: #E6F7F0; color: #0E9F6E; border: 1px solid #87E8DE; }
.data-tag-recommend { background: #E6F7F0; color: #0E9F6E; border: 1px solid #87E8DE; }
.data-tag-half { background: #FEF3E0; color: #D9820B; border: 1px solid #FFD591; }
.data-tag-error { background: #FFFBE6; color: #D48806; border: 1px solid #FFE58F; cursor: help; }
.data-tag-none { background: #F5F5F5; color: #8C8C8C; border: 1px solid #D9D9D9; }
.data-tag-mention { background: #FAFAFA; color: #8C8C8C; border: 1px dashed #D9D9D9; }
.model-card.is-demo { border-style: dashed; }

/* ---------- 历史 ---------- */
.history-wrap { margin-top: 32px; text-align: left; }
.history-title { font-size: 13px; color: var(--text-3); margin-bottom: 10px; }
.history-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.history-item {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; color: var(--text-2);
  cursor: pointer; max-width: 340px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.history-item:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- 结果区 ---------- */
.result { padding: 8px 20px 48px; }
.section-title { font-size: 20px; font-weight: 700; margin: 40px 0 16px; }

.summary-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 16px; margin-top: 24px;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow);
}
.card-label { font-size: 13px; color: var(--text-3); margin-bottom: 10px; }
.source-title { font-size: 17px; font-weight: 700; line-height: 1.5; }
.source-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 12px 0; }
.tag {
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 6px;
}
.meta-item { font-size: 13px; color: var(--text-2); }
.source-url {
  font-size: 12px; color: var(--text-3); word-break: break-all;
  background: var(--bg); border-radius: 8px; padding: 8px 10px;
}

.score-card { display: flex; align-items: center; gap: 20px; }
.score-ring { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--border); stroke-width: 10; }
.ring-fg {
  fill: none; stroke: var(--primary); stroke-width: 10;
  stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327;
  transition: stroke-dashoffset 1s ease;
}
.score-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: var(--primary);
}
.score-num small { font-size: 13px; color: var(--text-3); font-weight: 400; margin-left: 2px; }
.score-label { font-size: 15px; font-weight: 700; }
.included-summary { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.7; }

/* ---------- 模型矩阵 ---------- */
.model-grid-wrap { display: flex; flex-direction: column; gap: 24px; }
.model-group { display: flex; flex-direction: column; gap: 10px; }
.model-group-label {
  font-size: 14px; font-weight: 700; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
}
.model-group-label .group-emoji { font-size: 16px; }
.model-group-label .region-count { font-size: 12px; color: var(--text-3); font-weight: 400; margin-left: 2px; }
.model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.model-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s;
}
.model-card:hover { transform: translateY(-2px); border-color: #C9D3FF; }
.model-head { display: flex; align-items: center; justify-content: space-between; }
.model-name { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; }
.model-vendor { font-size: 12px; color: var(--text-3); font-weight: 400; margin-left: 2px; }
.status-badge {
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px;
}
.status-included { background: var(--success-light); color: var(--success); }
.status-partial { background: var(--warning-light); color: var(--warning); }
.status-none { background: #F0F1F6; color: var(--text-3); }
.model-stats { display: flex; gap: 18px; margin-top: 14px; }
.model-stat { flex: 1; }
.model-stat .k { font-size: 11px; color: var(--text-3); }
.model-stat .v { font-size: 15px; font-weight: 700; }
.bar { height: 5px; border-radius: 3px; background: var(--border); margin-top: 4px; overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 3px; background: var(--primary); }
.model-foot { margin-top: 12px; font-size: 12px; color: var(--text-3); }

/* ---------- 四层检测 ---------- */
.layer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.layer-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.layer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.layer-name { font-size: 16px; font-weight: 700; }
.layer-weight {
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 2px 10px; border-radius: 999px;
}
.layer-desc { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.layer-score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.layer-score { font-size: 26px; font-weight: 800; }
.layer-bar { flex: 1; height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; }
.layer-bar > i { display: block; height: 100%; border-radius: 4px; transition: width 0.8s ease; }
.layer-details { display: grid; gap: 6px; }
.detail-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 6px 10px; background: var(--bg); border-radius: 8px;
}
.detail-row .label { color: var(--text-2); }
.detail-row .value { font-weight: 600; }
.detail-pass .value { color: var(--success); }
.detail-fail .value { color: var(--danger); }

/* ---------- 引用证据 ---------- */
.evidence-list { display: grid; gap: 12px; }
.evidence-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
}
.evidence-q { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.evidence-a {
  font-size: 13px; color: var(--text-2); background: var(--bg);
  border-radius: 8px; padding: 10px 14px; border-left: 3px solid var(--primary);
}
.evidence-meta { margin-top: 8px; font-size: 12px; }
.evidence-cited { color: var(--success); font-weight: 600; }
.evidence-not { color: var(--text-3); }

/* 收录矩阵表格（板块A） */
.model-matrix { overflow-x: auto; }
.matrix-table { width: 100%; border-collapse: collapse; font-size: 13px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.matrix-table th { background: var(--bg); text-align: left; padding: 12px 14px; font-weight: 700; color: var(--text-2); border-bottom: 2px solid var(--border); white-space: nowrap; }
.matrix-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table tbody tr:hover { background: var(--bg); }
.m-name { font-weight: 700; white-space: nowrap; }
.brand-hit { color: var(--success); font-weight: 600; }
.brand-none { color: var(--text-3); }
.match-high { color: var(--success); font-weight: 700; }
.match-mid { color: var(--warning); font-weight: 700; }
.match-none { color: var(--text-3); }
/* v25.7.3: 搜索索引命中列（与对话引用解耦） */
.snap-hit { color: var(--success); font-weight: 600; font-size: 12px; white-space: nowrap; }
.snap-none { color: var(--text-3); font-size: 12px; white-space: nowrap; }
.bar.bar-sm { width: 70px; display: inline-block; vertical-align: middle; }
.conf-num { font-size: 12px; color: var(--text-3); margin-left: 6px; }
.matrix-note { font-size: 12px; color: var(--text-3); margin-top: 10px; background: var(--bg); padding: 8px 12px; border-radius: 8px; }

/* 引用证据摘要（板块B 结构化） */
.evidence-item.ev-direct { border-left: 4px solid #2E5BFF; }
.evidence-item.ev-indirect { border-left: 4px solid #F5A623; }
.evidence-item.ev-transfer { border-left: 4px solid #E5484D; }
.evidence-head { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.ev-status { font-size: 12px; font-weight: 600; color: var(--text-3); }
.ev-row { display: flex; gap: 10px; padding: 5px 0; font-size: 13px; align-items: baseline; }
.ev-k { flex: 0 0 64px; color: var(--text-3); font-weight: 600; }
.ev-v { flex: 1; color: var(--text-1); }
.ev-quote { font-style: italic; color: var(--text-2); }
.ev-src a { color: var(--primary); word-break: break-all; }
.ev-none { color: var(--text-3); }
.ev-detail { margin-top: 8px; }
.ev-detail summary { cursor: pointer; font-size: 12px; color: var(--primary); user-select: none; }
.ev-detail .evidence-a { margin-top: 8px; }

/* 建议分组（板块D） */
.suggestion-list { display: grid; gap: 16px; }
.sug-group { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow); }
.sug-group-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.sug-group-high { border-left: 4px solid #E5484D; }
.sug-group-mid { border-left: 4px solid #F5A623; }
.sug-group-low { border-left: 4px solid #12B76A; }
.suggestion-item { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 14px; border-bottom: 1px dashed var(--border); }
.suggestion-item:last-child { border-bottom: none; }
.sug-text { flex: 1; color: var(--text-1); line-height: 1.6; }

/* 查询表单提示 */
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 8px; text-align: center; }
.sug-level {
  flex-shrink: 0; font-size: 12px; font-weight: 700; padding: 2px 10px;
  border-radius: 999px; margin-top: 2px;
}
.sug-high { background: var(--danger-light); color: var(--danger); }
.sug-mid { background: var(--warning-light); color: var(--warning); }
.sug-low { background: var(--success-light); color: var(--success); }

.result-actions { display: flex; gap: 12px; margin-top: 36px; }
.btn-ghost {
  height: 42px; padding: 0 22px; border-radius: 10px; cursor: pointer;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--text); font-size: 14px; font-weight: 600; transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.check-time { font-size: 12px; color: var(--text-3); margin-top: 14px; }

/* ---------- 原理 ---------- */
.how { padding-bottom: 56px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.how-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.how-weight { font-size: 22px; font-weight: 800; color: var(--primary); }
.how-item h3 { font-size: 14px; margin: 6px 0 6px; }
.how-item p { font-size: 12.5px; color: var(--text-2); }

/* ---------- 页脚 ---------- */
.footer {
  border-top: 1px solid var(--border); background: #fff;
  padding: 22px 0; text-align: center; font-size: 13px; color: var(--text-3);
}
.footer-note { margin-top: 4px; font-size: 12px; }

/* ---------- 页脚：友情链接 + 备案 ---------- */
.friend-links { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 16px; }
.friend-links-label { font-size: 12px; color: var(--text-3); }
.friend-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-2); text-decoration: none; }
.friend-link:hover { color: var(--primary); }
.friend-link-logo { width: 16px; height: 16px; border-radius: 3px; object-fit: cover; }
.footer-icp { margin-top: 10px; font-size: 12px; color: var(--text-3); display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
.footer-icp a { color: var(--text-3); text-decoration: none; }
.footer-icp a:hover { color: var(--primary); }

/* ---------- 免责声明 ---------- */
.disclaimer-wrap { margin-top: 14px; }
.disclaimer-toggle {
  background: transparent; border: 1px solid var(--border); color: var(--text-3);
  font-size: 12px; padding: 5px 12px; border-radius: 20px; cursor: pointer;
  transition: all .2s;
}
.disclaimer-toggle:hover { color: var(--primary); border-color: var(--primary); }
.disclaimer-box {
  max-width: 860px; margin: 10px auto 0; padding: 16px 18px;
  background: #fafafa; border: 1px solid var(--border); border-radius: 10px;
  text-align: left; font-size: 12px; line-height: 1.8; color: var(--text-2);
}
.disclaimer-box p { margin: 0 0 8px; }
.disclaimer-box ol { margin: 8px 0; padding-left: 18px; }
.disclaimer-box li { margin-bottom: 6px; }
.disclaimer-box strong { color: var(--text-1); }
.disclaimer-foot { text-align: right; color: var(--text-3); margin-top: 4px; }

/* ---------- 小程序广告条 ---------- */
.ad-bar {
  display: flex; gap: 12px; overflow-x: auto; padding: 10px 0;
  max-width: 1080px; margin: 0 auto; scrollbar-width: none;
}
.ad-bar::-webkit-scrollbar { display: none; }
.ad-item {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 14px; cursor: pointer; transition: box-shadow .15s, transform .15s;
}
.ad-item:hover { box-shadow: 0 4px 14px rgba(22,93,255,.10); transform: translateY(-1px); }
.ad-item-logo { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.ad-item-title { font-size: 13.5px; font-weight: 600; color: var(--text-1); }
.ad-item-desc { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.ad-item-go { font-size: 18px; color: var(--text-3); margin-left: 4px; }

/* ---------- 小程序广告弹层 ---------- */
.ad-modal {
  position: fixed; inset: 0; z-index: 1000; background: rgba(15, 23, 42, .55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.ad-modal[hidden] { display: none; }
.ad-modal-card {
  position: relative; background: #fff; border-radius: 16px; padding: 26px 26px 22px;
  width: 300px; max-width: 92vw; text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.ad-modal-close {
  position: absolute; top: 8px; right: 10px; border: none; background: none;
  font-size: 22px; color: var(--text-3); cursor: pointer; line-height: 1;
}
.ad-modal-logo img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.ad-modal-title { font-size: 17px; font-weight: 700; margin-top: 10px; color: var(--text-1); }
.ad-modal-desc { font-size: 12.5px; color: var(--text-3); margin-top: 6px; line-height: 1.6; }
.ad-modal-qrcode { width: 190px; height: 190px; object-fit: contain; margin-top: 14px; border: 1px solid var(--border); border-radius: 10px; padding: 6px; }
.ad-modal-tip { font-size: 11.5px; color: var(--text-3); margin-top: 8px; }
.ad-modal-jump {
  display: block; margin-top: 14px; padding: 9px 0; border-radius: 9px;
  background: var(--primary); color: #fff; font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.ad-modal-jump:active { opacity: .85; }

/* ---------- 品牌查询页 ---------- */
.kw-panel {
  margin-top: 28px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; text-align: left;
  box-shadow: var(--shadow);
}
.kw-panel-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.kw-panel-tip { font-size: 13px; color: var(--text-3); line-height: 1.7; margin-bottom: 14px; }
.kw-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.kw-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #F0F7FF; color: #1D4ED8; border: 1px solid #BFDBFE;
  border-radius: 999px; padding: 6px 8px 6px 14px; font-size: 13px;
}
.kw-chip-x {
  border: none; background: rgba(29,78,216,.12); color: #1D4ED8;
  width: 20px; height: 20px; border-radius: 50%; cursor: pointer;
  font-size: 13px; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
}
.kw-chip-x:hover { background: rgba(29,78,216,.25); }
.kw-empty { font-size: 13px; color: var(--text-3); }
.kw-actions { display: flex; gap: 10px; }
.kw-new-input {
  flex: 1; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0 16px; height: 44px; font-size: 14px; outline: none;
  background: #fff; color: var(--text);
}
.kw-new-input:focus { border-color: var(--primary); }

.progress-label { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.progress-models { display: flex; flex-wrap: wrap; gap: 8px; }
.step-item {
  font-size: 12px; padding: 4px 12px; border-radius: 999px;
  background: #F5F5F5; color: var(--text-3); border: 1px solid var(--border);
}
.step-item.done { background: #E6F7F0; color: #0E9F6E; border-color: #87E8DE; }
.step-item.active { background: #FFF7E6; color: #D4880F; border-color: #FFD591; }

.dim-card { text-align: left; }
.dim-score { font-size: 34px; font-weight: 800; line-height: 1.1; }
.dim-name { font-size: 15px; font-weight: 700; margin: 8px 0 6px; }
.dim-desc { font-size: 12px; color: var(--text-3); line-height: 1.6; margin-bottom: 10px; min-height: 38px; }
.dim-summary { font-size: 13px; color: var(--text-2); background: #FAFAFA; border-radius: 8px; padding: 8px 10px; }

.brand-model-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; text-align: left; box-shadow: var(--shadow);
}
.bm-head { font-size: 15px; display: flex; align-items: center; flex-wrap: wrap; }
.bm-sub { font-size: 12px; margin-top: 8px; }
.bm-track { font-size: 12px; color: var(--text-2); margin-top: 6px; }
.bm-exposure { font-size: 13px; color: var(--text-2); margin-top: 10px; }
.bm-exposure b { font-size: 16px; color: var(--text); }
.bm-urls { font-size: 12px; color: #0E9F6E; margin-top: 4px; min-height: 16px; }
.bm-time { font-size: 11px; color: var(--text-3); margin-top: 8px; }

/* v25.4：引用状态可视化（直接引用/转载引用/无引用 三态） */
.bm-quote { font-size: 12px; margin-top: 8px; padding: 6px 8px; border-radius: 6px; line-height: 1.5; }
.bm-quote-direct { color: #0E9F6E; background: #E7F7EF; border: 1px solid #B7E8D2; }
.bm-quote-repost { color: #B7791F; background: #FDF6E7; border: 1px solid #F6E2B3; }
.bm-quote-none { color: #98A2B3; background: #F4F5F7; border: 1px solid #E4E7EC; }
.bm-quote b { color: #0E9F6E; }
.q-tag { display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 11px; }
.q-repost { color: #B7791F; background: #FDF6E7; border: 1px solid #F6E2B3; }
.qw-quote { font-size: 13px; margin-top: 8px; padding: 7px 10px; border-radius: 6px; line-height: 1.5; }
.qw-quote-direct { color: #0E9F6E; background: #E7F7EF; border: 1px solid #B7E8D2; }
.qw-quote-repost { color: #B7791F; background: #FDF6E7; border: 1px solid #F6E2B3; }
.qw-quote-none { color: #98A2B3; background: #F4F5F7; border: 1px solid #E4E7EC; }

/* v25.5：GEO 优化咨询留资入口（P1） */
.geo-consult-box { margin-top: 28px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, #F0F7FF 0%, #F7F0FF 100%); }
.geo-consult-inner { display: flex; flex-wrap: wrap; gap: 20px; padding: 22px 24px; }
.geo-consult-left { flex: 1 1 420px; min-width: 280px; }
.geo-consult-title { font-size: 18px; font-weight: 700; color: #1A2B4A; margin-bottom: 8px; }
.geo-consult-desc { font-size: 13px; color: #475467; line-height: 1.7; margin-bottom: 16px; }
.geo-consult-desc b { color: #2E5BFF; }
.geo-consult-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.geo-input { flex: 1 1 160px; min-width: 140px; padding: 10px 12px; border: 1px solid #D0D5DD; border-radius: 8px; font-size: 14px; outline: none; }
.geo-input:focus { border-color: #2E5BFF; }
.geo-btn { padding: 10px 20px; border: none; border-radius: 8px; background: #2E5BFF; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s; white-space: nowrap; }
.geo-btn:hover { background: #1E45D8; }
.geo-btn:disabled { background: #A9B8E8; cursor: default; }
.geo-consult-success { margin-top: 14px; font-size: 13px; color: #0E9F6E; background: #E7F7EF; border: 1px solid #B7E8D2; padding: 10px 12px; border-radius: 8px; }
.geo-consult-success b { color: #0E9F6E; }
.geo-consult-right { flex: 0 0 150px; text-align: center; border-left: 1px dashed #D0D5DD; padding-left: 18px; }
.geo-consult-qr-title { font-size: 12px; color: #475467; margin-bottom: 8px; }
.geo-consult-qr { width: 120px; height: 120px; margin: 0 auto; border-radius: 8px; background: #fff; border: 1px solid #E4E7EC; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #98A2B3; overflow: hidden; }

/* v25.6 结论区置顶 */
.brand-conclusion { margin: 22px 0 8px; border-radius: 14px; background: linear-gradient(135deg, #FFF8E6 0%, #FFF1F0 100%); border: 1px solid #FFD8A8; padding: 18px 20px; box-shadow: 0 2px 8px rgba(245,158,11,.08); }
.concl-head { font-size: 16px; font-weight: 700; color: #B45309; margin-bottom: 12px; letter-spacing: .5px; }
.concl-main { font-size: 15px; font-weight: 600; line-height: 1.6; padding: 8px 12px; border-radius: 10px; margin-bottom: 10px; }
.concl-hit { background: #E7F7EF; color: #0E9F6E; border: 1px solid #B7E8D2; }
.concl-miss { background: #FEF6E7; color: #D4880F; border: 1px solid #FCE3A6; }
.concl-none { background: #F4F5F7; color: #667085; border: 1px solid #E4E7EC; }
.concl-pending { background: #F0F7FF; color: #2E5BFF; border: 1px solid #C9DBFF; }
.concl-sub { font-size: 14px; color: #344054; padding: 6px 12px; border-radius: 8px; background: #fff; border: 1px solid #F2DDB8; margin-bottom: 8px; line-height: 1.6; }
.concl-detail { font-size: 13px; color: #667085; margin: 4px 0 0 14px; line-height: 1.55; }
.concl-detail-weak { color: #98A2B3; }
.concl-note { font-size: 12px; color: #98A2B3; background: #FAFBFC; border: 1px dashed #E4E7EC; padding: 8px 12px; border-radius: 8px; line-height: 1.6; margin-bottom: 8px; }
.concl-sub-qw { border-left: 3px solid #8B5CF6; }
.concl-qw-state { font-weight: 600; color: #344054; }
.concl-advice { font-size: 13px; color: #475467; background: #fff; border-left: 3px solid #2E5BFF; padding: 10px 12px; border-radius: 0 8px 8px 0; line-height: 1.65; margin-top: 4px; }

.geo-consult-qr-note { font-size: 11px; color: #98A2B3; margin-top: 8px; }
@media (max-width: 600px) {
  .geo-consult-right { border-left: none; border-top: 1px dashed #D0D5DD; padding-left: 0; padding-top: 14px; margin: 0 auto; }
}
.qw-quote b { color: #0E9F6E; }

/* v23.8：检测方法标签（清单 / 直问） */
.bm-method { font-size: 10px; color: #722ED1; background: #F9F0FF; border: 1px solid #EFE0FF; border-radius: 4px; padding: 1px 5px; margin-left: 4px; vertical-align: middle; }
.plc-method { font-size: 10px; color: #722ED1; background: #F9F0FF; border: 1px solid #EFE0FF; border-radius: 4px; padding: 1px 5px; margin-left: 6px; }

/* v23.8：品类识别提示条 */
.cat-hint { font-size: 13px; color: var(--text-2); background: #F9F0FF; border: 1px solid #EFE0FF; border-radius: 8px; padding: 10px 14px; margin: 12px 0; line-height: 1.6; }
.cat-hint b { color: #722ED1; }
.cat-conf { font-size: 11px; color: var(--text-3); }

.kw-stats-table { overflow-x: auto; }
.kw-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.kw-table th {
  text-align: left; font-size: 13px; color: var(--text-3); font-weight: 600;
  padding: 12px 16px; background: #FAFAFA; border-bottom: 1px solid var(--border);
}
.kw-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.kw-td-num { white-space: nowrap; font-weight: 600; }
.kw-td-bar { min-width: 180px; }
.kw-bar { height: 8px; background: #F0F0F0; border-radius: 999px; overflow: hidden; display: inline-block; width: 120px; vertical-align: middle; margin-right: 8px; }
.kw-bar-fill { height: 100%; border-radius: 999px; transition: width .6s ease; }

.evidence-loading { color: var(--text-3); font-size: 14px; }
.evidence-rank { font-size: 12px; color: #D4880F; margin-top: 6px; }
.evidence-err { font-size: 12px; color: #CF1322; margin-top: 6px; }

/* ---------- 响应式（H5） ---------- */
@media (max-width: 900px) {
  .hero-title { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .summary-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .layer-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
  .nav-hide-mobile { display: none !important; }
  .nav-quota,
  .nav-tier-badge { display: none; }
  .header-right { gap: 10px; }
  .hero { padding: 32px 16px 28px; }
  .check-form { flex-direction: column; }
  .btn-primary { width: 100%; }
  .container { padding: 0 16px; }
  .result { padding: 8px 16px 36px; }
  .model-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .score-card { flex-direction: column; text-align: center; }
  .model-stats { gap: 10px; }
  .result-actions { flex-direction: column; }
  .btn-ghost { width: 100%; }
}

/* ==================== v18 品牌报告页 ==================== */

/* ---------- 报告封面 ---------- */
.report-header {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background: linear-gradient(135deg, #F5F7FF 0%, #EFF6FF 100%);
  border: 1px solid #D6E4FF; border-radius: var(--radius);
  padding: 28px 32px; margin-top: 24px;
}
.report-header-left { flex: 1; min-width: 0; }
.report-title { font-size: 22px; font-weight: 800; line-height: 1.4; color: var(--text); }
.report-subtitle { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.report-meta-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; }
.report-meta-item { display: flex; flex-direction: column; gap: 4px; }
.rm-label { font-size: 11px; color: var(--text-3); }
.rm-value { font-size: 14px; font-weight: 600; color: var(--text); }
.report-header-right { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.report-score-ring { width: 130px; height: 130px; }
.report-score-label { font-size: 13px; font-weight: 600; color: var(--text-2); }

.report-actions { display: flex; gap: 12px; margin-top: 16px; }

/* ---------- 6 KPI 卡片 ---------- */
.kpi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px;
}
.kpi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow);
}
.kpi-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.kpi-label { font-size: 14px; font-weight: 600; color: var(--text); }
.kpi-tag {
  font-size: 11px; color: var(--text-3); background: #F5F5F5;
  padding: 2px 8px; border-radius: 999px;
}
.kpi-value { font-size: 30px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.kpi-bar { height: 6px; border-radius: 3px; background: #F0F0F0; overflow: hidden; margin-bottom: 10px; }
.kpi-bar-fill { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
.kpi-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; min-height: 36px; }

/* ---------- 诊断结论三栏 ---------- */
.diagnosis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px;
}
.diag-col {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.diag-col-finding { border-left: 4px solid var(--primary); }
.diag-col-good { border-left: 4px solid #0E9F6E; }
.diag-col-bad { border-left: 4px solid #CF1322; }
.diag-col-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.diag-list { list-style: none; padding: 0; margin: 0; }
.diag-list li {
  font-size: 13px; color: var(--text-2); line-height: 1.7;
  padding: 6px 0; border-bottom: 1px dashed var(--border);
}
.diag-list li:last-child { border-bottom: none; }
.diag-empty { font-size: 13px; color: var(--text-3); margin: 0; }
.diagnosis-loading {
  padding: 24px; text-align: center; color: var(--text-3); font-size: 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  margin-top: 16px;
}

/* ---------- 品类词 chip 场景标签 ---------- */
.kw-chip-scene {
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 999px; margin-right: 6px; white-space: nowrap;
}
.kw-chip-text { font-size: 13px; }
.kw-td-scene { white-space: nowrap; }
.scene-tag {
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 999px; white-space: nowrap; display: inline-block;
}

/* ---------- 打印（PDF 导出） ---------- */
@media print {
  .header, .ad-bar, .footer, .hero, .no-print, .report-actions { display: none !important; }
  .result { padding: 0 !important; margin-top: 0 !important; }
  .container { max-width: 100% !important; padding: 0 12px !important; }
  body { background: #fff !important; }
  .report-header { page-break-after: avoid; }
  .section-title { page-break-after: avoid; }
  .kpi-card, .dim-card, .layer-card, .brand-model-card, .diag-col, .evidence-item,
  .kw-table tr, .model-card { page-break-inside: avoid; }
  .report-header, .kpi-grid, .layer-grid, .kw-stats-table, .model-grid,
  .diagnosis-grid, .evidence-list { box-shadow: none !important; }
}

/* ---------- 品牌报告页响应式 ---------- */
@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnosis-grid { grid-template-columns: 1fr; }
  .report-title { font-size: 18px; }
}
@media (max-width: 600px) {
  .report-header { flex-direction: column; text-align: center; padding: 20px; }
  .report-meta-row { justify-content: center; gap: 14px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .report-actions { flex-direction: column; }
  .report-actions .btn-ghost { width: 100%; }
}

/* ---------- 千问实测推荐卡片（v25.2） ---------- */
.tag-live { background: #E6F7F0; color: #0E9F6E; border: 1px solid #87E8DE; font-size: 12px; padding: 2px 8px; border-radius: 10px; margin-left: 8px; vertical-align: middle; }
.qianwen-box { margin: 8px 0 24px; }
.qianwen-loading, .qianwen-failed { padding: 16px; border: 1px dashed var(--border); border-radius: 10px; color: var(--muted); background: #FAFBFD; font-size: 14px; }
.qianwen-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; background: #fff; }
.qianwen-card.card-hit { border-color: #34C77B; background: #F0FBF5; }
.qianwen-card.card-miss { border-color: var(--border); background: #FAFBFD; }
.qw-head { font-size: 15px; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qw-badge { font-size: 13px; padding: 2px 10px; border-radius: 10px; }
.qw-badge-hit { background: #D6F5E3; color: #0E9F6E; }
.qw-badge-miss { background: #EEF1F5; color: #8A94A6; }
.qw-body { font-size: 14px; }
.qw-answer { margin-top: 10px; padding: 10px 12px; background: #F7F9FC; border-radius: 8px; line-height: 1.7; color: #2C3340; font-size: 13px; }
.qw-time { margin-top: 8px; font-size: 12px; color: var(--muted); }

/* v25.8 多关键词并行探测容器 */
.kw-multi-box { margin: 8px 0 24px; }
.kw-multi-inner { border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; background: #fff; }
.kw-multi-meta { font-size: 13px; color: var(--text-2); margin-bottom: 10px; }
.kw-multi-meta b { color: #722ED1; }
.kw-multi-summary { font-size: 15px; font-weight: 600; padding: 10px 14px; border-radius: 8px; margin-bottom: 14px; }
.kw-multi-hit { background: #F0FBF5; color: #0E9F6E; border: 1px solid #34C77B; }
.kw-multi-miss { background: #FFF1F0; color: #CF1322; border: 1px solid #FFCCC7; }
.kw-multi-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.kw-multi-card { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #FAFBFD; }
.kw-multi-card.card-hit { border-color: #34C77B; background: #F0FBF5; }
.kw-multi-card.card-miss { border-color: var(--border); background: #FAFBFD; }
.kw-multi-head { font-size: 14px; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.kw-multi-answer { font-size: 13px; color: #2C3340; line-height: 1.6; margin-top: 6px; padding: 8px 10px; background: #F7F9FC; border-radius: 6px; }
.kw-multi-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.qw-note { margin-top: 10px; font-size: 12px; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 8px; }
.qw-alias { margin-top: 8px; padding: 8px 10px; background: #EAF3FF; border: 1px solid #BFE0FF; border-radius: 8px; font-size: 12px; color: #1D6FC0; line-height: 1.5; }
.data-tag-alias { background: #EAF3FF; color: #1D6FC0; border: 1px solid #BFE0FF; }
.bm-alias { margin-top: 8px; font-size: 12px; color: #1D6FC0; background: #EAF3FF; border: 1px solid #BFE0FF; border-radius: 6px; padding: 6px 8px; line-height: 1.5; }


/* ===== v25.10：GEO 优化建议卡片 + 网店查询 badge ===== */
.advice-list { display: grid; gap: 14px; }
.advice-card { border-radius: 12px; padding: 16px 18px; border: 1px solid var(--border); background: #fff; }
.advice-card.advice-high { border-left: 4px solid #E5484D; background: #FFF6F6; }
.advice-card.advice-medium { border-left: 4px solid #F5A623; background: #FFFBF2; }
.advice-card.advice-low { border-left: 4px solid #0E9F6E; background: #F4FBF8; }
.advice-head { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #1A1F36; }
.advice-body { font-size: 13px; line-height: 1.7; color: #3A3F5C; }
.advice-row { margin-bottom: 6px; }
.advice-row b { color: #1A1F36; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.badge-green { background: var(--success-light); color: var(--success); border: 1px solid #B7E4CF; }
.badge-red { background: #FDECEC; color: #E5484D; border: 1px solid #F5C2C2; }
.badge-gray { background: #F2F3F7; color: var(--text-3); border: 1px solid #E3E6EF; }

/* 首页第二屏：两张 CTA 卡片并排 */
.brand-cta-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.brand-cta-card-alt .brand-cta-title { color: #B9760A; }
@media (max-width: 768px) {
  .brand-cta-section .container { grid-template-columns: 1fr; }
}

/* ===== v25.12：网店查询平台勾选 + 进度卡 ===== */
.store-platforms { margin-top: 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.store-platforms-label { font-size: 14px; font-weight: 600; color: #1A1F36; margin-bottom: 12px; }
.store-platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.store-platform-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: border-color .15s; }
.store-platform-item:hover { border-color: var(--primary); }
.store-platform-item span { font-weight: 600; color: #1A1F36; display: flex; flex-direction: column; line-height: 1.3; }
.store-platform-item small { font-weight: 400; font-size: 11px; color: var(--text-3); }
.store-platform-item input { width: 16px; height: 16px; accent-color: var(--primary); }
.store-qianwen-note { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #5b6478; line-height: 1.6; }
.store-qianwen-note b { color: #3B5BFD; font-weight: 700; }
.store-qianwen-badge { flex: 0 0 auto; font-size: 12px; font-weight: 600; color: #fff; background: #3B5BFD; padding: 4px 10px; border-radius: 999px; }
.store-progress-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-weight: 600; }
.store-progress-bar { height: 8px; background: #EEF0F5; border-radius: 6px; overflow: hidden; margin-bottom: 16px; }
.store-progress-bar-inner { height: 100%; width: 0; background: linear-gradient(90deg, #3B5BFD, #6E8BFF); transition: width .4s ease; }
.store-progress-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.store-progress-card { border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center; background: #fff; }
.store-progress-card-name { font-weight: 600; margin-bottom: 8px; color: #1A1F36; }
/* 卡片底部细化阶段文案（如"正在等待 AI 回答…"） */
.store-progress-card-stage { font-size: 12px; color: var(--text-3); margin-top: 6px; min-height: 16px; line-height: 1.3; }
/* 超时提示 */
.store-timeout-tip { margin-top: 14px; padding: 10px 14px; background: #FFF4E5; border: 1px solid #FFD8A8; color: #B54708; border-radius: 8px; font-size: 13px; }
/* 进度区操作按钮：取消 / 重新检测 */
.store-progress-actions { display: flex; gap: 12px; margin-top: 14px; }
.btn-ghost { padding: 9px 20px; border: 1px solid var(--border); background: #fff; color: #1A1F36; border-radius: 8px; font-size: 14px; cursor: pointer; transition: border-color .15s; }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
@media (max-width: 768px) {
  .store-platform-grid, .store-progress-grid { grid-template-columns: repeat(2, 1fr); }
}
