:root {
            /* New Blueprint Tokens */
            --bg-cyber-dark: #090A0F;
            --bg-cyber-darker: #050608;
            --bg-surface-glass: rgba(18, 21, 30, 0.65);
            --bg-surface-hover: rgba(30, 35, 48, 0.8);
            --gradient-neon-primary: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
            --gradient-neon-accent: linear-gradient(135deg, #7928CA 0%, #FF0080 100%);
            --gradient-glass-border: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --text-dim: #64748B;
            --font-family-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-family-mono: 'JetBrains Mono', monospace;
            --filter-glass-blur: blur(16px) saturate(180%);
            --shadow-neon-cyan: 0 0 25px -5px rgba(0, 242, 254, 0.3);
            --shadow-neon-purple: 0 0 30px -5px rgba(121, 40, 202, 0.35);
            --shadow-card-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: 150ms var(--ease-out-expo);
            --transition-smooth: 300ms var(--ease-out-expo);

            /* Legacy compatibility mappings to map standard classes */
            --color-bg: var(--bg-cyber-dark);
            --color-panel: var(--bg-surface-glass);
            --color-panel-hover: var(--bg-surface-hover);
            --color-border: rgba(255, 255, 255, 0.08);
            --color-primary: #00F2FE;
            --color-primary-hover: #4facfe;
            --color-secondary: #7928CA;
            --color-text-title: var(--text-main);
            --color-text-main: var(--text-main);
            --color-text-muted: var(--text-muted);
            --font-heading: var(--font-family-ui);
            --font-body: var(--font-family-ui);
            --glow-shadow: var(--shadow-neon-cyan);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-cyber-dark);
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(121, 40, 202, 0.03) 0%, transparent 40%);
            background-size: 24px 24px, 24px 24px, auto, auto;
            color: var(--text-main);
            font-family: var(--font-family-ui);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--color-text-title);
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        h2 {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .highlight {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            text-align: center;
            color: var(--color-text-muted);
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: #030712;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            color: var(--color-text-title);
            border: 1px solid var(--color-border);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(3, 7, 18, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo svg {
            width: 28px;
            height: 28px;
        }

        .logo span {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--color-text-title);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--color-text-title);
        }

        .btn-nav {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        /* Hero */
        .hero {
            padding: 9rem 0 5rem 0;
            text-align: center;
            position: relative;
        }

        .hero-container {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: #818cf8;
            border-radius: 99px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            max-width: 450px;
            margin: 0 auto;
        }

        .hero-actions .btn {
            flex: 1;
        }

        /* Console Preview Dashboard */
        .console-preview {
            max-width: 850px;
            margin: 2rem auto 0 auto;
            background: #090d16;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--glow-shadow);
            overflow: hidden;
            text-align: left;
        }

        .console-header {
            background: #111827;
            padding: 0.75rem 1.25rem;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .console-dots {
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .dot-red { background: #ef4444; }
        .dot-yellow { background: #f59e0b; }
        .dot-green { background: #10b981; }

        .console-title {
            font-size: 0.75rem;
            font-family: monospace;
            color: var(--color-text-muted);
        }

        .console-body {
            padding: 1.5rem;
            font-family: monospace;
            font-size: 0.85rem;
            color: #34d399;
            line-height: 1.5;
            min-height: 140px;
        }

        /* Brand Wall */
        .brand-wall {
            padding: 3rem 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            background: rgba(3, 7, 18, 0.4);
            text-align: center;
        }

        .brand-wall p {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
        }

        .brand-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.35;
        }

        .brand-logos span {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--color-text-title);
        }

        /* Blog Insights Section */
        .blog-insights {
            padding: 5rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .blog-column-left, .blog-column-right {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            padding: 2.5rem;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .blog-column-left:hover, .blog-column-right:hover {
            transform: translateY(-2px);
            border-color: rgba(99, 102, 241, 0.35);
            box-shadow: var(--glow-shadow);
        }

        .blog-title {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 0.75rem;
        }

        .blog-body p {
            margin-bottom: 1.25rem;
            color: var(--color-text-main);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Bento Grid */
        .features {
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .glass-card, .bento-card, .console-preview, .testimonial-card, .pricing-card, .workspace-panel, .modal-box {
            background: var(--bg-surface-glass);
            backdrop-filter: var(--filter-glass-blur);
            -webkit-backdrop-filter: var(--filter-glass-blur);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: var(--shadow-card-elevated);
            transition: transform var(--transition-smooth), 
                        border-color var(--transition-smooth), 
                        box-shadow var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .glass-card:hover, .bento-card:hover, .console-preview:hover, .testimonial-card:hover, .pricing-card:hover:not(.popular) {
            transform: translateY(-3px) scale(1.005);
            border-color: rgba(0, 242, 254, 0.3);
            box-shadow: var(--shadow-card-elevated), var(--shadow-neon-cyan);
        }

        .glass-card::before, .bento-card::before, .console-preview::before, .testimonial-card::before, .pricing-card::before, .workspace-panel::before, .modal-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: var(--gradient-glass-border);
            opacity: 0.8;
            transition: opacity var(--transition-fast);
        }

        .glass-card:hover::before, .bento-card:hover::before, .console-preview:hover::before, .testimonial-card:hover::before, .pricing-card:hover::before {
            opacity: 1;
            background: var(--gradient-neon-primary);
        }

        .card-large {
            grid-column: span 2;
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 1.25rem;
        }

        .bento-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .bento-card p {
            font-size: 0.95rem;
            color: var(--color-text-main);
        }

        /* Sandbox */
        .sandbox {
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
            text-align: center;
        }

        .sandbox-widget {
            max-width: 650px;
            margin: 0 auto;
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: left;
        }

        .widget-row {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .widget-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .widget-col label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text-title);
        }

        .widget-col select {
            background: #111827;
            border: 1px solid var(--color-border);
            color: #fff;
            padding: 0.75rem;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
        }

        .widget-col input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            height: 6px;
            background: #111827;
            border-radius: 3px;
            outline: none;
            margin-top: 0.75rem;
        }

        .widget-col input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--color-primary);
            cursor: pointer;
            transition: transform 0.1s;
        }

        .widget-col input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        .result-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-family: monospace;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .result-badge.success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: #34d399;
        }

        .result-badge.danger {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #f87171;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .testimonial-card {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            padding: 2.5rem;
            border-radius: 16px;
            position: relative;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--color-text-title);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-author {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-primary);
            letter-spacing: 0.05em;
        }

        /* Pricing */
        .pricing {
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .pricing-grid {
            display: flex;
            gap: 2rem;
            max-width: 900px;
            margin: 3.5rem auto 0 auto;
        }

        .pricing-card {
            flex: 1;
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            padding: 3rem 2.5rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.popular {
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: var(--shadow-card-elevated), var(--shadow-neon-cyan);
        }

        .pricing-card.popular:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: var(--shadow-card-elevated), 0 0 35px rgba(0, 242, 254, 0.45);
        }

        .best-value {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: #030712;
            padding: 0.25rem 1rem;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .price {
            font-size: 3rem;
            font-family: var(--font-heading);
            color: var(--color-text-title);
            font-weight: 800;
            margin-bottom: 1.5rem;
            display: block;
        }

        .plan-desc {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            min-height: 48px;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 3rem;
        }

        .features-list li {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            color: var(--color-text-main);
        }

        .pricing-card .btn {
            margin-top: auto;
        }

        /* FAQ */
        .faq {
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .faq-accordion {
            max-width: 700px;
            margin: 4rem auto 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border);
            padding: 1.25rem 0;
        }

        .faq-quest {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--font-heading);
            color: var(--color-text-title);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-icon {
            font-size: 1.25rem;
            color: var(--color-primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer p {
            padding-top: 1rem;
            color: var(--color-text-main);
            font-size: 0.95rem;
            text-align: left;
        }

        /* Footer */
        .footer {
            padding: 3rem 0;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .sec-stamps {
            font-weight: 700;
            color: var(--color-text-main);
        }

        /* Paddle Modal styles */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(3, 7, 18, 0.85);
            backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .modal-box {
            background: #090d16;
            border: 1px solid var(--color-border);
            padding: 2.5rem;
            border-radius: 16px;
            max-width: 420px;
            width: 90%;
            text-align: center;
            box-shadow: var(--glow-shadow);
        }

        .modal-box h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .modal-box p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
        }

        .modal-box input {
            width: 100%;
            background: #111827;
            border: 1px solid var(--color-border);
            color: #fff;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-family: monospace;
            font-size: 1rem;
            outline: none;
            box-sizing: border-box;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* Workspace (Pro Dashboard Panel) */
        .workspace-panel {
            background: #090d16;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            display: none;
        }

        .workspace-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 1rem;
        }

        .monitor-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .monitor-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 768px) {
            h2 { font-size: 1.75rem; }
            .hero h1 { font-size: 2.25rem; }
            .nav-links { display: none; }
            .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .blog-column-left, .blog-column-right { padding: 1.5rem; }
            .bento-grid { grid-template-columns: 1fr; }
            .card-large { grid-column: span 1; }
            .widget-row { flex-direction: column; gap: 1.5rem; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .pricing-grid { flex-direction: column; }
            .footer-container { flex-direction: column; gap: 1.5rem; }
        }