/* HOME */
@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 0.85s cubic-bezier(0.2, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 0.10s;
}

.delay-2 {
    transition-delay: 0.20s;
}

.delay-3 {
    transition-delay: 0.30s;
}

.delay-4 {
    transition-delay: 0.45s;
}

.home-wrap {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(10px, 3vw, 80px);
}

.home-center {
    text-align: center;
}

/* Gradient */
.gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #fb923c 50%, #f59e0b 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s ease infinite alternate;
}

/* Section */
.section-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 8vw, 6rem);
    position: relative;
    z-index: 1;
}

.section-head .title {
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #1e1b4b;
}