        /* ===== CSS VARIABLES - WeFi Branding ===== */
        :root {
            /* Primary Colors */
            --lime-light: #D4EF89;
            --lime-green: #C7F160;
            --bright-green: #00FF88;
            --spotify-green: #1ED760;

            /* Dark Backgrounds */
            --black: #000000;
            --near-black: #0A0A0A;
            --dark-charcoal: #1A1A1A;
            --very-dark-gray: #1B1B1B;
            --near-black-2: #1E1E1E;

            /* Accent Colors */
            --cyan: #00D9FF;
            --dodger-blue: #1E90FF;
            --royal-blue: #4169E1;
            --light-blue: #3B82F6;

            /* Utility Colors */
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --gray: #808080;
            --medium-gray: #4A4A4A;

            /* Typography */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

            /* Spacing - Original */
            --section-padding: 120px;
            --section-padding-mobile: 60px;

            /* NEW: Fluid spacing system using clamp - OPTIMIZED FOR MOBILE */
            --spacing-hero-top: clamp(20px, 4vh, 40px);
            --spacing-hero-bottom: clamp(20px, 3vh, 30px);
            --spacing-hero-inline: clamp(20px, 5vw, 60px);

            /* NEW: Safe area support */
            --safe-area-top: env(safe-area-inset-top, 0px);
            --safe-area-bottom: env(safe-area-inset-bottom, 0px);
            --safe-area-left: env(safe-area-inset-left, 0px);
            --safe-area-right: env(safe-area-inset-right, 0px);

            /* NEW: Navbar height for calculation */
            --navbar-height: 70px;
            --disclaimer-height: 52px;
            --font-display: 'Space Grotesk', sans-serif;

            /* NEW: Dynamic viewport height with fallback */
            --viewport-height: 100dvh;
        }

        /* Fallback for browsers without dvh support */
        @supports not (height: 100dvh) {
            :root {
                --viewport-height: 100vh;
            }
        }

        /* ===== GLOBAL RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }

        /* Cross-browser text rendering */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ===== DISCLAIMER BAR ===== */
        .disclaimer-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 52px;
            background: rgba(26, 26, 26, 0.95);
            /* Dark background */
            color: #FFD700;
            /* Gold text */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            padding: 0 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            /* Subtle gold border */
            backdrop-filter: blur(5px);
        }

        @media (max-width: 480px) {
            .disclaimer-bar {
                font-size: 10px;
                line-height: 1.2;
            }
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: var(--disclaimer-height);
            left: 0;
            right: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(199, 241, 96, 0.1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            height: var(--navbar-height);
            z-index: 9999 !important;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.98);
            box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 9999 !important;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--lime-green);
            font-family: "Space Grotesk", sans-serif;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
            align-items: center;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--lime-green);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--lime-green);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Navigation CTA Button */
        .nav-cta {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            background: var(--lime-green);
            color: var(--black);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(199, 241, 96, 0.3);
            white-space: nowrap;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-cta:hover {
            background: var(--bright-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(199, 241, 96, 0.5);
        }

        .nav-cta:active {
            transform: translateY(0);
        }

        /* Mobile Menu */




        /* ========================================
           TRUST SIGNALS SECTION
           ======================================== */

        .trust-section {
            padding: 60px 40px;
            background: var(--black);
            border-top: 1px solid rgba(199, 241, 96, 0.1);
            border-bottom: 1px solid rgba(199, 241, 96, 0.1);
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .trust-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .trust-heading {
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-align: center;
        }

        .trust-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .trust-logo {
            height: 40px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            opacity: 0.8;
            transition: all 0.3s ease;

        }

        .trust-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .trust-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .trust-section {
                padding: 50px 20px;
            }

            .trust-heading {
                font-size: 14px;
            }

            .trust-logos {
                gap: 30px;
            }

            .trust-logo {
                height: 32px;
                max-width: 120px;
            }
        }

        @media (max-width: 480px) {
            .trust-section {
                padding: 40px 20px;
            }

            .trust-logos {
                gap: 25px;
            }

            .trust-logo {
                height: 28px;
                max-width: 100px;
            }
        }

        /* ========================================
           FOUNDER SPOTLIGHT SECTION
           ======================================== */

        .founder-spotlight-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
            border-top: 1px solid rgba(199, 241, 96, 0.15);
            border-bottom: 1px solid rgba(199, 241, 96, 0.15);
        }

        .founder-spotlight-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .founder-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(30, 30, 30, 0.5));
            border-radius: 24px;
            padding: 50px;
            border: 1px solid rgba(199, 241, 96, 0.2);
            display: flex;
            gap: 40px;
            align-items: center;
            transition: all 0.3s ease;
            margin-top: 40px;
        }

        .founder-card:hover {
            transform: translateY(-5px);
            border-color: var(--lime-green);
            box-shadow: 0 20px 60px rgba(199, 241, 96, 0.15);
        }

        .founder-image {
            flex-shrink: 0;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--lime-green), var(--bright-green));
            padding: 4px;
        }

        .founder-content {
            flex: 1;
        }

        .founder-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--lime-light);
            font-family: "Space Grotesk", sans-serif;
        }

        .founder-role {
            font-size: 16px;
            color: var(--lime-green);
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .founder-bio {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .founder-link {
            color: var(--lime-green);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .founder-link:hover {
            color: var(--bright-green);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .founder-spotlight-section {
                padding: 60px 20px;
            }

            .founder-card {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
                gap: 25px;
            }

            .founder-image {
                width: 120px;
                height: 120px;
            }

            .founder-name {
                font-size: 24px;
            }

            .founder-role {
                font-size: 14px;
            }

            .founder-bio {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .founder-spotlight-section {
                padding: 50px 20px;
            }

            .founder-card {
                padding: 30px 20px;
            }

            .founder-image {
                width: 100px;
                height: 100px;
            }

            .founder-name {
                font-size: 22px;
            }

            .founder-bio {
                font-size: 14px;
            }
        }


        /* Definition Trigger Link */
        .definition-trigger {
            cursor: pointer;
            color: var(--lime-green);
            text-decoration: underline;
            text-decoration-color: rgba(199, 241, 96, 0.5);
            transition: all 0.2s ease;
        }

        .definition-trigger:hover {
            color: var(--bright-green);
            text-decoration-color: var(--bright-green);
        }

        /* Floating Video Button */
        .floating-video-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            /* Moved to left to avoid overlap */
            z-index: 9990;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--lime-green);
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
            text-decoration: none;
        }

        .floating-video-btn:hover {
            transform: translateY(-5px) scale(1.05);
            background: var(--lime-green);
            box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
        }

        .floating-video-btn span {
            font-weight: 700;
            color: var(--lime-green);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .floating-video-btn:hover span {
            color: black;
        }

        .floating-video-btn .play-icon {
            width: 32px;
            height: 32px;
            background: var(--lime-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 12px;
            transition: all 0.3s;
        }

        .floating-video-btn:hover .play-icon {
            background: black;
            color: var(--lime-green);
            transform: rotate(360deg);
        }

        @media (max-width: 768px) {
            .floating-video-btn {
                bottom: 20px;
                left: 20px;
                padding: 10px 20px;
            }

            .floating-video-btn span {
                font-size: 12px;
            }

            .floating-video-btn .play-icon {
                width: 28px;
                height: 28px;
            }
        }

        /* ========================================
           ITO NODES HERO SECTION
           ======================================== */

        .ito-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: calc(var(--navbar-height) + var(--disclaimer-height) + 20px) 40px 20px;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .ito-hero-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Content */
        .ito-hero-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ito-badge {
            display: inline-block;
            width: fit-content;
            height: 32px;
            padding: 0 16px;
            background: rgba(212, 239, 137, 0.15);
            border: 1px solid rgba(212, 239, 137, 0.3);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.5px;
            line-height: 32px;
            text-align: left;
        }

        .ito-hero-title {
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--white);
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -1px;
        }

        .gradient-text {
            font-weight: 600;
            color: var(--lime-green);
        }

        .ito-hero-subtitle {
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
            line-height: 1.4;
        }

        .ito-hero-description {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Benefits List with Checkmark Circles */
        .ito-benefits-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ito-benefits-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .check-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            min-width: 24px;
            border: 2px solid var(--white);
            border-radius: 50%;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .ito-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--lime-green);
            color: var(--black);
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 12px;
            width: fit-content;
        }

        .ito-cta-button:hover {
            background: var(--bright-green);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(199, 241, 96, 0.4);
        }

        .ito-cta-button svg {
            transition: transform 0.3s ease;
        }

        .ito-cta-button:hover svg {
            transform: translateX(4px);
        }

        /* Right Visual */
        .ito-hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 600px;
        }

        /* YouTube Video Container - Modern Design */
        .youtube-video-container {
            position: relative;
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(199, 241, 96, 0.2);
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
        }

        .youtube-video-container:hover {
            transform: translateY(-8px);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px var(--lime-green),
                0 0 40px rgba(199, 241, 96, 0.2);
        }

        /* Background Elements */
        .ito-bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(199, 241, 96, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(199, 241, 96, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }

        .ito-glow-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(199, 241, 96, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-glow 4s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .ito-hero-container {
                display: flex;
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .ito-hero-content {
                align-items: center;
                order: 1;
            }

            .ito-hero-visual {
                order: 2;
                height: auto;
            }

            .ito-cta-button {
                margin-left: auto;
                margin-right: auto;
            }

            .youtube-video-container {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            /* ===== MOBILE POLISH FIXES ===== */

            /* Fix 1: Hide Sign Up button in nav (blocking language icons) */
            .nav-cta {
                display: none !important;
            }

            /* Fix 2: Reduce massive top gap between Nav Bar and Title */
            .ito-hero {
                padding: calc(var(--navbar-height) + var(--disclaimer-height) + 10px) 20px 40px;
                /* Reduced from 30px to 10px top padding */
                /* Reduced from 60px to 40px bottom padding */
            }

            .ito-hero-container {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            /* Use display: contents to unwrap children and control order individually */
            .ito-hero-content {
                display: contents;
            }

            .ito-hero-visual {
                display: contents;
            }

            /* ===== MOBILE SEQUENCE ORDER ===== */
            /* Order 1: Primary Title - "The World's First Deobank*" */
            .ito-hero-title {
                order: 1;
                font-size: 32px;
                margin-bottom: 8px;
            }

            /* Order 2: Secondary Title - "Decentralized Onchain Banking Platform" */
            .ito-hero-description:nth-of-type(1) {
                order: 2;
                margin-bottom: 12px;
            }

            /* Order 3: Hook - "Your Money Your Way!" */
            .ito-hero-visual .text-center {
                order: 3;
                margin-bottom: 16px;
            }

            /* Order 4: The Intro Video */
            .youtube-video-container {
                order: 4;
                max-width: 320px;
                margin: 0 auto 16px;
                border-radius: 16px;
            }

            /* Order 5: Banking on Blockchain - "Banking on the Blockchain..." */
            .ito-hero-description:nth-of-type(2) {
                order: 5;
                margin-bottom: 12px;
            }

            /* Order 6: Evolution Paragraph - "WeFi is the evolution..." */
            /* Fix 3: Reduce gap after "No more waiting!" */
            .ito-hero-description:nth-of-type(3) {
                order: 6;
                margin-bottom: 20px;
                /* Reduced from 16px to create tighter flow into next section */
            }

            /* Hide these elements on mobile */
            .hero-cta-container {
                display: none !important;
            }

            .scroll-indicator {
                display: none !important;
            }

            .ito-bg-grid,
            .ito-glow-orb {
                display: none;
            }

            /* Size adjustments */
            .ito-hero-description {
                font-size: 15px;
                text-align: center;
            }

            .ito-hero-subtitle {
                font-size: 18px;
            }

            /* Fix 4: Center-align all sections and reduce top padding */
            .section {
                padding: 60px 20px;
                /* Reduced from default to create tighter spacing */
            }

            .section-header,
            .section-container,
            .feature-grid,
            .feature-card {
                text-align: center;
            }

            .feature-title,
            .feature-description,
            .feature-bullets {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .feature-bullets {
                list-style-position: inside;
            }
        }

        @media (max-width: 480px) {
            .ito-hero-title {
                font-size: 28px;
                margin-bottom: 4px;
            }

            .ito-hero-container {
                gap: 6px;
            }

            .ito-hero-visual {
                margin-top: 4px;
                margin-bottom: 4px;
                height: auto;
            }

            .ito-badge {
                margin-bottom: 4px;
            }

            .ito-hero-description:nth-of-type(1) {
                margin-top: 4px;
            }

            .youtube-video-container {
                max-width: 100%;
                border-radius: 12px;
            }
        }

        /* ========================================
           HERO SECTION - PRODUCTION-READY SOLUTION
           ======================================== */

        /* === Hero Section Base Styles === */
        .hero {
            /* Optimized height for compact layout */
            min-height: auto;

            /* Fluid padding with safe area compensation and navbar offset */
            padding-block-start: calc(var(--navbar-height) + var(--disclaimer-height) + var(--spacing-hero-top) + var(--safe-area-top));
            padding-block-end: calc(var(--spacing-hero-bottom) + var(--safe-area-bottom));
            padding-inline: calc(var(--spacing-hero-inline) + max(var(--safe-area-left), var(--safe-area-right)));

            /* Layout */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;

            /* Background */
            background: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #1A1A1A 100%);

            /* Ensure content is above fold on all devices */
            box-sizing: border-box;
        }

        /* === Background Animation (Performance Optimized) === */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(199, 241, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);

            /* GPU-accelerated animation */
            will-change: opacity;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .hero::before {
                animation: none;
                opacity: 0.7;
            }
        }

        /* === Hero Container (Single Padding Layer) === */
        .hero-container {
            /* Maximum readable width */
            max-width: min(1400px, 100% - 2rem);
            width: 100%;
            margin-inline: auto;

            /* Layout */
            text-align: center;
            position: relative;
            z-index: 10;

            /* NO additional padding - handled by .hero */
            padding: 0;
        }

        /* === Responsive Container Width === */
        @media (min-width: 1440px) {
            .hero-container {
                max-width: 1200px;
            }
        }

        /* === Hero Badge - Fully Responsive === */
        .hero-badge {
            /* Layout */
            display: inline-block;

            /* Styling */
            background: linear-gradient(135deg, rgba(199, 241, 96, 0.15), rgba(0, 255, 136, 0.15));
            border: 1px solid rgba(199, 241, 96, 0.4);
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(199, 241, 96, 0.1);

            /* Fluid padding and spacing - OPTIMIZED */
            padding: clamp(8px, 1.5vw, 12px) clamp(18px, 3vw, 28px);
            margin-block-end: clamp(12px, 2vh, 16px);

            /* Fluid typography */
            font-size: clamp(11px, 1.8vw, 13px);
            font-weight: 600;
            color: #FFFFFF;
            letter-spacing: clamp(0.5px, 0.1vw, 0.8px);

            /* Text handling */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;

            /* Animation */
            animation: fadeInUp 0.6s ease-out;
        }

        /* === Hero Title - Continuous Fluid Typography === */
        .hero-title {
            /* Perfect fluid scale from mobile to desktop */
            font-size: clamp(1.5rem, 4vw + 1rem, 3.625rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: clamp(-0.5px, -0.1vw, -1px);

            /* Spacing - OPTIMIZED */
            margin-block-end: clamp(10px, 1.5vh, 14px);

            /* Font */
            font-family: "Space Grotesk", sans-serif;
            word-spacing: 0.1em;
            color: var(--white);

            /* Prevent orphans and improve text wrapping */
            text-wrap: balance;
            hyphens: auto;

            /* Animation */
            animation: fadeInUp 0.8s ease-out;
        }

        /* Fallback for browsers without text-wrap */
        @supports not (text-wrap: balance) {
            .hero-title {
                overflow-wrap: break-word;
                word-wrap: break-word;
            }
        }

        /* === Gradient Highlight === */
        .hero-title .highlight {
            color: var(--lime-green);
            display: inline;
        }

        /* === Hero Subtitle === */
        .hero-subtitle {
            font-size: clamp(1.125rem, 2vw + 0.5rem, 1.75rem);
            font-weight: 600;
            color: var(--lime-light);
            line-height: 1.4;

            /* Spacing - OPTIMIZED */
            margin-block-end: clamp(10px, 1.5vh, 12px);

            /* Readability */
            max-width: 750px;
            margin-inline: auto;
            word-spacing: 0.05em;

            /* Animation */
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        /* === Hero Description === */
        .hero-description {
            font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;

            /* Optimal reading width */
            max-width: min(750px, 100%);
            margin-inline: auto;
            margin-block-end: clamp(20px, 3vh, 28px);

            /* Readability */
            word-spacing: 0.03em;

            /* Animation */
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        /* === CTA Buttons Container === */
        .hero-cta {
            display: flex;
            gap: clamp(12px, 2vw, 20px);
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;

            /* Vertical gap when wrapped */
            row-gap: clamp(12px, 2vh, 16px);

            /* Animation */
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        /* === Animation Keyframes === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === Button Base Styles === */
        .btn {
            /* Layout */
            display: inline-flex;
            align-items: center;
            justify-content: center;

            /* Fluid padding */
            padding: clamp(14px, 2vh, 18px) clamp(24px, 4vw, 40px);

            /* Sizing */
            min-height: 44px;
            min-width: fit-content;

            /* Styling */
            border-radius: 50px;
            text-decoration: none;
            border: none;
            cursor: pointer;

            /* Typography */
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            letter-spacing: 0.5px;
            text-align: center;
            white-space: nowrap;

            /* Effects */
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

            /* Ensure text is clickable */
            user-select: none;
        }

        /* Ripple effect on click */
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            pointer-events: none;
        }

        .btn:active::before {
            width: 400px;
            height: 400px;
        }

        /* Shimmer effect */
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 100%);
            transform: skewX(-25deg);
            transition: left 0.8s ease;
        }

        .btn:hover::after {
            left: 200%;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: var(--lime-green);
            color: var(--black);
            box-shadow: 0 10px 30px rgba(199, 241, 96, 0.3);
        }

        .btn-primary:hover {
            background: var(--bright-green);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(199, 241, 96, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-secondary {
            background: var(--lime-green);
            color: var(--black);
            border: 2px solid var(--lime-green);
            box-shadow: 0 10px 30px rgba(199, 241, 96, 0.3);
        }

        .btn-secondary:hover {
            background: var(--bright-green);
            border-color: var(--bright-green);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(199, 241, 96, 0.5);
        }

        .btn-secondary:active {
            transform: translateY(-1px) scale(0.98);
        }

        /* === Responsive Button Adjustments === */
        @media (max-width: 380px) {
            .btn {
                white-space: normal;
                word-break: break-word;
                hyphens: auto;
                padding: 12px 20px;
                min-width: 120px;
            }
        }

        /* === Tablet Landscape Optimization === */
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
            :root {
                --spacing-hero-top: clamp(60px, 10vh, 90px);
                --spacing-hero-bottom: clamp(30px, 6vh, 50px);
            }

            .hero {
                min-height: 100vh;
            }
        }

        /* === Short Viewport Height Adjustment === */
        @media (max-height: 600px) and (orientation: landscape) {
            :root {
                --spacing-hero-top: 60px;
                --spacing-hero-bottom: 30px;
            }

            .hero-title {
                font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
            }

            .hero-description {
                font-size: clamp(0.875rem, 1.2vw + 0.5rem, 1rem);
            }
        }

        /* === High-DPI Display Optimization === */
        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {

            .hero-title,
            .hero-subtitle,
            .hero-description {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                text-rendering: optimizeLegibility;
            }
        }

        /* === Reduced Motion Support === */
        @media (prefers-reduced-motion: reduce) {

            .hero::before,
            .hero-badge,
            .hero-title,
            .hero-subtitle,
            .hero-description,
            .hero-cta {
                animation: none;
            }

            .btn {
                transition: none;
            }
        }

        /* === Print Styles === */
        @media print {
            .hero {
                min-height: auto;
                padding: 20px;
                page-break-inside: avoid;
            }

            .hero::before {
                display: none;
            }
        }

        /* === MOBILE-SPECIFIC HERO OPTIMIZATIONS === */
        @media (max-width: 768px) {
            .hero {
                padding-block-start: calc(var(--navbar-height) + var(--disclaimer-height) + 15px + var(--safe-area-top));
                padding-block-end: calc(15px + var(--safe-area-bottom));
            }

            .hero-badge {
                margin-block-end: 10px;
            }

            .hero-title {
                margin-block-end: 10px;
            }

            .hero-description {
                margin-block-end: 18px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-block-start: calc(var(--navbar-height) + var(--disclaimer-height) + 12px + var(--safe-area-top));
                padding-block-end: calc(12px + var(--safe-area-bottom));
            }

            .hero-badge {
                margin-block-end: 8px;
            }

            .hero-title {
                margin-block-end: 8px;
            }

            .hero-description {
                margin-block-end: 16px;
            }
        }

        @media (max-width: 360px) {
            .hero {
                padding-block-start: calc(var(--navbar-height) + var(--disclaimer-height) + 10px + var(--safe-area-top));
                padding-block-end: calc(10px + var(--safe-area-bottom));
            }
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: var(--section-padding) 40px;
            position: relative;
            overflow: hidden;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.8px;
            line-height: 1.2;
            word-spacing: 0.05em;
            font-family: "Space Grotesk", sans-serif;
            color: var(--white);
        }

        .section-title .highlight {
            color: var(--lime-green);
        }

        .section-subtitle {
            font-size: clamp(16px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(30, 30, 30, 0.8));
            border: 1px solid rgba(199, 241, 96, 0.2);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--lime-green), var(--bright-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--lime-green);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
        }

        /* Highlight effect when scrolling back to card after video */
        .feature-card.scroll-highlight,
        .founder-card.scroll-highlight {
            animation: cardHighlight 2s ease-out;
        }

        @keyframes cardHighlight {
            0% {
                box-shadow: 0 0 0 0 rgba(199, 241, 96, 0);
                border-color: rgba(199, 241, 96, 0.2);
            }

            10% {
                box-shadow: 0 0 30px 10px rgba(199, 241, 96, 0.6);
                border-color: rgba(199, 241, 96, 0.8);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(199, 241, 96, 0);
                border-color: rgba(199, 241, 96, 0.2);
            }
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 120px;
            /* Fixed height for consistency */
        }

        .feature-image {
            max-width: 140px;
            /* Adjust size as requested */
            height: auto;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(199, 241, 96, 0.3));
            /* Glow effect */
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-image {
            transform: scale(1.1);
        }

        /* Multicolor Gradient Icons */
        .icon-gradient-1 {
            background: linear-gradient(135deg, var(--lime-green), var(--bright-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .icon-gradient-2 {
            background: linear-gradient(135deg, var(--cyan), var(--dodger-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .icon-gradient-3 {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            /* Gold to Orange */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .icon-gradient-4 {
            background: linear-gradient(135deg, #FF00CC, #333399);
            /* Pink to Purple */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            font-weight: 700;
            color: white;
            font-family: "Space Grotesk", sans-serif;
        }

        .feature-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--lime-green);
            line-height: 1.3;
            font-family: "Space Grotesk", sans-serif;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .feature-cta-link {
            color: var(--lime-green);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 8px;
        }

        .feature-cta-link:hover {
            color: var(--bright-green);
            transform: translateX(3px);
        }

        .feature-bullets {
            list-style: none;
            margin-bottom: 20px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-bullets li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .feature-bullets li::before {
            content: '✓';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            min-width: 24px;
            border: 2px solid var(--white);
            border-radius: 50%;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Dynamic price styling */
        .dynamic-price {
            color: var(--lime-green);
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .dynamic-price.loading {
            color: rgba(199, 241, 96, 0.5);
            animation: pulse 1.5s ease-in-out infinite;
        }

        .dynamic-price.error {
            color: rgba(255, 100, 100, 0.8);
        }

        .dynamic-price.updated {
            animation: priceUpdate 0.5s ease-out;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes priceUpdate {
            0% {
                transform: scale(1);
                color: var(--lime-green);
            }

            50% {
                transform: scale(1.05);
                color: var(--bright-green);
            }

            100% {
                transform: scale(1);
                color: var(--lime-green);
            }
        }

        .feature-cta {
            display: inline-block;
            color: var(--lime-green);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .feature-cta:hover {
            color: var(--bright-green);
            transform: translateX(-5px);
        }

        /* Mobile optimization for CTA text */
        @media (max-width: 768px) {
            .feature-cta {
                font-size: 15px;
                white-space: normal;
                word-spacing: 0.05em;
            }
        }

        @media (max-width: 480px) {
            .feature-cta {
                font-size: 14px;
                line-height: 1.5;
                display: block;
                margin-top: 8px;
            }

            .feature-card {
                padding: 30px 25px;
            }

            .feature-title {
                font-size: 21px;
            }

            .feature-description {
                font-size: 15px;
                line-height: 1.6;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 28px;
                border-width: 2px;
            }
        }

        @media (max-width: 360px) {
            .feature-cta {
                font-size: 13px;
                letter-spacing: -0.3px;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .feature-title {
                font-size: 20px;
            }
        }

        /* ===== MINI FAQ SECTION ===== */
        .mini-faq {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(30, 30, 30, 0.5));
            border-radius: 16px;
            padding: 60px 40px;
            margin-top: 80px;
            border: 1px solid rgba(199, 241, 96, 0.2);
        }

        .faq-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--lime-light);
            font-family: "Space Grotesk", sans-serif;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        /* Mobile FAQ item spacing */
        @media (max-width: 768px) {
            .faq-item {
                margin-bottom: 18px;
                padding-bottom: 18px;
            }
        }

        @media (max-width: 480px) {
            .faq-item {
                margin-bottom: 16px;
                padding-bottom: 16px;
            }
        }

        .faq-question {
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            padding: 15px 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-primary);
            transition: color 0.3s ease;
            line-height: 1.4;
        }

        .faq-question:hover {
            color: var(--lime-green);
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--lime-green);
            transition: transform 0.3s ease;
            margin-left: 15px;
            flex-shrink: 0;
            /* Prevents + from shrinking on mobile */
        }

        /* Mobile FAQ question optimization */
        @media (max-width: 768px) {
            .faq-question {
                font-size: 17px;
                padding: 12px 0;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            .faq-question {
                font-size: 16px;
                padding: 12px 0;
                line-height: 1.5;
            }

            .faq-question::after {
                font-size: 22px;
                margin-left: 12px;
            }
        }

        @media (max-width: 360px) {
            .faq-question {
                font-size: 15px;
            }
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            font-size: 16px;
        }

        .faq-answer .inline-link {
            color: var(--lime-green);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .faq-answer .inline-link:hover {
            color: var(--bright-green);
            border-bottom-color: var(--bright-green);
        }

        .faq-answer.active {
            max-height: 600px;
            /* Increased to accommodate longer answers with links */
            padding-top: 10px;
            padding-bottom: 5px;
        }

        /* Mobile-specific FAQ answer height */
        @media (max-width: 768px) {
            .faq-answer {
                font-size: 15px;
                line-height: 1.8;
                /* Better readability on mobile */
            }

            .faq-answer.active {
                max-height: 800px;
                /* Much larger for mobile text wrapping */
            }
        }

        @media (max-width: 480px) {
            .faq-answer {
                font-size: 14px;
                line-height: 1.9;
                /* Extra spacing for small screens */
            }

            .faq-answer.active {
                max-height: 1000px;
                /* Generous height for small screens where text wraps most */
            }
        }

        @media (max-width: 360px) {
            .faq-answer.active {
                max-height: 1200px;
                /* Maximum for very small screens */
            }
        }

        .faq-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* ===== DOWNLOADS & RESOURCES SECTION ===== */
        .downloads-section {
            background: linear-gradient(180deg, var(--black) 0%, var(--near-black) 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .downloads-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--lime-green), transparent);
            opacity: 0.3;
        }

        .downloads-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .downloads-header .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .downloads-header .section-subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .downloads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .download-card {
            background: var(--dark-charcoal);
            border: 1px solid rgba(199, 241, 96, 0.15);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .download-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--lime-green), var(--bright-green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .download-card:hover {
            transform: translateY(-8px);
            border-color: var(--lime-green);
            box-shadow: 0 20px 40px rgba(199, 241, 96, 0.15);
        }

        .download-card:hover::before {
            transform: scaleX(1);
        }

        .download-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--lime-green), var(--bright-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .download-icon svg {
            color: var(--black);
            transition: transform 0.3s ease;
        }

        .download-card:hover .download-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .download-card:hover .download-icon svg {
            transform: scale(1.1);
        }

        .download-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .download-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            min-height: 75px;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--lime-green), var(--bright-green));
            color: var(--black);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .download-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .download-btn span {
            position: relative;
            z-index: 1;
        }

        .download-btn svg {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(199, 241, 96, 0.4);
        }

        .download-btn:hover svg {
            transform: translateY(3px);
        }

        .download-btn:active {
            transform: scale(0.98);
        }

        .downloads-footer {
            text-align: center;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(199, 241, 96, 0.1);
        }

        .downloads-note {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            padding: 12px 24px;
            background: rgba(199, 241, 96, 0.05);
            border-radius: 50px;
            border: 1px solid rgba(199, 241, 96, 0.1);
        }

        .downloads-note svg {
            color: var(--lime-green);
            flex-shrink: 0;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .downloads-section {
                padding: 60px 20px;
            }

            .downloads-header {
                margin-bottom: 40px;
            }

            .downloads-header .section-title {
                font-size: 1.875rem;
            }

            .downloads-header .section-subtitle {
                font-size: 1rem;
            }

            .downloads-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .download-card {
                padding: 30px 20px;
            }

            .download-icon {
                width: 70px;
                height: 70px;
            }

            .download-icon svg {
                width: 35px;
                height: 70px;
            }

            .download-title {
                font-size: 1.25rem;
            }

            .download-description {
                font-size: 0.95rem;
                min-height: auto;
                margin-bottom: 25px;
            }

            .download-btn {
                width: 100%;
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .downloads-footer {
                margin-top: 40px;
                padding-top: 30px;
            }

            .downloads-note {
                font-size: 0.875rem;
                padding: 10px 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .downloads-header .section-title {
                font-size: 1.5rem;
            }

            .download-btn span {
                font-size: 0.875rem;
            }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--near-black);
            padding: 60px 40px 30px;
            border-top: 1px solid rgba(199, 241, 96, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--lime-green);
            font-family: "Space Grotesk", sans-serif;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        /* ===== SOCIAL MEDIA ICONS - CONVERSION OPTIMIZED ===== */
        .footer-links a .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            margin-right: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            vertical-align: middle;
        }

        /* Platform-Specific Brand Colors */
        .footer-links a .fa-whatsapp {
            color: #25D366;
        }

        .footer-links a .fa-users {
            color: #00E676;
        }

        .footer-links a .fa-facebook {
            color: #1877F2;
        }

        .footer-links a .fa-youtube {
            color: #FF0000;
        }

        /* Hover Effects - Scale & Glow */
        .footer-links a:hover .social-icon {
            transform: scale(1.2) translateY(-2px);
        }

        .footer-links a:hover .fa-whatsapp {
            filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
        }

        .footer-links a:hover .fa-users {
            filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.6));
        }

        .footer-links a:hover .fa-facebook {
            filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.6));
        }

        .footer-links a:hover .fa-youtube {
            filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
        }

        /* Mobile Optimization - Larger Touch Targets */
        @media (max-width: 768px) {
            .footer-links a .social-icon {
                width: 28px;
                height: 28px;
                font-size: 18px;
                margin-right: 14px;
            }

            .footer-links a {
                font-size: 15px;
                font-weight: 500;
            }
        }

        .website-clone-offer {
            background: linear-gradient(135deg, rgba(199, 241, 96, 0.1), rgba(0, 255, 136, 0.1));
            border: 1px solid rgba(199, 241, 96, 0.3);
            border-radius: 12px;
            padding: 25px 30px;
            margin-bottom: 30px;
            text-align: center;
        }

        .website-clone-offer p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            font-size: 16px;
        }

        .website-clone-offer a {
            color: var(--lime-green);
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
        }

        .website-clone-offer a:hover {
            color: var(--bright-green);
        }

        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .nav-cta {
                padding: 9px 20px;
                font-size: 13px;
                min-height: 40px;
            }

            .section {
                padding: 80px 30px;
            }

            .hero {
                padding: 80px 30px 50px;
            }

            .hero-title {
                font-size: clamp(38px, 6vw, 52px);
                letter-spacing: -0.8px;
                word-spacing: 0.08em;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            /* CRITICAL FIX: Reduce logo size on mobile to prevent overlap with badge */
            .logo {
                font-size: 20px;
                letter-spacing: -0.5px;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.98);
                width: 100%;
                padding: 40px;
                gap: 20px;
                transition: left 0.3s ease;
                border-top: 1px solid rgba(199, 241, 96, 0.2);
            }

            .nav-menu.active {
                left: 0;
            }





            .nav-cta {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 20px;
                padding: 8px 20px;
                font-size: 13px;
                min-height: 36px;
            }

            .nav-container {
                padding: 20px;
            }

            /* Adjust hero padding for mobile to prevent content overlap */
            .hero {
                min-height: 100vh;
                padding-block-start: calc(var(--navbar-height) + 40px);
                padding-block-end: 40px;
                padding-inline: 20px;
            }

            .hero-title {
                font-size: clamp(30px, 7vw, 38px);
                line-height: 1.25;
                margin-bottom: 18px;
                letter-spacing: -0.5px;
                word-spacing: 0.08em;
            }

            .hero-subtitle {
                font-size: clamp(18px, 4vw, 22px);
                margin-bottom: 14px;
            }

            .hero-description {
                font-size: 15px;
                margin-bottom: 30px;
            }

            .hero-badge {
                padding: 10px 20px;
                font-size: 12px;
                margin-bottom: 20px;
            }

            .hero-cta {
                flex-direction: row;
                gap: 12px;
                flex-wrap: wrap;
            }

            .btn {
                width: auto;
                flex: 1 1 auto;
                min-width: 140px;
                padding: 16px 20px;
                font-size: 14px;
                letter-spacing: 0.3px;
            }

            .section {
                padding: 30px 20px;
            }

            .section-title {
                font-size: clamp(28px, 6vw, 40px);
            }

            .section-subtitle {
                font-size: 15px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-title {
                font-size: 22px;
            }

            .feature-description {
                font-size: 15px;
            }

            .mini-faq {
                padding: 40px 20px;
            }

            .faq-title {
                font-size: 26px;
            }

            .faq-question {
                font-size: 16px;
                padding: 12px 0;
            }

            .footer {
                padding: 40px 20px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {

            /* Further reduce logo size on very small screens */
            .logo {
                font-size: 18px;
                letter-spacing: -0.3px;
            }

            .hero {
                min-height: 100vh;
                padding-block-start: calc(var(--navbar-height) + 30px);
                padding-block-end: 30px;
                padding-inline: 15px;
            }

            .hero-title {
                font-size: 28px;
                line-height: 1.3;
                letter-spacing: -0.3px;
                word-spacing: 0.05em;
            }

            .hero-badge {
                padding: 8px 18px;
                font-size: 11px;
                margin-bottom: 18px;
            }

            .hero-subtitle {
                font-size: 17px;
            }

            .btn {
                padding: 14px 16px;
                font-size: 13px;
                white-space: normal;
                line-height: 1.3;
                letter-spacing: 0.2px;
                min-width: 120px;
            }

            .hero-cta {
                gap: 10px;
            }

            .section {
                padding: 25px 15px;
            }

            .section-title {
                font-size: 26px;
            }

            .feature-icon {
                font-size: 40px;
            }

            .feature-title {
                font-size: 20px;
            }

            .logo {
                font-size: 24px;
            }

            .nav-cta {
                right: 16px;
                padding: 6px 16px;
                font-size: 12px;
                min-height: 32px;
            }
        }

        /* Ultra-small screens (360px and below) */
        @media (max-width: 360px) {
            .hero {
                padding: 75px 12px 15px;
            }

            .section {
                padding: 25px 12px;
            }

            .nav-cta {
                right: 12px;
                padding: 5px 12px;
                font-size: 11px;
                min-height: 30px;
            }

            .logo {
                font-size: 22px;
            }

            .btn {
                padding: 12px 14px;
                font-size: 12px;
                min-width: 110px;
            }

            .hero-cta {
                gap: 8px;
            }
        }

        /* iOS-specific fixes */
        @supports (-webkit-touch-callout: none) {
            .btn {
                -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            }

            .hero-title,
            .section-title {
                text-rendering: optimizeLegibility;
            }

            .video-modal {
                -webkit-overflow-scrolling: touch;
            }

            .video-wrapper iframe {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
        }

        /* Prevent video modal scroll issues on mobile */
        body.modal-open {
            position: fixed;
            width: 100%;
            overflow: hidden;
        }

        /* ===== SCROLL TO TOP BUTTON ===== */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--lime-green);
            color: var(--black);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
            transition: all 0.3s ease;
            z-index: 9999;
            opacity: 0;
            transform: scale(0.8);
        }

        .scroll-to-top.visible {
            display: flex;
            opacity: 1;
            transform: scale(1);
        }

        .scroll-to-top:hover {
            background: var(--bright-green);
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
        }

        .scroll-to-top:active {
            transform: scale(0.95);
        }

        .scroll-arrow {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .scroll-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        /* ===== VIDEO MODAL ===== */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .video-container {
            position: relative;
            width: 90%;
            max-width: min(1000px, calc(80vh * (16 / 9)));
            max-height: 85vh;
            /* Critical: Prevents video from exceeding viewport height */
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(30, 30, 30, 0.95));
            border-radius: 20px;
            padding: 8px;
            box-shadow:
                0 25px 80px rgba(0, 255, 136, 0.3),
                0 0 0 1px rgba(199, 241, 96, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .video-modal.active .video-container {
            transform: scale(1);
            opacity: 1;
        }

        .video-modal.closing .video-container {
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.34);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio - fallback for older browsers */
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        /* Modern aspect-ratio support */
        @supports (aspect-ratio: 16 / 9) {
            .video-wrapper {
                aspect-ratio: 16 / 9;
                padding-bottom: 0;
            }
        }

        /* Height-constrained wrapper for laptops */
        @media (max-height: 900px) and (min-width: 769px) {
            .video-wrapper {
                padding-bottom: 0;
                height: calc(85vh - 100px);
                /* Account for modal padding, close button, and margins */
            }

            @supports (aspect-ratio: 16 / 9) {
                .video-wrapper {
                    aspect-ratio: 16 / 9;
                    height: auto;
                    max-height: calc(85vh - 100px);
                }
            }
        }

        @media (max-height: 800px) and (min-width: 769px) {
            .video-wrapper {
                height: calc(78vh - 100px);
            }

            @supports (aspect-ratio: 16 / 9) {
                .video-wrapper {
                    max-height: calc(78vh - 100px);
                }
            }
        }

        @media (max-height: 768px) and (min-width: 769px) {
            .video-wrapper {
                height: calc(70vh - 100px);
            }

            @supports (aspect-ratio: 16 / 9) {
                .video-wrapper {
                    max-height: calc(70vh - 100px);
                }
            }
        }

        /* Extra safeguard: ensure wrapper never exceeds container */
        @media (min-width: 769px) {
            .video-wrapper {
                max-height: calc(85vh - 120px);
            }
        }

        .video-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(199, 241, 96, 0.1) 0%,
                    transparent 50%,
                    rgba(0, 255, 136, 0.1) 100%);
            pointer-events: none;
            z-index: 1;
            opacity: 0.3;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
            object-fit: contain;
            /* Ensures video fits perfectly without cropping */
        }

        /* Ensure iframe fills wrapper on laptops with height constraints */
        @media (min-width: 769px) {
            .video-wrapper iframe {
                object-fit: fill;
                /* Fill the container on larger screens */
            }
        }

        .video-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: rgba(199, 241, 96, 0.1);
            border: 2px solid var(--lime-green);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            font-weight: 300;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .video-close:hover {
            background: var(--lime-green);
            color: var(--black);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 5px 20px rgba(199, 241, 96, 0.4);
        }

        /* Video loading state */
        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 60px;
            border-radius: 16px;
            border: 2px solid var(--lime-green);
            box-shadow: 0 10px 40px rgba(199, 241, 96, 0.3);
        }

        .video-loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(199, 241, 96, 0.2);
            border-top-color: var(--lime-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .video-loading-text {
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .video-loading-subtext {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-align: center;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Hide loading when video is ready */
        .video-loading.hidden {
            display: none;
        }

        /* Mobile responsive loading indicator */
        @media (max-width: 768px) {
            .video-loading {
                padding: 30px 40px;
                gap: 15px;
            }

            .video-loading-spinner {
                width: 50px;
                height: 50px;
            }

            .video-loading-text {
                font-size: 16px;
            }

            .video-loading-subtext {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .video-loading {
                padding: 25px 30px;
                gap: 12px;
            }

            .video-loading-spinner {
                width: 40px;
                height: 40px;
                border-width: 3px;
            }

            .video-loading-text {
                font-size: 15px;
            }

            .video-loading-subtext {
                font-size: 12px;
            }
        }

        /* Mobile responsive video modal */
        @media (max-width: 768px) {
            .video-container {
                width: 95%;
                padding: 6px;
                border-radius: 16px;
            }

            .video-wrapper {
                border-radius: 12px;
            }

            .video-close {
                top: -45px;
                width: 36px;
                height: 36px;
                font-size: 20px;
            }
        }

        /* Laptop screen optimization (768px - 1600px width) */
        @media (min-width: 769px) and (max-width: 1600px) {
            .video-container {
                width: 85%;
                max-width: min(1000px, calc((85vh - 120px) * 16 / 9));
                /* Width limited by height on laptops */
            }
        }

        /* Small laptops (768px - 1024px width) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .video-container {
                width: 90%;
                max-width: min(850px, calc((85vh - 120px) * 16 / 9));
            }
        }

        /* Very small laptop screens (specific height constraints) */
        @media (max-width: 1366px) and (max-height: 768px) {
            .video-container {
                width: 80%;
                max-width: min(900px, calc((70vh - 120px) * 16 / 9));
                max-height: 70vh;
            }
        }

        /* MacBook Air 13" and similar (1440x900) */
        @media (min-width: 1367px) and (max-width: 1440px) and (min-height: 850px) and (max-height: 950px) {
            .video-container {
                width: 85%;
                max-width: min(1000px, calc((75vh - 120px) * 16 / 9));
                max-height: 75vh;
            }
        }

        /* Standard 1080p laptops */
        @media (min-width: 1600px) and (max-height: 1080px) {
            .video-container {
                width: 80%;
                max-width: min(1100px, calc((80vh - 120px) * 16 / 9));
                max-height: 80vh;
            }
        }

        @media (max-width: 480px) {
            .video-container {
                width: 98%;
                padding: 4px;
                border-radius: 12px;
            }

            .video-wrapper {
                border-radius: 10px;
            }

            .video-close {
                top: -40px;
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-40 {
            margin-top: 40px;
        }

        .mb-40 {
            margin-bottom: 40px;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-indicator {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .scroll-indicator:hover {
            color: var(--lime-green);
            transform: translateY(5px);
        }

        .scroll-indicator svg {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-5px);
            }

            60% {
                transform: translateY(-3px);
            }
        }

        /* Definition Modal Styles */
        .definition-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            /* Darker backdrop */
            backdrop-filter: blur(8px);
            z-index: 10002;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .definition-modal.active {
            display: flex;
            opacity: 1;
        }

        .definition-content {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(30, 30, 30, 0.95));
            border: 1px solid var(--lime-green);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(199, 241, 96, 0.2);
            text-align: left;
        }

        .definition-modal.active .definition-content {
            transform: scale(1);
        }

        .definition-title {
            color: var(--lime-green);
            font-family: "Space Grotesk", sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .definition-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .definition-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .definition-close:hover {
            color: var(--white);
        }

        .definition-trigger {
            cursor: pointer;
            color: var(--lime-green);
            border-bottom: 1px dashed rgba(199, 241, 96, 0.5);
            transition: all 0.3s ease;
            position: relative;
            font-weight: 700;
        }

        .definition-trigger:hover {
            color: var(--bright-green);
            border-bottom: 1px solid var(--bright-green);
            text-shadow: 0 0 10px rgba(199, 241, 96, 0.4);
        }

        /* MOBILE FIX: Blockchain Definition Modal */
        @media (max-width: 768px) {
            .definition-content {
                width: 95%;
                max-width: 95%;
                max-height: 85vh;
                overflow-y: auto;
                padding: 50px 25px 25px;
                /* Extra top padding for close button */
            }

            .definition-close {
                /* Make close button VERY prominent on mobile */
                top: 10px;
                right: 10px;
                width: 44px;
                height: 44px;
                background: var(--lime-green);
                color: var(--black);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
                font-weight: bold;
                box-shadow: 0 4px 12px rgba(199, 241, 96, 0.5);
                z-index: 10;
            }

            .definition-close:hover {
                background: var(--bright-green);
                color: var(--black);
                transform: scale(1.1);
            }

            .definition-title {
                font-size: 20px;
                margin-top: 10px;
                /* Space below close button */
            }

            .definition-text {
                font-size: 15px;
            }
        }

        /* Trust Section Hover Effects */
        .testimony-wrapper {
            position: relative;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .hover-quote {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(10, 10, 10, 0.95);
            color: #fff;
            padding: 12px 16px;
            border: 1px solid var(--lime-green);
            border-radius: 12px;
            width: 220px;
            z-index: 100;
            font-size: 14px;
            line-height: 1.4;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hover-quote::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: var(--lime-green) transparent transparent transparent;
        }

        .testimony-wrapper:hover .hover-quote {
            visibility: visible;
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Founder Spotlight Restructure */
        .founder-spotlight-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .reeve-hero-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--lime-green);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(199, 241, 96, 0.1);
        }

        .reeve-hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(199, 241, 96, 0.05) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero-image-wrapper {
            flex-shrink: 0;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 3px solid var(--lime-green);
            box-shadow: 0 0 20px rgba(199, 241, 96, 0.3);
            overflow: hidden;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
        }

        .hero-content {
            flex-grow: 1;
            text-align: left;
        }

        .hero-name {
            font-size: 32px;
            margin-bottom: 8px;
            color: white;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        .hero-role {
            color: var(--lime-green);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-bio {
            font-size: 16px;
            opacity: 0.8;
            margin-bottom: 24px;
            line-height: 1.6;
            max-width: 600px;
        }

        .board-members-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            justify-content: center;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .reeve-hero-card {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
                gap: 24px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-bio {
                margin-left: auto;
                margin-right: auto;
            }

            .board-members-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .board-members-grid {
                grid-template-columns: 1fr;
            }

            /* Refine Hero Card for Mobile */
            .reeve-hero-card {
                padding: 24px 16px;
                gap: 20px;
            }

            .hero-image-wrapper {
                width: 140px;
                height: 140px;
                border-width: 2px;
            }

            .hero-name {
                font-size: 26px;
            }

            .hero-role {
                font-size: 14px;
            }

            .hero-bio {
                font-size: 14px;
            }
        }

        /* Redirect Modal Styles */
        .redirect-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .redirect-modal.active {
            display: flex;
            opacity: 1;
        }

        .redirect-content {
            background: #1a1a1a;
            border: 1px solid rgba(204, 255, 0, 0.2);
            box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
            padding: 32px;
            border-radius: 16px;
            max-width: 360px !important;
            width: 90%;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .redirect-modal.active .redirect-content {
            transform: scale(1);
        }

        .redirect-icon {
            font-size: 40px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        .redirect-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }

        /* FORCE MOBILE MENU EARLIER TO PREVENT WRAPPING */
        @media (max-width: 1280px) {
            .nav-menu {
                display: none;
            }

            .nav-menu.active {
                display: flex !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--lime-green);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                z-index: 1003;
            }


        }

        /* Mobile Header Optimization */
        @media (max-width: 768px) {
            .nav-container {
                padding: 12px 15px;
            }

            .logo {
                font-size: 20px;
            }

            /* GLOBAL FIX: Hide nav CTA on ALL pages on mobile */
            .nav-cta {
                display: none !important;
            }

        }

        /* ===== DUAL-NAVIGATION BYPASS CONTROLLER ===== */
        @media (min-width: 1024px) {
            .mobile-nav-container {
                display: none !important;
            }

            .desktop-nav-container {
                display: flex !important;
            }

            .mobile-menu-btn {
                display: none !important;
            }
        }

        @media (max-width: 1023px) {
            .desktop-nav-container {
                display: none !important;
            }

            /* Logo Alignment Sync â€” force consistent padding on mobile */
            .navbar>div,
            .nav-container {
                padding: 0 20px !important;
            }

            .mobile-nav-container {
                display: none;
                /* hidden until toggled by JS */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 20px 0;
                margin: 0;
                list-style: none;
                z-index: 99998;
                border-bottom: 2px solid var(--lime-green);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            }

            .navbar {
                overflow: visible !important;
            }

            .mobile-nav-container.active {
                display: flex !important;
            }

            .mobile-nav-container li {
                text-align: center;
                padding: 12px 0;
            }

            .mobile-nav-container li a.mobile-nav-link {
                color: #ffffff;
                font-weight: 600;
                text-decoration: none;
                font-size: 16px;
                letter-spacing: 0.5px;
            }

            .mobile-nav-container li a.mobile-nav-link:hover,
            .mobile-nav-container li a.mobile-nav-link.active {
                color: var(--lime-green);
            }

            .mobile-menu-btn {
                display: flex !important;
                /* Force hamburger visibility */
            }

            /* Global Mobile Overflow Fix */
            html,
            body {
                margin: 0 !important;
                padding: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
                position: relative !important;
            }

            /* Width Jiggle Fix */
            * {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            /* Straitjacket Fix â€” Force full-width containers on mobile */
            .hero,
            .ito-hero,
            .section,
            .trust-section,
            .founder-spotlight-section,
            .mini-faq,
            .footer {
                width: 100% !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }

            .hero-container,
            .ito-hero-container,
            .section-container,
            .trust-container,
            .founder-spotlight-container,
            .footer-container {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
        }

        .video-container {
            overflow: visible;
        }

        .youtube-video-container {
            max-width: 100%;
            overflow: hidden;
        }



/* ========================================
   PREVIOUSLY IN main.css (Global Mobile Styles)
   ======================================== */

/* ========================================
   WEFI DEOBANK - GLOBAL MOBILE STYLES
   Main CSS for mobile-specific overrides
   ======================================== */

/* ===== MOBILE FIXES (All Pages) ===== */

/* 1. DESKTOP VIEW (Large Screens) */
#menu-toggle {
    display: none !important;
}

/* Show Horizontal Links */

/* 2. MOBILE VIEW (Small Screens) */
@media (max-width: 768px) {
    #menu-toggle {
        display: flex !important;
    }

    /* Show Hamburger */

    .nav-menu {
        display: none !important;
        /* Hide Links by Default */
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        z-index: 10000;
    }

    /* This is the rule the JavaScript triggers */
    .nav-menu.active {
        display: flex !important;
    }

    /* LOGO CURB: Prevent logo from dominating mobile navbar */
    .logo,
    [class*='logo'] {
        max-width: 150px !important;
    }

    /* SIGN UP GHOST NUKE: Remove all sign-up/CTA buttons globally on mobile */
    .nav-cta,
    .signup-btn,
    [class*='sign-up'],
    [class*='signup'] {
        display: none !important;
        visibility: hidden !important;
    }

    /* UNIVERSAL FIX: Prevent any element from exceeding viewport width */
    * {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }



}


/* ===== SUBPAGE SHARED STYLES (Desktop Base) ===== */
header.page-hero {
    padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 60px) !important;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(199, 241, 96, 0.1) 0%, transparent 60%);
}

.page-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 40px;
}

.content-title {
    font-size: 32px;
    color: var(--lime-light);
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.content-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
}

.feature-item h3 {
    color: var(--lime-green);
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ===== MOBILE: Subpage Hero & Content Fix ===== */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 160px !important; /* Fixed from 106px to clear the 122px headers */
        padding-bottom: 16px !important;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Universal Subpage Mobile Grid Clamp */
    .features-grid, .income-streams, .tutorials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Clamp card widths strictly to the parent container */
    .feature-item, .stream-card, .video-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .page-subtitle {
        font-size: 16px;
        max-width: 560px;
    }

    .content-text {
        text-align: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .content-title {
        text-align: center;
        font-size: 24px;
    }

    .section {
        padding: 20px 24px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h3 {
        text-align: center;
    }

    .footer {
        margin-top: 20px !important;
        padding-top: 30px !important;
    }


    /* MERGED from duplicate blocks — grid→flex conversion for mobile */
    .trust-section,
    .trust-container,
    .trust-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .trust-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-left: 0;
        margin-left: 0;
    }
    .trust-logo {
        margin: 0 auto;
    }

    .trust-section {
        margin-top: 0 !important;
        padding-top: 15px !important;
        padding-bottom: 30px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .trust-container {
        gap: 15px !important;
        align-items: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .trust-logos {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .testimony-item {
        min-width: unset !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
    }

    .testimony-item p {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        align-self: stretch !important;
    }

    .trust-section .section-title {
        margin-bottom: 8px !important;
    }

    .trust-logo {
        margin-bottom: 6px !important;
        align-self: center !important;
    }

}

/* ========================================
   AI Voice Concierge Responsive Container
   ======================================== */
.ai-agent-container {
    height: 580px !important;
    min-height: 580px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .ai-agent-container {
        height: 580px !important;
        min-height: 580px;
    }
}
