        /* ── Footer (frontpage) ── */
        .footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            position: sticky;
            bottom: 0;
            z-index: 1;
        }

        .footer .content-width {
            max-width: 1600px;
            margin: 0 auto;
            padding: 4rem 4rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .footer-hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
        }

        .footer-statement {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 5vw, 3.4rem);
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #ffffff;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 0.75rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: auto;
            font-size: 1rem;
            padding-top: 0;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            color: var(--footer-text-light);
        }

        .footer-left a {
            color: var(--footer-text-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-left a:hover {
            color: var(--footer-text);
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.4rem;
        }

        .footer-nav a {
            font-weight: 400;
            color: var(--footer-text-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--footer-text);
        }

        .footer-status {
            margin-top: 3rem;
            margin-left: -6px;
        }

        /* ── Footer CTA rotating glow ── */
        @property --glow-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        .footer .cta-btn-outline {
            border: 1px solid transparent;
            background:
                linear-gradient(var(--footer-bg), var(--footer-bg)) padding-box,
                conic-gradient(
                    from var(--glow-angle),
                    rgba(255, 255, 255, 0.15) 0%,
                    rgba(255, 255, 255, 0.5) 8%,
                    rgba(255, 255, 255, 0.15) 16%,
                    rgba(255, 255, 255, 0.15) 100%
                ) border-box;
            animation: glowRotate 5s linear infinite;
        }

        .footer .cta-btn-outline:hover {
            background:
                linear-gradient(var(--footer-bg), var(--footer-bg)) padding-box,
                conic-gradient(
                    from var(--glow-angle),
                    rgba(255, 255, 255, 0.2) 0%,
                    rgba(255, 255, 255, 0.8) 8%,
                    rgba(255, 255, 255, 0.2) 16%,
                    rgba(255, 255, 255, 0.2) 100%
                ) border-box;
        }

        @keyframes glowRotate {
            to { --glow-angle: 360deg; }
        }

        /* ── Responsive (frontpage footer) ── */
        @media (max-width: 768px) {
            .footer .content-width {
                padding: 1.5rem;
            }

            .footer-hero {
                padding: 1.5rem 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                font-size: 0.95rem;
            }

            .footer-nav {
                align-items: flex-start;
                order: -1;
            }

            .footer-status {
                margin-top: 1.5rem;
            }

            .footer-status iframe {
                width: 200px;
            }
        }

