/* ============================================
   Noor — Base (reset + element defaults)
   ============================================ */

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

html {
  font-size: var(--text-body);
  font-family: var(--font-body);
  color: var(--surface-text);
  background-color: var(--surface-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  color: var(--accent-link);
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--accent-focus);
  outline-offset: 2px;
}
