/*==============================================================================
  critical-intro.css — Home first-visit FOUC guard (external, loads early)
  ----------------------------------------------------------------------------
  Linked from templates/index.html extra_head BEFORE the main stylesheet stack
  so the black intro backdrop applies before theme modules finish loading.
  Safe on all pages: rules only apply when <html> has .intro-pending.
==============================================================================*/

html.intro-pending {
  background: #050505;
}

html.intro-pending body {
  background: #050505;
  overflow: hidden;
}

html.intro-pending .site-header,
html.intro-pending .hero-content,
html.intro-pending .trusted-logos,
html.intro-pending .hero-section__visual,
html.intro-pending .hero-section__collage {
  opacity: 0;
}
