: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;
            --radius: 14px;
            --shadow-sm: 0 4px 12px rgba(128, 108, 224, 0.05), 0 1px 3px rgba(17, 17, 26, 0.03);
            --shadow-md: 0 12px 32px rgba(128, 108, 224, 0.08), 0 4px 12px rgba(17, 17, 26, 0.04);
            --transition: 0.15s ease;
        }

        /* Reset & Base */
        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;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        * {
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        a { text-decoration: none; color: inherit; transition: color var(--transition); }
        h1, h2, h3, h4 { margin: 0; white-space: normal; color: var(--color-text-crest); }
        p { margin: 0; word-break: keep-all; }
        img { max-width: 100%; height: auto; display: block; }
        svg { display: block; }

        /* Global Layout */
        .husk {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .husk {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        /* Navigation (Reused & Adjusted to Contract) */
        .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.08);
        }
        .nexus {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1240px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
        }
        .sigil { min-width: 0; flex-shrink: 0; }
        .sigil img { height: 32px; }
        .mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }
        .path {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-rune);
            padding: 0.5rem 0;
            position: relative;
        }
        .path:hover, .path.active {
            color: var(--color-primary);
        }
        .path.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
            border-radius: 2px;
        }
        .radar { min-width: 0; }
        .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: 9px;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.2);
            border: 2px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
        }
        .ping:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(128, 108, 224, 0.3);
        }

        /* Main Core */
        .core {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Section 1: Hero (acquire) */
        .vortex {
            padding: 8rem 2.5rem 6rem;
            display: flex;
            flex-wrap: wrap;
            background: radial-gradient(circle at top center, var(--color-accent) 0%, var(--color-bg) 70%);
            align-items: center;
        }
        .vortex-husk {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            align-items: center;
            gap: 4rem;
        }
        .vortex-rune-band {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .vortex-crest {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        .vortex-crest span {
            color: var(--color-primary);
        }
        .vortex-desc {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            max-width: 90%;
            line-height: 1.7;
        }
        .vortex-lens-band {
            flex: 1;
            min-width: 320px;
            position: relative;
        }
        .lens-vault {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(128, 108, 224, 0.1);
            background: var(--color-surface);
            position: relative;
        }
        /* Simulated UI overlay on image */
        .lens-overlay {
            position: absolute;
            top: 5%;
            left: -5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 1rem 1.5rem;
            border-radius: 9px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(128, 108, 224, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 4s ease-in-out infinite;
        }
        .status-dot {
            width: 12px;
            height: 12px;
            background-color: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
        }
        .status-rune { font-weight: 600; font-size: 0.9rem; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Section 2: Download Matrix (comparison) */
        .zone {
            padding: 6rem 0;
            background-color: var(--color-surface);
        }
        .zone-crest-band {
            text-align: center;
            margin-bottom: 4rem;
        }
        .zone-crest {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .zone-lens {
            max-width: 800px;
            margin: 0 auto 4rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            width: 100%;
        }
        .vault {
            background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            border: 1px solid rgba(128, 108, 224, 0.08);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(128, 108, 224, 0.2);
        }
        .glyph-seal {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }
        .glyph-seal svg { width: 32px; height: 32px; fill: currentColor; }
        .vault-crest { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
        .vault-rune { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 2rem; flex-grow: 1; }
        .hop {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem 1rem;
            font-weight: 600;
            color: var(--color-primary);
            background-color: transparent;
            border-radius: 9px;
            border: 2px solid var(--color-primary-light);
            transition: all var(--transition);
            cursor: pointer;
        }
        .vault:hover .hop {
            background-color: var(--color-primary);
            color: var(--color-surface);
            border-color: var(--color-primary);
        }

        /* Section 3: Features (acquire - div) */
        .tunnel {
            padding: 6rem 0;
            background: var(--color-bg);
            border-top: 1px solid rgba(128, 108, 224, 0.05);
        }
        .tunnel-husk {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }
        .tunnel-data {
            flex: 1;
            min-width: 320px;
            background: var(--color-surface);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(128, 108, 224, 0.08);
        }
        .data-band {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(17, 17, 26, 0.05);
        }
        .data-band:last-child { border-bottom: none; }
        .data-node { display: flex; align-items: center; gap: 1rem; }
        .data-glyph {
            width: 40px; height: 40px; border-radius: 8px; background: var(--color-accent); display: flex; align-items: center; justify-content: center; color: var(--color-primary);
        }
        .data-glyph svg { width: 20px; height: 20px; fill: currentColor; }
        .data-crest { font-weight: 600; font-size: 1rem; }
        .data-status { font-size: 0.85rem; color: #10b981; display: flex; align-items: center; gap: 0.4rem; }
        .data-status::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #10b981; }

        /* Section 4: Steps (aside) */
        .stealth {
            padding: 6rem 0;
            background: linear-gradient(to bottom, var(--color-surface) 0%, var(--color-accent) 100%);
        }
        .flow-cluster {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
            margin-top: 3rem;
        }
        .flow-wire {
            flex: 1;
            min-width: 240px;
            background: var(--color-surface);
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 2;
            text-align: center;
            border: 1px solid rgba(128, 108, 224, 0.05);
        }
        .flow-wire::before {
            content: attr(data-step);
            position: absolute;
            top: -1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 3rem;
            height: 3rem;
            background: var(--color-primary);
            color: var(--color-surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            box-shadow: 0 4px 12px rgba(128, 108, 224, 0.3);
            border: 4px solid var(--color-surface);
        }
        .flow-crest { font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
        .flow-rune { font-size: 0.95rem; color: var(--color-text-muted); }

        /* Footer */
        .base {
            background-color: var(--color-bg);
            border-top: 1px solid rgba(17, 17, 26, 0.05);
            padding: 4rem 0 2rem;
        }
        .base-husk {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }
        .base-brand { min-width: 200px; }
        .base-crest { font-size: 1.5rem; font-weight: 800; color: var(--color-text-crest); margin-bottom: 1rem; }
        .base-mesh { display: flex; flex-direction: column; gap: 0.75rem; min-width: 150px; }
        .base-path { color: var(--color-text-muted); font-size: 0.9rem; }
        .base-path:hover { color: var(--color-primary); }
        .base-core {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(17, 17, 26, 0.05);
            color: var(--color-text-muted);
            font-size: 0.85rem;
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .vortex-husk { flex-direction: column; text-align: center; }
            .lens-overlay { left: 50%; transform: translateX(-50%); top: -20px; }
            .tunnel-husk { flex-direction: column-reverse; }
        }
        @media (max-width: 768px) {
            .peak .nexus { flex-direction: column; gap: 1rem; }
            .mesh { justify-content: center; gap: 1rem; }
            .cluster { grid-template-columns: 1fr; }
            .flow-cluster { flex-direction: column; gap: 3.5rem; }
            .vortex { padding: 6rem 1.5rem 4rem; }
            .husk { padding: 0 1.5rem; }
        }

.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;
            }}