/* RTL support (shared across base + theme overrides) */
[dir="rtl"] .rtl-flip        { transform: scaleX(-1); }
[dir="rtl"] .rtl-row-reverse { flex-direction: row-reverse; }
[dir="rtl"] .rtl-text-right  { text-align: right; }

/* Subtle entrance animation */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-in   { animation: fadeSlideUp 0.55s ease-out both; }
.anim-in-1 { animation-delay: 0.05s; }
.anim-in-2 { animation-delay: 0.12s; }
.anim-in-3 { animation-delay: 0.19s; }
.anim-in-4 { animation-delay: 0.26s; }

/* Neutral base card + badge + stat (theme overrides define their own scoped classes) */
.support-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.support-card:hover {
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.support-icon-badge {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--theme-600);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.support-card:hover .support-icon-badge {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.stat-num {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-variation-settings: "opsz" 144;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .anim-in { animation: none; }
}
