/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Plus Jakarta Sans','Segoe UI',sans-serif;
}

body{
  background:radial-gradient(circle at top,#f8fbff,#eef2ff,#f8fafc);
  color:#0f172a;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= GLOBAL ================= */
:root{
  --primary:#2563eb;
  --secondary:#38bdf8;
  --danger:#ef4444;
}

*{
  scroll-behavior:smooth;
}

a, button{
  transition:.25s cubic-bezier(.4,0,.2,1);
}
