

.mockup-dashboard {
  padding: 0;
  max-height: 460px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}

.dash-org-name {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #16a34a;
}

.dash-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.dash-stat {
  background: var(--color-background);
  padding: 14px 16px;
  text-align: center;
}

.dash-stat-value {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.dash-stat-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.dash-section {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}

.dash-section:last-child {
  border-bottom: none;
}

.dash-section-title {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.dash-policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.dash-policy-row + .dash-policy-row {
  border-top: 1px solid var(--color-border);
}

.dash-policy-name {
  font-size: 0.78rem;
  color: var(--color-text);
  font-weight: 500;
}

.dash-policy-badge {
  font-size: 0.62rem;
  font-weight: 600;
  font-family: var(--font-brand);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-policy-active {
  color: #16a34a;
  background: hsla(142, 76%, 36%, 0.1);
}

.dash-activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.dash-activity-team {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  min-width: 80px;
}

.dash-activity-bar {
  flex: 1;
  height: 6px;
  background: var(--color-surface-dark, hsla(28, 10%, 80%, 0.3));
  border-radius: 3px;
  overflow: hidden;
}

.dash-activity-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(28, 91%, 50%), hsl(24, 88%, 48%));
  border-radius: 3px;
  transition: width 1s ease-out;
}

.dash-activity-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  min-width: 30px;
  text-align: right;
  font-family: var(--font-brand);
}


.hero .mockup-dashboard .dash-stat-value {
  opacity: 0;
  animation: dashFadeIn 0.5s ease-out forwards;
}

.hero .mockup-dashboard .dash-stat:nth-child(1) .dash-stat-value { animation-delay: 1.0s; }
.hero .mockup-dashboard .dash-stat:nth-child(2) .dash-stat-value { animation-delay: 1.2s; }
.hero .mockup-dashboard .dash-stat:nth-child(3) .dash-stat-value { animation-delay: 1.4s; }

@keyframes dashFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .mockup-dashboard .dash-stat-value.dash-stat-value {
    opacity: 1;
    animation: none;
  }

  .dash-status-dot.dash-status-dot {
    animation: none;
  }

  .dash-activity-fill.dash-activity-fill {
    transition: none;
  }
}


[data-theme="dark"] .dash-policy-active { color: #4ade80; background: hsla(142, 76%, 36%, 0.15); }
[data-theme="dark"] .dash-status { color: #4ade80; }
[data-theme="dark"] .dash-status-dot { background: #4ade80; }
[data-theme="dark"] .dash-activity-bar { background: hsla(0, 0%, 100%, 0.08); }
