@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --color-brand-50: #FFF4EE;
  --color-brand-100: #FFE2CC;
  --color-brand-200: #FFC099;
  --color-brand-300: #FF9566;
  --color-brand-400: #FF6D33;
  --color-brand-500: #F55400;
  --color-brand-600: #CC4500;
  --color-brand-700: #A33800;
  --color-brand-800: #7A2A00;
  --color-brand-900: #521C00;

  --color-neutral-0: #FFFFFF;
  --color-neutral-50: #FAFAFA;
  --color-neutral-100: #F4F4F4;
  --color-neutral-200: #E8E8E8;
  --color-neutral-300: #D1D1D1;
  --color-neutral-400: #A3A3A3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #3A3A3A;
  --color-neutral-800: #262626;
  --color-neutral-900: #1A1A1A;
  --color-neutral-950: #0D0E10;

  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  --font-family-base: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 28px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 48px;

  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;

  --space-0: 0px;
  --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;
  --space-20: 80px;
  --space-24: 96px;

  --radius-none: 0px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 8px 40px rgba(0, 0, 0, 0.12);

  --duration-fast: 120ms;
  --duration-normal: 200ms;
  --duration-slow: 350ms;

  --easing-default: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --bg-base: #FAFAFA;
  --bg-surface: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #737373;
  --text-muted: #A3A3A3;
  --btn-secondary-bg: #F4F4F4;
  --btn-secondary-text: #3A3A3A;
  --btn-secondary-hover: #E8E8E8;
  --btn-done-bg: #FFE2CC;
  --btn-done-text: #A33800;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-base: #0D0E10;
    --bg-surface: #262626;
    --bg-elevated: #3A3A3A;
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-muted: #737373;
    --btn-secondary-bg: #3A3A3A;
    --btn-secondary-text: #E8E8E8;
    --btn-secondary-hover: #525252;
    --btn-done-bg: #521C00;
    --btn-done-text: #FFC099;
  }
}