/* ==========================================================================
   Generic + Elements - reset and bare HTML defaults
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--la-bg-primary); scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--la-bg-primary);
  color: var(--la-white);
  font-family: var(--la-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--la-font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}
p { margin: 0 0 16px; color: var(--la-text-secondary); font-size: 1.05rem; line-height: 1.75; }
a { color: var(--la-blue-glow); text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--la-blue-bright);
  outline-offset: 2px;
}

::selection { background: var(--la-blue); color: #fff; }

.mono { font-family: var(--la-font-mono); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
