/* =========================================================================
   IE'27 — Design tokens
   Palette: deep indigo base · light (sky) blue accent · warm sunset gold
   ========================================================================= */
:root{
  /* Core palette */
  --ie-indigo:      #1A2340;   /* deep base */
  --ie-indigo-2:    #242F52;   /* raised indigo */
  --ie-blue:        #4E93C0;   /* light / sky blue accent */
  --ie-blue-soft:   #7FB5D5;   /* pale sky (on-dark text/eyebrows) */

  /* Warmer sunset gold (deepened + warmed from the first pass) */
  --ie-gold:        #D98A2B;   /* warm sunset gold — primary CTA / highlight */
  --ie-gold-soft:   #EBB25C;   /* soft warm gold — on-dark highlights */
  --ie-gold-deep:   #B9701C;   /* pressed / hover-darken */

  /* Neutrals */
  --ie-paper:       #F6F6F1;   /* off-white background */
  --ie-paper-2:     #ECEBE3;   /* warm neutral surface */
  --ie-white:       #FFFFFF;
  --ie-slate:       #586074;   /* muted body text */
  --ie-ink-text:    #1A2340;   /* default text */

  /* Lines & shadows */
  --ie-line:        rgba(26,35,64,.12);
  --ie-line-dark:   rgba(255,255,255,.14);
  --ie-shadow:      0 18px 50px -20px rgba(26,35,64,.35);
  --ie-shadow-sm:   0 8px 24px -12px rgba(26,35,64,.30);

  /* Radius */
  --ie-r:           14px;
  --ie-r-sm:        10px;
  --ie-r-pill:      999px;

  /* Type */
  --ie-font-display: 'Space Grotesk', system-ui, sans-serif;
  --ie-font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --ie-wrap:        1180px;
  --ie-gutter:      28px;
  --ie-header-h:    72px;
}
