 :root {
            --bg-main: #ffffff;
            --bg-soft: #f8fafc;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --primary: #0062ff; 
            --primary-hover: #0052cc;
            --secondary: #10b981; 
            --border: #e2e8f0;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-pill: 99px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-float: 0 20px 40px -10px rgba(0, 98, 255, 0.15);
            --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--bg-main); 
            color: var(--text-dark); 
            margin: 0; line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* --- 1. HERO SECTION --- */
        .hero {
            padding: 50px 0 80px;
            background:#c5d7ff;
            overflow: hidden;
        }

        .hero-grid {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 60px;
           align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
            margin: 0 0 24px; color: var(--text-dark);
        }
        .hero-content h1 span { color: var(--primary); }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted); margin: 0 0 40px; max-width: 540px;
        }

        .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
        
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 16px 32px; border-radius: var(--radius-pill);
            font-weight: 700; font-size: 16px; text-decoration: none;
            transition: var(--transition); cursor: pointer;
        }
        
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--shadow-float); }
        
        .btn-outline { background: #ffffff; color: var(--text-dark); border: 2px solid var(--border); }
        .btn-outline:hover { border-color: var(--text-dark); background: var(--bg-soft); transform: translateY(-3px); }

        /* The Hero Image */
        .hero-img-wrapper { position: relative; }
        .hero-img-wrapper img {
            width: 100%; height: auto;
        }
        .earnings-badge {
            position: absolute; bottom: -20px; left: -20px;
            background: #fff; padding: 16px 24px; border-radius: var(--radius-md);
            box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px;
            font-weight: 700; color: var(--text-dark); border: 1px solid var(--border);
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        .earnings-icon { width: 40px; height: 40px; background: rgba(16, 185, 129, 0.1); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        /* --- 2. LIVE STATS --- */
        .stats-section { padding: 40px 0; border-bottom: 1px solid var(--border); background: var(--bg-main); }
        .stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
        .stat-item h4 { font-size: 2.5rem; font-weight: 800; margin: 0 0 4px; line-height: 1; color: var(--text-dark); letter-spacing: -0.02em; }
        .stat-item p { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin: 0; text-transform: uppercase; letter-spacing: 1px; }

        /* --- 3. HOW IT WORKS (SEO SECTION) --- */
        .how-it-works { padding: 100px 0; background: var(--bg-soft); }
        .section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
        .section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin: 0 0 16px; letter-spacing: -0.02em; }
        .section-header p { color: var(--text-muted); font-size: 1.1rem; }
        
        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .step-card { background: #fff; padding: 40px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
        .step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--primary); }
        .step-icon { width: 64px; height: 64px; background: rgba(0, 98, 255, 0.1); color: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
        .step-card h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 12px; }
        .step-card p { color: var(--text-muted); font-size: 1rem; margin: 0; }

        /* --- 4. SPLIT AUDIENCE PATHWAYS --- */
        .pathways { padding: 100px 0; }
        .pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        
        .path-card {
            background: #fff; padding: 50px; border-radius: var(--radius-lg);
            border: 1px solid var(--border); box-shadow: var(--shadow-card);
            transition: var(--transition); display: flex; flex-direction: column;
            position: relative; overflow: hidden;
        }
        .path-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
        .path-card:hover::before { transform: scaleX(1); }
        .path-card.reader::before { background: #f59e0b; }
        .path-card:hover { transform: translateY(-5px); }
        
        .path-icon { width: 56px; height: 56px; background: var(--bg-soft); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary); }
        .path-card.reader .path-icon { color: #f59e0b; }
        
        .path-card h3 { font-size: 1.8rem; font-weight: 800; margin: 0 0 16px; }
        .path-card p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; flex-grow: 1; }
        
        .feature-list { list-style: none; padding: 0; margin: 0 0 40px; }
        .feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text-dark); font-weight: 600; line-height: 1.4; }
        .feature-list li svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero-grid, .pathway-grid { grid-template-columns: 1fr; }
            .hero { text-align: center; padding: 50px 0 60px; }
            .hero-content p { margin: 0 auto 40px; }
            .btn-group { justify-content: center; }
            .earnings-badge { display: none; } 
            .stats-grid { flex-direction: column; gap: 40px; }
        } 