/*! BTF effects bundle 7a8cab37caabe688 — theme 1.0.0 */
/* family: text */
@media (prefers-reduced-motion: reduce) {
[data-boost-text] {
animation: none !important;
        transition: none !important;
}
}

.boost-text-splitflap {
display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    
    perspective: 600px;
}

.boost-text-splitflap__unit {
display: inline-block;
    position: relative;
    
    background: var(--boost-card-bg, #1a1a1a);
    color: var(--boost-text, #f5f5f5);
    border-radius: 4px;
    padding: 0.05em 0.18em;
    margin: 0 0.04em;
    min-width: 0.7em;
    text-align: center;
    overflow: hidden;
    
    box-shadow:
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.2);
    
    --boost-flap-gap-color: rgba(0, 0, 0, 0.5);
}

.boost-text-splitflap__unit::after {
content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--boost-flap-gap-color);
    pointer-events: none;
}

.boost-text-splitflap__face {
display: block;
    
    font-variant-numeric: tabular-nums;
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform;
}

.boost-text-splitflap__unit.is-flapping .boost-text-splitflap__face {
animation: boost-text-splitflap-rotate var(--boost-flap-duration, 0.15s) ease-in-out;
}

.boost-text-splitflap__unit--static,
.boost-text-splitflap__unit--space {
background: transparent;
    box-shadow: none;
    color: inherit;
    padding: 0;
    margin: 0 0.05em;
}

.boost-text-splitflap__unit--static::after,
.boost-text-splitflap__unit--space::after {
display: none;
}

[data-boost-text-mode="numbers"] {
font-family: var(--boost-font-mono, 'Geist Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace);
    letter-spacing: 0;
    
    --boost-flap-duration: 0.05s;
}

[data-boost-text-mode="numbers"] .boost-text-splitflap__unit {
min-width: 0.85em;
}

[data-boost-text-mode="chars"] {
--boost-flap-duration: 0.07s;
}

[data-boost-text-mode="chars"] .boost-text-splitflap__unit--flapping {
width: 1.2em;
    min-width: 0;
    padding: 0.05em 0;
}

[data-boost-text-mode="words"] {
--boost-flap-duration: 0.1s;
}

[data-boost-text-mode="words"] .boost-text-splitflap__unit {
letter-spacing: 0.05em;
    padding: 0.05em 0.35em;
    margin: 0 0.08em;
}

.boost-text-splitflap__unit.is-settled .boost-text-splitflap__face {
animation: none;
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
.boost-text-splitflap__unit.is-flapping .boost-text-splitflap__face {
animation: none;
}
}

[data-boost-text^="split-flap"][data-boost-text-style="inverted"]
    .boost-text-splitflap__unit:not(.boost-text-splitflap__unit--static):not(.boost-text-splitflap__unit--space) {
background: var(--boost-bg, #f5f5f5);
    color: var(--boost-text, #1a1a1a);
}

@keyframes boost-text-splitflap-rotate {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

[data-boost-text="gradient"] {
background: linear-gradient(135deg, var(--boost-accent, #6366f1), var(--boost-accent-alt, #8b5cf6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boost-cta--gradient [data-boost-text="gradient"],
.boost-faq--gradient [data-boost-text="gradient"],
.boost-hero--gradient [data-boost-text="gradient"],
.boost-content--gradient [data-boost-text="gradient"],
[data-boost-scheme="gradient"] [data-boost-text="gradient"] {
background: linear-gradient(135deg, var(--boost-text, #fff) 0%, var(--boost-accent-alt, var(--boost-accent, #c7d2fe)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boost-cta--dark [data-boost-text="gradient"],
.boost-faq--dark [data-boost-text="gradient"],
.boost-hero--dark [data-boost-text="gradient"],
.boost-content--dark [data-boost-text="gradient"],
[data-boost-scheme="dark"] [data-boost-text="gradient"] {
background: linear-gradient(135deg, var(--boost-primary, #3b82f6), var(--boost-accent, #8b5cf6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
