/* ==========================================================================
   Steps — numbered horizontal process cards.
   ========================================================================== */

.steps {
  display: grid;
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  counter-reset: step;
}

@media (min-width: 48rem) {
  .steps--3 { grid-template-columns: repeat(3, 1fr); }
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
}

.step {
  position: relative;
  counter-increment: step;
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.step__title {
  font-size: var(--text-base);
  font-weight: 650;
  color: var(--text-strong);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}
