@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --atoll: #0a5a78;
            --ecru-white: #fbfbf5;
            --fern: #5ab453;
            --atlantis: #92c933;
            --shadow-green: #99bac0;
            --deco: #cddf8f;
            --botticelli: #c9e0e5;
            --beryl-green: #d5e5c3;
            --waterloo: #7e8494;
            --gray-suit: #bcb9c6;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ecru-white);
            color: var(--waterloo);
        }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(90, 180, 83, 0.3), 
                           0 0 40px rgba(10, 90, 120, 0.1); 
            }
            50% { 
                box-shadow: 0 0 30px rgba(90, 180, 83, 0.5), 
                           0 0 60px rgba(10, 90, 120, 0.2); 
            }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes data-flow {
            0% { transform: translateX(-100%) scale(0); opacity: 0; }
            20% { opacity: 1; transform: scale(1); }
            80% { opacity: 1; }
            100% { transform: translateX(300%) scale(0); opacity: 0; }
        }

        @keyframes chart-grow {
            from { transform: scaleY(0); }
            to { transform: scaleY(1); }
        }

        @keyframes pie-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes number-count {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .wave-animation {
            animation: wave 6s ease-in-out infinite;
        }

        .fade-in {
            animation: fade-in 0.6s ease-out forwards;
        }

        .data-flow {
            animation: data-flow 3s ease-in-out infinite;
        }

        .chart-grow {
            animation: chart-grow 1s ease-out forwards;
            transform-origin: bottom;
        }

        .number-count {
            animation: number-count 0.6s ease-out forwards;
        }
        
        /* Gradient backgrounds */
        .gradient-bg {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 50%, var(--atlantis) 100%);
        }
        
        .gradient-bg-soft {
            background: linear-gradient(135deg, var(--botticelli) 0%, var(--beryl-green) 50%, var(--deco) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(251, 251, 245, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(153, 186, 192, 0.3);
        }
        
        .glass-green {
            background: rgba(213, 229, 195, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(146, 201, 51, 0.2);
        }
        
        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 90, 120, 0.3);
        }
        
        .btn-secondary {
            border: 2px solid var(--fern);
            color: var(--fern);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--fern);
            color: white;
            transform: translateY(-2px);
        }

        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: white !important;
            backdrop-filter: none !important;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--atoll);
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 1px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -4px);
        }

        /* Navigation styles */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding-bottom: 2px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--fern);
            transform: translateY(-1px);
        }

        /* Card hover effects */
        .hover-card {
            transition: all 0.3s ease;
        }

        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 90, 120, 0.15);
        }

        /* Dashboard mockup */
        .dashboard-mockup {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border: 1px solid #cbd5e0;
            border-radius: 1rem;
            overflow: hidden;
        }

        .dashboard-header {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dashboard-content {
            padding: 1.5rem;
        }

        /* Chart components */
        .chart-container {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .chart-bar {
            background: linear-gradient(to top, var(--atlantis), var(--fern));
            border-radius: 0.25rem 0.25rem 0 0;
            margin: 0 2px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .chart-bar:hover {
            transform: scaleY(1.1);
            filter: brightness(1.1);
        }

        .chart-bar::after {
            content: attr(data-value);
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .chart-bar:hover::after {
            opacity: 1;
        }

        /* KPI cards */
        .kpi-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--fern);
            transition: all 0.3s ease;
        }

        .kpi-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        .kpi-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Data visualization elements */
        .data-pipeline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: linear-gradient(90deg, rgba(90, 180, 83, 0.1), rgba(146, 201, 51, 0.1));
            border-radius: 0.5rem;
            margin: 1rem 0;
        }

        .pipeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }

        .pipeline-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transform: translateY(-50%);
        }

        .pipeline-step:last-child::after {
            display: none;
        }

        .pipeline-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--fern), var(--atlantis));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 0.5rem;
        }

        /* Real-time data indicators */
        .data-indicator {
            position: relative;
            display: inline-block;
        }

        .data-indicator::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Insight cards */
        .insight-card {
            background: linear-gradient(135deg, rgba(90, 180, 83, 0.1), rgba(146, 201, 51, 0.1));
            border: 1px solid rgba(146, 201, 51, 0.3);
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 1rem 0;
        }

        .insight-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, var(--fern), var(--atlantis));
            color: white;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .dashboard-content {
                padding: 1rem;
            }
            
            .pipeline-step::after {
                display: none;
            }
            
            .kpi-number {
                font-size: 2rem;
            }
        }

        @media (hover: none) {
            .hover-card:active {
                transform: scale(0.98);
            }
        }