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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d0d;
            color: #f5f5f5;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: rgba(156, 163, 175, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor.reading {
            width: 40px;
            height: 40px;
            background: rgba(96, 165, 250, 0.5);
        }

        /* Floating Words Background */
        .floating-words {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .word {
            position: absolute;
            font-size: 14px;
            color: rgba(156, 163, 175, 0.1);
            font-weight: 300;
            animation: wordFloat 25s linear infinite;
            user-select: none;
        }

        @keyframes wordFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Liquid Navigation */
        .nav-container {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }

        .nav-blob {
            background: rgba(17, 17, 17, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 50px;
            padding: 8px 24px;
            display: flex;
            align-items: center;
            gap: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-blob:hover {
            transform: scale(1.05);
            border-color: rgba(96, 165, 250, 0.4);
        }

        .logo {
            font-size: 18px;
            font-weight: 700;
            color: #f5f5f5;
            text-decoration: none;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -8px;
            width: 6px;
            height: 6px;
            background: #60a5fa;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 24px;
        }

        .nav-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-links a:hover {
            color: #f5f5f5;
            background: rgba(96, 165, 250, 0.1);
        }

        /* Hero with Morphing Text */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
        }

        .morphing-title {
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 800;
            line-height: 0.9;
            margin-bottom: 32px;
            position: relative;
        }

        .word-morph {
            display: inline-block;
            background: linear-gradient(135deg, #f5f5f5 0%, #9ca3af 50%, #6b7280 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            background-size: 300% 300%;
        }

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

        .changing-word {
            color: #60a5fa;
            position: relative;
            display: inline-block;
            min-width: 200px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 48px;
            font-weight: 400;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Unique CTA Design */
        .cta-container {
            position: relative;
            display: inline-block;
        }

        .cta-button {
            position: relative;
            background: #f5f5f5;
            color: #0d0d0d;
            padding: 16px 48px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: none;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
        }

        /* Innovative Feature Cards */
        .features {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #60a5fa, transparent);
        }

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

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            perspective: 1000px;
        }

        .feature-card {
            background: rgba(23, 23, 23, 0.6);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(139, 92, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

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

        .feature-card:hover {
            transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
            border-color: rgba(96, 165, 250, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #60a5fa, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #60a5fa, #8b5cf6);
            border-radius: 18px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(10deg);
        }

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

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f5f5f5;
            margin-bottom: 16px;
        }

        .feature-description {
            color: #9ca3af;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Interactive Reading Visualization */
        .reading-demo {
            margin: 100px 0;
            text-align: center;
            position: relative;
        }

        .demo-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 40px;
            background: rgba(17, 17, 17, 0.8);
            border-radius: 32px;
            border: 1px solid rgba(75, 85, 99, 0.3);
            position: relative;
            overflow: hidden;
        }

        .demo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            animation: rotate 10s linear infinite;
        }

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

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

        .book-stack {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .book {
            width: 120px;
            height: 160px;
            background: linear-gradient(135deg, #374151, #4b5563);
            border-radius: 8px;
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .book:nth-child(1) {
            transform: rotate(-10deg) translateZ(10px);
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
        }

        .book:nth-child(2) {
            transform: rotate(5deg) translateZ(20px) scale(1.1);
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .book:nth-child(3) {
            transform: rotate(-5deg) translateZ(5px);
            background: linear-gradient(135deg, #06b6d4, #0891b2);
        }

        .book-stack:hover .book:nth-child(1) {
            transform: rotate(-15deg) translateZ(30px) translateX(-20px);
        }

        .book-stack:hover .book:nth-child(2) {
            transform: rotate(0deg) translateZ(40px) scale(1.2);
        }

        .book-stack:hover .book:nth-child(3) {
            transform: rotate(10deg) translateZ(25px) translateX(20px);
        }

        /* Stats with Liquid Animation */
        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(23, 23, 23, 0.8));
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #60a5fa, transparent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #f5f5f5;
            display: block;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #f5f5f5, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid rgba(75, 85, 99, 0.3);
            background: rgba(10, 10, 10, 0.8);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            color: #f5f5f5;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #60a5fa;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(75, 85, 99, 0.2);
            color: #6b7280;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .morphing-title {
                font-size: 3rem;
            }

            .nav-blob {
                padding: 6px 16px;
                gap: 16px;
            }

            .nav-links {
                display: none;
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .book-stack {
                gap: 10px;
            }

            .book {
                width: 80px;
                height: 110px;
            }

            .cursor {
                display: none;
            }

            body {
                cursor: auto;
            }
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
  