@font-face {
    font-family: 'Renata';
    src: url('../fonts/renata.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.highlight-oval {
    position: relative;
    display: inline-block;
}
.highlight-oval::before {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    height: 1.25em;
    background: #DDE6FF;
    border-radius: 9999px;
    z-index: 0;
    filter: blur(.4px);
}
.highlight-oval > span { position: relative; z-index: 10; }
.decoration-arc {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid;
    border-color: #9ACD32 transparent transparent transparent;
    position: absolute;
    top: 50px;
    left: 0;
    transform: rotate(-45deg);
}
.aspect-w-16 { position: relative; width: 100%; }
.aspect-w-16::before { content: ""; display: block; padding-top: 56.25%; } /* 16:9 */
.aspect-h-9 > iframe, .aspect-w-16 > iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:0; }
.gradient-card-bg {
    background: url('../images/product-gradient.webp') no-repeat;
    background-position: center center;
    background-size: cover;
}
.slider-container {
    overflow: hidden;
    touch-action: pan-y;
}
.slider-track.no-transition {
    transition: none !important;
}
.slider-track {
    transition: transform 0.5s ease-in-out;
}
.category-card {
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out;
    transform-origin: center center;
}
.card-active {
    transform: scale(1.0);
}
.dot {
    position: relative;
    background-color: #e5e7eb;
}
.dot.active {
    background-color: #9ca3af;
}
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #4b5563;
    border-radius: 9999px;
    transition: width 0s linear;
}
.dot.progress-running .progress-bar {
    transition: width 3s linear;
}
.icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 1.25rem;
    font-weight: bold;
}
.typed-output {
    min-height: 3rem;
    white-space: pre-wrap;
    padding-right: 4px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.cursor-pipe {
    font-weight: 300;
    animation: blink 1s step-end infinite;
}
.fancy-text {
    line-height: 1.1;
    font-weight: 700;
}
.bg-letters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.05);
    font-family: monospace;
    z-index: 0;
    white-space: pre;
}
.text-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	z-index: 0;
}
.text-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@-webkit-keyframes scroll-left {
    0% { -webkit-transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); }
}
.scrolling-text-inner {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
    -webkit-animation: scroll-left 25s linear infinite;
}
.scrolling-text-inner * {
    user-select: none;
    cursor: default;
}