:root {
            --fluid-gold: #F0B90B;
            --fluid-blue: #6366F1;
            --fluid-purple: #8B5CF6;
            --fluid-pink: #EC4899;
            --fluid-cyan: #06B6D4;
            --fluid-bg: #030712;
            --fluid-text: #F9FAFB;
            --fluid-dim: rgba(255,255,255,0.5);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background: var(--fluid-bg); color: var(--fluid-text); line-height: 1.7; overflow-x: hidden; }

        /* Animated gradient background */
        .gradient-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
        .gradient-bg::before { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; filter: blur(120px); opacity: 0.15; top: -200px; right: -200px; background: linear-gradient(135deg, var(--fluid-gold), var(--fluid-blue), var(--fluid-purple)); animation: floatA 15s ease-in-out infinite; }
        .gradient-bg::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(100px); opacity: 0.12; bottom: -100px; left: -100px; background: linear-gradient(135deg, var(--fluid-cyan), var(--fluid-purple), var(--fluid-pink)); animation: floatB 18s ease-in-out infinite; }
        @keyframes floatA { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(60px, 40px) scale(1.1); } 66% { transform: translate(-30px, 80px) scale(0.95); } }
        @keyframes floatB { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-50px, -60px) scale(1.05); } 66% { transform: translate(70px, -30px) scale(1.1); } }

        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(3,7,18,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
        .nav-inner { max-width: 1200px; margin: 0 auto; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--fluid-gold), #FCD34D); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #000; }
        .logo-text { font-weight: 700; font-size: 20px; letter-spacing: 0.5px; background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 36px; }
        .nav-links a { color: var(--fluid-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s; padding: 4px 0; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--fluid-gold), var(--fluid-cyan)); border-radius: 1px; transform: scaleX(0); transition: transform 0.3s; }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { transform: scaleX(1); }
        .nav-cta { background: linear-gradient(135deg, var(--fluid-gold), #FCD34D); color: #000; padding: 10px 24px; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 10px; transition: all 0.3s; }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,185,11,0.3); }

        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 24px 80px; }
        .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
        .hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--fluid-gold); margin-bottom: 28px; }
        .hero-label .dot { width: 6px; height: 6px; background: var(--fluid-gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
        .hero h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
        .hero h1 .gradient-text { background: linear-gradient(135deg, var(--fluid-gold), var(--fluid-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 17px; color: var(--fluid-dim); margin-bottom: 40px; max-width: 480px; line-height: 1.9; }
        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--fluid-gold), #FCD34D); color: #000; padding: 16px 32px; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 12px; transition: all 0.3s; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(240,185,11,0.3); }
        .btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 16px 32px; font-size: 15px; font-weight: 500; text-decoration: none; border-radius: 12px; transition: all 0.3s; }
        .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

        /* Floating card */
        .hero-visual { position: relative; }
        .floating-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(20px); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; }
        .floating-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); }
        .card-title { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--fluid-gold); margin-bottom: 32px; }
        .stat-items { display: flex; flex-direction: column; gap: 28px; }
        .stat-row { display: flex; align-items: center; gap: 20px; }
        .stat-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
        .stat-icon.gold { background: rgba(240,185,11,0.12); border: 1px solid rgba(240,185,11,0.2); }
        .stat-icon.blue { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }
        .stat-icon.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); }
        .stat-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
        .stat-info p { font-size: 13px; color: var(--fluid-dim); }

        /* Floating elements */
        .float-el { position: absolute; border-radius: 16px; padding: 12px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); font-size: 12px; font-weight: 600; animation: floatEl 6s ease-in-out infinite; }
        .float-el.el1 { top: -20px; right: -20px; animation-delay: 0s; }
        .float-el.el2 { bottom: -20px; left: -20px; animation-delay: 2s; }
        @keyframes floatEl { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

        /* Section */
        .section { padding: 120px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; background: linear-gradient(135deg, var(--fluid-gold), var(--fluid-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
        .section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
        .section-subtitle { font-size: 17px; color: var(--fluid-dim); max-width: 560px; line-height: 1.8; }

        /* Features */
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
        .feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px; transition: all 0.4s; position: relative; overflow: hidden; }
        .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(240,185,11,0.05), transparent, rgba(6,182,212,0.05)); opacity: 0; transition: opacity 0.4s; }
        .feature-card:hover { border-color: rgba(240,185,11,0.3); transform: translateY(-8px); }
        .feature-card:hover::before { opacity: 1; }
        .feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; position: relative; z-index: 1; }
        .feature-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
        .feature-desc { font-size: 14px; color: var(--fluid-dim); line-height: 1.8; position: relative; z-index: 1; }

        /* Stats bar */
        .stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.02); }
        .stats-item { padding: 36px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
        .stats-item:last-child { border-right: none; }
        .stats-num { font-size: 32px; font-weight: 800; background: linear-gradient(135deg, var(--fluid-gold), var(--fluid-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
        .stats-label { font-size: 12px; color: var(--fluid-dim); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

        /* Products */
        .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
        .product-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 32px; transition: all 0.4s; }
        .product-card:hover { border-color: rgba(240,185,11,0.3); transform: translateY(-4px); }
        .product-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(240,185,11,0.08); border: 1px solid rgba(240,185,11,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
        .product-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
        .product-desc { font-size: 13px; color: var(--fluid-dim); line-height: 1.7; margin-bottom: 16px; }
        .product-link { font-size: 13px; font-weight: 600; color: var(--fluid-gold); text-decoration: none; transition: opacity 0.3s; }
        .product-link:hover { opacity: 0.7; }

        /* Security */
        .security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
        .security-card { text-align: center; padding: 40px 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; transition: all 0.3s; }
        .security-card:hover { border-color: rgba(240,185,11,0.2); }
        .security-icon { font-size: 32px; margin-bottom: 20px; }
        .security-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
        .security-desc { font-size: 12px; color: var(--fluid-dim); line-height: 1.7; }

        /* CTA */
        .cta-section { padding: 140px 24px; text-align: center; position: relative; }
        .cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,185,11,0.08), transparent 70%); pointer-events: none; }
        .cta-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; position: relative; }
        .cta-desc { font-size: 17px; color: var(--fluid-dim); max-width: 480px; margin: 0 auto 40px; line-height: 1.8; position: relative; }
        .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

        /* Footer */
        .footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 24px 40px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
        .footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
        .footer-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--fluid-gold), #FCD34D); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #000; }
        .footer-logo-text { font-weight: 700; font-size: 16px; }
        .footer-text { font-size: 12px; color: var(--fluid-dim); line-height: 1.8; max-width: 440px; margin: 0 auto; }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-inner { grid-template-columns: 1fr; gap: 60px; }
            .features-grid, .products-grid, .security-grid { grid-template-columns: 1fr; }
            .stats-bar { grid-template-columns: repeat(2, 1fr); }
            .stats-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
        }

/* inline style fixed */
.fi-yellow { background: rgba(240,185,11,0.12); border: 1px solid rgba(240,185,11,0.2); }

/* inline style fixed */
.fi-purple { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }

/* inline style fixed */
.fi-violet { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); }

/* inline style fixed */
.fi-cyan { background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.2); }

/* inline style fixed */
.fi-pink { background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.2); }