<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>RootFund Collective | Deep Roots. Elevated Futures.</title>

    <script src="https://cdn.tailwindcss.com"></script>

    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">

    <script>

        tailwind.config = {

            theme: {

                extend: {

                    colors: {

                        rootGreen: '#1C472E',

                        rootGold: '#E9A933',

                        rootIvory: '#FDFCF8',

                    }

                }

            }

        }

    </script>

    <style>

        body { background-color: #FDFCF8; font-family: sans-serif; }

        .hero-bg { background-color: #1C472E; }

    </style>

</head>

<body>


    <nav class="flex items-center justify-between px-6 py-4 bg-white shadow-md sticky top-0 z-50">

        <div class="flex items-center space-x-3">

            <img src="logo.png" alt="RootFund Logo" class="h-12 w-auto" onerror="this.src='https://via.placeholder.com/50?text=RF'">

            <div>

                <span class="block text-xl font-bold text-rootGreen leading-none">RootFund</span>

                <span class="text-xs tracking-widest text-rootGold uppercase">Collective</span>

            </div>

        </div>

        <div class="hidden md:flex space-x-8 font-semibold text-rootGreen">

            <a href="#about" class="hover:text-rootGold transition">Mission</a>

            <a href="#journey" class="hover:text-rootGold transition">Investment Journey</a>

        </div>

        <a href="#join" class="bg-rootGold text-rootGreen px-6 py-2 rounded-full font-bold hover:opacity-90 transition">Join Waitlist</a>

    </nav>


    <header class="hero-bg text-white py-20 px-6 text-center">

        <div class="max-w-4xl mx-auto">

            <h1 class="text-4xl md:text-6xl font-bold mb-6">Venture Capital for <span class="text-rootGold">Everyone.</span></h1>

            <p class="text-lg md:text-xl mb-10 text-slate-300">Democratizing startup investing. We bridge the gap between non-accredited investors and high-growth opportunities.</p>

            <div class="flex flex-col md:flex-row justify-center gap-4">

                <a href="#join" class="bg-rootGold text-rootGreen px-8 py-4 rounded-lg font-bold text-lg shadow-lg">Start Your Journey</a>

                <a href="#about" class="border border-white/30 px-8 py-4 rounded-lg font-bold text-lg hover:bg-white/10">Learn More</a>

            </div>

        </div>

    </header>


    <section id="journey" class="py-20 px-6 max-w-6xl mx-auto">

        <h2 class="text-3xl font-bold text-rootGreen text-center mb-12 italic">"Deep Roots. Elevated Futures."</h2>

        <div class="grid md:grid-cols-3 gap-8">

            <div class="bg-white p-8 rounded-2xl shadow-sm border border-slate-100">

                <div class="text-rootGold text-3xl mb-4"><i class="fas fa-seedling"></i></div>

                <h3 class="text-xl font-bold text-rootGreen mb-2">Build Your Roots</h3>

                <p class="text-slate-600">Access vetted startups in Healthcare, Tech, and Transportation with low entry minimums.</p>

            </div>

            <div class="bg-white p-8 rounded-2xl shadow-sm border border-slate-100">

                <div class="text-rootGold text-3xl mb-4"><i class="fas fa-chart-line"></i></div>

                <h3 class="text-xl font-bold text-rootGreen mb-2">Track Growth</h3>

                <p class="text-slate-600">Our dynamic "Investment Journey" dashboard lets you monitor your portfolio in real-time.</p>

            </div>

            <div class="bg-white p-8 rounded-2xl shadow-sm border border-slate-100">

                <div class="text-rootGold text-3xl mb-4"><i class="fas fa-graduation-cap"></i></div>

                <h3 class="text-xl font-bold text-rootGreen mb-2">Learn & Earn</h3>

                <p class="text-slate-600">Integrated educational tools to help you understand the world of Venture Capital.</p>

            </div>

        </div>

    </section>


    <section id="join" class="bg-rootIvory py-20 px-6 border-t border-slate-200">

        <div class="max-w-xl mx-auto text-center">

            <h2 class="text-3xl font-bold text-rootGreen mb-4">Secure Early Access</h2>

            <p class="text-slate-600 mb-8">Be the first to know when our next funding round opens to the collective.</p>

            <form class="space-y-4">

                <input type="email" placeholder="Enter your email" class="w-full px-5 py-4 rounded-xl border border-slate-300 focus:ring-2 focus:ring-rootGold outline-none">

                <button class="w-full bg-rootGreen text-white py-4 rounded-xl font-bold text-lg hover:bg-opacity-90">Join the Collective</button>

            </form>

        </div>

    </section>


    <footer class="bg-rootGreen text-white py-12 px-6">

        <div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center opacity-80">

            <p class="text-sm mb-4 md:mb-0">© 2026 RootFund Collective. All rights reserved.</p>

            <div class="flex space-x-6">

                <a href="#"><i class="fab fa-linkedin"></i></a>

                <a href="#"><i class="fab fa-twitter"></i></a>

            </div>

        </div>

        <div class="max-w-4xl mx-auto mt-8 text-[10px] text-center text-slate-400 uppercase tracking-widest">

            Investing involves risk. RootFund Collective is designed for educational and community-based crowdfunding access.

        </div>

    </footer>


</body>

</html>