* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #ffffff;
    background: #071426;
}

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
        radial-gradient(circle at 20% 20%, #1c64f2 0, transparent 35%),
        linear-gradient(135deg, #071426, #102a43);
}

.content {
    width: min(720px, 100%);
    padding: 56px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.25);
    border-radius: 999px;
}

h1 {
    margin: 24px 0 16px;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1.05;
}

p {
    margin: 0 auto 32px;
    max-width: 580px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background: #2563eb;
    border-radius: 10px;
    transition: 0.2s ease;
}

.button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .content {
        padding: 36px 22px;
    }
}