/* STARZPLAY — base element styling & helpers (optional reset layer) */
.stz-root,
body.stz {
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings use the display family, tight tracking */
.stz-display, .stz-h1, .stz-h2, .stz-h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-tight);
  margin: 0;
}
.stz-display { font-size: var(--fs-display); }
.stz-h1 { font-size: var(--fs-h1); }
.stz-h2 { font-size: var(--fs-h2); }
.stz-h3 { font-size: var(--fs-h3); font-weight: var(--fw-bold); }

/* Uppercase eyebrow / section label — a signature brand device */
.stz-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--text-accent);
}

.stz-muted { color: var(--text-muted); }

/* Gradient text helper (wordmark-style cyan wash) */
.stz-grad-text {
  background: var(--stz-grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark cinematic canvas with brand flare */
.stz-canvas {
  background:
    var(--stz-grad-flare),
    var(--bg-canvas);
}
