/* ============================================================
   AIGEP · 品牌 GEO 力报告页
   自包含变量体系 + 玻璃拟态 + 渐变 + 微交互动画
   ============================================================ */

:root,
[data-theme="light"] {
  --bg: #f6f8fc;
  --bg-soft: #eef2f9;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e6ebf2;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #94a3b8;
  --brand: #6366f1;
  --brand-2: #8b5cf6;
  --violet: #a855f7;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --sky: #0ea5e9;
  --shadow: 0 12px 40px rgba(15, 23, 42, .08);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, .14);
  --radius: 22px;
  --glass-bg: rgba(255, 255, 255, .72);
  --glass-brd: rgba(255, 255, 255, .55);
}

[data-theme="dark"] {
  --bg: #080b12;
  --bg-soft: #0e131d;
  --surface: #131a26;
  --surface-2: #1b2433;
  --border: #243044;
  --text: #f1f5f9;
  --text-soft: #94a3b8;
  --muted: #64748b;
  --brand: #818cf8;
  --brand-2: #a78bfa;
  --violet: #c084fc;
  --emerald: #34d399;
  --amber: #fbbf24;
  --rose: #fb7185;
  --sky: #38bdf8;
  --shadow: 0 12px 40px rgba(0, 0, 0, .5);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, .6);
  --glass-bg: rgba(19, 26, 38, .62);
  --glass-brd: rgba(255, 255, 255, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ---------- 导航 ---------- */
.rnav {
  position: sticky; top: 0; z-index: 50;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border-bottom: 1px solid var(--border);
}
.rnav-inner {
  max-width: 1160px; margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.rlogo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.rlogo-mark {
  width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: .95rem;
  box-shadow: 0 6px 18px rgba(99, 102, 241, .35);
}
.rnav-links { display: flex; align-items: center; gap: 26px; font-size: .95rem; color: var(--text-soft); }
.rnav-links a { transition: color .2s; }
.rnav-links a:hover { color: var(--brand); }

.theme-switch { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); }
.theme-switch button {
  width: 34px; height: 32px; border: none; border-radius: 999px; background: transparent;
  color: var(--muted); cursor: pointer; display: grid; place-items: center; transition: all .22s;
}
.theme-switch button:hover { color: var(--text); }
.theme-switch button.active {
  background: var(--surface); color: var(--brand);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 76px 24px 64px;
}
.hero-aura {
  position: absolute; width: 760px; height: 760px; left: 50%; top: -180px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99, 102, 241, .20) 0%, rgba(139, 92, 246, .10) 40%, transparent 70%);
  pointer-events: none; animation: aura 11s ease-in-out infinite;
}
@keyframes aura { 0%,100% { opacity: .75; transform: translateX(-50%) scale(1);} 50% { opacity: 1; transform: translateX(-50%) scale(1.08);} }

.hero-inner {
  position: relative; max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px; font-size: .82rem; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(16, 185, 129, .16); }
.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem); margin: 22px 0 8px; letter-spacing: -.03em; line-height: 1.06;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.15rem; font-weight: 600; margin: 0 0 14px; color: var(--text); }
.hero-desc { font-size: 1rem; line-height: 1.75; color: var(--text-soft); max-width: 520px; margin: 0 0 22px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: .82rem; padding: 7px 13px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-soft);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

/* ---------- 评分环 ---------- */
.gauge-card {
  position: relative; justify-self: center;
  width: 300px; height: 300px; display: grid; place-items: center;
  border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.gauge { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-track { fill: none; stroke: var(--surface-2); stroke-width: 14; }
.gauge-value {
  fill: none; stroke: url(#gaugeGrad); stroke-width: 14; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.4s cubic-bezier(.16, 1, .3, 1);
}
.gauge-bench { stroke: var(--amber); stroke-width: 3; stroke-linecap: round; opacity: .9; }
.gauge-center { text-align: center; z-index: 2; }
.gauge-num { font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gauge-of { font-size: .9rem; color: var(--muted); margin-top: 2px; }
.gauge-level { display: inline-block; margin-top: 10px; font-size: .82rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.gauge-foot { position: absolute; bottom: 22px; display: flex; gap: 12px; align-items: center; font-size: .82rem; }
.gauge-foot .up { color: var(--emerald); font-weight: 700; }
.gauge-foot .down { color: var(--rose); font-weight: 700; }
.gauge-foot .muted { color: var(--muted); }

.tone-brand  { color: var(--brand);  background: rgba(99,102,241,.12); }
.tone-violet { color: var(--violet); background: rgba(168,85,247,.12); }
.tone-emerald{ color: var(--emerald);background: rgba(16,185,129,.14); }
.tone-sky    { color: var(--sky);    background: rgba(14,165,233,.14); }
.tone-amber  { color: var(--amber);  background: rgba(245,158,11,.16); }
.tone-rose   { color: var(--rose);   background: rgba(244,63,94,.14); }

/* ---------- KPI ---------- */
.kpis {
  max-width: 1080px; margin: -10px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.kpi {
  padding: 24px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
.kpi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kpi-num {
  font-size: 2.3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1;
}
.kpi[data-tone="brand"]  .kpi-num { color: var(--brand); }
.kpi[data-tone="violet"] .kpi-num { color: var(--violet); }
.kpi[data-tone="emerald"].kpi-num, .kpi[data-tone="emerald"] .kpi-num { color: var(--emerald); }
.kpi[data-tone="sky"]    .kpi-num { color: var(--sky); }
.kpi-label { font-size: 1rem; font-weight: 600; margin: 10px 0 4px; }
.kpi-sub { font-size: .82rem; color: var(--text-soft); }

/* ---------- 通用面板 / 玻璃 ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid var(--glass-brd);
}
.panel { max-width: 1080px; margin: 26px auto 0; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-head { margin-bottom: 22px; }
.panel-head h2 { font-size: 1.4rem; margin: 0 0 6px; letter-spacing: -.02em; }
.panel-head p { color: var(--text-soft); font-size: .92rem; margin: 0; }
.panel-head.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.grid-2 { max-width: 1080px; margin: 26px auto 0; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-2 .panel { margin: 0; }

/* ---------- 维度 ---------- */
.dims { display: flex; flex-direction: column; gap: 20px; }
.dim-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.dim-label { font-weight: 600; }
.dim-val { font-weight: 800; font-size: 1.15rem; }
.dim-val i { font-size: .8rem; color: var(--muted); font-style: normal; font-weight: 500; }
.dim-bar { height: 10px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.dim-bar > i { display: block; height: 100%; border-radius: 999px; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.dim-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 7px; font-size: .8rem; color: var(--text-soft); }
.dim-meta .w { color: var(--muted); white-space: nowrap; }

/* ---------- 平台 ---------- */
.plats { display: flex; flex-direction: column; gap: 16px; }
.plat-top { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.plat-rank { font-size: .78rem; font-weight: 800; color: var(--muted); width: 26px; }
.plat-name { font-weight: 600; flex: 1; }
.plat-rate { font-weight: 800; color: var(--brand); }
.plat-bar { height: 9px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.plat-bar > i { display: block; height: 100%; border-radius: 999px; width: 0; background: linear-gradient(90deg, var(--sky), var(--brand)); transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.plat-sub { font-size: .78rem; color: var(--text-soft); margin-top: 6px; }

/* ---------- 趋势 ---------- */
.trend-panel { overflow: hidden; }
.trend { width: 100%; height: auto; display: block; margin-top: 6px; }
.trend-area { fill: url(#areaGrad); opacity: 0; transition: opacity 1s ease .4s; }
.trend-line { fill: none; stroke: var(--brand); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1); }
.trend-dot { fill: var(--brand); opacity: 0; transition: opacity .4s ease .9s; }
.trend-axis { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq-actions { display: flex; gap: 10px; }
.dl {
  font-size: .9rem; font-weight: 600; padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
  box-shadow: 0 8px 22px rgba(99, 102, 241, .35); transition: all .25s cubic-bezier(.16,1,.3,1);
}
.dl:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(99, 102, 241, .45); }
.dl.ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.dl.ghost:hover { background: var(--surface-2); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq {
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq[open] { border-color: var(--brand); box-shadow: 0 6px 20px rgba(99,102,241,.12); }
.faq summary {
  cursor: pointer; padding: 16px 18px; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: 'Q'; font-weight: 800; color: var(--brand); font-size: .85rem;
  width: 24px; height: 24px; border-radius: 7px; background: rgba(99,102,241,.12); display: grid; place-items: center; flex: none; }
.faq-a { padding: 0 18px 18px 52px; color: var(--text-soft); line-height: 1.7; font-size: .92rem; }
.faq-toggle {
  margin-top: 14px; align-self: flex-start; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-soft); font-weight: 600; padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.faq-toggle:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- 提示卡 ---------- */
.hint {
  max-width: 1080px; margin: 26px auto 0; padding: 26px 30px; border-radius: var(--radius);
  display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow);
}
.hint-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none;
  background: rgba(99,102,241,.12); color: var(--brand); }
.hint h3 { margin: 4px 0 8px; font-size: 1.1rem; }
.hint p { margin: 0; color: var(--text-soft); line-height: 1.7; font-size: .92rem; }

/* ---------- 内容资产（公开文章卡片） ---------- */
.arts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.art {
  display: block; padding: 18px 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.art:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }
.art-title { font-weight: 700; font-size: .98rem; margin-bottom: 8px; line-height: 1.45; }
.art-sum { color: var(--text-soft); font-size: .85rem; line-height: 1.6; margin-bottom: 12px; }
.art-foot { display: flex; align-items: center; justify-content: space-between; }
.art-foot .tag {
  font-size: .75rem; padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--muted);
}
.art-go { font-size: .82rem; font-weight: 600; color: var(--brand); }
@media (max-width: 640px) { .arts { grid-template-columns: 1fr; } }

/* ---------- 竞品可见性对位 ---------- */
.comp-panel { overflow: hidden; }
.comps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comp {
  padding: 18px 20px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s;
}
.comp:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }
.comp-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.comp-name { font-weight: 700; font-size: 1rem; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.comp-vis { font-weight: 900; font-size: 1.35rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.comp-vis i { font-size: .72rem; color: var(--muted); font-style: normal; font-weight: 500; margin-left: 2px; }
.comp-mode-badge {
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  color: var(--emerald); background: rgba(16,185,129,.14); white-space: nowrap;
}
.comp-bar { height: 9px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.comp-bar > i { display: block; height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.comp-meta { display: flex; flex-direction: column; gap: 5px; margin-top: 9px; font-size: .8rem; color: var(--text-soft); }
.comp-reason { font-weight: 600; color: var(--text); }
.comp-desc { color: var(--muted); line-height: 1.55; }
.comp-badge { font-size: .8rem; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.comp-badge-real { color: var(--emerald); background: rgba(16,185,129,.14); }
.comp-badge-soft { color: var(--sky); background: rgba(14,165,233,.14); }
.comp-time { font-size: .76rem; color: var(--muted); }
@media (max-width: 640px) { .comps { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.rfoot { max-width: 1080px; margin: 40px auto 0; padding: 36px 24px 60px; text-align: center; color: var(--text-soft); font-size: .9rem; line-height: 1.8; }
.rfoot .muted { color: var(--muted); font-size: .82rem; }
.rfoot a { color: var(--brand); font-weight: 600; }

/* ---------- 入场动画 ---------- */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.fade-up.in { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rnav-links { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .gauge-card { width: 250px; height: 250px; }
  .gauge-num { font-size: 3.2rem; }
  .panel { padding: 22px; }
  .panel-head.row { flex-direction: column; align-items: flex-start; }
}

/* ---------- 公开 FAQ 知识库页（/faqs） ---------- */
.kb-hero { position: relative; overflow: hidden; padding: 70px 24px 30px; }
.kb-hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.kb-hero-inner h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 20px 0 12px; letter-spacing: -.03em; line-height: 1.1; }
.kb-desc { color: var(--text-soft); line-height: 1.75; margin: 0 0 26px; }
.kb-desc a { color: var(--brand); font-weight: 600; }
.kb-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 460px; margin: 0 auto; padding: 12px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  color: var(--muted); box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s;
}
.kb-search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(99,102,241,.14); }
.kb-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: .95rem; color: var(--text);
}
.kb-search input::placeholder { color: var(--muted); }
.kb-list { padding: 26px 30px; }
.kb-list .faq-list { display: flex; flex-direction: column; gap: 10px; }
.kb-empty { text-align: center; color: var(--muted); padding: 30px 0; font-size: .9rem; }
.kb-empty-hint { border-top: 1px dashed var(--border); margin-top: 12px; }
@media (max-width: 560px) { .kb-list { padding: 18px 14px; } }

/* 报告导出按钮（hero 区） */
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-actions .dl { font-size: .85rem; padding: 9px 16px; }

/* ===== AI 平台评测板块（品牌可见度实测） ===== */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.rv-item { padding: 14px 16px; border: 1px solid var(--border, rgba(127,119,221,.18)); border-radius: 14px; background: rgba(127,119,221,.05); }
.rv-num { font-size: 26px; font-weight: 700; line-height: 1.1; }
.rv-num.tone-ok { color: #0f9d76; }
.rv-num.tone-sky { color: #2563eb; }
.rv-num.tone-brand { color: var(--brand, #534ab7); }
.rv-label { font-size: 13px; margin-top: 6px; }
.rv-sub { font-size: 12px; color: var(--muted, #9ca3af); margin-top: 2px; }
.rv-emotion { margin-top: 14px; font-size: 13px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rv-em-label { color: var(--muted, #9ca3af); }
.comp-badge-neg { background: rgba(244,63,94,.12); color: #e11d48; }

.rv-platforms { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.rv-platform { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rv-pname { min-width: 84px; }
.rv-bar { flex: 1; height: 6px; border-radius: 999px; background: rgba(127,119,221,.12); overflow: hidden; }
.rv-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #7f77dd, #534ab7); }
.rv-pmeta { font-size: 12px; color: var(--muted, #9ca3af); white-space: nowrap; }

/* ===== 评测趋势对比（双线 SVG + delta 徽章） ===== */
.rv-trend { margin-top: 18px; border-top: 1px dashed var(--border, rgba(127,119,221,.18)); padding-top: 14px; }
.rv-trend-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.rv-legend { font-size: 12px; color: var(--muted, #9ca3af); display: inline-flex; align-items: center; gap: 4px; }
.rv-legend .lg { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin: 0 4px 0 10px; vertical-align: middle; }
.rv-legend .lg-score { background: #6366f1; }
.rv-legend .lg-mention { background: #0ea5e9; }
.rv-delta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.rv-delta-item { display: inline-flex; align-items: baseline; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 13px; background: rgba(127,119,221,.06); border: 1px solid var(--border, rgba(127,119,221,.18)); }
.rv-delta-item b { font-size: 15px; font-weight: 700; }
.rv-delta-item i { font-style: normal; color: var(--muted, #9ca3af); }
.rv-delta-item.tone-up { color: #10b981; } .rv-delta-item.tone-up b { color: #10b981; }
.rv-delta-item.tone-down { color: #f43f5e; } .rv-delta-item.tone-down b { color: #f43f5e; }
.rv-delta-item.tone-flat { color: var(--muted, #9ca3af); } .rv-delta-item.tone-flat b { color: var(--muted, #9ca3af); }
.rv-trend-svg { margin-top: 4px; border-radius: 12px; background: rgba(127,119,221,.04); }
@media (max-width: 560px) { .rv-delta-item { padding: 5px 10px; } .rv-delta-item b { font-size: 14px; } }
