/* ============================================
   SEO AutoPilot — Minimal base styles
   Most styling is now handled by Tailwind CSS
   Header/footer/nav is in header.css
   ============================================ */

html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; }

/* Reveal animation */
.sc-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sc-reveal.is-visible { opacity: 1; transform: translateY(0); }
