/* Palette sampled directly from the SS AirTech logo, product catalogue sheet
   and the submersible-pump flier. Navy is the brand; green is the "sustain"
   half of OPTIMIZE · SAVE · SUSTAIN; red and gold are the swoosh + offer colours. */
:root{
  /* Navy — primary */
  --navy-950:#001233;
  --navy-900:#001B4D;
  --navy-800:#002060;
  --navy-700:#003080;
  --navy-600:#0B3F9E;
  --navy-500:#1E56C4;
  --blue-400:#3E86E0;
  --blue-300:#7FB2EE;
  --blue-200:#B9D3F4;
  --blue-100:#DCE7F8;
  --blue-50:#F0F5FC;

  /* Green — sustainability / eco */
  --green-800:#00480C;
  --green-700:#0F6B12;
  --green-600:#2E8B14;
  --green-500:#469614;
  --green-400:#6EB40A;
  --green-100:#DCEFCE;
  --green-50:#EFF7E8;

  /* Signal */
  --red-600:#BE0014;
  --red-500:#DB1B2E;
  --red-50:#FDECEE;
  --gold-500:#FCC000;
  --gold-400:#FFD633;
  --gold-50:#FFF6DB;

  /* Neutral / steel */
  --white:#FFFFFF;
  --gray-25:#FAFBFC;
  --gray-50:#F4F6F9;
  --gray-100:#E8ECF2;
  --gray-200:#D5DBE4;
  --gray-300:#B0B8C4;
  --gray-400:#8A929E;
  --gray-500:#667085;
  --gray-600:#4A5262;
  --gray-700:#333A47;
  --gray-800:#1F2530;
  --gray-900:#0F1522;
  --steel-300:#B0B0B0;
  --steel-500:#909090;

  /* ── Semantic aliases ───────────────────────────────── */
  --brand-primary:var(--navy-700);
  --brand-primary-hover:var(--navy-800);
  --brand-primary-active:var(--navy-900);
  --brand-secondary:var(--green-600);
  --brand-secondary-hover:var(--green-700);
  --brand-accent:var(--red-600);
  --brand-highlight:var(--gold-500);

  --text-heading:var(--navy-800);
  --text-body:var(--gray-700);
  --text-muted:var(--gray-500);
  --text-on-dark:var(--white);
  --text-on-dark-muted:var(--blue-200);
  --text-link:var(--navy-700);
  --text-link-hover:var(--green-600);

  --surface-page:var(--white);
  --surface-subtle:var(--gray-50);
  --surface-card:var(--white);
  --surface-tint:var(--blue-50);
  --surface-inverse:var(--navy-800);
  --surface-band:var(--navy-700);

  --border-subtle:var(--gray-100);
  --border-default:var(--gray-200);
  --border-card:var(--blue-100);
  --border-strong:var(--navy-700);

  --status-success:var(--green-600);
  --status-success-bg:var(--green-50);
  --status-warning:var(--gold-500);
  --status-warning-bg:var(--gold-50);
  --status-danger:var(--red-600);
  --status-danger-bg:var(--red-50);
  --status-info:var(--navy-600);
  --status-info-bg:var(--blue-50);

  /* Gradients lifted from the catalogue's angled navy banners */
  --gradient-band:linear-gradient(100deg,var(--navy-900) 0%,var(--navy-700) 55%,var(--navy-600) 100%); /* @kind color */
  --gradient-eco:linear-gradient(100deg,var(--green-700) 0%,var(--green-500) 100%); /* @kind color */
  --gradient-photo-scrim:linear-gradient(180deg,rgba(0,27,77,0) 0%,rgba(0,27,77,.78) 100%); /* @kind color */
}