/* Base reset & typography */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  transition: background .25s ease, color .25s ease;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--text-primary);
}

h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.05; }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: clamp(16px, 2vw, 20px); }

p { margin: 0; }

/* Kicker / eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.lead {
  color: var(--text-secondary);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 60ch;
}

.muted { color: var(--text-secondary); }
