/* ════════════════════════════════════════════════════════════════════
   BASE — Midnight Pop
   Minimal reset + page defaults so any consumer page inherits the warm
   dark canvas and calm body type out of the box.
   ════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-page);
  color: var(--text-body);
  font: var(--type-body);
  letter-spacing: var(--ls-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headlines default to the display face, tight + warm-white */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-display);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-heading);
  font-weight: var(--w-bold);
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

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

::selection { background: var(--accent); color: var(--accent-on); }

/* Mono eyebrow helper */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
