/* ============================================================
   CyberDefense Consulting LLC — brand primitives
   ------------------------------------------------------------
   THE ONLY FILE IN THIS REPO THAT MAY CONTAIN A HEX LITERAL.

   Page stylesheets (index/terms/thanks/privacy) keep their own
   :root, but map role names to these primitives instead of
   restating values. That is deliberate: the dark homepage and the
   light legal/confirmation pages genuinely need different role
   mappings, while the values themselves must exist once.

   Loaded via its own <link> BEFORE the page stylesheet on every
   page. Not @import (that costs a render-blocking round trip) and
   never inline (the CSP in _headers sets style-src 'self' with no
   unsafe-inline, so an inline <style> is blocked at the browser).

   Dropped as unused when this file was created 2026-08-01:
     --navy-card  #0A1929   --gold-hover #B07F22
     --white-pure #FFFFFF   --navy-mid   #162C47
   Values recorded here so they are not lost; re-add as primitives
   if a component ever needs them.
   ============================================================ */

:root {
  /* --- navy surfaces, darkest to lightest --- */
  --c-navy-deep:    #071525;  /* page background, header, hero, trust bar */
  --c-navy:         #0D1F35;  /* services section, ink on gold fills */
  --c-navy-light:   #112A45;  /* raised surface */
  --c-navy-input:   #162D4A;  /* form field background */
  --c-navy-raised:  #1C2A41;  /* featured service card */
  --c-navy-mid:     #162C47;  /* re-added 2026-08-05: light end of the /brief
                                 episode-poster gradient. Was dropped as unused
                                 when this file was created. */

  /* --- accents. gold is the only action color on this site. --- */
  --c-gold:         #C8922A;  /* all CTAs, links, dividers, active borders */
  --c-gold-light:   #E0B44D;  /* hover on gold */
  --c-teal:         #3EDBB5;  /* third stat card, confirmation success mark */
  --c-blue-muted:   #8FA4C8;  /* second stat card */

  /* --- neutrals --- */
  --c-slate:        #8A9BB0;  /* secondary text on navy. passes AA. */
  --c-slate-dark:   #4A5E73;  /* paragraph copy on light */
  --c-ink-cool:     #D6E3FF;  /* body ink on the dark homepage */
  --c-white:        #FFFFFF;
  --c-off-white:    #F7F8FA;  /* recessed area behind light cards */
  --c-text-dark:    #1A2B3C;  /* body text on light */
  --c-border-light: #D8E2EE;  /* hairline around cards on light backgrounds */

  /* --- alpha derivations --- */
  --c-border-dim:   rgba(200, 146, 42, 0.15);   /* gold hairline on dark */
  --c-ink-cool-72:  rgba(214, 227, 255, 0.72);  /* supporting copy on dark */
  --c-ink-cool-45:  rgba(214, 227, 255, 0.45);  /* meta, stat labels on dark */
  --c-gold-22:      rgba(200, 146, 42, 0.22);   /* gold wash over navy */
  --c-navy-06:      rgba(13, 31, 53, 0.06);     /* card shadow on light */
}
