/* ============================================================
   PROFILE PAGE STYLES
   ============================================================ */

.container-narrow { padding-top: 36px; padding-bottom: 60px; }

.profile-header { margin-bottom: 24px; }
.profile-header h1 { font-size: 26px; margin-bottom: 6px; }

.completeness-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 16px;
}

.completeness-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
  width: 0%;
  transition: width 0.4s ease;
}

.completeness-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
}

#profile-form { padding: 28px; }
