.home-cta {
    padding: 0;
    text-align: center;
    background-color: #000;
}

.home-cta .cta-text {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home-cta .cta-text .letter {
    display: inline-block;
    margin-right: -0.04em; /* Tightens the spacing lost from splitting text */
    background: linear-gradient(to bottom, #ffffff 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    opacity: 0;
    transform: translateY(60px) scale(0.85);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-cta .cta-text .letter.space {
    width: 0.35em;
}

.home-cta .cta-text .letter.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .home-cta .cta-text {
        font-size: 4rem;
    }
}