/* Static-export fixes for the Helpbase marketing site.
   Loaded after the Webflow stylesheets so these rules win.

   Background: the Webflow export ships `.page-wrapper` with an inline
   `display:none;opacity:0` and relies on a Webflow IX2 "page load"
   interaction to reveal it. That reveal action does not survive the
   export — the preloader hides itself but the content is never shown,
   leaving a blank page. The inline style is stripped from the HTML, and
   the preloader is disabled here so the site renders immediately and
   does not depend on JavaScript to become visible. */

.loader-wrap {
  display: none !important;
}

/* `!important` is required here: the IX2 "page load" interaction re-applies
   `display:none; opacity:0` as an inline style at runtime, and an inline
   declaration outranks a normal rule. An `!important` rule outranks both. */
.page-wrapper {
  display: block !important;
  opacity: 1 !important;
}
