
        /* completely independent block – no external leak */
        .wire__container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.4;
        }
        .wire__container {
            display: block;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            color: #1a1e2b;
            padding: 1.5rem 1.2rem 2.5rem;
            border-radius: 0;
            box-shadow: none;
        }

        /* accent color #c724b1 */
        .wire__accent-border { border-color: #c724b1 !important; }
        .wire__accent-text { color: #c724b1; font-weight: 500; }
        .wire__accent-bg {
            background-color: rgba(199, 36, 177, 0.05);
            border-left: 4px solid #c724b1;
            padding: 0.8rem 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .wire__section-title {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 1.5rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #c724b1;
            display: inline-block;
        }
        .wire__subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            margin: 1.5rem 0 0.8rem 0;
            color: #111;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .wire__subtitle::before {
            content: "♪";
            color: #c724b1;
            font-weight: 700;
            font-size: 2rem;
            line-height: 1;
            margin-right: 0.2rem;
        }

        /* quote block */
        .wire__quote {
            background: #f9fafc;
            padding: 1.2rem 1.8rem;
            border-radius: 18px;
            margin: 1rem 0 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            border: 1px solid #eaecf0;
            text-align: left;
            word-break: break-word;
            hyphens: auto;
        }
        .wire__quote p {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            max-width: 100%;
            text-align: left;
        }
        .wire__quote p:last-child { margin-bottom: 0; }
        .wire__quote strong { color: #c724b1; font-weight: 600; }

        /* six-dimension visual */
        .wire__six-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem 1rem;
            margin: 1.5rem 0 2rem;
        }
        .wire__six-item {
            background: white;
            border: 1.5px solid #e0e4ec;
            border-radius: 40px;
            padding: 0.5rem 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            color: #1a2639;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        .wire__six-item span {
            color: #c724b1;
            font-weight: 700;
            margin-right: 5px;
            font-size: 1.2rem;
        }

        /* IMAGE PAIR */
        .wire__image-pair {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            margin: 1.5rem 0 1.8rem;
        }
        .wire__image-pair figure {
            flex: 0 1 auto;
            max-width: 400px;
            margin: 0;
            text-align: center;
        }
        .wire__image-pair img {
            width: 100%;
            height: auto;
            max-width: 400px;
            aspect-ratio: 600 / 400;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.06);
            background: #f2f4f8;
            border: 1px solid #eaeef5;
        }
        .wire__image-pair figcaption {
            margin-top: 0.3rem;
            font-size: 0.85rem;
            color: #6f7c91;
        }
        .wire__image-pair figcaption::before {
            content: "♪ ";
            color: #c724b1;
            font-weight: 600;
        }

        /* ===== 全局表格样式（仅作用于其他表格，不影响修复区域）===== */
        .wire__table-wrapper {
            overflow-x: auto;
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            border: 1px solid #edf0f5;
            background: white;
        }
        .wire__table-wrapper table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .wire__table-wrapper th {
            background-color: #f4f6fb;
            font-weight: 600;
            padding: 0.8rem 0.6rem;
            text-align: center;
            color: #1e293b;
            border-bottom: 2px solid #c724b1;
        }
        .wire__table-wrapper td {
            padding: 0.7rem 0.6rem;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
            color: #2d3a4f;
        }
        .wire__table-wrapper td:first-child {
            font-weight: 500;
            background-color: #fafbff;
        }

        /* decision tree */
        .wire__decision-tree {
            background: #f7f9fe;
            border-radius: 22px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #e6eaf2;
        }
        .wire__tree-step {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.2rem;
            margin: 1.2rem 0 0.5rem;
        }
        .wire__tree-card {
            flex: 1 1 240px;
            background: white;
            border-radius: 18px;
            padding: 1.2rem 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            border: 1px solid #dee4ed;
        }
        .wire__tree-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
        .wire__tree-card p { margin-bottom: 0.4rem; font-size: 0.95rem; }
        .wire__tree-card .wire__yes { color: #c724b1; font-weight: 600; }
        .wire__tag {
            background: #c724b1;
            color: white;
            border-radius: 30px;
            padding: 0.15rem 1rem;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 0.4rem;
        }

        /* master table */
        .wire__master-grid {
            background: #f4f7fd;
            padding: 1.5rem 1.5rem;
            border-radius: 22px;
            margin-bottom: 2rem;
        }
        .wire__master-grid h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #c724b1;
        }
        .wire__master-list {
            column-count: 3;
            column-gap: 1.5rem;
            column-width: 250px;
        }
        .wire__master-item {
            display: block;
            list-style: none;
            padding: 0.3rem 0 0.3rem 0.2rem;
            border-bottom: 1px dashed #cfd9e8;
            font-size: 0.9rem;
            color: #1f2a44;
            break-inside: avoid-column;
            margin-bottom: 0.2rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .wire__master-item::before {
            content: "♪ ";
            color: #c724b1;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            width: 1.4rem;
            margin-left: -0.2rem;
        }

        /* index grid */
        .wire__index-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1rem 0 2rem;
        }
        .wire__index-card {
            background: #fbfdff;
            border-radius: 16px;
            padding: 0.9rem 1.2rem;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .wire__index-card:hover {
            border-color: #c724b1;
            box-shadow: 0 6px 12px rgba(199,36,177,0.04);
        }
        .wire__index-need {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.4rem;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .wire__index-need::before {
            content: "♪";
            color: #c724b1;
            font-weight: bold;
            font-size: 1.3rem;
        }
        .wire__index-location {
            color: #334155;
            font-size: 0.9rem;
            border-left: 4px solid #c724b1;
            padding-left: 0.8rem;
        }
        .wire__index-context {
            background: #fff2fd;
            border-radius: 2rem;
            padding: 0.4rem 1.4rem;
            display: inline-block;
            margin-bottom: 1rem;
            border: 1px solid #c724b1;
            color: #1e293b;
            font-size: 0.95rem;
        }
        .wire__index-context strong { color: #c724b1; }

        hr.wire__separator {
            border: 0;
            border-top: 2px solid #c724b1;
            margin: 1.8rem 0;
            opacity: 0.2;
        }

        @media (max-width: 800px) {
            .wire__master-list { column-count: 2; }
            .wire__image-pair figure { max-width: 90%; }
        }
        @media (max-width: 550px) {
            .wire__master-list { column-count: 1; }
        }
    