/* [2026-02-24][CLX][ART-COMFORT] Reset + Typography */

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

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.5;
  overflow: hidden;
}

a {
  color: var(--c-primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1 { font-size: 1.5rem; font-weight: 600; }
h2 { font-size: 1.25rem; font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 500; }

img { max-width: 100%; display: block; }

input, select, button, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--c-primary-light);
  color: var(--c-text);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-text-muted); }
