/* Conaer brand tokens. One palette for the Alternate Engine, the CA game and
   the dispatch trainer, so the three read as one company.

   Sampled from the logo: bone #E9E6E1, navy #2B475C, sage #5E8A75. Light is
   the brand default and matches the mark; dark is the ops theme, kept because
   a dispatcher on a night shift needs it.

   Anything that consumes these should read the var, never the literal, so a
   palette change stays a one-file change. */
/* Type is part of the brand and was being redefined in three files at once.
   Exactly two families: Inter for everything, JetBrains Mono for coded
   aeronautical data only. See CONAER_STANDARD.md section 5. */
:root {
  --font-ui:   'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

:root {
  --brand-bone:        #E9E6E1;
  --brand-bone-soft:   #F0ECE6;
  --brand-navy:        #2B475C;
  --brand-navy-soft:   #344E62;
  --brand-navy-deep:   #1B2C3E;
  --brand-sage:        #5E8A75;
  --brand-sage-bright: #7BA890;
  --brand-sage-deep:   #3F6A57;
}
:root {
  /* light, the brand default */
  --bg:            var(--brand-bone);
  --surface:       #FFFFFF;
  --surface-sunk:  var(--brand-bone-soft);
  --line:          #D6D2CA;
  --text:          var(--brand-navy);
  --text-muted:    #6B7C88;
  --accent:        var(--brand-sage);
  --accent-hi:     #4A7561;
  --on-accent:     var(--brand-bone);
  --theme-color:   var(--brand-bone);
}
[data-theme="dark"] {
  --bg:            #141F2E;
  --surface:       #1B2C3E;
  --surface-sunk:  #101A26;
  --line:          #2C4257;
  --text:          #E9E6E1;
  --text-muted:    #93A3B3;
  --accent:        #7BA890;
  --accent-hi:     #93BFA6;
  --on-accent:     #141F2E;
  --theme-color:   #1B2C3E;
}
