/* ============================================================
   css/funding-graph.css
   Cross-Funding Graph + Sybil Band Clustering — Pro tier.
   Extends css/funding-origin.css (both modules reuse the .fo-* classes for
   panel, header, coverage, bands, chips, skeleton, severity glows). This file
   only adds the few elements unique to these two modules: the graph canvas,
   the hub list spacing, and the Sybil clean-state line.
   ============================================================ */

/* ---- Cross-funding graph canvas ---- */
.fg-graph-wrap {
  position: relative;
  margin: 4px 0 18px 0;
  border-radius: 10px;
  background: var(--bg, #060810);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.fg-canvas {
  display: block;
  width: 100%;
  height: 340px;
}

.fg-canvas-hint {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

/* Hub list sits below the canvas; tighten the gap so it reads as a caption set */
.fg-hub-list {
  margin-top: 4px;
}

/* ---- Sybil clean (no bands) state ---- */
.sb-clean {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text2, #8a8a9c);
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-left: 2px solid #00ff88;
}

@media (max-width: 640px) {
  .fg-canvas { height: 300px; }
}

/* Muted coverage footnote under the headline: tells you whether a low
   coordination % is a clean token or a sparsely-clusterable cohort. */
.fg-coverage-note {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--mono, 'Chakra Petch', monospace);
}
