/* =====================================
   SAFE RESET (BOOTSTRAP COMPATIBLE)
===================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Media */
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* FIXED: icons */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Forms */
input,
textarea,
select {
  font: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Links */
a {
  text-decoration: none;
}

/* Lists */
ul,
ol {
  margin: 0;
  padding: 0;
}

/* Scrollbar */
* {
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border-radius: 10px;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

/* Typography */
p {
  margin-bottom: 0.5rem;
}

/* Focus */
:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}