
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Under Construction | Swift Takeoff</title>
        <style>
            body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #f9fafb; color: #111827; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
            .card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); border: 1px solid #e5e7eb; max-width: 400px; text-align: center; }
            .status-dot { height: 10px; width: 10px; background-color: #3b82f6; border-radius: 50%; display: inline-block; margin-right: 8px; animation: pulse 2s infinite; }
            h1 { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.5rem 0; }
            p { font-size: 0.875rem; color: #6b7280; line-height: 1.5; margin: 0; }
            @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
        </style>
    </head>
    <body>
        <div class="card">
            <h1><span class="status-dot"></span>Under Construction</h1>
            <p>We are putting the finishing touches on Swift Takeoff. The application will be available shortly. Thank you for your patience.</p>
        </div>
    </body>
    </html>