/*
 * Design tokens for Eklunda Sandbox UI
 */
:root {
  /* Brand palette */
  --color-forest: #064b37;
  --color-forest-strong: #043425;
  --color-petrol: #0f766e;
  --color-petrol-bright: #14b8a6;
  --color-sand: #f3ede1;
  --color-sand-strong: #e6decb;
  --color-ink: #0f172a;
  --color-muted: #475569;
  --color-surface: #f8fafc;
  --color-surface-strong: #e2e8f0;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-overlay: rgba(15, 23, 42, 0.08);

  /* Typographic scale */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Radius & spacing */
  --radius-pill: 9999px;
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;

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

  /* Elevation */
  --shadow-soft: 0 12px 32px rgba(6, 75, 55, 0.18);
  --shadow-elevated: 0 24px 64px rgba(15, 118, 110, 0.18);

  /* Transitions */
  --transition-base: 180ms ease;
}
