/* Native app UI pass: compact live status card and icon polish */
.profile-chip {
  position: relative;
  width: min(100%, 250px);
  min-width: 0;
  display: grid;
  gap: 7px;
  align-self: end;
  padding: 13px 15px 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(5,2,7,.55);
  box-shadow: 0 22px 60px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(20px) saturate(140%);
  --status-color: #43ff9b;
}
.profile-chip::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--status-color);
  box-shadow: 0 0 0 6px rgba(67,255,155,.12), 0 0 22px rgba(67,255,155,.84);
  animation: statusPulse 2.15s ease-in-out infinite;
}
.profile-chip::after {
  content: "Ready for Dispatch";
  color: rgba(220,199,223,.78);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}
.profile-chip.status-blue { --status-color: #4de8ff; }
.profile-chip.status-blue::after { content: "On Assignment"; }
.profile-chip.status-amber { --status-color: #ffd166; }
.profile-chip.status-amber::after { content: "Needs Attention"; }
.profile-chip.status-red { --status-color: #ff4f6f; }
.profile-chip.status-red::after { content: "Unavailable"; }
.profile-chip span {
  order: 2;
  margin: 0;
  padding-left: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: none;
}
.profile-chip strong {
  order: 1;
  margin: 0;
  padding-left: 19px;
  color: var(--status-color);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}
@keyframes statusPulse {
  0%, 100% { transform: scale(.94); opacity: .8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.stat-icon,
.panel-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: transparent !important;
  text-shadow: none !important;
  border-radius: 12px;
  background: rgba(77,232,255,.09);
  box-shadow: 0 0 22px rgba(77,232,255,.14);
}
.stat-icon::before,
.panel-icon::before {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.stats-grid .stat:nth-child(1) .stat-icon::before { content: "◷"; }
.stats-grid .stat:nth-child(2) .stat-icon::before { content: "$"; font-weight: 1000; }
.stats-grid .stat:nth-child(3) .stat-icon::before,
.panel-icon::before { content: "▣"; }
.gig-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gig-meta span::before {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 16px;
  border-radius: 6px;
  background: rgba(77,232,255,.1);
  color: #4de8ff;
  font-size: 10px;
  font-weight: 1000;
}
.gig-meta span:nth-child(1)::before { content: "R"; }
.gig-meta span:nth-child(2)::before { content: "P"; }
.gig-meta span:nth-child(3)::before { content: "$"; color: #ffd166; }
@media (max-width: 760px) {
  .profile-chip { max-width: 228px; padding: 12px 14px 13px 15px; border-radius: 16px; }
  .profile-chip span { font-size: 17px; }
  .profile-chip strong { font-size: 10px; }
  .profile-chip::after { font-size: 10px; }
  .stat-icon { width: 26px; height: 26px; }
}
