/* base.css — reset + body chrome */

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--olive);
}

body {
  background-color: var(--olive);
  background-image:
    linear-gradient(var(--lime-ghost) 1px, transparent 1px),
    linear-gradient(90deg, var(--lime-ghost) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

a:focus-visible {
  outline: 1px solid var(--lime);
  outline-offset: 4px;
}

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

ol, ul { list-style: none; }

::selection { background: var(--lime); color: var(--olive); }
