:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #c0392b;
  --accent-soft: #fdecea;
  --blue: #2563eb;
  --up: #d92b2b;     /* 涨 = 红（中国市场惯例）*/
  --down: #16a34a;   /* 跌 = 绿 */
  --warn: #ea580c;
  --ok: #16a34a;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.55; font-size: 14px;
}
header.topbar {
  background: var(--panel); border-bottom: 1px solid var(--line);
  padding: 14px 22px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 20; box-shadow: var(--shadow);
}
header.topbar h1 { font-size: 18px; margin: 0; color: var(--accent); }
header.topbar .meta { font-size: 12px; color: var(--muted); text-align: right; }
.refresh-btn {
  border: 1px solid var(--accent); background: var(--accent-soft); color: var(--accent);
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 8px; cursor: pointer;
  white-space: nowrap; transition: background .15s ease, box-shadow .15s ease;
}
.refresh-btn:hover { background: #fbdcd8; box-shadow: var(--shadow); }
.refresh-btn:active { transform: translateY(1px); }
.refresh-btn:disabled { opacity: .55; cursor: progress; }
.level0-banner {
  background: var(--accent-soft); color: var(--accent); border-bottom: 1px solid #f5c6c0;
  padding: 8px 22px; font-size: 13px; font-weight: 600;
}
nav.tabs { display: flex; gap: 4px; padding: 10px 18px 0; flex-wrap: wrap; background: var(--panel); border-bottom: 1px solid var(--line); }
nav.tabs button {
  border: none; background: transparent; padding: 9px 14px; cursor: pointer;
  font-size: 14px; color: var(--muted); border-bottom: 3px solid transparent; border-radius: 4px 4px 0 0;
}
nav.tabs button:hover { color: var(--ink); background: #f9fafb; }
nav.tabs button.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
main { padding: 20px 22px 60px; max-width: 1180px; margin: 0 auto; }
.page-title { font-size: 20px; margin: 4px 0 16px; }
.grid { display: grid; gap: 14px; }
.grid.cards { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 14px; color: var(--muted); font-weight: 600; }
.kpi { font-size: 26px; font-weight: 700; }
.kpi small { font-size: 13px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.badge { display: inline-block; font-size: 11px; padding: 1px 7px; border-radius: 999px; margin-left: 6px; }
.badge.direct { background: #e0f2e9; color: #15803d; }
.badge.derived { background: #eef2ff; color: #4338ca; }
.badge.warn { background: #ffedd5; color: #c2410c; }
.badge.stale { background: #fef3c7; color: #b45309; }
.badge.exp { background: #fee2e2; color: #b91c1c; }
.badge.qa { background: #dcfce7; color: #166534; }
.badge.qb { background: #f1f5f9; color: #475569; }
.row { display: flex; justify-content: space-between; align-items: baseline; padding: 3px 0; border-bottom: 1px dashed var(--line); }
.row:last-child { border-bottom: none; }
.muted { color: var(--muted); }
.up { color: var(--up); font-weight: 600; }
.down { color: var(--down); font-weight: 600; }
.flat { color: var(--muted); }
.summary-box { background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: 10px; padding: 16px 18px; box-shadow: var(--shadow); margin-bottom: 18px; }
.summary-box .headline { font-size: 22px; font-weight: 700; color: var(--accent); }
.table { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; font-size: 13px; }
.table th { background: #f9fafb; }
.table tr:nth-child(even) td { background: #fcfcfd; }
section.block { margin: 22px 0; }
section.block > h2 { font-size: 16px; border-left: 4px solid var(--accent); padding-left: 10px; margin: 0 0 10px; }
.chart-wrap { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px; box-shadow: var(--shadow); }
.toggle { display: inline-flex; gap: 6px; margin-bottom: 10px; }
.toggle button { border: 1px solid var(--line); background: var(--panel); padding: 5px 12px; border-radius: 6px; cursor: pointer; font-size: 13px; }
.toggle button.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.score-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; box-shadow: var(--shadow); }
.score-top { display: flex; justify-content: space-between; align-items: center; }
.score-val { font-size: 24px; font-weight: 800; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.v2 { background: #b91c1c; } .v1 { background: #ef4444; } .v0 { background: #9ca3af; }
.vn1 { background: #22c55e; } .vn2 { background: #15803d; }
.basis { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.basis code { background: #f3f4f6; padding: 1px 5px; border-radius: 3px; }
.note { background: #fff7ed; border-left: 4px solid var(--warn); padding: 10px 14px; border-radius: 6px; margin: 14px 0; font-size: 13px; }
footer { background: var(--panel); border-top: 1px solid var(--line); padding: 16px 22px; color: var(--muted); font-size: 12px; }
svg text { font-family: -apple-system, "Segoe UI", "Microsoft YaHei", sans-serif; }
.download-link { display: inline-block; margin-top: 10px; padding: 8px 14px; background: var(--blue); color: #fff; border-radius: 6px; text-decoration: none; font-size: 13px; }
a { color: var(--blue); }

/* ===== Stage 3A.1 语义化配色：按业务含义，而非机械正负号（需求 7）===== */
.sc-good { border-left: 5px solid #16a34a; }
.sc-bad { border-left: 5px solid #dc2626; }
.sc-warn { border-left: 5px solid #d97706; }
.sc-info { border-left: 5px solid #0891b2; }
.sc-neutral { border-left: 5px solid #9ca3af; }
.sc-expired { border-left: 5px solid #9ca3af; opacity: .72; }   /* 过期/缺失/低质量 => 灰 */
.val-good { background: #16a34a; } .val-bad { background: #dc2626; }
.val-warn { background: #d97706; } .val-info { background: #0891b2; }
.val-neutral { background: #9ca3af; } .val-expired { background: #9ca3af; }
.txt-good { color: #15803d; } .txt-bad { color: #dc2626; }
.txt-warn { color: #b45309; } .txt-info { color: #0e7490; }
.txt-neutral { color: #6b7280; } .txt-expired { color: #6b7280; }

/* 状态药丸（周期状态 final/provisional/partial）*/
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.status-pill.final { background: #dcfce7; color: #166534; }
.status-pill.provisional { background: #fef3c7; color: #92400e; }
.status-pill.partial { background: #fee2e2; color: #b91c1c; }

/* 暂定值横幅（与 Level 0 横幅区分）*/
.prov-banner {
  background: #fef3c7; color: #92400e; border-bottom: 1px solid #fcd34d;
  padding: 8px 22px; font-size: 13px; font-weight: 600;
}
.prov-banner b { color: #b45309; }

/* ===== 景气诊断页「综合状态」卡片（3A.1 修正）===== */
.summary-box .status-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.summary-box .status-title { font-size: 22px; font-weight: 700; color: var(--accent); }
.status-badge {
  display: inline-flex; align-items: center; padding: 3px 14px;
  border-radius: 999px; font-size: 15px; font-weight: 800;
  background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5;
}
.status-badge.sc-status { letter-spacing: 1px; }
.badge-provisional {
  background: #fef3c7; color: #92400e; border: 1px solid #fcd34d;
  font-size: 13px; font-weight: 700;
}
.summary-box .rel-line { margin-top: 10px; font-size: 15px; color: #374151; }
.summary-box .rel-line b {
  padding: 2px 10px; border-radius: 6px; font-weight: 800;
  background: #ede9fe; color: #5b21b6;
}
.summary-box .status-summary {
  margin: 10px 0; font-size: 14px; line-height: 1.7; color: #1f2937;
}
.summary-box .basis-list { margin-top: 6px; font-size: 13px; color: #374151; }
.summary-box .basis-list ul { margin: 6px 0 0; padding-left: 20px; }
.summary-box .basis-list li { margin: 3px 0; }
.rules-collapse {
  margin-top: 12px; border: 1px dashed var(--line); border-radius: 8px;
  padding: 6px 12px; background: #fafafa; font-size: 13px;
}
.rules-collapse summary { cursor: pointer; font-weight: 700; color: var(--muted); }
.rules-collapse .basis { margin-top: 6px; }
.prov-hint {
  margin-top: 12px; background: #fef3c7; color: #92400e;
  border: 1px solid #fcd34d; border-radius: 8px; padding: 9px 12px; font-size: 13px; font-weight: 600;
}
/* ===== 景气诊断页「评分卡片」信息降噪（3A.1.1）===== */
/* 分数圆圈：仅显示 +2/+1/0/-1/-2，不参与判定状态不进入圆圈 */
.score-val { font-size: 22px; font-weight: 800; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 auto; }

/* 被抑制状态：横向灰色胶囊，禁止竖排、禁止固定为圆形 */
.status-pill.pill-insufficient {
  background: #e5e7eb; color: #374151; border: 1px solid #d1d5db;
  font-size: 13px; font-weight: 700; line-height: 1.2; border-radius: 999px;
  padding: 5px 14px; min-width: auto; white-space: nowrap; display: inline-block;
}

/* 卡片本体：纵向弹性布局，详情展开时才增长，默认不被长结论撑高 */
.score-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.score-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.score-name { min-width: 0; }
.score-name b { font-size: 14.5px; color: #1f2937; }
.score-status { font-size: 12.5px; color: #4b5563; margin-top: 2px; }
.core-vals { margin: 10px 0 0; padding-left: 18px; font-size: 12.5px; color: #4b5563; }
.core-vals li { margin: 2px 0; }
.score-concl { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: #374151; }
.card-obs { margin-top: 8px; font-size: 12px; color: #6b7280; }

/* 计算详情：默认折叠；内部字段等宽字体仅在详情内，长文本允许换行 */
.calc-details { margin-top: 10px; border-top: 1px dashed var(--line); padding-top: 8px; }
.calc-details > summary { cursor: pointer; font-size: 12.5px; font-weight: 700; color: #6b7280; }
.calc-details > summary:hover { color: #374151; }
.detail-body { margin-top: 8px; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55; color: #4b5563; overflow-wrap: anywhere; word-break: break-word; }
.dv-row { display: flex; gap: 8px; margin: 4px 0; }
.dv-k { flex: 0 0 92px; color: #9ca3af; }
.dv-v { flex: 1; min-width: 0; }
.dv-list { margin: 2px 0 0; padding-left: 18px; }
.dv-list li { margin: 2px 0; }

/* 卡片分组：核心 / 辅助，组间明确标题与间距 */
.diag-group { margin-top: 22px; }
.group-title { font-size: 15px; font-weight: 700; color: var(--accent);
  border-left: 4px solid var(--accent); padding-left: 10px; margin: 0 0 12px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: start; }

/* 响应式：小屏 2 列 / 移动 1 列 */
@media (max-width: 1200px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .card-grid { grid-template-columns: 1fr; } }

/* ===================== 猪企实战辅助映射（Stage 3B）===================== */
.cm-banner { background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); margin-bottom: 14px; }
.cm-banner-title { font-size: 16px; font-weight: 700; color: var(--accent); }
.cm-banner-title b { color: var(--ink); }
.cm-banner-sub { margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.6; }

.cm-legend { margin: 6px 0 14px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* 状态药丸（7 个实战辅助状态）*/
.cm-status { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; border: 1px solid transparent; }
.cm-status.status-good { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.cm-status.status-bad { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.cm-status.status-warn { background: #ffedd5; color: #c2410c; border-color: #fed7aa; }
.cm-status.status-info { background: #cffafe; color: #0e7490; border-color: #a5f3fc; }
.cm-status.status-neutral { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }
.cm-status.status-expired { background: #e5e7eb; color: #6b7280; border-color: #d1d5db; }

/* 分数药丸（-2~+2 / 数据不足）*/
.cm-pill { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; min-width: 34px; text-align: center; border: 1px solid transparent; }
.cm-pill.pill-good { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.cm-pill.pill-bad { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.cm-pill.pill-neutral { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }
.cm-pill.pill-expired { background: #e5e7eb; color: #6b7280; border-color: #d1d5db; }

/* 总览网格 */
.cm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: start; }
@media (max-width: 1200px) { .cm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .cm-grid { grid-template-columns: 1fr; } }
.cm-card { background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--line);
  border-radius: 10px; padding: 12px 14px; box-shadow: var(--shadow); }
.cm-card.sc-good { border-left-color: #16a34a; }
.cm-card.sc-bad { border-left-color: #dc2626; }
.cm-card.sc-warn { border-left-color: #d97706; }
.cm-card.sc-info { border-left-color: #0891b2; }
.cm-card.sc-neutral { border-left-color: #9ca3af; }
.cm-card.sc-expired { border-left-color: #9ca3af; opacity: .85; }
.cm-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.cm-name { font-size: 15px; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.cm-code { font-size: 12px; color: var(--muted); }
.cm-industry { margin-top: 6px; font-size: 12.5px; color: var(--muted); }
.cm-prov { color: #b45309; font-weight: 600; }
.cm-dims { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin: 10px 0 8px; }
.cm-dim { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #4b5563; }
.cm-dim-name { color: var(--muted); }
.cm-reason { font-size: 12.5px; color: #374151; line-height: 1.55; margin-top: 4px; }
.cm-risk { margin-top: 8px; font-size: 12.5px; color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; padding: 6px 9px; }
.cm-miss { margin-top: 6px; font-size: 12px; color: #92400e; }

/* 单公司深度详情 */
.cm-detail-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.cm-detail-top select { font-size: 14px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.cm-back { font-size: 13px; color: var(--blue); text-decoration: none; }
.cm-detail { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; box-shadow: var(--shadow); }
.cm-detail-head { display: flex; align-items: center; gap: 12px; }
.cm-detail-head h2 { margin: 0; font-size: 20px; color: var(--accent); }
.cm-detail-meta { margin: 6px 0 14px; font-size: 12.5px; color: var(--muted); }
.cm-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px; }
@media (max-width: 860px) { .cm-cols { grid-template-columns: 1fr; } }
.cm-col h3 { font-size: 14px; color: var(--muted); margin: 0 0 8px; font-weight: 600; }
.cm-table { width: 100%; border-collapse: collapse; }
.cm-table td { padding: 7px 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
.cm-table td:first-child { color: var(--muted); }
.cm-field { margin-top: 10px; font-size: 13px; color: #374151; }
.cm-ev-pos { font-size: 13px; color: #166534; line-height: 1.6; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 6px; padding: 8px 10px; }
.cm-ev-neg { font-size: 13px; color: #b91c1c; line-height: 1.6; background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; padding: 8px 10px; }
.cm-concl { margin-top: 14px; font-size: 14px; color: #1f2937; line-height: 1.7; border-top: 1px dashed var(--line); padding-top: 12px; }
.cm-note { margin-top: 10px; }

/* 实战观察清单 */
.cm-wl-group { margin-top: 20px; }
.cm-wl-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 860px) { .cm-wl-list { grid-template-columns: 1fr; } }
.cm-wl-item { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; box-shadow: var(--shadow); }
.cm-wl-link { font-size: 14.5px; font-weight: 700; color: var(--accent); text-decoration: none; }
.cm-wl-link:hover { text-decoration: underline; }
.cm-wl-code { font-size: 12px; color: var(--muted); }
.cm-wl-reason { font-size: 12.5px; color: var(--muted); margin-left: auto; text-align: right; max-width: 55%; }
.cm-wl-op { flex-basis: 100%; font-size: 12px; color: #4b5563; background: #f8fafc; border: 1px solid var(--line); border-radius: 6px; padding: 6px 9px; line-height: 1.55; }
.cm-wl-op b { color: #0e7490; }

/* ===== Stage 3B.2 真实经营展示 ===== */
.cm-op-summary { margin: 18px 0 4px; background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--blue); border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); }
.cm-op-summary h3 { margin: 0 0 10px; font-size: 15px; color: var(--accent); }
.cm-op-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.cm-op-table th, .cm-op-table td { border: 1px solid var(--line); padding: 6px 8px; text-align: right; white-space: nowrap; }
.cm-op-table th { background: #f9fafb; color: var(--muted); font-weight: 600; text-align: center; }
.cm-op-table td:first-child { text-align: left; }
.cm-op-table td:nth-child(2) { text-align: center; }
.cm-op-table .cm-scope { text-align: left; white-space: normal; color: var(--muted); font-size: 11.5px; }
.cm-op-table tr:nth-child(even) td { background: #fcfcfd; }

/* 公司详情页：月度经营区 */
.cm-monthly { margin: 18px 0 0; background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--blue); border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); }
.cm-monthly h3 { margin: 0 0 12px; font-size: 15px; color: var(--accent); }
.cm-monthly-charts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 980px) { .cm-monthly-charts { grid-template-columns: 1fr; } }
.cm-mc { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; }
.cm-mc-t { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 4px; text-align: center; }
.cm-struct { margin-top: 14px; font-size: 13px; color: #374151; background: #f8fafc; border: 1px solid var(--line); border-radius: 6px; padding: 8px 10px; line-height: 1.6; }
.cm-ym { margin-top: 8px; font-size: 12.5px; color: #4b5563; line-height: 1.6; }
.cm-ym:empty { display: none; }
.cm-src { margin-top: 10px; font-size: 12px; color: var(--muted); line-height: 1.6; border-top: 1px dashed var(--line); padding-top: 8px; }
.cm-src a { color: var(--blue); }


/* 周期总览「猪企映射摘要」(spec 十四) */
.cm-banner-head { font-size: 16px; font-weight: 700; color: var(--accent); display: flex; justify-content: space-between; align-items: center; }
.cm-link { font-size: 13px; color: var(--blue); text-decoration: none; }
.cm-link:hover { text-decoration: underline; }
.cm-dist { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.cm-chip { display: inline-block; padding: 3px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; background: var(--panel); border: 1px solid var(--line); }
.cm-chip.cm-good { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.cm-chip.cm-bad { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.cm-chip.cm-warn { background: #ffedd5; color: #c2410c; border-color: #fed7aa; }
.cm-chip.cm-info { background: #cffafe; color: #0e7490; border-color: #a5f3fc; }
.cm-chip.cm-neutral { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }
.cm-chip.cm-expired { background: #e5e7eb; color: #6b7280; border-color: #d1d5db; }
.cm-dist-note { margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.cm-meaning-box { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); }
.cm-meaning { font-size: 13.5px; color: #374151; line-height: 1.7; }
.cm-meaning .muted { margin-top: 6px; font-size: 12px; }

/* ===== Stage 4A 影子运行信息（只读观察性标注，不含任何交易信号） ===== */
.shadow-banner {
  background: #eef2ff;
  border-left: 4px solid #6366f1;
  color: #1e293b;
  padding: 6px 12px;
  font-size: 13px;
  margin: 8px 0 0;
  border-radius: 4px;
}
.shadow-badge {
  display: inline-block;
  background: #6366f1;
  color: #fff;
  border-radius: 10px;
  padding: 1px 8px;
  font-size: 12px;
  margin-right: 6px;
  vertical-align: middle;
}
.shadow-disclaimer {
  color: #64748b;
  font-size: 12px;
  margin-top: 4px;
}
.shadow-company-note {
  background: var(--panel, #f8fafc);
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 10px;
  font-size: 13px;
  color: #334155;
}
.shadow-table-wrap {
  margin-top: 16px;
  border-top: 1px dashed #cbd5e1;
  padding-top: 12px;
}
.shadow-table-title {
  font-weight: 600;
  font-size: 13px;
  color: #334155;
  margin-bottom: 6px;
}
.shadow-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.shadow-table th,
.shadow-table td {
  border: 1px solid var(--line, #e2e8f0);
  padding: 5px 8px;
  text-align: left;
}
.shadow-table th {
  background: #f1f5f9;
  color: #475569;
}


