/* Jursu shared design tokens — injected site-wide via nginx sub_filter,
   before nav.css/footer.css, so it loads last in <head> and wins the
   cascade over each page's own inline :root block. Change a color or
   token here and it updates every jursu.com page in one place. */
:root {
  /* Brand */
  --blue: #1e5a75;
  --purple: #1e5a75;
  --dark: #102638;

  /* Text */
  --text: #17212b;
  --text-secondary: #5e6872;
  --text-muted: #7b858e;

  /* Surfaces */
  --border: #e4e7e9;
  --surface: #f7f7f5;

  /* Semantic */
  --good: #287a5a;
  --good-bg: #eaf5ef;

  /* New tokens, for incremental use going forward */
  --action-primary: #1e5a75;
  --action-primary-hover: #174a61;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --shadow-sm: 0 1px 3px rgba(16, 38, 56, 0.06);
  --shadow-md: 0 6px 20px rgba(16, 38, 56, 0.08);
}
