/* Variables & Reset */
:root {
  --accent:#38a169;
  --accent-2:#2f855a;
  --muted:#6b7280;
  --bg:#fbfbfc;
  --card:#ffffff;
  --glass:rgba(255,255,255,0.6);
  --radius-lg:20px;
  --radius-md:12px;
  --shadow-sm:0 6px 18px rgba(15,23,42,0.06);
  --shadow-md:0 10px 30px rgba(15,23,42,0.08);
  --maxw:1100px;
  --transition:240ms cubic-bezier(.2,.9,.3,1);
  font-synthesis:none;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Poppins",sans-serif;
  background:linear-gradient(180deg,#fbfbfb 0%,#f7fafc 100%);
  color:#17202a;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Utilities */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
