/* =========================================
   系统变量与核心基底 (继承视觉家族)
   ========================================= */
:root {
    --bg: #09090b;
    --surface: #121214;
    --surface-elevated: #1c1c1f;
    --primary: #17dfdf;
    --primary-dim: rgba(23, 223, 223, 0.15);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dark: #000000;
    --radius: 8px;
    --radius-sm: 4px;
    --transition: 0.35s ease;
    --border: #3f3f46;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text-main);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* =========================================
   排版系统与通用约束
   ========================================= */
h1, h2, h3, h4, p {
    margin: 0;
    white-space: normal;
}

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

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

/* 强制结构约束 */
.mesh {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Flexbox 强制规则封装类 */
.pod-flex {
    display: flex;
    flex-wrap: wrap;
}
.pod-flex > * {
    min-width: 0;
}

/* =========================================
   导航栏 (强制复用)
   ========================================= */
.apex {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.seal {
    display: flex;
    align-items: center;
}

.seal img {
    height: 28px;
    width: auto;
}

.wire {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.wire > * { min-width: 0; }

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

.tie:hover {
    color: var(--text-main);
}

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

/* =========================================
   组件库：按钮 (Ping) 与 徽章 (Rune)
   ========================================= */
.ping-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary);
    font-size: 1rem;
    cursor: pointer;
    gap: 0.75rem;
}

.ping-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-dim);
    transform: translateY(-2px);
}

.ping-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-main);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    cursor: pointer;
}

.ping-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-dim);
}

.ping-lore {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}
.ping-lore:hover {
    color: var(--primary);
}

.rune-svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* =========================================
   排版类：标题 (Peak) 与 文本 (Lore)
   ========================================= */
.peak-xl {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.peak-xl span {
    color: var(--primary);
}

.peak-lg {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.peak-md {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.lore-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.lore-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   1. Hero 区块 (Nova) - 获取入口
   ========================================= */
.nova {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* 装饰性背景光晕 */
.nova::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, var(--primary-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.nova-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nova-actions {
    gap: 1.5rem;
    align-items: center;
}

.lens-frame {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    background: var(--surface);
    padding: 0.5rem;
    position: relative;
}

.lens-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    pointer-events: none;
}

.lens-core {
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    width: 100%;
}

/* =========================================
   2. 平台发行版区块 (Beacon) - 比较矩阵
   ========================================= */
.beacon {
    padding: 5rem 0;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
}

.beacon-head {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pod-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.node {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.node:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.node-rune {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.node-rune svg {
    width: 24px;
    height: 24px;
}

.node-push {
    margin-top: auto;
    padding-top: 2rem;
}

/* =========================================
   3. 完整性校验区块 (Flare) - 附加信息 (Div)
   ========================================= */
.flare {
    padding: 6rem 0;
    background: var(--bg);
}

.shell-secure {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border: 1px solid var(--border);
    border-top-color: rgba(23, 223, 223, 0.3);
    border-radius: var(--radius);
    padding: 4rem;
    position: relative;
}

.secure-peak {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.secure-peak svg {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.pod-hashes {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bead-hash {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.bead-hash > * { min-width: 0; }

.bead-aura {
    font-weight: 600;
    color: var(--text-main);
    min-width: 180px;
}

.bead-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: var(--text-muted);
    font-size: 0.875rem;
    word-break: break-all;
    flex: 1;
}

.vein {
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}

.lore-tie {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}
.lore-tie:hover {
    text-decoration-color: var(--primary);
}

/* =========================================
   页脚 (Wake)
   ========================================= */
.wake {
    border-top: 1px solid var(--border);
    padding: 4rem 0;
    background: var(--surface);
}

.wake-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.wake-grid > * { min-width: 0; }

.root {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.05em;
}

.wake-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.wake-links > * { min-width: 0; }

/* =========================================
   响应式断点
   ========================================= */
@media (max-width: 1024px) {
    .nova-grid {
        gap: 2rem;
    }
    .shell-secure {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nova {
        padding: 4rem 0;
    }
    .nova-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nova-lore {
        order: 1;
    }
    .nova-lens-shell {
        order: 2;
    }
    .lore-lead {
        margin-left: auto;
        margin-right: auto;
    }
    .pod-actions {
        justify-content: center;
    }
    .bead-hash {
        flex-direction: column;
        gap: 0.5rem;
    }
    .orbit {
        flex-direction: column;
        gap: 1.5rem;
    }
    .wire {
        justify-content: center;
    }
    .wake-grid {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

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

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

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

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

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

.orbit-apex a.orbit-tie {
    --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-apex a.orbit-tie,
.orbit-apex a.orbit-tie:hover,
.orbit-apex a.orbit-tie:focus,
.orbit-apex a.orbit-tie:active,
.orbit-apex a.orbit-tie.active,
.orbit-apex a.orbit-tie[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-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid #27272a;
        }

.orbit-apex .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.orbit-apex .orbit-orbit > *{ min-width: 0; }

.orbit-apex .orbit-seal img{
            height: 28px;
            display: block;
        }

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

.orbit-apex .orbit-wire > *{ min-width: 0; }

.orbit-apex .orbit-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-apex .orbit-tie:hover, .orbit-apex .orbit-tie.active{
            color: #f4f4f5;
        }

.orbit-apex .orbit-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

@media (max-width: 1024px){.orbit-apex .orbit-wire{
                display: none; 
            }}

.orbit-apex {
    background: rgb(9, 9, 11);
    background-image: none;
}

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

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

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

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

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

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

.root-wake .root-lore-md{ font-size: 1rem; color: #a1a1aa; }

.root-wake .root-mesh-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-wake .root-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.root-wake .root-tie:hover, .root-wake .root-tie.active{
            color: #f4f4f5;
        }

.root-wake .root-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

.root-wake{
            border-top: 1px solid #27272a;
            background: #121214;
            padding: 4rem 0 2rem;
        }

.root-wake .root-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }

.root-wake .root-root > *{ min-width: 0; }

.root-wake .root-root-brand{
            flex: 1 1 300px;
        }

.root-wake .root-brand-lore{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f4f4f5;
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
        }

.root-wake .root-root-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.root-wake .root-root-links > *{ min-width: 0; }

.root-wake .root-tie-pod{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.root-wake .root-tie-peak{
            font-size: 0.875rem;
            font-weight: 600;
            color: #f4f4f5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.root-wake .root-echo-bottom{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #27272a;
            text-align: center;
            color: #a1a1aa;
            font-size: 0.875rem;
        }