        :root {
            --gold: #d4af37;
            --gold-light: #f4d03f;
            --gold-bright: #ffd700;
            --gold-dark: #b8960c;
            --gold-glow: rgba(212, 175, 55, 0.5);
            --gold-glow-strong: rgba(212, 175, 55, 0.8);
            
            --black: #000000;
            --black-pure: #000000;
            --black-soft: #050505;
            --black-card: #0a0a0a;
            --black-elevated: #111111;
            --black-border: #1a1a1a;
            
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f0f0f0;
            --gray-200: #e0e0e0;
            --gray-300: #b0b0b0;
            --gray-400: #888888;
            --gray-500: #666666;
            --gray-600: #444444;
            --gray-700: #2a2a2a;
            --gray-800: #1a1a1a;
            
            --success: #00ff88;
            --success-glow: rgba(0, 255, 136, 0.4);
            --danger: #ff4757;
            --purple: #8b5cf6;
            --blue: #3b82f6;
            --cyan: #06b6d4;
            
            --font-display: 'Sora', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
            --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            overflow-y: auto;
            line-height: 1.6;
            width: 100%;
            max-width: 100vw;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-y: contain;
            position: relative;
        }
        
        *, *::before, *::after {
            box-sizing: border-box;
        }
        
        section {
            overflow-x: hidden;
            max-width: 100vw;
            touch-action: pan-y;
        }
        
        /* Scrollbar - DISABLED for mobile compatibility */
        /* Desktop scrollbar - only on larger screens */
        @media (min-width: 1024px) and (pointer: fine) {
            ::-webkit-scrollbar { width: 6px; }
            ::-webkit-scrollbar-track { background: var(--black); }
            ::-webkit-scrollbar-thumb { 
                background: linear-gradient(180deg, var(--gold), var(--gold-dark));
                border-radius: 3px;
            }
        }
        
        /* Mobile & Touch devices - completely disable custom scrollbar */
        @media (max-width: 1023px), (pointer: coarse) {
            ::-webkit-scrollbar {
                width: 0 !important;
                height: 0 !important;
                display: none !important;
                background: transparent !important;
            }
            ::-webkit-scrollbar-track {
                background: transparent !important;
                display: none !important;
            }
            ::-webkit-scrollbar-thumb {
                background: transparent !important;
                display: none !important;
            }
            * {
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
                -webkit-overflow-scrolling: touch;
            }
        }
        
        ::selection {
            background: var(--gold);
            color: var(--black);
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(10px) rotate(-1deg); }
        }
        
        @keyframes float-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.2);
                filter: brightness(1);
            }
            50% { 
                box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 80px var(--gold-glow), 0 0 120px rgba(212, 175, 55, 0.3);
                filter: brightness(1.2);
            }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes rotate-3d {
            0% { transform: rotateY(0deg) rotateX(0deg); }
            25% { transform: rotateY(10deg) rotateX(5deg); }
            50% { transform: rotateY(0deg) rotateX(0deg); }
            75% { transform: rotateY(-10deg) rotateX(-5deg); }
            100% { transform: rotateY(0deg) rotateX(0deg); }
        }
        
        @keyframes particle-float {
            0%, 100% { 
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.3;
            }
            25% { 
                transform: translateY(-100px) translateX(50px) scale(1.2);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-200px) translateX(-30px) scale(0.8);
                opacity: 0.4;
            }
            75% { 
                transform: translateY(-150px) translateX(80px) scale(1.1);
                opacity: 0.5;
            }
        }
        
        @keyframes glow-line {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        @keyframes typing-cursor {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        @keyframes count-up {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes border-dance {
            0%, 100% { 
                border-color: rgba(212, 175, 55, 0.3);
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
            }
            50% { 
                border-color: rgba(212, 175, 55, 0.6);
                box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
            }
        }
        
        @keyframes slide-in-right {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes bounce-subtle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s var(--ease-out-expo);
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== GLOBAL ELEMENTS ===== */
        .gold-text {
            background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-light), var(--gold));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-flow 4s ease infinite;
        }
        
        .glow-text {
            text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 175, 55, 0.3);
        }
        
        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .nav.scrolled {
            padding: 0.75rem 2rem;
            background: rgba(0, 0, 0, 0.9);
            border-bottom-color: rgba(212, 175, 55, 0.2);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s var(--ease-out-back);
        }
        
        .nav-logo:hover {
            transform: scale(1.05);
        }
        
        .nav-logo img {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            box-shadow: 0 0 20px var(--gold-glow);
        }
        
        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.03em;
        }
        
        .nav-logo-text .gold {
            color: var(--gold);
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--gray-300);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transition: all 0.3s var(--ease-out-expo);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-link:hover {
            color: var(--white);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--black);
            padding: 0.875rem 1.75rem;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.4s var(--ease-out-back);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px var(--gold-glow);
            position: relative;
            overflow: hidden;
        }
        
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px var(--gold-glow);
        }
        
        .nav-cta:hover::before {
            left: 100%;
        }
        
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            min-height: 100dvh; /* Dynamic viewport height for mobile */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 140px 2rem 100px;
            touch-action: pan-y;
        }
        
        /* Hero Background Effects */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
        }
        
        .hero-gradient {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 100% 80% at 50% -30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 80% 60% at 85% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 80% 60% at 15% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
            animation: float-slow 20s infinite ease-in-out;
        }
        
        /* Floating Particles */
        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        
        .particle-gold {
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            box-shadow: 0 0 20px var(--gold-glow);
        }
        
        .particle-white {
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
        }
        
        /* Hero Content */
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
            width: 100%;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 0.625rem 1.25rem;
            border-radius: 100px;
            font-size: 0.9rem;
            color: var(--gold);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s var(--ease-out-expo) forwards, border-dance 3s infinite;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge i {
            font-size: 1rem;
        }
        
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse-glow 2s infinite;
            box-shadow: 0 0 10px var(--success-glow);
        }
        
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s forwards;
            opacity: 0;
        }
        
        .hero-title .line {
            display: block;
        }
        
        .hero-title .line-2 {
            font-size: clamp(4rem, 12vw, 8rem);
        }
        
        .hero-subtitle {
            font-size: clamp(1.15rem, 2.5vw, 1.5rem);
            color: var(--gray-300);
            max-width: 750px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
            opacity: 0;
        }
        
        .hero-subtitle strong {
            color: var(--white);
            font-weight: 600;
        }
        
        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
            opacity: 0;
            margin-bottom: 4rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.125rem 2.25rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.4s var(--ease-out-back);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--black);
            box-shadow: 0 8px 30px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px var(--gold-glow);
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
        }
        
        .btn-lg {
            padding: 1.25rem 2.75rem;
            font-size: 1.15rem;
        }
        
        /* Hero Stats */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s forwards;
            opacity: 0;
            width: 100%;
            max-width: 100%;
        }
        
        .hero-stat {
            text-align: center;
            padding: 2rem 1rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            transition: all 0.4s var(--ease-out-expo);
            min-width: 0;
        }
        
        .hero-stat:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .hero-stat-value {
            font-family: var(--font-mono);
            font-size: clamp(1.5rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.25rem;
            text-shadow: 0 0 30px var(--gold-glow);
            word-break: break-word;
        }
        
        .hero-stat-label {
            color: var(--gray-400);
            font-size: clamp(0.7rem, 2vw, 0.9rem);
            font-weight: 500;
        }
        
        /* Hero Scroll Indicator */
        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            animation: fadeInUp 1s var(--ease-out-expo) 0.6s forwards;
            opacity: 0;
        }
        
        .hero-scroll-text {
            font-size: 0.8rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        
        .hero-scroll-icon {
            width: 28px;
            height: 44px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 14px;
            position: relative;
        }
        
        .hero-scroll-dot {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--gold);
            border-radius: 2px;
            animation: bounce-subtle 1.5s infinite;
        }
        
        /* ===== TRUST SECTION ===== */
        .trust {
            padding: 120px 2rem;
            position: relative;
            background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
        }
        
        .trust::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.25);
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            letter-spacing: -0.03em;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-300);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .trust-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 28px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .trust-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .trust-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .trust-card:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.1);
        }
        
        .trust-card:hover::before,
        .trust-card:hover::after {
            opacity: 1;
        }
        
        .trust-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.75rem;
            font-size: 2.25rem;
            color: var(--gold);
            position: relative;
            z-index: 1;
            transition: all 0.4s var(--ease-out-back);
        }
        
        .trust-card:hover .trust-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px var(--gold-glow);
        }
        
        .trust-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .trust-card p {
            color: var(--gray-300);
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        .trust-icon.verified {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
            border-color: rgba(0, 255, 136, 0.3);
        }
        
        .trust-icon.verified i {
            color: #00ff88;
        }
        
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
            border: 1px solid rgba(0, 255, 136, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #00ff88;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .verified-badge:hover {
            background: rgba(0, 255, 136, 0.2);
            border-color: #00ff88;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
        }
        
        .verified-badge i {
            font-size: 0.9rem;
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 80px 2rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px var(--gold-glow);
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-text {
            font-size: 1.15rem;
            color: var(--gray-300);
            margin-bottom: 2rem;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--black);
            padding: 1.25rem 3rem;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.4s var(--ease-out-back);
            box-shadow: 0 8px 30px var(--gold-glow);
            position: relative;
            overflow: hidden;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px var(--gold-glow);
        }
        
        .cta-btn:hover::before {
            left: 100%;
        }
        
        /* ===== WALLET SECTION ===== */
        .wallet {
            padding: 140px 2rem;
            position: relative;
            background: var(--black);
            overflow: hidden;
        }
        
        .wallet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .wallet-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        
        .wallet-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2.75rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        
        .wallet-content p {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .wallet-features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        
        .wallet-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: rgba(0, 255, 136, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.15);
            border-radius: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .wallet-feature-item:hover {
            border-color: rgba(0, 255, 136, 0.3);
            transform: translateX(5px);
        }
        
        .wallet-feature-item i {
            color: var(--success);
            font-size: 1.1rem;
        }
        
        /* Wallet Mockup */
        .wallet-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }
        
        .wallet-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse-glow 4s infinite;
            z-index: 0;
        }
        
        .wallet-mockup {
            position: relative;
            z-index: 1;
            animation: float 8s infinite ease-in-out;
        }
        
        .wallet-phone {
            width: 320px;
            background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
            border-radius: 44px;
            padding: 14px;
            box-shadow: 
                0 60px 120px rgba(0,0,0,0.8),
                0 0 0 1px rgba(255,255,255,0.1),
                inset 0 1px 1px rgba(255,255,255,0.1);
            transform-style: preserve-3d;
            animation: rotate-3d 12s infinite ease-in-out;
        }
        
        .wallet-screen {
            background: linear-gradient(180deg, #0a0a0a, #141414);
            border-radius: 34px;
            padding: 2rem 1.5rem;
            min-height: 520px;
            position: relative;
            overflow: hidden;
        }
        
        .wallet-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 28px;
            background: #000;
            border-radius: 0 0 20px 20px;
        }
        
        .wallet-notch {
            width: 80px;
            height: 24px;
            background: #000;
            border-radius: 0 0 16px 16px;
            margin: 0 auto 1.5rem;
        }
        
        .wallet-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .wallet-logo-mini {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .wallet-logo-mini img {
            width: 32px;
            height: 32px;
            border-radius: 10px;
        }
        
        .wallet-logo-mini span {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .wallet-network {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255,255,255,0.05);
            padding: 0.4rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--gray-300);
        }
        
        .wallet-network-dot {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--success-glow);
        }
        
        .wallet-balance {
            text-align: center;
            padding: 2rem 0;
        }
        
        .wallet-balance-label {
            color: var(--gray-500);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }
        
        .wallet-balance-value {
            font-family: var(--font-mono);
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 0 0 30px var(--gold-glow);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .wallet-balance-usd {
            color: var(--gray-400);
            font-size: 0.95rem;
        }
        
        .wallet-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .wallet-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 18px;
            color: var(--gold);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .wallet-action:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
        }
        
        .wallet-action i {
            font-size: 1.25rem;
        }
        
        .wallet-action span {
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        /* Wallet Feature Cards */
        .wallet-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 5rem;
        }
        
        .wallet-feature-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 24px;
            padding: 2.25rem 1.75rem;
            text-align: center;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .wallet-feature-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
        }
        
        .wallet-feature-card i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.25rem;
        }
        
        .wallet-feature-card h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        
        .wallet-feature-card p {
            color: var(--gray-400);
            font-size: 0.95rem;
        }
        
        /* ===== TRANSFER SECTION ===== */
        .transfer {
            padding: 120px 2rem;
            background: linear-gradient(180deg, var(--black-soft), var(--black));
            position: relative;
        }
        
        .transfer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        }
        
        .transfer-demo {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 4rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .transfer-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 28px;
            padding: 2.5rem 2rem;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .transfer-card:hover {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }
        
        .transfer-card-header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }
        
        .transfer-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            box-shadow: 0 8px 20px var(--gold-glow);
        }
        
        .transfer-user h4 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }
        
        .transfer-user p {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--gray-500);
        }
        
        .transfer-amount {
            text-align: center;
            padding: 1.75rem;
            background: rgba(212, 175, 55, 0.06);
            border-radius: 20px;
        }
        
        .transfer-amount-value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 0 0 20px var(--gold-glow);
        }
        
        .transfer-arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .transfer-arrow-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            color: var(--black);
            animation: pulse-glow 2s infinite;
            box-shadow: 0 15px 40px var(--gold-glow);
        }
        
        .transfer-time {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--success);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .transfer-features {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }
        
        .transfer-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
            color: var(--gray-300);
        }
        
        .transfer-feature i {
            color: var(--success);
            font-size: 1.25rem;
        }
        
        /* ===== TOKENOMICS ===== */
        .tokenomics {
            padding: 140px 2rem;
            background: var(--black-soft);
        }
        
        .tokenomics-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            margin-top: 4rem;
            align-items: start;
        }
        
        .token-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .token-stat-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 1.75rem;
            transition: all 0.4s ease;
        }
        
        .token-stat-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }
        
        .token-stat-label {
            font-size: 0.8rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.5rem;
        }
        
        .token-stat-value {
            font-family: var(--font-mono);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gold);
        }
        
        .distribution-chart {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .distribution-item {
            display: grid;
            grid-template-columns: 130px 1fr 60px;
            align-items: center;
            gap: 1.25rem;
        }
        
        .distribution-label {
            font-size: 0.95rem;
            color: var(--gray-300);
            font-weight: 500;
        }
        
        .distribution-bar-bg {
            height: 44px;
            background: rgba(255,255,255,0.04);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        
        .distribution-bar {
            height: 100%;
            border-radius: 12px;
            display: flex;
            align-items: center;
            padding-left: 1rem;
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 0.85rem;
            transition: width 1.2s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .distribution-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: glow-line 3s infinite;
        }
        
        .distribution-percent {
            font-family: var(--font-mono);
            font-size: 1rem;
            font-weight: 700;
            color: var(--gold);
            text-align: right;
        }
        
        /* ===== APPS SECTION ===== */
        .apps {
            padding: 140px 2rem;
            background: var(--black);
            position: relative;
        }
        
        .apps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
        }
        
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }
        
        .app-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 32px;
            padding: 3rem;
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: transform 0.5s var(--ease-out-expo);
        }
        
        .app-card:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 175, 55, 0.25);
            box-shadow: 0 40px 80px rgba(0,0,0,0.5);
        }
        
        .app-card:hover::before {
            transform: scaleX(1);
        }
        
        .app-card.live {
            border-color: rgba(0, 255, 136, 0.2);
        }
        
        .app-card.live::before {
            background: linear-gradient(90deg, var(--success), #00ffc8);
        }
        
        .app-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .app-icon {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            object-fit: cover;
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
        
        .app-info h3 {
            font-family: var(--font-display);
            font-size: 1.85rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .app-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 0.9rem;
            border-radius: 100px;
        }
        
        .app-status.live {
            background: rgba(0, 255, 136, 0.15);
            color: var(--success);
        }
        
        .app-status.coming {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold);
        }
        
        .app-status i {
            font-size: 0.5rem;
        }
        
        .app-tagline {
            font-size: 1.1rem;
            color: var(--gold);
            font-style: italic;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 3px solid rgba(212, 175, 55, 0.4);
        }
        
        .app-description {
            color: var(--gray-300);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }
        
        .app-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .app-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        
        .app-feature i {
            color: var(--gold);
            width: 20px;
        }
        
        .app-cta {
            display: flex;
            gap: 1rem;
        }
        
        .app-cta .btn {
            flex: 1;
        }
        
        /* ===== TEAM SECTION ===== */
        .team {
            padding: 140px 2rem;
            background: linear-gradient(180deg, var(--black), var(--black-soft));
            position: relative;
        }
        
        .team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }
        
        .team-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .company-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 28px;
            padding: 3rem;
            display: flex;
            gap: 2.5rem;
            align-items: flex-start;
            transition: all 0.5s ease;
        }
        
        .company-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }
        
        .company-logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        .company-info h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--white);
        }
        
        .company-type {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .company-details {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .company-detail {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-300);
            font-size: 0.95rem;
        }
        
        .company-detail i {
            color: var(--gold);
            width: 20px;
            text-align: center;
        }
        
        .company-detail a {
            color: var(--gray-300);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .company-detail a:hover {
            color: var(--gold);
        }
        
        .company-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .company-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.02));
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            color: #00ff88;
        }
        
        .company-badge i {
            font-size: 0.9rem;
        }
        
        .transparency-note {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .transparency-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        
        .transparency-text p {
            color: var(--gray-300);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.7;
        }
        
        .transparency-text strong {
            color: var(--gold);
        }
        
        @media (max-width: 768px) {
            .company-card {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }
            
            .company-logo {
                margin: 0 auto;
            }
            
            .company-details {
                align-items: center;
            }
            
            .company-badges {
                justify-content: center;
            }
            
            .transparency-note {
                flex-direction: column;
                text-align: center;
            }
            
            .transparency-icon {
                margin: 0 auto;
            }
        }
        
        /* ===== FUTURE SECTION ===== */
        .future {
            padding: 140px 2rem;
            background: linear-gradient(180deg, var(--black-soft), var(--black));
        }
        
        .future-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .future-stat-card {
            background: linear-gradient(160deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 32px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .future-stat-card:hover {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
        }
        
        .future-stat-value {
            font-family: var(--font-mono);
            font-size: clamp(4rem, 10vw, 6rem);
            font-weight: 800;
            color: var(--gold);
            text-shadow: 0 0 40px var(--gold-glow);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .future-stat-label {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-200);
            margin-bottom: 0.5rem;
        }
        
        .future-stat-sub {
            font-size: 1rem;
            color: var(--gray-500);
        }
        
        /* Timeline */
        .future-timeline {
            margin-top: 5rem;
        }
        
        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 2.5rem 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 3px;
            background: linear-gradient(90deg, var(--success), var(--gold) 30%, rgba(212, 175, 55, 0.3));
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            text-align: center;
            z-index: 1;
            flex: 1;
        }
        
        .timeline-dot {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--black);
            border: 3px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }
        
        .timeline-item.active .timeline-dot {
            background: linear-gradient(135deg, var(--success), #00ffc8);
            border-color: var(--success);
            color: var(--black);
            box-shadow: 0 0 40px var(--success-glow);
        }
        
        .timeline-item.current .timeline-dot {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-color: var(--gold);
            color: var(--black);
            box-shadow: 0 0 40px var(--gold-glow);
            animation: pulse-glow 2s infinite;
        }
        
        .timeline-item.future .timeline-dot {
            border-color: rgba(212, 175, 55, 0.3);
            color: var(--gold);
        }
        
        .timeline-content h4 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 0.25rem;
        }
        
        .timeline-content p {
            font-size: 0.9rem;
            color: var(--gray-500);
        }
        
        /* ===== ROADMAP ===== */
        .roadmap {
            padding: 140px 2rem;
            background: var(--black);
        }
        
        .roadmap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .roadmap-card {
            background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
        }
        
        .roadmap-card.completed {
            border-color: rgba(0, 255, 136, 0.25);
        }
        
        .roadmap-card.current {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 50px rgba(212, 175, 55, 0.08);
        }
        
        .roadmap-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        
        .roadmap-phase {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.25rem;
        }
        
        .roadmap-card.completed .roadmap-phase {
            background: rgba(0, 255, 136, 0.15);
            color: var(--success);
        }
        
        .roadmap-card.current .roadmap-phase {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold);
        }
        
        .roadmap-card:not(.completed):not(.current) .roadmap-phase {
            background: rgba(255,255,255,0.05);
            color: var(--gray-400);
        }
        
        .roadmap-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
        }
        
        .roadmap-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }
        
        .roadmap-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            font-size: 0.95rem;
            color: var(--gray-300);
        }
        
        .roadmap-list li i {
            margin-top: 0.2rem;
            font-size: 0.8rem;
        }
        
        .roadmap-card.completed .roadmap-list li i {
            color: var(--success);
        }
        
        .roadmap-card.current .roadmap-list li i {
            color: var(--gold);
        }
        
        /* ===== FOOTER ===== */
        .footer {
            padding: 100px 2rem 50px;
            background: var(--black-soft);
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .footer-brand {
            max-width: 350px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            box-shadow: 0 0 20px var(--gold-glow);
        }
        
        .footer-logo-text {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
        }
        
        .footer-logo-text .gold {
            color: var(--gold);
        }
        
        .footer-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px var(--gold-glow);
        }
        
        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(4px);
        }
        
        .footer-bottom {
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer-copyright {
            color: var(--gray-500);
            font-size: 0.9rem;
        }
        
        .footer-copyright strong {
            color: var(--gray-300);
        }
        
        .footer-address {
            color: var(--gray-600);
            font-size: 0.85rem;
        }
        
        .footer-emails {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        .footer-emails a {
            color: var(--gold);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .footer-emails a:hover {
            opacity: 0.8;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .wallet-grid {
                gap: 4rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 1024px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wallet-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .wallet-features-list {
                justify-content: center;
            }
            
            .wallet-content .btn {
                margin: 0 auto;
            }
            
            .wallet-features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tokenomics-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .apps-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1rem;
                border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-mobile-toggle {
                display: block;
            }
            
            .container {
                padding: 0 0.75rem;
            }
            
            .hero {
                padding: 100px 0.75rem 60px;
            }
            
            .hero-content {
                padding: 0;
                max-width: 100%;
            }
            
            .hero-title {
                font-size: 2rem;
                line-height: 1.1;
            }
            
            .hero-badge {
                font-size: 0.7rem;
                padding: 0.35rem 0.7rem;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
                padding: 0;
            }
            
            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                width: 100%;
                max-width: 100%;
            }
            
            .hero-stat {
                padding: 1rem 0.5rem;
                border-radius: 12px;
                min-width: 0;
            }
            
            .hero-stat:last-child {
                grid-column: span 1;
            }
            
            .hero-stat-value {
                font-size: 1.25rem;
            }
            
            .hero-stat-label {
                font-size: 0.65rem;
            }
            
            .hero-buttons {
                padding: 0;
                gap: 0.75rem;
            }
            
            .btn {
                padding: 0.85rem 1rem;
                font-size: 0.9rem;
                width: 100%;
            }
            
            .trust, .wallet, .transfer, .tokenomics, .apps, .future, .roadmap {
                padding: 50px 0.75rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .trust-card {
                padding: 2rem 1.5rem;
            }
            
            .wallet-grid {
                gap: 3rem;
            }
            
            .wallet-content h2 {
                font-size: 2rem;
            }
            
            .wallet-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .wallet-phone {
                width: 100%;
                max-width: 320px;
            }
            
            .transfer-demo {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .transfer-arrow {
                transform: rotate(90deg);
                padding: 0.5rem 0;
            }
            
            .transfer-arrow-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .transfer-features {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .cta-section {
                padding: 50px 1rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .cta-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            .tokenomics-info {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            
            .token-stat {
                padding: 1rem 0.75rem;
            }
            
            .token-stat-value {
                font-size: 1.2rem;
            }
            
            .distribution-item {
                grid-template-columns: 70px 1fr 40px;
                gap: 0.5rem;
            }
            
            .distribution-label {
                font-size: 0.65rem;
            }
            
            .distribution-bar {
                font-size: 0.6rem;
                padding-left: 0.4rem;
            }
            
            .distribution-percent {
                font-size: 0.7rem;
            }
            
            .apps-grid {
                gap: 2rem;
            }
            
            .app-card {
                padding: 1.75rem 1.25rem;
            }
            
            .app-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .app-icon {
                width: 70px;
                height: 70px;
            }
            
            .app-tagline {
                text-align: center;
                font-size: 1rem;
            }
            
            .app-features {
                grid-template-columns: 1fr;
            }
            
            .future-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .future-stat-card {
                padding: 2rem 1.5rem;
            }
            
            .future-stat-value {
                font-size: 3rem;
            }
            
            .timeline {
                flex-direction: column;
                gap: 2rem;
                padding-left: 2.5rem;
            }
            
            .timeline::before {
                top: 0;
                bottom: 0;
                left: 30px;
                right: auto;
                width: 3px;
                height: auto;
            }
            
            .timeline-item {
                display: flex;
                align-items: center;
                gap: 1.25rem;
                text-align: left;
            }
            
            .timeline-dot {
                margin: 0;
                flex-shrink: 0;
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
            
            .timeline-content h4 {
                font-size: 1rem;
            }
            
            .roadmap-grid {
                gap: 1.5rem;
            }
            
            .roadmap-card {
                padding: 1.5rem 1.25rem;
            }
            
            .footer {
                padding: 50px 1rem 30px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-brand {
                text-align: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-links {
                align-items: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 90px 0.75rem 50px;
            }
            
            .hero-content {
                padding: 0;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 0.75rem;
                padding: 0;
            }
            
            .btn {
                width: 100%;
                padding: 0.85rem 1rem;
                font-size: 0.9rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
            
            .hero-stat {
                padding: 1rem 0.5rem;
                border-radius: 12px;
            }
            
            .hero-stat:last-child {
                grid-column: span 1;
            }
            
            .hero-stat-value {
                font-size: 1.25rem;
            }
            
            .hero-stat-label {
                font-size: 0.65rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .section-tag {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
            }
            
            .wallet-phone {
                width: 100%;
                max-width: 260px;
            }
            
            .wallet-features-list {
                grid-template-columns: 1fr;
            }
            
            .app-features {
                grid-template-columns: 1fr;
            }
            
            .app-cta {
                flex-direction: column;
            }
            
            .cta-section {
                padding: 40px 0.75rem;
            }
            
            .cta-btn {
                width: 100%;
                justify-content: center;
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .cta-title {
                font-size: 1.25rem;
            }
            
            .cta-text {
                font-size: 0.9rem;
            }
            
            .tokenomics-info {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
            
            .token-stat {
                padding: 0.75rem 0.5rem;
            }
            
            .token-stat-label {
                font-size: 0.6rem;
            }
            
            .token-stat-value {
                font-size: 1rem;
            }
            
            .distribution-item {
                grid-template-columns: 60px 1fr 35px;
                gap: 0.35rem;
            }
            
            .distribution-label {
                font-size: 0.55rem;
            }
            
            .distribution-bar {
                font-size: 0.5rem;
                padding-left: 0.25rem;
            }
            
            .distribution-percent {
                font-size: 0.6rem;
            }
            
            .trust, .wallet, .transfer, .tokenomics, .apps, .future, .roadmap {
                padding: 50px 0.75rem;
            }
            
            .footer {
                padding: 40px 0.75rem 25px;
            }
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border: none;
            border-radius: 50%;
            color: var(--black);
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s var(--ease-out-expo);
            z-index: 999;
            box-shadow: 0 4px 20px var(--gold-glow);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px var(--gold-glow);
        }
        
        /* Google Translate */
.translate-wrapper {
    position: fixed;
    top: 32px;
    right: 5em;
    z-index: 100000;
}
        
        .translate-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            color: var(--white);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .translate-btn:hover {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .translate-btn-flag {
            width: 22px;
            height: 16px;
            border-radius: 3px;
            object-fit: cover;
        }
        
        .translate-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 0.5rem;
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .translate-wrapper.active .translate-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .translate-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.6rem 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--gray-300);
            font-size: 0.85rem;
        }
        
        .translate-option:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--white);
        }
        
        .translate-option.active {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold);
        }
        
        .translate-option img {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        /* Hide Google Translate default bar */
        .goog-te-banner-frame, 
        .skiptranslate,
        #goog-gt-tt,
        .goog-te-balloon-frame {
            display: none !important;
        }
        
        body {
            top: 0 !important;
        }
        
        .goog-text-highlight {
            background: none !important;
            box-shadow: none !important;
        }
        
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .translate-wrapper {
                top: 93px;
                right: 0.75rem;
            }
            
            .translate-btn {
                padding: 0.4rem 0.6rem;
                font-size: 0.75rem;
            }
            
            .translate-btn #currentLangText {
                display: none;
            }
            
            .translate-btn-flag {
                width: 20px;
                height: 14px;
            }
        }

        /* ===== CRITICAL MOBILE SCROLL FIX ===== */
        @media (max-width: 1023px), (hover: none), (pointer: coarse) {
            html {
                overflow-x: hidden !important;
                overflow-y: scroll !important;
                -webkit-overflow-scrolling: touch !important;
            }
            
            body {
                overflow-x: hidden !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch !important;
                touch-action: pan-y !important;
                overscroll-behavior: contain !important;
            }
            
            /* Force all scrollbars to be invisible on mobile */
            *, *::before, *::after {
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
            }
            
            *::-webkit-scrollbar {
                width: 0 !important;
                height: 0 !important;
                background: transparent !important;
                display: none !important;
            }
            
            /* Ensure sections don't block scroll */
            section, .container, .hero, .trust, .wallet, .transfer, 
            .tokenomics, .apps, .team, .future, .roadmap, footer {
                overflow-x: hidden !important;
                touch-action: pan-y !important;
            }
        }
        
        /* Google Translate - Aggressive hide */
        .goog-te-banner-frame,
        .skiptranslate,
        #goog-gt-tt,
        .goog-te-balloon-frame,
        .goog-te-gadget,
        iframe.goog-te-banner-frame,
        .goog-te-spinner-pos {
            display: none !important;
            visibility: hidden !important;
            height: 0 !important;
            width: 0 !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
        
        body {
            top: 0 !important;
            position: relative !important;
        }