/* ===========================================================================
   Paycifi — Base layer: light reset + element defaults.
   Sets the body type and a few primitives. Optional for consumers, but the
   specimen cards and UI kits rely on it.
   =========================================================================== */

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--weight-light);     /* light geometric headings (Paycifi house style) */
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-normal);
  margin: 0;
}
h4, h5 { font-weight: var(--weight-regular); }

p { margin: 0; }

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

/* Tabular numerals for anything that holds money */
.numeric, .money {
  font-feature-settings: var(--numeric-tabular);
  font-variant-numeric: tabular-nums lining-nums;
}
.money { font-family: var(--font-mono); }

/* Eyebrow / overline */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Slash eyebrow — the Paycifi section-label motif: / Our Solution /
   (sentence case, not upper; muted) */
.eyebrow--slash {
  text-transform: none;
  letter-spacing: var(--tracking-normal);
  font-weight: var(--weight-medium);
}
.eyebrow--slash::before { content: "/ "; }
.eyebrow--slash::after  { content: " /"; }
