/* AI Link — Network Hub (영업대표 네트워크 통합 hub)
   2026-05-01 v1 — P5 IA 통합 + 모든 phase UI surface */

.al2-net-trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ede9fe; color: #6d28d9; font-weight: 700; font-size: .76rem;
  padding: 6px 12px; border-radius: 999px;
}

/* KPI row */
.al2-net-kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 0 0 16px;
}
.al2-net-kpi {
  background: #fff; border: 1px solid var(--al2-g100);
  border-radius: var(--al2-radius-lg);
  padding: 14px 16px; display: flex; gap: 12px; align-items: center;
  cursor: pointer; transition: all .15s;
}
.al2-net-kpi:hover { border-color: var(--al2-brand); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(108,58,224,.08); }
.al2-net-kpi .kpi-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: 0 0 auto;
}
.al2-net-kpi .kpi-num {
  font-size: 1.4rem; font-weight: 800; color: var(--al2-g900);
  font-family: var(--al2-font-mono, 'JetBrains Mono', monospace);
  line-height: 1.1;
}
.al2-net-kpi .kpi-label { font-size: .72rem; color: var(--al2-g600); margin-top: 2px; }

@media (max-width: 1100px) {
  .al2-net-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar tab active state */
.al2-sidebar .al2-sb-tab.on {
  background: var(--al2-brand-dim);
  color: var(--al2-brand-dark);
  font-weight: 700;
}
.al2-sidebar .al2-sb-tab.on .icon { filter: brightness(.95); }

/* Pane */
.al2-net-pane { animation: al2-fadein .25s ease; }
@keyframes al2-fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* 2-column home grid */
.al2-net-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 1100px) { .al2-net-grid-2 { grid-template-columns: 1fr; } }

.al2-net-mini-link {
  background: transparent; border: 0; color: var(--al2-brand);
  font-size: .76rem; font-weight: 600; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: background .12s;
}
.al2-net-mini-link:hover { background: var(--al2-brand-dim); }

/* Skeleton */
.al2-net-skel {
  height: 56px; background: linear-gradient(90deg, #f1f5f9, #f8fafc, #f1f5f9);
  background-size: 200% 100%; animation: al2-net-skel 1.4s infinite;
  border-radius: 8px; margin-bottom: 8px;
}
@keyframes al2-net-skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Empty state */
.al2-empty {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 36px 20px; text-align: center; color: var(--al2-g600);
}
.al2-empty > div { font-size: .82rem; }

/* Recommendation pane */
.al2-net-rec-input { display: grid; grid-template-columns: 2fr 1.5fr auto; gap: 8px; }
@media (max-width: 800px) { .al2-net-rec-input { grid-template-columns: 1fr; } }

/* Rep card (recommend / follows / referrals) */
.al2-net-rep-card {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; background: #fff;
  border: 1px solid var(--al2-g200); border-radius: 10px;
  margin-bottom: 8px;
  transition: all .15s;
}
.al2-net-rep-card:hover { border-color: var(--al2-brand); }
.al2-net-rep-avatar {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 50%; background: linear-gradient(135deg, #ede9fe, #dbeafe);
  color: var(--al2-brand-dark); font-weight: 800; font-size: .9rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.al2-net-rep-body { flex: 1; min-width: 0; }
.al2-net-rep-name {
  font-size: .88rem; font-weight: 700; color: var(--al2-g900); margin-bottom: 2px;
  display: flex; gap: 6px; align-items: center;
}
.al2-net-rep-meta { font-size: .72rem; color: var(--al2-g600); margin-bottom: 4px; }
.al2-net-rep-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.al2-net-rep-tag {
  background: var(--al2-g100); color: var(--al2-g700);
  padding: 2px 7px; border-radius: 999px; font-size: .65rem; font-weight: 600;
}
.al2-net-rep-tag.match { background: var(--al2-brand-dim); color: var(--al2-brand-dark); }
/* 2026-05-02 — 액션 버튼 너비 일관화 (이메일 추가 같은 긴 라벨에도 동일 폭) */
.al2-net-rep-actions {
  display: flex; flex-direction: column; gap: 6px; flex: 0 0 auto;
  min-width: 120px;
}
.al2-net-rep-actions .al2-btn {
  width: 100%;
  justify-content: center;
  font-size: .76rem;
  padding: 7px 10px;
}
@media (max-width: 700px) {
  .al2-net-rep-actions { flex-direction: row; flex-wrap: wrap; min-width: 0; width: 100%; }
  .al2-net-rep-actions .al2-btn { flex: 1; min-width: 90px; }
}
.al2-net-score-pill {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  font-family: var(--al2-font-mono, monospace);
}
.al2-net-rep-card.selected { border-color: var(--al2-brand); background: #faf5ff; }

/* Follow button (Phase 3 — 모바일 44px touch target) */
.al2-net-follow-btn {
  background: var(--al2-brand); color: #fff;
  border: 0; padding: 8px 14px; border-radius: 6px;
  font-size: .76rem; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  transition: all .12s;
  min-height: 32px;
}
@media (max-width: 900px) {
  .al2-net-follow-btn { min-height: 44px; padding: 12px 16px; font-size: .82rem; }
}
.al2-net-follow-btn:hover { background: var(--al2-brand-dark); transform: translateY(-1px); }
.al2-net-follow-btn.following {
  background: #fff; color: var(--al2-brand); border: 1px solid var(--al2-brand-dim);
}

/* Referral row — Phase 3 hover */
.al2-net-ref-row {
  border: 1px solid var(--al2-g200); border-radius: 10px; padding: 14px;
  margin-bottom: 10px; background: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  transition: background .12s, border-color .12s, transform .1s;
}
.al2-net-ref-row:hover {
  background: var(--al2-g50);
  border-color: var(--al2-g300);
  transform: translateY(-1px);
}
.al2-net-ref-row.pending { border-left: 4px solid #f59e0b; }
.al2-net-ref-row.accepted { border-left: 4px solid #10b981; opacity: .85; }
.al2-net-ref-row.declined { border-left: 4px solid #94a3b8; opacity: .7; }
.al2-net-ref-from { font-size: .72rem; color: var(--al2-g600); margin-bottom: 4px; }
.al2-net-ref-title { font-size: .9rem; font-weight: 700; color: var(--al2-g900); margin-bottom: 4px; }
.al2-net-ref-msg { font-size: .76rem; color: var(--al2-g700); line-height: 1.5; }
.al2-net-ref-actions { display: flex; gap: 6px; }
.al2-net-ref-actions button { padding: 6px 12px; font-size: .74rem; }

/* Channel split */
.al2-net-channels-split {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  border: 1px solid var(--al2-g200); border-radius: 12px; overflow: hidden;
  height: 65vh; min-height: 500px;
}
.al2-net-channels-split .ch-list-panel { border-radius: 0; border: 0; border-right: 1px solid var(--al2-g200); height: 100%; display: flex; flex-direction: column; }
.al2-net-channels-split .ch-msg-panel { border-radius: 0; border: 0; height: 100%; display: flex; flex-direction: column; }
.al2-net-channels-split .al2-section-body { flex: 1; overflow-y: auto; }

@media (max-width: 800px) { .al2-net-channels-split { grid-template-columns: 1fr; height: auto; } }

.al2-net-channel-row {
  padding: 12px 14px; border-bottom: 1px solid var(--al2-g100);
  cursor: pointer; transition: background .12s;
  display: flex; gap: 10px; align-items: center;
  min-height: 56px;   /* Phase 3 — 모바일 row 가독성 */
}
.al2-net-channel-row:hover { background: var(--al2-g50); }
.al2-net-channel-row.active { background: var(--al2-brand-dim); }
.al2-net-channel-row .name { font-size: .86rem; font-weight: 700; color: var(--al2-g900); }
.al2-net-channel-row .preview {
  font-size: .76rem; color: var(--al2-g600); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.al2-net-channel-row .unread {
  background: var(--al2-brand); color: #fff;
  font-size: .7rem; font-weight: 800; padding: 3px 8px;     /* Phase 3 — 18px→24px */
  border-radius: 12px; min-width: 24px; text-align: center;
}

/* Channel msg pane */
.al2-net-msg-list {
  flex: 1; overflow-y: auto; padding: 14px;
  background: #f8fafc;
}
.al2-net-msg {
  max-width: 70%; padding: 9px 12px; border-radius: 12px;
  margin-bottom: 8px; font-size: .82rem; line-height: 1.5;
  word-break: break-word;
}
.al2-net-msg.mine {
  background: var(--al2-brand); color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.al2-net-msg.other {
  background: #fff; color: var(--al2-g900);
  border: 1px solid var(--al2-g200);
  border-bottom-left-radius: 4px;
}
.al2-net-msg .ts { font-size: .64rem; opacity: .7; margin-top: 2px; }
.al2-net-msg-input-row {
  display: flex; gap: 8px; padding: 12px;
  border-top: 1px solid var(--al2-g200); background: #fff;
}
.al2-net-msg-input-row textarea {
  flex: 1; resize: none; padding: 9px 12px;
  border: 1px solid var(--al2-g200); border-radius: 8px;
  font-family: inherit; font-size: .8rem; line-height: 1.4;
}
.al2-net-msg-input-row textarea:focus { border-color: var(--al2-brand); outline: none; }

/* Overlap card */
.al2-net-overlap-row {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; margin-bottom: 10px;
  border: 1px solid var(--al2-g200); border-radius: 10px;
  background: #fff;
}
.al2-net-overlap-count {
  background: linear-gradient(135deg, #ec4899, #8b5cf6); color: #fff;
  width: 50px; height: 50px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  font-family: var(--al2-font-mono, monospace);
  flex: 0 0 auto;
}
.al2-net-overlap-body { flex: 1; min-width: 0; }
.al2-net-overlap-status {
  font-size: .68rem; padding: 2px 8px; border-radius: 999px;
  font-weight: 700; display: inline-block; margin-top: 4px;
}
.al2-net-overlap-status.both { background: #dcfce7; color: #15803d; }
.al2-net-overlap-status.one { background: #fef3c7; color: #b45309; }
.al2-net-overlap-status.none { background: var(--al2-g100); color: var(--al2-g600); }

/* Lounge */
.al2-net-lounge-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.al2-chip {
  padding: 7px 14px; background: #fff; color: var(--al2-g700);
  border: 1px solid var(--al2-g200); border-radius: 999px;
  font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .12s;
  min-height: 32px;          /* Phase 3 standard */
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.al2-chip:hover { border-color: var(--al2-brand); transform: translateY(-1px); }
.al2-chip.on { background: var(--al2-brand); color: #fff; border-color: var(--al2-brand); }
@media (max-width: 900px) {
  .al2-chip { min-height: 36px; padding: 8px 16px; font-size: .82rem; }
}

.al2-net-lounge-post {
  border: 1px solid var(--al2-g200); border-radius: 10px;
  padding: 14px 16px; background: #fff; margin-bottom: 10px;
}
.al2-net-lounge-post .head {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.al2-net-lounge-post .author {
  font-size: .76rem; font-weight: 700; color: var(--al2-g800);
}
.al2-net-lounge-post .author.anon { color: var(--al2-g500); font-style: italic; }
.al2-net-lounge-post .cat-tag {
  background: #ede9fe; color: #6d28d9;
  padding: 2px 8px; border-radius: 999px; font-size: .65rem; font-weight: 700;
}
.al2-net-lounge-post .ts {
  margin-left: auto; font-size: .68rem; color: var(--al2-g500);
}
.al2-net-lounge-post .body {
  font-size: .82rem; color: var(--al2-g800); line-height: 1.6;
  margin-bottom: 8px; white-space: pre-wrap;
}
.al2-net-lounge-post .footer {
  display: flex; gap: 8px; align-items: center;
  font-size: .72rem; color: var(--al2-g600);
}
.al2-net-lounge-post .footer button {
  background: transparent; border: 0; color: var(--al2-brand);
  font-size: .72rem; font-weight: 600; cursor: pointer;
  padding: 4px 8px; border-radius: 6px;
}
.al2-net-lounge-post .footer button:hover { background: var(--al2-brand-dim); }

/* Modal */
.al2-net-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.al2-net-modal-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.6); }
.al2-net-modal-card {
  position: relative; background: #fff; max-width: min(600px, 92vw); width: 100%;
  max-height: 88vh; overflow: hidden; border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
}
.al2-net-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--al2-g100);
}
.al2-net-modal-head h3 {
  margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--al2-g900);
  display: flex; gap: 8px; align-items: center;
}
.al2-net-modal-close {
  background: var(--al2-g100); color: var(--al2-g500); border: 0;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
}
.al2-net-modal-close:hover { background: var(--al2-g200); color: var(--al2-g800); }
.al2-net-modal-body { padding: 18px 22px; overflow-y: auto; flex: 1; }

/* Form (Phase 1+2 — 16px spacing + 그룹핑 + 필수 필드 표시) */
.al2-form-row { margin-bottom: 16px; }
.al2-form-row label {
  display: block; font-size: .82rem; font-weight: 700;     /* .76→.82 mobile readability */
  color: var(--al2-g800); margin-bottom: 6px;
}
@media (max-width: 900px) {
  .al2-form-row label { font-size: .86rem; }
}
/* Phase 2 — 필수 필드 빨간 별표 (HubSpot/Salesforce 표준) */
.al2-form-row label.required::after {
  content: '*';
  color: #dc2626;
  margin-left: 4px;
  font-weight: 800;
}
/* Phase 2 — 폼 섹션 그룹핑 (LinkedIn/HubSpot 패턴) */
.al2-form-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--al2-g100);
}
.al2-form-section:last-of-type {
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: 0;
}
.al2-form-section-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--al2-g900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Phase 2 — 명함 카메라/업로드 버튼 그룹 */
.al2-net-card-buttons {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px;
}
.al2-card-btn {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;       /* 더 큰 touch target */
  border: 1px solid;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  transition: transform .12s, box-shadow .12s;
  min-height: 40px;
}
.al2-card-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
@media (max-width: 900px) {
  .al2-card-btn { min-height: 44px; padding: 12px 16px; }
}
.al2-card-btn--camera { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.al2-card-btn--upload { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.al2-card-btn--back   { background: #fef3c7; border-color: #fde68a; color: #92400e; }
.al2-input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--al2-g200);
  border-radius: 8px; font-size: .82rem; font-family: inherit; outline: none;
  transition: border-color .12s;
  box-sizing: border-box;
}
.al2-input:focus { border-color: var(--al2-brand); }
.al2-input-sm { padding: 6px 10px; font-size: .76rem; }
.al2-form-actions {
  display: flex; gap: 8px; justify-content: flex-end;
  padding-top: 8px; border-top: 1px solid var(--al2-g100);
  margin-top: 14px;
}
.al2-btn {
  padding: 8px 16px; border: 1px solid var(--al2-g200); background: #fff;
  border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: all .12s; display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;             /* 2026-05-02: 버튼 텍스트 줄바뀜 방지 */
  flex-shrink: 0;                  /* flex 컨테이너 안에서 압축되지 않도록 */
}
.al2-btn:hover { border-color: var(--al2-brand); color: var(--al2-brand); }
.al2-btn-primary {
  background: var(--al2-brand); color: #fff; border-color: var(--al2-brand);
}
.al2-btn-primary:hover { background: var(--al2-brand-dark); color: #fff; }

.al2-net-toggle { display: flex; gap: 8px; align-items: center; font-weight: 600; cursor: pointer; }

.al2-tab-strip { display: flex; gap: 4px; margin-bottom: 12px; padding: 4px; background: var(--al2-g100); border-radius: 10px; width: fit-content; }
.al2-tab {
  background: transparent; border: 0; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: var(--al2-g600);
  border-radius: 6px; cursor: pointer; transition: all .12s;
  display: inline-flex; gap: 6px; align-items: center;
}
.al2-tab.on { background: #fff; color: var(--al2-brand); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.al2-tab .cnt { font-size: .65rem; background: var(--al2-g200); padding: 1px 6px; border-radius: 8px; }
.al2-tab.on .cnt { background: var(--al2-brand-dim); color: var(--al2-brand); }

.al2-help { font-size: .72rem; color: var(--al2-g500); }

/* 2026-05-02 — Smart Private Network (Tier 1+3 통합) */
.al2-net-pc-card {
  border-left: 3px solid #94a3b8;
}
.al2-net-pc-channels {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.al2-net-pc-ch {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: #f8fafc; color: #475569;
  border: 1px solid #e2e8f0; border-radius: 999px;
  font-size: .72rem; text-decoration: none;
  transition: all .12s;
}
.al2-net-pc-ch:hover {
  background: #6c3ae0; color: #fff; border-color: #6c3ae0;
}
.al2-net-pc-ch i { font-size: .65rem; }

.al2-net-form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  align-items: start;          /* 2026-05-02: 자식 요소 상단 정렬 (label 길이 다를 때 input 위치 일치) */
  margin-bottom: 16px;         /* 인접 grid 또는 다음 form-row와 spacing */
}
.al2-net-form-grid-2:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .al2-net-form-grid-2 { grid-template-columns: 1fr; gap: 16px; }
}

/* Activity Feed (Phase 3 — hover state added) */
.al2-net-feed-item {
  display: flex; gap: 12px;
  padding: 14px 16px; margin-bottom: 8px;
  background: #fff; border: 1px solid var(--al2-g200);
  border-radius: 10px;
  transition: background .12s, border-color .12s, transform .1s;
}
.al2-net-feed-item:hover {
  background: var(--al2-g50);
  border-color: var(--al2-g300);
  transform: translateY(-1px);
}

/* Phase 3 — 표준 빈 상태 (LinkedIn/Notion 패턴: 일러스트+카피+CTA) */
.al2-net-empty {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px dashed var(--al2-g300);
  border-radius: 12px;
  margin: 20px 0;
}
.al2-net-empty-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: .6;
}
.al2-net-empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--al2-g900);
  margin-bottom: 6px;
}
.al2-net-empty-desc {
  font-size: .82rem;
  color: var(--al2-g600);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.al2-net-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--al2-brand);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s, transform .1s;
  min-height: 40px;
}
.al2-net-empty-cta:hover {
  background: var(--al2-brand-dark);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .al2-net-empty-cta { min-height: 44px; padding: 12px 24px; }
}
.al2-net-feed-icon {
  width: 36px; height: 36px; flex: 0 0 auto;
  background: #f1f5f9;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.al2-net-feed-body { flex: 1; min-width: 0; }
.al2-net-feed-head {
  display: flex; gap: 6px; align-items: center;
  font-size: .82rem; flex-wrap: wrap;
}
.al2-net-feed-title {
  font-size: .9rem; font-weight: 700; color: var(--al2-g900);
  margin-top: 4px;
}
.al2-net-feed-body-text {
  font-size: .8rem; color: var(--al2-g700);
  line-height: 1.5; margin-top: 4px;
  white-space: pre-wrap;
}
.al2-net-feed-actions {
  display: flex; gap: 6px; margin-top: 8px;
}

/* 2026-05-02 — 인맥 Rolodex (B2B 명함집) */
.al2-net-rolodex-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(180deg, var(--al2-g50), #fff);   /* 헤더와 본문 구분 */
  border-bottom: 1px solid var(--al2-g100);
}
@media (max-width: 900px) {
  .al2-net-rolodex-filter { padding: 12px 16px; gap: 8px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .al2-net-rolodex-filter::-webkit-scrollbar { display: none; }
}
.al2-net-conn-card {
  border-left: 3px solid #10b981;
}
.al2-net-conn-note {
  margin-top: 6px;
  font-size: .72rem; color: var(--al2-g600);
  background: #fefce8; border: 1px dashed #fde68a;
  padding: 5px 8px; border-radius: 6px;
  line-height: 1.4;
}

/* 영업대표 초대 */
.al2-net-invite-intro {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, #faf5ff, #ede9fe);
  border: 1px solid #c4b5fd; border-radius: 10px;
}
.al2-net-invite-intro i { font-size: 1.2rem; flex: 0 0 auto; margin-top: 2px; }
.al2-net-invite-intro div { font-size: .82rem; color: #4c1d95; line-height: 1.6; }
.al2-net-invite-intro strong { color: #6d28d9; }

/* 보낸 초대 */
.al2-net-inv-row {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px; margin-bottom: 8px;
  border: 1px solid var(--al2-g200);
  border-radius: 10px; background: #fff;
}
.al2-net-inv-row.al2-net-inv-pending { border-left: 3px solid #f59e0b; }
.al2-net-inv-row.al2-net-inv-accepted { border-left: 3px solid #10b981; opacity: .85; }
.al2-net-inv-row.al2-net-inv-expired { border-left: 3px solid #94a3b8; opacity: .6; }

/* P2 — 빈 상태 onboarding 카드 */
.al2-net-onboard {
  position: relative;
  margin: 0 0 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #ddd6fe 100%);
  border: 1px solid #c4b5fd;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, .08);
  animation: al2-fadein .35s ease;
}
.al2-net-onboard-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, .7); border: 0; border-radius: 50%;
  color: #6d28d9; cursor: pointer; font-size: .82rem;
  transition: background .12s;
}
.al2-net-onboard-close:hover { background: #fff; }
.al2-net-onboard-head {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px;
}
.al2-net-onboard-title {
  font-size: 1.05rem; font-weight: 800; color: #4c1d95; margin-bottom: 4px;
}
.al2-net-onboard-desc {
  font-size: .82rem; color: #6d28d9; line-height: 1.5;
}
.al2-net-onboard-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 1000px) { .al2-net-onboard-steps { grid-template-columns: 1fr; } }
.al2-net-onboard-step {
  display: flex; gap: 12px;
  background: rgba(255, 255, 255, .8);
  padding: 14px 16px; border-radius: 12px;
}
.al2-net-onboard-step .step-num {
  width: 28px; height: 28px; flex: 0 0 auto;
  background: #8b5cf6; color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .82rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.al2-net-onboard-step .step-body { flex: 1; min-width: 0; }
.al2-net-onboard-step .step-title { font-size: .82rem; font-weight: 800; color: #1e1b4b; margin-bottom: 4px; }
.al2-net-onboard-step .step-desc { font-size: .72rem; color: #6d28d9; line-height: 1.5; margin-bottom: 8px; }
.al2-net-onboard-step .step-cta {
  display: inline-block;
  font-size: .74rem; font-weight: 700; color: #6d28d9;
  text-decoration: none;
  padding: 5px 11px; background: #fff;
  border: 1px solid #c4b5fd; border-radius: 999px;
  transition: all .12s;
}
.al2-net-onboard-step .step-cta:hover { background: #8b5cf6; color: #fff; border-color: #8b5cf6; }

/* Forward modal — rep list */
.al2-fwd-rep {
  display: flex; gap: 10px; align-items: center; padding: 10px;
  border: 1px solid var(--al2-g200); border-radius: 8px;
  margin-bottom: 6px; cursor: pointer; transition: all .12s;
}
.al2-fwd-rep:hover { border-color: var(--al2-brand); }
.al2-fwd-rep.selected { border-color: var(--al2-brand); background: #faf5ff; }
.al2-fwd-rep input[type="checkbox"] { margin: 0; flex: 0 0 auto; }

/* ═══════════════════ Phase 4: 모바일 Bottom Tab Strip (LinkedIn 패턴) ═══════════════════ */
.al2-net-bottombar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--al2-g200);
  z-index: 90;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));   /* iOS notch 대응 */
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .04);
}
.al2-net-bottombar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 600;
  color: var(--al2-g600);
  position: relative;
  min-height: 52px;        /* WCAG 44px+ */
  border-radius: 8px;
  transition: background .12s, color .12s;
}
.al2-net-bottombar-btn i {
  font-size: 1.15rem;
}
.al2-net-bottombar-btn span {
  font-size: .68rem;
}
.al2-net-bottombar-btn:hover {
  background: var(--al2-g50);
}
.al2-net-bottombar-btn.on {
  color: var(--al2-brand);
  background: var(--al2-brand-dim);
}
.al2-net-bottombar-btn.on::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--al2-brand);
  border-radius: 0 0 3px 3px;
}
.al2-net-bottombar-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: #dc2626;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
}

/* 데스크톱 (≥900px): bottom bar 숨김, 사이드바 사용 */
@media (max-width: 900px) {
  .al2-net-bottombar {
    display: flex;
  }
  /* 메인 콘텐츠가 bottom bar에 가리지 않도록 padding-bottom */
  .al2-main {
    padding-bottom: 84px;
  }
}
