<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ICM Capital</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }
        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 80px 60px;
            text-align: center;
            max-width: 600px;
        }
        h1 {
            color: #333;
            margin: 0 0 30px 0;
            font-size: 3em;
            font-weight: 700;
        }
        .domain {
            color: #667eea;
            font-size: 1.5em;
            font-weight: 600;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Welcome to ICM Capital</h1>
        <div class="domain">clients.icm.ae</div>
    </div>
</body>
</html>