/* Design tokens — warm, calm, readable */
:root {
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-brand: "Noto Sans Devanagari", "DM Sans", system-ui, sans-serif;

  --bg-base: #f6f3ee;
  --bg-elevated: #fffcf7;
  --bg-muted: #ebe6df;
  --surface-glass: rgba(255, 252, 247, 0.72);

  --text-primary: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;

  --accent: #3f6f5e;
  --accent-soft: #d8ebe3;
  --accent-hover: #355c4e;

  --coral: #e07a5f;
  --coral-soft: #fde8e3;
  --amber: #d4a574;
  --amber-soft: #f5eadc;
  --sage: #7c9885;
  --sage-soft: #e3ede6;

  /* Trend / dual-series charts — two hues easy to tell apart (not both green) */
  --chart-person-a: #4d8a6a;
  --chart-person-b: #c45c3e;
  --chart-label-fg: #78716c;
  --chart-axis-stroke: rgba(28, 25, 23, 0.18);

  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.14);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 25, 23, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  --max-width: 1120px;
  --sidebar-width: 260px;
  --header-h: 4rem;

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
  --ease-out-soft: cubic-bezier(0.33, 1, 0.68, 1);

  /* Ambient page mesh (light) */
  --mesh-glow-1: rgba(63, 111, 94, 0.18);
  --mesh-glow-2: rgba(224, 122, 95, 0.12);
  --mesh-glow-3: rgba(212, 165, 116, 0.1);

  /* Sidebar active stripe (light: matches accent) */
  --nav-accent: var(--accent);
}

/* Intentionally light-only theme for a consistent look. */
