/*
 * Base styles shared by every page on the site.
 * Extracted from the inline <style> block in index.html when the /solutions/
 * pages were added, so all HTML entry points share one copy.
 */

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0f172a; /* slate-900 */
  -webkit-font-smoothing: antialiased;
}

.perspective-1000 {
  perspective: 1000px;
}

.rotate-x-12 {
  transform: rotateX(12deg);
}

/* Donut Chart styles */
.donut-segment {
  transition: stroke-dasharray 1s ease-out;
}
