/* /public/landing/assets/css/style.css  (GLOBAL ONLY) */
:root{
  --bg:#0a0d12;
  --ink:#eaf2ff;
  --muted:#9cb3d6;
  --primary:#2bc4e3;
  --accent:#ff2d55;
  --line:#8fd3ff33;
  --focus: 0 0 0 3px rgba(43,196,227,.65);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

html:focus-within{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }

a{ color:inherit; text-decoration:none; }
a:hover{ color:var(--primary); }

:where(a,button,input,textarea):focus-visible{
  outline:none;
  box-shadow:var(--focus);
}
