:root {
            --t8w7hzya-primary: #ea594f;
            --t8w7hzya-primary-soft: #fff5f4;
            --t8w7hzya-dark: #1a1a1a;
            --t8w7hzya-text: #333333;
            --t8w7hzya-text-light: #666666;
            --t8w7hzya-white: #ffffff;
            --t8w7hzya-radius: 21px;
            --t8w7hzya-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --t8w7hzya-transition: 0.25s ease;
        }

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

        body {
            font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--t8w7hzya-text);
            background-color: #fcfcfc;
            word-break: keep-all;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--t8w7hzya-transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 导航区域: streak, glide */
        .t8w7hzya-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-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-logo {
            height: 40px;
            display: flex;
            align-items: center;
        }

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

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

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

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

        .t8w7hzya-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--t8w7hzya-primary);
        }

        /* 展示区域: lumen, blaze, apex */
        .t8w7hzya-lumen {
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 100px 24px;
        }

        .t8w7hzya-void-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .t8w7hzya-void-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .t8w7hzya-void-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
            z-index: -1;
        }

        .t8w7hzya-apex-content {
            max-width: 900px;
            text-align: center;
            color: var(--t8w7hzya-white);
            z-index: 10;
        }

        .t8w7hzya-apex-content h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            word-break: break-word;
        }

        .t8w7hzya-apex-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
            margin-inline: auto;
        }

        /* 按钮组件: jolt, snap */
        .t8w7hzya-jolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 48px;
            background-color: var(--t8w7hzya-primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 15px 30px rgba(234, 89, 79, 0.3);
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .t8w7hzya-jolt:hover {
            transform: translateY(-3px);
            background-color: #d64d44;
        }

        .t8w7hzya-snap-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* 容器组件: cloak, prism, void */
        .t8w7hzya-cloak {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .t8w7hzya-prism-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        /* 卡片组件: shard, facet */
        .t8w7hzya-shard {
            background: var(--t8w7hzya-white);
            padding: 40px;
            border-radius: var(--t8w7hzya-radius);
            box-shadow: var(--t8w7hzya-shadow);
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--t8w7hzya-transition);
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .t8w7hzya-shard:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .t8w7hzya-facet-icon {
            width: 64px;
            height: 64px;
            background: var(--t8w7hzya-primary-soft);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--t8w7hzya-primary);
        }

        .t8w7hzya-shard h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--t8w7hzya-dark);
        }

        .t8w7hzya-shard p {
            color: var(--t8w7hzya-text-light);
            font-size: 16px;
            line-height: 1.6;
        }

        /* 特色区块: blaze */
        .t8w7hzya-blaze-section {
            background-color: #fff;
            overflow: hidden;
        }

        .t8w7hzya-prism-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .t8w7hzya-prism-flex > div {
            flex: 1;
            min-width: 320px;
        }

        .t8w7hzya-blaze-image {
            border-radius: var(--t8w7hzya-radius);
            overflow: hidden;
            box-shadow: var(--t8w7hzya-shadow);
        }

        .t8w7hzya-blaze-text h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 24px;
            line-height: 1.2;
            color: var(--t8w7hzya-dark);
        }

        .t8w7hzya-blaze-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--t8w7hzya-text-light);
        }

        /* 页脚区域: abyss, trace */
        .t8w7hzya-abyss {
            background: var(--t8w7hzya-dark);
            color: var(--t8w7hzya-white);
            padding: 80px 24px 40px;
        }

        .t8w7hzya-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-shard-footer {
            flex: 1;
            min-width: 200px;
        }

        .t8w7hzya-shard-footer h4 {
            font-size: 18px;
            margin-bottom: 24px;
            color: var(--t8w7hzya-white);
        }

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

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

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

        .t8w7hzya-shard-footer ul li a:hover {
            color: var(--t8w7hzya-primary);
        }

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

        /* 响应式调整 */
        @media (max-width: 768px) {
            .t8w7hzya-glide {
                display: none; /* 简化移动端，实际应有汉堡菜单 */
            }
            .t8w7hzya-apex-content h1 {
                font-size: 2.5rem;
            }
            .t8w7hzya-cloak {
                padding: 60px 20px;
            }
            .t8w7hzya-prism-flex {
                gap: 30px;
            }
        }

        /* 视觉装饰 */
        .t8w7hzya-void-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--t8w7hzya-primary-soft);
            color: var(--t8w7hzya-primary);
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

.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);
        }