/**
 * Static shell styles (served from /index.css).
 * Tailwind is loaded via CDN in index.html; add global overrides here.
 */
:root {
  color-scheme: light;
}

html {
  -webkit-text-size-adjust: 100%;
}

/* Subtle expanding ring on India map partner pins */
@keyframes map-pin-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.38;
  }
  70% {
    opacity: 0.08;
  }
  100% {
    transform: scale(2.05);
    opacity: 0;
  }
}

.map-pin-pulse-ring {
  animation: map-pin-pulse 2.6s ease-out infinite;
  will-change: transform, opacity;
}
