/* EmptyState - mono eyebrow + heading + description + optional action.
   Per design-system §5.19. */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-8);
  gap: var(--space-3);
}

.empty-state__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-muted);
}

.empty-state__eyebrow::before {
  content: '• ';
  color: var(--color-accent);
}

.empty-state__title {
  font-family: var(--font-sans);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  line-height: var(--leading-tight);
  margin: 0;
  max-width: 32ch;
}

.empty-state__description {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: 0;
}

.empty-state__action {
  margin-top: var(--space-5);
}
