/* ── NovaMoney "Living Chain" — shared background layer ──
   Pairs with assets/nova-chain.js. Sits behind page content; the page's
   own :root gold palette drives the rest. Canonical animation source is
   this file + nova-chain.js (index.html keeps an inline copy in sync). */
#bg-chain {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    display: block;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(900px 600px at 78% -8%, rgba(255,140,0,0.10) 0%, transparent 60%),
        radial-gradient(760px 520px at 12% 6%, rgba(245,184,46,0.08) 0%, transparent 62%),
        linear-gradient(180deg, rgba(5,7,13,0.0) 40%, rgba(5,7,13,0.55) 100%);
}
