/* ============================================================
   VINCO SPORT — BASE LAYER
   Light resets + element defaults wired to tokens. Consumers get
   sensible typography and a dark broadcast canvas out of the box.
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  color: var(--text-primary);
}

p { margin: 0; }

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

button { font-family: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

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

/* ---- Reusable display/role helpers (optional, token-bound) ---- */
.vinco-display {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tighter);
}

.vinco-eyebrow {
  font-family: var(--label-font);
  font-weight: var(--eyebrow-weight);
  font-size: var(--text-xs);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--accent);
}

/* Italic + skew is the brand's "motion" treatment for scores / hype text */
.vinco-italic-caps {
  font-style: italic;
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
}

.vinco-mono-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tracking-normal);
}

/* ---- Documentation prose (secondary font: Montserrat) ----
   Use for long-form written docs, reports, policy copy. Brand/UI stays Exo 2. */
.vinco-doc {
  font-family: var(--doc-font);
  font-weight: var(--doc-weight);
  line-height: var(--doc-leading);
  color: var(--text-secondary);
}
.vinco-doc h1, .vinco-doc h2, .vinco-doc h3, .vinco-doc h4 {
  font-family: var(--font-display); /* headings stay on the brand face */
}

/* ---- Athletics "stamp" motif (parent brand "Athletic" — graffiti energy) ----
   A stencilled, angled phrase chip for hype / motivational words:
   PR · SB · MAKE IT HAPPEN · MORE COWBELLS · PAIN FEELS GOOD · TRACK & FIELD.
   Heavy italic caps inside an accent capsule, kicked off-axis like spray stencil. */
.vinco-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.32em 0.7em;
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-style: italic;
  font-size: var(--text-sm);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--on-accent);
  background: var(--accent);
  border-radius: var(--radius-sm);
  transform: rotate(-3deg);
}
/* Outline variant — stencil edge, transparent fill */
.vinco-stamp--outline {
  color: var(--accent);
  background: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}
/* Ghost variant — quiet, on dark surfaces */
.vinco-stamp--ghost {
  color: var(--text-primary);
  background: var(--fill-strong);
}
