        /* --- GLOBAL RESETS & COMPONENT ARCHITECTURE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-navy: #24d800;
            --warm-sand: #A98B76;
            --sky-aqua: #76D2DB;
            --soft-yellow: #F6F09F;
            --white: #FFFFFF;
            --black: #111111;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-snappy: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
        }

        /* --- SINGLE PAGE MULTI-VIEW CARD GRAPH ROUTER --- */
        .hub-view-wrapper {
            display: none;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition-smooth);
        }

        .hub-view-wrapper.active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* --- TYPOGRAPHY ENGINE --- */
        h1, h2, h3, h4, h5, h6 {
            color: #24d800;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .hero-heading-giant {
            font-size: clamp(3rem, 7.5vw, 6rem);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .section-heading-editorial {
            font-size: clamp(2rem, 4.5vw, 3rem);
            line-height: 1.15;
            font-weight: 700;
        }

        .large-editorial-paragraph {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 300;
            color: #2D3748;
            max-width: 800px;
        }

        .btn-premium-cta {
            padding: 16px 36px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-snappy);
            border: 2px solid transparent;
            text-align: center;
        }

        .btn-navy {
            background-color: #24d800;
            color: var(--white);
        }

        .btn-navy:hover {
            background-color: transparent;
            color: #24d800;
            border-color: #24d800;
        }

        /* --- STICKY TRANSPARENT FLOATING HEADER --- */
        .header-floating-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            z-index: 1000;
            padding: 0 6%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition-smooth);
            background-color: transparent;
        }

        .header-floating-bar.sticky-active {
            background-color: var(--white);
            height: 85px;
            box-shadow: 0 15px 40px rgba(26, 50, 99, 0.06);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
        }

        .logo-mock-txt {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.03em;
            transition: var(--transition-snappy);
        }

        .header-floating-bar.sticky-active .logo-mock-txt {
            color: #24d800;
        }

        .nav-center-links-matrix {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-center-links-matrix a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-snappy);
        }

        .header-floating-bar.sticky-active .nav-center-links-matrix a {
            color: #24d800;
        }

        /* --- BRAIN PILLARS DROPDOWN MENU --- */
        .dropdown-trigger-node {
            position: relative;
        }

        .dropdown-sliding-card {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background-color: var(--white);
            min-width: 250px;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 25px 50px rgba(26, 50, 99, 0.12);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-snappy);
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .dropdown-trigger-node:hover .dropdown-sliding-card {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        .dropdown-sliding-card a {
            color: #24d800 !important;
            display: block;
            width: 100%;
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 600;
        }

        .dropdown-sliding-card a:hover {
            background-color: rgba(118, 210, 219, 0.15);
        }

        /* --- RESPONSIVE HAMBURGER INTERFACE --- */
        .hamburger-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1100;
        }

        .hamburger-menu-btn span {
            display: block;
            width: 26px;
            height: 2px;
            background-color: var(--white);
            transition: var(--transition-snappy);
        }

        .header-floating-bar.sticky-active .hamburger-menu-btn span {
            background-color: #24d800;
        }

        .hamburger-menu-btn.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background-color: #24d800; }
        .hamburger-menu-btn.is-active span:nth-child(2) { opacity: 0; }
        .hamburger-menu-btn.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); background-color: #24d800; }

        /* --- 3-SLIDE SYNCHRONIZED HERO SHOWCASE --- */
        .hero-slideshow-viewport {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .slideshow-image-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }

        .slideshow-image-frame.active-frame {
            opacity: 1;
            z-index: 2;
        }

        .slideshow-overlay-dimmer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(17,17,17,0.55), rgba(17,17,17,0.2));
            z-index: 3;
        }

        .hero-floating-content-panel {
            position: relative;
            z-index: 4;
            margin-left: auto;
            max-width: 600px;
            padding: 50px;
            background-color: #40fe16d9;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            color: var(--white);
            margin-right: 6%;
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
        }

        .hero-floating-content-panel h4 {
            color: var(--sky-aqua);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .hero-floating-content-panel p {
            font-size: 1.5rem;
            line-height: 1.45;
            font-weight: 300;
            transition: opacity 0.5s ease;
        }

        /* --- LOOPING CONTINUOUS MARQUEE STRIPS --- */
        .marquee-strip-wrapper {
            width: 100%;
            background-color: var(--black);
            color: var(--white);
            padding: 20px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .marquee-infinite-track {
            display: inline-block;
            animation: loopMarqueeSystem 25s linear infinite;
        }

        @keyframes loopMarqueeSystem {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        .marquee-text-token {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            padding: 0 30px;
            display: inline-block;
        }

        /* --- SECTION 2: 50/50 SPLIT LAYER --- */
        .split-editorial-chassis {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            background-color: var(--white);
        }

        .split-visual-half {
            background-size: cover;
            background-position: center;
            min-height: 600px;
        }

        .split-content-half {
            padding: 10% 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        /* --- CINEMATIC FIXED PARALLAX CHASSIS --- */
        .parallax-fixed-viewport {
            height: 100vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: background-size 0.2s linear;
        }

        .parallax-dark-overlay-mask {
            background: linear-gradient(135deg, rgba(26,50,99,0.55), rgba(17,17,17,0.45));
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 6%;
            color: var(--white);
            text-align: center;
        }

        /* --- SECTION 4: DYNAMIC INSIGHT SPLIT (35% / 65%) --- */
        .dynamic-split-chassis {
            display: grid;
            grid-template-columns: 35% 65%;
            min-height: 80vh;
        }

        .insight-static-left {
            background-color: var(--white);
            padding: 10% 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid rgba(26, 50, 99, 0.05);
        }

        .rotating-dynamic-right {
            background-color: var(--sky-aqua);
            padding: 10% 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            color: #24d800;
            overflow: hidden;
        }

        .rotating-text-frame {
            font-size: clamp(2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.15;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            position: absolute;
            max-width: 80%;
        }

        .rotating-text-frame.active-rotation {
            opacity: 1;
            transform: translateY(0);
            position: relative;
        }

        /* --- SECTION 6: MINIMAL EDITORIAL ROW --- */
        .minimal-editorial-canvas {
            background-color: var(--soft-yellow);
            padding: 120px 8%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 80vh;
        }

        /* --- CENTRAL NEWSLETTER APPLICATION CARD --- */
        .newsletter-section-chassis {
            padding: 120px 0;
            background-color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-envelope-box {
            background-color: #F8FAFC;
            padding: 60px 80px;
            border-radius: 24px;
            max-width: 900px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 50px rgba(26, 50, 99, 0.03);
        }

        .newsletter-row-alignment {
            display: flex;
            gap: 15px;
            margin-top: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .premium-input-node {
            padding: 16px 24px;
            border-radius: 50px;
            border: 1px solid rgba(26, 50, 99, 0.15);
            outline: none;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            min-width: 280px;
            transition: var(--transition-snappy);
        }

        .premium-input-node:focus {
            border-color: #24d800;
        }

        /* --- SYSTEM FOUR-COLUMN FOOTER --- */
        .system-editorial-footer {
            background-color: #24d800;
            color: var(--white);
            padding: 100px 0 40px 0;
        }

        .footer-columns-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-structural-column h5 {
            color: var(--sky-aqua);
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-structural-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-structural-column ul a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: var(--transition-snappy);
        }

        .footer-structural-column ul a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-base-legal-row {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            flex-wrap: wrap;
            gap: 20px;
        }

        /* --- CONTACT INTERNAL SPECIFICS --- */
        .contact-layout-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }

        .interactive-map-block {
            background: #E2E8F0;
            border-radius: 16px;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #24d800;
            font-weight: 600;
            letter-spacing: 0.05em;
            background-image: radial-gradient(rgba(26,50,99,0.1) 12%, transparent 13%);
            background-size: 16px 16px;
        }

        /* --- MEDIA QUERY SYSTEMS FOR RESPONSIVENESS --- */
        @media (max-width: 1024px) {
            .split-editorial-chassis { grid-template-columns: 1fr; }
            .dynamic-split-chassis { grid-template-columns: 1fr; }
            .footer-columns-grid-layout { grid-template-columns: repeat(2, 1fr); }
            .hero-floating-content-panel { margin: 0 auto; width: 90%; }
        }

        @media (max-width: 768px) {
            .hamburger-menu-btn { display: flex; }
            .nav-center-links-matrix {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 40px;
                box-shadow: 0 30px 60px rgba(0,0,0,0.1);
                gap: 25px;
            }
            .nav-center-links-matrix.mobile-expanded { display: flex; }
            .nav-center-links-matrix a { color: #24d800 !important; font-size: 1.1rem; }
            .dropdown-sliding-card { position: static; transform: none !important; opacity: 1; visibility: visible; box-shadow: none; padding: 10px 0 0 0; text-align: center; }
            .footer-columns-grid-layout { grid-template-columns: 1fr; }
            .newsletter-envelope-box { padding: 40px 20px; }
            .newsletter-row-alignment { flex-direction: column; }
            .premium-input-node { width: 100%; }
        }
