@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #030712;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.mesh-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background:
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(6, 182, 212, 0.15) 0px, transparent 50%);
    filter: blur(80px);
}

.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

.container {
    text-align: center;
    max-width: 700px;
    padding: 4rem 2rem;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient {
    background: linear-gradient(135deg, #c084fc, #fb7185);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.feature:hover {
    border-color: #c084fc;
    background: rgba(255, 255, 255, 0.05);
}

.icon {
    font-size: 2rem;
    color: #c084fc;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

.notify {
    background: rgba(17, 24, 39, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notify p {
    color: #64748b;
    font-size: 0.9rem;
}

.back-link {
    display: inline-block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}
