/* === Shared Network Profile === */
.page-network-profile { background: #FAFAFA; min-height: 100vh; font-family: 'Inter', system-ui, sans-serif; }

.np-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 60px;
}

.np-back {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  margin-bottom: 18px;
  transition: all .15s;
}
.np-back:hover { border-color: #C4A559; color: #9E7E3F; }

.np-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ECECEC;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.04);
}

.np-cover {
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2620 50%, #4a3828 100%);
  background-size: cover;
  background-position: center;
}

.np-head {
  padding: 12px 28px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  margin-top: -52px;
}
.np-head > .np-avatar { align-self: start; }
.np-head > .np-id { margin-top: 60px; }
.np-head > .np-actions-top { margin-top: 60px; }

.np-avatar {
  position: relative;
  width: 116px; height: 116px;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  background: #FAFAFA;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.np-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-verified {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4A559, #D4BC7A);
  color: #1a1208;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.np-id { padding-bottom: 6px; }
.np-id-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.np-name {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -.01em;
}
.np-role-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #FAFAFA;
  color: #6B6660;
  border: 1px solid #ECECEC;
}
.np-role-badge--talent { color: #1A6BAF; background: #EAF3FB; border-color: #C8DEF0; }
.np-role-badge--expert { color: #9A7A28; background: #FAF6EC; border-color: #E8D8A8; }
.np-role-badge--recruiter { color: #1F7A4F; background: #E8F5EE; border-color: #C2DFCE; }

.np-title {
  font-size: 14px;
  color: #4a4a4a;
  margin-top: 4px;
  font-weight: 500;
}
.np-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6B6660;
  margin-top: 6px;
}
.np-meta-dot { color: #C7C2BC; }
.np-flag { margin-right: 3px; }

.np-actions-top {
  display: flex;
  gap: 8px;
  padding-bottom: 6px;
}
.np-btn-ignore, .np-btn-accept {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .02em;
}
.np-btn-ignore {
  background: #fff;
  color: #6B6660;
  border: 1px solid #D6D3CE;
}
.np-btn-ignore:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: #FAFAF8;
}
.np-btn-accept {
  background: linear-gradient(135deg,#C4A559 0%,#D4BC7A 40%,#E5D4A0 70%,#EFE2B8 100%);
  color: #1a1208;
  border: 1px solid rgba(196,165,89,0.4);
  box-shadow: 0 2px 8px rgba(184,145,42,.22);
}
.np-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,145,42,.32);
}

.np-message {
  margin: 0 28px 24px;
  padding: 14px 18px;
  background: #FAF8F3;
  border-left: 3px solid #D4BC7A;
  border-radius: 8px;
}
.np-message-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9E7E3F;
  margin-bottom: 4px;
}
.np-message-text {
  font-size: 13.5px;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.5;
}

.np-section { padding: 0 28px 22px; }
.np-section-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.np-bio {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0;
}

.np-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.np-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: #F4F2EE;
  color: #4a4a4a;
}

.np-xp { list-style: none; padding: 0; margin: 0; }
.np-xp li {
  padding: 12px 0;
  border-bottom: 1px solid #F4F2EE;
}
.np-xp li:last-child { border-bottom: none; }
.np-xp-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; }
.np-xp-place { font-size: 12.5px; color: #6B6660; margin-top: 2px; }
.np-xp-years { font-size: 11px; color: #A09A94; margin-top: 2px; }

.np-empty {
  text-align: center;
  padding: 80px 20px;
}
.np-btn-gold {
  background: linear-gradient(135deg,#C4A559 0%,#D4BC7A 40%,#E5D4A0 70%,#EFE2B8 100%);
  color: #1a1208;
  border: 1px solid rgba(196,165,89,0.4);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .np-head {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .np-actions-top { width: 100%; justify-content: center; }
  .np-meta { justify-content: center; }
  .np-id-row { justify-content: center; }
}

/* === Current position chip (talents only) === */
.np-current-pos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 5px 12px;
  background: #E8F5EE;
  border: 1px solid #C2DFCE;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1F7A4F;
}
.np-current-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46,204,113,.18);
  animation: np-pulse 1.8s ease-in-out infinite;
}
@keyframes np-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .55; }
}

/* === View profile button === */
.np-btn-view {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .02em;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
.np-btn-view:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-1px);
}

/* === Experience carousel === */
.np-xp-carousel {
  overflow: hidden;
  position: relative;
  margin: 0 -28px;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.np-xp-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 28px;
  animation: np-xp-scroll 28s linear infinite;
}
.np-xp-carousel:hover .np-xp-track {
  animation-play-state: paused;
}
@keyframes np-xp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.np-xp-card {
  flex: 0 0 240px;
  background: #FAFAF8;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .2s;
}
.np-xp-card:hover {
  border-color: #C4A559;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

@media (max-width: 720px) {
  .np-actions-top { flex-wrap: wrap; }
  .np-xp-card { flex-basis: 220px; }
}
