/* ===== WIZARD ===== */
#wizard-view {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.wizard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
}

.wizard-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.wizard-steps .step-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.wizard-steps .step-dot.active {
  background: var(--accent);
}

.wizard-steps .step-dot.done {
  background: var(--green);
}

.wizard-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.wizard-card .step-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-provider-section {
  margin-top: 0.75rem;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
