/* ==========================================================================
   Global Variables & Base
   ========================================================================== */
: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;
    --radius-inner: 14px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
    
    --transition-base: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --hub-width: 1280px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-wrap: break-word;
}

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

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Layout Hubs & Utilities
   ========================================================================== */
.hub {
    max-width: var(--hub-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

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

/* ==========================================================================
   Header (Mandatory Replication)
   ========================================================================== */
.radar-pod {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.radar-hub {
    max-width: var(--hub-width);
    margin: 0 auto;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
}

.crest img {
    height: 32px;
    width: auto;
}

.fleet {
    align-items: center;
    gap: 32px;
}

.radar-node {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
}

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

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

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

@media (max-width: 768px) {
    .radar-hub {
        flex-direction: column;
        gap: 16px;
        padding: 12px 16px;
    }
    .fleet {
        width: 100%;
        justify-content: center;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .radar-node {
        white-space: nowrap;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Hero Zone (Acquire) - Split Diagonal Variant
   ========================================================================== */
.vista-zone {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-base) 0%, #eef0f8 100%);
}

.soar-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.soar-tale {
    flex: 1 1 500px;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.soar-visual {
    flex: 1 1 500px;
    min-width: 0;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Diagonal abstract visual elements */
.soar-visual::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, var(--color-primary-light), rgba(95, 114, 222, 0.05));
    transform: rotate(-15deg);
    border-radius: 40px;
    z-index: 0;
}

.soar-visual svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(95, 114, 222, 0.15));
}

.apex-huge {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
    margin-bottom: 24px;
    white-space: normal;
}

.apex-highlight {
    background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tale-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.ping-sync {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.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);
    box-shadow: 0 8px 20px rgba(95, 114, 222, 0.3);
    cursor: pointer;
    white-space: nowrap;
}

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

.ping-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--color-bg-surface);
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    white-space: nowrap;
}

.ping-secondary:hover, .ping-secondary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .vista-zone {
        padding: 60px 0 40px;
    }
    .soar-split {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }
    .tale-lead {
        margin: 0 auto 32px;
    }
    .ping-sync {
        justify-content: center;
    }
    .soar-visual {
        height: 300px;
        width: 100%;
    }
}

/* ==========================================================================
   Categories Article (Pathway)
   ========================================================================== */
.orbit-zone {
    padding: 100px 0;
    background: var(--color-bg-surface);
    position: relative;
}

.apex-large {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--color-text-main);
    white-space: normal;
}

.mesh-sync {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.packet-fold {
    background: var(--color-bg-base);
    border-radius: var(--radius-soft);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.packet-fold:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: #fff;
    border-color: var(--color-primary-light);
}

.packet-fold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: var(--transition-base);
}

.packet-fold:hover::before {
    opacity: 1;
}

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

.apex-medium {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    white-space: normal;
}

.tale-base {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.zap-node {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    gap: 8px;
}

.zap-node:hover {
    color: var(--color-primary-dark);
    gap: 12px;
}

.zap-node svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

/* ==========================================================================
   Search & Bots Section (Capability)
   ========================================================================== */
.nimbus-zone {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-surface) 100%);
}

.vault-split {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    background: #fff;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-lg);
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vault-pane {
    flex: 1 1 400px;
    min-width: 0;
}

.apex-vault {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.tale-vault {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.step-sync {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-node {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-glyph {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-tale h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-tale p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Bots List */
.bot-sync {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-node {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: var(--radius-inner);
    background: var(--color-bg-base);
    border: 1px solid transparent;
    transition: var(--transition-base);
    gap: 20px;
}

.bot-node:hover {
    background: #fff;
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.bot-glyph {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.bot-tale flex-grow: 1;

.bot-tale h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.bot-tale p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .vault-split {
        padding: 40px 24px;
    }
}

/* ==========================================================================
   Footer (Anchor)
   ========================================================================== */
.anchor-wake {
    background: #111418;
    color: #fff;
    padding: 80px 0 40px;
    margin-top: auto;
}

.root-sync {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.root-brand {
    flex: 1 1 300px;
    min-width: 0;
}

.root-apex {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.root-tale {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.root-fleet {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.fleet-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fleet-apex {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.fleet-node {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.root-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .root-fleet {
        flex-direction: column;
        gap: 32px;
    }
}

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