/* Sabro Work visual overlay — Class A branding. Survives via apply.sh after image bumps. */
:root {
  --sabro-work-accent: #0b3d2e;
  --sabro-work-accent-fg: #f4f7f5;
  --sabro-work-accent-soft: #143d32;
}

/* Theme-color / focus accents where upstream uses zinc defaults */
html {
  --ring: var(--sabro-work-accent);
}

/* Subtle top accent bar so the board reads as Sabro Work even if a string slips */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sabro-work-accent), #1f6b52 55%, #0b3d2e);
  z-index: 9999;
  pointer-events: none;
}
