/* tokens.css — design tokens / brand for My Client.
   Distinct namespace: does NOT redefine style.css's existing :root vars
   (--green/--red/--blue/--gray/--gray-light/--border/--shadow/--radius),
   so loading this file cannot change the existing app's appearance. */
:root {
    /* Brand */
    --brand-primary: #1a237e;
    --brand-primary-600: #2a3aa8;
    --brand-primary-700: #15196a;
    --brand-accent: #1565c0;

    /* Status */
    --success: #2e7d32;
    --danger: #c62828;
    --danger-bg: #fce4ec;

    /* Neutrals */
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e0e0e0;
    --surface: #ffffff;
    --surface-alt: #f7f8fa;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Menlo', 'Consolas', monospace;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;

    /* Radius / shadow / motion */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.18);
    --t-fast: 120ms;
    --t-base: 200ms;

    /* Component tokens */
    --field-border: var(--line);
    --field-border-focus: var(--brand-accent);
    --field-focus-ring: rgba(21, 101, 192, 0.25);
    --button-bg: var(--brand-primary);
    --button-fg: #ffffff;
}
