<!DOCTYPE html>
<html lang="en">

<head>
  <!-- Google tag (gtag.js) -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=G-46ZK0JF0TS"></script>
  <script>
    window.dataLayer = window.dataLayer || [];

    function gtag() {
      dataLayer.push(arguments);
    }
    gtag('js', new Date());

    gtag('config', 'G-46ZK0JF0TS');
  </script>
  <title>Muttr - Speak Freely in Supportive Communities</title>
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <meta http-equiv="expires" content="0" />
  <meta name="description"
        content="Join compassionate communities on Muttr. Well-being focused platform with encrypted data, anonymous posting, and communities for trading, wellness, and faith." />
  <meta name="keywords"
        content="kindness community, well-being platform, encrypted data, anonymous posting, trading community, faith community, wellness support, speak freely, personal growth, compassion" />
  <meta name="robots" content="noodp,noydir" />
  <meta name="google-site-verification" content="p2U4PXD4Un06jzFqz30x_1orWLYv2OLSEOcFjeXUsuc" />
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <meta http-equiv="content-language" content="en" />

  <script src="https://cdn.tailwindcss.com"></script>
  <script src="js/tailwind.js"></script>
  <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7222695323211127"
          crossorigin="anonymous"></script>
  <link rel="icon" type="image/x-icon" href="/favicon.ico">
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css2?family=Lilita+One&family=Varela+Round&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">

  <style>
    .floating {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .fade-in {
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .glow-text {
      text-shadow: 0 0 20px rgba(123, 117, 235, 0.6);
    }

    .card-hover {
      transition: all 0.3s ease;
    }

    .card-hover:hover {
      transform: scale(1.05);
    }
  </style>
</head>

<body class="bg-slate-950 w-screen min-h-screen overflow-x-hidden font-body">

  <!-- Hero Section -->
  <div class="relative w-screen bg-gradient-to-br from-primary-darker via-primary-dark to-primary-base overflow-hidden">
    <div class="relative z-10 flex flex-col items-center mx-auto max-w-7xl px-6 pb-32">
      <!-- Header -->
      <header class="w-full py-8">
        <div class="flex justify-between items-center">
          <a href="/" aria-label="Muttr Home" class="flex items-center space-x-3">
            <img src="muttr_logo_white.svg" alt="Muttr.com" class="w-12 h-12">
          </a>

          <nav class="hidden md:flex space-x-8">
            <a href="#communities" class="text-white/80 hover:text-white transition-all duration-300 font-medium">Communities</a>
            <a href="#privacy" class="text-white/80 hover:text-white transition-all duration-300 font-medium">Privacy</a>
            <a href="#mission" class="text-white/80 hover:text-white transition-all duration-300 font-medium">Mission</a>
          </nav>
        </div>
      </header>

      <!-- Hero Content -->
      <div class="grid lg:grid-cols-2 gap-12 items-center mt-16">
        <!-- Left Column - Text -->
        <div class="text-center lg:text-left fade-in">
          <h1 class="font-display text-5xl sm:text-6xl lg:text-7xl text-white leading-tight mb-8">
            <span class="block glow-text">Speak freely.</span>
            <span class="block glow-text">Be mindful.</span>
            <span class="block glow-text">Be you.</span>
          </h1>

          <p class="text-xl sm:text-2xl text-primary-lightest mb-8 leading-relaxed">
            Join communities where venting becomes healing, support leads to solutions, and your voice creates meaningful connections.
          </p>

          <div class="flex flex-col sm:flex-row gap-4 justify-center lg:justify-start">
            <a href="https://forms.gle/v8U3nfBvwhUZHX1f8"
               class="bg-white text-primary-dark font-bold px-6 py-4 rounded-xl text-lg transition-all transform hover:scale-105 shadow-lg hover:shadow-primary-base/30"
               aria-label="Join early access">
              <i class="fa-solid fa-heart mr-1"></i>
              GET NOTIFIED
            </a>

            <a href="#communities"
               class="border-2 border-white/50 text-white font-bold px-6 py-4 rounded-xl text-lg transition-all hover:bg-white/10"
               aria-label="Explore communities">
              <i class="fa-solid fa-users mr-1"></i>
              Explore Communities
            </a>
          </div>
        </div>

        <!-- Right Column - Mascot -->
        <div class="text-center lg:text-right">
          <img src="./images/mascot.png"
               alt="Muttr community mascot supporting mental health"
               class="w-80 sm:w-96 lg:w-full max-w-lg mx-auto floating">
        </div>
      </div>
    </div>
  </div>

  <!-- Privacy & Data Section -->
  <section id="privacy" class="py-20 bg-default-dark relative">
    <div class="absolute inset-0 bg-gradient-to-r from-primary-darker/20 to-primary-dark/20"></div>
    <div class="relative z-10 max-w-6xl mx-auto px-6">
      <div class="grid lg:grid-cols-2 gap-16 items-center">
        <!-- Image -->
        <div class="order-2 lg:order-1 text-center">
          <img src="./images/mascot_laptop.png"
               alt="Privacy focused platform - your voice not your data"
               class="w-full max-w-md mx-auto">
        </div>

        <!-- Content -->
        <div class="order-1 lg:order-2">
          <h2 class="text-4xl sm:text-5xl font-display text-white mb-8 glow-text">
            We're all about your voice, not your data.
          </h2>
          <div class="space-y-6 text-lg text-primary-lightest leading-relaxed">
            <p>
              Your conversations are <strong class="text-primary-light">end-to-end encrypted</strong>. We never sell your information.
              Your privacy isn't just a feature—it's our foundation.
            </p>
            <p>
              Express yourself authentically in communities that understand you. Whether you're sharing trading insights,
              wellness journeys, or faith experiences, your data remains yours.
            </p>
            <div class="flex items-center space-x-4 pt-4">
              <div class="flex items-center text-success-base">
                <i class="fas fa-lock mr-2"></i>
                <span class="font-medium">Encrypted</span>
              </div>
              <div class="flex items-center text-success-base">
                <i class="fas fa-shield-alt mr-2"></i>
                <span class="font-medium">Never Sold</span>
              </div>
              <div class="flex items-center text-success-base">
                <i class="fas fa-user-secret mr-2"></i>
                <span class="font-medium">Anonymous Option</span>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>

  <!-- Communities Section -->
  <section id="communities" class="py-20 bg-slate-950">
    <div class="max-w-6xl mx-auto px-6">
      <div class="text-center mb-16">
        <h2 class="text-5xl sm:text-6xl font-display text-white mb-6 glow-text">
          Find Your Tribe
        </h2>
        <p class="text-xl text-primary-lightest max-w-4xl mx-auto leading-relaxed mb-8">
          Join communities built around shared experiences, mutual support, and genuine connection.
          Every community prioritizes kindness, well-being, and personal growth.
        </p>
        <p class="text-lg text-primary-light italic">
          More tribes launching as our community grows—your voice helps shape what comes next.
        </p>
      </div>

      <div class="max-w-4xl mx-auto">
        <div class="bg-gradient-to-br from-primary-base/10 to-primary-light/5 border border-primary-base/20 rounded-2xl p-12 text-center">
          <div class="w-24 h-24 mx-auto mb-8 bg-gradient-to-br from-primary-light to-primary-base rounded-full flex items-center justify-center">
            <i class="fas fa-users text-4xl text-white"></i>
          </div>

          <h3 class="text-3xl font-bold text-white mb-6 font-display">Community-Driven Connection</h3>

          <p class="text-lg text-primary-lightest leading-relaxed mb-8 max-w-2xl mx-auto">
            Muttr 2.0 centers around curated communities where like-minded individuals come together to share, support, and grow.
            Whether you're seeking advice, sharing experiences, or finding encouragement, you'll discover tribes that truly understand your journey.
          </p>

          <div class="grid md:grid-cols-3 gap-6 text-center">
            <div>
              <i class="fas fa-heart text-2xl text-primary-base mb-3"></i>
              <h4 class="font-bold text-white mb-2">Authentic Support</h4>
              <p class="text-sm text-primary-lightest">Real people, real conversations, real solutions</p>
            </div>
            <div>
              <i class="fas fa-seedling text-2xl text-primary-base mb-3"></i>
              <h4 class="font-bold text-white mb-2">Personal Growth</h4>
              <p class="text-sm text-primary-lightest">Transform challenges into opportunities for growth</p>
            </div>
            <div>
              <i class="fas fa-shield-alt text-2xl text-primary-base mb-3"></i>
              <h4 class="font-bold text-white mb-2">Safe Spaces</h4>
              <p class="text-sm text-primary-lightest">Moderated environments built on trust and respect</p>
            </div>
          </div>

          <div class="mt-8 pt-6 border-t border-primary-base/20">
            <p class="text-primary-light font-medium">
              <i class="fas fa-lightbulb mr-2"></i>
              Communities launching soon - be part of shaping what we build together
            </p>
          </div>
        </div>
      </div>
    </div>
  </section>

  <!-- Mission Section -->
  <section id="mission" class="py-20 bg-gradient-to-br from-primary-darker/50 to-primary-dark/50">
    <div class="max-w-5xl mx-auto px-6 text-center">
      <h2 class="text-4xl sm:text-5xl font-display text-white mb-8 glow-text">
        Well-Being First. Growth Always.
      </h2>
      <div class="space-y-8 text-lg text-primary-lightest leading-relaxed">
        <p class="text-xl">
          Since 2009, Muttr has been a sanctuary for authentic expression. Now we're evolving into something even more powerful—
          <strong class="text-primary-light">communities where venting leads to healing, support creates solutions, and every voice contributes to
            collective wisdom</strong>.
        </p>

        <div class="grid md:grid-cols-3 gap-8 mt-12">
          <div class="text-center">
            <i class="fas fa-heart text-4xl text-primary-base mb-4"></i>
            <h3 class="text-xl font-bold text-white mb-2 font-display">Well-Being Focus</h3>
            <p class="text-primary-lightest">Every feature designed with emotional wellness and personal growth in mind</p>
          </div>
          <div class="text-center">
            <i class="fas fa-user-friends text-4xl text-primary-base mb-4"></i>
            <h3 class="text-xl font-bold text-white mb-2 font-display">Genuine Community</h3>
            <p class="text-primary-lightest">Real connections with people who share your values and journey</p>
          </div>
          <div class="text-center">
            <i class="fas fa-lightbulb text-4xl text-primary-base mb-4"></i>
            <h3 class="text-xl font-bold text-white mb-2 font-display">Solution-Focused</h3>
            <p class="text-primary-lightest">Vent your challenges and discover practical paths forward together</p>
          </div>
        </div>

        <div class="bg-gradient-to-r from-primary-base/20 to-primary-light/10 border border-primary-light/30 rounded-xl p-8 mt-12">
          <h3 class="text-2xl font-bold text-white mb-4 font-display">Why We're Building Better Communities</h3>
          <div class="space-y-4 text-primary-lightest">
            <p>
              After 15 years of serving our community, we've learned that the most meaningful conversations happen when people feel truly safe and
              connected.
              That's why Muttr 2.0 requires membership—not to exclude, but to build deeper trust and stronger support networks.
            </p>
            <p>
              <strong class="text-primary-light">For our returning family:</strong> Your voice has always mattered here. Now we're creating an even
              safer space where
              you can continue being authentic while discovering communities that truly understand your journey. You can still post anonymously
              whenever you choose.
            </p>
            <div class="flex flex-wrap gap-4 mt-6">
              <span class="bg-success-base/20 text-success-light px-3 py-1 rounded-full text-sm">
                <i class="fas fa-shield mr-1"></i>Enhanced Safety
              </span>
              <span class="bg-primary-base/20 text-primary-light px-3 py-1 rounded-full text-sm">
                <i class="fas fa-users mr-1"></i>Deeper Connections
              </span>
              <span class="bg-warning-base/20 text-warning-light px-3 py-1 rounded-full text-sm">
                <i class="fas fa-heart mr-1"></i>Better Support
              </span>
            </div>
          </div>
        </div>

        <p class="text-primary-light font-medium text-xl mt-12">
          From reaching 500K monthly visitors to building intimate communities—we're creating spaces where every voice matters, every struggle finds
          support, and every challenge discovers solutions.
        </p>
      </div>
    </div>
  </section>

  <!-- CTA Section -->
  <section class="py-20 bg-gradient-to-br from-primary-darker via-primary-dark to-primary-base relative overflow-hidden">
    <div class="absolute inset-0">
      <div class="absolute top-10 right-20 w-64 h-64 bg-white/5 rounded-full blur-3xl"></div>
      <div class="absolute bottom-20 left-16 w-80 h-80 bg-primary-base/10 rounded-full blur-3xl"></div>
    </div>

    <div class="relative z-10 max-w-4xl mx-auto text-center px-6">
      <h2 class="text-5xl sm:text-6xl font-display text-white mb-8 glow-text">
        Ready to Belong?
      </h2>
      <p class="text-xl text-primary-lightest mb-12 leading-relaxed max-w-2xl mx-auto">
        Be among the first to know when Muttr 2.0 launches. Share your input and help shape the communities we build together.
      </p>

      <div class="flex flex-col sm:flex-row gap-6 justify-center items-center">
        <a href="https://forms.gle/v8U3nfBvwhUZHX1f8"
           class="bg-white text-primary-dark font-bold px-10 py-5 rounded-xl text-xl transition-all transform hover:scale-105 shadow-2xl hover:shadow-primary-base/30"
           aria-label="Join early access community">
          <i class="fas fa-heart mr-1"></i>
          GET NOTIFIED
        </a>

        <a href="https://x.com/justventonmuttr"
           class="border-2 border-white/50 text-white font-bold px-8 py-4 rounded-xl text-lg transition-all hover:bg-white/10"
           aria-label="Follow updates on X">
          <i class="fa-brands fa-x-twitter mr-2"></i>
          Stay Connected
        </a>
      </div>
    </div>
  </section>

  <!-- Footer -->
  <footer class="bg-default-dark text-white py-16">
    <div class="max-w-6xl mx-auto px-6">
      <div class="grid md:grid-cols-3 gap-12">
        <!-- Brand -->
        <div>
          <div class="flex items-center mb-6">
            <img src="muttr_logo_white.svg" alt="Muttr.com" class="w-12 h-12 mr-4">
          </div>
          <p class="text-primary-lightest leading-relaxed">
            Building communities where kindness flourishes, privacy is protected, and authentic connections grow.
          </p>
        </div>

        <!-- Links -->
        <div>
          <h4 class="text-lg mb-4 text-primary-light font-display">Connect</h4>
          <div class="space-y-3">
            <a href="https://x.com/justventonmuttr" class="block text-primary-lightest hover:text-white transition-colors">
              <i class="fa-brands fa-x-twitter mr-2"></i>Follow Updates
            </a>
            <a href="https://tradersarc.com" class="block text-primary-lightest hover:text-white transition-colors">
              <i class="fas fa-chart-line mr-2"></i>TradersArc.com
            </a>
            <a href="https://forms.gle/v8U3nfBvwhUZHX1f8" class="block text-primary-lightest hover:text-white transition-colors">
              <i class="fas fa-envelope mr-2"></i>Get Notified
            </a>
          </div>
        </div>

        <!-- Values -->
        <div>
          <h4 class="text-lg mb-4 text-primary-light font-display">Our Promise</h4>
          <div class="space-y-2 text-sm text-primary-lightest">
            <div class="flex items-center">
              <i class="fas fa-lock text-success-base mr-2"></i>
              <span>End-to-end encryption</span>
            </div>
            <div class="flex items-center">
              <i class="fas fa-ban text-success-base mr-2"></i>
              <span>Never sell your data</span>
            </div>
            <div class="flex items-center">
              <i class="fas fa-heart text-success-base mr-2"></i>
              <span>Kindness first</span>
            </div>
            <div class="flex items-center">
              <i class="fas fa-users text-success-base mr-2"></i>
              <span>Community-driven</span>
            </div>
          </div>
        </div>
      </div>

      <div class="border-t border-primary-dark/50 mt-12 pt-8 text-center">
        <p class="text-primary-light">
          &copy; 2025 Muttr.com — Building compassionate communities since 2009
        </p>
      </div>
    </div>
  </footer>

</body>

</html>