/*
 * EVBoy-Buy-V2 design tokens
 *
 * Per design-brief.md §4 and design.md "OpenDesign Reference Bundle" /
 * Standalone-V2 rules: tokens live ONLY in this file. Per-page Razor
 * partials must NOT inline `:root { ... }` blocks. Hoist any new token
 * here so the entire site stays on one variable surface.
 */

:root {
  /* Brand */
  --evboy-aqua: oklch(69.8% .125 217);
  --evboy-aqua-soft: color-mix(in oklch, var(--evboy-aqua) 12%, var(--surface));
  --evboy-yellow: oklch(90.5% .188 99.1);
  --evboy-ink: oklch(17% .03 250);
  --list-marker: var(--evboy-yellow);

  /* Surface / foreground / border */
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-warm: #eef1ff;
  --fg: #111827;
  --fg-2: #374151;
  --muted: #6b7280;
  --meta: #4f46e5;
  --border: #dfe3ed;
  --border-soft: #eef1f7;
  --accent: #4f46e5;
  --accent-on: #ffffff;
  --accent-hover: color-mix(in oklab, var(--accent), black 8%);
  --accent-active: color-mix(in oklab, var(--accent), black 14%);

  /* Status */
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;

  /* Type */
  --font-display: Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, Menlo, monospace;
  --text-xs: 12px;  --text-sm: 14px;  --text-base: 16px;
  --text-lg: 18px;  --text-xl: 24px;  --text-2xl: 36px;
  --text-3xl: 54px; --text-4xl: 76px;
  --leading-body: 1.52;
  --leading-tight: 1.04;
  --tracking-display: 0;

  /* Spacing + section rhythm */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-12: 48px;
  --section-y-desktop: 104px;
  --section-y-tablet:  72px;
  --section-y-phone:   52px;

  /* Radius / elevation / motion */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --elev-flat: none;
  --elev-ring: 0 0 0 1px var(--border);
  --elev-raised: 0 22px 58px rgba(17, 24, 39, .11);
  --shadow-soft: 0 24px 70px rgba(17, 24, 39, .10);
  --motion-fast: 150ms;
  --motion-base: 240ms;
  --ease-standard: cubic-bezier(.22, 1, .36, 1);

  /* Container + focus */
  --container-max: 1180px;
  --container-gutter-desktop: 36px;
  --container-gutter-tablet:  24px;
  --container-gutter-phone:   16px;
  --focus-ring: 0 0 0 4px color-mix(in oklch, var(--evboy-aqua) 26%, transparent);
}
