<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lyre - Messagerie Souveraine</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }
        .container {
            text-align: center;
            max-width: 600px;
        }
        h1 { font-size: 3em; margin: 0; }
        p { font-size: 1.2em; opacity: 0.9; }
        .badge {
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 20px;
        }
        .token-box {
            background: rgba(0,0,0,0.3);
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
        }
        .token-box h3 { margin: 0 0 10px 0; font-size: 1.1em; }
        .token {
            font-family: monospace;
            font-size: 1.4em;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 5px;
            display: inline-block;
            letter-spacing: 1px;
        }
        .steps {
            text-align: left;
            margin-top: 15px;
            font-size: 0.9em;
            opacity: 0.9;
        }
        .steps li { margin: 5px 0; }
    </style>
</head>
<body>
    <div class="container">
        <h1>🎵 Lyre</h1>
        <p>Messagerie Matrix Souveraine Française</p>
        <div class="badge">Hebergée en France -  🔒 Chiffrée E2E</div>
        <div class="token-box">
            <h3>Inscription Beta</h3>
            <div class="token">lyre-beta-2026</div>
            <ol class="steps">
                <li>Telecharge <a href="https://element.io/download" style="color: #a8d8ff;">Element</a></li>
                <li>Clique "Creer un compte"</li>
                <li>Serveur : <strong>lyre.chat</strong></li>
                <li>Entre le token ci-dessus</li>
            </ol>
        </div>
    </div>
</body>
</html>