/* 기본 리셋 + 타이포 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  margin: 0;
}

h1 {
  font-size: 1.6rem;
  color: var(--accent);
}

h2 {
  font-size: 1.1rem;
  color: var(--accent2);
}

h3 {
  font-size: 1rem;
}

small,
.label-mono {
  font-family: var(--font-mono);
  color: var(--muted);
}

button {
  font-family: var(--font-ui);
}

::selection {
  background: var(--accent);
  color: var(--bg);
}
