:root {
            --primary: #8c42e6;
            --primary-soft: rgba(140, 66, 230, 0.1);
            --bg: #ffffff;
            --text: #1a1a1a;
            --text-dim: #666666;
            --radius: 16px;
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-strong: 0 20px 40px rgba(140, 66, 230, 0.15);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 强制复用导航栏 */
        .brim {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .sigil img {
            height: 32px;
            width: auto;
        }

        .knot {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .knot-vine {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
        }

        .knot-vine:hover, .knot-vine.active {
            color: var(--primary);
        }

        /* 主体容器风格 */
        .hollow {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Hero 变体：强调叙事感 */
        .flare {
            padding: 12rem 0 6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .flare-aura {
            flex: 1;
            min-width: 320px;
        }

        .apex {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .apex em {
            font-style: normal;
            color: var(--primary);
        }

        /* 内容叙事块 */
        .sphere {
            padding: 5rem 0;
            position: relative;
        }

        /* 文章容器：隐形通讯机制 */
        .veix-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            background: #fafafa;
            padding: 4rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .lens-veil {
            flex: 1;
            min-width: 300px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .lens-veil img {
            width: 100%;
            display: block;
        }

        .aura-cosmo {
            flex: 1.2;
            min-width: 320px;
        }

        .vessel-apex {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* 教程列表容器 */
        .veix-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .cellum {
            padding: 2.5rem;
            background: #ffffff;
            border: 1px solid #eee;
            border-radius: var(--radius);
            transition: all 0.25s ease;
        }

        .cellum:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-strong);
        }

        .glyph-framex {
            width: 56px;
            height: 56px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        /* 隐私合规区 */
        .veix-policy {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4d 100%);
            color: #fff;
            padding: 5rem;
            border-radius: 24px;
            margin-top: 4rem;
        }

        .veix-policy .apex {
            color: #fff;
            font-size: 2.5rem;
        }

        .flock-leaf {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .leaf-cosmo {
            padding-left: 1.5rem;
            border-left: 3px solid var(--primary);
        }

        /* 按钮样式 */
        .snap {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            transition: all 0.25s ease;
            margin-top: 1rem;
            border: none;
            cursor: pointer;
        }

        .snap:hover {
            box-shadow: 0 8px 20px rgba(140, 66, 230, 0.4);
            transform: scale(1.02);
        }

        /* 底部 */
        .curb {
            margin-top: 8rem;
            padding: 4rem 5%;
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }

        .sedim {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .finis {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .brim { padding: 1rem 5%; }
            .knot { gap: 1rem; }
            .flare { padding-top: 8rem; }
            .veix-intro { padding: 2rem; }
            .veix-policy { padding: 2.5rem; }
        }

.vortex-brim {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--text);
}
.vortex-brim,
.vortex-brim *,
.vortex-brim *::before,
.vortex-brim *::after {
    box-sizing: border-box;
}

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

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

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

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

.vortex-brim a.vortex-knot-vine {
    --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;
}

.vortex-brim a.vortex-knot-vine,
.vortex-brim a.vortex-knot-vine:hover,
.vortex-brim a.vortex-knot-vine:focus,
.vortex-brim a.vortex-knot-vine:active,
.vortex-brim a.vortex-knot-vine.active,
.vortex-brim a.vortex-knot-vine[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);
}

.vortex-brim{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

.vortex-brim .vortex-knot{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.vortex-brim .vortex-knot-vine{
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            transition: color 0.25s ease;
        }

.vortex-brim .vortex-knot-vine:hover, .vortex-brim .vortex-knot-vine.active{
            color: #8c42e6;
        }

.vortex-brim .vortex-sigil img{
            height: 32px;
            width: auto;
        }

@media (max-width: 768px){.vortex-brim .vortex-knot{ display: none; }}

.datum-curb {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--text);
}
.datum-curb,
.datum-curb *,
.datum-curb *::before,
.datum-curb *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.datum-curb{
            padding: 4rem 5%;
            text-align: center;
            border-top: 1px solid #eee;
            margin-top: 4rem;
        }