:root {
            --t8w7hzya-primary: #ea594f;
            --t8w7hzya-accent: #ff7b72;
            --t8w7hzya-bg: #ffffff;
            --t8w7hzya-dark: #1a1a1a;
            --t8w7hzya-gray: #f8f9fa;
            --t8w7hzya-text: #333333;
            --t8w7hzya-radius: 18px;
            --t8w7hzya-shadow: 0 10px 30px rgba(234, 89, 79, 0.1);
            --t8w7hzya-transition: 0.25s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--t8w7hzya-text);
            line-height: 1.7;
            background-color: var(--t8w7hzya-bg);
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 导航栏复用与修正 */
        .t8w7hzya-streak {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .t8w7hzya-cloak-nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .t8w7hzya-logo img {
            height: 40px;
            display: block;
        }

        .t8w7hzya-glide {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .t8w7hzya-nav-link {
            text-decoration: none;
            color: var(--t8w7hzya-text);
            font-weight: 500;
            font-size: 15px;
            transition: var(--t8w7hzya-transition);
        }

        .t8w7hzya-nav-link:hover, .t8w7hzya-nav-link.active {
            color: var(--t8w7hzya-primary);
        }

        /* Hero展示区 - fullbleed_overlay 原型 */
        .t8w7hzya-lumen {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 120px 25px 80px;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .t8w7hzya-lumen::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(234, 89, 79, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .t8w7hzya-apex {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .t8w7hzya-blaze h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(to right, #ffffff, #ea594f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .t8w7hzya-blaze p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            opacity: 0.9;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 核心内容容器 */
        .t8w7hzya-void {
            padding: 80px 25px;
        }

        .t8w7hzya-prism {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .t8w7hzya-facet {
            flex: 1;
            min-width: 320px;
            background: var(--t8w7hzya-gray);
            padding: 45px;
            border-radius: var(--t8w7hzya-radius);
            transition: var(--t8w7hzya-transition);
            border: 1px solid transparent;
        }

        .t8w7hzya-facet:hover {
            transform: translateY(-8px);
            background: white;
            border-color: rgba(234, 89, 79, 0.2);
            box-shadow: var(--t8w7hzya-shadow);
        }

        .t8w7hzya-facet h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--t8w7hzya-primary);
        }

        /* 列表与细节 */
        .t8w7hzya-shard {
            margin-top: 30px;
        }

        .t8w7hzya-shard ul {
            list-style: none;
        }

        .t8w7hzya-shard li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
        }

        .t8w7hzya-shard li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--t8w7hzya-primary);
            border-radius: 50%;
        }

        /* 按钮设计 */
        .t8w7hzya-jolt {
            display: inline-block;
            background: var(--t8w7hzya-primary);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--t8w7hzya-transition);
            border: 2px solid var(--t8w7hzya-primary);
        }

        .t8w7hzya-jolt:hover {
            background: transparent;
            color: var(--t8w7hzya-primary);
        }

        .t8w7hzya-snap {
            display: inline-block;
            background: transparent;
            color: var(--t8w7hzya-text);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-left: 15px;
            border: 2px solid #ddd;
            transition: var(--t8w7hzya-transition);
        }

        .t8w7hzya-snap:hover {
            border-color: var(--t8w7hzya-primary);
            color: var(--t8w7hzya-primary);
        }

        /* 图标组件 */
        .t8w7hzya-icon-box {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .t8w7hzya-icon-box svg {
            width: 30px;
            height: 30px;
            fill: var(--t8w7hzya-primary);
        }

        /* 页脚区 */
        .t8w7hzya-abyss {
            background: var(--t8w7hzya-dark);
            color: #888;
            padding: 60px 25px;
            border-top: 5px solid var(--t8w7hzya-primary);
        }

        .t8w7hzya-trace {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .t8w7hzya-brand-text {
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .t8w7hzya-links-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .t8w7hzya-links-group a {
            color: #888;
            text-decoration: none;
            transition: var(--t8w7hzya-transition);
        }

        .t8w7hzya-links-group a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .t8w7hzya-cloak-nav {
                flex-direction: column;
                gap: 15px;
            }
            .t8w7hzya-glide {
                justify-content: center;
                gap: 15px;
            }
            .t8w7hzya-facet {
                min-width: 100%;
            }
            .t8w7hzya-snap {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
                text-align: center;
            }
            .t8w7hzya-jolt {
                width: 100%;
                text-align: center;
            }
            .t8w7hzya-trace {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }

.t8w7hzya-hdr-streak {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--t8w7hzya-text);
}
.t8w7hzya-hdr-streak,
.t8w7hzya-hdr-streak *,
.t8w7hzya-hdr-streak *::before,
.t8w7hzya-hdr-streak *::after {
    box-sizing: border-box;
}

.t8w7hzya-hdr-streak nav,
.t8w7hzya-hdr-streak div,
.t8w7hzya-hdr-streak section,
.t8w7hzya-hdr-streak article,
.t8w7hzya-hdr-streak aside,
.t8w7hzya-hdr-streak p,
.t8w7hzya-hdr-streak h1,
.t8w7hzya-hdr-streak h2,
.t8w7hzya-hdr-streak h3,
.t8w7hzya-hdr-streak h4,
.t8w7hzya-hdr-streak h5,
.t8w7hzya-hdr-streak h6,
.t8w7hzya-hdr-streak a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.t8w7hzya-hdr-streak p,
.t8w7hzya-hdr-streak h1,
.t8w7hzya-hdr-streak h2,
.t8w7hzya-hdr-streak h3,
.t8w7hzya-hdr-streak h4,
.t8w7hzya-hdr-streak h5,
.t8w7hzya-hdr-streak h6 {
    text-decoration: none;
}

.t8w7hzya-hdr-streak img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.t8w7hzya-hdr-streak {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:hover,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:focus,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:active,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link.active,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.t8w7hzya-hdr-streak{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-cloak-nav{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo{
            height: 40px;
            display: flex;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo img{
            height: 100%;
            width: auto;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link{
            font-weight: 500;
            font-size: 15px;
            color: #333333;
            position: relative;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link:hover, .t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active{
            color: #ea594f;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ea594f;
        }

@media (max-width: 768px){.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
                display: none; 
            }}

.t8w7hzya-hdr-streak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.t8w7hzya-ftr-abyss {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--t8w7hzya-text);
}
.t8w7hzya-ftr-abyss,
.t8w7hzya-ftr-abyss *,
.t8w7hzya-ftr-abyss *::before,
.t8w7hzya-ftr-abyss *::after {
    box-sizing: border-box;
}

.t8w7hzya-ftr-abyss nav,
.t8w7hzya-ftr-abyss div,
.t8w7hzya-ftr-abyss section,
.t8w7hzya-ftr-abyss article,
.t8w7hzya-ftr-abyss aside,
.t8w7hzya-ftr-abyss p,
.t8w7hzya-ftr-abyss h1,
.t8w7hzya-ftr-abyss h2,
.t8w7hzya-ftr-abyss h3,
.t8w7hzya-ftr-abyss h4,
.t8w7hzya-ftr-abyss h5,
.t8w7hzya-ftr-abyss h6,
.t8w7hzya-ftr-abyss a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.t8w7hzya-ftr-abyss p,
.t8w7hzya-ftr-abyss h1,
.t8w7hzya-ftr-abyss h2,
.t8w7hzya-ftr-abyss h3,
.t8w7hzya-ftr-abyss h4,
.t8w7hzya-ftr-abyss h5,
.t8w7hzya-ftr-abyss h6 {
    text-decoration: none;
}

.t8w7hzya-ftr-abyss img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.t8w7hzya-ftr-abyss {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.t8w7hzya-ftr-abyss a,
.t8w7hzya-ftr-abyss a:hover,
.t8w7hzya-ftr-abyss a:focus,
.t8w7hzya-ftr-abyss a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.t8w7hzya-ftr-abyss{
            background: #1a1a1a;
            color: #ffffff;
            padding: 80px 24px 40px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-prism-abyss{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 60px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer{
            flex: 1;
            min-width: 200px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer h4{
            font-size: 18px;
            margin-bottom: 24px;
            color: #ffffff;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul{
            list-style: none;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li{
            margin-bottom: 12px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a{
            color: rgba(255,255,255,0.6);
            font-size: 15px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a:hover{
            color: #ea594f;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-trace{
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            text-align: center;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
        }