<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
    <title>Coming Soon</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* full-screen container with background image */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1505144808419-1957a94ca61e?q=80&w=1926&auto=format') no-repeat center center/cover;
            background-color: #0a1a2f;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, 'Inter', sans-serif;
        }

        /* soft overlay for better text readability */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        /* main content container */
        .content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            color: white;
            text-shadow: 0 4px 18px rgba(0,0,0,0.4);
            animation: fadeUp 0.9s ease-out;
        }

        /* main headline */
        h1 {
            font-size: clamp(3rem, 12vw, 7rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #FFF8E7, #FFE6C7);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: none;
        }

        /* fade-up keyframes */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
    </style>
</head>
<body>
    <div class="hero">
        <div class="content">
            <h1>COMING SOON</h1>
        </div>
    </div>
</body>
</html>