.text-reveal-section {
    padding: 180px 20px;
    background-color: var(--ink);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.text-reveal-container {
    max-width: 1400px;
    text-align: center;
}

.reveal-text {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #e5e7eb;
    /* Base color is very light gray */
    margin: 0;
}

.reveal-word {
    display: inline-block;
    color: #e5e7eb;
    /* Starts light gray */
    transition: color 0.1s;
}

.reveal-word.text-gradient.is-revealed {
    background: linear-gradient(90deg, #7627d8, #e01e5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}