* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0f, #111827);
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    text-align: center;
    padding: 2rem;
}

.badge {
    display: inline-block;
    background: #ffffff;
    color: #000;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

code {
    background: #1f2937;
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    color: #fbbf24;
    font-size: 0.9rem;
}