/* ---------- Marketing Command Center ---------- */
.command-center { background: var(--navy-900); padding: 5.5rem 0; }
.cc-inner { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }

.cc-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.45rem);
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 2.8rem;
}

.dashboard-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}

.dash-topbar {
  background: var(--navy-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.dash-live { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 600; color: var(--green-500); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.dash-section { padding: 1.4rem 1.6rem; }
.dash-section-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0 0 1rem;
}

.dash-divider { height: 1px; background: var(--line); margin: 0 1.6rem; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1rem;
}
.dash-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.dash-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-900);
}
.dash-stat-value.is-positive { color: var(--green-600); }
.dash-stat-label { font-size: 0.82rem; color: var(--navy-500); }

.dash-work { display: flex; flex-direction: column; gap: 0.85rem; }
.work-row { display: flex; align-items: center; gap: 1rem; }
.work-label { width: 72px; flex-shrink: 0; font-size: 0.86rem; font-weight: 600; color: var(--navy-700); }
.bar-track {
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green-600);
  border-radius: 999px;
  transition: width 1.1s ease;
}
.dashboard-card.in-view .bar-fill { width: var(--target); }

.dash-actions { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.dash-actions li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--navy-700);
  font-weight: 500;
}
.action-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-cta {
  display: block;
  margin: 1.6rem;
  text-align: center;
  width: calc(100% - 3.2rem);
}

.cc-caption {
  margin: 1.8rem 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}

@media (max-width: 480px) {
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .work-label { width: 60px; font-size: 0.8rem; }
}
