/* ==========================================================================
   TVS Motor — Base element styling & utility primitives.
   Kept light: sets sensible defaults that inherit the tokens.
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
}
h1 { font-size: var(--text-display-lg); line-height: var(--lh-tight); }
h2 { font-size: var(--text-display-md); }
h3 { font-size: var(--text-display-sm); }

p { margin: 0 0 var(--space-4); }

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

code, pre, .tabular {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---- Eyebrow / kicker: the recurring uppercase label motif ---- */
.tvs-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

/* ---- Focus visibility ---- */
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

::selection { background: var(--red-200); color: var(--ink-900); }
