/* ============================================================
   EMPTY STATE — generic empty container with icon + CTA
   Used on Payouts tab (P1 user not funded yet).
   ============================================================ */

.empty-state {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
}

.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
}

.empty-state__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.empty-state__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.empty-state__text {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: var(--leading-snug);
  max-width: 480px;
}

.empty-state__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}

/* Phase context block (educates the user about what's needed) */
.empty-state__progress {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.empty-state__progress-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.empty-state__progress-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.empty-state__progress-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.empty-state__progress-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.empty-state__progress-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}
