/* 变量体系 - 继承首页视觉基因 */
:root {
    --aura-primary: #df72aa;
    --aura-primary-hover: #c95a92;
    --aura-primary-light: #fce4ec;
    --aura-bg: #fcfcfd;
    --aura-surface: #ffffff;
    --aura-text-main: #1d1d1f;
    --aura-text-muted: #86868b;
    --aura-border: rgba(0, 0, 0, 0.08);
    --aura-radius: 14px;
    --aura-radius-lg: 24px;
    --aura-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --aura-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    --aura-transition: all 0.25s ease;
    --aura-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 全局重置与基础排版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--aura-font);
    background-color: var(--aura-bg);
    color: var(--aura-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-wrap: break-word;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 布局工具 */
.mesh {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

/* --- 强制复用导航栏样式 --- */
.apex {
    width: 100%;
    background-color: rgba(252, 252, 253, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--aura-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.radar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

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

.path {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    min-width: 0;
}

.wire {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--aura-text-main);
    position: relative;
    padding: 0.25rem 0;
}

.wire:hover {
    color: var(--aura-primary);
}

.wire.active {
    color: var(--aura-primary);
}

.wire.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--aura-primary);
    border-radius: 2px;
}

/* --- 页面骨架与视觉容器 --- */
main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Hero 区域 (变体：左图右文结构，极简强调 UI) */
.portal {
    width: 100%;
    padding: 5rem 0 7rem;
    background: radial-gradient(circle at 85% 15%, rgba(223, 114, 170, 0.1), transparent 40%),
                linear-gradient(180deg, var(--aura-bg) 0%, #f7f7f9 100%);
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.portal .mesh {
    align-items: center;
    gap: 4rem;
}

.veil {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal .crest {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--aura-text-main);
    white-space: normal;
}

.portal .cipher {
    font-size: 1.125rem;
    color: var(--aura-text-muted);
    max-width: 90%;
    word-break: keep-all;
}

.lens-veil {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.lens {
    border-radius: var(--aura-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--aura-border);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.lens-veil:hover .lens {
    transform: translateY(-5px);
}

/* 下载卡片区域 (网格对比) */
.armor {
    width: 100%;
    padding: 7rem 0;
    background-color: var(--aura-surface);
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.armor-apex {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    min-width: 0;
}

.armor-apex .crest {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
}

.armor-apex .cipher {
    color: var(--aura-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.pool {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.vault {
    background: var(--aura-surface);
    border: 1px solid var(--aura-border);
    border-radius: var(--aura-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--aura-shadow);
    transition: var(--aura-transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.vault::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--aura-transition);
}

.vault:hover {
    box-shadow: var(--aura-shadow-hover);
    transform: translateY(-4px);
}

.vault:hover::before {
    background: var(--aura-primary);
}

.glyph {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aura-bg);
    border-radius: 16px;
    color: var(--aura-primary);
    margin-bottom: 0.5rem;
}

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

.vault .crest {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.vault .cipher {
    color: var(--aura-text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.beam {
    width: 100%;
    height: 1px;
    background-color: var(--aura-border);
    margin: 0.5rem 0;
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    font-size: 0.85rem;
    color: var(--aura-text-muted);
}

.specs-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-width: 0;
}

.warp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--aura-surface);
    background-color: var(--aura-primary);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(223, 114, 170, 0.25);
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.warp:hover {
    background-color: var(--aura-primary-hover);
    box-shadow: 0 6px 20px rgba(223, 114, 170, 0.35);
    transform: translateY(-2px);
    color: var(--aura-surface);
}

.warp.outline {
    background-color: transparent;
    color: var(--aura-text-main);
    border-color: var(--aura-border);
    box-shadow: none;
}

.warp.outline:hover {
    border-color: var(--aura-primary);
    color: var(--aura-primary);
}

/* 步骤区域 (流程容器) */
.tunnel {
    width: 100%;
    padding: 7rem 0;
    background-color: var(--aura-bg);
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.orbit {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
    min-width: 0;
}

/* PC端连线 */
@media (min-width: 769px) {
    .orbit::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: linear-gradient(90deg, var(--aura-primary-light) 0%, var(--aura-primary) 50%, var(--aura-primary-light) 100%);
        opacity: 0.3;
        z-index: 0;
    }
}

.node {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent;
}

.node-glyph {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--aura-surface);
    border: 2px solid var(--aura-primary-light);
    color: var(--aura-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--aura-shadow);
    transition: var(--aura-transition);
}

.node:hover .node-glyph {
    background-color: var(--aura-primary);
    color: var(--aura-surface);
    border-color: var(--aura-primary);
    transform: scale(1.1);
}

.node .crest {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.node .cipher {
    color: var(--aura-text-muted);
    font-size: 0.95rem;
}

/* 页脚区域 */
.root {
    width: 100%;
    background-color: var(--aura-surface);
    border-top: 1px solid var(--aura-border);
    padding: 4rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.crypt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.crypt-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    min-width: 0;
}

.anchor-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
}

.anchor-brand .crest {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aura-text-main);
    letter-spacing: -0.02em;
}

.anchor-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    min-width: 0;
}

.anchor-pool {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.anchor-pool .crest {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--aura-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.anchor-pool .wire {
    font-size: 0.9rem;
    color: var(--aura-text-muted);
}

.crypt-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--aura-border);
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 0;
}

.crypt-bottom .cipher {
    font-size: 0.85rem;
    color: var(--aura-text-muted);
}

/* 响应式断点 */
@media (max-width: 768px) {
    .radar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .path {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    .portal {
        padding: 3rem 0 4rem;
    }
    
    .portal .crest {
        font-size: 2rem;
    }
    
    .orbit {
        flex-direction: column;
        gap: 3rem;
    }
    
    .node-glyph {
        margin-bottom: 1rem;
    }
    
    .crypt-top {
        flex-direction: column;
    }
    
    .anchor-links {
        gap: 2rem;
        flex-direction: column;
    }
    
    .crypt-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

.route-apex a.route-wire {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.route-apex a.route-wire,
.route-apex a.route-wire:hover,
.route-apex a.route-wire:focus,
.route-apex a.route-wire:active,
.route-apex a.route-wire.active,
.route-apex a.route-wire[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);
}

.route-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

.route-apex .route-radar{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            min-width: 0;
        }

.route-apex .route-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-sigil img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-apex .route-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.route-apex .route-wire:hover{
            color: #df72aa;
        }

.route-apex .route-wire.active{
            color: #df72aa;
        }

.route-apex .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-apex .route-radar{
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

.route-apex .route-path{
                justify-content: center;
                gap: 1rem;
            }}

.route-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.crypt-root .crypt-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.crypt-root .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.crypt-root .crypt-wire:hover{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

.crypt-root{
            background-color: #ffffff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

.crypt-root .crypt-crypt{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.crypt-root .crypt-anchor{
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
        }

.crypt-root .crypt-cipher{
            font-size: 0.875rem;
            margin: 0;
        }

.crypt-root .crypt-path{
            gap: 1.5rem;
        }

.crypt-root .crypt-wire{
            font-size: 0.875rem;
            color: #86868b;
        }

@media (max-width: 768px){.crypt-root .crypt-path{
                justify-content: center;
                gap: 1rem;
            }

.crypt-root .crypt-crypt{
                flex-direction: column;
                text-align: center;
            }}