Rise Home Page

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rise | Urban Emergency Preparedness</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
        }

        /* Header/Navigation */
        header {
            background: #1a2332;
            color: white;
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #ff8c42;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff8c42;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            color: white;
            padding: 6rem 5% 8rem 5%;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero .tagline {
            font-size: 1.5rem;
            color: #ff8c42;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: #ff8c42;
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #e67a35;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
        }

        /* Section Styles */
        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a2332;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        /* Mission Section */
        .mission {
            background: #f8f9fa;
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .mission-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1a2332;
        }

        .mission-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #444;
        }

        .mission-values {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .mission-values h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ff8c42;
        }

        .mission-values ul {
            list-style: none;
            padding: 0;
        }

        .mission-values li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            font-size: 1.05rem;
        }

        .mission-values li:last-child {
            border-bottom: none;
        }

        .mission-values li:before {
            content: "→ ";
            color: #ff8c42;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Lead Magnet Section */
        .lead-magnet {
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
            color: white;
            text-align: center;
            border-radius: 10px;
            padding: 4rem 2rem;
            margin: 3rem 0;
        }

        .lead-magnet h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .lead-magnet p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .lead-magnet-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }

        .lead-magnet-form input {
            flex: 1;
            padding: 1rem;
            font-size: 1rem;
            border: none;
            border-radius: 5px;
        }

        .lead-magnet-form button {
            background: #1a2332;
            color: white;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .lead-magnet-form button:hover {
            background: #2c3e50;
            transform: translateY(-2px);
        }

        /* Products Preview */
        .products-preview {
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a2332;
        }

        .product-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .product-status {
            display: inline-block;
            background: #e8f5e9;
            color: #2e7d32;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Resources Section */
        .resources {
            background: #f8f9fa;
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .resource-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ff8c42;
        }

        .resource-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #1a2332;
        }

        .resource-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background: #1a2332;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #ff8c42;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ff8c42;
        }

        .footer-bottom {
            border-top: 1px solid #2c3e50;
            padding-top: 2rem;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .mission-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .lead-magnet-form {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <nav>
            <div class="logo">RISE</div>
            <ul class="nav-links">
                <li><a href="#mission">Mission</a></li>
                <li><a href="#products">Products</a></li>
                <li><a href="#resources">Resources</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <h1>Prepared to Rise</h1>
            <p class="tagline">Urban Emergency Preparedness for Real People</p>
            <p>When crisis hits your city—natural disaster, power outage, or civil unrest—you need more than hope. You need knowledge, supplies, and a plan. We help urban communities prepare with calm, dignity, and respect for one another.</p>
            <a href="#lead-magnet" class="cta-button">Get Your Free Emergency Checklist</a>
        </div>
    </section>

    <!-- Mission Section -->
    <section class="mission" id="mission">
        <h2>Why Rise Exists</h2>
        <p class="section-subtitle">Preparedness without paranoia. Readiness without fear.</p>
        
        <div class="mission-content">
            <div class="mission-text">
                <h3>We're Neighbors, Not Survivalists</h3>
                <p>In cities, we're closer together than anywhere else. When emergencies happen—whether hurricanes, earthquakes, blackouts, or civil unrest—that proximity can be our greatest strength or our greatest vulnerability.</p>
                <p>Rise was founded on a simple belief: prepared people create peaceful communities. When you have what you need to keep yourself and your family safe, you can think clearly, act compassionately, and help others do the same.</p>
                <p>We're not here to sell fear. We're here to sell peace of mind through practical preparation.</p>
            </div>
            
            <div class="mission-values">
                <h4>Our Principles</h4>
                <ul>
                    <li>Preparation builds confidence, not fear</li>
                    <li>Community strength comes from individual readiness</li>
                    <li>Dignity and respect, even in crisis</li>
                    <li>Knowledge is as important as supplies</li>
                    <li>Urban environments need urban solutions</li>
                </ul>
            </div>
        </div>
    </section>

    <!-- Lead Magnet -->
    <section id="lead-magnet">
        <div class="lead-magnet">
            <h2>Start Your Urban Emergency Plan Today</h2>
            <p>Get our comprehensive Urban Emergency Readiness Checklist—absolutely free. Everything you need to prepare your apartment, condo, or city home for any crisis.</p>
            <form class="lead-magnet-form">
                <input type="email" placeholder="Enter your email address" required>
                <button type="submit">Get Free Checklist</button>
            </form>
            <p style="font-size: 0.9rem; margin-top: 1rem; opacity: 0.8;">No spam. Just practical preparedness tips and product updates.</p>
        </div>
    </section>

    <!-- Products Preview -->
    <section class="products-preview" id="products">
        <h2>Rise Products</h2>
        <p class="section-subtitle">Curated gear and guides for urban emergency preparedness</p>
        
        <div class="product-grid">
            <div class="product-card">
                <div class="product-icon">📋</div>
                <h3>Digital Guides</h3>
                <p>Comprehensive preparedness guides covering everything from 72-hour kits to evacuation planning for apartment dwellers.</p>
                <span class="product-status">Coming Soon</span>
            </div>
            
            <div class="product-card">
                <div class="product-icon">🎒</div>
                <h3>Urban Go-Bags</h3>
                <p>Pre-curated emergency kits designed specifically for city living—compact, portable, and essential.</p>
                <span class="product-status">Coming Soon</span>
            </div>
            
            <div class="product-card">
                <div class="product-icon">🛡️</div>
                <h3>Safety Gear</h3>
                <p>Personal protective equipment for navigating civil unrest safely—respirators, eye protection, first aid, and more.</p>
                <span class="product-status">Coming Soon</span>
            </div>
        </div>
    </section>

    <!-- Resources Section -->
    <section class="resources" id="resources">
        <h2>Free Resources</h2>
        <p class="section-subtitle">Knowledge is your first line of defense</p>
        
        <div class="resource-grid">
            <div class="resource-card">
                <h3>Apartment Fire Safety</h3>
                <p>Essential escape planning for multi-story living</p>
            </div>
            
            <div class="resource-card">
                <h3>Power Outage Preparedness</h3>
                <p>What to do when the grid goes down in your city</p>
            </div>
            
            <div class="resource-card">
                <h3>Situational Awareness</h3>
                <p>Recognizing and avoiding dangerous situations in crowds</p>
            </div>
            
            <div class="resource-card">
                <h3>Water & Food Storage</h3>
                <p>Urban-friendly solutions for limited space</p>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer id="contact">
        <div class="footer-content">
            <div class="footer-section">
                <h4>Rise</h4>
                <p>Urban emergency preparedness for real people. Prepared to rise together.</p>
            </div>
            
            <div class="footer-section">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="#mission">Our Mission</a></li>
                    <li><a href="#products">Products</a></li>
                    <li><a href="#resources">Resources</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </div>
            
            <div class="footer-section">
                <h4>Legal</h4>
                <ul>
                    <li><a href="#">Privacy Policy</a></li>
                    <li><a href="#">Terms of Service</a></li>
                    <li><a href="#">Refund Policy</a></li>
                    <li><a href="#">Shipping Info</a></li>
                </ul>
            </div>
            
            <div class="footer-section">
                <h4>Connect</h4>
                <ul>
                    <li><a href="#">Instagram</a></li>
                    <li><a href="#">TikTok</a></li>
                    <li><a href="#">YouTube</a></li>
                    <li><a href="#">Email Us</a></li>
                </ul>
            </div>
        </div>
        
        <div class="footer-bottom">
            <p>&copy; 2026 Rise. All rights reserved. Stay prepared, stay peaceful.</p>
        </div>
    </footer>
</body>
</html>