:root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #111118;
            --bg-tertiary: #1a1a24;
            --accent-primary: #7c5cff;
            --accent-secondary: #a78bfa;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --glow-purple: rgba(124, 92, 255, 0.4);
            --glow-pink: rgba(236, 72, 153, 0.3);
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.08);
            --nav-bg: rgba(10, 10, 15, 0.8);
            --shadow: rgba(0, 0, 0, 0.5);
        }

        [data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-tertiary: #f1f3f5;
            --text-primary: #1a1a2e;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --border-subtle: rgba(0, 0, 0, 0.1);
            --glow-purple: rgba(124, 92, 255, 0.3);
            --glow-pink: rgba(236, 72, 153, 0.2);
            --card-bg: rgba(0, 0, 0, 0.02);
            --card-border: rgba(0, 0, 0, 0.08);
            --nav-bg: rgba(255, 255, 255, 0.9);
            --shadow: rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .hero-grid {
            opacity: 0.3;
        }

        [data-theme="light"] .floating-shape {
            opacity: 0.05;
        }

        [data-theme="light"] .affiliate-orb {
            opacity: 0.1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            border: 2px solid var(--accent-primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.3s ease, background 0.3s ease;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 15px var(--accent-primary), inset 0 0 10px rgba(124, 92, 255, 0.3);
        }

        .cursor-dot {
            position: fixed;
            width: 6px;
            height: 6px;
            background: var(--accent-primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10001;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary);
        }

        .cursor.hover {
            width: 50px;
            height: 50px;
            border-color: var(--accent-pink);
            background: rgba(236, 72, 153, 0.15);
            box-shadow: 0 0 25px var(--accent-pink), inset 0 0 15px rgba(236, 72, 153, 0.4);
            transform: translate(-50%, -50%) scale(1);
        }

        .cursor.hover + .cursor-dot {
            transform: translate(-50%, -50%) scale(0);
        }

        /* Mouse Trail */
        .trail {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--accent-primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        ::selection {
            background: var(--accent-primary);
            color: white;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent-primary), var(--accent-pink));
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        #particles-canvas {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(124, 92, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(124, 92, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
            z-index: 2;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            animation: float 8s ease-in-out infinite;
            z-index: 0;
        }

        .hero-orb-1 {
            width: 600px;
            height: 600px;
            background: var(--glow-purple);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .hero-orb-2 {
            width: 500px;
            height: 500px;
            background: var(--glow-pink);
            bottom: -150px;
            right: -150px;
            animation-delay: -4s;
        }

        .hero-orb-3 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
            top: 30%;
            right: -100px;
            opacity: 0.3;
            animation-delay: -2s;
        }

        .hero-orb-4 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
            bottom: 20%;
            left: -50px;
            opacity: 0.2;
            animation-delay: -6s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            33% { transform: translateY(-30px) scale(1.05) rotate(5deg); }
            66% { transform: translateY(15px) scale(0.98) rotate(-3deg); }
        }

        /* Mouse Follower Glow */
        .mouse-glow {
            position: fixed;
            width: 500px;
            height: 500px;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }

        .mouse-glow::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(124, 92, 255, 0.3) 0%, rgba(236, 72, 153, 0.2) 30%, transparent 70%);
            border-radius: 50%;
            animation: glowPulse 2s ease-in-out infinite;
        }

        .mouse-glow::after {
            content: '';
            position: absolute;
            inset: 30%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: glowPulse 2s ease-in-out infinite 0.5s;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        /* Mouse Trail Effect */
        .mouse-trail {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            background: var(--accent-primary);
            box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary);
            transition: opacity 0.5s ease;
        }

        .mouse-trail-secondary {
            position: fixed;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9997;
            border: 1px solid rgba(124, 92, 255, 0.5);
            transition: opacity 0.5s ease;
        }

        #trail-canvas {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9996;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(124, 92, 255, 0.1);
            border: 1px solid rgba(124, 92, 255, 0.2);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-secondary);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .hero-badge::after {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent-primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 20px var(--accent-primary);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 20px var(--accent-primary); }
            50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 30px var(--accent-primary); }
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(48px, 10vw, 80px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }

        .hero-title .gradient {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-pink) 50%, var(--accent-secondary) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 3s ease infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 200% center; }
        }

        .hero-subtitle {
            font-size: clamp(18px, 3vw, 22px);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            color: white;
            box-shadow: 0 4px 20px var(--glow-purple);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 50px var(--glow-purple);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:active::after {
            width: 300px;
            height: 300px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }

        .btn-secondary:hover {
            background: var(--bg-secondary);
            border-color: var(--accent-primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(124, 92, 255, 0.2);
        }

        /* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            animation: rippleEffect 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes rippleEffect {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 12px;
            animation: fadeInUp 0.8s ease 0.5s forwards, bounce 2s ease-in-out infinite 1s;
            opacity: 0;
            z-index: 10;
        }

        .hero-scroll svg {
            animation: scrollArrow 1.5s ease-in-out infinite;
        }

        @keyframes scrollArrow {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(8px); opacity: 0.5; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            position: relative;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-desc {
            font-size: 17px;
            color: var(--text-secondary);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.1s;
        }

        .section-desc.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Features Section */
        .features {
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
            position: relative;
        }

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

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--glow-purple), var(--glow-pink));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent 30%);
            animation: rotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-card:hover::after {
            opacity: 0.3;
        }

        .feature-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 80px rgba(124, 92, 255, 0.2);
        }

        [data-theme="light"] .feature-card {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        [data-theme="light"] .feature-card:hover {
            box-shadow: 0 20px 60px rgba(124, 92, 255, 0.15);
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px var(--glow-purple);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 30px var(--glow-purple);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: white;
            transition: transform 0.4s ease;
        }

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

        .feature-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Demo Section */
        .demo {
            padding: 120px 0;
            position: relative;
        }

        .demo-wrapper {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .demo-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .demo-wrapper::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink), var(--accent-cyan));
            border-radius: 26px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .demo-wrapper:hover::before {
            opacity: 0.5;
        }

        [data-theme="light"] .demo-wrapper {
            background: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .cta-box {
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.1), rgba(236, 72, 153, 0.08));
            border: 1px solid rgba(124, 92, 255, 0.2);
        }

        .demo-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: var(--bg-tertiary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .demo-dot:hover {
            transform: scale(1.2);
        }

        .demo-dot-red { background: #ff5f57; box-shadow: 0 0 10px rgba(255, 95, 87, 0.5); }
        .demo-dot-yellow { background: #febc2e; box-shadow: 0 0 10px rgba(254, 188, 46, 0.5); }
        .demo-dot-green { background: #28c840; box-shadow: 0 0 10px rgba(40, 200, 64, 0.5); }

        .demo-content {
            padding: 40px;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .demo-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
            opacity: 0.5;
        }

        .demo-code {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .demo-code .keyword { color: var(--accent-secondary); }
        .demo-code .function { color: #60a5fa; }
        .demo-code .string { color: #34d399; }
        .demo-code .comment { color: var(--text-muted); }
        .demo-code .variable { color: var(--accent-pink); }
        .demo-code .number { color: #fbbf24; }

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 18px;
            background: var(--accent-primary);
            animation: blink 1s step-end infinite;
            vertical-align: middle;
            margin-left: 2px;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .demo-highlight {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
        }

        .demo-stat {
            flex: 1;
            text-align: center;
            padding: 24px;
            background: rgba(124, 92, 255, 0.05);
            border-radius: 16px;
            border: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .demo-stat::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--glow-purple), var(--glow-pink));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .demo-stat:hover::before {
            opacity: 0.1;
        }

        .demo-stat:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 0 15px 40px rgba(124, 92, 255, 0.15);
        }

        .demo-stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 40px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .demo-stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
            position: relative;
            z-index: 1;
        }

        /* Pricing Section */
        .pricing {
            background: var(--bg-secondary);
            position: relative;
        }

        .pricing::before,
        .pricing::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
        }

        .pricing::before {
            background: var(--accent-primary);
            top: -100px;
            left: -100px;
        }

        .pricing::after {
            background: var(--accent-pink);
            bottom: -100px;
            right: -100px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-grid.three-cols {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
            gap: 24px;
        }

        .pricing-card {
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            overflow: hidden;
        }

        [data-theme="light"] .pricing-card {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .pricing-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(124, 92, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .pricing-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(124, 92, 255, 0.2);
        }

        .pricing-card.featured {
            border-color: var(--accent-primary);
            background: linear-gradient(180deg, rgba(124, 92, 255, 0.2) 0%, rgba(17, 17, 24, 0.95) 100%);
        }

        .pricing-card.featured .pricing-name {
            color: var(--text-primary);
        }

        .pricing-card.featured .pricing-desc {
            color: var(--text-secondary);
        }

        .pricing-card.featured .pricing-amount {
            background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: brightness(1.2) saturate(1.2);
        }

        .pricing-card.ultra {
            border-color: var(--accent-cyan);
            background: linear-gradient(180deg, rgba(6, 182, 212, 0.15) 0%, rgba(17, 17, 24, 0.95) 100%);
        }

        .pricing-card.ultra .pricing-name {
            color: var(--accent-cyan);
        }

        .pricing-card.ultra .pricing-amount {
            background: linear-gradient(135deg, var(--accent-cyan) 0%, #60d0f0 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: brightness(1.1);
        }

        .pricing-card.ultra .custom-price {
            background: linear-gradient(135deg, var(--accent-cyan) 0%, #60d0f0 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 36px;
            font-weight: 600;
            letter-spacing: -1px;
        }

        .pricing-card.ultra .pricing-badge {
            background: linear-gradient(135deg, var(--accent-cyan), #06b6d4);
            display: none;
        }

        .pricing-card.ultra:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 30px 80px rgba(6, 182, 212, 0.2);
        }

        .pricing-card.custom {
            border-color: #f59e0b;
            background: linear-gradient(180deg, rgba(245, 158, 11, 0.15) 0%, rgba(17, 17, 24, 0.95) 100%);
            position: relative;
        }

        .pricing-card.custom::after {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
            border-radius: 0 0 4px 4px;
        }

        .pricing-card.custom .pricing-name {
            color: #f59e0b;
        }

        .pricing-card.custom .pricing-amount,
        .pricing-card.custom .custom-text {
            background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: brightness(1.1);
        }

        .pricing-card.custom .pricing-currency {
            color: #f59e0b;
        }

        .pricing-card.custom:hover {
            border-color: #fbbf24;
            box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
        }

        .pricing-card.custom .pricing-cta {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-color: transparent;
            color: #000;
        }

        .pricing-card.custom .pricing-cta:hover {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
        }

        /* Light mode pricing cards */
        [data-theme="light"] .pricing-card.featured {
            background: linear-gradient(180deg, rgba(124, 92, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
            border-color: var(--accent-primary);
        }

        [data-theme="light"] .pricing-card.ultra {
            background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
            border-color: var(--accent-cyan);
        }

        [data-theme="light"] .pricing-card .pricing-desc {
            color: var(--text-secondary);
        }

        [data-theme="light"] .pricing-card .pricing-features li {
            color: var(--text-secondary);
        }

        [data-theme="light"] .pricing-card .pricing-features li::before {
            background: var(--accent-primary);
        }

        /* Affiliate Section */
        .affiliate {
            position: relative;
            overflow: hidden;
        }

        .affiliate-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .affiliate-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
        }

        .affiliate-orb.orb-1 {
            width: 400px;
            height: 400px;
            background: var(--accent-primary);
            top: -100px;
            left: -100px;
        }

        .affiliate-orb.orb-2 {
            width: 300px;
            height: 300px;
            background: var(--accent-pink);
            bottom: -50px;
            right: -50px;
        }

        .affiliate-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .affiliate-left {
            position: relative;
            z-index: 1;
        }

        .affiliate-left .section-label {
            display: inline-block;
            margin-bottom: 12px;
        }

        .affiliate-intro {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .affiliate-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            padding: 24px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .affiliate-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .affiliate-stat .stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .affiliate-stat .stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .affiliate-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .affiliate-actions .btn {
            flex: 1;
            min-width: 160px;
            justify-content: center;
        }

        .affiliate-actions .btn-secondary {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        .affiliate-actions .btn-secondary:hover {
            background: var(--bg-secondary);
            border-color: var(--text-secondary);
        }

        .affiliate-right {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .affiliate-feature {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .affiliate-feature:hover {
            border-color: var(--accent-primary);
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(124, 92, 255, 0.1);
        }

        .affiliate-feature-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .affiliate-feature-icon.highlight {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
        }

        .affiliate-feature-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .affiliate-feature-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .affiliate-feature-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Responsive Affiliate */
        @media (max-width: 1024px) {
            .affiliate-wrapper {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .affiliate-stats {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .affiliate-stats {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }

            .affiliate-feature {
                flex-direction: column;
                text-align: center;
            }
        }

        .pricing-card.featured .pricing-features li {
            color: var(--text-secondary);
        }

        .pricing-card.featured .pricing-features li:hover {
            color: var(--text-primary);
        }

        .pricing-card.featured::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink), var(--accent-cyan));
            border-radius: 26px;
            z-index: -1;
            animation: borderGlow 3s linear infinite;
            background-size: 200% 200%;
        }

        @keyframes borderGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .pricing-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 15px var(--glow-purple);
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 4px 15px var(--glow-purple); }
            50% { box-shadow: 0 4px 25px var(--glow-purple), 0 0 40px var(--glow-purple); }
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
            z-index: 1;
        }

        .pricing-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-desc {
            font-size: 14px;
            color: var(--text-muted);
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-top: 16px;
        }

        .pricing-currency {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .pricing-amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            transition: all 0.3s ease;
            filter: brightness(1.1);
        }

        .pricing-card:hover .pricing-amount {
            transform: scale(1.05);
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 14px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .pricing-features li:hover {
            color: var(--text-primary);
            transform: translateX(4px);
        }

        .pricing-features li svg {
            width: 18px;
            height: 18px;
            color: var(--accent-primary);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .pricing-features li:hover svg {
            transform: scale(1.2);
        }

        .pricing-cta {
            width: 100%;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .cta {
            padding: 140px 0;
            text-align: center;
            position: relative;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(236, 72, 153, 0.15));
            border: 1px solid rgba(124, 92, 255, 0.2);
            border-radius: 32px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-box.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c5cff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .cta-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent 10%);
            animation: rotate 8s linear infinite;
            opacity: 0.1;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-desc {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Comparison Section */
        .comparison {
            position: relative;
        }

        .comparison-wrapper {
            display: flex;
            flex-direction: column;
            gap: 48px;
            margin-top: 48px;
        }

        .comparison-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        .comparison-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .comparison-card.our-card {
            border: 2px solid var(--accent-primary);
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
        }

        .comparison-card.our-card.ultra-card {
            border-color: var(--accent-cyan);
            box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
        }

        .comparison-card.cursor-card {
            opacity: 0.85;
        }

        .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 4px 12px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            color: white;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            z-index: 10;
        }

        .card-badge.cyan {
            background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
        }

        .card-header {
            padding: 32px 28px 24px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }

        .card-label {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 16px;
        }

        .card-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 4px;
        }

        .card-price .price-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .card-price .price-unit {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .price-approx {
            font-size: 13px;
            color: var(--text-muted);
        }

        .price-save {
            display: inline-block;
            padding: 4px 16px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            color: white;
            font-size: 14px;
            font-weight: 600;
            border-radius: 20px;
            margin-top: 8px;
        }

        .our-card.ultra-card .price-save {
            background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
        }

        .card-body {
            padding: 24px 28px;
            flex: 1;
        }

        .card-section {
            margin-bottom: 24px;
        }

        .card-section:last-child {
            margin-bottom: 0;
        }

        .card-section .section-title-sm {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: 0 0 12px;
            padding-bottom: 8px;
            border-bottom: 1px dashed var(--border-subtle);
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-label {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .feature-value {
            font-size: 13px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .feature-value.muted {
            color: var(--text-muted);
        }

        .feature-value.highlight {
            color: var(--accent-primary);
            font-weight: 600;
        }

        .feature-value.highlight.cyan {
            color: var(--accent-cyan);
        }

        .card-footer {
            padding: 24px 28px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
        }

        .card-btn {
            width: 100%;
            padding: 14px 24px;
            font-size: 15px;
        }

        .card-btn.ultra-btn {
            background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
            border-color: transparent;
            color: white;
        }

        .card-btn.ultra-btn:hover {
            box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
        }

        .comparison-note {
            text-align: center;
            margin-top: 32px;
            padding: 16px 24px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

        .comparison-note p {
            color: var(--text-muted);
            font-size: 13px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .comparison-note i {
            color: var(--text-muted);
        }

        /* Responsive for comparison */
        @media (max-width: 900px) {
            .comparison-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .comparison-card.cursor-card {
                order: 2;
            }

            .comparison-card.our-card {
                order: 1;
            }
        }

        @media (max-width: 480px) {
            .card-header {
                padding: 24px 20px 20px;
            }

            .card-body {
                padding: 20px;
            }

            .card-footer {
                padding: 20px;
            }

            .card-price .price-value {
                font-size: 32px;
            }

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

        /* Security Section */
        .security {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .security::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .security-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-theme="light"] .security-card {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        [data-theme="light"] .comparison-card {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        [data-theme="light"] .comparison-card.our-card {
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
        }

        [data-theme="light"] .comparison-card.our-card.ultra-card {
            box-shadow: 0 8px 32px rgba(6, 182, 212, 0.12);
        }

        [data-theme="light"] .card-header {
            border-bottom-color: #e9ecef;
        }

        [data-theme="light"] .card-section .section-title-sm {
            border-bottom-color: #dee2e6;
        }

        [data-theme="light"] .feature-list li {
            border-bottom-color: #f1f3f5;
        }

        [data-theme="light"] .card-footer {
            border-top-color: #e9ecef;
        }

        [data-theme="light"] .comparison-note {
            background: #f8f9fa;
        }

        .security-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
        }

        .security-card.highlight {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(124, 92, 255, 0.1) 100%);
            border-color: rgba(6, 182, 212, 0.3);
        }

        .security-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .security-icon i {
            width: 32px;
            height: 32px;
        }

        .security-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .security-desc {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Security Compare */
        .security-compare {
            background: var(--bg-primary);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 40px;
        }

        [data-theme="light"] .security-compare {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .compare-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
        }

        .compare-title i {
            color: var(--accent-pink);
        }

        .compare-table-wrapper {
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
        }

        .compare-table th,
        .compare-table td {
            padding: 20px 24px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }

        .compare-table th {
            background: var(--bg-tertiary);
            font-weight: 600;
            font-size: 15px;
        }

        [data-theme="light"] .compare-table th {
            background: #f8f9fa;
        }

        .compare-table td {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .compare-table tr:last-child td {
            border-bottom: none;
        }

        .compare-table td.us-col {
            background: rgba(6, 182, 212, 0.05);
        }

        .compare-table th.us-col {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(124, 92, 255, 0.1));
            color: var(--accent-cyan);
        }

        .compare-table th.other-col {
            color: var(--text-muted);
        }

        .compare-table td.other-col {
            color: var(--text-muted);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        .tag.success {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }

        .tag.danger {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }

        @media (max-width: 768px) {
            .security-grid {
                grid-template-columns: 1fr;
            }

            .compare-table th,
            .compare-table td {
                padding: 16px;
                font-size: 14px;
            }

            .tag {
                padding: 4px 8px;
                font-size: 12px;
            }
        }

        /* Footer */
        .footer {
            padding: 48px 0;
            border-top: 1px solid var(--border-subtle);
            position: relative;
        }

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

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .footer-logo svg {
            width: 24px;
            height: 24px;
        }

        .footer-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-copy {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Mobile Menu */

        /* Theme Toggle */

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid.three-cols {
                grid-template-columns: repeat(2, 1fr);
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .cursor, .cursor-dot, .trail, .mouse-glow, #trail-canvas {
                display: none;
            }

            body {
                cursor: auto;
            }

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

            .pricing-grid,
            .pricing-grid.three-cols {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .affiliate-content {
                grid-template-columns: 1fr;
            }

            .demo-highlight {
                flex-direction: column;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Loading State */
        .btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .btn.loading .btn-text {
            visibility: hidden;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        /* Parallax wrapper */
        .parallax-element {
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        /* Floating shapes */
        .floating-shape {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            border: 2px solid var(--accent-primary);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 20%;
            right: 5%;
            animation: floatShape 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-primary));
            border-radius: 50%;
            bottom: 30%;
            left: 5%;
            animation: floatShape 12s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            border: 2px solid var(--accent-cyan);
            transform: rotate(45deg);
            top: 60%;
            right: 10%;
            animation: floatShape 18s ease-in-out infinite;
        }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* Glow line decoration */
        .glow-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-pink), transparent);
            opacity: 0.3;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Modal Base Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border-subtle);
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
        }

        [data-theme="light"] .modal-overlay {
            background: rgba(0, 0, 0, 0.6);
        }

        [data-theme="light"] .modal-content {
            background: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        /* Payment Modal Styles */
        .payment-modal {
            max-width: 420px;
            padding: 32px;
        }

        .payment-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .payment-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .payment-plan {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .payment-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-primary);
            margin-top: 8px;
        }

        .payment-order {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
        }

        .order-label {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .order-number-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .order-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            font-weight: 500;
            color: var(--accent-primary);
            flex: 1;
        }

        .copy-btn {
            background: var(--bg-tertiary);
            border: none;
            padding: 6px;
            border-radius: 6px;
            cursor: pointer;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .copy-btn:hover {
            background: var(--accent-primary);
            color: white;
        }

        .order-hint {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .payment-qr {
            text-align: center;
        }

        .qr-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .qr-tab {
            padding: 8px 24px;
            border: 1px solid var(--border);
            background: transparent;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
        }

        .qr-tab.active {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
        }

        .qr-code {
            background: white;
            border-radius: 12px;
            padding: 24px;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qr-placeholder {
            color: #666;
            font-size: 14px;
        }

        .payment-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-secondary);
        }

        .payment-footer p {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .payment-query-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--accent-primary);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .payment-query-link:hover {
            opacity: 0.8;
        }
    

.typing-line {
    min-height: 1.6em;
}

.type-cursor {
    display: inline-block;
    color: var(--accent-primary);
    animation: blink 0.7s step-end infinite;
    font-weight: bold;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: var(--accent-primary);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
    box-shadow: 0 0 10px var(--accent-primary);
}
