/*---------------------------------------------------
  Indy Design Tokens
----------------------------------------------------*/
:root {
  /* Primary colors */
  --color-green: #3a6f49;
  --color-blue: #0066cc;
  --color-blue-hover: #005cb8;

  /* Neutral tones */
  --color-neutral-light: #f7fafc;
  --color-neutral-dark: #0f1a24;
  --surface-bg: #f7fafc;
  --surface-card: #ffffff;
  --surface-muted: #f1f5f9;
  --text-primary: #0f1a24;
  --text-muted: #476685;
  --border-soft: #e0e6eb;
  --header-bg: #ffffff;
  --footer-bg: #0f1a24;
  --footer-text: #e2e8f0;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-body-size: 1rem;
  --font-body-size-desktop: 1.125rem;
  --font-small: 0.875rem;
  --font-eyebrow: 0.75rem;
  --line-body: 1.6;
  --line-heading: 1.15;
  --radius-soft: 0.75rem;
  --radius-card: 1rem;
  --radius-card-large: 1.5rem;
  --radius-section: 1.5rem;
  --radius-pill: 999px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --measure-comfortable: 68ch;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-glass-border: rgba(255, 255, 255, 0.2);
  --surface-card-border: 1px solid rgba(15, 23, 42, 0.08);
  --surface-card-padding: 1rem;
  --surface-card-padding-comfort: 1.2rem;
  --shadow-surface: 0 8px 22px rgba(15, 23, 42, 0.08);
  --shadow-surface-soft: 0 6px 14px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.1);
  --shadow-card-hover: 0 14px 32px rgba(11, 99, 206, 0.14);
  --shadow-action: 0 10px 24px rgba(0, 102, 204, 0.18);
  --shadow-action-hover: 0 12px 26px rgba(0, 102, 204, 0.24);
  --focus-ring-action: 0 0 0 3px rgba(0, 102, 204, 0.18);
  --shell-header-min-height: 60px;
  --shell-header-pad-y: 0.75rem;
  --shell-breadcrumb-min-height: 50px;
  --shell-breadcrumb-gap: 0.75rem;
  --shell-page-hero-pad-y: 4rem;
  --shell-page-hero-pad-bottom: 3rem;
  --shell-mobile-tab-height: 68px;
}

html.theme-dark {
  --color-blue: #0080ff;
  --color-blue-hover: #0073e6;
  --color-neutral-light: #151f28;
  --color-neutral-dark: #f8fafc;
  --surface-bg: #151f28;
  --surface-card: #1b2632;
  --surface-muted: #243342;
  --text-primary: #f8fafc;
  --text-muted: #8599ad;
  --border-soft: #2d4053;
  --header-bg: #1b2632;
  --footer-bg: #151f28;
  --footer-text: #f8fafc;
  --surface-glass: rgba(0, 0, 0, 0.32);
  --surface-glass-border: rgba(255, 255, 255, 0.1);
  --surface-card-border: 1px solid rgba(148, 163, 184, 0.14);
  --shadow-surface: 0 8px 22px rgba(3, 8, 20, 0.32);
  --shadow-surface-soft: 0 6px 14px rgba(3, 8, 20, 0.24);
  --shadow-card: 0 12px 30px rgba(3, 8, 20, 0.45);
  --shadow-card-hover: 0 16px 34px rgba(2, 8, 20, 0.5);
  --shadow-action: 0 10px 24px rgba(0, 115, 230, 0.22);
  --shadow-action-hover: 0 12px 26px rgba(0, 115, 230, 0.3);
  --focus-ring-action: 0 0 0 3px rgba(96, 165, 250, 0.2);
  color-scheme: dark;
}
