
/* === Bitwave explicit backgrounds (override) === */
/* Turn off nth-of-type backgrounds to avoid mismatches */
.section { background-image: none !important; background-color: transparent; }

/* Explicit classes for clarity & control */
.bg-wave {
  background-image:
    var(--bw-wave),
    url('/assets/bg/bitwave-bg-wave.svg'),
    url('/assets/bg/bitwave-bg-wave.webp') !important;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.bg-grad {
  background-image:
    var(--bw-gradient),
    url('/assets/bg/bitwave-bg-gradient.svg'),
    url('/assets/bg/bitwave-bg-gradient.webp') !important;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.section.hero { background-position: top center !important; }
/* Ensure minimum height so background is visible */
.section { min-height: 420px; }
