/* Private profile setup panel shown only after /api/auth/me succeeds. */
.profile-setup-progress {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 10px 0 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 0, rgba(255,42,161,.18), transparent 38%),
    linear-gradient(135deg, rgba(22,22,31,.97), rgba(32,27,51,.96));
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  overflow: hidden;
}
.profile-setup-progress[hidden] { display: none !important; }
.profile-setup-progress__eyebrow {
  margin: 0 0 2px;
  color: #ff79ba;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.profile-setup-progress__title-row,
.profile-setup-progress__meta,
.profile-setup-progress__checks {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-setup-progress__title-row { justify-content: space-between; }
.profile-setup-progress h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(.92rem, 1.7vw, 1.08rem);
  line-height: 1.25;
}
.profile-setup-progress__percent {
  flex: 0 0 auto;
  color: #fff;
  font-size: .96rem;
  font-weight: 800;
}
.profile-setup-progress__bar {
  width: 100%;
  height: 6px;
  margin: 6px 0 6px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  appearance: none;
  -webkit-appearance: none;
}
.profile-setup-progress__bar::-webkit-progress-bar {
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}
.profile-setup-progress__bar::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2aa1, #8b5cf6, #3b82f6);
}
.profile-setup-progress__bar::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2aa1, #8b5cf6, #3b82f6);
}
.profile-setup-progress__meta {
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
}
.profile-setup-progress__checks { flex-wrap: wrap; }
.profile-setup-progress__check {
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  font-size: .68rem;
}
.profile-setup-progress__check.is-complete {
  color: #a7f3d0;
  border-color: rgba(16,185,129,.30);
  background: rgba(16,185,129,.10);
}
.profile-setup-progress__cta {
  min-width: 128px;
  padding: 9px 13px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #ff2aa1, #7c3aed);
  box-shadow: 0 7px 18px rgba(255,42,161,.18);
  transition: transform .18s ease, filter .18s ease;
}
.profile-setup-progress__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.profile-setup-progress.is-complete .profile-setup-progress__cta {
  background: rgba(255,255,255,.10);
  box-shadow: none;
}
@media (max-width: 720px) {
  .profile-setup-progress { grid-template-columns: 1fr; padding: 10px 12px; gap: 9px; }
  .profile-setup-progress__title-row { align-items: baseline; }
  .profile-setup-progress__meta { gap: 5px 8px; }
  .profile-setup-progress__cta { width: 100%; padding: 8px 12px; }
}
