/* ── Section headings (page-specific) ────────────────────────── */
.home-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--v-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mt-section { margin-top: 32px; }
.mt-16      { margin-top: 16px; }

/* ── Finance grid ─────────────────────────────────────────────── */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.finance-card .home-label { margin-bottom: 4px; }

.finance-type {
  font-size: 12px;
  color: var(--v-muted);
  margin-bottom: 10px;
}

.finance-equity { display: block; margin-bottom: 6px; }

.finance-change { font-size: 15px; font-weight: 600; }

.finance-card.total { border-color: rgba(99,210,255,.4); }

.v-zero { color: var(--v-muted); }

/* ── Products grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card { display: flex; flex-direction: column; }

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.product-card-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--v-text);
}

.product-desc {
  font-size: 15px;
  color: var(--v-muted);
  line-height: 1.6;
}

.product-stats {
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  color: var(--v-text);
  line-height: 1.8;
}

/* ── Exchanges list ───────────────────────────────────────────── */
.exchanges-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exchange-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--v-surface2);
  border: 1px solid var(--v-border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--v-text);
}

/* ── Balance chart ────────────────────────────────────────────── */
.balance-chart-card { margin-top: 16px; }

.balance-chart-label { margin-bottom: 14px; }

.balance-chart-empty {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--v-muted);
  font-size: 14px;
  padding: 0 24px;
}

/* ── Empty state (no profiles) ───────────────────────────────── */
.finance-empty {
  padding: 24px;
  text-align: center;
  color: var(--v-muted);
  font-size: 13px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .finance-card .v-money { font-size: 22px; }
}
