.new-onboarding .ldr { justify-content: center; align-items: center; padding: 40px 28px; }
.new-onboarding .cring-wrap { position: relative; width: 180px; height: 180px; margin-bottom: 32px; }
.new-onboarding .cring-bg,
.new-onboarding .cring-fg { position: absolute; inset: 0; }
.new-onboarding .cring-bg circle { fill: none; stroke: var(--sand); stroke-width: 8; }
.new-onboarding .cring-fg circle { fill: none; stroke: var(--coral); stroke-width: 8; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset .4s ease; }
.new-onboarding .cring-pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 48px; color: var(--text-primary); font-weight: 700; letter-spacing: -.03em; }
.new-onboarding .ldots { display: flex; gap: 10px; margin-bottom: 28px; }
.new-onboarding .ldot2 { width: 28px; height: 28px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; transition: all .4s; }
.new-onboarding .ldot2.done { background: var(--green); }
.new-onboarding .ldot2.done svg { opacity: 1; }
.new-onboarding .ldot2 svg { width: 14px; height: 14px; color: #fff; opacity: 0; transition: opacity .3s; }
.new-onboarding .ldot2.active { background: var(--coral); animation: new-onboarding-dotpulse 1s ease-in-out infinite; }
.new-onboarding .lstep-label { font-size: 16px; font-weight: 600; color: var(--text-primary); text-align: center; min-height: 24px; transition: opacity .3s; }

@keyframes new-onboarding-dotpulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
