/* ============================================================
   KIVO DIGITAL — BASE LAYER
   Minimal resets + a few brand-level helpers. Components and
   cards rely on tokens; this only sets sensible defaults.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Brand selection */
::selection { background: var(--kivo-lime); color: var(--text-on-accent); }

/* Eyebrow / kicker label — recurring brand atom */
.kivo-eyebrow {
  font-family: var(--eyebrow-font);
  font-weight: var(--eyebrow-weight);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

/* The signature thin lime rule used under eyebrows / hero copy */
.kivo-rule {
  width: 56px;
  height: 2px;
  background: var(--kivo-lime);
  border: none;
}

/* Subtle K-monogram tile pattern (line-art, low opacity) — the
   "embossed board" texture seen on cards & covers. Apply to a
   layer behind content. */
.kivo-grid-tint {
  background-image:
    linear-gradient(rgba(182,202,34,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182,202,34,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Diagonal accent hairline (the lime edge on boxes / covers) */
.kivo-edge-accent { border-left: 2px solid var(--kivo-lime); }

a { color: var(--text-accent); text-decoration: none; }
a:hover { color: var(--kivo-lime-bright); }
