/* Auto-extracted chrome CSS from index.html — keeps header/footer/drawer parity */


        /* Block selection on UI chrome only — body text stays selectable so
           users can copy paragraphs, FAQ answers, headings, contact details. */
        .master-navigation-header,
        .master-navigation-header *,
        .mobile-overlay-drawer,
        .mobile-overlay-drawer *,
        .division-node,
        .division-node *,
        .matrix-icon-node,
        .matrix-icon-node *,
        .accordion-order,
        .ic-wrap,
        button,
        svg {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }


        /* All the interactive surfaces that sit above the WebGL canvas
           must re-enable pointer events, since the canvas itself runs
           pointer-events: none so it never steals a click. */
        .hero-view-section,
        .scrolling-content-flow,
        .master-navigation-header,
        .mobile-overlay-drawer,
        .faq-accordion-section,
        .master-production-footer {
            pointer-events: auto;
        }


        /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   §  II.D    HEADER  ·  the floating pill                         ║
           ║                                                                   ║
           ║   A glass-blurred capsule that hovers above the galaxy with       ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   14px of room on every side, so it genuinely floats. Includes    ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   the brand mark, the waffle (divisions launcher), the calm       ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   toggle, and the desktop nav links.                              ║
           ╚═══════════════════════════════════════════════════════════════════╝ */
        .master-navigation-header {
            position: fixed;
            top: 14px;
            left: 14px;
            right: 14px;
            width: auto;
            max-width: calc(var(--container) + 40px);
            margin: 0 auto;
            padding: 14px 22px;
            z-index: 100;
            background: rgba(11, 11, 18, 0.62);
            backdrop-filter: blur(28px) saturate(160%);
            -webkit-backdrop-filter: blur(28px) saturate(160%);
            border: 1px solid var(--line-1);
            border-radius: 18px;
            box-shadow:
                0 18px 48px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        .header-left-cluster {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
        }


        .brand-logo-svg { height: 24px; width: auto; display: block; }

        /* Brand mark anchor: SVG O + OCXLY wordmark, top-left.
           Click anywhere on it to return home. Subtle hover lift gives
           the affordance without disturbing the floating-pill aesthetic. */
        a.brand-logo-container {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.2s ease, transform 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            border-radius: 6px;
        }

        a.brand-logo-container:hover {
            opacity: 0.85;
            transform: translateY(-1px);
        }

        a.brand-logo-container:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 4px;
        }


        .waffle-trigger {
            display: grid;
            grid-template-columns: repeat(3, 4px);
            grid-template-rows: repeat(3, 4px);
            gap: 3px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .waffle-trigger:hover { background: rgba(255, 255, 255, 0.05); }

        .waffle-trigger span { background-color: var(--ink-1); border-radius: 50%; transition: transform 0.3s ease, background-color 0.3s; }

        .waffle-trigger:hover span { transform: scale(1.2); background-color: var(--cyan); }


        .divisions-panel {
            position: absolute;
            top: calc(100% + 22px);
            left: -8px;
            width: 320px;
            background: rgba(11, 11, 18, 0.95);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid var(--line-1);
            border-radius: 14px;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            opacity: 0;
            transform: translateY(-15px);
            pointer-events: none;
            transition: all 0.4s var(--ease-out-cubic);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 255, 0.04);
        }

        .divisions-panel.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }


        .division-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 12px 8px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--ink-1);
            background: transparent;
            transition: background 0.3s, transform 0.2s;
        }

        .division-node:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* Coming-soon variant — disabled button, dimmed, with a violet dot
           in the top-right corner of the icon to signal the future. */
        button.division-node {
            border: none;
            font: inherit;
            cursor: pointer;
        }

        button.division-node.is-soon {
            opacity: 0.45;
            cursor: not-allowed;
            position: relative;
        }

        button.division-node.is-soon:hover {
            background: transparent;
            transform: none;
        }

        button.division-node.is-soon::after {
            content: "";
            position: absolute;
            top: 10px;
            right: 14px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--violet);
            box-shadow: 0 0 6px var(--violet);
        }

        .division-icon-placeholder {
            width: 28px;
            height: 28px;
            margin-bottom: 8px;
            display: block;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--line-2);
            border-radius: 50%;
        }

        .division-node span.node-label {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.7;
            text-align: center;
        }


        .desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }

        .desktop-nav a, .desktop-nav span {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--ink-2);
            transition: color 0.3s;
        }

        .desktop-nav a:hover,
        .desktop-nav a:focus-visible {
            color: #00D4FF;
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
        }

        .desktop-nav span { color: var(--ink-3); }


        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 22px;
            height: 14px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .mobile-menu-toggle span { width: 100%; height: 2px; background-color: var(--ink-1); border-radius: 2px; }


        /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   §  II.J    FOOTER  ·  the goodbye                               ║
           ║                                                                   ║
           ║   Opens with an editorial watermark — the full brand name in      ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   display serif — then drops into the corporate plate: address,   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   social grid, legal links, copyright, version pulse.             ║
           ╚═══════════════════════════════════════════════════════════════════╝ */
        .master-production-footer {
            width: 100%;
            background: rgba(4, 4, 6, 0.88);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border-top: 1px solid var(--line-1);
            padding: 0 0 30px 0;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }


        /* Giant brand signature — editorial watermark across the footer */
        .footer-brand-signature {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 80px var(--pad-h) 60px var(--pad-h);
            border-bottom: 1px solid var(--line-1);
            position: relative;
        }

        .footer-brand-signature .fbs-tag {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 30px;
        }

        .footer-brand-signature .fbs-tag::before {
            content: "";
            width: 36px;
            height: 1px;
            background: var(--cyan);
        }

        .footer-brand-signature h2 {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 8vw, 7rem);
            font-weight: 320;
            line-height: 0.98;
            letter-spacing: -0.045em;
            color: var(--ink-1);
            font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 340;
            padding-top: 0.1em;
        }

        .footer-brand-signature h2 em {
            font-style: italic;
            font-weight: 280;
            font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300, 'WONK' 1;
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        /* The single period that ends "LaboratorY." — cyan, on purpose. */
        .footer-brand-signature .fbs-period { color: var(--cyan); }

        .footer-brand-signature .fbs-lede {
            margin-top: 30px;
            font-family: var(--font-display);
            font-style: italic;
            font-size: clamp(1.05rem, 1.6vw, 1.35rem);
            font-weight: 360;
            line-height: 1.5;
            color: var(--ink-2);
            max-width: 52ch;
            font-variation-settings: 'opsz' 32, 'SOFT' 80, 'wght' 380;
        }


        .footer-internal-grid {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 60px var(--pad-h) 0 var(--pad-h);
            display: flex;
            flex-direction: column;
            gap: 50px;
        }


        .footer-top-row-block {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            gap: 40px;
        }


        .corporate-address-card {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }


        .address-title {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--cyan);
            font-weight: 600;
            margin-bottom: 8px;
        }


        .address-text {
            font-family: var(--font-display);
            font-size: 17px;
            line-height: 1.45;
            color: var(--ink-2);
            letter-spacing: -0.005em;
            font-variation-settings: 'opsz' 32, 'SOFT' 60, 'wght' 400;
        }


        .legal-compliance-matrix {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
            width: 100%;
            border-top: 1px solid var(--line-1);
            padding-top: 36px;
        }


        .legal-link-node {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--ink-3);
            text-decoration: none;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .legal-link-node:hover {
            color: var(--cyan);
        }


        .footer-bottom-baseline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding-top: 24px;
            border-top: 1px solid var(--line-1);
            font-family: var(--font-mono);
        }


        .copyright-disclaimer-text {
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink-4);
            font-weight: 500;
        }


        /* Optional baseline-right meta (added inline via markup) */
        .footer-meta-right {
            display: flex;
            gap: 18px;
            align-items: center;
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink-4);
        }

        .footer-meta-right .fm-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
            animation: pulseDot 2.4s ease-in-out infinite;
        }


        /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   §  II.K.2    MOBILE DRAWER                                      ║
           ║                                                                   ║
           ║   Full-bleed overlay that slides up on the waffle/menu tap.       ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   Contains the calm toggle, navigation, socials, and mail link.   ║
           ╚═══════════════════════════════════════════════════════════════════╝ */
        .mobile-overlay-drawer {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 40px 30px;
            background: rgba(5, 5, 8, 0.99);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-overlay-drawer.is-active { opacity: 1; pointer-events: auto; }

        .drawer-close-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--ink-1);
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }

        .drawer-close-btn:hover { opacity: 1; }

        .drawer-brand-svg { height: 24px; width: auto; }

        .drawer-nav-links { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }

        .drawer-nav-links a,
        .drawer-nav-links span {
            font-size: 24px;
            font-weight: 300;
            color: var(--ink-1);
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        .drawer-nav-links span { opacity: 0.4; }

        .drawer-footer { display: flex; flex-direction: column; gap: 30px; width: 100%; }

        .drawer-mail {
            font-size: 13px;
            color: var(--cyan);
            text-decoration: none;
            letter-spacing: 0.05em;
            align-self: flex-start;
        }


        /* ─── Social grid · 4 columns matches the 12-icon, 3-row visual ─── */
        .social-matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            width: 100%;
            max-width: 320px;
        }

        .matrix-icon-node {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
            padding: 9px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .matrix-icon-node svg {
            width: 14px;
            height: 14px;
            fill: var(--ink-1);
            transition: fill 0.3s, transform 0.3s;
        }

        .matrix-icon-node:hover { transform: translateY(-2px); }


        /* — Per-platform brand colors on hover — */
        .matrix-icon-node[href*="facebook.com"]:hover {
            background: rgba(24, 119, 242, 0.12);
            border-color: #1877F2;
            box-shadow: 0 0 18px rgba(24, 119, 242, 0.35);
        }

        .matrix-icon-node[href*="facebook.com"]:hover svg { fill: #1877F2; }


        .matrix-icon-node[href*="instagram.com"]:hover {
            background: rgba(225, 48, 108, 0.12);
            border-color: #E1306C;
            box-shadow: 0 0 18px rgba(225, 48, 108, 0.4);
        }

        .matrix-icon-node[href*="instagram.com"]:hover svg { fill: #E1306C; }


        .matrix-icon-node[href*="twitter.com"]:hover,
        .matrix-icon-node[href*="x.com"]:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: #ffffff;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
        }

        .matrix-icon-node[href*="twitter.com"]:hover svg,
        .matrix-icon-node[href*="x.com"]:hover svg { fill: #ffffff; }


        .matrix-icon-node[href*="linkedin.com"]:hover {
            background: rgba(10, 102, 194, 0.12);
            border-color: #0A66C2;
            box-shadow: 0 0 18px rgba(10, 102, 194, 0.4);
        }

        .matrix-icon-node[href*="linkedin.com"]:hover svg { fill: #0A66C2; }


        .matrix-icon-node[href*="github.com"]:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: #ffffff;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
        }

        .matrix-icon-node[href*="github.com"]:hover svg { fill: #ffffff; }


        .matrix-icon-node[href*="youtube.com"]:hover {
            background: rgba(255, 0, 0, 0.12);
            border-color: #FF0000;
            box-shadow: 0 0 18px rgba(255, 0, 0, 0.4);
        }

        .matrix-icon-node[href*="youtube.com"]:hover svg { fill: #FF0000; }


        .matrix-icon-node[href*="pinterest.com"]:hover {
            background: rgba(189, 8, 28, 0.12);
            border-color: #BD081C;
            box-shadow: 0 0 18px rgba(189, 8, 28, 0.4);
        }

        .matrix-icon-node[href*="pinterest.com"]:hover svg { fill: #BD081C; }


        .matrix-icon-node[href^="mailto:"]:hover {
            background: rgba(0, 212, 255, 0.10);
            border-color: var(--cyan);
            box-shadow: 0 0 18px rgba(0, 212, 255, 0.4);
        }

        .matrix-icon-node[href^="mailto:"]:hover svg { fill: var(--cyan); }


        .matrix-icon-node[href*="blogspot.com"]:hover {
            background: rgba(245, 124, 0, 0.12);
            border-color: #F57C00;
            box-shadow: 0 0 18px rgba(245, 124, 0, 0.4);
        }

        .matrix-icon-node[href*="blogspot.com"]:hover svg { fill: #F57C00; }


        .matrix-icon-node[href*="reddit.com"]:hover {
            background: rgba(255, 69, 0, 0.12);
            border-color: #FF4500;
            box-shadow: 0 0 18px rgba(255, 69, 0, 0.4);
        }

        .matrix-icon-node[href*="reddit.com"]:hover svg { fill: #FF4500; }


        .matrix-icon-node[href*="medium.com"]:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: #ffffff;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
        }

        .matrix-icon-node[href*="medium.com"]:hover svg { fill: #ffffff; }


        .matrix-icon-node[href*="discord.com"]:hover {
            background: rgba(88, 101, 242, 0.14);
            border-color: #5865F2;
            box-shadow: 0 0 18px rgba(88, 101, 242, 0.45);
        }

        .matrix-icon-node[href*="discord.com"]:hover svg { fill: #5865F2; }


        /* Fallback for any social link not matched above */
        .matrix-icon-node:not([href*="facebook.com"]):not([href*="instagram.com"]):not([href*="twitter.com"]):not([href*="x.com"]):not([href*="linkedin.com"]):not([href*="github.com"]):not([href*="youtube.com"]):not([href*="pinterest.com"]):not([href^="mailto:"]):not([href*="blogspot.com"]):not([href*="reddit.com"]):not([href*="medium.com"]):not([href*="discord.com"]):hover {
            border-color: var(--cyan);
            background: rgba(0, 212, 255, 0.05);
        }

        .matrix-icon-node:not([href*="facebook.com"]):not([href*="instagram.com"]):not([href*="twitter.com"]):not([href*="x.com"]):not([href*="linkedin.com"]):not([href*="github.com"]):not([href*="youtube.com"]):not([href*="pinterest.com"]):not([href^="mailto:"]):not([href*="blogspot.com"]):not([href*="reddit.com"]):not([href*="medium.com"]):not([href*="discord.com"]):hover svg {
            fill: var(--cyan);
        }


        @media (max-width: 480px) {

            .social-matrix-grid { max-width: 260px; }
}


        @media (prefers-reduced-motion: reduce) {

            .pulse-dot, .fm-dot { animation: none; }
}


        /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   §  II.N    CALM MODE  ·  the feature we're proudest of          ║
           ║                                                                   ║
           ║   An infinity-symbol pill in the header. One tap and:             ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║                                                                   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║     · the WebGL galaxy disappears (canvas → display: none)        ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║     · the marquee freezes and hides                               ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║     · every keyframe animation site-wide halts                    ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║     · the horizon glow and pulse dots go dark                     ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║     · transitions shorten to 0.15s — still alive, just calmer     ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║                                                                   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   The content stays. The colors stay. The type stays. What you    ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   lose is motion. What you gain is stillness. That's the trade.   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║                                                                   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   Persists across sessions via localStorage (ocxly_calm_v1) and   ║
           /* ╔═══════════════════════════════════════════════════════════════════╗
           ║   auto-enables on first visit if the OS asks for reduced motion.  ║
           ╚═══════════════════════════════════════════════════════════════════╝ */
        .calm-toggle,
        .access-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--line-1);
            border-radius: 999px;
            padding: 7px 14px 7px 10px;
            cursor: pointer;
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ink-2);
            transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
            -webkit-tap-highlight-color: transparent;
        }

        .calm-toggle:hover,
        .access-toggle:hover {
            background: rgba(0, 212, 255, 0.05);
            border-color: rgba(0, 212, 255, 0.25);
            color: var(--ink-1);
        }

        .calm-toggle-icon {
            width: 22px;
            height: 11px;
            display: block;
            flex-shrink: 0;
        }

        .calm-toggle-label {
            line-height: 1;
        }

        /* Active state — calm mode is ON */
        body.calm-mode .calm-toggle {
            background: linear-gradient(135deg,
                rgba(0, 212, 255, 0.18) 0%,
                rgba(155, 81, 224, 0.18) 100%);
            border-color: rgba(0, 212, 255, 0.45);
            color: var(--ink-1);
            box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2);
        }

        .calm-toggle--drawer {
            font-size: 12px;
            padding: 10px 18px 10px 14px;
            align-self: flex-start;
        }

        .calm-toggle--drawer .calm-toggle-icon { width: 26px; height: 13px; }


        /* — When calm-mode is ON, quiet everything down — */
        body.calm-mode #webgl-canvas {
            visibility: hidden;       /* hide without destroying the WebGL frame */
        }

        body.calm-mode::after {
            opacity: 0.02;            /* grain barely visible */
        }

        body.calm-mode::before {
            display: none;            /* horizon glow off */
        }

        body.calm-mode .editorial-marquee {
            visibility: hidden;       /* hide while preserving animation state */
        }

        body.calm-mode .pulse-dot,
        body.calm-mode .fm-dot,
        body.calm-mode .card-back .card-back-soon::before {
            animation-play-state: paused !important;
            box-shadow: none !important;
        }

        body.calm-mode .hero-foot-rail .scroll-arrow::after {
            animation-play-state: paused !important;
            opacity: 0.45;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        body.calm-mode .card-back .card-back-logo {
            animation-play-state: paused !important;
        }

        body.calm-mode .cookie-icon-wrap::before {
            animation-play-state: paused !important;
        }

        /* Hero entrance choreography → instant in calm mode */
        body.calm-mode .hero-status-strip,
        body.calm-mode .hero-eyebrow,
        body.calm-mode .giant-brand-title,
        body.calm-mode .hero-strap,
        body.calm-mode .hero-right-wing,
        body.calm-mode .hero-foot-rail {
            animation-play-state: paused !important;
            opacity: 1 !important;
            transform: none !important;
            filter: none !important;
        }

        body.calm-mode .reveal-on-scroll {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        /* Card hover effects → toned down, no glow pulsing */
        body.calm-mode .brand-premium-card:hover .card-face {
            box-shadow:
                0 0 0 1px rgba(0, 212, 255, 0.2),
                0 4px 18px rgba(0, 0, 0, 0.3);
        }

        body.calm-mode .card-front .card-scanline {
            display: none;            /* no hover sweep */
        }

        body.calm-mode .brand-premium-card .card-flipper {
            transition: transform 0.3s ease;   /* still flips, but quickly without the long ease */
        }

        /* Mute every other transition to keep things steady */
        body.calm-mode * {
            transition-duration: 0.15s !important;
        }

        body.calm-mode .matrix-icon-node:hover {
            box-shadow: none !important;
            transform: none !important;
        }

        /* Subtle banner that confirms calm mode is on */
        body.calm-mode .master-navigation-header::after {
            content: "CALM MODE ACTIVE";
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-mono);
            font-size: 9px;
            letter-spacing: 0.24em;
            color: var(--cyan);
            opacity: 0.6;
            white-space: nowrap;
            pointer-events: none;
        }


        /* Hide the native cursor only where it's safe — never on form fields */
        body.has-custom-cursor,
        body.has-custom-cursor a,
        body.has-custom-cursor button,
        body.has-custom-cursor [role="button"],
        body.has-custom-cursor .brand-premium-card,
        body.has-custom-cursor .division-node,
        body.has-custom-cursor summary,
        body.has-custom-cursor label { cursor: none; }


        /* Calm mode + reduced motion — strip the whole layer back */
        body.calm-mode .ocxly-grain { animation: none; opacity: 0.025; }

        body.calm-mode .ocxly-cursor-dot,
        body.calm-mode .ocxly-cursor-ring { display: none; }

        body.calm-mode .mask-line > .mask-inner { transform: none !important; transition: none; }

        body.calm-mode #ocxly-scroll-progress { display: none; }

        body.calm-mode .brand-premium-card::after { display: none; }


    
        /* ╔════════════════════════════════════════════════════════════════════╗
           ║   §  NAV CTA + NEURAL PLAYGROUND styles                            ║
           ╚════════════════════════════════════════════════════════════════════╝ */

        /* — header CTA pill — */
        .nav-cta {
            display: inline-flex; align-items: center; gap: 7px;
            font-family: var(--font-mono); font-size: 11px;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: #050508 !important; font-weight: 700;
            background: var(--grad-brand);
            padding: 9px 18px; border-radius: 999px;
            transition: opacity 0.25s ease, transform 0.25s var(--ease-out-cubic);
        }

        .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: #050508 !important; }

        @media (max-width: 992px) {
 .nav-cta { display: none; }
}

        body.calm-mode #np-canvas { display: none; }

        body.calm-mode .np-calm-note { display: flex; }


    
        /* — calm toggle, compact header instance (mobile only) — */
        .calm-toggle--header { display: none; }

        .calm-toggle--header .calm-toggle-label { display: none; }

        /* round icon button — matches the circular waffle launcher */
        .calm-toggle--header {
            width: 44px; height: 44px; padding: 0;
            border-radius: 50%;
            align-items: center; justify-content: center;
        }

        .calm-toggle--header .calm-toggle-icon { width: 24px; height: 12px; }

        @media (max-width: 992px) {

            .calm-toggle--header {
                display: inline-flex;
                /* Pin it exactly like the hamburger (absolute, right:22px, 22px wide):
                   right edge at 64px leaves a guaranteed 20px gap — independent of
                   header padding or flex flow. */
                position: absolute;
                right: 64px;
                top: 50%;
                transform: translateY(-50%);
            }
}

        .divisions-panel {
            background: linear-gradient(165deg, rgba(18, 20, 34, 0.55), rgba(9, 10, 18, 0.48));
            backdrop-filter: blur(30px) saturate(160%);
            -webkit-backdrop-filter: blur(30px) saturate(160%);
            border-color: transparent;                /* ring below replaces it */
            box-shadow:
                0 26px 70px rgba(0, 0, 0, 0.66),
                0 0 46px rgba(0, 212, 255, 0.10),
                0 0 90px rgba(155, 81, 224, 0.09);
        }

        .divisions-panel::before {                     /* cyan→violet glow ring */
            content: "";
            position: absolute; inset: -1px;
            border-radius: inherit;
            padding: 1px;
            background: conic-gradient(from var(--dp-angle, 0deg),
                rgba(0, 212, 255, 0.9), rgba(111, 230, 255, 0.45),
                rgba(155, 81, 224, 0.9), rgba(0, 212, 255, 0.9));
            -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
            -webkit-mask-composite: xor;
                    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
                    mask-composite: exclude;
            opacity: 0.85;
            pointer-events: none;
        }

        .divisions-panel::after {                      /* glass top sheen */
            content: "";
            position: absolute; inset: 0 0 auto 0;
            height: 44%;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
            pointer-events: none;
        }

        .divisions-panel.is-active::before { animation: dpSpin 6s linear infinite; }

        body.calm-mode .divisions-panel.is-active::before,
        body.calm-mode .divisions-panel::before { animation: none; }

        @media (prefers-reduced-motion: reduce) {

            .divisions-panel.is-active::before { animation: none; }
}


        /* — footer constellation canvas — */
        .ftr-particles {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;                      /* links stay clickable */
        }

        .master-production-footer > *:not(.ftr-particles) { position: relative; z-index: 1; }

        body.calm-mode .ftr-particles { display: none; }


    
        /* ╔════════════════════════════════════════════════════════════════════╗
           ║   §  GLASS WAFFLE v2 + FLOATING DRAWER WINDOW + DYSLEXIA MODE      ║
           ╚════════════════════════════════════════════════════════════════════╝ */

        /* — waffle panel: less transparent, brighter travelling border — */
        .divisions-panel {
            background: linear-gradient(165deg, rgba(16, 18, 30, 0.86), rgba(8, 9, 16, 0.82)) !important;
            backdrop-filter: blur(34px) saturate(170%);
            -webkit-backdrop-filter: blur(34px) saturate(170%);
        }

        .divisions-panel::before {                 /* brighter, thicker ring */
            inset: -1.5px;
            padding: 1.5px;
            background: conic-gradient(from var(--dp-angle, 0deg),
                #00D4FF, #6FE6FF, #9B51E0, #00D4FF) !important;
            opacity: 1 !important;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
        }

        .divisions-panel.is-active::before { animation: dpSpin 4.5s linear infinite; }


        /* the overlay becomes a dimmed, blurred SCRIM that fully hides the page */
        .mobile-overlay-drawer {
            justify-content: flex-start !important;   /* top-aligned: top stays reachable when panel is tall (landscape) */
            align-items: center !important;            /* horizontal centre */
            padding: clamp(16px, 5vh, 48px) 16px !important;
            background: rgba(3, 4, 8, 0.86) !important;
            backdrop-filter: blur(16px) !important;
            -webkit-backdrop-filter: blur(16px) !important;
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch;
        }


        /* the actual floating frosted card */
        .drawer-panel {
            position: relative;
            width: 100%; max-width: 460px;
            margin: 0;                 /* centring handled by the scrim's align-items */
            flex: 0 0 auto;            /* never shrink — full height scrolls within the scrim */
            display: flex; flex-direction: column; gap: 26px;
            padding: 22px 22px 28px;
            border-radius: 26px;
            background: linear-gradient(165deg, rgba(17, 19, 32, 0.82), rgba(9, 10, 18, 0.78));
            box-shadow:
                0 30px 90px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(0, 212, 255, 0.10),
                0 0 90px rgba(155, 81, 224, 0.08);
            animation: drawerCardIn 0.5s var(--ease-out-cubic) both;
        }

        .drawer-panel::before {                    /* travelling cyan→violet border */
            content: "";
            position: absolute; inset: -1.5px;
            border-radius: inherit;
            padding: 1.5px;
            background: conic-gradient(from var(--dw-angle, 0deg),
                #00D4FF, #6FE6FF, #9B51E0, #00D4FF);
            -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
            -webkit-mask-composite: xor;
                    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
                    mask-composite: exclude;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.45));
            animation: dwSpin 5s linear infinite;
            pointer-events: none;
        }

        .drawer-panel::after {                     /* glass top sheen */
            content: "";
            position: absolute; inset: 0 0 auto 0; height: 38%;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
            pointer-events: none;
        }

        body.calm-mode .drawer-panel::before { animation: none; }

        @media (prefers-reduced-motion: reduce) {
 .drawer-panel::before, .drawer-panel { animation: none; }
}


        /* top bar */
        .drawer-topbar { display: flex; align-items: center; justify-content: space-between; }

        .drawer-topbar-left { display: flex; align-items: center; gap: 10px; }

        .drawer-close-btn {
            display: inline-flex !important; align-items: center; gap: 9px;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid var(--line-1) !important;
            border-radius: 999px !important;
            padding: 9px 16px 9px 13px !important;
            color: var(--ink-2) !important;
            font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
            text-transform: uppercase; cursor: pointer; opacity: 1 !important;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        .drawer-close-btn:hover { border-color: var(--cyan) !important; color: var(--ink-1) !important; }

        .dcb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); flex-shrink: 0; }

        .dcb-divider { width: 1px; height: 12px; background: var(--line-1); }

        .drawer-icon-btn {
            width: 40px; height: 40px; flex-shrink: 0;
            display: inline-flex; align-items: center; justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--line-1); border-radius: 50%;
            color: var(--ink-2); cursor: pointer;
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .drawer-icon-btn:hover { border-color: var(--cyan); color: var(--ink-1); }

        .drawer-icon-btn svg { width: 18px; height: 18px; }

        .drawer-icon-btn .dmb-off { display: none; }

        .drawer-icon-btn.is-muted .dmb-on { display: none; }

        .drawer-icon-btn.is-muted .dmb-off { display: block; }

        .drawer-icon-btn.is-muted { color: var(--ink-3); }

        .drawer-lang-btn {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--line-1); border-radius: 999px;
            padding: 8px 14px; color: var(--ink-2); cursor: pointer;
            font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .drawer-lang-btn:hover { border-color: var(--cyan); color: var(--ink-1); }

        .drawer-lang-btn svg { width: 16px; height: 16px; }


        /* accessibility modes row */
        .drawer-modes { display: flex; gap: 14px; }

        .drawer-modes .calm-toggle--drawer,
        .drawer-modes .access-toggle--drawer {
            flex: 1; justify-content: center; align-self: stretch;
            padding: 11px 14px; font-size: 12px;
        }

        .access-toggle--drawer { /* inherits .calm-toggle base look */ }

        .access-toggle--drawer .dys-icon { width: 20px; height: 20px; }

        body.dyslexia-mode .access-toggle--drawer {
            background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(155,81,224,0.18));
            border-color: rgba(0,212,255,0.45);
            color: var(--ink-1);
            box-shadow: 0 0 0 1px rgba(0,212,255,0.2);
        }


        /* drawer nav + footer spacing inside the card */
        .drawer-nav-links { margin-top: 4px !important; gap: 18px !important; }

        .drawer-footer { gap: 22px !important; }


        /* — dyslexia-friendly reading mode (genuinely functional) — */
        body.dyslexia-mode p,
        body.dyslexia-mode li,
        body.dyslexia-mode blockquote,
        body.dyslexia-mode .drawer-nav-links a,
        body.dyslexia-mode .fbs-lede,
        body.dyslexia-mode figcaption {
            letter-spacing: 0.045em !important;
            word-spacing: 0.14em !important;
            line-height: 1.85 !important;
            font-weight: 400 !important;
        }

        body.dyslexia-mode p,
        body.dyslexia-mode li { text-align: left !important; }

        body.calm-mode .np-scroll-cue svg { animation: none; }
   /* match icon colour */

        /* desktop dyslexia pill sits beside the calm pill */
        .access-toggle--desk .dys-icon { width: 20px; height: 20px; }

        body.dyslexia-mode .access-toggle--desk {
            background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(155,81,224,0.18));
            border-color: rgba(0,212,255,0.45);
            color: var(--ink-1);
            box-shadow: 0 0 0 1px rgba(0,212,255,0.2);
        }