/* Theme overrides for tokens */
@media (prefers-color-scheme: dark){
  .theme-auto{
    --bg:#0f1115; --ink:#eae6df; --muted:#aaa69f;
    --card:#14171d; --border:#2a2f3a;
    --accent:#7aa2ff; --accent-ink:#0b1020;
    --surface-tint: rgba(122,162,255,0.18);
    --surface-hover: rgba(122,162,255,0.28);
  }
}
.theme-dark{
  --bg:#0f1115; --ink:#eae6df; --muted:#aaa69f;
  --card:#14171d; --border:#2a2f3a;
  --accent:#7aa2ff; --accent-ink:#0b1020;
  --surface-tint: rgba(122,162,255,0.18);
  --surface-hover: rgba(122,162,255,0.28);
}
.theme-light{
  --bg:#f7fafc; --ink:#1f2937; --muted:#6b7280;
  --card:#ffffff; --border:#e5e7eb;
  --accent:#2563eb; --accent-ink:#ffffff;
  --surface-tint: rgba(37,99,235,0.08);
  --surface-hover: rgba(37,99,235,0.12);
}
