/* NEU design tokens — Wave 0 extraction (authoritative). All values from the production/Lovable design. */
:root{
  /* Brand colors (exact hex) */
  --neu-purple:#804FFC;
  --neu-lime:#BCDA2B;
  --neu-lime-bright:#C5EE2F;
  --neu-purple-soft:#7E78DE;
  --neu-indigo:#19007A;
  --neu-near-black:#0D0B19;
  --neu-white:#FFFFFF;
  /* Semantic */
  --color-bg:var(--neu-white);
  --color-fg:var(--neu-indigo);
  --color-primary:var(--neu-purple);
  --color-accent:var(--neu-lime);
  /* Radius */
  --radius:0.5rem;
  /* Type scale (rem) */
  --text-xs:0.75rem; --text-sm:0.875rem; --text-base:1rem; --text-lg:1.125rem;
  --text-xl:1.25rem; --text-2xl:1.5rem; --text-3xl:1.875rem; --text-4xl:2.25rem;
  --text-5xl:3rem; --text-6xl:3.75rem; --text-7xl:4.5rem;
  /* Spacing scale (0.25rem step) */
  --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-28:7rem;
  /* Fonts */
  --font-latin:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --font-arabic:'IBM Plex Sans Arabic','Inter',system-ui,sans-serif;
}
html{font-size:16px;}
body{background:var(--color-bg);color:var(--color-fg);font-family:var(--font-latin);}
/* Arabic scoping: AR locale (html[lang=ar]) + any AR/RTL subtree (forward-compatible w/ Wave 5 routing) */
[lang="ar"], .rtl, [dir="rtl"]{font-family:var(--font-arabic);}

/* Wave 3 — ServiceLandingShell brand tokens (exact HSL from Lovable index.css).
   Additive: --neu-* (Wave 1) untouched. Used by assets/service-landing.css. */
:root{
  --brand-dark:249 41% 7%;
  --brand-purple:244 61% 67%;
  --brand-lime:73 85% 56%;
  --brand-lime-hover:73 75% 50%;
  --light-purple-bg:247 100% 98%;
  --brand-white:0 0% 100%;
  --body-light:60 3% 36%;
}
