/* ============================================
   VOSSA DESIGN SYSTEM - CSS TOKENS
   ============================================ */

:root {
  /* ----------------------------------------
     COLOR PALETTE
     ---------------------------------------- */
  
  /* Primary Colors */
  --color-lime: #D4E157;
  --color-lime-hover: #C6D348;
  --color-lime-light: #E8F5A3;
  
  /* Secondary Colors */
  --color-lavender: #E1BEE7;
  --color-lavender-light: #F3E5F5;
  --color-lavender-dark: #CE93D8;
  
  /* Accent Colors */
  --color-orange: #F4511E;
  --color-orange-hover: #E64A19;
  --color-orange-light: #FFCCBC;
  
  /* Neutral Colors */
  --color-black: #1A1A1A;
  --color-charcoal: #2D2D2D;
  --color-gray-900: #333333;
  --color-gray-700: #5C5C5C;
  --color-gray-500: #8E8E8E;
  --color-gray-400: #AFAFAF;
  --color-gray-300: #D1D1D1;
  --color-gray-200: #E5E5E5;
  --color-gray-100: #F0F0F0;
  --color-gray-50: #F8F8F8;
  --color-white: #FFFFFF;
  
  /* Background Colors */
  --bg-primary: #F5F5F5;
  --bg-secondary: var(--color-white);
  --bg-card: var(--color-white);
  --bg-input: var(--color-white);
  --bg-modal: var(--color-white);
  
  /* Text Colors */
  --text-primary: var(--color-black);
  --text-secondary: var(--color-gray-500);
  --text-tertiary: var(--color-gray-400);
  --text-inverse: var(--color-white);
  --text-on-lime: var(--color-black);
  --text-on-orange: var(--color-white);
  
  /* Border Colors */
  --border-default: var(--color-gray-300);
  --border-light: var(--color-gray-200);
  --border-focus: var(--color-charcoal);
  
  /* Semantic Colors */
  --color-success: #4CAF50;
  --color-warning: #FF9800;
  --color-error: #F44336;
  --color-info: #2196F3;
  
  /* Gradient - Voice Recording Screen */
  --gradient-voice: linear-gradient(
    135deg,
    #E07B54 0%,
    #C4728A 35%,
    #B98AAD 65%,
    #A890B5 100%
  );
  
  /* ----------------------------------------
     TYPOGRAPHY
     ---------------------------------------- */
  
  /* Font Family */
  --font-family-primary: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-display: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  --font-size-6xl: 4rem;      /* 64px */
  --font-size-display: 5rem;  /* 80px - Balance numbers */
  
  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  
  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.02em;
  
  /* ----------------------------------------
     SPACING
     ---------------------------------------- */
  
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* ----------------------------------------
     BORDER RADIUS
     ---------------------------------------- */
  
  --radius-none: 0;
  --radius-sm: 0.375rem;    /* 6px */
  --radius-md: 0.5rem;      /* 8px */
  --radius-lg: 0.75rem;     /* 12px */
  --radius-xl: 1rem;        /* 16px */
  --radius-2xl: 1.25rem;    /* 20px */
  --radius-3xl: 1.5rem;     /* 24px */
  --radius-4xl: 2rem;       /* 32px */
  --radius-pill: 9999px;    /* Pill shape */
  --radius-modal: 1.5rem 1.5rem 0 0;  /* Modal top corners */
  
  /* ----------------------------------------
     SHADOWS
     ---------------------------------------- */
  
  --shadow-none: none;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-modal: 0 -4px 20px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 2px 4px rgba(0, 0, 0, 0.08);
  
  /* ----------------------------------------
     TRANSITIONS
     ---------------------------------------- */
  
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* ----------------------------------------
     Z-INDEX
     ---------------------------------------- */
  
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-overlay: 400;
  --z-toast: 500;
  
  /* ----------------------------------------
     COMPONENT-SPECIFIC TOKENS
     ---------------------------------------- */
  
  /* Buttons */
  --btn-height-sm: 2.5rem;    /* 40px */
  --btn-height-md: 3rem;      /* 48px */
  --btn-height-lg: 3.5rem;    /* 56px */
  --btn-padding-x: var(--space-6);
  
  /* Inputs */
  --input-height: 3.5rem;     /* 56px */
  --input-padding-x: var(--space-5);
  
  /* Cards */
  --card-padding: var(--space-5);
  
  /* Progress Bar */
  --progress-height: 0.375rem; /* 6px */
  --progress-bg: var(--color-gray-200);
  --progress-fill: var(--color-charcoal);
  
  /* Toggle */
  --toggle-width: 5rem;       /* 80px */
  --toggle-height: 2.5rem;    /* 40px */
  
  /* Icon Button */
  --icon-btn-sm: 2.5rem;      /* 40px */
  --icon-btn-md: 3rem;        /* 48px */
  --icon-btn-lg: 3.5rem;      /* 56px */
  
  /* Bottom Bar */
  --bottom-bar-height: 5rem;  /* 80px */
  
  /* Safe Areas (iOS) */
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

