.hero {
    padding: 6rem 1rem;
}

.hero h1 span {
    color: var(--purple);
}

.hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.card h5 {
    color: var(--purple-soft);
}

.hero-text {
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero {
    padding: 6rem 0;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.hero-title span {
    color: #7c3aed;
}

.hero-text {
    max-width: 520px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.1s;
}

.fade-up.delay-2 {
    animation-delay: 0.2s;
}

.fade-up.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.navbar {
    padding: 1.2rem 0;
}

.card {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.card h5 {
    transition: color 0.3s ease;
}

.card:hover h5 {
    color: #7c3aed;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(124, 58, 237, 0.25),
            transparent 60%);
    top: -120px;
    left: -120px;
    filter: blur(80px);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero {
        align-items: center;
        text-align: center;
    }

    .hero h1,
    .hero p {
        max-width: 90%;
    }
}