/* ==========================================================================
   Legacy page bridge
   --------------------------------------------------------------------------
   The pages under resources/views/pages/*.blade.php (free-static-hosting,
   ai-hosting, jobs, transfers, …) are built with the older markup vocabulary
   (.page-hero, .section, .compare-table, .btn-primary …) which lives in
   frii-modern.css. The Dunamis layout doesn't load that sheet, so those pages
   rendered unstyled.

   Those pages now load: frii-modern.css → frii-fixes.css → THIS file.

   Rather than restyle every legacy rule, this file simply re-points that
   sheet's own custom properties at the Dunamis palette — so the legacy layout
   is restored while the colours stay on-brand (blue, never the old purple).
   Keep this file loaded LAST so these values win.
   ========================================================================== */

:root {
  /* Brand — was #864ffe purple, now the Dunamis blue */
  --brand-magenta:      #2540d9;
  --brand-magenta-h:    #1c34b8;
  --brand-magenta-l:    #e9edff;
  --brand-magenta-tint: #e9edff;
  --brand:              #2540d9;
  --brand-h:            #1c34b8;
  --brand-l:            #e9edff;
  --brand-tint:         #e9edff;
  --brand-400:          #5b76ee;
  --grad-brand: linear-gradient(98deg, #5b76ee 0%, #2540d9 55%, #151e74 100%);

  /* Dark/navy surfaces used by legacy heroes */
  --brand-navy:      #0d1233;
  --brand-navy-2:    #151e74;
  --brand-navy-3:    #1f2a63;
  --brand-navy-tint: #eef1fb;
  --grad-hero: linear-gradient(160deg, #151e74 0%, #0d1233 100%);

  /* Text + surfaces — matched to the Dunamis theme */
  --ink:       #0d1233;
  --ink-2:     #4a5278;
  --muted:     #828aac;
  --surface:   #ffffff;
  --surface-2: #eef1fb;
  --surface-3: #e9edff;
  --line:      #e4e8f4;
  --line-2:    #d7dde5;
}

/* The legacy sheet sets a global `a { color: var(--brand-magenta) }`. The
   Dunamis header/footer manage their own link colours — keep them intact. */
.dsh-header a,
.dsh-header a:hover,
.dsh-footer a,
.dsh-footer a:hover { color: inherit; opacity: 1; }

/* The legacy sheet's `img, svg { display:block }` collapses the inline icons
   in the Dunamis nav/footer; restore them. */
.dsh-header svg,
.dsh-footer svg { display: inline-block; }
