:root {
            --theme: #6a26f1;
            --theme-glow: rgba(106, 38, 241, 0.4);
            --neon: #00f2fe;
            --bg-dark: #07080d;
            --bg-surface: #0e111a;
            --bg-card: rgba(18, 22, 36, 0.85);
            --border: rgba(106, 38, 241, 0.22);
            --border-hover: rgba(0, 242, 254, 0.5);
            --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            --text-main: #f0f3fc;
            --text-sub: #94a3b8;
            --text-muted: #64748b;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-head);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 15% 20%, rgba(106, 38, 241, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 85% 70%, rgba(0, 242, 254, 0.08) 0%, transparent 40%);
            background-attachment: fixed;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.35s ease;
        }

        /* 统一 Layout Shell */
        .shell {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 顶部 Header */
        .tip {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .emblem {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .emblem img {
            height: 38px;
            width: auto;
            display: block;
        }

        .flock {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            list-style: none;
        }

        .path {
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-sub);
            border-radius: 8px;
            border: 1px solid transparent;
            min-width: 0;
        }

        .path:hover,
        .path.active {
            color: #ffffff;
            background: rgba(106, 38, 241, 0.18);
            border-color: var(--border);
            text-shadow: 0 0 10px var(--theme-glow);
        }

        .stamp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--theme) 0%, #8b5cf6 100%);
            color: #ffffff;
            box-shadow: 0 4px 18px var(--theme-glow);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.35s ease;
            min-width: 0;
        }

        .stamp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

        .stamp.stamp-outline {
            background: transparent;
            border: 1px solid var(--border-hover);
            color: var(--neon);
            box-shadow: none;
        }

        .stamp.stamp-outline:hover {
            background: rgba(0, 242, 254, 0.1);
            color: #ffffff;
            box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
        }

        /* Hero 区域 - Archetype: card_float */
        .surge {
            position: relative;
            padding: 40px 0 90px 0;
            overflow: hidden;
        }

        .crest {
            position: relative;
            min-height: 540px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }

        .crest .snap-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            filter: brightness(0.65) contrast(1.1);
        }

        .crest-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(7, 8, 13, 0.88) 0%, rgba(7, 8, 13, 0.3) 50%, rgba(7, 8, 13, 0.7) 100%);
        }

        /* 浮动卡片浮动在背景右上/右中，带深度重叠 */
        .paddock {
            position: absolute;
            top: 50%;
            right: 48px;
            transform: translateY(-50%);
            width: 540px;
            max-width: calc(100% - 60px);
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(106, 38, 241, 0.4);
            border-radius: 12px;
            padding: 36px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--theme-glow);
            z-index: 10;
        }

        .ribbon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            background: rgba(0, 242, 254, 0.1);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 20px;
            color: var(--neon);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .crown-h1 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--neon);
            margin-bottom: 6px;
            display: block;
        }

        .paddock .crown {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
            color: #ffffff;
            margin-bottom: 14px;
        }

        .paddock .script {
            font-size: 15px;
            color: var(--text-sub);
            margin-bottom: 24px;
            line-height: 1.65;
        }

        .cluster-bullets {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }

        .calf-bullet {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-main);
            min-width: 0;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(106, 38, 241, 0.3);
            color: var(--neon);
            flex-shrink: 0;
        }

        .cluster-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* 顶层区块 1: 全球市场动态 (Section, FAQ/Coverage role) */
        .corral {
            padding: 70px 0;
            position: relative;
        }

        .head-cluster {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .head-cluster .crown {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .head-cluster .script {
            font-size: 16px;
            color: var(--text-sub);
        }

        .cluster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .vault {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .vault:hover {
            transform: translateY(-5px);
            border-color: var(--border-hover);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.15);
        }

        .vault .crown {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .vault .script {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .snap-box {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-top: 16px;
        }

        .snap-box img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .vault:hover .snap-box img {
            transform: scale(1.03);
        }

        /* 顶层区块 2: 交易架构与多端生态 (Article, Capability role) */
        .arena {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(14, 17, 26, 0.4) 0%, rgba(7, 8, 13, 0.8) 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .cluster-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .column-script {
            flex: 1 1 480px;
            min-width: 0;
        }

        .column-graphic {
            flex: 1 1 480px;
            min-width: 0;
        }

        .column-script .crown {
            font-size: 30px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 18px;
        }

        .column-script .script {
            font-size: 16px;
            color: var(--text-sub);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .cluster-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-bottom: 30px;
        }

        .slab-feature {
            background: rgba(18, 22, 36, 0.6);
            border: 1px solid var(--border);
            padding: 16px;
            border-radius: 8px;
        }

        .slab-feature .crown {
            font-size: 16px;
            font-weight: 600;
            color: var(--neon);
            margin-bottom: 6px;
        }

        .slab-feature .script {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* 顶层区块 3: 合规安全 (Div, Context role) */
        .realm {
            padding: 80px 0;
        }

        .vault-featured {
            background: linear-gradient(135deg, rgba(18, 22, 36, 0.9) 0%, rgba(106, 38, 241, 0.15) 100%);
            border: 1px solid var(--border-hover);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        /* 顶层区块 4: 站内重点路径 Hub (Aside, Navigation Paths) */
        .realm-hub {
            padding: 60px 0;
            background: rgba(10, 12, 20, 0.6);
            border-top: 1px solid var(--border);
        }

        .cluster-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .slab-path {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.35s ease;
        }

        .slab-path:hover {
            border-color: var(--theme);
            transform: translateY(-4px);
            background: rgba(106, 38, 241, 0.08);
        }

        .slab-path .crown {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .slab-path .script {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 16px;
        }

        .path-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--neon);
        }

        /* FAQ Accordion Section */
        .cluster-faq {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-details {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 18px 24px;
            transition: all 0.35s ease;
        }

        .faq-details[open] {
            border-color: var(--border-hover);
            background: rgba(18, 22, 36, 0.95);
        }

        .faq-summary {
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-summary::after {
            content: "+";
            font-size: 20px;
            color: var(--neon);
            transition: transform 0.3s ease;
        }

        .faq-details[open] .faq-summary::after {
            content: "−";
        }

        .faq-shell {
            margin-top: 14px;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
            border-top: 1px dashed rgba(255, 255, 255, 0.1);
            padding-top: 12px;
        }

        /* 页脚 Footer */
        .sole {
            background: #040508;
            border-top: 1px solid var(--border);
            padding: 60px 0 30px 0;
            font-size: 14px;
            color: var(--text-muted);
        }

        .meadow {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .bedrock {
            flex: 1 1 300px;
            min-width: 0;
        }

        .bedrock-brand {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .bedrock-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .cluster-sole-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .sole-column {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

        .sole-column .crown {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .sole-column a {
            color: var(--text-muted);
            font-size: 13px;
        }

        .sole-column a:hover {
            color: var(--neon);
        }

        .tail {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .paddock {
                position: relative;
                top: 0;
                right: 0;
                transform: none;
                width: 100%;
                max-width: 100%;
                margin-top: -80px;
                margin-left: auto;
                margin-right: auto;
            }
            .crest {
                min-height: 360px;
            }
        }

        @media (max-width: 768px) {
            .orbit {
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            .flock {
                width: 100%;
                justify-content: space-between;
                overflow-x: auto;
                padding-bottom: 4px;
            }
            .path {
                padding: 6px 10px;
                font-size: 13px;
                white-space: nowrap;
            }
            .head-cluster .crown {
                font-size: 24px;
            }
            .paddock {
                padding: 24px;
                margin-top: 0;
            }
            .paddock .crown {
                font-size: 22px;
            }
            .crest {
                min-height: 240px;
            }
        }

.horns-tip {
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text-main);
}
.horns-tip,
.horns-tip *,
.horns-tip *::before,
.horns-tip *::after {
    box-sizing: border-box;
}

.horns-tip [role="navigation"],
.horns-tip div,
.horns-tip section,
.horns-tip article,
.horns-tip aside,
.horns-tip p,
.horns-tip h1,
.horns-tip h2,
.horns-tip h3,
.horns-tip h4,
.horns-tip h5,
.horns-tip h6,
.horns-tip a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.horns-tip p,
.horns-tip h1,
.horns-tip h2,
.horns-tip h3,
.horns-tip h4,
.horns-tip h5,
.horns-tip h6 {
    text-decoration: none;
}

.horns-tip img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.horns-tip {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.horns-tip a.horns-path {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.horns-tip a.horns-path,
.horns-tip a.horns-path:hover,
.horns-tip a.horns-path:focus,
.horns-tip a.horns-path:active,
.horns-tip a.horns-path.active,
.horns-tip a.horns-path[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);
}

.horns-tip .horns-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.horns-tip{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(106, 38, 241, 0.22);
        }

.horns-tip .horns-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.horns-tip .horns-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.horns-tip .horns-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.horns-tip .horns-flock{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            list-style: none;
        }

.horns-tip .horns-path{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            border: 1px solid transparent;
            min-width: 0;
        }

.horns-tip .horns-path:hover, .horns-tip .horns-path.active{
            color: #ffffff;
            background: rgba(106, 38, 241, 0.18);
            border-color: rgba(106, 38, 241, 0.22);
            text-shadow: 0 0 10px rgba(106, 38, 241, 0.4);
        }

.horns-tip .horns-stamp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: linear-gradient(135deg, #6a26f1 0%, #8b5cf6 100%);
            color: #ffffff;
            box-shadow: 0 4px 18px rgba(106, 38, 241, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.35s ease;
            min-width: 0;
        }

.horns-tip .horns-stamp:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

@media (max-width: 768px){.horns-tip .horns-orbit{
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.horns-tip .horns-flock{
                width: 100%;
                justify-content: space-between;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.horns-tip .horns-path{
                padding: 6px 10px;
                font-size: 13px;
                white-space: nowrap;
            }}

.horns-tip {
    background: rgb(7, 8, 13);
    background-image: none;
}

.meadow-sole {
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text-main);
}
.meadow-sole,
.meadow-sole *,
.meadow-sole *::before,
.meadow-sole *::after {
    box-sizing: border-box;
}

.meadow-sole [role="navigation"],
.meadow-sole div,
.meadow-sole section,
.meadow-sole article,
.meadow-sole aside,
.meadow-sole p,
.meadow-sole h1,
.meadow-sole h2,
.meadow-sole h3,
.meadow-sole h4,
.meadow-sole h5,
.meadow-sole h6,
.meadow-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.meadow-sole p,
.meadow-sole h1,
.meadow-sole h2,
.meadow-sole h3,
.meadow-sole h4,
.meadow-sole h5,
.meadow-sole h6 {
    text-decoration: none;
}

.meadow-sole img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.meadow-sole {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.meadow-sole a,
.meadow-sole a:hover,
.meadow-sole a:focus,
.meadow-sole a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.meadow-sole .meadow-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.meadow-sole{
            background: #040508;
            border-top: 1px solid rgba(106, 38, 241, 0.22);
            padding: 60px 0 30px 0;
            font-size: 14px;
            color: #64748b;
        }

.meadow-sole .meadow-meadow{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.meadow-sole .meadow-bedrock{
            flex: 1 1 300px;
            min-width: 0;
        }

.meadow-sole .meadow-bedrock-brand{
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.meadow-sole .meadow-bedrock-desc{
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

.meadow-sole .meadow-cluster-sole-links{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

.meadow-sole .meadow-sole-column{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.meadow-sole .meadow-sole-column .meadow-crown{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

.meadow-sole .meadow-sole-column a{
            color: #64748b;
            font-size: 13px;
        }

.meadow-sole .meadow-sole-column a:hover{
            color: #00f2fe;
        }

.meadow-sole .meadow-tail{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }