/* Landing-only Font Awesome subset. fa-landing.woff2 is subset from
   fa-solid-900.woff2 (154 KiB -> 1.5 KiB) and carries ONLY the icons
   below. If a landing page gains an icon: add its rule here, add the
   codepoint to the subset command, and regenerate the font:

   python3 -m fontTools.subset priv/static/fonts/fa-solid-900.woff2 \
     --unicodes=F0C9,F49E,F00C,F078,F058,F56E,F74D,F023,F3ED,E06C \
     --flavor=woff2 --output-file=priv/static/fonts/fa-landing.woff2

   The app keeps the full fontawesome.css; this file is for the marketing
   pages, which load it async (icons are decorative, swap is fine). */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/fa-landing.woff2) format("woff2");
}
.fa,
.fa-solid,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
}
.fa:before,
.fa-solid:before,
.fas:before {
  content: var(--fa);
}
.fa-bars { --fa: "\f0c9"; }
.fa-box-open { --fa: "\f49e"; }
.fa-check { --fa: "\f00c"; }
.fa-chevron-down { --fa: "\f078"; }
.fa-circle-check { --fa: "\f058"; }
.fa-file-export { --fa: "\f56e"; }
.fa-flag-usa { --fa: "\f74d"; }
.fa-lock { --fa: "\f023"; }
.fa-shield-halved { --fa: "\f3ed"; }
.fa-shield-virus { --fa: "\e06c"; }
