/* ==========================================================================
   Design tokens — Accuransi BUMDes
   Semua warna, jarak, dan radius didefinisikan di sini.
   ========================================================================== */
:root {
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --bg: #f5f6f2;
  --surface: #ffffff;
  --surface-2: #f0f2eb;
  --surface-3: #e7eadf;
  --border: #dfe3d6;
  --border-strong: #c9cfbe;
  --text: #1b2418;
  --text-muted: #5f6a5a;
  --text-soft: #858f80;

  --primary: #1f7a4d;
  --primary-hover: #186340;
  --primary-soft: #e2f1e8;
  --primary-contrast: #ffffff;

  --accent: #b7791f;
  --accent-soft: #fbf0dc;
  --danger: #c0392b;
  --danger-soft: #fbe5e2;
  --warning: #a86b0c;
  --warning-soft: #fdf1d8;
  --info: #2468a8;
  --info-soft: #e1edf8;
  --success: #1f7a4d;
  --success-soft: #e2f1e8;

  --sidebar-bg: #16301f;
  --sidebar-text: #cfdccf;
  --sidebar-muted: #8ea68f;
  --sidebar-active: #25573a;

  --shadow-sm: 0 1px 2px rgba(20, 30, 15, 0.06);
  --shadow-md: 0 4px 16px rgba(20, 30, 15, 0.08);
  --shadow-lg: 0 16px 48px rgba(20, 30, 15, 0.18);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;

  --sidebar-w: 256px;
  --topbar-h: 60px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #111611;
    --surface: #181f18;
    --surface-2: #1f281f;
    --surface-3: #283228;
    --border: #2c372c;
    --border-strong: #3b483b;
    --text: #e6ece3;
    --text-muted: #a3afa0;
    --text-soft: #7c887a;
    --primary: #3fae74;
    --primary-hover: #52c386;
    --primary-soft: #1d3527;
    --primary-contrast: #0c160f;
    --accent-soft: #3a2d15;
    --danger: #e56b5d;
    --danger-soft: #3a1f1c;
    --warning: #e0a53a;
    --warning-soft: #372a13;
    --info: #6aa7e0;
    --info-soft: #1a2a3a;
    --success: #3fae74;
    --success-soft: #1d3527;
    --sidebar-bg: #0c120d;
    --sidebar-active: #1d3527;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  }
}

:root[data-theme="dark"] {
  --bg: #111611;
  --surface: #181f18;
  --surface-2: #1f281f;
  --surface-3: #283228;
  --border: #2c372c;
  --border-strong: #3b483b;
  --text: #e6ece3;
  --text-muted: #a3afa0;
  --text-soft: #7c887a;
  --primary: #3fae74;
  --primary-hover: #52c386;
  --primary-soft: #1d3527;
  --primary-contrast: #0c160f;
  --accent-soft: #3a2d15;
  --danger: #e56b5d;
  --danger-soft: #3a1f1c;
  --warning: #e0a53a;
  --warning-soft: #372a13;
  --info: #6aa7e0;
  --info-soft: #1a2a3a;
  --success: #3fae74;
  --success-soft: #1d3527;
  --sidebar-bg: #0c120d;
  --sidebar-active: #1d3527;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}
