@layer design-system {
/* corp-web — owned style overrides on top of the Webflow base.
   Emitted into @layer design-system (higher priority than @layer webflow), so
   these rules win the cascade WITHOUT !important — even against higher-specificity
   Webflow rules. This is the per-project tweak surface; never edit the export CSS.

   Seed rule (moved out of the importer): restore the gradient box fill the Webflow
   export drops. The gradient lives only on the hidden ".desktop" variant; visible
   split words render solid. Base rule = per-word gradient (correct for single-word
   boxes like agents "AGENTS"). For the multi-word home box ("BUILT FOR AGENTS",
   wrapped in .div-block-43 — home only) a per-word gradient steps at the seams, so
   run ONE continuous gradient on the wrapper + clear the words (intra-layer
   specificity makes the nested rule win). */
.h1-hero-2.blue:not(.desktop) {
  background-image: linear-gradient(90deg, var(--main-blue), var(--bright-blue));
}
.div-block-43 {
  background-image: linear-gradient(90deg, var(--main-blue), var(--bright-blue));
}
.div-block-43 .h1-hero-2.blue:not(.desktop) {
  background-image: none;
  background-color: transparent;
}

}
