* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f7f9fc;
    color: #1a202c;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(20px) translateX(20px); }
    100% { transform: translateY(0) translateX(0); }
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: white;
    color: #2575fc;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #e0e7ff;
    transform: translateY(-3px);
}

section {
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2575fc;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.product-card {
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    flex: 1 1 320px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    display: block; /* makes the whole card clickable */
    text-decoration: none; /* removes underline */
    color: inherit; /* keeps text color as set inside the card */
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.product-card h2 {
    color: #6a11cb;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #4a5568;
}

.status {
    display: inline-block;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.beta { background: #ffedd5; color: #f97316; }
.coming-soon { background: #e0e7ff; color: #6366f1; }

/* Animated blobs in product cards */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    z-index: -1;
}

.blob1 { width: 200px; height: 200px; background: #6a11cb; top: -50px; right: -50px; }
.blob2 { width: 150px; height: 150px; background: #2575fc; bottom: -40px; left: -40px; }

.form-card {
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.form-card input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-card input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106,17,203,0.5);
}

.form-card button {
    width: 100%;
    background: #2575fc;
    color: white;
    padding: 0.9rem 0;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-card button:hover {
    background: #6a11cb;
}

.description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #4a5568;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #1a202c;
    color: white;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    section h2 {
        font-size: 2rem;
    }
}