/* Thinqee, For Organizations. Tokens in tokens.css, shared nav/footer/layout in base.css.
   The Fabulous Trifecta venn diagram and the per-pillar proof card are shared
   with other trifecta pages and live in base.css. */

/* ─── DASHBOARD CARD (One Dashboard, Three Signals visual) ─── */
.dash-card {
  width: 100%; max-width: 400px;
  background: var(--card-solid); border: 1px solid var(--border2);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.dash-top {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
}
.dash-top .chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sunrise); box-shadow: 0 0 8px var(--sunrise); }
.dash-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.dash-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-label { font-size: 0.85rem; color: var(--text); }
.dash-bar { flex: 1; margin: 0 14px; height: 6px; border-radius: 4px; background: var(--card); overflow: hidden; }
.dash-bar span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--sunrise), var(--golden)); }
.dash-value { font-size: 0.85rem; font-weight: 700; color: var(--golden); white-space: nowrap; }
.dash-note { font-size: 0.78rem; color: var(--muted); line-height: 1.55; border-top: 1px solid var(--border); padding-top: 14px; }
