/* Onnestra design tokens — color-picked from the approved mockups in context/mockups/ */

:root {
  /* Backgrounds */
  --bg-dark: #051433;           /* login background, sidebar background — matches the real saved brand-mark asset exactly, so the embedded logo blends with no visible box */
  --bg-dark-elevated: #0d1220;  /* auth card / slightly raised dark surfaces */
  --bg-content: #f6f8fb;        /* pale content-well background, post-login screens */
  --bg-white: #ffffff;          /* cards on the content well */

  /* Text */
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #9aa5b1;
  --text-primary: #14181f;      /* headings on light backgrounds */
  --text-secondary: #4b5563;    /* body copy on light backgrounds */
  --text-muted: #6b7280;        /* labels, meta text */
  --text-placeholder: #9aa3af;

  /* Accent */
  --accent-blue: #2f5eff;
  --accent-blue-hover: #2650e6;
  --accent-blue-light: #4c7dff;
  --accent-blue-subtle: #eaf0ff; /* selected/highlighted field backgrounds */
  --accent-blue-vivid: #1e63ff; /* saturated electric blue for glow/headline treatments — matches approved mockup exactly, do not desaturate */

  /* Borders */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: #e5e9f0;
  --border-light-strong: #d7dce5;

  /* Status: Pending Approval (amber) */
  --status-amber-bg: #fef3c7;
  --status-amber-text: #b45309;
  --status-amber-icon-bg: #fef0d1;
  --status-amber-icon: #e2900c;

  /* Status: Overdue (red) */
  --status-red-bg: #fee2e2;
  --status-red-text: #b91c1c;
  --status-red-icon-bg: #fee2e1;
  --status-red-icon: #e5484d;

  /* Status: In Progress (blue) */
  --status-blue-bg: #dbeafe;
  --status-blue-text: #1d4ed8;
  --status-blue-icon-bg: #e1ebfe;
  --status-blue-icon: #2563eb;

  /* Status: Completed (green) */
  --status-green-bg: #d1fae5;
  --status-green-text: #047857;
  --status-green-icon-bg: #dbf9ec;
  --status-green-icon: #059669;

  /* Priority dots */
  --priority-low: #2f5eff;
  --priority-medium: #e2900c;
  --priority-high: #e5484d;

  /* Semantic action colors */
  --action-approve: #059669;
  --action-approve-bg: #ecfdf5;
  --action-approve-hover: #047857;
  --action-changes: #e2900c;
  --action-changes-bg: #fffbeb;
  --action-reject: #e5484d;
  --action-reject-bg: #fef2f2;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;

  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.375rem;   /* 22px */
  --text-2xl: 1.75rem;   /* 28px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 3rem;      /* 48px */
  --text-5xl: 3.5rem;    /* 56px */

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 4px 12px rgba(16, 24, 40, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(16, 24, 40, 0.06), 0 8px 20px rgba(16, 24, 40, 0.08);
  --shadow-dark-card: 0 8px 30px rgba(0, 0, 0, 0.35);

  /* Sidebar width */
  --sidebar-width: 272px;
}
