/* tokens.css — design tokens for NextGen */
:root {
  /* Breakpoints (reference only — used in media queries as px) */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  /* Colors — NextGen palette (bright) */
  --bg: #F7F4EC;
  --bg-soft: #EDF0EA;
  --bg-elevated: #063D2E;
  --surface: #ffffff;
  --surface-soft: #F7F4EC;
  --surface-dark: #063D2E;
  --text: #111827;
  --text-muted: #7E9187;
  --text-inverse: #111827;
  --text-inverse-muted: rgba(17,24,39,0.55);

  --green: #00A86B;
  --green-bright: #00A86B;
  --green-soft: #E8F5EF;
  --green-dark: #063D2E;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --amber: #F4B740;
  --amber-soft: #fef3c7;
  --red: #ef4444;
  --red-soft: #fee2e2;

  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(0,0,0,0.08);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-card: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lift: 0 18px 40px rgba(0,0,0,0.22);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;
  --text-5xl: clamp(3rem, 8vw, 6rem);

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

  /* Layout */
  --container-max: 1120px;
  --header-h: 64px;
  --dock-h: 64px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 520ms;

  /* Font */
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
