.section-title-background-word-reveal {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem 1.5rem;
    isolation: isolate;
}

@media (max-width: 850px) {
    .section-title-background-word-reveal {
        min-height: 40vh;
        padding: 2rem 1.5rem 3rem 1.5rem;
    }
}

/* subtle texture */
.section-title-background-word-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        radial-gradient(circle at 25% 25%, #ffffff 1px, transparent 10px),
        radial-gradient(circle at 75% 75%, #ffffff 1px, transparent 10px);
    background-size: 25px 25px;
    pointer-events: none;
}

/* soft green atmosphere */
.section-title-background-word-reveal::after {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 850px;
    max-height: 900px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            oklch(from var(--colour-brand) 0.4 c h / 0.48) ,
            oklch(from var(--colour-brand) 0.4 c h / 0.28) ,
            oklch(from var(--colour-brand) 0.4 c h / 0.01) ,
            transparent 72%);
    filter: blur(48px);
    z-index: -1;
}

.section-title-background-word-reveal__inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.section-title-background-word-reveal__word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
    width: fit-content;
    max-width: none;
    overflow: visible;
    font-size: clamp(5rem, 18vw, 15rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-overflow: clip;
    color: transparent;
    -webkit-text-stroke: 2px oklch(from var(--colour-brand) l c h / 0.15);
    opacity: 0.95;
    user-select: none;
    pointer-events: none;
    
}

/* animated colour fill */
/* .section-title-background-word-reveal__word::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(
        90deg,
        #ef4444 0%,
        #f59e0b 42%,
        #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 0%;
    overflow: hidden;
    animation: temperature-fill 6s ease forwards;
} */

@keyframes temperature-fill {
    to { width: 100%; }
}

.section-title-background-word-reveal__content {
    position: relative;
    z-index: 2;
}

.section-title-background-word-reveal__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.62);
}

.section-title-background-word-reveal h2 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    color: #ffffff;
}

.section-title-background-word-reveal p:last-child {
    margin: 1rem auto 0;
    max-width: 40rem;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgb(255 255 255 / 0.72);
}

@media (prefers-reduced-motion: reduce) {
    .section-title-background-word-reveal__word::before {
        animation: none;
        width: 100%;
    }
}