DreamWeaving

<style>
    /* COMPLETE CSS RESET - Prevents WordPress styles from affecting this page */
    #dream-weaver-container * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        border: 0;
        font-weight: inherit;
        font-style: inherit;
        font-size: 100%;
        vertical-align: baseline;
    }

    #dream-weaver-container {
        --primary: #6366f1;
        --accent: #f59e0b;
        --warm-bg: #faf8f3;
        --text-dark: #1f2937;
        --text-muted: #6b7280;
        --border: #e5e7eb;
    }

    /* Main Container */
    #dream-weaver-container {
        width: 100%;
        max-width: 100%;
        font-family: 'Inter', sans-serif;
        background: white;
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Navigation */
    #dream-weaver-container nav {
        position: relative;
        padding: 1.5rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid var(--border);
    }

    #dream-weaver-container .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.5px;
    }

    #dream-weaver-container .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
    }

    #dream-weaver-container .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: inline-block;
    }

    #dream-weaver-container .nav-links a:hover {
        color: var(--primary);
    }

    #dream-weaver-container .btn-nav {
        padding: 0.7rem 1.8rem;
        border-radius: 50px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    #dream-weaver-container .btn-nav:hover {
        background: #4f46e5;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    }

    /* Hero Section */
    #dream-weaver-container .hero {
        padding: 6rem 5% 5rem;
        background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #f0f9ff 100%);
        min-height: calc(100vh - 60px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #dream-weaver-container .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3rem, 8vw, 5.5rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        letter-spacing: -1px;
        color: var(--text-dark);
        max-width: 1000px;
    }

    #dream-weaver-container .hero p {
        font-size: clamp(1.1rem, 2.5vw, 1.35rem);
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto 3rem;
        line-height: 1.7;
        font-weight: 400;
    }

    #dream-weaver-container .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 5rem;
    }

    #dream-weaver-container .btn-primary {
        padding: 1rem 2.8rem;
        border-radius: 50px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
        display: inline-block;
    }

    #dream-weaver-container .btn-primary:hover {
        background: #4f46e5;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    }

    #dream-weaver-container .btn-secondary {
        padding: 1rem 2.8rem;
        border-radius: 50px;
        background: white;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid var(--border);
        cursor: pointer;
        font-size: 1rem;
        display: inline-block;
    }

    #dream-weaver-container .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: #f9fafb;
    }

    #dream-weaver-container .hero-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 1;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8rem;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    /* Sections */
    #dream-weaver-container section {
        padding: 6rem 5%;
    }

    #dream-weaver-container section.light-bg {
        background: var(--warm-bg);
    }

    #dream-weaver-container .section-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    #dream-weaver-container .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
        color: var(--text-dark);
    }

    #dream-weaver-container .section-header p {
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.8;
        font-weight: 400;
    }

    /* Steps */
    #dream-weaver-container .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    #dream-weaver-container .step {
        padding: 3rem 2.5rem;
        background: white;
        border: 1px solid var(--border);
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    #dream-weaver-container .step:hover {
        border-color: var(--primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    #dream-weaver-container .step-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    #dream-weaver-container .step h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    #dream-weaver-container .step p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
    }

    /* Features Grid */
    #dream-weaver-container .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    #dream-weaver-container .feature {
        padding: 2.5rem;
        background: white;
        border: 1px solid var(--border);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    #dream-weaver-container .feature:hover {
        border-color: var(--primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    #dream-weaver-container .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    #dream-weaver-container .feature h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    #dream-weaver-container .feature p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
    }

    /* Story Showcase */
    #dream-weaver-container .story-showcase {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
        border-radius: 25px;
        border: 1px solid rgba(99, 102, 241, 0.1);
        text-align: center;
    }

    #dream-weaver-container .story-showcase h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    #dream-weaver-container .story-text {
        font-size: 1.1rem;
        line-height: 1.9;
        color: var(--text-dark);
        font-style: italic;
        margin-bottom: 2rem;
    }

    #dream-weaver-container .story-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    #dream-weaver-container .story-cta:hover {
        gap: 1rem;
    }

    /* Premium Section */
    #dream-weaver-container .premium-showcase {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem;
        background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
        border-radius: 30px;
        color: white;
        text-align: center;
    }

    #dream-weaver-container .premium-showcase h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white;
    }

    #dream-weaver-container .premium-showcase p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    #dream-weaver-container .premium-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    #dream-weaver-container .premium-item {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }

    #dream-weaver-container .premium-item h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: white;
        font-weight: 700;
    }

    #dream-weaver-container .premium-item p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
    }

    #dream-weaver-container .btn-premium {
        padding: 1rem 2.8rem;
        background: white;
        color: var(--primary);
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: inline-block;
    }

    #dream-weaver-container .btn-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Safety/Privacy */
    #dream-weaver-container .two-column {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    #dream-weaver-container .safety-card {
        padding: 3rem 2.5rem;
        background: white;
        border: 1px solid var(--border);
        border-radius: 20px;
        border-left: 5px solid var(--accent);
    }

    #dream-weaver-container .safety-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    #dream-weaver-container .safety-card p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
    }

    /* CTA */
    #dream-weaver-container .cta {
        text-align: center;
        padding: 6rem 5%;
    }

    #dream-weaver-container .cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    #dream-weaver-container .cta p {
        font-size: 1.1rem;
        color: var(--text-muted);
        max-width: 650px;
        margin: 0 auto 2.5rem;
        line-height: 1.8;
    }

    #dream-weaver-container .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer */
    #dream-weaver-container footer {
        text-align: center;
        padding: 3rem 5%;
        background: var(--warm-bg);
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    #dream-weaver-container footer p {
        margin: 0.5rem 0;
    }

    #dream-weaver-container footer a {
        color: var(--text-muted);
        text-decoration: none;
    }

    #dream-weaver-container footer a:hover {
        color: var(--primary);
    }

    /* Scroll reveal */
    #dream-weaver-container .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #dream-weaver-container .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        #dream-weaver-container nav {
            padding: 1rem 5%;
        }

        #dream-weaver-container .nav-links {
            display: none;
        }

        #dream-weaver-container .logo {
            font-size: 1.3rem;
        }

        #dream-weaver-container .btn-nav {
            padding: 0.6rem 1.4rem;
            font-size: 0.8rem;
        }

        #dream-weaver-container .hero {
            padding: 4rem 5% 3rem;
        }

        #dream-weaver-container .hero h1 {
            font-size: 2.2rem;
        }

        #dream-weaver-container .hero-visual {
            margin-top: 2rem;
        }

        #dream-weaver-container section {
            padding: 4rem 5%;
        }

        #dream-weaver-container .section-header {
            margin-bottom: 3rem;
        }

        #dream-weaver-container .steps,
        #dream-weaver-container .features,
        #dream-weaver-container .two-column {
            gap: 1.5rem;
        }

        #dream-weaver-container .premium-showcase {
            padding: 2.5rem;
        }

        #dream-weaver-container .premium-showcase h2 {
            font-size: 1.8rem;
        }
    }
</style>
<!-- Navigation -->
<nav>
    <div class="logo">Dream Weaver</div>
    <ul class="nav-links">
        <li><a href="#how">How It Works</a></li>
        <li><a href="#features">Why Parents Love It</a></li>
        <li><a href="#story">See a Story</a></li>
        <li><a href="#safety">Privacy</a></li>
    </ul>
    <button class="btn-nav">Start Free</button>
</nav>

<!-- Hero -->
<section class="hero">
    <h1>Bedtime Stories Your Child Will Remember</h1>
    <p>Personalized, parent-told tales. No screens. No data collection. Just you, your child, and a little bit of magic every night.</p>

    <div class="hero-buttons">
        <button class="btn-primary">Start Your Free Trial</button>
        <button class="btn-secondary">Learn More</button>
    </div>

    <div class="hero-visual">
        πŸ“šβœ¨
    </div>
</section>

<!-- How It Works -->
<section class="light-bg" id="how">
    <div class="section-header">
        <h2>Three Simple Steps</h2>
        <p>From spark to cherished bedtime ritual</p>
    </div>

    <div class="steps">
        <div class="step reveal">
            <div class="step-icon">πŸŒ™</div>
            <h3>Tell Us About Your Child</h3>
            <p>Share their name, interests, and bedtime. That's all we needβ€”we respect your privacy completely.</p>
        </div>

        <div class="step reveal">
            <div class="step-icon">πŸ“²</div>
            <h3>Receive a Story</h3>
            <p>A brand new, personalized story arrives via text at bedtime. Age-appropriate, whimsical, and ready to share.</p>
        </div>

        <div class="step reveal">
            <div class="step-icon">πŸ’™</div>
            <h3>Read Together</h3>
            <p>You're the voice. You're the connection. Watch your child's imagination come alive as you read their custom adventure.</p>
        </div>
    </div>
</section>

<!-- Features -->
<section id="features">
    <div class="section-header">
        <h2>Why Parents Love Dream Weaver</h2>
        <p>Designed for modern families who value connection</p>
    </div>

    <div class="features">
        <div class="feature reveal">
            <div class="feature-icon">πŸ“΅</div>
            <h3>Screen-Free Bonding</h3>
            <p>Stories arrive on your phone, never your child's. You're the guide, the voice, the magic. The connection is real.</p>
        </div>

        <div class="feature reveal">
            <div class="feature-icon">🎭</div>
            <h3>Perfectly Personalized</h3>
            <p>Every story features your child and reflects their world. Tell us about a new pet, a trip, or a new interest, and we weave it in.</p>
        </div>

        <div class="feature reveal">
            <div class="feature-icon">πŸ”’</div>
            <h3>Privacy First, Always</h3>
            <p>Only a first name. No tracking. No data collection. Your child never interacts with AI. Delete anytime. Your trust matters.</p>
        </div>

        <div class="feature reveal">
            <div class="feature-icon">✨</div>
            <h3>Effortless Magic</h3>
            <p>One text message. No apps. No complexity. It fits perfectly into your bedtime routine, night after night.</p>
        </div>

        <div class="feature reveal">
            <div class="feature-icon">🧠</div>
            <h3>Sparks Real Imagination</h3>
            <p>Stories inspire creativity and wonder, not passive screen time. Your child learns that the best stories come from those who love them.</p>
        </div>

        <div class="feature reveal">
            <div class="feature-icon">πŸ’«</div>
            <h3>Protects the Ritual</h3>
            <p>Bedtime is sacred. Dream Weaver helps you protect that moment and make it unforgettable.</p>
        </div>
    </div>
</section>

<!-- Story Example -->
<section class="light-bg" id="story">
    <div class="section-header">
        <h2>Here's What Your Child Hears</h2>
        <p>Every story is uniquely crafted just for them</p>
    </div>

    <div class="story-showcase reveal">
        <h3>A Sample Story</h3>
        <p class="story-text">"Once upon a time, in a forest where moonlight danced between the trees, there lived a curious little fox named Luna who loved collecting shiny things. One evening, Luna discovered a glowing stone and decided to follow where it led..."</p>
        <a href="#" class="story-cta">Read the full story β†’</a>
    </div>
</section>

<!-- Premium -->
<section>
    <div class="section-header" style="margin-bottom: 2rem;">
        <h2>Unlock More Magic with Premium</h2>
        <p>For parents who want even more customization</p>
    </div>

    <div class="premium-showcase reveal">
        <h2>⭐ Dream Weaver Premium</h2>
        <p>Choose story styles, age ranges, custom touches, and more</p>

        <div class="premium-grid">
            <div class="premium-item">
                <h4>Story Styles</h4>
                <p>Rhyming, Silly, Calm, Adventureβ€”you choose</p>
            </div>
            <div class="premium-item">
                <h4>Age Ranges</h4>
                <p>Tailor for toddlers through elementary school</p>
            </div>
            <div class="premium-item">
                <h4>Custom Elements</h4>
                <p>Add friends' names, pets, real events</p>
            </div>
            <div class="premium-item">
                <h4>On-Demand Stories</h4>
                <p>Up to 4 stories per day, anytime you want</p>
            </div>
            <div class="premium-item">
                <h4>Audio Narration</h4>
                <p>Listen in beautiful character voices</p>
            </div>
            <div class="premium-item">
                <h4>Text Commands</h4>
                <p>Text "NEW", "MORE", or "ADD [idea]" anytime</p>
            </div>
        </div>

        <button class="btn-premium">Upgrade to Premium β€” $9.99/month</button>
    </div>
</section>

<!-- Privacy & Safety -->
<section class="light-bg" id="safety">
    <div class="section-header">
        <h2>Privacy & Safety First</h2>
        <p>Because your family's trust is everything</p>
    </div>

    <div class="two-column">
        <div class="safety-card reveal">
            <h3>πŸ›‘οΈ Story Safety</h3>
            <p>Our AI has built-in safety filters that automatically block harmful content. Every story is whimsical, joyful, and age-appropriate. Your child's safety is our highest priority, always.</p>
        </div>

        <div class="safety-card reveal">
            <h3>πŸ” Privacy Protection</h3>
            <p>Only a first name. No tracking. No hidden data collection. Your child never interacts with AI. You're always in control. Delete your profile and everything is gone instantly.</p>
        </div>
    </div>
</section>

<!-- CTA -->
<section class="cta">
    <h2>Ready to Bring Magic Back to Bedtime?</h2>
    <p>Join families who've transformed their bedtime routine into a cherished ritual of imagination, wonder, and connection.</p>

    <div class="cta-buttons">
        <button class="btn-primary">Create Free Account</button>
        <button class="btn-secondary">View Pricing</button>
    </div>

    <p style="margin-top: 3rem; color: var(--text-muted); font-size: 0.9rem;">πŸ“± Stories delivered via SMS from (833) 564-0781</p>
</section>

<!-- Footer -->
<footer>
    <p>πŸŒ™ Dream Weaver β€” Making bedtime magical, one story at a time.</p>
    <p>Β© 2024 Dream Weaver. <a href="#">Privacy Policy</a> Β· <a href="#">Terms of Service</a></p>
</footer>

// Scroll reveal animation const reveals = document.querySelectorAll('#dream-weaver-container .reveal'); const reveal = () => { reveals.forEach(el => { const windowHeight = window.innerHeight; const revealTop = el.getBoundingClientRect().top; const revealPoint = 150; if (revealTop < windowHeight - revealPoint) { el.classList.add('visible'); } }); }; window.addEventListener('scroll', reveal); reveal();