/* ── Progress Bar ────────────────────────────── */
.progress-section {
  margin: 24px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-brand), #ff4444);
  border-radius: 4px;
  transition: width 300ms ease;
  width: 0%;
}

.progress-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 10px;
}
