        :root {
            --primary-blue: #0066CC;
            --accent-cyan: #00D4FF;
            --tech-dark: #0A1628;
            --pure-white: #FFFFFF;
            --energy-green: #00C896;
            --warm-sand: #F5E6D3;
            --gradient-ocean: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--tech-dark);
            color: var(--pure-white);
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 15px 5%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
        	            margin-right: 10px;
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-ocean);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        
        .nav-menu {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        
        .nav-link {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-cyan);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .cta-button {
            padding: 12px 25px;
            background: var(--gradient-ocean);
            border: none;
            border-radius: 30px;
            color: var(--pure-white);
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,212,255,0.3);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        #wave-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--accent-cyan), var(--energy-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #B8C5D6;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .btn-primary {
            padding: 18px 40px;
            background: var(--gradient-ocean);
            border: none;
            border-radius: 50px;
            color: var(--pure-white);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            border: 2px solid var(--accent-cyan);
            border-radius: 50px;
            color: var(--accent-cyan);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,212,255,0.4);
        }
        
        .btn-secondary:hover {
            background: var(--accent-cyan);
            color: var(--tech-dark);
        }
        
        /* Metrics Section */
        .metrics {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--tech-dark) 0%, #0F1E35 100%);
        }
        
        .metrics-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .metric-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(0,212,255,0.2);
            transition: all 0.3s ease;
        }
        
        .metric-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.05);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(0,212,255,0.2);
        }
        
        .metric-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-ocean);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .metric-label {
            font-size: 1.1rem;
            color: #B8C5D6;
        }
        
       /* Technology Section */
        .technology {
            padding: 100px 5%;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #B8C5D6;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .tech-visualization {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            height: 600px;
            background: rgba(255,255,255,0.02);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(0,212,255,0.3);
        }
        
        #system-3d {
            width: 100%;
            height: 100%;
        }
        
        .tech-components {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 40px;
            width: 100%;
            max-width: 800px;
        }
        
        .component-card {
            background: rgba(0,102,204,0.1);
            border: 1px solid rgba(0,212,255,0.5);
            border-radius: 15px;
            padding: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .component-card:hover {
            background: rgba(0,212,255,0.2);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,212,255,0.3);
        }
        
        .component-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-ocean);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .component-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .component-desc {
            color: #B8C5D6;
            font-size: 0.95rem;
        }
        
        /* Customer Segments */
        .segments {
            padding: 100px 5%;
            background: linear-gradient(180deg, #0F1E35 0%, var(--tech-dark) 100%);
        }
        
        .segments-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .segment-card {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(0,212,255,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .segment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-ocean);
        }
        
        .segment-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(0,212,255,0.2);
        }
        
        .segment-icon {
            width: 70px;
            height: 70px;
            background: rgba(0,212,255,0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .segment-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .segment-desc {
            color: #B8C5D6;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .segment-link {
            color: var(--accent-cyan);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s ease;
        }
        
        .segment-link:hover {
            gap: 15px;
        }
        
        /* Social Proof */
        .social-proof {
            padding: 80px 5%;
            text-align: center;
        }
        
        .proof-title {
            font-size: 1.3rem;
            color: #B8C5D6;
            margin-bottom: 30px;
        }
        
        .partners-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            opacity: 0.7;
        }
        
        .partner-logo {
            filter: brightness(0) invert(1);
            opacity: 0.5;
            transition: opacity 0.3s ease;
            height: 40px;
        }
        .partner{
            width: 100px;
            height: 40px;
        }
        .partner-logo:hover {
            opacity: 1;
        }
        
        .proof-metric {
            font-size: 2rem;
            font-weight: 800;
            color: var(--energy-green);
            margin-top: 40px;
        }
        
        /* Footer */
        footer {
            padding: 40px 5%;
            background: #050A15;
            text-align: center;
            border-top: 1px solid rgba(0,212,255,0.2);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: #B8C5D6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--accent-cyan);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Water particles */
        .water-particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 9999;
        }
        
        .water-particle.active {
            animation: particle-float 2s ease-out;
        }
        
        @keyframes particle-float {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0);
            }
            50% {
                opacity: 1;
                transform: translate(var(--x), var(--y)) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate(calc(var(--x) * 2), calc(var(--y) * 2)) scale(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .segments-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-components {
                grid-template-columns: 1fr;
            }
        }