/* 变量与基底语法 */
:root {
    --aura-primary: #e8a868;
    --aura-primary-dark: #d09050;
    --aura-primary-light: #fdf3e9;
    --aura-bg: #f9f8f6;
    --aura-surface: #ffffff;
    --aura-text-main: #1a1b1e;
    --aura-text-cipher: #4a4d55;
    --aura-text-muted: #8a8d95;
    --aura-radius: 8px;
    --aura-shadow: 0 10px 30px rgba(0,0,0,0.03);
    --aura-shadow-hover: 0 15px 40px rgba(232,168,104,0.15);
    --aura-transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--aura-bg);
    color: var(--aura-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 强制：文本换行规范 */
.cipher-node,
.peak-node,
p, h1, h2, h3, h4, h5, h6, span, a, li {
    word-break: break-word;
    overflow-wrap: break-word;
}
p { word-break: keep-all; }
h1, h2, h3 { white-space: normal; }

/* 基础版心与容器 */
.tunnel-cloak {
    display: block;
    width: 100%;
    min-height: 100vh;
}

.global-cloak {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* 强制：Flexbox规范 */
.flex-veil {
    display: flex;
    flex-wrap: wrap;
}
.flex-veil > * {
    min-width: 0;
}

/* 导航栏复用样式 */
.apex-veil {
    position: sticky;
    top: 0;
    background: rgba(249, 248, 246, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
}

.apex-tunnel {
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

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

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

.helm-wire {
    text-decoration: none;
    color: var(--aura-text-cipher);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--aura-transition);
}

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

.helm-wire.active {
    color: var(--aura-primary);
    font-weight: 700;
    position: relative;
}

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

/* 按钮通用语法 */
.ping-latch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--aura-primary);
    color: var(--aura-surface);
    font-weight: 600;
    border-radius: var(--aura-radius);
    border: 1px solid var(--aura-primary);
    text-decoration: none;
    transition: var(--aura-transition);
    cursor: pointer;
}

.ping-latch:hover,
.ping-latch:focus {
    background: var(--aura-primary-dark);
    border-color: var(--aura-primary-dark);
    transform: translateY(-2px);
}

.ping-outline {
    background: transparent;
    color: var(--aura-primary);
}

.ping-outline:hover,
.ping-outline:focus {
    background: var(--aura-primary-light);
    color: var(--aura-primary-dark);
}

/* 区块 1：Hero (Mosaic Collage 变体) */
.portal-veil {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--aura-bg) 0%, #fffaf5 100%);
    overflow: hidden;
}

.portal-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.portal-cluster > * { min-width: 0; }

.portal-cipher-node {
    flex: 1 1 500px;
    z-index: 2;
}

.portal-peak {
    color: var(--aura-text-main);
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.cipher-tunnel {
    font-size: 1.125rem;
    color: var(--aura-text-cipher);
    margin-bottom: 2rem;
    max-width: 90%;
}

.portal-mask-node {
    flex: 1 1 400px;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 创意种子实现：CSS几何拼贴 */
.mosaic-shape {
    position: absolute;
    border-radius: var(--aura-radius);
    background: var(--aura-surface);
    box-shadow: var(--aura-shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(232, 168, 104, 0.1);
    transition: var(--aura-transition);
}

.mosaic-shape:hover {
    transform: translateY(-5px);
    box-shadow: var(--aura-shadow-hover);
}

.shape-one {
    width: 240px;
    height: 180px;
    top: 10%;
    left: 5%;
    z-index: 3;
    background: linear-gradient(135deg, var(--aura-primary) 0%, var(--aura-primary-dark) 100%);
    color: var(--aura-surface);
}

.shape-two {
    width: 200px;
    height: 220px;
    bottom: 5%;
    right: 10%;
    z-index: 2;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.8);
}

.shape-three {
    width: 160px;
    height: 160px;
    top: 25%;
    right: 0%;
    z-index: 1;
    border-radius: 50%;
    background: var(--aura-primary-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mosaic-cipher-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.shape-one .mosaic-cipher-large { color: var(--aura-surface); }
.shape-two .mosaic-cipher-large { color: var(--aura-primary); }

.mosaic-cipher-small {
    font-size: 1rem;
    opacity: 0.9;
}

/* 区块 2：Pricing Table */
.nexus-veil {
    padding: 6rem 0;
}

.nexus-apex-belt {
    text-align: center;
    margin-bottom: 4rem;
}

.peak-nobreak {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--aura-text-main);
    margin-bottom: 1rem;
}

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

.nexus-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.nexus-cluster > * { min-width: 0; }

.pod-cell {
    flex: 1 1 320px;
    max-width: 400px;
    background: var(--aura-surface);
    border-radius: var(--aura-radius);
    padding: 3rem 2rem;
    box-shadow: var(--aura-shadow);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--aura-transition);
}

.pod-cell:hover {
    transform: translateY(-8px);
    box-shadow: var(--aura-shadow-hover);
}

.pod-featured {
    border: 2px solid var(--aura-primary);
    transform: scale(1.02);
    z-index: 10;
}

.pod-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pod-mark {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aura-primary);
    color: var(--aura-surface);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pod-peak {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aura-text-cipher);
    margin-bottom: 1rem;
    text-align: center;
}

.pod-cost {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--aura-text-main);
}

.cost-symbol {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 500;
}

.cost-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.cost-span {
    font-size: 1rem;
    color: var(--aura-text-muted);
}

.pod-sum {
    text-align: center;
    font-size: 0.875rem;
    color: var(--aura-text-muted);
    margin-bottom: 2rem;
    min-height: 1.5rem;
}

.pod-mesh {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.drop-wire {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--aura-text-cipher);
    font-size: 0.95rem;
}

.glyph-check {
    width: 20px;
    height: 20px;
    color: var(--aura-primary);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pod-cell .ping-latch {
    width: 100%;
}

/* 区块 3：Payment Methods */
.vault-veil {
    padding: 5rem 0;
    background: var(--aura-surface);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.vault-tunnel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}
.vault-tunnel > * { min-width: 0; }

.vault-cipher-node {
    flex: 1 1 400px;
}

.vault-peak {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vault-cluster {
    flex: 1 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.vault-drop {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--aura-bg);
    border-radius: var(--aura-radius);
    border: 1px solid rgba(0,0,0,0.03);
    flex: 1 1 200px;
    transition: var(--aura-transition);
}

.vault-drop:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgba(232, 168, 104, 0.3);
}

.glyph-veil {
    width: 32px;
    height: 32px;
    color: var(--aura-text-cipher);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cipher-bold {
    font-weight: 600;
    color: var(--aura-text-main);
}

/* 区块 4：Guarantees */
.shield-veil {
    padding: 6rem 0;
}

.shield-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}
.shield-cluster > * { min-width: 0; }

.shield-node {
    flex: 1 1 400px;
    text-align: center;
    padding: 2rem;
}

.shield-glyph {
    width: 64px;
    height: 64px;
    color: var(--aura-primary);
    margin: 0 auto 1.5rem;
}

.shield-peak {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 页脚区域 */
.core-veil {
    background: var(--aura-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.core-tunnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.core-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--aura-text-main);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.core-mesh {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.core-wire {
    color: var(--aura-text-cipher);
    text-decoration: none;
    font-weight: 500;
    transition: var(--aura-transition);
}

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

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

/* 响应式断点 */
@media (max-width: 1024px) {
    .pod-featured {
        transform: none;
    }
    .pod-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .helm-mesh {
        display: none; /* 移动端应由JS处理折叠，此处简化呈现 */
    }
    .portal-veil {
        padding: 4rem 0;
    }
    .portal-cluster,
    .vault-tunnel,
    .shield-cluster {
        flex-direction: column;
        gap: 2rem;
    }
    .nexus-cluster {
        flex-direction: column;
        align-items: center;
    }
    .pod-cell {
        width: 100%;
        max-width: 100%;
    }
    .portal-mask-node {
        min-height: 300px;
        width: 100%;
    }
    .shape-one { left: 0; top: 0; width: 200px; height: 140px; }
    .shape-two { right: 0; bottom: 0; width: 180px; height: 180px; }
    .shape-three { display: none; }
}

.route-apex-veil .route-flex-veil{
            display: flex;
            flex-wrap: wrap;
        }

.route-apex-veil .route-flex-veil > *{
            min-width: 0;
        }

.route-apex-veil .route-global-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-apex-veil{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(249, 248, 246, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1.2rem 0;
        }

.route-apex-veil .route-apex-tunnel{
            justify-content: space-between;
            align-items: center;
        }

.route-apex-veil .route-crest{
            display: flex;
            align-items: center;
        }

.route-apex-veil .route-crest img{
            height: 32px;
            width: auto;
        }

.route-apex-veil .route-helm-mesh{
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

.route-apex-veil .route-helm-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #4a4d55;
            position: relative;
            padding: 0.5rem 0;
        }

.route-apex-veil .route-helm-wire:hover{
            color: #e8a868;
        }

.route-apex-veil .route-helm-wire.active{
            color: #e8a868;
        }

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

@media (max-width: 768px){.route-apex-veil .route-helm-mesh{ display: none;  }}

.route-apex-veil {
    background: rgb(249, 248, 246);
    background-image: none;
}

.anchor-core-anchor {
    font-family: var(--font-cipher);
    line-height: 1.7;
    color: var(--aura-text-main);
}
.anchor-core-anchor,
.anchor-core-anchor *,
.anchor-core-anchor *::before,
.anchor-core-anchor *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-core-anchor .anchor-flex-veil{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core-anchor .anchor-flex-veil > *{
            min-width: 0;
        }

.anchor-core-anchor .anchor-global-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core-anchor{
            background: #f9f8f6;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.anchor-core-anchor .anchor-core-tunnel{
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.anchor-core-anchor .anchor-brand-cipher{
            font-family: "Playfair Display", "Noto Serif SC", serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1b1e;
            margin-bottom: 1rem;
            display: block;
        }

.anchor-core-anchor .anchor-core-desc{
            max-width: 300px;
            font-size: 0.9rem;
        }

.anchor-core-anchor .anchor-root-cluster{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.anchor-core-anchor .anchor-root-column{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.anchor-core-anchor .anchor-root-peak{
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.anchor-core-anchor .anchor-root-wire{
            font-size: 0.9rem;
            color: #4a4d55;
        }

.anchor-core-anchor .anchor-root-wire:hover{
            color: #e8a868;
        }

.anchor-core-anchor .anchor-core-bottom{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 0.85rem;
            color: #8a8d95;
        }

@media (max-width: 768px){.anchor-core-anchor .anchor-root-cluster{ gap: 2rem; flex-direction: column; }}