/* ══════════════════════════════════════════════════════
   RESET — Normalisation et réinitialisations
══════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
}

button {
  font-family: var(--font);
  cursor: pointer;
}

input {
  font-family: var(--font);
}

/* Utility classes */
.hidden {
  display: none !important;
}

.muted {
  color: var(--ink-3);
  font-size: 13px;
}

a {
  color: var(--blue);
  text-decoration: none;
}
