     /* Landing page specific styles - DevPost inspired */
        
        /* Decorative background elements */
        .background-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
        }

        .bg-circle-1 {
            width: 500px;
            height: 500px;
            background: var(--secondary);
            top: -200px;
            right: -100px;
        }

        .bg-circle-2 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            bottom: -150px;
            left: -100px;
        }

        /* Hero section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 10;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
        }

        .hero-content {
            max-width: 900px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: var(--font-extrabold);
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            line-height: 1.1;
        }

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

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: var(--font-bold);
            color: var(--secondary);
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.25rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Features section */
        .features {
            padding: 6rem 2rem;
            position: relative;
            z-index: 10;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: var(--font-bold);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--secondary);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--secondary-alpha-10);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            color: var(--secondary);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            font-weight: var(--font-semibold);
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.9375rem;
        }

        /* How it works section */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--gray-50);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }

        .step:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--gray-300);
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: var(--secondary);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: var(--font-bold);
            color: var(--white);
            margin: 0 auto 1.25rem;
        }

        .step h3 {
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
            font-weight: var(--font-semibold);
        }

        .step p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.9375rem;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: var(--font-bold);
        }

        .cta p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--primary);
        }

        .cta .btn-primary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        .cta .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            padding: 3rem 2rem 1.5rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.9375rem;
        }

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

        .copyright {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Demo info box */
        .demo-info {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--white);
            padding: 1rem 1.25rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-xl);
            max-width: 320px;
            font-size: 0.875rem;
            z-index: 1000;
            animation: slideInRight 0.5s ease-out;
        }

        .demo-info-title {
            color: var(--secondary);
            font-weight: var(--font-semibold);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .demo-info div {
            color: var(--text-secondary);
            margin-bottom: 0.375rem;
        }

        .demo-info strong {
            color: var(--text-primary);
        }

        .demo-info .password-note {
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px solid var(--gray-200);
            color: var(--text-muted);
        }

        .demo-close {
            position: absolute;
            top: 0.5rem;
            right: 0.75rem;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 1.25rem;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }

        .demo-close:hover {
            background: var(--gray-100);
            color: var(--text-primary);
        }

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

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideOutRight {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.125rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .steps-container {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cta h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .demo-info {
                left: 20px;
                right: 20px;
                max-width: none;
            }
        }