.quso-title,
.quso-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: none;
    /* Removed uppercase as per "as it is" image */
    letter-spacing: -0.01em;
    perspective: 1000px;
}

.quso-title .word,
.quso-subtitle .word {
    display: inline-block !important;
    /* Override style.css block rule */
    position: relative;
    margin: 0 0.1em;
    font-family: 'Space Grotesk', sans-serif;
    font-size: inherit;
    /* Prevent small font inheritance */
    text-transform: none;
    /* As it is */
    opacity: 1 !important;
    visibility: visible !important;
}

.quso-title {
    font-size: clamp(3rem, 8vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    opacity: 1;
    visibility: visible;
}

.quso-title .word {
    background: linear-gradient(to bottom, #FFFFFF 0%, #E0E0E0 100%);
    /* White/Silver look as per image */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    display: inline-block;
    padding-bottom: 0.1em;
    will-change: transform, opacity, filter;
}

.quso-title .char,
.quso-subtitle .char {
    display: inline-block;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    /* Static Tech Feel */
}

.quso-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.8;
    margin-top: 10px;
    letter-spacing: 0.2em;
}

/* Character Breeze Keyframe */
@keyframes breezeChar {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotateZ(0deg) rotateX(0deg) scale(1);
        opacity: 1;
    }

    15% {
        transform: translateY(-10px) translateX(4px) rotateZ(2deg) rotateX(-3deg) scale(1.02);
        opacity: 0.92;
    }

    30% {
        transform: translateY(-5px) translateX(-3px) rotateZ(-1deg) rotateX(2deg) scale(0.98);
        opacity: 1;
    }

    45% {
        transform: translateY(-12px) translateX(5px) rotateZ(2.5deg) rotateX(-4deg) scale(1.03);
        opacity: 0.9;
    }

    60% {
        transform: translateY(-4px) translateX(-4px) rotateZ(-1.5deg) rotateX(3deg) scale(0.99);
        opacity: 1;
    }

    75% {
        transform: translateY(-8px) translateX(3px) rotateZ(1.2deg) rotateX(-2deg) scale(1.01);
        opacity: 0.95;
    }
}

/* Stagger the animation for each word */
.quso-title .word:nth-child(1) {
    animation-delay: 0s;
}

.quso-title .word:nth-child(2) {
    animation-delay: 0.2s;
}

.quso-title .word:nth-child(3) {
    animation-delay: 0.4s;
}

.quso-subtitle .word:nth-child(1) {
    animation-delay: 0.1s;
}

.quso-subtitle .word:nth-child(2) {
    animation-delay: 0.3s;
}

.quso-subtitle .word:nth-child(3) {
    animation-delay: 0.5s;
}

.quso-subtitle .word:nth-child(4) {
    animation-delay: 0.7s;
}

.quso-subtitle .word:nth-child(5) {
    animation-delay: 0.9s;
}

.quso-subtitle .word:nth-child(6) {
    animation-delay: 1.1s;
}

/* Breeze Keyframe Animation */
@keyframes breeze {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotateZ(0deg) rotateX(0deg);
        opacity: 1;
    }

    15% {
        transform: translateY(-8px) translateX(3px) rotateZ(1deg) rotateX(-2deg);
        opacity: 0.95;
    }

    30% {
        transform: translateY(-4px) translateX(-2px) rotateZ(-0.5deg) rotateX(1deg);
        opacity: 1;
    }

    45% {
        transform: translateY(-10px) translateX(4px) rotateZ(1.5deg) rotateX(-3deg);
        opacity: 0.93;
    }

    60% {
        transform: translateY(-3px) translateX(-3px) rotateZ(-1deg) rotateX(2deg);
        opacity: 1;
    }

    75% {
        transform: translateY(-6px) translateX(2px) rotateZ(0.8deg) rotateX(-1deg);
        opacity: 0.97;
    }
}

/* Enhanced Breeze with Subtle Glow */
.quso-title .word {
    filter: drop-shadow(0 0 20px rgba(255, 184, 48, 0.3));
    transition: filter 0.3s ease;
}

/* Tech Stylings (Static) */
.quso-title .word {
    filter: drop-shadow(0 0 15px rgba(255, 184, 48, 0.2));
    letter-spacing: -0.02em;
    /* Tighter tech feel */
}

.quso-subtitle .word {
    filter: none;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* Shimmer Effect Removed */
.quso-title .word::after,
.quso-subtitle .word::after {
    display: none;
}

@keyframes shimmer {

    0%,
    100% {
        left: -100%;
        opacity: 0;
    }

    50% {
        left: 100%;
        opacity: 1;
    }
}

/* Pause all animations on reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .quso-title .word,
    .quso-subtitle .word {
        animation: none;
    }

    .quso-title .word::after,
    .quso-subtitle .word::after {
        animation: none;
    }
}