/* ==============================================
   ONWAVE LAB — Design Tokens
   Adapted from CAG dashboard artifact aesthetic
   ============================================== */

:root {
  /* Brand Colors — Primary Palette */
  --color-bg: #0f1923;
  --color-bg-alt: #0d1520;
  --color-bg-accent: #111d2c;
  --color-primary: #1a2332;
  --color-card: #1a2836;
  --color-card-border: #263545;
  --color-card-hover: #1e2e3e;

  /* Accent Colors */
  --color-accent: #c8a96e;
  --color-accent-light: #d4bc8a;
  --color-accent-hover: #dcc89a;
  --color-accent-glow: rgba(200, 169, 110, 0.06);
  --color-accent-glow-strong: rgba(200, 169, 110, 0.15);

  /* Text Colors */
  --color-text: #e8e0d4;
  --color-text-muted: #8a9aaa;
  --color-text-faint: #5a6a7a;
  --color-text-heading: #f0e8dc;

  /* Status / Semantic Colors */
  --color-green: #4ade80;
  --color-green-bg: rgba(74, 222, 128, 0.1);
  --color-blue: #60a5fa;
  --color-blue-bg: rgba(96, 165, 250, 0.1);
  --color-amber: #fbbf24;
  --color-amber-bg: rgba(251, 191, 36, 0.06);
  --color-red: #f87171;
  --color-red-bg: rgba(248, 113, 113, 0.1);

  /* Font Families */
  --font-heading: "Playfair Display", Georgia, "Palatino Linotype", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  /* Font Sizes — Fluid Typography */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --text-xl: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --text-2xl: clamp(1.375rem, 1.15rem + 1.125vw, 1.875rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.25rem);
  --text-label: clamp(0.625rem, 0.6rem + 0.125vw, 0.7rem);

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-label: 0.15em;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Section Padding */
  --section-py: clamp(4rem, 8vw, 7rem);
  --section-px: clamp(1.5rem, 5vw, 2rem);

  /* Container */
  --container-max: 1200px;
  --container-narrow: 900px;
  --container-text: 720px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(200, 169, 110, 0.1);

  /* Timing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 500ms;

  /* Navigation */
  --nav-height: 72px;
}
