:root {
    --bg-dark: #0a0a0a;
    --bg-gradient: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    --accent: #6d6dff;
    --accent-hover: #5858e0;
    --text-light: #e5e5e5;
    --text-muted: #aaa;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    position: relative;
}

/* Floating Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 12s infinite alternate;
    z-index: 0;
}
.blob1 { width: 350px; height: 350px; background: #6d6dff; top: -100px; left: 20%; }
.blob2 { width: 400px; height: 400px; background: #ff6dff; bottom: -150px; right: 15%; }

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(20px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Hero Content */
.hero {
    z-index: 1;
    max-width: 800px;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}
.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px) scale(1.05);
}
