/* v2 PageBackground — no video, no blobs. Just a soft light gradient
   with a faint amber halo near the top so the hero has a hint of warmth. */

function PageBackground() {
  return (
    <div
      className="fixed inset-0 -z-10 pointer-events-none"
      aria-hidden="true"
      style={{
        background:
          'radial-gradient(60% 40% at 50% -5%, rgba(254,243,199,0.55), transparent 65%),' +
          'linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%)',
      }}
    />
  );
}

Object.assign(window, { PageBackground });
