:root {
            --color-primary: #5f72de;
            --color-primary-dark: #4658b5;
            --color-primary-light: #e6ebfc;
            --color-text-main: #1c1e21;
            --color-text-muted: #606770;
            --color-bg-base: #f8f9fa;
            --color-bg-surface: #ffffff;
            --color-accent: #00d2ff;
            
            --radius-soft: 22px;
            --radius-pill: 50px;
            
            --shadow-float: 0 12px 35px rgba(95, 114, 222, 0.12);
            --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.08);
            --shadow-glow: 0 8px 20px rgba(95, 114, 222, 0.3);
            
            --transition-fast: all 0.15s ease;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
            --layout-max: 1320px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-text-main);
            background-color: var(--color-bg-base);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        /* Typography */
        .apex-huge {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
            margin-bottom: 1.5rem;
        }

        .apex-large {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            margin-bottom: 1rem;
        }

        .apex-medium {
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.4;
            white-space: normal;
            word-break: break-word;
            margin-bottom: 0.75rem;
        }

        .tale-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.7;
        }

        .tale-body {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.75;
            word-break: keep-all;
        }

        /* Base Flex/Grid Rules */
        .sync-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .sync-flex > * {
            min-width: 0;
        }

        /* Radar (Navigation) */
        .radar-pod {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .radar-hub {
            max-width: var(--layout-max);
            margin: 0 auto;
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
        }

        .crest img {
            height: 36px;
            width: auto;
            display: block;
        }

        .fleet {
            gap: 2rem;
            align-items: center;
        }

        .radar-node {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-main);
            transition: var(--transition-fast);
            position: relative;
            padding: 0.5rem 0;
        }

        .radar-node::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: var(--transition-fast);
        }

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

        .radar-node:hover::after,
        .radar-node.active::after {
            width: 100%;
        }

        .radar-node.active {
            color: var(--color-primary);
        }

        /* Buttons (Ping/Zap/Dart) */
        .ping-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-pill);
            transition: var(--transition-fast);
            box-shadow: var(--shadow-glow);
            gap: 0.75rem;
        }

        .ping-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(95, 114, 222, 0.4);
        }

        .zap-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2rem;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-weight: 600;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(255,255,255,0.3);
            transition: var(--transition-fast);
        }
        
        .zap-secondary:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .dart-ghost {
            display: inline-flex;
            align-items: center;
            color: var(--color-primary);
            font-weight: 600;
            gap: 0.5rem;
            transition: var(--transition-fast);
        }

        .dart-ghost:hover {
            color: var(--color-primary-dark);
            gap: 0.75rem;
        }

        /* Hero (Vista) - Split Diagonal Blueprint */
        .vista-zone {
            position: relative;
            min-height: 90vh;
            padding-top: 80px; /* space for [role="navigation"] */
            background: var(--color-bg-base);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Diagonal background element */
        .vista-zone::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-primary) 0%, #3a4b9c 100%);
            /* 15-30 degree split */
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }

        .vista-hub {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: var(--layout-max);
            margin: 0 auto;
            padding: 0 5%;
            justify-content: space-between;
            align-items: center;
        }

        .vista-tale-side {
            flex: 1 1 45%;
            max-width: 600px;
            padding: 4rem 0;
        }

        .vista-lens-side {
            flex: 1 1 45%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 0;
        }

        /* UI Data Carrier Mockup */
        .ui-pod {
            width: 100%;
            max-width: 420px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-soft);
            box-shadow: var(--shadow-deep);
            padding: 2rem;
            color: #fff;
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: var(--transition-smooth);
        }

        .ui-pod:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
        }

        .ui-lane {
            height: 60px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            padding: 0 1rem;
            gap: 1rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .ui-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--color-accent), var(--color-primary));
        }

        .ui-line {
            height: 8px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            flex-grow: 1;
        }
        .ui-line.short { width: 40%; flex-grow: 0; }

        /* Feature Grid (Capability) */
        .vault-hub {
            padding: 8rem 5%;
            background: var(--color-bg-surface);
        }

        .vault-hub {
            max-width: var(--layout-max);
            margin: 0 auto;
        }

        .peak-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .sync-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .packet-feature {
            background: var(--color-bg-base);
            padding: 3rem 2.5rem;
            border-radius: var(--radius-soft);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .packet-feature:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-float);
            background: var(--color-bg-surface);
        }

        .glyph-box {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }

        .glyph-box svg {
            width: 32px;
            height: 32px;
            stroke-width: 2;
        }

        /* Deep Dive Article (Evidence/Detail) */
        .hub-article {
            padding: 6rem 5%;
            background: var(--color-bg-base);
        }

        .pod-row {
            max-width: var(--layout-max);
            margin: 0 auto 8rem auto;
            align-items: center;
            gap: 5%;
        }

        .pod-row:last-child {
            margin-bottom: 0;
        }

        .pod-tale {
            flex: 1 1 45%;
        }

        .pod-visual {
            flex: 1 1 45%;
            position: relative;
        }

        .pod-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .abstract-art {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--color-bg-surface) 0%, var(--color-primary-light) 100%);
            border-radius: var(--radius-soft);
            box-shadow: var(--shadow-float);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .abstract-art::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(95,114,222,0.1) 0%, transparent 60%);
            animation: pulse 10s infinite alternate linear;
        }

        @keyframes pulse {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.1) translate(-20px, 20px); }
        }

        /* Web CTA Block */
        .soar-nimbus {
            margin: 4rem 5%;
            max-width: var(--layout-max);
            border-radius: var(--radius-soft);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: #fff;
            padding: 5rem 3rem;
            text-align: center;
            box-shadow: var(--shadow-deep);
            position: relative;
            overflow: hidden;
            margin-left: auto;
            margin-right: auto;
        }

        /* Site Pathways (Aside) */
        .mesh-pathway {
            padding: 8rem 5%;
            background: var(--color-bg-surface);
        }

        .sync-path-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: var(--layout-max);
            margin: 0 auto;
        }

        .fold-path {
            padding: 2.5rem;
            border-radius: var(--radius-soft);
            background: var(--color-bg-base);
            border: 1px solid rgba(95, 114, 222, 0.05);
            transition: var(--transition-fast);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .fold-path:hover {
            border-color: rgba(95, 114, 222, 0.3);
            background: var(--color-bg-surface);
            box-shadow: var(--shadow-float);
        }
        
        .fold-path .tale-body {
            flex-grow: 1;
            font-size: 0.95rem;
        }

        /* Footer */
        .anchor-bottom {
            background: #111424;
            color: rgba(255,255,255,0.7);
            padding: 4rem 5% 2rem;
        }

        .wake-inner {
            max-width: var(--layout-max);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }

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

        .wake-nodes {
            gap: 1.5rem;
        }
        
        .wake-nodes a {
            transition: var(--transition-fast);
        }
        .wake-nodes a:hover {
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .vista-zone::before {
                clip-path: polygon(0 40%, 100% 30%, 100% 100%, 0% 100%);
                width: 100%;
                top: auto;
                height: 70%;
            }
            .vista-hub {
                flex-direction: column;
                text-align: center;
                padding-top: 4rem;
            }
            .vista-tale-side {
                max-width: 800px;
                padding: 2rem 0;
            }
            .ui-pod {
                margin: 0 auto;
                transform: none !important;
            }
            .pod-row, .pod-row:nth-child(even) {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .fleet {
                display: none; /* Mobile menu logic would go here via JS, keeping static for now or just stack */
            }
            .sync-grid, .sync-path-grid {
                grid-template-columns: 1fr;
            }
            .apex-huge {
                font-size: 2.2rem;
            }
            .soar-nimbus {
                padding: 3rem 1.5rem;
                margin: 2rem 1rem;
            }
            .wake-inner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

.radar-radar-pod {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--color-text-main);
}
.radar-radar-pod,
.radar-radar-pod *,
.radar-radar-pod *::before,
.radar-radar-pod *::after {
    box-sizing: border-box;
}

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

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

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

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

.radar-radar-pod a.radar-radar-node {
    --aisite-shell-nav-padding: 0.5rem 0;
    --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;
}

.radar-radar-pod a.radar-radar-node,
.radar-radar-pod a.radar-radar-node:hover,
.radar-radar-pod a.radar-radar-node:focus,
.radar-radar-pod a.radar-radar-node:active,
.radar-radar-pod a.radar-radar-node.active,
.radar-radar-pod a.radar-radar-node[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);
}

.radar-radar-pod .radar-sync-flex{
            display: flex;
            flex-wrap: wrap;
        }

.radar-radar-pod .radar-sync-flex > *{
            min-width: 0;
        }

.radar-radar-pod{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.radar-radar-pod .radar-radar-hub{
            max-width: 1320px;
            margin: 0 auto;
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
        }

.radar-radar-pod .radar-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.radar-radar-pod .radar-fleet{
            gap: 2rem;
            align-items: center;
        }

.radar-radar-pod .radar-radar-node{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1c1e21;
            transition: all 0.15s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.radar-radar-pod .radar-radar-node::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #5f72de;
            transition: all 0.15s ease;
        }

.radar-radar-pod .radar-radar-node:hover{
            color: #5f72de;
        }

.radar-radar-pod .radar-radar-node:hover::after, .radar-radar-pod .radar-radar-node.active::after{
            width: 100%;
        }

.radar-radar-pod .radar-radar-node.active{
            color: #5f72de;
        }

@media (max-width: 768px){.radar-radar-pod .radar-fleet{
                display: none; 
            }}

.radar-radar-pod {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-anchor-bottom .anchor-sync-flex{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-anchor-bottom .anchor-sync-flex > *{
            min-width: 0;
        }

.anchor-anchor-bottom{
            background: #111424;
            color: rgba(255,255,255,0.7);
            padding: 4rem 5% 2rem;
        }

.anchor-anchor-bottom .anchor-wake-inner{
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }

.anchor-anchor-bottom .anchor-brand-tale{
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
        }

.anchor-anchor-bottom .anchor-wake-nodes{
            gap: 1.5rem;
        }

.anchor-anchor-bottom .anchor-wake-nodes a{
            transition: all 0.15s ease;
        }

.anchor-anchor-bottom .anchor-wake-nodes a:hover{
            color: #fff;
        }

@media (max-width: 768px){.anchor-anchor-bottom .anchor-wake-inner{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}