/* pocca — Base element defaults
 * Light-touch resets + brand defaults so consumers get correct type/color for free.
 */

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--dur) var(--ease-out);
}
a:hover { color: var(--link-hover); }

strong, b { font-weight: var(--fw-semibold); color: var(--text-strong); }

code, kbd, samp {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

/* The mono, tracked, uppercase label used everywhere as a "tech / precision" signal */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
  font-weight: var(--fw-regular);
}

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

:focus-visible {
  outline: 2px solid var(--flame-500);
  outline-offset: 2px;
}
