<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ToddleBits - Capture Your Little One's Big Moments</title>
    
    <!-- Amplitude Analytics -->
    <script src="https://cdn.amplitude.com/script/7b8b9201a3316b4bf38a1839f72a5855.js"></script>
    <script>
        window.amplitude.add(window.sessionReplay.plugin({sampleRate: 1}));
        window.amplitude.init('7b8b9201a3316b4bf38a1839f72a5855', {
            "fetchRemoteConfig": true,
            "autocapture": {
                "attribution": true,
                "fileDownloads": true,
                "formInteractions": true,
                "pageViews": true,
                "sessions": true,
                "elementInteractions": true,
                "networkTracking": true,
                "webVitals": true,
                "frustrationInteractions": true
            }
        });
    </script>
    <meta name="description" content="The beautiful way to track and cherish your baby's milestones. Capture first steps, first words, and every precious moment.">
    <meta name="keywords" content="baby milestone tracker, baby app, parenting app, first steps, baby memories">
    
    <!-- Open Graph -->
    <meta property="og:title" content="ToddleBits - Baby Milestone Tracker">
    <meta property="og:description" content="Capture your little one's big moments. Track milestones, save memories, cherish forever.">
    <meta property="og:type" content="website">
    <meta property="og:url" content="https://toddlebits.com">
    <meta property="og:image" content="https://toddlebits.com/icon.png">
    <meta property="og:image:width" content="1024">
    <meta property="og:image:height" content="1024">
    <meta property="og:image:alt" content="ToddleBits App Icon">
    
    <!-- X (Twitter) Card -->
    <meta name="twitter:card" content="summary">
    <meta name="twitter:title" content="ToddleBits - Baby Milestone Tracker">
    <meta name="twitter:description" content="Capture your little one's big moments. Track milestones, save memories, cherish forever.">
    <meta name="twitter:image" content="https://toddlebits.com/icon.png">
    
    <!-- Favicon -->
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon.png">
    <link rel="icon" type="image/png" sizes="192x192" href="/icon.png">
    <link rel="apple-touch-icon" href="/icon.png">
    
    <!-- Fonts -->
    <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=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@500;600;700&display=swap" rel="stylesheet">
    
    <style>
        :root {
            --primary: #19b3e6;
            --primary-light: #4cc9f0;
            --primary-dark: #0d8ab8;
            --accent: #f472b6;
            --accent-light: #f9a8d4;
            --bg-dark: #111d21;
            --bg-darker: #0a1214;
            --bg-card: #1a262a;
            --bg-card-hover: #243338;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --gradient-1: linear-gradient(135deg, #19b3e6 0%, #4cc9f0 50%, #f472b6 100%);
            --gradient-2: linear-gradient(135deg, #0d8ab8 0%, #19b3e6 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Nunito', -apple-system, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Animated background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(25, 179, 230, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 70%),
                var(--bg-dark);
        }
        
        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(20px);
            background: rgba(17, 29, 33, 0.8);
            border-bottom: 1px solid rgba(25, 179, 230, 0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 2.2rem;
        }
        
        .logo span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background: var(--gradient-2);
            color: white !important;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(25, 179, 230, 0.3);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 40px 80px;
            position: relative;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-content h1 {
            font-family: 'Quicksand', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        
        .hero-content h1 .highlight {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        .hero-badges {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .store-badge {
            height: 54px;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .store-badge:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .store-badge-wrapper {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #000;
            padding: 12px 24px;
            border-radius: 12px;
            border: 1px solid #333;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .store-badge-wrapper:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: var(--primary);
        }
        
        .store-badge-wrapper svg {
            width: 28px;
            height: 28px;
        }
        
        .store-badge-wrapper .text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .store-badge-wrapper .text small {
            font-size: 0.7rem;
            opacity: 0.8;
        }
        
        .store-badge-wrapper .text span {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Phone Mockup */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }
        
        .phone-mockup {
            position: relative;
            width: 300px;
            height: 620px;
            background: linear-gradient(145deg, #2a3a40 0%, #1a262a 100%);
            border-radius: 45px;
            padding: 12px;
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            animation: phoneFloat 6s ease-in-out infinite;
        }
        
        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            border-radius: 35px;
            overflow: hidden;
            position: relative;
        }
        
        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 30px;
            background: #1a262a;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }
        
        .phone-content {
            padding: 50px 20px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
        }
        
        .phone-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .phone-header .rabbit {
            font-size: 3rem;
            margin-bottom: 8px;
        }
        
        .phone-header h3 {
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .milestone-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid rgba(25, 179, 230, 0.2);
        }
        
        .milestone-card .emoji {
            font-size: 2rem;
            margin-bottom: 8px;
        }
        
        .milestone-card h4 {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        
        .milestone-card p {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        
        .milestone-card .date {
            font-size: 0.7rem;
            color: var(--primary);
            margin-top: 8px;
        }
        
        /* Floating elements */
        .floating-element {
            position: absolute;
            animation: floatAround 8s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: -60px;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            right: -80px;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 10%;
            left: -40px;
            animation-delay: 4s;
        }
        
        @keyframes floatAround {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }
        
        .float-card {
            background: var(--bg-card);
            padding: 16px 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(25, 179, 230, 0.2);
        }
        
        .float-card .icon {
            font-size: 1.5rem;
        }
        
        .float-card .text {
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        /* Features Section */
        .features {
            padding: 120px 40px;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
        }
        
        .section-tag {
            display: inline-block;
            background: rgba(25, 179, 230, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .section-header h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: var(--bg-card);
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid rgba(25, 179, 230, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(25, 179, 230, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 120px 40px;
            background: linear-gradient(180deg, transparent 0%, rgba(25, 179, 230, 0.03) 50%, transparent 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 24px;
            border: 1px solid rgba(25, 179, 230, 0.1);
        }
        
        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }
        
        .testimonial-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }
        
        .author-info p {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        
        /* CTA Section */
        .cta {
            padding: 120px 40px;
            text-align: center;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 179, 230, 0.1) 100%);
            padding: 80px 60px;
            border-radius: 32px;
            border: 1px solid rgba(25, 179, 230, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .cta-container::before {
            content: '🐰';
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 4rem;
            opacity: 0.1;
        }
        
        .cta h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        .cta .hero-badges {
            justify-content: center;
        }
        
        /* Footer */
        footer {
            padding: 60px 40px;
            border-top: 1px solid rgba(25, 179, 230, 0.1);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }
        
        .footer-brand .logo {
            margin-bottom: 20px;
        }
        
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 300px;
        }
        
        .footer-column h4 {
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .footer-column a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(25, 179, 230, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 16px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content p {
                margin: 0 auto 40px;
            }
            
            .hero-badges {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-visual {
                order: -1;
            }
            
            .phone-mockup {
                width: 260px;
                height: 540px;
            }
            
            .floating-element {
                display: none;
            }
            
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero {
                padding: 100px 20px 60px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-badges {
                flex-direction: column;
                align-items: center;
            }
            
            .store-badge-wrapper {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .features, .testimonials, .cta {
                padding: 80px 20px;
            }
            
            .feature-card {
                padding: 30px 24px;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .cta-container {
                padding: 40px 24px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .footer-brand p {
                margin: 0 auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        /* Extra small screens */
        @media (max-width: 480px) {
            .logo {
                font-size: 1.4rem;
            }
            
            .logo-icon {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 90px 16px 50px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .phone-mockup {
                width: 220px;
                height: 460px;
            }
            
            .phone-content {
                padding: 40px 14px 14px;
            }
            
            .milestone-card {
                padding: 12px;
            }
            
            .milestone-card h4 {
                font-size: 0.85rem;
            }
            
            .stat-number {
                font-size: 1.6rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 0.95rem;
            }
            
            .feature-icon {
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
            }
            
            .feature-card h3 {
                font-size: 1.1rem;
            }
            
            .testimonial-card {
                padding: 24px 20px;
            }
            
            .cta h2 {
                font-size: 1.5rem;
            }
            
            .cta p {
                font-size: 1rem;
            }
        }
        
        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }
    </style>
</head>
<body>
    <div class="bg-gradient"></div>
    
    <!-- Floating Particles -->
    <div class="particles">
        <div class="particle" style="left: 10%; animation-duration: 12s;"></div>
        <div class="particle" style="left: 30%; animation-duration: 18s; animation-delay: 2s;"></div>
        <div class="particle" style="left: 50%; animation-duration: 15s; animation-delay: 4s;"></div>
        <div class="particle" style="left: 70%; animation-duration: 20s; animation-delay: 1s;"></div>
        <div class="particle" style="left: 90%; animation-duration: 14s; animation-delay: 3s;"></div>
    </div>
    
    <!-- Navigation -->
    <nav>
        <a href="/" class="logo">
            <span class="logo-icon">🐰</span>
            <span>ToddleBits</span>
        </a>
        <div class="nav-links">
            <a href="#features">Features</a>
            <a href="#testimonials">Reviews</a>
            <a href="/privacy-policy">Privacy</a>
            <a href="#download" class="nav-cta">Download Free</a>
        </div>
        <button class="mobile-menu-btn" aria-label="Menu">
            <span></span>
            <span></span>
            <span></span>
        </button>
    </nav>
    
    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-container">
            <div class="hero-content">
                <h1>
                    Capture Your<br>
                    <span class="highlight">Little One's</span><br>
                    Big Moments
                </h1>
                <p>
                    The beautiful way to track and cherish your baby's milestones. 
                    From first smiles to first steps — never miss a moment.
                </p>
                <div class="hero-badges">
                    <a href="https://apps.apple.com/app/toddlebits/id6757017869?utm_source=website&utm_medium=hero&utm_campaign=download" class="store-badge-wrapper" target="_blank" data-amplitude-track="download_clicked" data-store="app_store" data-location="hero">
                        <svg viewBox="0 0 24 24" fill="currentColor">
                            <path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/>
                        </svg>
                        <div class="text">
                            <small>Download on the</small>
                            <span>App Store</span>
                        </div>
                    </a>
                    <a href="https://play.google.com/store/apps/details?id=com.saiworks.toddlebits&utm_source=website&utm_medium=hero&utm_campaign=download" class="store-badge-wrapper" target="_blank" data-amplitude-track="download_clicked" data-store="play_store" data-location="hero">
                        <svg viewBox="0 0 24 24" fill="currentColor">
                            <path d="M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.6 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.9 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z"/>
                        </svg>
                        <div class="text">
                            <small>Get it on</small>
                            <span>Google Play</span>
                        </div>
                    </a>
                </div>
                <div class="hero-stats">
                    <div class="stat">
                        <div class="stat-number">10K+</div>
                        <div class="stat-label">Happy Parents</div>
                    </div>
                    <div class="stat">
                        <div class="stat-number">50K+</div>
                        <div class="stat-label">Milestones Tracked</div>
                    </div>
                    <div class="stat">
                        <div class="stat-number">4.9★</div>
                        <div class="stat-label">App Rating</div>
                    </div>
                </div>
            </div>
            
            <div class="hero-visual">
                <div class="floating-element">
                    <div class="float-card">
                        <span class="icon">👶</span>
                        <span class="text">First steps!</span>
                    </div>
                </div>
                <div class="floating-element">
                    <div class="float-card">
                        <span class="icon">📸</span>
                        <span class="text">Memory saved</span>
                    </div>
                </div>
                <div class="floating-element">
                    <div class="float-card">
                        <span class="icon">🎉</span>
                        <span class="text">New milestone!</span>
                    </div>
                </div>
                
                <div class="phone-mockup">
                    <div class="phone-screen">
                        <div class="phone-notch"></div>
                        <div class="phone-content">
                            <div class="phone-header">
                                <div class="rabbit">🐰</div>
                                <h3>Emma's Milestones</h3>
                            </div>
                            <div class="milestone-card">
                                <div class="emoji">👣</div>
                                <h4>First Steps!</h4>
                                <p>She took 5 steps all by herself today!</p>
                                <div class="date">Today, 10:30 AM</div>
                            </div>
                            <div class="milestone-card">
                                <div class="emoji">🗣️</div>
                                <h4>Said "Mama"</h4>
                                <p>Clear as day, she said it!</p>
                                <div class="date">Yesterday</div>
                            </div>
                            <div class="milestone-card">
                                <div class="emoji">🦷</div>
                                <h4>First Tooth</h4>
                                <p>Bottom front tooth appeared</p>
                                <div class="date">Dec 20</div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- Features Section -->
    <section class="features" id="features">
        <div class="section-header">
            <span class="section-tag">Features</span>
            <h2>Everything You Need to Treasure Every Moment</h2>
            <p>Designed by parents, for parents. Simple, beautiful, and packed with love.</p>
        </div>
        
        <div class="features-grid">
            <div class="feature-card">
                <div class="feature-icon">📸</div>
                <h3>Capture Moments</h3>
                <p>Take photos and videos directly in the app. Add notes, tags, and watch your timeline grow.</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon">📊</div>
                <h3>Track Development</h3>
                <p>Follow your child's growth with milestone checklists based on pediatric guidelines.</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon">🤖</div>
                <h3>AI Insights</h3>
                <p>Get personalized insights and suggestions based on your child's unique development journey.</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon">👨‍👩‍👧</div>
                <h3>Family Sharing</h3>
                <p>Invite grandparents and family members to share in the joy of watching your little one grow.</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon">🔒</div>
                <h3>Private & Secure</h3>
                <p>Your memories are encrypted and never shared. Your family's privacy is our priority.</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon">📅</div>
                <h3>Smart Reminders</h3>
                <p>Never miss a vaccination, checkup, or milestone with gentle, helpful reminders.</p>
            </div>
        </div>
    </section>
    
    <!-- Testimonials -->
    <section class="testimonials" id="testimonials">
        <div class="section-header">
            <span class="section-tag">Reviews</span>
            <h2>Loved by Parents Everywhere</h2>
            <p>Join thousands of happy families already using ToddleBits.</p>
        </div>
        
        <div class="testimonials-grid">
            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">"Finally an app that makes tracking milestones fun! I love scrolling through Emma's timeline. It's like a digital scrapbook."</p>
                <div class="testimonial-author">
                    <div class="author-avatar">👩</div>
                    <div class="author-info">
                        <h4>Sarah M.</h4>
                        <p>Mom of 1</p>
                    </div>
                </div>
            </div>
            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">"The AI insights are amazing. It noticed patterns I missed and gave me peace of mind about my son's development."</p>
                <div class="testimonial-author">
                    <div class="author-avatar">👨</div>
                    <div class="author-info">
                        <h4>Michael T.</h4>
                        <p>Dad of 2</p>
                    </div>
                </div>
            </div>
            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">"Grandma loves getting updates! The family sharing feature keeps everyone in the loop without endless group texts."</p>
                <div class="testimonial-author">
                    <div class="author-avatar">👩</div>
                    <div class="author-info">
                        <h4>Lisa K.</h4>
                        <p>Mom of 3</p>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- CTA Section -->
    <section class="cta" id="download">
        <div class="cta-container">
            <h2>Start Capturing Memories Today</h2>
            <p>Free to download. No credit card required. Your memories, always private.</p>
            <div class="hero-badges">
                <a href="https://apps.apple.com/app/toddlebits/id6757017869?utm_source=website&utm_medium=cta&utm_campaign=download" class="store-badge-wrapper" target="_blank" data-amplitude-track="download_clicked" data-store="app_store" data-location="cta">
                    <svg viewBox="0 0 24 24" fill="currentColor">
                        <path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/>
                    </svg>
                    <div class="text">
                        <small>Download on the</small>
                        <span>App Store</span>
                    </div>
                </a>
                <a href="https://play.google.com/store/apps/details?id=com.saiworks.toddlebits&utm_source=website&utm_medium=cta&utm_campaign=download" class="store-badge-wrapper" target="_blank" data-amplitude-track="download_clicked" data-store="play_store" data-location="cta">
                    <svg viewBox="0 0 24 24" fill="currentColor">
                        <path d="M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.6 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.9 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z"/>
                    </svg>
                    <div class="text">
                        <small>Get it on</small>
                        <span>Google Play</span>
                    </div>
                </a>
            </div>
        </div>
    </section>
    
    <!-- Footer -->
    <footer>
        <div class="footer-container">
            <div class="footer-brand">
                <a href="/" class="logo">
                    <span class="logo-icon">🐰</span>
                    <span>ToddleBits</span>
                </a>
                <p>Capturing your little one's big moments, one milestone at a time.</p>
            </div>
            <div class="footer-column">
                <h4>Product</h4>
                <a href="#features">Features</a>
                <a href="#testimonials">Reviews</a>
                <a href="#download">Download</a>
            </div>
            <div class="footer-column">
                <h4>Legal</h4>
                <a href="/privacy-policy">Privacy Policy</a>
                <a href="/terms">Terms of Service</a>
            </div>
            <div class="footer-column">
                <h4>Support</h4>
                <a href="/cdn-cgi/l/email-protection#087b7d7878677a7c487c676c6c646d6a617c7b266b6765">Contact Us</a>
                <a href="/cdn-cgi/l/email-protection#38484a514e595b41784c575c5c545d5a514c4b165b5755">Privacy Inquiries</a>
            </div>
        </div>
        <div class="footer-bottom">
            <p>&copy; 2026 SaiWorks. All rights reserved.</p>
            <div class="social-links">
                <a href="#" aria-label="Twitter">𝕏</a>
                <a href="#" aria-label="Instagram">📷</a>
                <a href="#" aria-label="Facebook">f</a>
            </div>
        </div>
    </footer>

    <!-- Custom Analytics Tracking -->
    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
        // Track download button clicks with detailed attribution
        document.addEventListener('DOMContentLoaded', function() {
            // Get UTM parameters from URL
            const urlParams = new URLSearchParams(window.location.search);
            const utmSource = urlParams.get('utm_source') || 'direct';
            const utmMedium = urlParams.get('utm_medium') || 'none';
            const utmCampaign = urlParams.get('utm_campaign') || 'none';
            
            // Set user properties for attribution
            if (window.amplitude && utmSource !== 'direct') {
                const identify = new window.amplitude.Identify();
                identify.setOnce('first_touch_source', utmSource);
                identify.setOnce('first_touch_medium', utmMedium);
                identify.setOnce('first_touch_campaign', utmCampaign);
                identify.set('last_touch_source', utmSource);
                identify.set('last_touch_medium', utmMedium);
                identify.set('last_touch_campaign', utmCampaign);
                window.amplitude.identify(identify);
            }
            
            // Track download clicks
            const downloadLinks = document.querySelectorAll('[data-amplitude-track="download_clicked"]');
            downloadLinks.forEach(function(link) {
                link.addEventListener('click', function(e) {
                    const store = this.getAttribute('data-store');
                    const location = this.getAttribute('data-location');
                    
                    if (window.amplitude) {
                        window.amplitude.track('download_clicked', {
                            store: store,
                            button_location: location,
                            referrer_source: utmSource,
                            referrer_medium: utmMedium,
                            referrer_campaign: utmCampaign,
                            page_url: window.location.href
                        });
                    }
                });
            });
            
            // Track page view with attribution
            if (window.amplitude) {
                window.amplitude.track('website_visited', {
                    page: 'home',
                    referrer_source: utmSource,
                    referrer_medium: utmMedium,
                    referrer_campaign: utmCampaign,
                    referrer: document.referrer || 'direct'
                });
            }
        });
    </script>
</body>
</html>

