

    <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Gritizer API</title>
    <style>
        :root { color-scheme: light dark; }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: #0e0e12;
            color: #f5f5f7;
            display: flex;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
        }
        .card {
            background: linear-gradient(145deg, #141420, #0f0f18);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 32px;
            max-width: 520px;
            width: 100%;
            box-shadow: 0 18px 50px rgba(0,0,0,0.35);
            text-align: center;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(111, 76, 255, 0.12);
            color: #c9b6ff;
            font-weight: 600;
            letter-spacing: 0.01em;
            font-size: 13px;
        }
        h1 {
            margin: 16px 0 8px;
            font-size: 28px;
            letter-spacing: -0.02em;
        }
        p {
            margin: 0 0 20px;
            color: #c5c7d1;
            line-height: 1.5;
            font-size: 15px;
        }
        .actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.1);
            color: #f5f5f7;
            background: rgba(111, 76, 255, 0.14);
            transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
        }
        .btn.secondary {
            background: rgba(255,255,255,0.06);
        }
        .btn:hover {
            transform: translateY(-2px);
            border-color: rgba(255,255,255,0.25);
            background: rgba(111, 76, 255, 0.18);
        }
        .meta {
            margin-top: 18px;
            font-size: 13px;
            color: #8f92a3;
        }
    </style>
</head>
<body>
    <div class="card">
        <span class="badge">Gritizer API · Online</span>
        <h1>Welcome to Gritizer</h1>
        <p>This endpoint confirms the API is reachable. For product info, downloads, or support, please visit our website.</p>
        <div class="actions">
            <a class="btn" href="https://gritizer.com" target="_blank" rel="noopener">Visit gritizer.com</a>
            <a class="btn secondary" href="/up" rel="noopener">API health</a>
        </div>
        <div class="meta">If you were looking for the app, download links are available on our website.</div>
    </div>
</body>
</html>

