:root {
            --qlx-z8-accent: #f7a355;
            --qlx-z8-accent-soft: rgba(247, 163, 85, 0.1);
            --qlx-z8-text-main: #2d3436;
            --qlx-z8-text-mute: #636e72;
            --qlx-z8-bg-light: #ffffff;
            --qlx-z8-bg-alt: #fdfaf7;
            --qlx-z8-radius: 22px;
            --qlx-z8-transition: 0.25s ease;
        }

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

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

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

        /* --- 导航栏复用结构 --- */
        .qlx-z8-orbit-vessel {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 5%;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .qlx-z8-logo img {
            height: 40px;
            width: auto;
        }

        .qlx-z8-steer-nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .qlx-z8-nav-link {
            font-weight: 500;
            color: var(--qlx-z8-text-mute);
            font-size: 0.95rem;
        }

        .qlx-z8-nav-link:hover, .qlx-z8-nav-link.active {
            color: var(--qlx-z8-accent);
        }

        .qlx-z8-spark-jolt {
            background: var(--qlx-z8-accent);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.25s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .qlx-z8-spark-jolt:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* --- Hero: Cinematic Strip Layout --- */
        .qlx-z8-surge-vista {
            position: relative;
            padding: 100px 0 60px;
            background: var(--qlx-z8-bg-alt);
            overflow: hidden;
            text-align: center;
        }

        .qlx-z8-flare-realm {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 2;
        }

        .qlx-z8-surge-vista h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            line-height: 1.2;
            margin-bottom: 25px;
            color: #1a1a1a;
            word-break: break-word;
        }

        .qlx-z8-surge-vista p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--qlx-z8-text-mute);
        }

        /* Cinematic Strip Elements */
        .qlx-z8-cinematic-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            padding: 40px 0;
            animation: scroll-strip 60s linear infinite;
            width: max-content;
        }

        @keyframes scroll-strip {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .qlx-z8-strip-shard {
            background: white;
            padding: 15px 35px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(247, 163, 85, 0.1);
            border: 1px solid var(--qlx-z8-accent-soft);
            white-space: nowrap;
            font-weight: 600;
            color: var(--qlx-z8-accent);
            font-size: 1.1rem;
        }

        /* --- Intro Section --- */
        .qlx-z8-vessel-realm {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .qlx-z8-vessel-realm .qlx-z8-nexus-content {
            flex: 1;
            min-width: 320px;
        }

        .qlx-z8-vessel-realm h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .qlx-z8-vessel-realm h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15%;
            height: 70%;
            width: 6px;
            background: var(--qlx-z8-accent);
            border-radius: 3px;
        }

        .qlx-z8-vessel-realm p {
            font-size: 1.1rem;
            color: var(--qlx-z8-text-mute);
            margin-bottom: 25px;
        }

        .qlx-z8-visual-shard {
            flex: 1;
            min-width: 320px;
            background: linear-gradient(135deg, #f7a355 0%, #ff7e5f 100%);
            height: 300px;
            border-radius: var(--qlx-z8-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(247, 163, 85, 0.2);
        }

        /* --- Channel Grid --- */
        .qlx-z8-grid-vessel {
            background: #fff;
            padding: 100px 0;
        }

        .qlx-z8-grid-nexus {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .qlx-z8-pulse-shard {
            background: var(--qlx-z8-bg-alt);
            padding: 40px;
            border-radius: var(--qlx-z8-radius);
            transition: all 0.3s ease;
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .qlx-z8-pulse-shard:hover {
            transform: translateY(-10px);
            background: white;
            border-color: var(--qlx-z8-accent-soft);
            box-shadow: 0 25px 50px rgba(0,0,0,0.06);
        }

        .qlx-z8-icon-box {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 8px 15px rgba(247, 163, 85, 0.15);
        }

        .qlx-z8-icon-box svg {
            width: 30px;
            height: 30px;
            fill: var(--qlx-z8-accent);
        }

        .qlx-z8-pulse-shard h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }

        .qlx-z8-pulse-shard p {
            color: var(--qlx-z8-text-mute);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .qlx-z8-shard-tag {
            display: inline-block;
            padding: 6px 15px;
            background: var(--qlx-z8-accent-soft);
            color: var(--qlx-z8-accent);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            align-self: flex-start;
        }

        /* --- Value Section --- */
        .qlx-z8-feature-realm {
            max-width: 1100px;
            margin: 80px auto;
            padding: 60px 40px;
            background: #1a1a1a;
            border-radius: var(--qlx-z8-radius);
            color: white;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .qlx-z8-feature-shard {
            flex: 1;
            min-width: 250px;
        }

        .qlx-z8-feature-shard h3 {
            color: var(--qlx-z8-accent);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .qlx-z8-feature-shard p {
            color: #ccc;
            font-size: 0.95rem;
        }

        /* --- Footer --- */
        .qlx-z8-echo-trace {
            background: var(--qlx-z8-bg-alt);
            padding: 80px 5% 40px;
            border-top: 1px solid #eee;
        }

        .qlx-z8-trace-nexus {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .qlx-z8-brand-info {
            flex: 2;
            min-width: 280px;
        }

        .qlx-z8-brand-info h4 {
            font-size: 1.5rem;
            color: var(--qlx-z8-accent);
            margin-bottom: 15px;
        }

        .qlx-z8-link-group {
            flex: 1;
            min-width: 150px;
        }

        .qlx-z8-link-group h5 {
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .qlx-z8-link-group a {
            display: block;
            margin-bottom: 12px;
            color: var(--qlx-z8-text-mute);
            font-size: 0.9rem;
        }

        .qlx-z8-link-group a:hover {
            color: var(--qlx-z8-accent);
        }

        .qlx-z8-copyright {
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 0.85rem;
            color: #999;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .qlx-z8-steer-nexus {
                display: none; /* Mobile optimization: menu could be a drawer but here we simplify as per standard */
            }
            .qlx-z8-vessel-realm {
                flex-direction: column;
                text-align: center;
            }
            .qlx-z8-surge-vista h1 {
                font-size: 2rem;
            }
        }

.qlx-z8-hdr-orbit-vessel {
    font-family: var(--qlx-z8-font);
    line-height: 1.8;
    word-break: keep-all;
    color: var(--qlx-z8-text-main);
}
.qlx-z8-hdr-orbit-vessel,
.qlx-z8-hdr-orbit-vessel *,
.qlx-z8-hdr-orbit-vessel *::before,
.qlx-z8-hdr-orbit-vessel *::after {
    box-sizing: border-box;
}

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

.qlx-z8-hdr-orbit-vessel p,
.qlx-z8-hdr-orbit-vessel h1,
.qlx-z8-hdr-orbit-vessel h2,
.qlx-z8-hdr-orbit-vessel h3,
.qlx-z8-hdr-orbit-vessel h4,
.qlx-z8-hdr-orbit-vessel h5,
.qlx-z8-hdr-orbit-vessel h6 {
    text-decoration: none;
}

.qlx-z8-hdr-orbit-vessel img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.qlx-z8-hdr-orbit-vessel {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.qlx-z8-hdr-orbit-vessel a.qlx-z8-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;
}

.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:hover,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:focus,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:active,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link.active,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-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);
}

.qlx-z8-hdr-orbit-vessel{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(247, 163, 85, 0.1);
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-logo{
            width: 120px;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-steer-nexus{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            min-width: 0;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link{
            font-weight: 600;
            font-size: 1rem;
            color: #2d3436;
            position: relative;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link:hover, .qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link.active{
            color: #f7a355;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f7a355;
            border-radius: 2px;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-spark-jolt{
            display: inline-flex;
            align-items: center;
            padding: 18px 42px;
            background: #f7a355;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 32px;
            box-shadow: 0 10px 25px rgba(247, 163, 85, 0.4);
            transition: transform 0.25s ease, background 0.25s ease;
            border: none;
            cursor: pointer;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-spark-jolt:hover{
            transform: translateY(-3px);
            background: #ff8c21;
        }

@media (max-width: 768px){.qlx-z8-hdr-orbit-vessel{ padding: 15px 20px; }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-steer-nexus{ display: none; }}

.qlx-z8-hdr-orbit-vessel {
    background: rgb(255, 255, 255);
    background-image: none;
}

.qlx-z8-ftr-echo-trace {
    font-family: var(--qlx-z8-font);
    line-height: 1.8;
    word-break: keep-all;
    color: var(--qlx-z8-text-main);
}
.qlx-z8-ftr-echo-trace,
.qlx-z8-ftr-echo-trace *,
.qlx-z8-ftr-echo-trace *::before,
.qlx-z8-ftr-echo-trace *::after {
    box-sizing: border-box;
}

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

.qlx-z8-ftr-echo-trace p,
.qlx-z8-ftr-echo-trace h1,
.qlx-z8-ftr-echo-trace h2,
.qlx-z8-ftr-echo-trace h3,
.qlx-z8-ftr-echo-trace h4,
.qlx-z8-ftr-echo-trace h5,
.qlx-z8-ftr-echo-trace h6 {
    text-decoration: none;
}

.qlx-z8-ftr-echo-trace img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.qlx-z8-ftr-echo-trace {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.qlx-z8-ftr-echo-trace a,
.qlx-z8-ftr-echo-trace a:hover,
.qlx-z8-ftr-echo-trace a:focus,
.qlx-z8-ftr-echo-trace a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.qlx-z8-ftr-echo-trace{
            background: #fafafa;
            padding: 100px 40px 60px;
            border-top: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-grid{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            position: relative;
            z-index: 2;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-brand{
            grid-column: span 2;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-brand-text{
            font-size: 2rem;
            font-weight: 900;
            color: #f7a355;
            margin-bottom: 20px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-title{
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links{
            list-style: none;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links li{
            margin-bottom: 12px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links a:hover{
            color: #f7a355;
            padding-left: 5px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-bottom{
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            color: #636e72;
            font-size: 0.9rem;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-footer-texture{
            position: absolute;
            right: 0;
            bottom: 0;
            width: 300px;
            opacity: 0.4;
            pointer-events: none;
        }