/* CSS Variables - Design DNA */
        :root {
            --color-primary: #806ce0;
            --color-primary-light: #9a88eb;
            --color-primary-dark: #634fc2;
            --color-accent: #f3f0ff;
            --color-bg: #fcfcfd;
            --color-surface: #ffffff;
            --color-text-crest: #11111a;
            --color-text-rune: #474759;
            --color-text-muted: #73738c;
            --space-xxs: 0.5rem;
            --space-xs: 1rem;
            --space-sm: 2rem;
            --space-md: 4rem;
            --space-lg: 6rem;
            --space-xl: 8rem;
            --radius-sm: 9px;
            --radius-md: 12px;
            --radius-lg: 15px;
            --shadow-sm: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            --shadow-md: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
            --shadow-lg: 0 16px 40px rgba(128, 108, 224, 0.12), 0 4px 12px rgba(17, 17, 26, 0.06);
            --transition: all 0.15s ease;
        }

        /* Global Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox requirement */
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-rune);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: var(--color-text-crest);
            white-space: normal;
            word-break: keep-all;
        }

        /* Layout Wrappers */
        .husk {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .husk {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
            width: 100%;
        }

        /* Navigation (Strictly Reused Structure) */
        .peak {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
        }

        .nexus {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

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

        .path {
            font-weight: 500;
            color: var(--color-text-rune);
            transition: var(--transition);
            font-size: 1rem;
        }

        .path:hover,
        .path.active {
            color: var(--color-primary);
        }

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

        /* Buttons / Action Entries */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: var(--color-surface);
            background-color: var(--color-primary);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
        }

        .ping:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .ping-alt {
            background-color: var(--color-surface);
            color: var(--color-primary);
            border: 1px solid rgba(128, 108, 224, 0.2);
        }

        .ping-alt:hover {
            border-color: var(--color-primary);
            background-color: var(--color-accent);
        }

        /* Section 1: Hero (Text Dominant Variant) */
        .vortex {
            padding: var(--space-xl) 2.5rem var(--space-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: radial-gradient(circle at top center, var(--color-accent) 0%, var(--color-bg) 70%);
            position: relative;
            overflow: hidden;
        }

        .vortex::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(128,108,224,0.05) 0%, transparent 60%);
            z-index: 0;
        }

        .vortex-husk {
            max-width: 900px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-sm);
        }

        .vortex-crest {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        .vortex-crest span {
            background: linear-gradient(135deg, var(--color-primary) 0%, #b2a3f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vortex-rune {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 680px;
        }

        .vortex-cluster {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: var(--space-xs);
        }

        /* Section 2: Platforms (Acquire) */
        .zone {
            padding: var(--space-lg) 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .zone-crest {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: var(--space-md);
        }

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

        .cell {
            background: linear-gradient(135deg, var(--color-surface) 0%, #faf9ff 100%);
            border-radius: var(--radius-md);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(128, 108, 224, 0.08);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: var(--transition);
        }

        .cell:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(128, 108, 224, 0.2);
        }

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

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

        /* Section 3: Performance (Detail - Mixed Div container) */
        .tunnel {
            padding: var(--space-lg) 0;
            background-color: var(--color-surface);
            border-top: 1px solid rgba(128, 108, 224, 0.05);
            border-bottom: 1px solid rgba(128, 108, 224, 0.05);
        }

        .tunnel-husk {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .tunnel-rune {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .tunnel-visual {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .speed-lens {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-surface) 100%);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(128, 108, 224, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .speed-pulse {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .speed-pulse::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--color-primary-light);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .speed-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-text-crest);
        }

        /* Section 4: Features (Capability - Mixed Article container) */
        .stealth {
            padding: var(--space-lg) 0;
            display: flex;
            flex-direction: column;
        }

        .stealth-peak {
            max-width: 600px;
            margin-bottom: var(--space-md);
        }

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

        .vault {
            flex: 1;
            min-width: 260px;
            padding: 2rem;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            border: 1px solid rgba(128, 108, 224, 0.08);
            position: relative;
            z-index: 1;
        }

        .vault::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-primary);
            border-radius: var(--radius-md) var(--radius-md) 0 0;
            opacity: 0;
            transition: var(--transition);
        }

        .vault:hover::before {
            opacity: 1;
        }

        /* Section 5: CTA (Comparison - Mixed Div container) */
        .cloak {
            margin: var(--space-lg) 2.5rem;
            padding: var(--space-md) 2rem;
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: var(--color-surface);
            box-shadow: var(--shadow-lg);
        }

        .cloak-crest {
            color: var(--color-surface);
            margin-bottom: 1rem;
        }

        .cloak-rune {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .cloak .ping {
            background-color: var(--color-surface);
            color: var(--color-primary-dark);
        }

        .cloak .ping:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            background-color: var(--color-bg);
        }

        /* Footer */
        .core {
            background-color: var(--color-surface);
            padding: var(--space-md) 0 2rem;
            border-top: 1px solid rgba(128, 108, 224, 0.1);
            margin-top: auto;
        }

        .core-nexus {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .anchor-cluster {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 150px;
        }

        .anchor-crest {
            font-weight: 600;
            color: var(--color-text-crest);
            margin-bottom: 0.5rem;
        }

        .anchor-path {
            color: var(--color-text-muted);
            transition: var(--transition);
            font-size: 0.95rem;
        }

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

        .base-rune {
            text-align: center;
            color: var(--color-text-muted);
            font-size: 0.875rem;
            border-top: 1px solid rgba(128, 108, 224, 0.05);
            padding-top: 2rem;
        }

        .brand-rune {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-crest);
            letter-spacing: -0.02em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nexus {
                padding: 1rem 1.5rem;
            }
            .mesh {
                display: none; /* In a real app, handled by JS toggle, here simplified or stacked */
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                padding-top: 1rem;
            }
            /* Quick hack to show menu on mobile for this static demo if needed, but keeping visual clean */
            .peak:hover .mesh {
                display: flex;
            }
            .radar {
                margin-left: auto;
            }
            .husk {
                padding: 0 1.5rem;
            }
            .vortex {
                padding: var(--space-md) 1.5rem var(--space-sm);
            }
            .tunnel-husk {
                flex-direction: column;
            }
            .cloak {
                margin: var(--space-md) 1.5rem;
                padding: var(--space-sm) 1.5rem;
            }
            .core-nexus {
                flex-direction: column;
            }
        }

.nexus-peak {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-rune);
}
.nexus-peak,
.nexus-peak *,
.nexus-peak *::before,
.nexus-peak *::after {
    box-sizing: border-box;
}

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

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

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

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

.nexus-peak a.nexus-path {
    --aisite-shell-nav-padding: 0.5rem 1rem;
    --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;
}

.nexus-peak a.nexus-path,
.nexus-peak a.nexus-path:hover,
.nexus-peak a.nexus-path:focus,
.nexus-peak a.nexus-path:active,
.nexus-peak a.nexus-path.active,
.nexus-peak a.nexus-path[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);
}

.nexus-peak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
            z-index: 1000;
            transition: all 0.15s ease;
        }

.nexus-peak .nexus-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
        }

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

.nexus-peak .nexus-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }

.nexus-peak .nexus-path{
            font-size: 0.95rem;
            font-weight: 500;
            color: #474759;
            padding: 0.5rem 1rem;
            border-radius: 9px;
            transition: all 0.15s ease;
        }

.nexus-peak .nexus-path:hover, .nexus-peak .nexus-path.active{
            color: #806ce0;
            background-color: #f3f0ff;
        }

.nexus-peak .nexus-radar{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.nexus-peak .nexus-ping{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            background-color: #806ce0;
            border-radius: 9px;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            transition: all 0.15s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

.nexus-peak .nexus-ping:hover{
            background-color: #634fc2;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
        }

@media (max-width: 768px){.nexus-peak{
                padding: 0;
            }

.nexus-peak .nexus-mesh{
                display: none; 
            }}

.nexus-peak {
    background: rgb(252, 252, 253);
    background-image: none;
}

.anchor-husk-master {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-rune);
}
.anchor-husk-master,
.anchor-husk-master *,
.anchor-husk-master *::before,
.anchor-husk-master *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-husk-master{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

.anchor-husk-master .anchor-peak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
            z-index: 1000;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
        }

.anchor-husk-master .anchor-sigil img{
            height: 32px;
            width: auto;
        }

.anchor-husk-master .anchor-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }

.anchor-husk-master .anchor-path-2{
            font-size: 0.95rem;
            font-weight: 500;
            color: #474759;
            padding: 0.5rem 1rem;
            border-radius: 9px;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-path-2:hover, .anchor-husk-master .anchor-path-2.active{
            color: #806ce0;
            background-color: #f3f0ff;
        }

.anchor-husk-master .anchor-radar{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.anchor-husk-master .anchor-ping{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            background-color: #806ce0;
            border-radius: 9px;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            transition: all 0.15s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

.anchor-husk-master .anchor-ping:hover{
            background-color: #634fc2;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
        }

.anchor-husk-master .anchor-ping-alt{
            background-color: transparent;
            color: #11111a;
            border-color: rgba(17, 17, 26, 0.1);
            box-shadow: none;
        }

.anchor-husk-master .anchor-ping-alt:hover{
            background-color: rgba(17, 17, 26, 0.03);
            border-color: rgba(17, 17, 26, 0.2);
            transform: translateY(-2px);
        }

.anchor-husk-master .anchor-tunnel-tunnel{
            flex: 1;
            padding-top: 80px; 
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-vortex{
            position: relative;
            padding: 8rem 2.5rem 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at top center, #f3f0ff 0%, #fcfcfd 70%);
            overflow: hidden;
        }

.anchor-husk-master .anchor-vortex::before{
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(128,108,224,0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

.anchor-husk-master .anchor-vortex-husk{
            position: relative;
            z-index: 1;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-vortex-crest{
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: #11111a;
            letter-spacing: -0.03em;
            margin-bottom: 2.5rem;
            text-wrap: balance;
        }

.anchor-husk-master .anchor-vortex-crest span{
            background: linear-gradient(135deg, #806ce0 0%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.anchor-husk-master .anchor-vortex-rune{
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #73738c;
            max-width: 800px;
            margin-bottom: 4rem;
            line-height: 1.7;
        }

.anchor-husk-master .anchor-vortex-band{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

.anchor-husk-master .anchor-zone, .anchor-husk-master .anchor-husk, .anchor-husk-master .anchor-cloak{
            padding: 6rem 2.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

.anchor-husk-master .anchor-husk-inner{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

.anchor-husk-master .anchor-crest-lg{
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #11111a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

.anchor-husk-master .anchor-rune-lg{
            font-size: 1.125rem;
            color: #73738c;
            margin-bottom: 2.5rem;
        }

.anchor-husk-master .anchor-zone{
            background-color: #ffffff;
        }

.anchor-husk-master .anchor-zone-rune{
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-zone-lens{
            flex: 1 1 500px;
            position: relative;
        }

.anchor-husk-master .anchor-lens-frame{
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(128, 108, 224, 0.12), 0 12px 24px rgba(17, 17, 26, 0.04);
            background: #fcfcfd;
            border: 1px solid rgba(128, 108, 224, 0.08);
            transform: translateZ(0); 
        }

.anchor-husk-master .anchor-lens-frame img{
            width: 100%;
            height: auto;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-lens-frame:hover img{
            transform: scale(1.02);
        }

.anchor-husk-master .anchor-husk{
            background-color: #fcfcfd;
            position: relative;
        }

.anchor-husk-master .anchor-husk .anchor-husk-inner{
            flex-direction: row-reverse;
        }

.anchor-husk-master .anchor-wire-cluster{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

.anchor-husk-master .anchor-wire{
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

.anchor-husk-master .anchor-glyph-seal{
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 9px;
            background: linear-gradient(135deg, #f3f0ff 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #806ce0;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            border: 1px solid rgba(128, 108, 224, 0.1);
        }

.anchor-husk-master .anchor-wire-husk .anchor-crest-sm{
            font-size: 1.1rem;
            font-weight: 600;
            color: #11111a;
            margin-bottom: 0.25rem;
        }

.anchor-husk-master .anchor-wire-husk .anchor-rune-sm{
            font-size: 0.95rem;
            color: #73738c;
            margin: 0;
        }

.anchor-husk-master .anchor-cluster-article{
            padding: 6rem 2.5rem;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-cluster-peak{
            text-align: center;
            max-width: 700px;
            margin-bottom: 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-vault-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem;
            max-width: 1280px;
            width: 100%;
        }

.anchor-husk-master .anchor-vault{
            background: #fcfcfd;
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(17, 17, 26, 0.04);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-vault:hover{
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
            border-color: rgba(128, 108, 224, 0.2);
            background: #ffffff;
        }

.anchor-husk-master .anchor-vault .anchor-glyph-seal{
            margin-bottom: 1.5rem;
            width: 56px;
            height: 56px;
        }

.anchor-husk-master .anchor-vault-crest{
            font-size: 1.25rem;
            font-weight: 700;
            color: #11111a;
            margin-bottom: 1rem;
        }

.anchor-husk-master .anchor-vault-rune{
            font-size: 0.95rem;
            color: #73738c;
            flex: 1;
        }

.anchor-husk-master .anchor-cloak{
            background: linear-gradient(135deg, #806ce0 0%, #634fc2 100%);
            color: #ffffff;
            text-align: center;
            padding: 8rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

.anchor-husk-master .anchor-cloak::after{
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h10v10H10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
            pointer-events: none;
        }

.anchor-husk-master .anchor-cloak-husk{
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-cloak .anchor-crest-lg{
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

.anchor-husk-master .anchor-cloak .anchor-rune-lg{
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 4rem;
        }

.anchor-husk-master .anchor-cloak .anchor-ping{
            background-color: #ffffff;
            color: #634fc2;
        }

.anchor-husk-master .anchor-cloak .anchor-ping:hover{
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            background-color: #fcfcfd;
        }

.anchor-husk-master .anchor-core{
            background-color: #fcfcfd;
            border-top: 1px solid rgba(17, 17, 26, 0.05);
            padding: 4rem 2.5rem 2.5rem;
            display: flex;
            justify-content: center;
        }

.anchor-husk-master .anchor-base-husk{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2.5rem;
        }

.anchor-husk-master .anchor-anchor-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #11111a;
            letter-spacing: -0.02em;
        }

.anchor-husk-master .anchor-base-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.anchor-husk-master .anchor-anchor-path{
            font-size: 0.9rem;
            color: #73738c;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-anchor-path:hover{
            color: #806ce0;
        }

@media (max-width: 1024px){.anchor-husk-master .anchor-husk-inner{
                flex-direction: column;
            }

.anchor-husk-master .anchor-husk .anchor-husk-inner{
                flex-direction: column;
            }

.anchor-husk-master .anchor-zone-rune, .anchor-husk-master .anchor-zone-lens{
                flex: 1 1 100%;
                width: 100%;
            }}

@media (max-width: 768px){.anchor-husk-master .anchor-peak{
                padding: 0;
            }

.anchor-husk-master .anchor-mesh{
                display: none; 
            }

.anchor-husk-master .anchor-vortex{
                padding: 6rem 1rem 4rem;
            }

.anchor-husk-master .anchor-vault-grid{
                grid-template-columns: 1fr;
            }

.anchor-husk-master .anchor-base-husk{
                flex-direction: column;
                text-align: center;
            }

.anchor-husk-master .anchor-base-mesh{
                justify-content: center;
            }}