:root {
            --brand-color: #dc5486;
            --brand-light: #fbebf0;
            --brand-dark: #b03a64;
            --bg-base: #f9f9fa;
            --bg-surface: #ffffff;
            --bg-deep: #16161a;
            --bg-deep-surface: #24242c;
            --text-primary: #1a1a24;
            --text-secondary: #5c5c6b;
            --text-on-dark: #f0f0f4;
            --text-muted: #9494a3;
            --border-color: #eaeaea;
            --border-dark: #3a3a46;
            --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
            --shadow-float: 0 16px 40px rgba(28, 28, 38, 0.12), 0 4px 12px rgba(28, 28, 38, 0.08);
            --shadow-glow: 0 8px 30px rgba(220, 84, 134, 0.3);
            --radius-md: 11px;
            --radius-lg: 17px;
            --transition: 0.25s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

        /* Typography */
        .apex {
            font-weight: 700;
            color: var(--text-primary);
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .cipher {
            word-break: keep-all;
            overflow-wrap: break-word;
            color: var(--text-secondary);
        }

        .apex-1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
        .apex-2 { font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.2; letter-spacing: -0.01em; }
        .apex-3 { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; }
        .apex-4 { font-size: 1.125rem; line-height: 1.4; font-weight: 600; }
        
        .cipher-lg { font-size: 1.125rem; line-height: 1.7; }
        .cipher-base { font-size: 1rem; line-height: 1.6; }
        .cipher-sm { font-size: 0.875rem; line-height: 1.5; }

        .dark-theme .apex { color: #ffffff; }
        .dark-theme .cipher { color: var(--text-on-dark); }

        /* Layout Primitives */
        .helm, .tunnel-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

        .pack {
            display: flex;
            flex-wrap: wrap;
        }
        .pack > * {
            min-width: 0;
        }

        /* Header & Nav */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 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);
            z-index: 100;
            padding: 1rem 0;
            transition: all var(--transition);
        }

        .helm {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        .helm > * { min-width: 0; }

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

        .mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .mesh > * { min-width: 0; }

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            padding: 0.5rem 0;
        }
        .wire:hover {
            color: var(--brand-color);
        }
        .wire.active {
            color: var(--brand-color);
            font-weight: 600;
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand-color);
            border-radius: 2px;
        }

        /* Buttons */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--brand-color);
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: var(--radius-md);
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
        }
        .warp:hover, .warp:focus {
            background-color: var(--brand-dark);
            transform: translateY(-2px);
            color: #ffffff;
            box-shadow: 0 12px 35px rgba(220, 84, 134, 0.4);
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background-color: transparent;
            color: var(--text-primary);
            font-weight: 600;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }
        .pulse:hover, .pulse:focus {
            border-color: var(--brand-color);
            color: var(--brand-color);
            background-color: var(--brand-light);
            transform: translateY(-2px);
        }
        .dark-theme .pulse {
            color: #ffffff;
            border-color: var(--border-dark);
        }
        .dark-theme .pulse:hover {
            border-color: var(--brand-color);
            background-color: rgba(220, 84, 134, 0.1);
        }

        /* Hero (card_float) */
        .portal {
            position: relative;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding-top: 80px;
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            overflow: hidden;
        }
        .portal > * { min-width: 0; }
        
        /* Hero Background Visuals */
        .portal::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 70vw;
            height: 70vw;
            background: radial-gradient(circle, rgba(220,84,134,0.15) 0%, rgba(220,84,134,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .portal::after {
            content: '';
            position: absolute;
            bottom: -10%;
            right: 10%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, rgba(176,58,100,0.1) 0%, rgba(176,58,100,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .nexus {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
        }

        .cloak {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: clamp(2.5rem, 5vw, 4rem);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            max-width: 680px;
            margin-top: 5vh;
            border: 1px solid rgba(255,255,255,0.6);
            /* Offset placement */
            position: relative;
            transform: translateX(0);
        }

        .cloak .apex { margin-bottom: 1.5rem; }
        .cloak .cipher { margin-bottom: 2.5rem; font-size: 1.15rem; color: #4a4a55; }
        
        .cloak-bits {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .cloak-bits > * { min-width: 0; }
        
        .cloak-bit {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .cloak-bit .glyph {
            width: 24px;
            height: 24px;
            color: var(--brand-color);
            flex-shrink: 0;
        }
        .cloak-bit .cipher {
            margin: 0;
            font-weight: 500;
            font-size: 1rem;
            color: var(--text-primary);
        }

        /* Sections spacing */
        .vault, .shield, .pod, .radar, .veil {
            padding: clamp(5rem, 8vw, 8rem) 0;
        }

        /* Features Area (aside) */
        .vault {
            background-color: var(--bg-surface);
        }
        
        .lane {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }

        .lane-cipher {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .lane-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-float);
            transform: translateY(0);
            transition: transform var(--transition);
        }
        .lane-visual:hover {
            transform: translateY(-8px);
        }
        
        .lens {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .node-mesh {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 1rem;
        }
        .node {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }
        .node-glyph {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--brand-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
            flex-shrink: 0;
        }

        /* Capability: Cross Platform (section) */
        .shield {
            background-color: var(--bg-base);
        }
        .shield-crown {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .vault-node {
            background: var(--bg-surface);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--border-color);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .vault-node:hover {
            box-shadow: var(--shadow-float);
            transform: translateY(-5px);
            border-color: rgba(220,84,134,0.2);
        }

        /* Security Area (article) */
        .pod.dark-theme {
            background-color: var(--bg-deep);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .pod.dark-theme::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(220,84,134,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .veil {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(4rem, 8vw, 8rem);
            align-items: center;
        }

        .veil-visual {
            position: relative;
            border-radius: var(--radius-lg);
            padding: 1rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-dark);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .veil-mesh {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }
        .veil-bit {
            display: flex;
            gap: 1.25rem;
            padding: 1.5rem;
            border-radius: var(--radius-md);
            background: var(--bg-deep-surface);
            border: 1px solid var(--border-dark);
            transition: all var(--transition);
        }
        .veil-bit:hover {
            border-color: rgba(220,84,134,0.4);
            background: rgba(36,36,44,0.8);
            transform: translateX(8px);
        }
        .veil-bit .glyph {
            width: 32px;
            height: 32px;
            color: var(--brand-color);
            flex-shrink: 0;
        }

        /* Radar - Topic Routing (aside) */
        .radar {
            background-color: var(--bg-surface);
        }
        
        .radar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .radar-node {
            display: flex;
            flex-direction: column;
            background: var(--bg-base);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            text-align: center;
            align-items: center;
            border: 1px solid transparent;
            transition: all var(--transition);
        }
        .radar-node:hover {
            background: #ffffff;
            border-color: var(--brand-light);
            box-shadow: var(--shadow-float);
            transform: translateY(-5px);
        }
        
        .radar-glyph {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--brand-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
            margin-bottom: 2rem;
        }
        .radar-glyph svg {
            width: 36px;
            height: 36px;
        }
        
        .radar-node .cipher {
            margin: 1rem 0 2rem;
            flex-grow: 1;
        }

        /* FAQ (section) */
        .veil {
            background-color: var(--bg-base);
        }
        .veil-tunnel {
            max-width: 800px;
            margin: 0 auto;
        }
        .veil-crown {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .veil-bit {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-subtle);
            transition: all var(--transition);
        }
        .veil-bit:hover {
            border-color: var(--brand-light);
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        .veil-bit .apex-4 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .veil-bit .cipher {
            color: var(--text-secondary);
            border-top: 1px dashed var(--border-color);
            padding-top: 1rem;
        }

        /* Footer */
        .core {
            background-color: #111116;
            color: #ffffff;
            padding: 5rem 0 3rem;
        }
        .core-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        .anchor {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .anchor .apex-3 {
            color: #ffffff;
            margin-bottom: 1rem;
        }
        .anchor .wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 0;
            display: inline-block;
        }
        .anchor .wire:hover {
            color: #ffffff;
        }
        .moat {
            border-top: 1px solid var(--border-dark);
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        .moat > * { min-width: 0; }

        .brand-cipher {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .veil {
                grid-template-columns: 1fr;
            }
            .core-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .mesh {
                display: none; /* Mobile menu logic omitted for brevity, assuming generic behavior or separate implementation */
            }
            .cloak {
                margin: 0;
                width: 100%;
                border-radius: var(--radius-md);
            }
            .portal {
                padding-top: 100px;
                padding-bottom: 40px;
            }
            .lane {
                grid-template-columns: 1fr;
            }
            .core-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .moat {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

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

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

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

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

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

.route-crown a.route-wire {
    --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;
}

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-wire[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);
}

.route-crown .route-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 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);
            z-index: 100;
            padding: 1rem 0;
            transition: all 0.25s ease;
        }

.route-crown .route-helm{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }

.route-crown .route-helm > *{ min-width: 0; }

.route-crown .route-seal img{
            height: 36px;
            width: auto;
            display: block;
        }

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

.route-crown .route-mesh > *{ min-width: 0; }

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

.route-crown .route-wire:hover{
            color: #dc5486;
        }

.route-crown .route-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

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

.route-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-core .anchor-apex{
            font-weight: 700;
            color: #1a1a24;
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-core .anchor-cipher{
            word-break: keep-all;
            overflow-wrap: break-word;
            color: #5c5c6b;
        }

.anchor-core .anchor-apex-3{ font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; }

.anchor-core .anchor-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core .anchor-pack{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core .anchor-pack > *{
            min-width: 0;
        }

.anchor-core .anchor-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-core .anchor-wire:hover{
            color: #dc5486;
        }

.anchor-core .anchor-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.anchor-core .anchor-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

.anchor-core{
            background-color: #111116;
            color: #ffffff;
            padding: 5rem 0 3rem;
        }

.anchor-core .anchor-core-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.anchor-core .anchor-anchor{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.anchor-core .anchor-anchor .anchor-apex-3{
            color: #ffffff;
            margin-bottom: 1rem;
        }

.anchor-core .anchor-anchor .anchor-wire{
            color: #9494a3;
            font-size: 0.95rem;
            padding: 0;
            display: inline-block;
        }

.anchor-core .anchor-anchor .anchor-wire:hover{
            color: #ffffff;
        }

.anchor-core .anchor-moat{
            border-top: 1px solid #3a3a46;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9494a3;
            font-size: 0.875rem;
        }

.anchor-core .anchor-moat > *{ min-width: 0; }

.anchor-core .anchor-brand-cipher{
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1rem;
        }

@media (max-width: 1024px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

.anchor-core .anchor-moat{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}