<!DOCTYPE html>
<html>
<head>
    <title>Jarvis - En construction</title>
    <style>
        body { 
            font-family: system-ui; 
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            text-align: center;
            padding: 2rem;
        }
        h1 { font-size: 3rem; margin: 0; }
        p { font-size: 1.2rem; opacity: 0.9; }
        .status { 
            background: rgba(255,255,255,0.2); 
            padding: 1rem; 
            border-radius: 8px; 
            margin-top: 2rem;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🤖 Jarvis</h1>
        <p>Assistant IA personnel de Cédric</p>
        <div class="status">
            <p>✅ Brain opérationnel</p>
            <p>⏳ Interface WhatsApp en cours de connexion</p>
            <p>🔧 Dashboard web à venir</p>
        </div>
    </div>
</body>
</html>