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

        :root {
            --ink: #0c0e14;
            --ink-soft: #1a1d28;
            --border: rgba(255,255,255,0.08);
            --border-glow: rgba(108,99,255,0.4);
            --text-primary: #f0f0f5;
            --text-secondary: rgba(240,240,245,0.55);
            --text-muted: rgba(240,240,245,0.3);
            --accent: #6c63ff;
            --accent-glow: rgba(108,99,255,0.35);
            --teal: #00d4aa;
            --rose: #ff5e7d;
        }

        body {
            background: var(--ink);
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* ── CANVAS BACKGROUND ── */
        #bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
        body::before {
            content: ''; position: fixed; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            background-size: 256px; opacity: 0.4; z-index: 0; pointer-events: none;
        }

        /* ── NAV (Reused) ── */
        nav {
            display: flex; align-items: center; justify-content: space-between;
            padding: 24px 48px; border-bottom: 1px solid var(--border);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            position: sticky; top: 0; z-index: 100; background: rgba(12, 14, 20, 0.7);
        }
        .nav-logo {
            font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
            letter-spacing: -0.5px; color: var(--text-primary); text-decoration: none;
            display: flex; align-items: center; gap: 10px;
        }
        .nav-logo-dot {
            width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
            box-shadow: 0 0 12px var(--accent); animation: pulse-dot 2.5s ease-in-out infinite;
        }
        @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
        .nav-links { display: flex; gap: 8px; list-style: none; }
        .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 8px 16px; border-radius: 8px; transition: all 0.2s ease; }
        .nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
        .nav-cta { color: var(--text-primary) !important; background: var(--accent) !important; padding: 9px 20px !important; border-radius: 10px !important; }

        /* ── PAGE LAYOUT ── */
        /* Increased max-width to comfortably fit 4 columns */
        .page-content { position: relative; z-index: 1; flex: 1; padding: 100px 24px; max-width: 1400px; margin: 0 auto; width: 100%; }
        
        .header-section { text-align: center; margin-bottom: 80px; animation: fade-up 0.6s ease both; }
        .header-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.1; }
        .header-sub { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); font-weight: 300; max-width: 600px; margin: 0 auto; }

        /* ── PRICING GRID ── */
        /* Changed to force exactly 4 columns */
        .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; animation: fade-up 0.6s 0.2s ease both; }
        
        .pricing-card {
            background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            border-radius: 24px; padding: 32px; display: flex; flex-direction: column;
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            transition: transform 0.3s ease, border-color 0.3s ease;
            position: relative; overflow: hidden;
        }
        .pricing-card:hover { transform: translateY(-4px); border-color: rgba(108,99,255,0.3); }

        .pricing-card.popular { border-color: var(--border-glow); background: rgba(108,99,255,0.05); }
        .popular-badge {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            background: var(--accent); color: #fff; font-size: 11px; font-weight: 600;
            letter-spacing: 1px; text-transform: uppercase; padding: 4px 16px;
            border-bottom-left-radius: 8px; border-bottom-right-radius: 8px;
        }

        .plan-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
        .plan-price { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
        .price-currency { font-size: 24px; color: var(--text-secondary); font-weight: 500; }
        .price-period { font-size: 15px; color: var(--text-secondary); font-weight: 400; font-family: 'DM Sans', sans-serif; }
        
        .plan-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; min-height: 44px; }

        .feature-list { list-style: none; margin-bottom: 40px; flex: 1; }
        .feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-primary); margin-bottom: 16px; }
        .feature-icon { color: var(--teal); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

        .btn-pricing {
            width: 100%; display: block; text-align: center; text-decoration: none;
            font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
            padding: 14px; border-radius: 12px; transition: all 0.2s ease;
        }
        .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(108,99,255,0.2); }
        .btn-primary:hover { background: #7b73ff; box-shadow: 0 8px 24px var(--accent-glow); }
        .btn-secondary { background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid var(--border); }
        .btn-secondary:hover { background: rgba(255,255,255,0.1); }

        /* ── COMBO OFFERS SECTION ── */
        .combo-section { margin-top: 100px; padding-top: 80px; border-top: 1px dashed var(--border); animation: fade-up 0.6s 0.4s ease both; }
        .combo-header { text-align: center; margin-bottom: 48px; }
        .combo-title { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
        
        /* Changed to force exactly 4 columns */
        .combo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .combo-card { 
            background: rgba(255,255,255,0.015); border: 1px solid var(--border); 
            border-radius: 16px; padding: 24px; transition: transform 0.3s ease, background 0.3s ease;
            display: flex; flex-direction: column;
        }
        .combo-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.03); }
        .combo-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
        .combo-price { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--accent); margin-bottom: 16px; display: flex; align-items: baseline; gap: 4px; }
        .combo-price-currency { font-size: 20px; }
        .combo-features { list-style: none; margin-bottom: 32px; flex: 1; }
        .combo-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
        .combo-features li::before { content: '+'; color: var(--accent); font-weight: 800; font-size: 16px; }

        /* ── FOOTER (Reused) ── */
        footer { border-top: 1px solid var(--border); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; margin-top: 100px;}
        .footer-copy, .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        .footer-links { display: flex; gap: 24px; list-style: none; }
        .footer-links a:hover { color: var(--text-secondary); }

        @keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .menu-toggle { display: none; cursor: pointer; }

        /* ── RESPONSIVE MEDIA QUERIES ── */
        /* Tablets (Stack into 2 rows of 2) */
        @media (max-width: 1100px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .combo-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Mobile (Stack into 1 column) */
        @media (max-width: 768px) {
            nav { padding: 18px 24px; } 
            .nav-links { display: none; }
            .menu-toggle { display: block; } 
            
            .page-content { padding: 60px 20px; gap: 60px; }
            .pricing-grid { grid-template-columns: 1fr; }
            .combo-grid { grid-template-columns: 1fr; }
            
            .combo-section { margin-top: 60px; padding-top: 60px; }
            .story-stats { flex-direction: column; gap: 24px; text-align: center; }
            footer { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Dot on the the image */
        .nav-logo-dot {
    width: 8px; 
    height: 8px; 
    border-radius: 50%;
    background: var(--accent); 
    
    /* Position exactly in the center of the image */
    position: absolute;
    top: 15%;
    left: 77%;
    transform: translate(-50%, -50%);
    
    /* Apply the blink animation */
    animation: logoBlink 2s infinite ease-in-out;
}

/* Add the animation keyframes at the bottom of your CSS file (or right after the class) */
@keyframes logoBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--accent);
    }
    50% {
        opacity: 0.2;
        box-shadow: 0 0 2px var(--accent);
    }
}