/* Meridian FX design tokens — single source of truth for color, type, spacing, motion.
   Rebranded from the luxury-static-site default: gold -> violet, dark-first with a
   light inner-page surface. Variable NAMES are unchanged so base/components keep working;
   only the values moved. `.button.gold` etc. are just role names = "primary". */
:root{
  /* surfaces — dark */
  --ink:#020105;
  --ink-2:#05030b;
  --ink-3:#090612;
  --ink-4:#100a1b;

  /* surfaces — "inner page" bands. Dark now too — a hair lighter than --ink so
     alternating sections still read as distinct. Was near-white. */
  --paper:#060410;
  --paper-2:#0b0817;

  /* glow (violet) — punchy */
  --gold-glow-soft:0 0 26px rgba(163,92,255,.62);
  --gold-glow-strong:0 0 32px rgba(183,124,255,.85),0 0 72px rgba(139,61,255,.55);

  /* text on dark */
  --text-on-dark:#efeafc;
  --text-on-dark-dim:#bdb4d0;
  --text-on-dark-faint:#8a80a3;

  /* text on the inner-page bands (now dark) */
  --text-on-light:#ece7f8;
  --text-on-light-dim:#a99fc2;

  /* brand — vivid electric violet + secondary cool cyan */
  --gold:#8b3dff;
  --gold-bright:#b98cff;
  --gold-line:rgba(185,140,255,.5);
  --accent2:#4c9fc4;
  --accent2-bright:#74c7e3;

  /* lines */
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.24);
  --line-on-light:rgba(255,255,255,.10);
  --line-on-light-strong:rgba(255,255,255,.20);

  /* type */
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:'Manrope', Arial, sans-serif;
  --font-mono:'DM Mono', 'Courier New', monospace;

  /* spacing / shape */
  --gap-xs:8px; --gap-sm:14px; --gap-md:24px; --gap-lg:40px; --gap-xl:72px; --gap-2xl:120px;
  --radius-sm:4px; --radius-md:8px; --radius-lg:14px;
  --edge:max(20px, calc((100vw - 1280px) / 2));
  --container:1280px;

  /* motion */
  --ease:cubic-bezier(.2,.8,.2,1);
  --ease-soft:cubic-bezier(.16,1,.3,1);
  --dur-fast:220ms;
  --dur-med:520ms;
  --dur-slow:1000ms;
}
