:root {
            --bg-base: #080a0f;
            --bg-surface: #121620;
            --bg-elevated: #1a1f2c;
            --text-main: #f0f4f8;
            --text-muted: #94a3b8;
            --accent: #18efa4;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 24px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --glow: 0 4px 20px rgba(24, 239, 164, 0.15);
            --glow-strong: 0 4px 25px rgba(24, 239, 164, 0.3);
            --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: 0.15s ease;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* Header / Navigation */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(8, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tunnel {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .crown-mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .seal img {
            height: 32px;
            display: block;
        }

        .route-chain {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

        .route-path {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
        }

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

        .route-path.active {
            color: var(--text-main);
        }

        .route-path.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* Typography */
        .apex {
            font-weight: 700;
            color: #ffffff;
            white-space: normal;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .lore {
            color: var(--text-muted);
            font-size: 1.125rem;
            line-height: 1.7;
            word-break: keep-all;
        }

        /* Buttons */
        .key {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--bg-base);
            padding: 1rem 2.25rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            box-shadow: var(--glow);
            transition: all var(--transition);
            cursor: pointer;
        }

        .key:hover {
            transform: translateY(-2px);
            box-shadow: var(--glow-strong);
            background: #1bf5a9;
        }

        .key-ghost {
            background: transparent;
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: none;
        }

        .key-ghost:hover {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Section 1: Hero (Asymmetric Grid) */
        .cloak {
            padding: 120px 0 140px;
            position: relative;
            overflow: hidden;
        }

        .cloak::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 70%;
            background: radial-gradient(circle, rgba(24, 239, 164, 0.08) 0%, transparent 70%);
            z-index: -1;
        }

        .cloak-mesh {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cloak-lore-pack {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-start;
        }

        .cloak-lore-pack .apex {
            font-size: clamp(2.5rem, 4vw, 4rem);
        }

        .cloak-lens-pack {
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Abstract CSS Art for Hero Media */
        .lens-cell {
            position: absolute;
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .lens-tunnel {
            width: 80%;
            height: 240px;
            z-index: 2;
            flex-direction: column;
            gap: 16px;
        }

        .lens-tunnel:hover {
            transform: scale(1.02) translateY(-5px);
            border-color: rgba(24, 239, 164, 0.3);
        }

        .lens-sub-1 {
            width: 60%;
            height: 160px;
            top: 20px;
            right: -5%;
            z-index: 1;
            opacity: 0.7;
            transform: rotate(5deg);
        }

        .lens-sub-2 {
            width: 50%;
            height: 140px;
            bottom: 20px;
            left: -5%;
            z-index: 3;
            background: rgba(26, 31, 44, 0.9);
            transform: rotate(-3deg);
            border-color: rgba(24, 239, 164, 0.15);
        }

        .rune-play {
            width: 64px;
            height: 64px;
            fill: var(--accent);
            filter: drop-shadow(0 0 10px rgba(24, 239, 164, 0.4));
        }

        .lens-band {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
        }

        /* Section 2: Platforms (Symmetric Grid) */
        .vault {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
        }

        .vault-mesh {
            display: flex;
            flex-direction: column;
            gap: 60px;
            align-items: center;
        }

        .vault-apex {
            font-size: clamp(2rem, 3vw, 2.5rem);
            text-align: center;
        }

        .vault-pack {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .node {
            background: var(--bg-elevated);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 24px;
            transition: all var(--transition);
        }

        .node:hover {
            transform: translateY(-8px);
            border-color: rgba(24, 239, 164, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .node-rune-mesh {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(24, 239, 164, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .node-rune {
            width: 40px;
            height: 40px;
        }

        .node-apex {
            font-size: 1.25rem;
            color: #fff;
        }

        /* Section 3: Quality (Comparison) */
        .surge {
            padding: 120px 0;
            background: var(--bg-surface);
        }

        .surge-mesh {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .surge-lore-pack {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .surge-apex {
            font-size: clamp(2rem, 3vw, 2.5rem);
        }

        .surge-data-pack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .data-bead {
            background: var(--bg-base);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .data-bead:hover {
            border-color: rgba(24, 239, 164, 0.3);
        }

        .data-bead::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
        }

        .data-apex {
            font-size: 1.125rem;
            font-weight: 600;
            color: #fff;
        }

        .data-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            font-variant-numeric: tabular-nums;
        }

        /* Section 4: FAQ */
        .mesh {
            padding: 100px 0;
            background: var(--bg-base);
        }

        .mesh-mesh {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .mesh-apex {
            font-size: clamp(2rem, 3vw, 2.5rem);
            text-align: center;
        }

        .mesh-pack {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .bead {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .bead summary {
            padding: 24px;
            font-size: 1.125rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition);
        }

        .bead summary::-webkit-details-marker {
            display: none;
        }

        .bead summary:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .bead summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
            line-height: 1;
        }

        .bead[open] summary::after {
            content: '−';
        }

        .bead-lore {
            padding: 0 24px 24px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Footer */
        .heel {
            background: var(--bg-surface);
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .heel-mesh {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .base-apex {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .base-chain {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

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

        .base-path:hover {
            color: var(--accent);
        }

        .base-lore {
            color: rgba(148, 163, 184, 0.5);
            font-size: 0.85rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cloak-mesh {
                gap: 40px;
            }
            .cloak-lens-pack {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .crown-mesh {
                height: auto;
                padding: 16px 0;
                flex-direction: column;
                gap: 16px;
            }
            
            .route-chain {
                width: 100%;
                justify-content: center;
                gap: 20px;
            }

            .cloak {
                padding: 60px 0 80px;
            }

            .cloak-mesh {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cloak-lore-pack {
                align-items: center;
            }

            .cloak-lens-pack {
                display: none; /* Simplify on mobile to focus on text */
            }

            .surge-mesh {
                grid-template-columns: 1fr;
            }

            .surge-lore-pack {
                text-align: center;
                align-items: center;
            }
        }

.route-crown .route-tunnel{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(8, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
        }

.route-crown .route-crown-mesh{
            justify-content: space-between;
            align-items: center;
        }

.route-crown .route-seal img{
            height: 32px;
            display: block;
        }

.route-crown .route-route-chain{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.route-crown .route-route-path{
            color: #f0f4f8;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }

.route-crown .route-route-path:hover, .route-crown .route-route-path.active{
            color: #18efa4;
        }

.route-crown .route-route-path.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #18efa4;
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(24, 239, 164, 0.2);
        }

@media (max-width: 768px){.route-crown .route-route-chain{
                display: none; 
            }

.route-crown .route-crown-mesh{
                justify-content: center;
            }}

.route-crown {
    background: rgb(8, 10, 15);
    background-image: none;
}

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

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

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

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

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

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

.anchor-heel .anchor-tunnel{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
        }

.anchor-heel{
            background: #080a0f;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

.anchor-heel .anchor-heel-mesh{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

.anchor-heel .anchor-base-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f0f4f8;
            letter-spacing: 1px;
        }

.anchor-heel .anchor-base-lore{
            color: #94a3b8;
            font-size: 0.9rem;
        }