<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sex Positions Pro • Master the Art</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
    <style>
        body { font-family: 'Inter', system-ui, sans-serif; }
        .hero-bg {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('https://picsum.photos/2000/1200?random=1') center/cover no-repeat;
        }
    </style>
</head>
<body class="bg-zinc-950 text-zinc-200">

    <!-- HERO -->
    <section class="hero-bg min-h-screen flex items-center">
        <div class="max-w-4xl mx-auto px-6 text-center">
            <h1 class="text-6xl md:text-7xl font-bold tracking-tight mb-6">
                Sex Positions That<br><span class="text-amber-400">Actually Work</span>
            </h1>
            <p class="text-xl md:text-2xl text-zinc-400 max-w-2xl mx-auto mb-10">
                Practical, high-pleasure positions with clear guidance. 
                No gimmicks. Just what experienced men use to create deeper connection and stronger orgasms.
            </p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center">
                <a href="#guides" 
                   class="px-10 py-5 bg-amber-400 hover:bg-amber-300 transition text-zinc-950 font-semibold text-lg rounded-xl">
                    Browse All Positions
                </a>
                <a href="#free-guide" 
                   class="px-10 py-5 border border-zinc-400 hover:border-white transition font-semibold text-lg rounded-xl">
                    Get Free Guide
                </a>
            </div>
            <p class="mt-8 text-sm text-zinc-500">Trusted by men who want better sex — not just more sex</p>
        </div>
    </section>

    <!-- TRUST BAR -->
    <div class="bg-zinc-900 py-4 border-b border-zinc-800">
        <div class="max-w-6xl mx-auto px-6 flex flex-wrap justify-center items-center gap-x-10 gap-y-4 text-sm text-zinc-400">
            <div>4.9/5 from 2,300+ men</div>
            <div>Real techniques • Real results</div>
            <div>Written by Jason Wade</div>
        </div>
    </div>

    <!-- FEATURED CATEGORIES -->
    <section id="guides" class="py-20 bg-zinc-950">
        <div class="max-w-6xl mx-auto px-6">
            <h2 class="text-4xl font-semibold text-center mb-12">Master These Core Positions</h2>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Card 1 -->
                <a href="#" class="group block bg-zinc-900 rounded-2xl overflow-hidden hover:ring-2 hover:ring-amber-400 transition">
                    <div class="h-64 bg-zinc-800 flex items-center justify-center">
                        <span class="text-6xl">🐶</span>
                    </div>
                    <div class="p-8">
                        <h3 class="text-2xl font-semibold mb-2">Perfect Doggy Style</h3>
                        <p class="text-zinc-400">Deep, intense, and mutually addictive. Master the angles that hit every spot she loves.</p>
                    </div>
                </a>

                <!-- Card 2 -->
                <a href="#" class="group block bg-zinc-900 rounded-2xl overflow-hidden hover:ring-2 hover:ring-amber-400 transition">
                    <div class="h-64 bg-zinc-800 flex items-center justify-center">
                        <span class="text-6xl">🌊</span>
                    </div>
                    <div class="p-8">
                        <h3 class="text-2xl font-semibold mb-2">Missionary Mastery</h3>
                        <p class="text-zinc-400">The most intimate position — when done right, it becomes incredibly powerful.</p>
                    </div>
                </a>

                <!-- Card 3 -->
                <a href="#" class="group block bg-zinc-900 rounded-2xl overflow-hidden hover:ring-2 hover:ring-amber-400 transition">
                    <div class="h-64 bg-zinc-800 flex items-center justify-center">
                        <span class="text-6xl">🏇</span>
                    </div>
                    <div class="p-8">
                        <h3 class="text-2xl font-semibold mb-2">Cowgirl & Reverse</h3>
                        <p class="text-zinc-400">Give her control and learn how to guide her for maximum pleasure for both of you.</p>
                    </div>
                </a>
            </div>

            <div class="text-center mt-12">
                <a href="#" class="inline-flex items-center gap-3 text-amber-400 hover:text-amber-300 font-medium">
                    View All 50+ Positions <i class="fa-solid fa-arrow-right"></i>
                </a>
            </div>
        </div>
    </section>

    <!-- JASON WADE -->
    <section class="py-20 bg-zinc-900">
        <div class="max-w-3xl mx-auto px-6 text-center">
            <div class="w-24 h-24 mx-auto bg-zinc-700 rounded-full mb-6 flex items-center justify-center text-4xl">
                👤
            </div>
            <p class="text-lg text-zinc-300 italic mb-6">
                “The best sex positions aren’t the most acrobatic — they’re the ones that create the deepest connection and strongest pleasure.”
            </p>
            
        </div>
    </section>

    <!-- FREE GUIDE CTA -->
    <section id="free-guide" class="py-20 bg-gradient-to-br from-zinc-900 to-black">
        <div class="max-w-xl mx-auto px-6 text-center">
            <h2 class="text-4xl font-semibold mb-4">Free Guide: 7 Positions That Make Her Cum Harder</h2>
            <p class="text-zinc-400 mb-10">
                Practical breakdowns with exact angles, pacing, and small adjustments most men miss.
            </p>
            <form class="space-y-4 max-w-md mx-auto">
                <input type="email" placeholder="Your email address" 
                       class="w-full px-6 py-5 bg-zinc-800 border border-zinc-700 rounded-2xl focus:outline-none focus:border-amber-400 text-lg">
                <button type="submit"
                        class="w-full py-5 bg-amber-400 hover:bg-amber-300 transition text-zinc-950 font-semibold text-xl rounded-2xl">
                    Send Me the Free Guide
                </button>
            </form>
            <p class="text-xs text-zinc-500 mt-6">Zero spam. Unsubscribe anytime.</p>
        </div>
    </section>

    <!-- FOOTER -->
    <footer class="bg-black py-12 border-t border-zinc-900">
        <div class="max-w-6xl mx-auto px-6 text-center text-zinc-500 text-sm">
            <p>© 2026 SexPositions.pro • All Rights Reserved</p>
            <div class="mt-4 flex justify-center gap-8">
                <a href="#" class="hover:text-zinc-300">Privacy</a>
                <a href="#" class="hover:text-zinc-300">Terms</a>
                <a href="#" class="hover:text-zinc-300">Contact</a>
            </div>
            <p class="mt-8 text-xs">For adults only. Educational content only.</p>
        </div>
    </footer>

    <script>
        // Tailwind script already included
    </script>
</body>
</html>