        /* ── Concept 2: Live Flow Dashboard ── */
        .dash-outer {
            position: absolute;
            top: 1.2rem;
            right: 1rem;
            left: 0.5rem;
            bottom: 1rem;
            border-radius: 28px;
            background: #09090c;
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(10,10,14,0.30), 0 0 0 1px rgba(156,107,255,0.10);
            display: flex;
            flex-direction: column;
            padding: 1.6rem 1.6rem 1.4rem;
            font-family: "Plus Jakarta Sans", sans-serif;
            color: #ffffff;
        }

        /* Header row */
        .dash-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.4rem;
        }
        .dash-title {
            font-family: "Space Grotesk", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #dfff16;
        }
        .dash-live {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .dash-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3dff8f;
            box-shadow: 0 0 6px #3dff8f;
            animation: dashDotPulse 1.8s ease-in-out infinite;
        }
        @keyframes dashDotPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.45; transform: scale(0.75); }
        }

        /* Big counter */
        .dash-counter-row {
            display: flex;
            align-items: flex-end;
            gap: 0.75rem;
            margin-bottom: 1.2rem;
        }
        .dash-count {
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(2.6rem, 6vw, 3.4rem);
            font-weight: 700;
            letter-spacing: -0.06em;
            line-height: 1;
            color: #ffffff;
            transition: color 0.2s;
        }
        .dash-count.bump {
            color: #dfff16;
        }
        .dash-counter-label {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.42);
            padding-bottom: 0.3rem;
            line-height: 1.3;
        }

        /* Stats row */
        .dash-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .dash-stat-card {
            padding: 0.7rem 0.8rem;
            border-radius: 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
        }
        .dash-stat-val {
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: #dfff16;
        }
        .dash-stat-lbl {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.38);
            margin-top: 0.15rem;
        }

        /* Divider */
        .dash-divider {
            height: 1px;
            background: rgba(255,255,255,0.07);
            margin-bottom: 0.9rem;
        }

        /* Feed */
        .dash-feed-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 0.55rem;
        }
        .dash-feed {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            min-height: 0;
        }
        .dash-feed-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 0.8rem;
            border-radius: 10px;
            background: rgba(255,255,255,0.04);
            font-size: 0.88rem;
            color: rgba(255,255,255,0.75);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: translateY(0);
            opacity: 1;
        }
        .dash-feed-item.entering {
            opacity: 0;
            transform: translateY(-8px);
        }
        .dash-feed-item .fi-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            flex-shrink: 0;
        }
        .dash-feed-item .fi-icon.done {
            background: rgba(61,255,143,0.15);
            color: #3dff8f;
        }
        .dash-feed-item .fi-text {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .dash-feed-item .fi-time {
            font-size: 0.76rem;
            color: rgba(255,255,255,0.28);
            flex-shrink: 0;
        }

        /* Currently processing bar */
        .dash-processing {
            margin-top: 0.7rem;
            padding: 0.6rem 0.8rem;
            border-radius: 10px;
            background: rgba(156,107,255,0.08);
            border: 1px solid rgba(156,107,255,0.18);
        }
        .dash-proc-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.45rem;
        }
        .dash-proc-label {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.55);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 80%;
        }
        .dash-proc-pct {
            font-size: 0.82rem;
            font-weight: 600;
            color: #9c6bff;
            flex-shrink: 0;
        }
        .dash-prog-track {
            height: 4px;
            border-radius: 4px;
            background: rgba(156,107,255,0.15);
            overflow: hidden;
        }
        .dash-prog-fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #9c6bff, #dfff16);
            width: 0%;
            transition: width 0.08s linear;
        }

        .dash-disclaimer {
            margin: 0.65rem 0 0;
            font-size: 0.62rem;
            color: rgba(255,255,255,0.22);
            text-align: center;
            letter-spacing: 0.01em;
        }

        /* floating decorators */
        .d-sq { position: absolute; pointer-events: none; }

        /* ── Footer redesign ── */

        /* Subtle top-of-footer gradient lift */
        .footer-shell {
            background: linear-gradient(175deg, #0d0a16 0%, #050507 30%);
        }

        /* Kill the awkward circle cutouts entirely.
           ::before → decorative pixel band just inside the top edge
           ::after  → soft purple atmosphere glow, upper-right quadrant */
        .footer-shell::before {
            content: '';
            position: absolute;
            top: 1.9rem;
            left: 2.5rem;
            right: 2.5rem;
            width: auto;
            height: 13px;
            border-radius: 0;
            background: repeating-linear-gradient(
                90deg,
                #dfff16              0px 13px,
                transparent          13px 21px,
                #9c6bff              21px 34px,
                transparent          34px 46px,
                #dfff16              46px 55px,
                transparent          55px 69px,
                #9c6bff              69px 79px,
                transparent          79px 97px
            );
            opacity: 0.65;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
        }

        .footer-shell::after {
            content: '';
            position: absolute;
            top: -130px;
            left: auto;
            right: -130px;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: rgba(156,107,255,0.11);
            filter: blur(90px);
        }

        /* Lime-to-purple gradient bar on the brand column left edge */
        .footer-brand {
            position: relative;
            padding-left: 1.2rem;
        }
        .footer-brand::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            border-radius: 2px;
            background: linear-gradient(180deg, #dfff16 0%, #9c6bff 100%);
        }

        /* Footer heading: subtle lime underline */
        .footer-heading {
            padding-bottom: 0.6rem;
            border-bottom: 1px solid rgba(223,255,22,0.15);
            margin-bottom: 1.1rem;
        }

        /* Pixel strip: brand colours instead of white */
        .footer-pixels {
            height: 52px;
            margin-top: 2.4rem;
            background: repeating-linear-gradient(
                90deg,
                rgba(223,255,22,0.82)  0px 14px,
                transparent            14px 22px,
                rgba(156,107,255,0.88) 22px 36px,
                transparent            36px 46px,
                rgba(223,255,22,0.52)  46px 56px,
                transparent            56px 69px,
                rgba(156,107,255,0.52) 69px 79px,
                transparent            79px 96px
            );
            -webkit-mask: linear-gradient(180deg, rgba(0,0,0,0) 0 38%, rgba(0,0,0,1) 38% 100%);
            mask: linear-gradient(180deg, rgba(0,0,0,0) 0 38%, rgba(0,0,0,1) 38% 100%);
        }

        /* Copyright: lime tinted divider */
        .footer-bottom {
            border-top: 1px solid rgba(223,255,22,0.08);
            padding-top: 1rem;
            margin-top: 0.25rem;
        }
        .d-sq.a { width:10px;height:10px;background:#9c6bff;top:0.6rem;left:0rem; }
        .d-sq.b { width:8px;height:8px;background:#dfff16;top:3.5rem;left:2rem; }
        .d-sq.c { width:12px;height:12px;background:#dfff16;bottom:4.5rem;left:0.2rem; }
        .d-sq.d { width:7px;height:7px;background:#9c6bff;bottom:2rem;left:3rem; }

        /* ── Process cards on dark background ── */
        .dark-shell .eyebrow {
            color: #dfff16;
        }
        .dark-shell .process-grid {
            margin-top: 2rem;
        }
        .dark-shell .process-card {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.08);
        }
        .dark-shell .process-card h3 {
            color: #ffffff;
        }
        .dark-shell .process-card p {
            color: rgba(255,255,255,0.58);
        }
        .dark-shell .process-card::after {
            border-color: rgba(255,255,255,0.10);
        }
        .dark-shell .process-step {
            width: 3.5rem;
            height: 3.5rem;
            font-size: 1.44rem;
            color: #0a0a0c;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 760px) {
            .dash-outer {
                top: 0.6rem;
                right: 0.4rem;
                left: 0.4rem;
                bottom: 0.4rem;
                padding: 1.1rem 1rem 1rem;
                border-radius: 24px;
            }

            .dash-header {
                margin-bottom: 1rem;
            }

            .dash-counter-row {
                gap: 0.55rem;
                margin-bottom: 1rem;
            }

            .dash-count {
                font-size: clamp(2.15rem, 12vw, 2.8rem);
            }

            .dash-counter-label {
                font-size: 0.84rem;
                padding-bottom: 0.2rem;
            }

            .dash-stats {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .dash-stat-card:last-child {
                grid-column: 1 / -1;
            }

            .dash-feed-item {
                padding: 0.45rem 0.6rem;
                font-size: 0.82rem;
            }

            .dash-feed-item .fi-time {
                font-size: 0.72rem;
            }

            .dash-processing {
                margin-top: 0.55rem;
                padding: 0.55rem 0.7rem;
            }

            .dash-disclaimer {
                margin-top: 0.55rem;
                font-size: 0.58rem;
            }
        }

