/* ═══════════════════════════════════════════════════
   KAMERA-MAN FAMILY BAR — Shared cross-link component
   Include on every static site in the portfolio.
   Law: 2026-05-15
   ═══════════════════════════════════════════════════ */

/* ── Corp Logo Lockup ── */
.km-corp-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #b8c1ea;
  transition: color 0.15s;
}
.km-corp-lockup:hover { color: #e8ecff; }

.km-corp-lens {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid #6ea8ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(110,168,255,0.3);
  position: relative;
}
.km-corp-lens::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6ea8ff;
  box-shadow: 0 0 6px rgba(110,168,255,0.8);
}
.km-corp-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
.km-corp-name span {
  color: #7a85b0;
  font-weight: 400;
  margin-left: 0.25rem;
  font-size: 0.72rem;
}

/* ── Family Bar Container ── */
.km-family-bar {
  border-top: 1px solid #1e2850;
  padding: 1.4rem 0 1.2rem;
  margin-top: 1rem;
}
.km-family-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.km-family-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.km-family-label-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7a85b0;
  white-space: nowrap;
}
.km-family-divider {
  height: 1px;
  flex: 1;
  background: #1e2850;
  min-width: 20px;
}

/* ── App Pills ── */
.km-app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.km-app-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #27305c;
  background: #121933;
  text-decoration: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b8c1ea;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.km-app-pill:hover {
  border-color: var(--pill-accent, #6ea8ff);
  background: rgba(110,168,255,0.05);
  color: #e8ecff;
}
.km-app-pill.km-pill-live {
  border-color: #1a5c44;
  background: #0d3326;
}
.km-app-pill.km-pill-live:hover {
  border-color: #3ee8a4;
  background: rgba(62,232,164,0.08);
}
.km-app-pill.km-pill-soon {
  opacity: 0.75;
  cursor: default;
}
.km-app-pill.km-pill-soon:hover {
  border-color: var(--pill-accent, #27305c);
  background: #121933;
  color: #b8c1ea;
}

/* Accent dot (colored by app) */
.km-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Status badge inside pill */
.km-pill-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  line-height: 1.4;
}
.km-pill-badge.live {
  background: #0d3326;
  color: #3ee8a4;
  border: 1px solid #1a5c44;
}
.km-pill-badge.soon {
  background: #1a2850;
  color: #6ea8ff;
  border: 1px solid #27305c;
}
.km-pill-badge.dev {
  background: #1c1a30;
  color: #9088cc;
  border: 1px solid #2e2850;
}

/* ── Corp footer attribution ── */
.km-corp-footer-attr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid #1a2040;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.km-corp-footer-attr-text {
  font-size: 0.72rem;
  color: #4a5578;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .km-app-pills { gap: 0.4rem; }
  .km-app-pill  { font-size: 0.7rem; padding: 0.28rem 0.55rem; }
  .km-family-label { gap: 0.5rem; }
}
