:root {
            --hskf09-primary: #5055e8;
            --hskf09-primary-soft: #f0f1ff;
            --hskf09-text-dark: #1a1b26;
            --hskf09-text-light: #646676;
            --hskf09-radius: 20px;
            --hskf09-shadow: 0 10px 30px rgba(80, 85, 232, 0.08);
            --hskf09-transition: 0.25s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--hskf09-text-dark);
            line-height: 1.7;
            background-color: #fcfcff;
        }

        /* 导航复用样式 */
        .hskf09-vortex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(80, 85, 232, 0.1);
        }

        .hskf09-vault-nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hskf09-logo img {
            height: 32px;
            display: block;
        }

        .hskf09-clasp-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

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

        .hskf09-trace-link:hover, .hskf09-trace-link.active {
            color: var(--hskf09-primary);
        }

        .hskf09-warp-cta {
            background: var(--hskf09-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--hskf09-transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hskf09-warp-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(80, 85, 232, 0.3);
        }

        /* Cinematic Strip Hero */
        .hskf09-beacon {
            width: 100%;
            padding: 100px 0;
            background: linear-gradient(135deg, #5055e8 0%, #3034a1 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hskf09-glaze {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hskf09-clasp {
            max-width: 900px;
            padding: 0 24px;
            z-index: 2;
            min-width: 0;
        }

        .hskf09-beacon h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            white-space: normal;
        }

        .hskf09-beacon p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 主内容区 */
        .hskf09-prime {
            padding: 80px 0;
            max-width: 1100px;
            margin: 0 auto;
        }

        .hskf09-plex {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding: 24px;
            margin-bottom: 60px;
        }

        .hskf09-shard {
            flex: 1;
            min-width: 300px;
            background: #fff;
            padding: 40px;
            border-radius: var(--hskf09-radius);
            box-shadow: var(--hskf09-shadow);
            border: 1px solid rgba(80, 85, 232, 0.05);
            transition: var(--hskf09-transition);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hskf09-shard:hover {
            transform: translateY(-8px);
            border-color: var(--hskf09-primary);
        }

        .hskf09-glyph {
            width: 64px;
            height: 64px;
            background: var(--hskf09-primary-soft);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hskf09-primary);
        }

        .hskf09-glyph svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        .hskf09-shard h2 {
            font-size: 1.5rem;
            color: var(--hskf09-text-dark);
        }

        .hskf09-shard p {
            color: var(--hskf09-text-light);
            font-size: 1rem;
        }

        /* 列表展示区 */
        .hskf09-vault {
            background: #fff;
            border-radius: var(--hskf09-radius);
            margin: 0 24px 80px;
            overflow: hidden;
            box-shadow: var(--hskf09-shadow);
        }

        .hskf09-jolt-list {
            padding: 40px;
        }

        .hskf09-jolt-list h3 {
            margin-bottom: 30px;
            font-size: 1.8rem;
            text-align: center;
        }

        .hskf09-plex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .hskf09-shard-mini {
            padding: 24px;
            background: #f8f9ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--hskf09-transition);
            text-decoration: none;
            color: inherit;
        }

        .hskf09-shard-mini:hover {
            background: var(--hskf09-primary-soft);
        }

        .hskf09-shard-mini span {
            font-weight: 600;
            color: var(--hskf09-text-dark);
        }

        .hskf09-shard-mini em {
            font-style: normal;
            font-size: 0.85rem;
            color: var(--hskf09-primary);
            background: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: auto;
        }

        /* 页脚区域 */
        .hskf09-tether {
            background: #1a1b26;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
        }

        .hskf09-stow {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .hskf09-stow-brand {
            flex: 1;
            min-width: 200px;
        }

        .hskf09-stow-brand h4 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .hskf09-stow-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .hskf09-stow-group h5 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .hskf09-stow-group a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: var(--hskf09-transition);
        }

        .hskf09-stow-group a:hover {
            color: var(--hskf09-primary);
        }

        .hskf09-tether-copy {
            text-align: center;
            padding-top: 60px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .hskf09-vault-nav {
                height: auto;
                padding: 16px;
            }
            .hskf09-clasp-links {
                order: 3;
                width: 100%;
                justify-content: center;
                gap: 15px;
                margin-top: 15px;
            }
            .hskf09-logo {
                order: 1;
            }
            .hskf09-warp-cta {
                order: 2;
            }
            .hskf09-beacon {
                padding: 60px 0;
            }
            .hskf09-shard {
                min-width: 100%;
            }
            .hskf09-stow {
                flex-direction: column;
                text-align: center;
            }
            .hskf09-stow-links {
                justify-content: center;
                gap: 30px;
            }
        }

.hskf09-hdr-vortex {
    font-family: var(--hskf09-sans);
    line-height: 1.8;
    word-break: break-word;
    color: var(--hskf09-text-main);
}
.hskf09-hdr-vortex,
.hskf09-hdr-vortex *,
.hskf09-hdr-vortex *::before,
.hskf09-hdr-vortex *::after {
    box-sizing: border-box;
}

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

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

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

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

.hskf09-hdr-vortex a.hskf09-hdr-trace-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;
}

.hskf09-hdr-vortex a.hskf09-hdr-trace-link,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:hover,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:focus,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:active,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link.active,
.hskf09-hdr-vortex a.hskf09-hdr-trace-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);
}

.hskf09-hdr-vortex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.hskf09-hdr-vortex .hskf09-hdr-vault-nav{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

.hskf09-hdr-vortex .hskf09-hdr-logo{
            display: flex;
            align-items: center;
        }

.hskf09-hdr-vortex .hskf09-hdr-logo img{
            height: 36px;
            width: auto;
        }

.hskf09-hdr-vortex .hskf09-hdr-clasp-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link{
            font-size: 15px;
            font-weight: 500;
            color: #6e6e73;
            position: relative;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link:hover{
            color: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link.active{
            color: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link.active::after{
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-warp-cta{
            display: inline-flex;
            align-items: center;
            background: #5055e8;
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

.hskf09-hdr-vortex .hskf09-hdr-warp-cta:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(80, 85, 232, 0.4);
        }

@media (max-width: 768px){.hskf09-hdr-vortex .hskf09-hdr-clasp-links{
                display: none;
            }}

.hskf09-hdr-vortex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.hskf09-ftr-tether {
    font-family: var(--hskf09-sans);
    line-height: 1.8;
    word-break: break-word;
    color: var(--hskf09-text-main);
}
.hskf09-ftr-tether,
.hskf09-ftr-tether *,
.hskf09-ftr-tether *::before,
.hskf09-ftr-tether *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.hskf09-ftr-tether{
            background: #f5f5f7;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

.hskf09-ftr-tether .hskf09-ftr-stow-grid{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-brand{
            flex: 2;
            min-width: 300px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-brand h2{
            font-size: 28px;
            margin-bottom: 20px;
            font-family: "Inter", system-ui, -apple-system, sans-serif;
            letter-spacing: -1px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-nav-group{
            flex: 1;
            min-width: 150px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-nav-group h5{
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

.hskf09-ftr-tether .hskf09-ftr-trace-footer{
            display: block;
            font-size: 14px;
            color: #6e6e73;
            margin-bottom: 12px;
        }

.hskf09-ftr-tether .hskf09-ftr-trace-footer:hover{
            color: #5055e8;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-copyright{
            max-width: 1280px;
            margin: 60px auto 0;
            padding: 40px 24px 0;
            border-top: 1px solid rgba(0,0,0,0.06);
            font-size: 13px;
            color: #6e6e73;
            text-align: center;
        }