/* Design tokens — wspólny system dla wszystkich LP.
   Kolor akcentu nadpisywany per-strona (patrz <style> w <head> każdej LP). */
:root {
  /* Baza — głębokie, ciepłe graphite (nie czarny, nie zimny granat jak konkurencja) */
  --bg: #0d0e10;
  --bg-alt: #131519;
  --surface: #1a1d22;
  --surface-2: #21252b;
  --border: #2a2e35;

  /* Kontrast na tle --bg: text 18:1, muted 7,4:1, faint 5,2:1 — wszystko ponad progiem WCAG AA (4,5:1). */
  --text: #f4f5f6;
  --text-muted: #9aa1ab;
  --text-faint: #7d8593;

  /* Akcent domyślny (nadpisywany per LP) */
  --accent: #ff6a3d;
  --accent-2: #ff8f66;
  --accent-contrast: #0d0e10;
  --accent-rgb: 255, 106, 61;

  --success: #2dd4a7;
  --danger: #ff5470;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(var(--accent-rgb), 0.25), 0 12px 40px -8px rgba(var(--accent-rgb), 0.45);

  --container: 1180px;
  --container-narrow: 780px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
