/* =====================================================================
   DIGITECHNOSYS — DESIGN TOKENS (v2)
   Revised palette: brand indigo-blue as the primary color (trust,
   digital, modern), the logo's gold used as a sparing highlight only
   (badges, icons, small accents) instead of covering large areas.
   Dark navy is now reserved for the footer alone — every other
   section uses white or a soft tinted background, so the site reads
   as light, premium and consistent rather than heavy/dark.
   ===================================================================== */

:root{
  /* ---- Brand core -------------------------------------------------- */
  --blue-900:#101a3d;   /* deep text / footer base */
  --blue-800:#16224f;
  --blue-700:#1d2c66;
  --blue-600:#2a3f8f;
  --blue-500:#3757c9;   /* primary brand blue */
  --blue-400:#5b7bdb;
  --blue-100:#eaf0fd;   /* soft blue tint background */

  --gold-600:#b6860a;
  --gold-500:#d9a400;   /* accent — from logo, used sparingly */
  --gold-400:#f0bd3a;
  --gold-100:#fdf3d9;   /* soft gold tint background */

  --gradient-signal: linear-gradient(120deg, var(--gold-500) 0%, var(--gold-400) 30%, var(--blue-500) 100%);
  --gradient-brand: linear-gradient(135deg, var(--blue-600), #040e34);
  --gradient-dark: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-900) 100%);

  /* ---- Neutrals ------------------------------------------------------ */
  --ink:#181c33;        /* headings on light */
  --body:#5c6072;       /* paragraph text */
  --body-soft:#8286a0;
  --bg:#ffffff;
  --bg-soft:#f6f8fc;    /* soft neutral tint */
  --bg-tint:#eef1fb;    /* soft blue tint (was navy-heavy before) */
  --bg-gold-tint:#fdf6e6;
  --line:#e7e9f3;
  --line-dark:rgba(255,255,255,.12);
  --white:#ffffff;

  /* ---- Type ------------------------------------------------------- */
  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:'Inter', sans-serif;

  /* ---- Shape / motion ----------------------------------------------- */
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-pill:999px;
  --ease:cubic-bezier(.4,0,.2,1);
  --shadow-sm:0 4px 14px rgba(20,28,70,.06);
  --shadow-md:0 10px 26px rgba(20,28,70,.09);
  --shadow-lg:0 20px 46px rgba(20,28,70,.13);
  --shadow-gold:0 12px 24px rgba(217,164,0,.25);

  --container:1220px;
  --header-h:80px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}
