:root {
    --primary: #a178d8;
    --primary-dark: #8a5bc9;
    --primary-light: #f4ecfd;
    --text-main: #2d2438;
    --text-sub: #6b627a;
    --bg-page: #ffffff;
    --bg-alt: #faf9fc;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 12px rgba(161, 120, 216, 0.05);
    --shadow-md: 0 10px 30px rgba(161, 120, 216, 0.1);
    --transition: all 0.35s ease;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

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

* {
    box-sizing: border-box;
}

/* Nav Framework (Inherited) */
.peak {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(161, 120, 216, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.helm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sigil img { height: 32px; display: block; }
.matrix {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    min-width: 0;
}
.wire {
    color: var(--text-sub);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.wire:hover, .wire.active {
    color: var(--primary-dark);
    background-color: var(--primary-light);
}
.pod { display: flex; flex-wrap: wrap; min-width: 0; }
.pod .warp {
    background-color: var(--text-main);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.warp:hover {
    background-color: var(--primary);
}

/* Layout Containers */
.core {
    display: block;
}
.tunnel {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Intro Section (Gaming Performance) */
.nexus {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-page) 100%);
    text-align: center;
}
.apex-mega {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    color: var(--text-main);
    white-space: normal;
    line-height: 1.1;
}
.cipher-lead {
    font-size: 1.15rem;
    color: var(--text-sub);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.8;
}
.pod-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cell-stat {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(161, 120, 216, 0.05);
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: var(--transition);
}
.cell-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.glyph-stat {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}
.glyph-stat svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.apex-stat {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}
.cipher-stat {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin: 0;
}

/* Div Capability (Streaming Access) */
.cloak {
    padding: 100px 0;
    background-color: var(--bg-page);
}
.veil-stream {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.veil-stream > * {
    flex: 1;
    min-width: 300px;
}
.apex-tunnel {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.matrix-matrix {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.bit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-alt);
    padding: 16px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.bit-row:hover {
    background: var(--primary-light);
}
.bit-row svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.visual-stage {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.shape-pulse {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 16px rgba(161, 120, 216, 0.1), 0 0 0 32px rgba(161, 120, 216, 0.05);
    transition: var(--transition);
}
.visual-stage:hover .shape-pulse {
    transform: scale(1.05);
    box-shadow: 0 0 0 24px rgba(161, 120, 216, 0.15), 0 0 0 48px rgba(161, 120, 216, 0.08);
}
.shape-pulse svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}

/* Article Capability (Business Network) */
.veil {
    padding: 100px 0;
    background: var(--text-main);
    color: #fff;
}
.veil .apex-tunnel {
    color: #fff;
}
.veil .cipher-lead {
    color: rgba(255,255,255,0.7);
}
.pod-biz {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 56px;
}
.cell-biz {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cell-biz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}
.cell-biz:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}
.cell-biz:hover::before {
    opacity: 1;
}
.glyph-biz {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.glyph-biz svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer Base */
.base {
    padding: 80px 0 40px;
    background: var(--bg-alt);
    border-top: 1px solid rgba(161, 120, 216, 0.1);
    text-align: center;
}
.base-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}
.base-cipher {
    color: var(--text-sub);
    font-size: 0.95rem;
}
.base-matrix {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 32px 0 48px;
}

@media (max-width: 768px) {
    .helm { flex-direction: column; gap: 16px; }
    .matrix { justify-content: center; }
    .nexus, .cloak, .veil { padding: 60px 0; }
    .veil-stream { gap: 40px; }
    .visual-stage { min-height: 280px; }
    .cell-stat, .cell-biz { min-width: 100%; }
}

.helm-peak .helm-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.helm-peak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #eae5f2;
        }

.helm-peak .helm-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 5%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.helm-peak .helm-sigil, .helm-peak .helm-matrix, .helm-peak .helm-pod{
            min-width: 0;
        }

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

.helm-peak .helm-matrix{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.helm-peak .helm-wire{
            text-decoration: none;
            color: #6b627a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            min-width: 0;
        }

.helm-peak .helm-wire:hover{
            color: #a178d8;
        }

.helm-peak .helm-wire.active{
            color: #a178d8;
            font-weight: 700;
        }

.helm-peak .helm-warp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background-color: #a178d8;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.35s ease;
            min-width: 0;
            border: 1px solid transparent;
        }

.helm-peak .helm-warp:hover{
            background-color: #8a5bc9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(161, 120, 216, 0.05);
        }

@media (max-width: 768px){.helm-peak .helm-helm{
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }}

.helm-peak {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-root .anchor-cipher, .anchor-root .anchor-apex, .anchor-root .anchor-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-root p.anchor-cipher{
            word-break: keep-all;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

.anchor-root h1.anchor-apex, .anchor-root h2.anchor-apex, .anchor-root h3.anchor-apex{
            margin-top: 0;
            color: #2d2438;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

.anchor-root .anchor-wire{
            text-decoration: none;
            color: #6b627a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            min-width: 0;
        }

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

.anchor-root .anchor-wire.active{
            color: #a178d8;
            font-weight: 700;
        }

.anchor-root{
            background-color: #2d2438;
            color: #fff;
            padding: 80px 5% 40px;
        }

.anchor-root .anchor-anchor{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            justify-content: space-between;
        }

.anchor-root .anchor-base-info{
            flex: 1.5;
            min-width: 280px;
        }

.anchor-root .anchor-base-info .anchor-apex{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

.anchor-root .anchor-base-info .anchor-cipher{
            color: rgba(255, 255, 255, 0.6);
            max-width: 360px;
        }

.anchor-root .anchor-base-links{
            flex: 2;
            min-width: 280px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 40px;
        }

.anchor-root .anchor-pod-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-root .anchor-pod-col .anchor-apex{
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

.anchor-root .anchor-pod-col .anchor-wire{
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.35s ease;
        }

.anchor-root .anchor-pod-col .anchor-wire:hover{
            color: #fff;
        }

.anchor-root .anchor-base-bottom{
            max-width: 1280px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }