/* SBOS — base element defaults & a few utility helpers.
 * Kept minimal: tokens do the heavy lifting; components style themselves.
 */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body-md);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  margin: 0;
}

/* Mono kicker label — the recurring "PREZENTACJA ORGANIZACJI" style */
.sbos-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-label-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-ink);
}

/* Amber section accent bar */
.sbos-accent-bar {
  width: 64px;
  height: 4px;
  background: var(--color-accent);
}

/* Blueprint grid background — used on dark technical sections */
.sbos-blueprint-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
}

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