/* ============================================================
   Livoo — Base / reset
   Minimal element defaults built on the token layer.
   ============================================================ */

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--lh-snug);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

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

button { font-family: inherit; }

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* Brand text-gradient helper (used on accent numerals/headers) */
.livoo-text-gradient {
  background: var(--livoo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
