/*
  PSP brand tokens
  Pearl editorial mode — warm off-white ground, near-black type.
*/

:root {
  /* Core palette */
  --color-bg: #f4efe7;
  --color-bg-elev: #f8f4ee;
  --color-surface: #fbf8f3;
  --color-surface-soft: #ece6dc;
  --color-text: #101010;
  --color-text-muted: #4b4740;
  --color-text-dim: #7b756c;
  --color-border: #ddd6ca;
  --color-border-strong: #c9c0b1;

  /* Accent — near-black; blue/purple lives only inside the 3D logo */
  --color-accent: #101010;
  --color-accent-soft: #2b2b2b;
  --color-accent-dim: rgba(16, 16, 16, 0.08);

  /* PSP purple — reserved for the cursor / spotlight effects and the logo */
  --color-psp-purple: #8a5cff;
  --color-psp-purple-soft: #b36cff;

  /* Gradients — reserved for hover fills only */
  --gradient-brand: linear-gradient(135deg, #101010 0%, #2b2b2b 100%);
  --gradient-hero: linear-gradient(180deg, #f8f4ee 0%, #f4efe7 100%);

  /* Typography */
  --font-display: "Methos Black", "Methos", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3.5rem;
  --text-5xl: 5.5rem;
  --text-6xl: 8rem;

  --line-tight: 1.02;
  --line-snug: 1.15;
  --line-base: 1.55;

  /* Spacing */
  --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;

  /* Radius — mostly sharp in editorial */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadows — soft on pearl */
  --shadow-sm: 0 1px 2px rgba(16, 16, 16, 0.08);
  --shadow-md: 0 8px 20px rgba(16, 16, 16, 0.10);
  --shadow-lg: 0 24px 50px rgba(16, 16, 16, 0.14);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.1, 1);
  --duration-fast: 160ms;
  --duration-base: 260ms;
  --duration-slow: 520ms;

  /* Layout */
  --container-max: 1440px;
  --container-tight: 1080px;
}
