/* Homepage hero word reveal - restrained premium treatment */
.hero .hero-reveal-line{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:7px;
    width:max-content;
    max-width:100%;
    margin:0 0 24px;
    color:#68758d;
    font-size:15px;
    line-height:1.35;
    letter-spacing:-.01em;
}
.hero .hero-reveal-brand{
    color:#1746d1;
    font-weight:800;
    opacity:0;
    transform:translateY(7px);
    animation:heroWordReveal .48s cubic-bezier(.2,.72,.2,1) .10s forwards;
}
.hero .hero-reveal-words{
    display:inline-flex;
    flex-wrap:wrap;
    gap:0 .31em;
    color:#5e6d86;
    font-weight:650;
}
.hero .hero-reveal-words>span{
    display:inline-block;
    opacity:0;
    transform:translateY(8px);
    filter:blur(2px);
    animation:heroWordReveal .48s cubic-bezier(.2,.72,.2,1) forwards;
    animation-delay:calc(.18s + (var(--i) * .085s));
}
.hero .hero-reveal-words .hero-reveal-key-digital{color:#5b4dc3;font-weight:750}
.hero .hero-reveal-words .hero-reveal-key-business{color:#16845b;font-weight:750}
@keyframes heroWordReveal{
    to{opacity:1;transform:translateY(0);filter:blur(0)}
}
html[data-theme="dark"] .hero .hero-reveal-line,
html[data-theme="dark"] .hero .hero-reveal-words{color:#aab4c8}
html[data-theme="dark"] .hero .hero-reveal-brand{color:#7fa0ff}
html[data-theme="dark"] .hero .hero-reveal-words .hero-reveal-key-digital{color:#b0a1ff}
html[data-theme="dark"] .hero .hero-reveal-words .hero-reveal-key-business{color:#77d5a8}
@media(max-width:768px){
    .hero .hero-reveal-line{font-size:13px;gap:6px;margin-bottom:19px;width:auto}
}
@media(prefers-reduced-motion:reduce){
    .hero .hero-reveal-brand,
    .hero .hero-reveal-words>span{
        animation:none!important;
        opacity:1!important;
        transform:none!important;
        filter:none!important;
    }
}
