  /* --- FUTURISTIC DESIGN MATRIX VARIABLES --- */
        :root {
            --deep-oxide: #662222;
            --clean-white: #FFFFFF;
            --digital-lavender: #696FC7;
            --deep-teal: #2F5755;
            --space-black: #0B0E0D;
            --trans-white: rgba(255, 255, 255, 0.08);
            --trans-lavender: rgba(105, 111, 199, 0.25);
            --font-sans: "Open Sans", sans-serif;
            --transition-warp: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- GLOBAL RESET & BEHAVIOR BASELINES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--space-black);
            color: var(--clean-white);
            font-family: var(--font-sans);
            font-weight: 300;
            line-height: 1.7;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- ULTRA-LARGE TYPOGRAPHY STACK --- */
        h1, h2, h3, h4 {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.9;
        }

        p {
            font-size: 0.95rem;
            letter-spacing: -0.01em;
            color: rgba(255, 255, 255, 0.8);
        }

        .scientific-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--digital-lavender);
            font-weight: 700;
            display: inline-block;
            margin-bottom: 12px;
        }

        .vertical-text-rail {
            writing-mode: vertical-rl;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            font-size: 0.7rem;
            opacity: 0.4;
            font-weight: 700;
        }

        /* --- REACTIVE MULTI-PAGE ROUTER CONFIGURATION --- */
        .observatory-view-panel {
            display: none;
            width: 100%;
            opacity: 0;
            transform: scale(0.995) translateY(15px);
            transition: var(--transition-warp);
        }

        .observatory-view-panel.panel-active {
            display: block;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* --- FLOATING NAVIGATION INTELLIGENCE BAR --- */
        .intelligence-navigation-capsule {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            max-width: 1600px;
            background: rgba(11, 14, 13, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid var(--trans-lavender);
            border-radius: 50px;
            z-index: 1000;
            padding: 0 50px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            height: 80px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .logo-terminal {
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: 0.08em;
            cursor: pointer;
            color: var(--clean-white);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-terminal span {
            color: var(--digital-lavender);
            font-weight: 300;
        }

        .asymmetrical-nav-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding-left: 80px;
        }

        .asymmetrical-nav-links a {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            position: relative;
            transition: var(--transition-warp);
        }

        .asymmetrical-nav-links a:hover,
        .asymmetrical-nav-links a.active-link {
            color: var(--clean-white);
            text-shadow: 0 0 15px var(--digital-lavender);
        }

        .nav-utility-cluster {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .status-indicator-ring {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--digital-lavender);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 800;
            color: var(--digital-lavender);
            animation: slowRotate 8s linear infinite;
        }

        @keyframes slowRotate {
            0% { transform: rotate(0deg); border-color: var(--digital-lavender); }
            50% { border-color: var(--deep-oxide); }
            100% { transform: rotate(360deg); border-color: var(--digital-lavender); }
        }

        /* --- THE RESPONSIVE MATRIX HAMBURGER TRIGGER --- */
        .terminal-hamburger-action {
            display: none;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            z-index: 1002;
        }

        .terminal-hamburger-action div {
            width: 26px;
            height: 2px;
            background-color: var(--clean-white);
            transition: var(--transition-warp);
        }

        /* Full Screen Neural Architecture Overlay */
        .digital-overlay-terminal {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--space-black);
            border-left: 2px solid var(--deep-oxide);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            padding: 10%;
            transition: var(--transition-warp);
        }

        .digital-overlay-terminal.terminal-visible {
            right: 0;
        }

        .digital-overlay-terminal a {
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            text-decoration: none;
            transition: var(--transition-warp);
            cursor: pointer;
        }

        .digital-overlay-terminal a:hover {
            color: var(--digital-lavender);
            padding-left: 30px;
        }

        /* --- LANDING 1: FRAGMENTED NEURAL PERFORMANCE FRAME --- */
        .fragmented-landing-matrix {
            display: grid;
            grid-template-columns: 26% 48% 26%;
            min-height: 100vh;
            padding-top: 110px;
            background: linear-gradient(135deg, var(--deep-teal) 0%, var(--space-black) 100%);
        }

        .left-oxide-pillar {
            background-color: var(--deep-oxide);
            padding: 80px 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
        }

        .left-oxide-pillar h1 {
            font-size: 5.2rem;
            color: var(--clean-white);
        }

        .center-observatory-core {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
            overflow: hidden;
            background-image: radial-gradient(rgba(255,255,255,0.03) 1.5px, transparent 1.5px);
            background-size: 30px 30px;
        }

        .massive-circular-architecture {
            width: 520px;
            height: 520px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(105,111,199,0.15) 0%, transparent 75%);
        }

        /* Abstract dynamic vector graphic visualization replacement */
        .abstract-silhouette-placeholder {
            width: 280px;
            height: 280px;
            opacity: 0.25;
            filter: hue-rotate(180deg);
            animation: pulseSystem 4s ease-in-out infinite alternate;
        }

        @keyframes pulseSystem {
            0% { transform: scale(0.95); opacity: 0.15; }
            100% { transform: scale(1.05); opacity: 0.35; }
        }

        .circular-rotation-label {
            position: absolute;
            width: 106%;
            height: 106%;
            animation: masterSpin 40s linear infinite;
            border-radius: 50%;
            border: 1px dashed var(--trans-lavender);
        }

        @keyframes masterSpin { to { transform: rotate(360deg); } }

        .layered-biometric-indicator {
            position: absolute;
            background: rgba(11, 14, 13, 0.9);
            border: 1px solid var(--digital-lavender);
            padding: 20px;
            border-radius: 4px;
            font-size: 0.85rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
        }

        .bio-pos-alpha { top: 8%; left: -5%; }
        .bio-pos-beta { bottom: 12%; right: -5%; }

        .right-lavender-rail {
            background-color: var(--digital-lavender);
            padding: 80px 45px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-left: 1px solid rgba(255,255,255,0.1);
        }

        .metric-rail-row {
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding-bottom: 25px;
        }

        .metric-rail-row h4 {
            font-size: 2.4rem;
            margin-top: 8px;
            color: var(--clean-white);
        }

        /* --- SECTION 2: COGNITIVE HEALTH CHAMBER --- */
        .cognitive-health-chamber {
            background-color: var(--deep-teal);
            padding: 160px 8%;
        }

        .horizontal-intelligence-track {
            display: flex;
            gap: 40px;
            margin-top: 80px;
            overflow-x: auto;
            padding-bottom: 40px;
            snap-type: x mandatory;
        }

        .horizontal-intelligence-track::-webkit-scrollbar {
            height: 4px;
        }
        .horizontal-intelligence-track::-webkit-scrollbar-thumb {
            background: var(--digital-lavender);
        }

        .intelligence-observatory-module {
            min-width: 480px;
            background: rgba(11, 14, 13, 0.4);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 50px;
            snap-align: start;
            position: relative;
            transition: var(--transition-warp);
        }

        .intelligence-observatory-module:hover {
            background: rgba(11, 14, 13, 0.7);
            border-color: var(--digital-lavender);
            transform: translateY(-8px);
        }

        .module-image-frame {
            width: 100%;
            height: 180px;
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 2px;
            background: #111;
        }

        .module-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            filter: grayscale(100%) contrast(120%);
            transition: var(--transition-warp);
        }

        .intelligence-observatory-module:hover .module-image-frame img {
            opacity: 0.9;
            filter: grayscale(0%) contrast(100%);
            transform: scale(1.05);
        }

        .interactive-graph-mock {
            width: 100%;
            height: 60px;
            border-bottom: 1px solid var(--digital-lavender);
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        .graph-pulse-line {
            width: 200%;
            height: 100%;
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--clean-white), transparent);
            transform: translateX(-100%);
            transition: all 1s ease;
        }

        .intelligence-observatory-module:hover .graph-pulse-line {
            transform: translateX(100%);
        }

        /* --- SECTION 3: BODY PERFORMANCE GRID --- */
        .body-performance-blueprint {
            padding: 160px 8%;
            background-color: var(--space-black);
        }

        .irregular-modular-layout {
            display: grid;
            grid-template-columns: 1.1fr 1.3fr;
            gap: 80px;
            margin-top: 80px;
        }

        .tall-vertical-block {
            background: linear-gradient(180deg, var(--deep-oxide) 0%, transparent 100%);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 700px;
        }

        .blueprint-image-container {
            width: 100%;
            height: 240px;
            overflow: hidden;
            margin-top: 30px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .blueprint-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            filter: invert(1) opacity(0.5);
        }

        .floating-workout-chamber {
            background: rgba(255,255,255,0.02);
            border-left: 3px solid var(--digital-lavender);
            padding: 45px;
            margin-bottom: 40px;
            transform: translateX(0);
            transition: var(--transition-warp);
        }

        .floating-workout-chamber:hover {
            transform: translateX(15px);
            background: rgba(105, 111, 199, 0.08);
        }

        /* --- SECTION 4: HEALTHCARE OPERATING SYSTEM --- */
        .healthcare-operating-universe {
            background-color: var(--clean-white);
            color: var(--space-black);
            padding: 160px 8%;
        }

        .giant-connected-circular-matrix {
            position: relative;
            width: 100%;
            min-height: 750px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 100px;
        }

        .central-universe-hub {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: var(--deep-teal);
            color: var(--clean-white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 800;
            font-size: 1.3rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            z-index: 10;
            border: 4px solid var(--clean-white);
        }

        .floating-healthcare-node {
            position: absolute;
            background: var(--clean-white);
            border: 1px solid rgba(0,0,0,0.12);
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            max-width: 300px;
            transition: var(--transition-warp);
        }

        .floating-healthcare-node:hover {
            transform: scale(1.03);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .node-alpha { top: 0; left: 10%; }
        .node-beta { top: 5%; right: 10%; }
        .node-gamma { bottom: 5%; left: 5%; }
        .node-delta { bottom: 0; right: 10%; }

        .node-graphic-indicator {
            width: 100%;
            height: 100px;
            margin-top: 15px;
            background-color: #f0f0f0;
            overflow: hidden;
        }

        .node-graphic-indicator img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .data-connector-vector {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0; left: 0;
            pointer-events: none;
            opacity: 0.2;
        }

        /* --- SECTION 5: RECOVERY IMMERSION SPACE --- */
        .recovery-immersion-space {
            background-color: var(--digital-lavender);
            padding: 200px 10%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .massive-immersive-quote {
            font-size: 4.2rem;
            font-weight: 800;
            text-transform: uppercase;
            max-width: 1300px;
            margin: 0 auto;
            line-height: 1.05;
        }

        .ambient-breathing-indicator {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            margin: 70px auto 0 auto;
            animation: rhythmicBreathe 7s ease-in-out infinite;
        }

        @keyframes rhythmicBreathe {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.4); opacity: 1; background: rgba(255,255,255,0.35); box-shadow: 0 0 50px rgba(255,255,255,0.2); }
        }

        /* --- SECTION 6: HUMAN OPTIMIZATION ARCHIVE --- */
        .human-optimization-archive {
            background-color: var(--deep-oxide);
            padding: 160px 8%;
        }

        .layered-editorial-panel {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 100px;
            align-items: flex-start;
            margin-top: 80px;
        }

        .long-form-editorial-text {
            font-size: 1.1rem;
            line-height: 1.9;
            opacity: 0.85;
            text-align: justify;
        }

        .archive-visual-essay {
            width: 100%;
            height: 450px;
            background-color: #222;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }

        .archive-visual-essay img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) sepia(20%);
            opacity: 0.7;
        }

        .scientific-quote-block {
            border-left: 3px solid var(--digital-lavender);
            padding-left: 35px;
            font-style: italic;
            font-size: 1.5rem;
            margin: 50px 0;
            color: rgba(255,255,255,0.9);
            line-height: 1.4;
        }

        /* --- SECTION 7: LIVE PERFORMANCE VISUALIZATION --- */
        .live-performance-visualization {
            padding: 160px 8%;
            background: linear-gradient(180deg, var(--space-black) 0%, var(--deep-teal) 100%);
            text-align: center;
        }

        .digital-art-container {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 100px;
            flex-wrap: wrap;
        }

        .floating-progress-system {
            background: rgba(11,14,13,0.6);
            border: 1px solid var(--trans-lavender);
            padding: 50px;
            width: 320px;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-warp);
        }

        .floating-progress-system:hover {
            border-color: var(--clean-white);
            transform: scale(1.02);
        }

        .pulse-wave-animation {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 2px solid var(--deep-oxide);
            animation: kineticWave 2.5s infinite ease-out;
        }

        @keyframes kineticWave {
            0% { transform: scale(0.7); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; border-color: var(--digital-lavender); }
        }

        /* --- SECTION 8: MEMBERSHIP / HEALTH ACCESS --- */
        .membership-health-access {
            background-color: var(--clean-white);
            color: var(--space-black);
            padding: 160px 8%;
        }

        .floating-consultation-chamber {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 42% 58%;
            background: var(--space-black);
            color: var(--clean-white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(0,0,0,0.3);
        }

        .chamber-left-text {
            padding: 80px;
            background: linear-gradient(135deg, var(--deep-teal) 0%, var(--space-black) 100%);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .chamber-right-form {
            padding: 80px;
            background: #121615;
            border-left: 1px solid rgba(255,255,255,0.05);
        }

        .futuristic-input-group {
            position: relative;
            margin-bottom: 50px;
        }

        .futuristic-input-group label {
            display: block;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--digital-lavender);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .futuristic-input-group input,
        .futuristic-input-group select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 12px 0;
            color: var(--clean-white);
            font-family: var(--font-sans);
            font-size: 1.05rem;
            transition: var(--transition-warp);
        }

        .futuristic-input-group input:focus,
        .futuristic-input-group select:focus {
            outline: none;
            border-bottom-color: var(--digital-lavender);
        }

        .btn-futuristic-access {
            background: var(--digital-lavender);
            color: var(--clean-white);
            border: none;
            padding: 24px 50px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-warp);
            width: 100%;
        }

        .btn-futuristic-access:hover {
            background: var(--deep-oxide);
            letter-spacing: 0.3em;
        }

        /* --- MULTIPAGE MODULES: ACADEMIC LEGAL CHANNELS --- */
        .academic-document-header {
            padding: 220px 8% 80px 8%;
            background: linear-gradient(180deg, var(--deep-teal) 0%, var(--space-black) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .academic-document-header h1 {
            font-size: 5rem;
            margin-top: 20px;
        }

        .legal-document-body {
            padding: 100px 8%;
            background: var(--space-black);
            max-width: 1200px;
        }

        .legal-structural-segment {
            margin-bottom: 80px;
        }

        .legal-structural-segment h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--digital-lavender);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 15px;
        }

        .legal-structural-segment p {
            opacity: 0.85;
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.05rem;
        }

        /* --- FOOTER: DIGITAL WELLNESS TERMINAL --- */
        .digital-wellness-terminal {
            background-color: var(--deep-teal);
            padding: 120px 8% 50px 8%;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .terminal-blocks-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            padding-bottom: 80px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }

        .terminal-block h5 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--digital-lavender);
            margin-bottom: 30px;
        }

        .terminal-block ul {
            list-style: none;
        }

        .terminal-block ul li {
            margin-bottom: 15px;
            font-size: 0.85rem;
            opacity: 0.6;
        }

        .terminal-block ul li a {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-warp);
        }

        .terminal-block ul li a:hover {
            opacity: 1;
            color: var(--clean-white);
            padding-left: 5px;
        }

        .animated-signal-line {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--deep-oxide), var(--digital-lavender), transparent);
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .signal-pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--clean-white);
            position: absolute;
            top: -3px;
            border-radius: 50%;
            animation: runSignal 4s infinite linear;
        }

        @keyframes runSignal { 0% { left: 0%; } 100% { left: 100%; } }

        .terminal-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            opacity: 0.5;
            letter-spacing: 0.05em;
        }

        /* --- RESPONSIVE LAYOUT ENGINE (MEDIA QUERIES) --- */
        @media (max-width: 1300px) {
            .fragmented-landing-matrix { grid-template-columns: 1fr; }
            .left-oxide-pillar, .right-lavender-rail { min-height: 350px; }
            .irregular-modular-layout { grid-template-columns: 1fr; gap: 50px; }
            .giant-connected-circular-matrix { min-height: auto; flex-direction: column; gap: 40px; }
            .floating-healthcare-node { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 100%; max-width: none; }
            .central-universe-hub { display: none; }
            .layered-editorial-panel { grid-template-columns: 1fr; gap: 50px; }
            .floating-consultation-chamber { grid-template-columns: 1fr; }
            .terminal-blocks-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 850px) {
            .intelligence-navigation-capsule { grid-template-columns: auto auto; padding: 0 30px; }
            .asymmetrical-nav-links, .nav-utility-cluster .fa-radar, .status-indicator-ring { display: none; }
            .terminal-hamburger-action { display: flex; }
            .left-oxide-pillar h1, .massive-immersive-quote, .academic-document-header h1 { font-size: 3.2rem; }
            .intelligence-observatory-module { min-width: 100%; }
            .terminal-blocks-grid { grid-template-columns: 1fr; }
            .terminal-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .chamber-left-text, .chamber-right-form { padding: 40px; }
        }
