/* Blueprint grid overlay — same motif as the homepage header, a faint white
   grid on the navy footer, faded out with a mask so it stays subtle. */
section.footer {
    overflow: hidden;
}

section.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, rgba(0, 0, 0, 0.3) 65%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 0%, #000 0%, rgba(0, 0, 0, 0.3) 65%, transparent 100%);
}

section.footer .container {
    position: relative;
    z-index: 1;
}

section.footer div.version{
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
}

section.footer div.version span{
    font-size: 9px !important;
}