  cursor: pointer; text-decoration: none;
}
.btn.secondary { background: var(--panel-2); color: var(--ink); border: 1px solid var(--line); }
.btn.ghost { background: transparent; color: #c7d2fe; border: 1px solid #2a3048; }

.cards { display: grid; gap: 16px; }
@media (min-width: 640px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cards.four { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px; transition: .2s ease;
}
.card.glow:hover { border-color: #4d61ff55; box-shadow: 0 0 0 3px #4d61ff22; transform: translateY(-2px); }

.section { max-width: 1200px; margin: 0 auto; padding: 36px 20px; }
.section h2 { font-size: 22px; margin: 0 0 14px; }
.section h3 { font-size: 15px; color: var(--muted); font-weight: 500; margin: 0 0 10px; }

.tag {
  display: inline-block; background: #1a2236; color: #a5b4fc;
  border: 1px solid #252e48; padding: 4px 8px; border-radius: 999px;
  font-size: 12px; margin: 2px 4px;
}

.kpi-row { display: grid; gap: 12px; }
@media (min-width: 640px) { .kpi-row.three { grid-template-columns: repeat(3, 1fr); } }
.kpi {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; text-align: center;
}
.kpi .v { font-size: 22px; font-weight: 800; }
.kpi .l { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* Insight */
.insight-grid { display: grid; gap: 16px; }
@media (min-width: 860px) { .insight-grid.three { grid-template-columns: repeat(3, 1fr); } }
.insight {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.insight .pair { font-weight: 700; color: white; }
.insight .bias { display: inline-block; margin-top: 8px; padding: 4px 8px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.insight .bias.bull { background: rgba(34,197,94,.15); color: #22c55e; }
.insight .bias.bear { background: rgba(239,68,68,.15); color: #ef4444; }
.insight .bias.side { background: rgba(245,158,11,.15); color: #f59e0b; }
.insight .date { color: var(--muted); font-size: 12px; margin-top: 8px; }

footer { border-top: 1px solid var(--line); padding: 24px 20px; color: var(--muted); font-size: 13px; }
footer .inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
footer a { color: #a5b4fc; }

.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted); }
