
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #0f172a;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, #2563eb 0%, transparent 40%),
        radial-gradient(circle at bottom right, #7c3aed 0%, transparent 40%),
        #0f172a;
    opacity: 0.9;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 700px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #93c5fd;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .description {
        font-size: 1rem;
    }
}