/* ══════════════════════════════════════════════════════════════════
   MARKET PULSE BAR — Live intelligence strip
   ══════════════════════════════════════════════════════════════════ */

.mp-bar {
  background: linear-gradient(180deg, rgba(5,8,16,0.95) 0%, rgba(10,14,26,0.9) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.mp-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.12), transparent);
}

.mp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Label */
.mp-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.mp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
  animation: mp-glow 2.5s ease-in-out infinite;
}
@keyframes mp-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.mp-label-text {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.45);
}

/* Metrics row */
.mp-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mp-metrics::-webkit-scrollbar { display: none; }

.mp-metric {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0 0.9rem;
  white-space: nowrap;
}
.mp-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: #e8eaed;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}
.mp-val--accent { color: var(--accent, #d4a853); }
.mp-val--green { color: #4ade80; }
.mp-lbl {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.35);
}

.mp-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 800px) {
  .mp-inner { padding: 0.5rem 1rem; gap: 1rem; }
  .mp-metric { padding: 0 0.6rem; }
  .mp-val { font-size: 0.72rem; }
}
@media (max-width: 500px) {
  .mp-label-text { display: none; }
  .mp-metric { padding: 0 0.5rem; }
}
