#infl-profile-completion-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.infl-pcw-card {
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  padding: 1.5rem;
}

.infl-pcw-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}

.infl-pcw-card .sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem;
}

.infl-pcw-progress {
  height: 6px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.infl-pcw-progress > div {
  height: 100%;
  background: linear-gradient(90deg, #ee3e96, #7c3aed);
  transition: width 0.3s ease;
}

.infl-pcw-field {
  margin-bottom: 0.875rem;
}

.infl-pcw-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.infl-pcw-field input,
.infl-pcw-field textarea,
.infl-pcw-field select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
}

.infl-pcw-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.infl-pcw-chip {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.infl-pcw-chip.active {
  border-color: #7c3aed;
  background: #f5f3ff;
  color: #5b21b6;
}

.infl-pcw-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.infl-pcw-btn {
  flex: 1;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.infl-pcw-btn-primary {
  background: #7c3aed;
  color: #fff;
}

.infl-pcw-btn-ghost {
  background: #f3f4f6;
  color: #374151;
}

.infl-pcw-msg {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.infl-pcw-msg.err {
  color: #b91c1c;
}
