:root {
            /* 继承首页视觉契约变量 */
            --color-primary: #ef488b;
            --color-primary-hover: #d83a77;
            --color-primary-light: #fdf0f5;
            --color-bg: #f8f9fb;
            --color-surface: #ffffff;
            --color-surface-raised: #fbfbfe;
            
            --radius-sm: 12px;
            --radius-md: 19px;
            --radius-lg: 25px;
            
            --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
            --shadow-hover: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
            
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --text-inverse: #ffffff;
            
            --transition: 0.35s ease;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font);
            background-color: var(--color-bg);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* 强制文本换行规范 */
        .skin, .realm, .tail, .pod-hull, .memo {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        /* 避免中文标点孤立 */
        p, li, dd {
            word-break: keep-all;
        }

        /* 强制Flexbox规范 (应用于所有包含内容的弹性容器) */
        .glide, .flock, .soar, .clan-flex, .pod-hull, .dl-row {
            display: flex;
            flex-wrap: wrap;
        }
        
        .glide > *, .flock > *, .soar > *, .clan-flex > *, .pod-hull > *, .dl-row > * {
            min-width: 0;
        }

        /* 【强制复用】导航栏样式 */
        .nose {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            z-index: 100;
        }

        .glide {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            justify-content: space-between;
            align-items: center;
        }

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

        .flock {
            gap: 32px;
            align-items: center;
        }

        .wire {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            transition: color var(--transition);
            white-space: nowrap;
        }

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

        .wire.active {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* 页面皮肤外壳 */
        .skin {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* 主体领域 */
        .realm {
            flex: 1;
            padding-top: 80px; /* 留出导航栏空间 */
        }

        /* Hero区块 - 垂直堆叠变体 */
        .soar {
            width: 100%;
            padding: 80px 24px 60px;
            background: radial-gradient(circle at top center, #ffffff 0%, #f8f9fb 100%);
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .soar-core {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .apex-major {
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.2;
            color: var(--text-main);
            margin: 0 0 24px;
            white-space: normal;
        }

        .ink-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            margin: 0 0 40px;
            max-width: 680px;
            line-height: 1.6;
        }

        .dart-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-lg);
            background-color: var(--color-primary);
            color: var(--text-inverse);
            box-shadow: 0 8px 16px -4px rgba(239, 72, 139, 0.4);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .dart-primary:hover {
            background-color: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -4px rgba(239, 72, 139, 0.5);
            color: var(--text-inverse);
        }

        .lens-frame {
            margin-top: 60px;
            max-width: 1000px;
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(15, 23, 42, 0.04);
            background-color: var(--color-surface);
            transform: translateY(0);
            transition: transform var(--transition);
        }
        
        .lens-frame:hover {
            transform: translateY(-5px);
        }

        .lens-frame img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: inherit;
        }

        /* 平台下载区 */
        .nexus {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .apex-minor {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin: 0 0 16px;
            color: var(--text-main);
            white-space: normal;
        }
        
        .ink-desc {
            text-align: center;
            color: var(--text-muted);
            margin: 0 auto 56px;
            max-width: 600px;
            font-size: 1.1rem;
        }

        /* 网格布局 (符合响应式要求) */
        .clan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 60px;
        }

        .pod-hull {
            background: var(--color-surface);
            padding: 40px 32px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(15, 23, 42, 0.04);
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pod-hull:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        /* 顶部柔和渐变线 */
        .pod-hull::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
            opacity: 0;
            transition: opacity var(--transition);
        }

        .pod-hull:hover::before {
            opacity: 1;
        }

        .glyph-seal {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-md);
            background-color: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--color-primary);
        }

        .glyph-seal svg {
            width: 36px;
            height: 36px;
        }

        .apex-node {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 12px;
            white-space: normal;
        }

        .ink-node {
            color: var(--text-muted);
            margin: 0 0 32px;
            flex-grow: 1;
        }

        .dart-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-md);
            background-color: var(--color-surface-raised);
            color: var(--color-primary);
            border: 2px solid var(--color-primary-light);
            transition: all var(--transition);
            width: 100%;
        }

        .dart-secondary:hover {
            background-color: var(--color-primary);
            color: var(--text-inverse);
            border-color: var(--color-primary);
        }
        
        .lens-band {
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-top: 24px;
            box-shadow: var(--shadow-sm);
        }
        
        .lens-band img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 底部信息面板 */
        .base-fold {
            background-color: var(--color-surface);
            border-top: 1px solid rgba(15, 23, 42, 0.05);
            padding: 80px 24px;
        }

        .fold-core {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .memo-board {
            background: var(--color-bg);
            border-radius: var(--radius-lg);
            padding: 48px;
            border: 1px solid rgba(15, 23, 42, 0.04);
        }

        .dl-clan {
            margin: 0;
            padding: 0;
        }

        .dl-row {
            padding: 24px 0;
            border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
            align-items: baseline;
        }

        .dl-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .dl-row:first-child {
            padding-top: 0;
        }

        .dl-term {
            font-weight: 600;
            color: var(--text-main);
            flex: 0 0 30%;
            min-width: 150px;
            margin: 0;
            padding-right: 16px;
        }

        .dl-desc {
            color: var(--text-muted);
            margin: 0;
            flex: 1;
        }

        /* 页脚区域 */
        .tail {
            background-color: #ffffff;
            border-top: 1px solid rgba(15, 23, 42, 0.06);
            padding: 60px 24px 40px;
        }

        .tail-core {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .tail-mark {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .tail-ink {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 24px;
        }

        .tail-flock {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-bottom: 0;
            padding: 0;
            list-style: none;
        }

        .tail-flock > * {
            min-width: 0;
        }

        .tail-wire {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition);
        }

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

        /* 响应式调整 */
        @media (max-width: 768px) {
            .flock {
                display: none; /* 移动端隐藏菜单，保持结构简单 */
            }
            
            .soar {
                padding-top: 100px;
            }

            .clan-grid {
                grid-template-columns: 1fr;
            }
            
            .memo-board {
                padding: 32px 24px;
            }

            .dl-term, .dl-desc {
                flex: 1 1 100%;
            }
            
            .dl-term {
                margin-bottom: 8px;
            }
        }

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

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

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

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

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

.glide-nose a.glide-wire {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

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

.glide-nose, .glide-nose .glide-glide, .glide-nose .glide-flock{
            display: flex;
            flex-wrap: wrap;
        }

.glide-nose{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            justify-content: center;
        }

.glide-nose .glide-glide{
            width: 100%;
            max-width: 1280px;
            padding: 16px 24px;
            align-items: center;
            justify-content: space-between;
        }

.glide-nose .glide-mark{
            flex: 0 0 auto;
            width: 180px; 
        }

.glide-nose .glide-flock{
            flex: 1 1 auto;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
        }

.glide-nose .glide-wire{
            padding: 8px 16px;
            font-weight: 500;
            color: #475569;
            border-radius: 12px;
        }

.glide-nose .glide-wire:hover, .glide-nose .glide-wire:focus{
            color: #ef488b;
            background-color: #fdf0f5;
            transform: translateY(-1px);
        }

.glide-nose .glide-wire.active{
            color: #ef488b;
            background-color: #fdf0f5;
            font-weight: 600;
        }

@media (max-width: 768px){.glide-nose .glide-flock{
                width: 100%;
                justify-content: flex-start;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(15, 23, 42, 0.05);
                overflow-x: auto;
                flex-wrap: nowrap; 
            }

.glide-nose .glide-wire{
                white-space: nowrap;
            }}

.glide-nose {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-skin-global, .anchor-skin-global .anchor-nose, .anchor-skin-global .anchor-glide, .anchor-skin-global .anchor-flock, .anchor-skin-global .anchor-hull, .anchor-skin-global .anchor-soar, .anchor-skin-global .anchor-soar-ink-band, .anchor-skin-global .anchor-soar-visual-band, .anchor-skin-global .anchor-clan-actions, .anchor-skin-global .anchor-realm, .anchor-skin-global .anchor-realm-inner, .anchor-skin-global .anchor-realm-ink, .anchor-skin-global .anchor-clan-features, .anchor-skin-global .anchor-node-feature, .anchor-skin-global .anchor-pod, .anchor-skin-global .anchor-pod-inner, .anchor-skin-global .anchor-cloud, .anchor-skin-global .anchor-cloud-inner, .anchor-skin-global .anchor-clan-grid, .anchor-skin-global .anchor-fold, .anchor-skin-global .anchor-tail, .anchor-skin-global .anchor-tail-inner{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-skin-global{
            width: 100%;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-skin-global .anchor-hull{
            width: 100%;
            flex-direction: column;
            flex-grow: 1;
        }

.anchor-skin-global .anchor-nose{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            justify-content: center;
        }

.anchor-skin-global .anchor-glide{
            width: 100%;
            max-width: 1280px;
            padding: 16px 24px;
            align-items: center;
            justify-content: space-between;
        }

.anchor-skin-global .anchor-mark{
            flex: 0 0 auto;
            width: 180px; 
        }

.anchor-skin-global .anchor-flock{
            flex: 1 1 auto;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
        }

.anchor-skin-global .anchor-wire{
            padding: 8px 16px;
            font-weight: 500;
            color: #475569;
            border-radius: 12px;
        }

.anchor-skin-global .anchor-wire:hover, .anchor-skin-global .anchor-wire:focus{
            color: #ef488b;
            background-color: #fdf0f5;
            transform: translateY(-1px);
        }

.anchor-skin-global .anchor-wire.active{
            color: #ef488b;
            background-color: #fdf0f5;
            font-weight: 600;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-flock{
                width: 100%;
                justify-content: flex-start;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(15, 23, 42, 0.05);
                overflow-x: auto;
                flex-wrap: nowrap; 
            }

.anchor-skin-global .anchor-wire{
                white-space: nowrap;
            }}

.anchor-skin-global .anchor-soar{
            width: 100%;
            padding: 80px 24px 0;
            background: radial-gradient(circle at top center, #ffffff 0%, #f8f9fb 100%);
            flex-direction: column;
            align-items: center;
        }

.anchor-skin-global .anchor-soar-ink-band{
            width: 100%;
            max-width: 900px; 
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }

.anchor-skin-global .anchor-apex-major{
            width: 100%;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: #0f172a;
            margin-bottom: 24px;
            white-space: normal; 
        }

.anchor-skin-global .anchor-apex-major span{
            color: #ef488b;
        }

.anchor-skin-global .anchor-ink-lead{
            width: 100%;
            max-width: 720px;
            font-size: clamp(1.125rem, 2vw, 1.35rem);
            color: #475569;
            margin-bottom: 40px;
            line-height: 1.8;
            word-break: keep-all; 
        }

.anchor-skin-global .anchor-clan-actions{
            width: 100%;
            justify-content: center;
            gap: 16px;
        }

.anchor-skin-global .anchor-dart{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 25px;
            cursor: pointer;
            gap: 10px;
        }

.anchor-skin-global .anchor-dart-primary{
            background-color: #ef488b;
            color: #ffffff;
            box-shadow: 0 8px 16px -4px rgba(239, 72, 139, 0.4);
        }

.anchor-skin-global .anchor-dart-primary:hover, .anchor-skin-global .anchor-dart-primary:focus{
            background-color: #d83a77;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -4px rgba(239, 72, 139, 0.5);
        }

.anchor-skin-global .anchor-dart-secondary{
            background-color: #ffffff;
            color: #0f172a;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.05);
        }

.anchor-skin-global .anchor-dart-secondary:hover, .anchor-skin-global .anchor-dart-secondary:focus{
            background-color: #fbfbfe;
            color: #ef488b;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(239, 72, 139, 0.08);
        }

.anchor-skin-global .anchor-soar-visual-band{
            width: 100%;
            max-width: 1280px;
            justify-content: center;
            margin-bottom: -60px; 
            z-index: 10;
        }

.anchor-skin-global .anchor-soar-visual-band svg{
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(239, 72, 139, 0.15);
            background: #ffffff;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-soar{ padding-top: 48px; }

.anchor-skin-global .anchor-clan-actions{ flex-direction: column; }

.anchor-skin-global .anchor-dart{ width: 100%; }}

.anchor-skin-global .anchor-realm{
            width: 100%;
            padding: 140px 24px 80px;
            background-color: #ffffff;
            justify-content: center;
            position: relative;
        }

.anchor-skin-global .anchor-realm::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239, 72, 139, 0.2), transparent);
        }

.anchor-skin-global .anchor-realm-inner{
            width: 100%;
            max-width: 1280px;
            align-items: center;
            gap: 60px;
        }

.anchor-skin-global .anchor-realm-ink{
            flex: 1 1 400px;
            flex-direction: column;
        }

.anchor-skin-global .anchor-apex{
            width: 100%;
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.2;
            white-space: normal;
        }

.anchor-skin-global .anchor-ink{
            width: 100%;
            font-size: 1.125rem;
            color: #475569;
            margin-bottom: 40px;
        }

.anchor-skin-global .anchor-clan-features{
            width: 100%;
            flex-direction: column;
            gap: 24px;
        }

.anchor-skin-global .anchor-node-feature{
            width: 100%;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: #fbfbfe;
            border-radius: 19px;
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: all 0.35s ease;
        }

.anchor-skin-global .anchor-node-feature:hover{
            transform: translateX(8px);
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border-color: rgba(239, 72, 139, 0.2);
        }

.anchor-skin-global .anchor-glyph-skin{
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: #fdf0f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef488b;
        }

.anchor-skin-global .anchor-node-ink{
            flex: 1 1 0;
        }

.anchor-skin-global .anchor-apex-minor{
            font-size: 1.125rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
        }

.anchor-skin-global .anchor-ink-micro{
            font-size: 0.95rem;
            color: #475569;
        }

.anchor-skin-global .anchor-realm-lens{
            flex: 1 1 400px;
            justify-content: center;
        }

.anchor-skin-global .anchor-realm-lens img{
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(239, 72, 139, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-realm-lens:hover img{
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
        }

.anchor-skin-global .anchor-pod{
            width: 100%;
            padding: 100px 24px;
            background-color: #f8f9fb;
            justify-content: center;
        }

.anchor-skin-global .anchor-pod-inner{
            width: 100%;
            max-width: 900px; 
            flex-direction: column;
            gap: 48px;
        }

.anchor-skin-global .anchor-pod-hull{
            width: 100%;
            background: #ffffff;
            padding: 48px;
            border-radius: 25px;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.04);
        }

.anchor-skin-global .anchor-pod-hull h3{
            font-size: 1.75rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.anchor-skin-global .anchor-pod-hull h3::before{
            content: '';
            display: block;
            width: 6px;
            height: 24px;
            background: #ef488b;
            border-radius: 4px;
        }

.anchor-skin-global .anchor-pod-hull p{
            font-size: 1.05rem;
            color: #475569;
            margin-bottom: 20px;
            line-height: 1.8;
            word-break: keep-all;
        }

.anchor-skin-global .anchor-pod-hull p:last-child{
            margin-bottom: 0;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-pod-hull{ padding: 32px 20px; }}

.anchor-skin-global .anchor-cloud{
            width: 100%;
            padding: 80px 24px 120px;
            background-color: #0f172a;
            color: #ffffff;
            justify-content: center;
        }

.anchor-skin-global .anchor-cloud-inner{
            width: 100%;
            max-width: 1280px;
            flex-direction: column;
            align-items: center;
        }

.anchor-skin-global .anchor-cloud-nose{
            width: 100%;
            max-width: 600px;
            text-align: center;
            margin-bottom: 60px;
        }

.anchor-skin-global .anchor-cloud-nose .anchor-apex{
            color: #ffffff;
        }

.anchor-skin-global .anchor-cloud-nose .anchor-ink{
            color: #94a3b8;
        }

.anchor-skin-global .anchor-clan-grid{
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

.anchor-skin-global .anchor-fold{
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: 40px 32px;
            flex-direction: column;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

.anchor-skin-global .anchor-fold::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #ef488b;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-fold:hover, .anchor-skin-global .anchor-fold:focus-within{
            background-color: rgba(255, 255, 255, 0.06);
            transform: translateY(-8px);
            border-color: rgba(239, 72, 139, 0.3);
        }

.anchor-skin-global .anchor-fold:hover::before, .anchor-skin-global .anchor-fold:focus-within::before{
            transform: scaleX(1);
        }

.anchor-skin-global .anchor-fold .anchor-glyph-skin{
            background: rgba(239, 72, 139, 0.15);
            margin-bottom: 24px;
        }

.anchor-skin-global .anchor-fold .anchor-apex-minor{
            color: #ffffff;
            font-size: 1.35rem;
            margin-bottom: 12px;
        }

.anchor-skin-global .anchor-fold .anchor-ink-micro{
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 32px;
            flex-grow: 1;
        }

.anchor-skin-global .anchor-fold-spark{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ef488b;
            font-weight: 600;
            font-size: 1.05rem;
        }

.anchor-skin-global .anchor-fold-spark svg{
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-fold:hover .anchor-fold-spark svg{
            transform: translateX(4px);
        }

.anchor-skin-global .anchor-tail{
            width: 100%;
            padding: 48px 24px;
            background-color: #080b14;
            color: #94a3b8;
            justify-content: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-skin-global .anchor-tail-inner{
            width: 100%;
            max-width: 1280px;
            justify-content: space-between;
            align-items: center;
        }

.anchor-skin-global .anchor-tail-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.anchor-skin-global .anchor-tail-links{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

.anchor-skin-global .anchor-tail-links a:hover{
            color: #ef488b;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-tail-inner{ flex-direction: column; gap: 24px; text-align: center; }

.anchor-skin-global .anchor-tail-links{ justify-content: center; }}