/* ============================================================
   VIVIDISTA — BASE ELEMENT DEFAULTS + BRAND UTILITIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
  margin: 0;
}

a { color: var(--accent); text-decoration: none; }
::selection { background: var(--vv-lime); color: var(--vv-lime-ink); }

/* ---- Brand utilities -------------------------------------- */
.vv-gradient-text {
  background: var(--vv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vv-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}
.vv-glow { box-shadow: var(--shadow-glow); }
.vv-hairline { border: var(--bw-hair) solid var(--border-subtle); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
