/* Custom styles - Tailwind loaded via CDN in head */

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding-bottom: 70px; /* Space for mobile CTA bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}
