:root {
    --stripe-blurple: #635bff;
    --stripe-purple: #a259ff;
    --text-color: #0a2540;
    --text-muted: #425466;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background: linear-gradient(135deg, var(--stripe-blurple) 0%, var(--stripe-purple) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 10;
}

/* Abstract shapes background */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #ff6b6b;
}

.shape-2 {
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #1ad1a5;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, var(--stripe-blurple), var(--stripe-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: #f6f9fc;
    color: var(--stripe-blurple);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}