/* 视觉基因与变量 */
:root {
    --bg-deep: #050507;
    --bg-surface: #0e0e12;
    --bg-elevated: #16161c;
    --accent: #e42b91;
    --accent-glow: rgba(228, 43, 145, 0.3);
    --accent-dim: rgba(228, 43, 145, 0.1);
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --border-subtle: rgba(255, 255, 255, 0.08);
}

/* 全局重置与基础设置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-deep);
    color: var(--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: all 0.15s ease;
}

/* 强制 Flex / Grid 规则 */
.mesh {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

/* 导航栏复用样式 (保持不变，禁止修改结构和类名) */
.crown {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.tunnel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.crown .tunnel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    flex-wrap: wrap;
}

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

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

.wire {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.wire:hover,
.wire.active {
    color: var(--text-main);
}

.wire.active {
    position: relative;
}

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

/* 页面通用容器与排版 */
.core {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 6rem;
}

.vault {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.apex {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    white-space: normal;
}

.apex-mega {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.apex-major {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: 1rem;
}

.apex-minor {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.rune {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    word-break: keep-all;
}

.rune-sm {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 交互组件与卡片表面 */
.shard {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.02);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shard:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.glyph {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

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

.pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
    border: 1px solid transparent;
    cursor: pointer;
}

.pulse:hover {
    background: #f0339b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 43, 145, 0.4);
}

.wire-inline {
    color: var(--accent);
    border-bottom: 1px solid var(--accent-dim);
}

.wire-inline:hover {
    color: #f0339b;
    border-bottom-color: currentColor;
}

/* 模块特有变体 */
/* 1. Hero: 非对称网格 */
.nexus {
    padding: 80px 0 40px;
    background: radial-gradient(circle at 80% 20%, var(--accent-dim) 0%, transparent 60%);
}

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

.nexus-shell {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    overflow: hidden;
}

.nexus-shell::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* 抽象UI示意组件 */
.mock-band {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mock-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.mock-line {
    height: 8px;
    background: var(--border-subtle);
    border-radius: 4px;
    flex: 1;
}

/* 4. 局域网共享 (div) 居中强调 */
.flare {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    position: relative;
}

/* 5. FAQ 列表 */
.crypt-bead {
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.crypt-bead:last-child {
    border-bottom: none;
}

/* 页脚 */
.sole {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
    background: var(--bg-surface);
}

.sole .mesh {
    justify-content: space-between;
}

.sole-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* 响应式 */
@media (max-width: 768px) {
    .orbit {
        display: none; /* 移动端简化，此处仅作示例，实际需JS配合展开 */
    }
    .apex-mega {
        font-size: 2.2rem;
    }
    .mesh {
        flex-direction: column;
    }
    .bead {
        flex: 1 1 100%;
    }
    .nexus {
        padding: 40px 0;
    }
    .core {
        gap: 3rem;
    }
}

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

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

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

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

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

.orbit-crown a.orbit-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;
}

.orbit-crown a.orbit-wire,
.orbit-crown a.orbit-wire:hover,
.orbit-crown a.orbit-wire:focus,
.orbit-crown a.orbit-wire:active,
.orbit-crown a.orbit-wire.active,
.orbit-crown a.orbit-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);
}

.orbit-crown .orbit-tunnel{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.orbit-crown{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #23232d;
            padding: 1rem 0;
        }

.orbit-crown .orbit-tunnel{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.orbit-crown .orbit-sigil{
            display: flex;
            align-items: center;
        }

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

.orbit-crown .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-crown .orbit-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0b0;
            position: relative;
            padding: 0.5rem 0;
        }

.orbit-crown .orbit-wire:hover, .orbit-crown .orbit-wire.active{
            color: #f0f0f5;
        }

.orbit-crown .orbit-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e42b91;
            transform: scaleX(0);
            transition: all 0.15s ease;
            transform-origin: right;
        }

.orbit-crown .orbit-wire:hover::after, .orbit-crown .orbit-wire.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(228, 43, 145, 0.3);
        }

@media (max-width: 768px){.orbit-crown .orbit-orbit{
                gap: 1rem;
            }}

.orbit-crown {
    background: rgb(5, 5, 7);
    background-image: none;
}

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

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

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

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

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

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

.crypt-sole .crypt-rune{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.crypt-sole .crypt-tunnel{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.crypt-sole .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0b0;
            position: relative;
            padding: 0.5rem 0;
        }

.crypt-sole .crypt-wire:hover, .crypt-sole .crypt-wire.active{
            color: #f0f0f5;
        }

.crypt-sole .crypt-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e42b91;
            transform: scaleX(0);
            transition: all 0.15s ease;
            transform-origin: right;
        }

.crypt-sole .crypt-wire:hover::after, .crypt-sole .crypt-wire.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(228, 43, 145, 0.3);
        }

.crypt-sole{
            background: #050507;
            border-top: 1px solid #23232d;
            padding: 4rem 0 2rem;
        }

.crypt-sole .crypt-sole-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

.crypt-sole .crypt-root{
            font-size: 1.5rem;
            font-weight: 700;
            color: #f0f0f5;
            margin-bottom: 1rem;
            display: inline-block;
        }

.crypt-sole .crypt-crypt{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.crypt-sole .crypt-crypt .crypt-wire{
            color: #a0a0b0;
            padding: 0;
            display: inline-block;
            width: fit-content;
        }

.crypt-sole .crypt-crypt .crypt-wire::after{
            display: none;
        }

.crypt-sole .crypt-crypt .crypt-wire:hover{
            color: #e42b91;
        }

.crypt-sole .crypt-copyright{
            text-align: center;
            color: #a0a0b0;
            font-size: 0.875rem;
            border-top: 1px solid #23232d;
            padding-top: 2rem;
        }