/* Limit repaint work to the frontend masthead, never the admin interface. */
header:has(> .max-w-7xl) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition-property: background-color, border-color, box-shadow !important;
  transition-duration: 200ms !important;
}

/* Keep the same accent glows without large offscreen blur surfaces. */
.min-h-screen:has(> .infr-home-hero) .pointer-events-none:is([class~="blur-[120px]"], [class~="blur-[80px]"]) {
  filter: none !important;
  background: radial-gradient(circle, var(--infr-glow, var(--theme-accent)) 0%, transparent 70%) !important;
}
.min-h-screen:has(> .infr-home-hero) .pointer-events-none[style*="--theme-accent2"] {
  --infr-glow: var(--theme-accent2);
}

/* Shared rail: the contact button ends exactly above the statistics card. */
.infr-home-actions { width: 100%; max-width: 790px; }
.infr-home-hero .mt-16.grid { width: 100%; max-width: 790px; }

@media (prefers-reduced-motion: reduce) {
  header:has(> .max-w-7xl) { transition: none !important; }
}
