/* ============================================================
   SAVVY GRACE — Design Tokens
   Designs of the Future LLC
   ============================================================ */

:root {
  /* ── Brand Colors ─────────────────────────── */
  --color-cyan:    #00f5ff;
  --color-magenta: #ff00c8;
  --color-cyan-dim:    rgba(0,245,255,0.15);
  --color-magenta-dim: rgba(255,0,200,0.15);
  --color-cyan-glow:   0 0 20px rgba(0,245,255,0.45), 0 0 60px rgba(0,245,255,0.2);
  --color-magenta-glow: 0 0 20px rgba(255,0,200,0.45), 0 0 60px rgba(255,0,200,0.2);

  /* ── Backgrounds ──────────────────────────── */
  --color-bg:        #000000;
  --color-bg-2:      #030308;
  --color-bg-3:      #08080f;
  --color-surface:   #0d0d18;
  --color-surface-2: #111120;
  --color-surface-card: #0c0c1a;
  --color-border:    rgba(0,245,255,0.12);
  --color-divider:   rgba(0,245,255,0.08);

  /* ── Text ─────────────────────────────────── */
  --color-text:       #e8e8f0;
  --color-text-muted: #8888aa;
  --color-text-faint: #44445a;

  /* ── Gradient ─────────────────────────────── */
  --gradient-brand: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
  --gradient-brand-text: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
  --gradient-surface: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg-3) 100%);

  /* ── Typography ───────────────────────────── */
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-heading: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Share Tech Mono', 'Courier New', monospace;

  /* ── Type Scale (fluid) ───────────────────── */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* ── Spacing (4px base) ───────────────────── */
  --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;
  --space-32: 8rem;

  /* ── Radii ────────────────────────────────── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Transitions ──────────────────────────── */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:        400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Shadows ──────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.6);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.7);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.8);
  --shadow-cyan: var(--color-cyan-glow);
  --shadow-magenta: var(--color-magenta-glow);

  /* ── Layout ───────────────────────────────── */
  --content-narrow:  680px;
  --content-default: 980px;
  --content-wide:    1240px;
  --nav-height:      72px;
}
