/* ============================================
   Design Tokens — Elide
   ============================================ */

:root {
  /* Brand */
  --color-magenta: #A5188F;
  --color-purple: #AA16D0;
  --color-pink: #FF5FFF;
  --color-white: #FAFCFA;
  --color-black: #0A0A0A;

  /* Surfaces */
  --color-surface: #0A0A0A;
  --color-surface-alt: #0E0E11;
  --color-border: #1E1E22;

  /* Text */
  --color-text: #FAFCFA;
  --color-text-muted: #8A8A94;
  --color-text-dim: #71717A;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #A5188F, #AA16D0);
  --gradient-text: linear-gradient(135deg, #FF5FFF, #A5188F, #AA16D0);

  /* Typography */
  --font-mono: "JetBrains Mono", "Fira Code", "SF Mono", ui-monospace, monospace;
  --font-sans: "Instrument Sans", system-ui, -apple-system, sans-serif;

  /* Type scale — strict: big + small, minimal intermediate */
  --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: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 5rem;
  --text-7xl: 7rem;
  --text-8xl: 9rem;
  --text-9xl: 11rem;

  /* Leading */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Weight */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing — 8px base unit */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --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;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;

  /* Grid */
  --max-width: 80rem;
  --grid-gutter: var(--space-6);
  --grid-margin: var(--space-6);

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;

  /* Transition */
  --transition: 200ms ease;
}


@media (min-width: 768px) {
  :root {
    --grid-gutter: var(--space-8);
    --grid-margin: var(--space-8);
  }
}

@media (min-width: 1024px) {
  :root {
    --grid-margin: var(--space-12);
  }
}
