/* SPANDL.ai – Base
 * Reset, Body-Default, Typografie-Grundlage. Lädt nach tokens.css.
 */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { background: var(--ink-900); }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}

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

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

button { font-family: inherit; }

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

/* Typografie-Skala
 * Hierarchie durch Weight (800/700/400) und Tracking, nicht durch Farbe.
 */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: 64px; line-height: 1.08; }
h2 { font-size: 42px; line-height: 1.15; margin-bottom: 14px; }
h3 { font-size: 22px; line-height: 1.25; margin-bottom: 10px; }
h4 { font-size: 18px; line-height: 1.30; }

.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-bottom: 18px;
  font-weight: 600;
}

.lead {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 64ch;
  margin-top: 14px;
  line-height: 1.55;
}

.mono { font-family: var(--mono); }

@media (max-width: 960px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
}
