/* reset.css — normalize & base reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; }

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: none;
  font-family: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 { font-weight: inherit; }

p { line-height: 1.7; }

/* Selection */
::selection {
  background: var(--purple);
  color: var(--white);
}

/* Focus outline */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}
