:root {
  /* Brand */
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #161616;
  --color-elevated: #1c1c1c;
  --color-border: #242424;
  --color-border-strong: #333333;

  --color-text: #f5f5f5;
  --color-text-muted: #9a9a9a;
  --color-text-faint: #6b6b6b;

  --color-gold: #f5b800;
  --color-gold-soft: rgba(245, 184, 0, 0.14);
  --color-gold-line: rgba(245, 184, 0, 0.4);

  --color-black: #000000;
  --color-white: #ffffff;

  /* Spacing scale — 4/8/16/24/32/48/64 only */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 21px;
  --fs-xl: 28px;
  --lh-tight: 1.25;
  --lh-base: 1.55;

  /* Effects */
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
  --ring-gold: 0 0 0 2px var(--color-gold);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 180ms;

  /* Site chrome (landing / auth / dashboard) — matches the desire-marketing language */
  --font-display: "Outfit", var(--font-sans);
  --fs-hero: clamp(2.6rem, 7vw, 5.5rem);
  --fs-h2: clamp(1.9rem, 4.2vw, 3.4rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.35rem);
  --fs-label: 0.75rem;
  --line: rgba(245, 245, 245, 0.1);
  --line-2: rgba(245, 245, 245, 0.18);
  --sp-section: clamp(5rem, 11vw, 9rem);
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --maxw: 74rem;
  --measure: 38rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow: 550ms;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; }
}
