/* ===== ЭТАПЫ (таймлайн) ===== */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-line), var(--line) 60%);
}

.tl-item {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 0 0 40px 0;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  color: var(--faint);
  z-index: 1;
}

.tl-item--done .tl-dot {
  color: var(--teal);
  border-color: rgba(111, 168, 176, 0.5);
}

.tl-item--active .tl-dot {
  color: var(--gold-bright);
  border-color: var(--gold-line);
  background: var(--gold-soft);
  animation: tlPulse 2.2s ease-in-out infinite;
}

.tl-body {
  padding-top: 4px;
}

.tl-title {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}

.tl-text {
  color: var(--muted);
  font-size: 15px;
}

@keyframes tlPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 106, 0); }
}
