:root {
            --primary: #a94af7;
            --accent: #7a28c2;
            --bg: #ffffff;
            --text: #1a1a1a;
            --muted: #666666;
            --surface: #f8f9fa;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(169, 74, 247, 0.08);
            --transit: 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;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--bg);
            word-break: keep-all;
        }

        /* 导航栏样式 - 继承首页风格 */
        .groop {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }

        .logoz {
            flex-shrink: 0;
        }

        .logoz lixt {
            height: 40px;
            display: block;
        }

        .voxly {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .linx {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transit);
            padding: 8px 12px;
            border-radius: 8px;
        }

        .linx:hover {
            color: var(--primary);
            background: rgba(169, 74, 247, 0.05);
        }

        .linx.active {
            color: var(--primary);
            background: rgba(169, 74, 247, 0.1);
        }

        /* 主体内容布局 */
        .realm {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 语义化区块样式 */
        .scope {
            padding: 80px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Business Hero (Article) */
        .focuz {
            background: radial-gradient(circle at top right, rgba(169, 74, 247, 0.05), transparent);
            border-radius: 24px;
            margin-top: 20px;
            padding: 60px 40px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .unit-intro {
            flex: 1;
            min-width: 300px;
        }

        .capz-realm {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1a1a1a 0%, #a94af7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .tailz-lead {
            font-size: 1.25rem;
            color: var(--muted);
            margin-bottom: 32px;
            max-width: 600px;
        }

        .pict-values {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .nodez-tag {
            background: white;
            padding: 12px 24px;
            border-radius: 30px;
            border: 1px solid #eee;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--accent);
        }

        /* Workflow Panels (Aside) */
        .vivid {
            width: 100%;
            padding: 100px 0;
        }

        .capz-sub {
            width: 100%;
            text-align: center;
            font-size: 2.25rem;
            margin-bottom: 60px;
            color: var(--text);
        }

        .tranz-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .bubbl-work {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid #f0f0f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bubbl-work:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }

        .ikons-large {
            width: 64px;
            height: 64px;
            background: rgba(169, 74, 247, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .titl-capz {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--text);
        }

        .tailz-desc {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* Compliance Info (Div) */
        .broadc {
            width: 100%;
            background: #111;
            color: white;
            padding: 80px 40px;
            border-radius: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .unit-data {
            flex: 1;
            min-width: 300px;
        }

        .capz-light {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .packt-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }

        .titl-stat {
            flex: 1;
            min-width: 140px;
        }

        .capz-num {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .tailz-marka {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 按钮样式 */
        .trigg-pulse {
            display: inline-block;
            padding: 16px 40px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(169, 74, 247, 0.3);
        }

        .trigg-pulse:hover {
            background: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(169, 74, 247, 0.4);
        }

        /* 页脚样式 */
        .strix {
            background: var(--surface);
            padding: 60px 5% 30px;
            margin-top: 80px;
            border-top: 1px solid #eee;
        }

        .bound-strix {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .waypt-brand {
            flex: 1;
            min-width: 250px;
        }

        .capz-brand {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--primary);
        }

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

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

        .capz-strix {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .linx-strix {
            text-decoration: none;
            color: var(--muted);
            font-size: 0.9rem;
            transition: var(--transit);
        }

        .linx-strix:hover {
            color: var(--primary);
        }

        .anchr-tailz {
            width: 100%;
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #ddd;
            font-size: 0.85rem;
            color: #999;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .voxly {
                display: none; /* 简化移动端，实际项目中会使用汉堡菜单 */
            }
            .capz-realm {
                font-size: 2.5rem;
            }
            .focuz {
                padding: 40px 20px;
            }
            .broadc {
                padding: 40px 20px;
            }
        }

        /* SVG 样式 */
        svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

.voxly-groop {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
}
.voxly-groop,
.voxly-groop *,
.voxly-groop *::before,
.voxly-groop *::after {
    box-sizing: border-box;
}

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

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

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

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

.voxly-groop a.voxly-linx {
    --aisite-shell-nav-padding: 8px 12px;
    --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;
}

.voxly-groop a.voxly-linx,
.voxly-groop a.voxly-linx:hover,
.voxly-groop a.voxly-linx:focus,
.voxly-groop a.voxly-linx:active,
.voxly-groop a.voxly-linx.active,
.voxly-groop a.voxly-linx[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);
}

.voxly-groop{ display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid #f4f4f4; }

.voxly-groop .voxly-logoz{ width: 120px; }

.voxly-groop .voxly-logoz img{ width: 100%; height: auto; }

.voxly-groop .voxly-voxly{ display: flex; gap: 20px; }

.voxly-groop .voxly-linx{ text-decoration: none; color: #1a1a1a; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.25s; }

.voxly-groop .voxly-linx:hover{ background: #f4f4f4; }

.voxly-groop .voxly-linx.active{ color: #a94af7; background: #f3e5ff; }

.anchr-strix {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
}
.anchr-strix,
.anchr-strix *,
.anchr-strix *::before,
.anchr-strix *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchr-strix .anchr-linx{ text-decoration: none; color: #1a1a1a; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.25s; }

.anchr-strix .anchr-linx:hover{ background: #f4f4f4; }

.anchr-strix .anchr-linx.active{ color: #a94af7; background: #f3e5ff; }

.anchr-strix{ padding: 40px 20px; text-align: center; color: #666; border-top: 1px solid #f4f4f4; }