/* Vue Media — design tokens
 * Brand: near-black background, turquoise accent, white text, Poppins.
 * Accent rule: ONLY "Cinematic" (hero) and "feels" (What We Do) are turquoise.
 */
:root {
  /* --- Color --- */
  --color-bg: #101111;
  --color-bg-raised: #161818;
  --color-bg-sunken: #0b0c0c;
  --color-accent: #40E0D0;
  --color-accent-hover: #5bede0;
  --color-accent-ink: #04110f;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.66);
  --color-line: rgba(255, 255, 255, 0.12);

  /* --- Type --- */
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Spacing scale --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 760px;
  --radius: 10px;
  --radius-lg: 18px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;

  /* --- Layers --- */
  --z-nav: 100;
  --z-hero: 1;
}
