<!DOCTYPE html>
<html lang='en'>
<head>
    <meta charset='UTF-8'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>Ion Digital — Coming Soon</title>
    <meta name='description' content='Ion Digital. Building what matters.'>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #e5e5e5;
        }
        .container { text-align: center; padding: 2rem; }
        h1 { font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
        p { font-size: 1.1rem; color: #888; max-width: 400px; }
        .email { margin-top: 2rem; }
        .email input {
            padding: 0.75rem 1rem;
            border: 1px solid #333;
            border-radius: 6px;
            background: #111;
            color: #e5e5e5;
            font-size: 0.95rem;
            width: 280px;
            outline: none;
        }
        .email input:focus { border-color: #555; }
        .email button {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            background: #fff;
            color: #0a0a0a;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            margin-left: 0.5rem;
        }
        .email button:hover { background: #ddd; }
    </style>
</head>
<body>
    <div class='container'>
        <h1>Ion Digital</h1>
        <p>Building what matters. More details coming soon.</p>
        <div class='email'>
            <input type='email' placeholder='your@email.com'>
            <button>Notify me</button>
        </div>
    </div>
</body>
</html>
