/* Parallax Intel — Base element styles & a few utility primitives.
   Light-touch resets so specimen cards and components read correctly. */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Editorial eyebrow — tracked mono kicker used throughout the brand */
.px-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Serif display heading */
.px-display {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
}

/* Tabular data figure */
.px-figure {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--text-strong);
}

/* Hairline ink rule — the brand's signature divider on cream */
.px-rule {
  border: 0;
  border-top: var(--border-hairline) solid var(--rule-ink);
  opacity: 0.85;
  margin: 0;
}

::selection { background: var(--rose-100); color: var(--ink-900); }
