/* ==================== RESPONSIVE & LAYOUT STABILIZATION ==================== */
        
        /* Container normalization */
        .nav-container,
        .hero-container,
        .demo-container,
        .setup-container,
        .method-container,
        .features-container,
        .pricing-grid,
        .faq-container,
        .footer-container {
            max-width: 1200px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
            box-sizing: border-box;
        }

        /* Typography Fluid Scaling */
        html {
            font-size: 16px;
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
        }

        /* Mobile Navigation Fixes */
        @media (max-width: 768px) {
            .nav-container {
                height: 64px;
                padding: 0 20px;
            }
            
            .nav-links {
                display: none; /* Hide desktop links */
            }

            .nav-actions {
                gap: 10px;
            }

            .nav-status {
                display: none; /* Hide status on mobile to save space */
            }
            
            .nav-cta {
                padding: 8px 16px;
                font-size: 11px;
            }
        }

        /* Footer Grid Stabilization */
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .footer-columns {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 32px;
                padding-left: 0; /* Reset padding on mobile */
            }
            
            .footer-links {
                flex-direction: column;
                gap: 16px;
            }
        }

        /* Grid Gap Consistency */
        .features-container,
        .setup-grid {
            display: grid;
            gap: 24px;
        }

        /* Prevent horizontal overflow */
        body, html {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* Responsive Typography Overrides */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: clamp(40px, 8vw, 72px);
            }
            
            .method-title,
            .pricing-title {
                font-size: clamp(32px, 6vw, 48px);
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 80px 20px 60px;
                min-height: auto; /* Allow content to dictate height on small screens */
            }

            .pricing-card {
                padding: 32px 20px;
            }
            
            .comparison-section {
                padding: 20px;
                margin: 20px auto;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }

        /* Existing Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

 :root {
            --nexus-green: #b794f6;
            --nexus-green-strong: #9f7aea;
            --nexus-green-dim: rgba(183, 148, 246, 0.14);
            --nexus-cyan: #c4b5fd;
            --nexus-purple: #a78bfa;
            --nexus-red: #ff7a7a;
            --nexus-amber: #ffd486;
            --nexus-bg: #0a0415;
            --nexus-surface: rgba(15, 5, 21, 0.94);
            --nexus-surface-hover: rgba(20, 10, 30, 0.96);
            --nexus-border: rgba(183, 148, 246, 0.14);
            --nexus-border-strong: rgba(183, 148, 246, 0.28);
            --nexus-border-hover: rgba(183, 148, 246, 0.45);
            --nexus-text: #faf5ff;
            --nexus-text-dim: #c4b5fd;
            --nexus-text-muted: #a78bfa;
            --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', 'Monaco', 'Courier New', monospace;
            --easing: cubic-bezier(0.23, 1, 0.32, 1);
            --section-spacing: clamp(64px, 10vw, 120px);
            --card-radius: 22px;
            --grid-gap: clamp(20px, 3vw, 36px);
            --shadow-soft: 0 20px 60px rgba(2, 4, 12, 0.7);
            --shadow-glow: 0 20px 50px rgba(183, 148, 246, 0.25);
            --gradient-primary: radial-gradient(circle at 20% 20%, rgba(183, 148, 246, 0.4), transparent 55%), radial-gradient(circle at 80% 0%, rgba(196, 181, 253, 0.25), transparent 60%);
            --gradient-accent: linear-gradient(120deg, #b794f6 0%, #9f7aea 40%, #c4b5fd 75%, #ede9fe 100%);
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: var(--nexus-bg);
        }

        body {
            font-family: var(--font-display);
            background: var(--nexus-bg);
            color: var(--nexus-text);
            line-height: 1.65;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
            letter-spacing: -0.01em;
            background-image: radial-gradient(circle at 12% 18%, rgba(183, 148, 246, 0.15), transparent 55%), radial-gradient(circle at 80% 4%, rgba(196, 181, 253, 0.12), transparent 60%), radial-gradient(circle at 42% 82%, rgba(167, 139, 250, 0.1), transparent 60%);
            background-attachment: fixed;
        }

        ::selection {
            background: var(--nexus-green);
            color: #000;
        }

        @media (hover: hover) {
            body {
                cursor: none;
            }

            body.cursor-native {
                cursor: auto;
            }

            body.cursor-native .cursor,
            body.cursor-native .cursor-follower {
                opacity: 0 !important;
                pointer-events: none;
            }
        }

        /* Background Pattern */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: var(--gradient-primary);
            opacity: 0.7;
            filter: blur(40px) saturate(120%);
            pointer-events: none;
            z-index: 1;
        }

        /* Grid overlay + noise */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(183, 148, 246, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(183, 148, 246, 0.04) 1px, transparent 1px),
                radial-gradient(circle, rgba(183, 148, 246, 0.04) 1px, transparent 1px);
            background-size: 160px 160px, 160px 160px, 4px 4px;
            opacity: 0.8;
            mix-blend-mode: screen;
            pointer-events: none;
            z-index: 1;
         }

        .page-shell {
            position: relative;
            z-index: 2;
        }

        .ambient-layer {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .ambient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.35;
            animation: orbFloat 22s ease-in-out infinite;
        }

        .orb-1 {
            width: 420px;
            height: 420px;
            top: -120px;
            left: -80px;
            background: radial-gradient(circle, rgba(183, 148, 246, 0.5), transparent 60%);
        }

        .orb-2 {
            width: 360px;
            height: 360px;
            bottom: 10%;
            right: 8%;
            background: radial-gradient(circle, rgba(196, 181, 253, 0.45), transparent 60%);
            animation-duration: 26s;
            animation-delay: -4s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            top: 30%;
            right: 65%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 65%);
            animation-duration: 24s;
            animation-delay: -8s;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

         @keyframes fadeInUp {
             from {
                 opacity: 0;
                 transform: translateY(30px);
             }
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }

         @keyframes slideInLeft {
             from {
                 opacity: 0;
                transform: translateX(-30px);
             }
             to {
                 opacity: 1;
                 transform: translateX(0);
             }
         }

         @keyframes slideInRight {
             from {
                 opacity: 0;
                transform: translateX(30px);
             }
             to {
                 opacity: 1;
                 transform: translateX(0);
             }
         }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes pulseGlow {
            0%, 100% { 
                box-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
            }
            50% { 
                box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
             }
         }

         @keyframes float {
             0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
         }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes glitch {
            0%, 100% { 
                text-shadow: 
                    0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(183, 148, 246, 0.75),
                    0.025em 0.05em 0 rgba(159, 122, 234, 0.75);
            }
            14% {
                text-shadow: 
                    0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(183, 148, 246, 0.75),
                    0.025em 0.05em 0 rgba(159, 122, 234, 0.75);
            }
            15% {
                text-shadow: 
                    -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(183, 148, 246, 0.75),
                    -0.05em -0.05em 0 rgba(159, 122, 234, 0.75);
            }
            49% {
                text-shadow: 
                    -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(183, 148, 246, 0.75),
                    -0.05em -0.05em 0 rgba(159, 122, 234, 0.75);
            }
            50% {
                text-shadow: 
                    0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(183, 148, 246, 0.75),
                    0 -0.05em 0 rgba(159, 122, 234, 0.75);
            }
            99% {
                text-shadow: 
                    0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(183, 148, 246, 0.75),
                    0 -0.05em 0 rgba(159, 122, 234, 0.75);
            }
        }

        @keyframes orbFloat {
            0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
            50% { transform: translate3d(40px, -20px, 0) scale(1.1); opacity: 0.5; }
            100% { transform: translate3d(-30px, 10px, 0) scale(1); opacity: 0.35; }
        }

        @keyframes rippleEffect {
            to {
                width: 100px;
                height: 100px;
                opacity: 0;
            }
        }

        /* ==================== NAVIGATION ==================== */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
             backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--nexus-border);
            animation: slideInDown 0.6s ease;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-wrapper.scrolled {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(183, 148, 246, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        @keyframes slideInDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
         }
        }

        .nav-container {
             max-width: 1400px;
             margin: 0 auto;
             padding: 0 40px;
            height: 72px;
             display: flex;
             align-items: center;
            justify-content: space-between;
         }

        .nav-logo {
             display: flex;
             align-items: center;
            text-decoration: none;
             transition: transform 0.3s ease;
         }

        .nav-logo:hover {
             transform: scale(1.05);
         }

        .nav-logo svg {
            height: 32px;
            width: auto;
            transition: filter 0.3s ease;
        }

        .nav-logo:hover svg {
            filter: drop-shadow(0 0 10px rgba(183, 148, 246, 0.5));
        }

        .nav-logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--nexus-green), var(--nexus-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

         .nav-links {
             display: flex;
            gap: 32px;
            align-items: center;
         }

         .nav-link {
            font-family: var(--font-mono);
             font-size: 12px;
            font-weight: 500;
            color: var(--nexus-text-dim);
             text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
             position: relative;
            padding: 8px 12px;
            border-radius: 6px;
            overflow: hidden;
         }

        .nav-link::before {
             content: '';
             position: absolute;
            top: 0;
             left: 0;
            right: 0;
            bottom: 0;
            background: rgba(183, 148, 246, 0);
            border-radius: 6px;
            transition: background 0.3s ease;
            z-index: -1;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
             width: 0;
             height: 2px;
            background: var(--nexus-green);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         }

        .nav-link:hover {
            color: var(--nexus-green);
            transform: translateY(-2px);
        }

        .nav-link:hover::before {
            background: rgba(183, 148, 246, 0.1);
         }

        .nav-link:hover::after {
            width: 80%;
        }

        .nav-link.active {
            color: var(--nexus-green);
            background: rgba(183, 148, 246, 0.05);
         }

        .nav-link.active::after {
            width: 100%;
        }

        .nav-ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(183, 148, 246, 0.5);
            transform: translate(-50%, -50%);
            animation: rippleEffect 0.6s ease-out forwards;
            pointer-events: none;
        }

        .nav-actions {
             display: flex;
             align-items: center;
            gap: 16px;
        }

        .nav-cta {
            padding: 10px 20px;
            border-radius: 999px;
            background: var(--nexus-green);
            color: #000;
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s var(--easing);
            box-shadow: 0 0 20px rgba(183, 148, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .nav-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .nav-cta:hover::after {
            left: 100%;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 30px rgba(183, 148, 246, 0.3);
            background: #b794f6;
        }

        .language-switcher {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(15, 5, 21, 0.9);
            border: 1px solid rgba(183, 148, 246, 0.35);
            border-radius: 999px;
            padding: 0;
            min-width: 150px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            animation: slideInRight 0.6s ease;
        }

        .language-switcher::after {
            content: '⌄';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: var(--nexus-green);
            pointer-events: none;
            opacity: 0.8;
        }

        .language-select {
            appearance: none;
            -webkit-appearance: none;
            border: none;
            background: transparent;
            color: var(--nexus-text);
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 8px 32px 8px 14px;
            width: 100%;
            cursor: pointer;
        }

        .language-select:focus {
            outline: none;
        }

        .language-select option {
            color: #0f0515;
            background: #f3e6ff;
        }

        /* ==================== SCROLL ANIMATIONS ==================== */
        section {
            position: relative;
            padding: calc(var(--section-spacing) * 0.85) clamp(16px, 5vw, 40px);
            opacity: 0;
            transform: translateY(30px);
            isolation: isolate;
        }

        .section-shell {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding-left: clamp(16px, 4vw, 36px);
            padding-right: clamp(16px, 4vw, 36px);
            display: flex;
            flex-direction: column;
            gap: clamp(28px, 4vw, 48px);
        }

        section.visible {
            animation: sectionFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes sectionFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger animations for child elements */
        section.visible > * {
            opacity: 0;
            animation: elementFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        section.visible > *:nth-child(1) { animation-delay: 0.1s; }
        section.visible > *:nth-child(2) { animation-delay: 0.2s; }
        section.visible > *:nth-child(3) { animation-delay: 0.3s; }
        section.visible > *:nth-child(4) { animation-delay: 0.4s; }
        section.visible > *:nth-child(5) { animation-delay: 0.5s; }

        @keyframes elementFadeIn {
            to {
                opacity: 1;
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(24px);
            filter: blur(4px);
            transition: opacity 0.7s var(--easing), transform 0.7s var(--easing), filter 0.7s var(--easing);
            will-change: opacity, transform;
        }

        .scroll-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* ==================== HERO SECTION ==================== */
        .hero-section {
            min-height: 88vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: calc(var(--section-spacing) * 0.9) clamp(20px, 5vw, 48px);
            position: relative;
            overflow: hidden;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-bg-gradient {
             position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(183, 148, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
         }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--nexus-green);
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(183, 148, 246, 0.3);
            background: rgba(183, 148, 246, 0.08);
            box-shadow: inset 0 0 30px rgba(183, 148, 246, 0.1);
            width: fit-content;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: clamp(24px, 3vw, 48px);
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        .hero-preview {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-preview-card {
            background: var(--nexus-surface);
            border: 1px solid var(--nexus-border);
            border-radius: var(--card-radius);
            padding: 24px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .hero-preview-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--x, 20%) var(--y, 30%), rgba(183, 148, 246, 0.25), transparent 65%);
            opacity: 0.8;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .hero-preview-card:hover::before {
            opacity: 1;
        }

        .hero-preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .preview-chip {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--nexus-text);
            background: rgba(255, 255, 255, 0.02);
        }

        .preview-chip.green {
            color: var(--nexus-green);
            border-color: rgba(183, 148, 246, 0.4);
            background: rgba(183, 148, 246, 0.08);
        }

        .hero-preview-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .hero-preview-metric {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 16px 18px;
        }

        .hero-preview-metric .metric-label {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--nexus-text-muted);
            letter-spacing: 0.4px;
        }

        .hero-preview-metric .metric-value {
            font-size: 28px;
            font-weight: 600;
            margin-top: 6px;
            color: var(--nexus-text);
        }

        .hero-preview-metric .metric-change {
            font-size: 13px;
            color: var(--nexus-green);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .hero-preview-divider {
            height: 1px;
            margin: 24px 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .hero-preview-footer {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--nexus-text-dim);
        }

        .hero-signal-rail {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
            padding: 14px 22px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(5, 2, 10, 0.55);
            box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.03);
            margin-top: 24px;
            width: 100%;
        }

        .hero-signal {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-signal-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--nexus-text-muted);
        }

        .hero-signal-value {
            font-size: 16px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .hero-preview-metrics {
                grid-template-columns: 1fr;
            }

            .hero-signal-rail {
                border-radius: 24px;
            }
        }

        .hero-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -3px;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s both;
            position: relative;
            z-index: 2;
            text-align: left;
            max-width: 640px;
        }
        
        .hero-title-gradient {
            background: linear-gradient(120deg, #faf5ff 0%, #b794f6 35%, #9f7aea 65%, #c4b5fd 100%);
             -webkit-background-clip: text;
             background-clip: text;
             -webkit-text-fill-color: transparent;
             display: inline-block; /* Required for transform */
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 400;
            color: var(--nexus-text-dim);
            line-height: 1.7;
            max-width: 540px;
            margin: 0 0 32px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
            justify-content: flex-start;
        }

        .hero-pill {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(183, 148, 246, 0.3);
            color: var(--nexus-green);
            background: rgba(183, 148, 246, 0.08);
        }

        .hero-pill.neutral {
            color: var(--nexus-text-dim);
            border-color: rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 999px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--easing);
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(120deg, #b794f6, #5bb8ff, #c085ff);
            color: #0a0415;
            border: 1px solid transparent;
            box-shadow: 0 0 35px rgba(183, 148, 246, 0.35);
            overflow: hidden;
            position: relative;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 0 40px rgba(183, 148, 246, 0.4);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--nexus-border);
            color: var(--nexus-text);
            backdrop-filter: blur(10px);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--nexus-text);
            transform: translateY(-2px);
        }

        .tilt-card {
            --tiltX: 0deg;
            --tiltY: 0deg;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            transform: perspective(900px) rotateX(var(--tiltX)) rotateY(var(--tiltY));
            will-change: transform;
        }

        .tilt-card.is-tilting {
            transition: transform 0.08s ease;
        }

        .hero-actions {
            margin: 10px 0 0;
            display: flex;
            justify-content: flex-start;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
             margin: 0 auto 50px;
            max-width: 700px;
        }

        .metric-card {
            padding: 16px 20px;
            border: 1px solid var(--nexus-border);
            border-radius: 14px;
            background: #050505;
            box-shadow: inset 0 0 40px rgba(183, 148, 246, 0.02);
        }

        .metric-label {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 1px;
            color: var(--nexus-text-muted);
            text-transform: uppercase;
        }

        .metric-value {
            display: block;
            font-size: 28px;
            font-weight: 800;
            margin: 8px 0;
        }

        .metric-note {
            font-size: 13px;
            color: var(--nexus-text-dim);
        }

        /* Bookmarklet Card */
        .bookmarklet-card {
            background: var(--nexus-surface);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--nexus-border-strong);
            border-radius: var(--card-radius);
            padding: 24px 28px;
            width: 100%;
            animation: fadeInUp 0.8s ease 0.6s both;
            position: relative;
            overflow: visible;
            display: flex;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .bookmarklet-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(183, 148, 246, 0.25);
            pointer-events: none;
            box-shadow: 0 0 35px rgba(183, 148, 246, 0.15) inset;
        }

        .bookmarklet-inner {
            display: flex;
            align-items: center;
            gap: 24px;
            width: 100%;
            justify-content: space-between;
        }

        .bookmarklet-button {
            position: relative;
            text-decoration: none;
            display: inline-block;
        }

        .bookmarklet-hint {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 600;
            color: var(--nexus-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            animation: float 2s ease-in-out infinite;
            z-index: 1;
        }

        .cursor,
        .cursor-follower {
            position: fixed;
            pointer-events: none;
            border-radius: 50%;
            z-index: 9999;
            mix-blend-mode: screen;
            transition: transform 0.18s ease;
            opacity: 1;
        }

        .cursor {
            width: 12px;
            height: 12px;
            background: var(--nexus-green);
            box-shadow: 0 0 12px rgba(183, 148, 246, 0.6);
        }

        .cursor-follower {
            width: 30px;
            height: 30px;
            border: 2px solid rgba(183, 148, 246, 0.35);
            filter: blur(0.5px);
            transition: transform 0.3s ease;
            z-index: 9998;
        }

        @media (hover: none) {
            .cursor,
            .cursor-follower {
                display: none;
            }
        }

        .bookmarklet-hint::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 8px;
            background: var(--nexus-green);
        }

        .bookmarklet-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--nexus-green), var(--nexus-cyan));
            border-radius: 10px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: grab;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(183, 148, 246, 0.2);
        }

        .bookmarklet-btn::before {
            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, height 0.6s;
        }

        .bookmarklet-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .bookmarklet-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(183, 148, 246, 0.3);
        }

        .bookmarklet-btn:active {
            cursor: grabbing;
            transform: scale(0.98);
        }

        .bookmarklet-info {
            text-align: left;
        }

        .bookmarklet-info h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--nexus-text);
        }

        .bookmarklet-info p {
            font-size: 13px;
            color: var(--nexus-text-dim);
            line-height: 1.6;
        }

        /* ==================== QUICK SETUP SECTION ==================== */
        .quick-setup-section {
            background: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .setup-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .setup-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .setup-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--nexus-green);
            border: 1px solid rgba(183, 148, 246, 0.2);
            border-radius: 999px;
            background: rgba(183, 148, 246, 0.04);
        }

        .setup-header h2 {
            font-size: 40px;
            font-weight: 800;
            margin: 16px 0 12px;
        }

        .setup-header p {
            color: var(--nexus-text-dim);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .setup-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .setup-card {
            position: relative;
            padding: 24px 26px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--card-radius);
            background: rgba(12, 5, 20, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            overflow: hidden;
            transition: all 0.3s var(--easing);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            box-shadow: var(--shadow-soft);
        }

        @media (max-width: 768px) {
            .setup-grid {
                grid-template-columns: 1fr; /* Stack on mobile */
            }
        }

        .setup-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, rgba(183, 148, 246, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .setup-card:hover {
            transform: translateY(-6px);
            border-color: rgba(183, 148, 246, 0.4);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
        }

        .setup-card:hover::after {
            opacity: 1;
        }

        .setup-card:hover .setup-number {
            color: var(--nexus-green);
            text-shadow: 0 0 15px rgba(183, 148, 246, 0.4);
        }

        .setup-number {
            font-family: var(--font-mono);
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--nexus-green);
            margin-bottom: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .setup-number::after {
            content: '';
            display: block;
            width: 36px;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .setup-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .setup-card p {
            color: var(--nexus-text-dim);
            font-size: 14px;
            line-height: 1.6;
        }

        .setup-cta {
            margin-top: 16px;
            display: flex;
            justify-content: center;
        }

        .setup-cta .bookmarklet-card {
            max-width: 640px;
        }

        .os-instructions {
            display: grid;
            gap: 4px;
        }

        .os-line {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            color: var(--nexus-text-dim);
        }

        .os-label {
            font-weight: 600;
            color: var(--nexus-green);
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .shortcut {
            font-family: var(--font-mono);
            font-size: 13px;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.9);
        }

        .os-note {
            margin-top: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
        }

        .setup-card kbd {
            display: inline-block;
            padding: 3px 6px;
            margin: 0 2px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 4px;
            font-size: 12px;
            font-family: var(--font-mono);
            color: var(--nexus-green);
        }

        .section-head {
            margin-bottom: 30px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            margin: 14px 0 8px;
        }

        .section-head p {
            color: var(--nexus-text-dim);
            max-width: 560px;
        }

        .section-head a {
            color: var(--nexus-green);
            text-decoration: underline transparent;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        .section-head a:hover {
            text-decoration-color: var(--nexus-green);
        }

        .section-head.center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section-head.center p {
            margin: 0 auto;
        }

        /* ==================== DEMO SECTION ==================== */
        .demo-section {
            background: transparent;
            border: none;
        }

        .demo-container {
             max-width: 1150px;
             margin: 0 auto;
             padding: clamp(32px, 4vw, 44px);
             border-radius: var(--card-radius);
             border: 1px solid var(--nexus-border);
             background: rgba(6, 9, 20, 0.85);
             box-shadow: var(--shadow-soft);
             position: relative;
             z-index: 0;
             overflow: hidden;
        }

        .demo-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 60% -10%, rgba(91, 184, 255, 0.25), transparent 55%);
            opacity: 0.8;
            pointer-events: none;
            z-index: -1;
        }

        .demo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            color: var(--nexus-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .demo-video {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            background: #000;
            border: 1px solid var(--nexus-border-strong);
            margin-bottom: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        }

        .demo-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
            padding: 12px 16px;
            background: rgba(0, 0, 0, 0.9);
            border: 1px solid var(--nexus-green);
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--nexus-green);
            backdrop-filter: blur(10px);
        }

        .demo-video img {
            width: 100%;
            display: block;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .demo-video:hover img {
            opacity: 1;
        }

        .demo-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            font-family: var(--font-mono);
            font-size: 12px;
        }

        .demo-stat {
             display: flex;
             flex-direction: column;
            gap: 4px;
        }

        .demo-stat-label {
            color: var(--nexus-text-muted);
             text-transform: uppercase;
            font-size: 10px;
            letter-spacing: 1px;
        }

        .demo-stat-value {
            color: var(--nexus-text);
            font-weight: 600;
        }

        .demo-stat-value.green {
            color: var(--nexus-green);
        }

        /* ==================== METHOD SECTION ==================== */
        .method-section {
            background: transparent;
            position: relative;
        }

        .method-container {
            max-width: 1200px;
             margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: start;
         }

         .method-left {
             position: sticky;
             top: 100px;
         }

         .method-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 900;
             line-height: 1;
            letter-spacing: -2px;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease;
        }

        .method-title .dim {
            opacity: 0.2;
        }

        .terminal-window {
            background: rgba(8, 4, 15, 0.95);
            border: 1px solid var(--nexus-border-strong);
            border-radius: var(--card-radius);
            overflow: hidden;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
            box-shadow: var(--shadow-soft);
        }

        .terminal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: var(--nexus-surface);
            border-bottom: 1px solid var(--nexus-border);
        }

        .terminal-dots {
            display: flex;
            gap: 8px;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--nexus-border);
        }

        .terminal-dot.red {
            background: #ff5f57;
        }

        .terminal-dot.yellow {
            background: #ffbd2e;
        }

        .terminal-dot.green {
            background: #9f7aea;
        }

        .terminal-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 500;
            color: var(--nexus-green);
             text-transform: uppercase;
        }

        .terminal-body {
            padding: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            line-height: 1.8;
            color: var(--nexus-text);
            background: radial-gradient(circle at 20% 20%, rgba(183, 148, 246, 0.08), transparent 60%);
        }

        .terminal-chart {
             position: relative;
            height: 130px;
            width: 100%;
            border-top: 1px solid var(--nexus-border);
            padding: 10px;
            background: linear-gradient(to top, rgba(183, 148, 246, 0.08), transparent);
         }

        .terminal-profit {
             position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            padding: 4px 10px;
            border-radius: 4px;
            color: var(--nexus-green);
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 600;
            border: 1px solid rgba(183, 148, 246, 0.3);
            backdrop-filter: blur(10px);
        }

        .integrity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            padding: 24px;
            border-top: 1px solid var(--nexus-border);
            background: rgba(12, 5, 20, 0.9);
        }

        .integrity-card {
            padding: 16px 18px;
            border: 1px solid rgba(183, 148, 246, 0.2);
            border-radius: 16px;
            background: rgba(15, 5, 21, 0.85);
            box-shadow: inset 0 0 20px rgba(183, 148, 246, 0.08);
        }

        .integrity-label {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--nexus-text-muted);
        }

        .integrity-card strong {
            display: block;
            margin: 8px 0 6px;
            color: var(--nexus-text);
            font-size: 15px;
        }

        .integrity-note {
            font-size: 13px;
            color: var(--nexus-text-dim);
            line-height: 1.5;
        }

        @media (max-width: 640px) {
            .integrity-grid {
                grid-template-columns: 1fr;
            }
        }

        .terminal-line {
            margin-bottom: 8px;
             opacity: 0;
            animation: terminalType 0.1s ease forwards;
         }

        @keyframes terminalType {
            to {
             opacity: 1;
         }
        }

        .terminal-line:nth-child(1) { animation-delay: 0.1s; }
        .terminal-line:nth-child(2) { animation-delay: 0.2s; }
        .terminal-line:nth-child(3) { animation-delay: 0.3s; }
        .terminal-line:nth-child(4) { animation-delay: 0.4s; }
        .terminal-line:nth-child(5) { animation-delay: 0.5s; }
        .terminal-line:nth-child(6) { animation-delay: 0.6s; }
        .terminal-line:nth-child(7) { animation-delay: 0.7s; }

        .terminal-line.success {
            color: var(--nexus-green);
        }

        .terminal-line.warning {
            color: var(--nexus-cyan);
        }

        .terminal-line.error {
            color: var(--nexus-red);
        }

        .terminal-line.highlight {
            color: var(--nexus-purple);
        }

        .method-right {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .method-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: rgba(12, 5, 20, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--card-radius);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease both;
            box-shadow: var(--shadow-soft);
        }

        .method-item:nth-child(1) { animation-delay: 0.3s; }
        .method-item:nth-child(2) { animation-delay: 0.4s; }
        .method-item:nth-child(3) { animation-delay: 0.5s; }

         .method-item:hover {
            transform: translateX(10px);
            border-color: rgba(183, 148, 246, 0.4);
            background: rgba(183, 148, 246, 0.08);
         }

         .method-num {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--nexus-green), var(--nexus-cyan));
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 18px;
             font-weight: 700;
            color: #000;
        }

        .method-content {
            flex: 1;
        }

        .method-item-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--nexus-text);
         }

        .method-item-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--nexus-text-dim);
         }

        /* ==================== EXECUTION & CLARITY SECTION ==================== */
        .assurance-section {
            background: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .assurance-layout {
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
            gap: clamp(24px, 4vw, 48px);
            align-items: start;
        }

        @media (max-width: 1024px) {
            .assurance-layout {
                grid-template-columns: 1fr;
            }
        }

        .execution-stack {
            display: grid;
            gap: 20px;
        }

        .execution-card {
            padding: 28px 32px;
            border-radius: var(--card-radius);
            border: 1px solid var(--nexus-border);
            background: rgba(15, 5, 21, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s var(--easing), border-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
        }

        .execution-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 20%, rgba(183, 148, 246, 0.25), transparent 65%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .execution-card:hover {
            transform: translateY(-6px);
            border-color: var(--nexus-border-hover);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45), var(--shadow-glow);
        }

        .execution-card:hover::before {
            opacity: 1;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--nexus-text-muted);
            margin-bottom: 14px;
        }

        .card-label {
            color: var(--nexus-green);
        }

        .card-kpi {
            color: var(--nexus-text-dim);
            font-weight: 600;
        }

        .execution-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--nexus-text);
        }

        .execution-card p {
            color: var(--nexus-text-dim);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .execution-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
        }

        .execution-card li {
            padding-left: 22px;
            position: relative;
            font-size: 14px;
            color: var(--nexus-text);
            line-height: 1.5;
        }

        .execution-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--nexus-green);
            box-shadow: 0 0 12px rgba(183, 148, 246, 0.5);
        }

        .clarity-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .clarity-card {
            padding: 24px 26px;
            border-radius: var(--card-radius);
            border: 1px solid var(--nexus-border);
            background: rgba(10, 5, 18, 0.92);
            box-shadow: var(--shadow-soft);
        }

        .clarity-card.primary {
            background: linear-gradient(140deg, rgba(183, 148, 246, 0.2), rgba(15, 5, 21, 0.9));
            border-color: rgba(183, 148, 246, 0.4);
            box-shadow: var(--shadow-glow);
        }

        .clarity-card h3,
        .clarity-card h4 {
            margin-bottom: 12px;
            color: var(--nexus-text);
        }

        .clarity-card p {
            color: var(--nexus-text-dim);
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .clarity-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: var(--nexus-text);
            font-size: 14px;
        }

        .clarity-checklist {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .checklist-row {
            display: flex;
            flex-direction: column;
            gap: 6px;
            color: var(--nexus-text);
            font-size: 14px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            border: 1px solid var(--nexus-border);
        }

        .badge.success {
            color: var(--nexus-green);
            border-color: rgba(183, 148, 246, 0.4);
            background: rgba(183, 148, 246, 0.08);
        }

        .badge.neutral {
            color: var(--nexus-text-dim);
        }

        .badge.info {
            color: var(--nexus-cyan);
            border-color: rgba(196, 181, 253, 0.5);
            background: rgba(196, 181, 253, 0.08);
        }

        @media (max-width: 768px) {
            .execution-card,
            .clarity-card {
                padding: 24px;
            }
        }

        /* ==================== PRICING SECTION ==================== */
        .pricing-section {
            background: transparent;
            position: relative;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .pricing-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 16px;
            animation: fadeInUp 0.8s ease;
         }
         
        .pricing-subtitle {
            font-size: 18px;
            color: var(--nexus-text-dim);
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .pricing-grid {
            max-width: 900px;
            margin: 0 auto;
             display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
         }

        .pricing-card {
            padding: 48px;
            background: rgba(12, 5, 20, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            animation: fadeInUp 0.8s ease both;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%);
            pointer-events: none;
        }

        .pricing-card.featured {
            border-color: rgba(183, 148, 246, 0.6);
            background: rgba(183, 148, 246, 0.08);
            box-shadow: var(--shadow-glow);
            transform: scale(1.03);
            z-index: 2;
        }

        .pricing-card.featured::after {
            content: 'RECOMMENDED';
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 14px 8px;
            background: var(--nexus-green);
            color: #000;
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            border-radius: 999px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        }

        .pricing-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(183, 148, 246, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.07);
            box-shadow: 0 25px 60px rgba(183, 148, 246, 0.15);
        }

        .pricing-card.locked {
            opacity: 0.5;
            pointer-events: none;
            filter: grayscale(0.3);
        }

        .pricing-plan {
            font-size: 14px;
            font-weight: 600;
            color: var(--nexus-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 32px;
            background: linear-gradient(135deg, var(--nexus-text), var(--nexus-green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
            color: var(--nexus-text-dim);
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(183, 148, 246, 0.1);
            border-radius: 50%;
            color: var(--nexus-green);
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-status {
            padding: 16px;
            background: rgba(183, 148, 246, 0.05);
            border: 1px solid rgba(183, 148, 246, 0.2);
            border-radius: 8px;
            text-align: center;
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--nexus-green);
        }

        .pricing-locked {
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--nexus-text-muted);
        }

        /* Comparison Table */
        .comparison-section {
            margin: 40px auto 16px;
            padding: 40px;
            background: rgba(10, 5, 18, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            position: relative;
            z-index: 0;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(91, 184, 255, 0.18), transparent 60%);
            opacity: 0.7;
            pointer-events: none;
            z-index: -1;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--nexus-border);
        }

        .comparison-table th {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 600;
            color: var(--nexus-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.02);
        }

        .comparison-table td {
            font-size: 14px;
            color: var(--nexus-text-dim);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-good {
            color: var(--nexus-green);
            font-weight: 600;
        }

        .comparison-bad {
            color: var(--nexus-red);
            font-weight: 600;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            padding: 80px 40px 40px;
            background: #000;
            border-top: 1px solid var(--nexus-border);
            position: relative;
            overflow: hidden;
        }

        /* Grid Animation Overlay */
        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(183, 148, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(183, 148, 246, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center center;
            opacity: 0.5;
            mask-image: radial-gradient(circle at 50% 0%, black, transparent 80%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            margin-bottom: 40px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-logo svg {
            height: 40px;
            width: auto;
            opacity: 0.6;
            filter: drop-shadow(0 0 20px rgba(183, 148, 246, 0.2));
            transition: all 0.3s ease;
        }

        .footer-logo:hover svg {
            opacity: 1;
            filter: drop-shadow(0 0 30px rgba(183, 148, 246, 0.4));
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .footer-link {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 500;
            color: var(--nexus-text-dim);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--nexus-green);
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: var(--nexus-green);
            text-shadow: 0 0 10px rgba(183, 148, 246, 0.4);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--nexus-border), transparent);
            margin: 40px 0;
        }

        .footer-copy {
            font-family: var(--font-mono);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1.8;
            text-align: center;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 40px;
            text-align: center;
            justify-items: center;
        }

        .footer-col h4 {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--nexus-green);
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .footer-col a,
        .footer-col p {
            display: block;
            font-size: 14px;
            color: var(--nexus-text-dim);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.2s ease;
        }

        .footer-col a:hover {
            color: #fff;
        }

        .system-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            background: rgba(183, 148, 246, 0.05);
            border: 1px solid rgba(183, 148, 246, 0.2);
            border-radius: 999px;
            font-size: 11px;
            font-family: var(--font-mono);
            color: var(--nexus-green);
        }

        .system-status .dot {
            width: 6px;
            height: 6px;
            background: var(--nexus-green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--nexus-green);
            animation: pulse 2s infinite;
        }

        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            padding: 120px 40px 80px;
            background: radial-gradient(circle at 50% 0%, rgba(183, 148, 246, 0.05) 0%, #020202 60%);
            position: relative;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        details.faq-item {
            position: relative;
            background: rgba(12, 12, 12, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        details.faq-item:hover {
            border-color: rgba(183, 148, 246, 0.2);
            background: rgba(12, 12, 12, 0.6);
        }

        details.faq-item[open] {
            border-color: rgba(183, 148, 246, 0.3);
            background: rgba(183, 148, 246, 0.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .faq-summary {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            cursor: pointer;
            user-select: none;
        }

        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .faq-label {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--nexus-green);
            opacity: 0.7;
        }

        .faq-summary h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--nexus-text);
            transition: color 0.3s ease;
        }

        details.faq-item[open] .faq-summary h3 {
            color: var(--nexus-green);
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--nexus-text-dim);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        details.faq-item[open] .faq-toggle {
            transform: rotate(45deg);
            color: var(--nexus-green);
            border-color: var(--nexus-green);
            background: rgba(183, 148, 246, 0.1);
        }

        .faq-answer {
            padding: 0 24px 24px;
            color: var(--nexus-text-dim);
            font-size: 14px;
            line-height: 1.7;
            animation: slideInLeft 0.4s ease;
            max-width: 90%;
        }

        .faq-answer p {
            margin: 0;
        }

        /* Terminal decoration */
        .faq-answer::before {
            content: '>_';
            display: block;
            font-family: var(--font-mono);
            color: var(--nexus-green);
            margin-bottom: 8px;
            font-size: 12px;
            opacity: 0.5;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(183, 148, 246, 0.08);
            border: 1px solid rgba(183, 148, 246, 0.3);
            border-radius: 999px;
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--nexus-text);
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .trust-badge svg {
            width: 14px;
            height: 14px;
            color: var(--nexus-green);
        }

        /* ==================== COOKIE TOAST ==================== */
        .cookie-toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: min(460px, calc(100% - 32px));
            padding: 0;
            border-radius: 26px;
            background: rgba(8, 4, 15, 0.94);
            border: 1px solid rgba(183, 148, 246, 0.2);
            box-shadow: 0 35px 65px rgba(0, 0, 0, 0.65), 0 0 30px rgba(183, 148, 246, 0.15);
            display: flex;
            z-index: 1400;
            overflow: hidden;
            isolation: isolate;
            transform: translate3d(30px, 60px, 0) scale(0.92);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s var(--easing), transform 0.6s var(--easing);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .cookie-toast__panel {
            position: relative;
            padding: 22px 22px 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .cookie-toast.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
            pointer-events: auto;
        }

        .cookie-toast.dismissed {
            opacity: 0;
            transform: translate3d(0, 120%, 0) scale(0.9);
            pointer-events: none;
        }

        .cookie-toast__orb {
            position: absolute;
            inset: auto;
            width: 260px;
            height: 260px;
            bottom: -130px;
            right: -80px;
            background: radial-gradient(circle, rgba(183, 148, 246, 0.4), transparent 65%);
            filter: blur(35px);
            opacity: 0.8;
            animation: cookieGlow 14s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes cookieGlow {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
            50% { transform: translate3d(-14px, -6px, 0) scale(1.15); opacity: 1; }
        }

        .cookie-toast__intro {
            display: flex;
            gap: 14px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .cookie-toast__icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 16px;
            border: 1px solid rgba(183, 148, 246, 0.4);
            background: rgba(183, 148, 246, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--nexus-green);
            box-shadow: inset 0 0 25px rgba(183, 148, 246, 0.15);
            animation: cookiePulse 4s ease-in-out infinite;
        }

        @keyframes cookiePulse {
            0%, 100% { transform: scale(1); box-shadow: inset 0 0 25px rgba(183, 148, 246, 0.15); }
            50% { transform: scale(1.05); box-shadow: inset 0 0 35px rgba(183, 148, 246, 0.25); }
        }

        .cookie-toast__icon svg {
            width: 22px;
            height: 22px;
        }

        .cookie-toast__header {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .cookie-toast__tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(183, 148, 246, 0.35);
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--nexus-green);
            background: rgba(183, 148, 246, 0.08);
        }

        .cookie-toast__title {
            font-size: 20px;
            font-weight: 700;
            color: var(--nexus-text);
            letter-spacing: -0.5px;
        }

        .cookie-toast__text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--nexus-text-dim);
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .cookie-toast__actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .cookie-action {
            border-radius: 18px;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing), border-color 0.25s;
            text-align: left;
        }

        .cookie-action.primary {
            background: linear-gradient(115deg, rgba(183, 148, 246, 0.15), rgba(91, 184, 255, 0.05));
            border: 1px solid rgba(183, 148, 246, 0.55);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
        }

        .cookie-action.outline {
            border: 1px solid rgba(183, 148, 246, 0.35);
            background: rgba(183, 148, 246, 0.05);
        }

        .cookie-action.ghost {
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--nexus-text);
        }

        .cookie-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .cookie-action__label {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--nexus-green);
        }

        .cookie-action.primary .cookie-action__label {
            color: var(--nexus-green-strong);
        }

        .cookie-action__desc {
            font-size: 13px;
            color: var(--nexus-text-dim);
            line-height: 1.5;
        }

        .cookie-action:focus-visible {
            outline: 2px solid rgba(183, 148, 246, 0.9);
            outline-offset: 3px;
        }

        @media (min-width: 640px) {
            .cookie-toast__actions {
                flex-direction: row;
            }

            .cookie-action {
                flex: 1;
            }
        }

        @media (max-width: 640px) {
            .cookie-toast {
                right: 16px;
                left: 16px;
                bottom: 16px;
                width: auto;
            }
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .method-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .method-left {
                position: static;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
         }

            .pricing-card.featured {
                transform: none;
            }
         }

         @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
            }

            .hero-section {
                padding: 100px 20px 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .bookmarklet-inner {
                flex-direction: column;
                text-align: center;
            }

            .tilt-card {
                transform: none !important;
            }

            .setup-grid {
                grid-template-columns: 1fr;
            }

            .setup-header h2 {
                font-size: 32px;
            }

            .setup-card {
                padding: 24px 20px;
            }

            .features-container {
                grid-template-columns: 1fr;
         }
         
            .comparison-section {
                padding: 24px;
                margin: 30px auto 12px;
                overflow-x: auto;
            }

         .comparison-table {
                min-width: 500px;
         }

            .footer-links {
                flex-wrap: wrap;
                gap: 20px;
            }
         }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .pricing-card {
                padding: 32px 24px;
            }

            .pricing-price {
                font-size: 36px;
            }
         }
