<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>LitForge Labs — Hard Money Web3 on LitVM</title>

    <style>

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');


        :root {

            --bg: #0a0a1a;

            --accent: #00f5ff;

            --silver: #e0f2fe;

            --text: #f0f9ff;

        }


        body {

            font-family: 'Inter', system-ui, sans-serif;

            background: var(--bg);

            color: var(--text);

            margin: 0;

            padding: 0;

            line-height: 1.6;

            overflow-x: hidden;

        }


        .hero {

            min-height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            text-align: center;

            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);

            position: relative;

            overflow: hidden;

        }


        .hero::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: radial-gradient(circle at 50% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 70%);

            pointer-events: none;

        }


        h1 {

            font-family: 'Space Grotesk', sans-serif;

            font-size: 4.2rem;

            font-weight: 600;

            margin: 0 0 24px 0;

            background: linear-gradient(90deg, #e0f2fe, #00f5ff);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            letter-spacing: -2px;

        }


        .subtitle {

            font-size: 1.35rem;

            max-width: 720px;

            margin: 0 auto 40px;

            opacity: 0.9;

        }


        .description {

            font-size: 1.15rem;

            max-width: 680px;

            margin: 0 auto 48px;

            opacity: 0.85;

        }


        .cta {

            display: inline-block;

            background: linear-gradient(90deg, #00f5ff, #00ccff);

            color: #0a0a1a;

            padding: 18px 48px;

            font-size: 1.15rem;

            font-weight: 600;

            border-radius: 9999px;

            text-decoration: none;

            transition: all 0.3s ease;

            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);

        }


        .cta:hover {

            transform: translateY(-4px);

            box-shadow: 0 20px 40px rgba(0, 245, 255, 0.4);

        }


        .footer {

            padding: 60px 20px 40px;

            text-align: center;

            font-size: 0.95rem;

            opacity: 0.6;

        }


        .glow {

            text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);

        }

    </style>

</head>

<body>

    <div class="hero">

        <div>

            <h1 class="glow">LitForge Labs</h1>

            <p class="subtitle">Forging Hard Money Web3 on LitVM</p>

            <p class="description">

                Native DeFi yield protocols • Real-world asset tokenization • 

                Autonomous Litecoin Agents • Programmable payments.<br>

                Built for LTC holders who want real yield without selling their sound money.

            </p>

            <a href="https://app.safe.global/home?address=0x997cFae7C941769432832CA61aEF997Ad2b5E6Cb" 

               target="_blank" 

               class="cta">View Treasury Safe</a>

        </div>

    </div>


    <div class="footer">

        © 2026 LitForge Labs LLC • Building on LitVM — Litecoin’s zk L2

    </div>

</body>

</html>