.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8vw;
    font-family: 'Rubik', sans-serif;
    color: #111;
    position: relative;
}

.hero-container {
    max-width: 100%;
}

.hero h1 {
    font-size: 96px;
    /* bigger for premium feel */
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s ease forwards;
}

.hero span {
    background: linear-gradient(90deg, #7c8cff, #4de3ff);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradientShift 3s ease infinite alternate;
}

.hero p {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.85;
    animation: fadeInUp 1.2s ease forwards;
}

/* ---------------- BUTTONS ---------------- */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    animation: fadeInUp 1.4s ease forwards;
}

.btn-primary {
    background: linear-gradient(135deg, #7c8cff, #4de3ff);
    color: white;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(124, 140, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(124, 140, 255, 0.5);
}

.btn-secondary {
    background: rgba(124, 140, 255, 0.08);
    border: 1px solid rgba(124, 140, 255, 0.4);
    color: #111;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(124, 140, 255, 0.2);
    border-color: #4de3ff;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero span {
    background-size: 200% 200%;
}