        :root {
            /* Light mode colors */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --accent-primary: #0084FF;
            --accent-secondary: #0066CC;
            --accent-gradient: linear-gradient(135deg, #0084FF 0%, #0066CC 100%);
            --success-color: #10b981;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        [data-theme="dark"] {
            /* Dark mode colors */
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --bg-tertiary: #334155;
            --text-primary: #f1f5f9;
            --text-secondary: #e2e8f0;
            --text-muted: #cbd5e1;
            --border-color: #334155;
            --accent-primary: #0084FF;
            --accent-secondary: #339FFF;
            --accent-gradient: linear-gradient(135deg, #0084FF 0%, #339FFF 100%);
            --success-color: #34d399;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Fix for anchor links being hidden behind fixed navbar */
        html {
            scroll-padding-top: 120px; /* Accounts for navbar height + top position + some padding */
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-primary);
            background-image: 
                linear-gradient(rgba(0, 132, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 132, 255, 0.08) 1px, transparent 1px);
            background-size: 16px 16px;
            color: var(--text-primary);
            line-height: 1.6;
            transition: all 0.3s ease;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* Global horizontal scroll prevention */
        html {
            overflow-x: hidden;
            max-width: 100vw;
        }

        * {
            max-width: 100%;
            box-sizing: border-box;
        }

        [data-theme="dark"] body {
            background-image: 
                linear-gradient(rgba(0, 132, 255, 0.12) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 132, 255, 0.12) 1px, transparent 1px);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            max-width: 1200px;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.125);
            border-radius: 50px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-sizing: border-box;
        }

        [data-theme="dark"] .navbar {
            background: rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 1rem 2.5rem;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            justify-self: start;
        }

        .logo i {
            color: var(--accent-primary);
        }

        .logo img {
            height: 2rem;
            width: auto;
            margin-right: 0.25rem;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 3rem;
            justify-self: center;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
            margin: 0;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: var(--bg-tertiary);
            color: var(--accent-primary);
        }

        .mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 0.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.125);
            border-radius: 30px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-theme="dark"] .mobile-menu {
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            list-style: none;
        }

        .mobile-nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .mobile-nav-links a:hover {
            color: var(--accent-primary);
            background: var(--bg-tertiary);
            border-color: var(--border-color);
        }

        /* Mobile Theme Toggle */
        .mobile-theme-toggle {
            padding: 1rem;
            margin-top: 1rem;
        }

        .mobile-theme-toggle-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: var(--bg-primary);
            border-radius: 0.75rem;
            border: 1px solid var(--border-color);
        }

        .mobile-theme-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .mobile-theme-toggle-wrapper {
            display: flex;
            align-items: center;
        }

        .theme-toggle-label.mobile {
            width: 3rem;
            height: 1.5rem;
        }

        .theme-toggle-slider.mobile {
            width: 1.25rem;
            height: 1.25rem;
            top: 0.125rem;
            left: 0.125rem;
        }

        .theme-toggle-input:checked + .theme-toggle-label.mobile .theme-toggle-slider.mobile {
            transform: translateX(1.5rem);
        }

        .theme-toggle-label.mobile .theme-toggle-icon {
            font-size: 0.625rem;
        }

        .mobile-cta {
            margin-top: 1rem;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mobile-cta .cta-button {
            width: 100%;
            justify-content: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-self: end;
        }

        /* Modern Theme Toggle Switch */
        .theme-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle-input {
            display: none;
        }

        .theme-toggle-label {
            position: relative;
            display: inline-block;
            width: 3.5rem;
            height: 1.75rem;
            background: var(--bg-tertiary);
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .theme-toggle-label:hover {
            background: var(--bg-secondary);
            transform: scale(1.05);
        }

        .theme-toggle-slider {
            position: absolute;
            top: 0.125rem;
            left: 0.125rem;
            width: 1.375rem;
            height: 1.375rem;
            background: linear-gradient(135deg, #64748b, #94a3b8);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .theme-toggle-input:checked + .theme-toggle-label .theme-toggle-slider {
            transform: translateX(1.75rem);
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        }

        .theme-toggle-input:checked + .theme-toggle-label {
            background: rgba(0, 132, 255, 0.1);
            border-color: rgba(0, 132, 255, 0.3);
        }

        .theme-toggle-icon {
            position: absolute;
            font-size: 0.75rem;
            color: white;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle-icon.sun {
            opacity: 0;
            transform: rotate(180deg) scale(0.5);
        }

        .theme-toggle-icon.moon {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .theme-toggle-input:checked + .theme-toggle-label .theme-toggle-icon.sun {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .theme-toggle-input:checked + .theme-toggle-label .theme-toggle-icon.moon {
            opacity: 0;
            transform: rotate(-180deg) scale(0.5);
        }

        /* Dark mode specific styling */
        [data-theme="dark"] .theme-toggle-label {
            background: var(--bg-tertiary);
            border-color: var(--border-color);
        }

        [data-theme="dark"] .theme-toggle-input:checked + .theme-toggle-label {
            background: rgba(0, 132, 255, 0.15);
            border-color: rgba(0, 132, 255, 0.4);
        }

        .cta-button {
            background: white;
            color: var(--text-primary);
            padding: 0.6rem 1.25rem;
            border: 1px solid var(--border-color);
            border-radius: 2rem;
            font-weight: 500;
            font-size: 0.8rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            min-width: fit-content;
        }



        .whop-button {
            background: #fff;
            color: #263397;
            border: 2px solid #263397;
        }

        .whop-button i {
            color: #263397;
        }



        .whop-button:hover {
            background: #263397;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(38, 51, 151, 0.3);
            border-color: #263397;
        }

        .whop-button:hover i {
            color: #fff;
        }



        [data-theme="dark"] .whop-button {
            background: #fff;
            color: #263397;
            border-color: #263397;
        }

        [data-theme="dark"] .whop-button:hover {
            background: #263397;
            color: #fff;
            border-color: #263397;
        }

        /* Whop Icon Styles */
        .whop-icon {
            font-weight: 700;
            font-size: 1.1em;
            letter-spacing: -0.02em;
            display: inline-block;
            text-transform: lowercase;
            color: #263397; /* Blue color for 's' */
        }

        .whop-icon {
            color: #d3513e; /* Red color for 'k' */
        }

        .whop-icon-small {
            font-weight: 700;
            font-size: 1.2em;
            letter-spacing: -0.02em;
            display: inline-block;
            text-transform: lowercase;
            color: #263397; /* Blue color for 's' */
        }

        .whop-icon-small {
            color: #d3513e; /* Red color for 'k' */
        }

        /* Ensure logo colors remain consistent */
        .whop-button .whop-icon,
        .pricing-button .whop-icon {
            color: #263397 !important;
        }

        .whop-button .whop-icon,
        .pricing-button .whop-icon {
            color: #d3513e !important;
        }

        /* Logo colors on hover */
        .whop-button:hover .whop-icon,
        .pricing-button:hover .whop-icon {
            color: #fff !important;
        }

        .whop-button:hover .whop-icon,
        .pricing-button:hover .whop-icon {
            color: #fff !important;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: 100dvh; /* Modern viewport units */
            display: flex;
            align-items: center;
            padding-block: clamp(6rem, 15vh, 8rem) 2rem;
            padding-inline: clamp(1rem, 5vw, 2rem);
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: visible;
            container-type: inline-size; /* Modern container queries */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
                         background: radial-gradient(circle at 30% 20%, rgba(0, 132, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: min(75rem, calc(100vw - 2rem));
            margin-inline: auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .compliance-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-secondary);
            padding-block: 0.5rem;
            padding-inline: 1rem;
            border-radius: 2rem;
            font-size: clamp(0.75rem, 2.5vw, 0.875rem);
            font-weight: 500;
            color: var(--success-color);
            margin-block-end: clamp(1rem, 4vw, 2rem);
            border: 1px solid var(--border-color);
        }

        .compliance-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: clamp(1.75rem, 7vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-block-end: clamp(1rem, 4vw, 2rem);
            color: var(--text-primary);
            /* Remove background gradient for faster LCP */
        }

        .hero-title .hero-subtitle {
            display: block;
            font-size: clamp(1.75rem, 7vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .hero-description {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: var(--text-secondary);
            margin-block-end: clamp(2rem, 5vw, 3rem);
            line-height: 1.7;
            max-width: 60ch; /* Modern line length for readability */
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 500px;
            overflow: visible;
        }

        .visual-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 1.5rem;
            padding-block: clamp(2rem, 6vw, 4rem);
            padding-inline: clamp(1.5rem, 5vw, 4rem);
            box-shadow: var(--shadow-xl);
            transform: rotate(0deg);
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
            min-width: clamp(18rem, 25vw, 22rem);
            max-width: clamp(22rem, 30vw, 25rem);
            text-align: center;
        }

        .visual-card:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .visual-card-main {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 132, 255, 0.05) 100%);
            border: none;
            border-radius: 1.5rem;
            padding-block: clamp(2.5rem, 7vw, 4rem);
            padding-inline: clamp(2rem, 6vw, 4rem);
            box-shadow: var(--shadow-xl);
            transform: rotate(0deg);
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
            min-width: clamp(20rem, 28vw, 24rem);
            max-width: clamp(24rem, 32vw, 28rem);
            text-align: center;
            aspect-ratio: 1.2; /* Modern aspect ratio control */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .visual-card-main:hover {
            transform: rotate(0deg) scale(1.08);
            box-shadow: 0 25px 50px rgba(0, 132, 255, 0.2);
        }

        .visual-card i {
            font-size: clamp(3rem, 8vw, 5rem);
            color: var(--accent-primary);
            margin-block-end: clamp(0.75rem, 3vw, 1.5rem);
        }

        .visual-card h3 {
            font-size: clamp(1.25rem, 4vw, 2rem);
            font-weight: 700;
            margin-block-end: clamp(0.5rem, 2vw, 1rem);
            color: var(--text-primary);
        }

        .visual-card p {
            color: var(--text-secondary);
            font-size: clamp(0.875rem, 2.5vw, 1.1rem);
            font-weight: 500;
            line-height: 1.4;
        }

        /* Removed second visual card styles - no longer needed */

        /* Benefits Section */
        .benefits {
            padding-block: clamp(4rem, 10vh, 6rem);
            padding-inline: clamp(1rem, 5vw, 2rem);
            background: var(--bg-secondary);
        }

        .benefits-container {
            max-width: min(75rem, calc(100vw - 2rem));
            margin-inline: auto;
        }

        .section-header {
            text-align: center;
            margin-block-end: clamp(2rem, 8vw, 4rem);
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-secondary);
            line-height: 1.4;
            margin-bottom: 2rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-card {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 3rem;
            height: 3rem;
            background: var(--accent-gradient);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .benefit-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: var(--bg-primary);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .about-image {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .team-visual {
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-svg {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .about-image:hover .team-svg {
            transform: scale(1.05);
        }

        /* Stats Section */
        .stats {
            background: var(--bg-secondary);
            padding: 4rem 2rem;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--bg-primary);
            border-radius: 1rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
            background: var(--bg-primary);
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 1.5rem;
            padding: 2.5rem;
            padding-bottom: 4rem;
            position: relative;
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .elite-card {
            border: 2px solid var(--accent-primary);
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-gradient);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-icon {
            width: 4rem;
            height: 4rem;
            background: var(--accent-gradient);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .pricing-icon i {
            color: white;
            font-size: 2rem;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .price {
            margin-bottom: 2rem;
        }

        .currency {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-primary);
        }

        .period {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        .feature i {
            color: var(--accent-primary);
            font-size: 1rem;
        }

        .pricing-button {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            right: 2.5rem;
            width: calc(100% - 5rem);
        }

        .free-button {
            background: var(--bg-primary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .free-button:hover {
            background: var(--bg-tertiary);
            border-color: var(--accent-primary);
        }

        .elite-button {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .elite-button:hover {
            background: linear-gradient(135deg, #475569, #64748b);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Intro Video Section */
        .intro-video {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .intro-content p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .intro-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .intro-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-secondary);
        }

        .intro-feature i {
            color: var(--accent-primary);
            font-size: 1.25rem;
        }

        .intro-video-wrapper {
            position: relative;
        }

        .video-placeholder {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
            border: 1px solid var(--border-color);
            border-radius: 1.5rem;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .play-button {
            width: 4rem;
            height: 4rem;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .play-button i {
            color: white;
            font-size: 1.5rem;
            margin-left: 0.2rem;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
        }

        .video-overlay h3 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .video-overlay p {
            color: var(--text-secondary);
        }

        /* Affiliate Vault Section */
        .affiliate-vault {
            padding: 6rem 2rem;
            background: var(--bg-primary);
        }

        .vault-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .vault-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .vault-category {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .vault-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .vault-category:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .vault-category:hover::before {
            transform: scaleX(1);
        }

        .vault-icon {
            width: 3rem;
            height: 3rem;
            background: var(--accent-gradient);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .vault-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .vault-category h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .vault-category p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .vault-access {
            margin-top: 3rem;
            text-align: center;
        }

        .access-note {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-secondary);
            padding: 1rem 2rem;
            border-radius: 2rem;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .access-note i {
            color: var(--accent-primary);
        }

        .vault-action {
            margin-top: 1.5rem;
            text-align: center;
        }

        .vault-link {
            background: var(--accent-gradient);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 2rem;
            width: auto;
        }

        .vault-link:hover {
            background: linear-gradient(135deg, #0066CC 0%, #0084FF 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
        }

        .vault-link i {
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--bg-tertiary);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* Logo Row */
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .footer-logo img {
            height: 2rem;
            width: auto;
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Social Links Row */
        .footer-social {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .footer-social a {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Copyright Row */
        .footer-copyright {
            color: var(--text-muted);
            text-align: center;
        }

        .footer-copyright p {
            margin: 0;
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }





        /* Modern Responsive Design - Mobile First Approach */
        
        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 36rem) {
            .hero-title,
            .hero-subtitle {
                font-size: clamp(2rem, 4vw, 2.5rem);
            }

            .hero-description {
                font-size: clamp(1rem, 2.5vw, 1.125rem);
            }

            .hero-actions {
                flex-direction: row;
                justify-content: flex-start;
                gap: 1rem;
            }

            .hero-actions .cta-button {
                width: auto;
            }
        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 48rem) {
            .hero-container {
                grid-template-columns: 1fr 1fr;
                gap: clamp(2rem, 5vw, 4rem);
                text-align: left;
            }

            .hero-title,
            .hero-subtitle {
                font-size: clamp(2.5rem, 5vw, 3.5rem);
            }

            .hero-description {
                font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            }

            .about-container {
                grid-template-columns: 1fr 1fr;
                gap: clamp(2rem, 5vw, 4rem);
            }

            .intro-container {
                grid-template-columns: 1fr 1fr;
                gap: clamp(2rem, 5vw, 4rem);
            }

            .stats-container {
                grid-template-columns: repeat(4, 1fr);
            }

            .vault-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Large tablets and small desktops (992px to 1199px) */
        @media (min-width: 62rem) and (max-width: 74.9375rem) {
            .vault-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 56.25rem;
                margin-inline: auto;
            }

            .navbar {
                width: min(92%, calc(100vw - 2rem));
            }

            .nav-container {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }

            .nav-center {
                justify-self: center;
            }

            .nav-actions {
                justify-self: end;
            }
        }

        /* Large devices (desktops, 1200px and up) */
        @media (min-width: 75rem) {
            .navbar {
                width: min(90%, 75rem);
                top: 2.5rem;
            }

            .nav-container {
                padding: 1rem 2.5rem;
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }

            .logo {
                justify-self: start;
                font-size: 1.5rem;
            }

            .nav-center {
                display: flex;
                justify-self: center;
            }

            .nav-actions {
                justify-self: end;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .nav-actions .cta-button,
            .nav-actions .theme-toggle-container {
                display: flex;
            }

            .vault-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 56.25rem;
            }

            .hero {
                padding: 8rem max(2rem, 5vw) 2rem;
            }

            .hero-container {
                max-width: 75rem;
                margin-inline: auto;
            }

            .section-title {
                font-size: clamp(2.5rem, 4vw, 3rem);
            }
        }

        /* Additional styles for extra large devices can be added here if needed */

        /* Mobile-specific adjustments */
        @media (max-width: 74.9375rem) {
            .navbar {
                width: min(95%, calc(100vw - 2rem));
                top: 1.25rem;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-container {
                padding: 0.75rem 1rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                font-size: 1.25rem;
            }

            .nav-center {
                display: none;
            }

            .nav-actions {
                gap: 0.5rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-actions .cta-button,
            .nav-actions .theme-toggle-container {
                display: none;
            }

            .hero {
                padding-block: clamp(4rem, 15vw, 7rem) 2rem;
                padding-inline: 1rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: clamp(1.5rem, 5vw, 3rem);
                text-align: center;
            }

            .hero-visual {
                min-height: auto;
            }

            .visual-card,
            .visual-card-main {
                min-width: min(85vw, 20rem);
                max-width: min(90vw, 25rem);
                padding: clamp(1.5rem, 5vw, 3rem);
            }

            .visual-card i {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .visual-card h3 {
                font-size: clamp(1.125rem, 4vw, 1.5rem);
            }

            .visual-card p {
                font-size: clamp(0.875rem, 3vw, 1rem);
            }

            .hero-actions {
                flex-direction: column;
                gap: 0.75rem;
                width: 100%;
            }

            .hero-actions .cta-button {
                width: 100%;
                max-width: 20rem;
                margin-inline: auto;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .elite-card {
                transform: none;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .vault-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Very small devices (small phones) */
        @media (max-width: 23.4375rem) {
            .hero-title,
            .hero-subtitle {
                font-size: clamp(1.5rem, 8vw, 2rem);
                line-height: 1.1;
            }

            .hero-description {
                font-size: clamp(0.875rem, 4vw, 1rem);
                line-height: 1.4;
            }

            .hero {
                padding-block: clamp(3rem, 12vw, 5rem) 1.5rem;
                padding-inline: 0.75rem;
            }

            .visual-card,
            .visual-card-main {
                min-width: min(90vw, 18rem);
                max-width: min(95vw, 20rem);
                padding: clamp(1rem, 4vw, 2rem);
            }

            .compliance-badge {
                font-size: clamp(0.75rem, 3vw, 0.875rem);
                padding: 0.375rem 0.75rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Removed - handled by mobile-first approach above */

        /* Removed - modern responsive design handles this */

        /* Removed - modern responsive design handles this */

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation - optimized for LCP */
        .loading {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Hero content should render immediately for LCP */
        .hero-content .loading,
        .hero-title,
        .hero-description {
            opacity: 1;
            animation: none;
        }

        .loading:nth-child(1) { animation-delay: 0.1s; }
        .loading:nth-child(2) { animation-delay: 0.2s; }
        .loading:nth-child(3) { animation-delay: 0.3s; }
        .loading:nth-child(4) { animation-delay: 0.4s; }
