/* ============================================================
   SDL Advisory — Spacing, radius, shadow, layout tokens
   ============================================================ */
:root {
  /* ---------- Spacing scale ---------- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  22px;
  --space-6:  26px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  56px;

  /* ---------- Radii ---------- */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  /* ---------- Shadow ---------- */
  --shadow-card: 0 1px 2px rgba(10,25,41,0.04), 0 4px 14px rgba(10,25,41,0.05);
  --shadow-hover: 0 4px 20px rgba(10,25,41,0.10);
  --shadow-modal: 0 24px 64px rgba(0,0,0,0.45);

  /* ---------- Layout ---------- */
  --container-max:    1180px;
  --container-narrow: 820px;
  --container-pad:    clamp(20px, 4vw, 40px);
  --section-pad-y:    36px;

  /* ---------- Motion ---------- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast: .15s; /* @kind other */
  --dur-base: .2s; /* @kind other */
}
