.progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.progress__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.progress__bar {
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width 0.35s var(--ease);
}

.progress__item.is-done .progress__fill,
.progress__item.is-active .progress__fill {
  width: 100%;
}

.progress__item.is-active .progress__fill {
  background: var(--accent);
}

.progress__label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress__item.is-active .progress__label,
.progress__item.is-done .progress__label {
  color: var(--ink-soft);
  font-weight: 600;
}
