        :root {
            --pxl-black: #030203;
            --pxl-white: #ffffff;
            --pxl-gold: #ae9a64;
            --pxl-muted: #757575;
            --pxl-line: #2c2b2c;
            --pxl-soft: #f4f4f2;
            --header-h: 88px;
            --max: 1350px;
            --font-head: 'Raleway', Arial, Helvetica, sans-serif;
            --font-body: 'Raleway', Arial, Helvetica, sans-serif;
            --font-intro: museo-sans, 'Raleway', Arial, Helvetica, sans-serif;
        }

        * { box-sizing: border-box; }

        html, body { margin: 0; padding: 0; }

        body {
            font-family: var(--font-body);
            font-weight: 500;
            color: var(--pxl-black);
            background: var(--pxl-white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        a { color: inherit; }

        .skip-link {
            position: absolute;
            left: -999px;
            top: 0;
            background: var(--pxl-gold);
            color: var(--pxl-black);
            padding: 10px 16px;
            font-weight: 900;
            z-index: 2000;
        }
        .skip-link:focus { left: 8px; top: 8px; }

        .container {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---------- Header ---------- */
        header.site-header {
            background: var(--pxl-black);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: var(--header-h);
        }
        .logo img {
            height: 46px;
            width: auto;
            display: block;
        }

        /* ---------- Button ---------- */
        .btn {
            display: inline-block;
            font-family: var(--font-head);
            font-weight: 900;
            font-size: 16px;
            line-height: 1.5;
            text-decoration: none;
            border-radius: 4px;
            border: 2px solid var(--pxl-gold);
            padding: 9px 18px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        .btn-cta {
            background: var(--pxl-gold);
            color: var(--pxl-black);
        }
        .btn-cta:hover,
        .btn-cta:focus { background: var(--pxl-white); color: var(--pxl-black); }

        .btn-cta::after {
            content: "";
            position: absolute;
            top: -100%;
            right: -100%;
            width: 50%;
            height: 300%;
            opacity: 0;
            transform: rotate(30deg);
            background: linear-gradient(to right,
                rgba(255,255,255,0.1) 0%,
                rgba(255,255,255,0.3) 50%,
                rgba(255,255,255,0.6) 85%,
                rgba(255,255,255,0.0) 100%);
            animation: pxl-shine 3.5s 3 ease-in-out alternate-reverse;
        }
        .btn-cta:hover::after {
            animation: pxl-shine 3.5s 2 ease-in-out alternate-reverse;
            opacity: 1;
            right: 150%;
        }
        @keyframes pxl-shine { to { opacity: 1; right: 150%; } }

        /* ---------- Main / error block ---------- */
        main { flex: 1 0 auto; }

        .error-section {
            padding: 50px 0 10px;
            background:
                radial-gradient(circle at 50% 0,
                    rgba(174,154,100,0.08) 0%,
                    rgba(174,154,100,0) 55%),
                var(--pxl-white);
        }
        .error-wrap { max-width: 760px; }
        h1 {
            font-family: var(--font-head);
            font-weight: 900;
            font-size: clamp(20px, 6vw, 30px);
            line-height: 1.1;
            margin: 0 0 8px;
            color: var(--pxl-black);
        }
        .lead {
            font-family: var(--font-intro);
            font-weight: 400;
            font-size: clamp(18px, 2.4vw, 24px);
            line-height: 1.4;
            letter-spacing: -0.2px;
            color: var(--pxl-black);
            margin: 0 0 28px;
            max-width: 620px;
        }

        .host-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pxl-soft);
            border-left: 4px solid var(--pxl-gold);
            padding: 12px 18px;
            margin: 0 0 32px;
            max-width: 100%;
            word-break: break-all;
        }
        .host-chip .label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--pxl-muted);
            white-space: nowrap;
        }
        .host-chip .host {
            font-family: var(--font-head);
            font-weight: 900;
            color: var(--pxl-black);
            font-size: 16px;
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 44px;
        }

        /* ---------- Footer ---------- */
        footer.site-footer {
            background: var(--pxl-black);
            color: var(--pxl-white);
            padding: 56px 0 28px;
            flex-shrink: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .footer-logo img { width: 220px; max-width: 60%; height: auto; display: block; margin-bottom: 22px; }
        footer.site-footer address {
            font-style: normal;
            font-family: var(--font-intro);
            font-weight: 400;
            line-height: 1.6;
            color: #d6d6d6;
        }
        footer.site-footer h3 {
            font-family: var(--font-head);
            font-weight: 900;
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 0.5px;
            margin: 0 0 16px;
        }
        footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
        footer.site-footer ul li { margin-bottom: 10px; }
        footer.site-footer ul a {
            font-family: var(--font-intro);
            text-decoration: none;
            color: var(--pxl-white);
            transition: color 0.3s ease-in-out;
            letter-spacing: -0.15px;
        }
        footer.site-footer ul a:hover { color: var(--pxl-muted); }

        .socials { display: flex; gap: 14px; margin-top: 4px; }
        .socials a {
            width: 40px;
            height: 40px;
            border: 2px solid var(--pxl-line);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--pxl-white);
            transition: all 0.3s ease-in-out;
        }
        .socials a:hover { background: var(--pxl-gold); border-color: var(--pxl-gold); color: var(--pxl-black); }
        .socials svg { width: 18px; height: 18px; fill: currentColor; }

        .footer-bottom {
            border-top: 2px solid var(--pxl-line);
            margin-top: 40px;
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-family: var(--font-intro);
            font-size: 14px;
            color: #9a9a9a;
        }
        .footer-bottom a { color: #9a9a9a; text-decoration: none; }
        .footer-bottom a:hover { color: var(--pxl-white); }

        /* ---------- Focus & motion ---------- */
        a:focus-visible, button:focus-visible, .btn:focus-visible {
            outline: 2px dashed var(--pxl-gold);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition-duration: 1ms !important; }
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-links-mid { display: none; }
            .error-section { padding: 48px 0 64px; }
        }