
        /* ----- isolated module – affects nothing outside ----- */
        .matrix-deco * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .matrix-deco {
            display: flex;
            flex-wrap: wrap;
            gap: 0.82rem 0.98rem;        /* 原1rem 1.2rem → 缩小18% */
            align-items: center;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            background: transparent;
            max-width: 100%;
            line-height: 1.4;
        }

        /* shared badge style – #c724b1 accent (整体缩小18%) */
        .matrix-deco .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.41rem;                 /* 原0.5rem → 缩小18% */
            background: linear-gradient(145deg, #fff6fe, #fef0fd);
            border: 1.23px solid #c724b1;  /* 原1.5px → 缩小18% */
            border-radius: 49px;            /* 原60px → 缩小18% */
            padding: 0.49rem 1.23rem 0.49rem 0.98rem;  /* 原0.6 1.5 0.6 1.2 → 缩小18% */
            box-shadow: 0 4.9px 13px rgba(199, 36, 177, 0.15);
            font-weight: 500;
            font-size: 0.9rem;              /* 原1.1rem → 缩小18% ≈0.9rem */
            color: #1e293b;
            backdrop-filter: blur(2px);
            white-space: nowrap;
            transition: 0.1s;
        }

        .matrix-deco .badge i {
            font-style: normal;
            font-size: 1.15rem;              /* 原1.4rem → 缩小18% */
            color: #c724b1;
        }

        .matrix-deco .badge .text {
            background: transparent;
        }

        /* special highlight for the free prototype part */
        .matrix-deco .free-badge {
            background: #c724b1;
            color: white;
            border-color: #a01d8a;
            box-shadow: 0 6.5px 14.7px rgba(199, 36, 177, 0.35);
        }
        .matrix-deco .free-badge i {
            color: white;
        }
        .matrix-deco .free-badge .text {
            color: white;
            font-weight: 600;
        }

        @media (max-width: 600px) {
            .matrix-deco .badge {
                white-space: normal;
                font-size: 0.82rem;
                padding: 0.41rem 0.98rem;
            }
        }
    