:root {
  /* Colors — warm black + deep violet */
  --color-bg: #121014;
  --color-bg-elevated: #1a1620;
  --color-bg-soft: #221c2a;
  --color-surface: #2a2234;
  --color-border: rgba(196, 168, 255, 0.14);
  --color-border-strong: rgba(196, 168, 255, 0.28);

  --color-text: #f2ebe6;
  --color-text-muted: #b5a9b8;
  --color-text-subtle: #8a7e90;

  --color-accent: #7c4dff;
  --color-accent-deep: #5b2fd6;
  --color-accent-soft: #a78bfa;
  --color-accent-glow: rgba(124, 77, 255, 0.35);

  --color-warm: #e8d5c4;
  --color-danger: #f07178;

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: clamp(2rem, 4vw, 3rem);
  --fs-3xl: clamp(2.5rem, 6vw, 4.25rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-body: 1.65;

  /* Layout */
  --max-width: 1120px;
  --header-height: 4.25rem;
  --section-gap: clamp(4.5rem, 10vw, 7.5rem);
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --radius-sm: 0.4rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 160ms;
  --duration: 320ms;
  --duration-slow: 560ms;

  /* Shadows */
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-accent: 0 0 0 1px var(--color-border), 0 16px 48px var(--color-accent-glow);
}
