        body {
            font-family: 'Domine', serif;
            background-color: #F8FAFB;
            color: #1A2E35;
            overflow-x: hidden;
        }

        /* The Grid System */
        .node-box {
            background: white;
            border: 2px solid #E2E8F0;
            padding: 2rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10;
        }
        .node-box:hover {
            border-color: #3A8B95;
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(58, 139, 149, 0.1);
        }

        /* Horizontal Flow Lines */
        .flow-line {
            position: absolute;
            height: 2px;
            background: #CBD5E1;
            top: 50%;
            z-index: 1;
            transition: width 1.5s ease-in-out;
            width: 0;
        }
        .flow-line.active {
            width: 100%;
            background: #3A8B95;
        }

        /* Vertical Connection Lines */
        .vertical-line {
            position: absolute;
            width: 2px;
            background: #CBD5E1;
            left: 50%;
            z-index: 1;
            height: 0;
            transition: height 1s ease-in-out;
        }
        .vertical-line.active {
            height: 100px;
            background: #3A8B95;
        }

        /* Nav Hover */
        .nav-link {
            position: relative;
            padding: 0.5rem 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #3A8B95;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Animation */
        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(255, 151, 96, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(255, 151, 96, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 151, 96, 0); }
        }
        .cta-pulse {
            animation: pulse-orange 2s infinite;
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        #mobile-menu {
            transition: transform 0.5s ease;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #3A8B95; border-radius: 10px; }
