.sp-tp-root,
.sp-tp-root * {
	box-sizing: border-box;
}

.sp-tp-root {
	--sp-tp-columns: 3;
	--sp-tp-gap: 24px;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	min-width: 0;
	padding: 90px 24px;
	background: #101112;
	color: #fff;
}

.sp-tp-root button {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	text-transform: none;
}

.sp-tp-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.sp-tp-header {
	position: relative;
	max-width: 780px;
	margin: 0 auto 46px;
	text-align: center;
}

.sp-tp-eyebrow {
	margin: 0 0 18px;
	color: #10c7f4;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sp-tp-heading {
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.sp-tp-description {
	max-width: 700px;
	margin-inline: auto;
	color: #9aa4b5;
	font-size: 17px;
	line-height: 1.7;
}

.sp-tp-decorative-dot {
	position: absolute;
	top: 70px;
	right: -180px;
	display: block;
	width: 13px;
	height: 13px;
	border: 1px solid #00c8f8;
	border-radius: 999px;
	background: #00c8f8;
	box-shadow: 0 0 0 7px rgba(0, 200, 248, .09);
}

.sp-tp-review-badge-wrap {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.sp-tp-review-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 285px;
	min-height: 86px;
	padding: 14px 18px;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 45px rgba(0, 0, 0, .2);
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}

.sp-tp-review-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.sp-tp-review-badge img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: inherit;
}

.sp-tp-badge-icon {
	flex: 0 0 auto;
	font-size: 36px;
	line-height: 1;
}

.sp-tp-badge-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-tp-badge-content {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	column-gap: 8px;
	row-gap: 1px;
	text-align: left;
}

.sp-tp-badge-source {
	color: #4285f4;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
}

.sp-tp-badge-label {
	grid-column: 1 / -1;
	color: #171717;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
}

.sp-tp-badge-stars {
	display: inline-flex;
	gap: 1px;
	color: #fbbf24;
	font-size: 14px;
}

.sp-tp-badge-count {
	grid-column: 1 / -1;
	margin-top: 2px;
	color: #6b7280;
	font-size: 10px;
	line-height: 1.2;
}

.sp-tp-slider-shell {
	position: relative;
}

.sp-tp-viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	outline: none;
	touch-action: pan-y;
}

.sp-tp-viewport:focus-visible {
	outline: 2px solid #00c8f8;
	outline-offset: 5px;
}

.sp-tp-track {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	gap: var(--sp-tp-gap);
	will-change: transform;
	transition-property: transform;
	transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.sp-tp-slide {
	flex: 0 0 calc((100% - (var(--sp-tp-columns) - 1) * var(--sp-tp-gap)) / var(--sp-tp-columns));
	width: calc((100% - (var(--sp-tp-columns) - 1) * var(--sp-tp-gap)) / var(--sp-tp-columns));
	min-width: 0;
	max-width: none;
}

.sp-tp-root.layout-grid .sp-tp-viewport {
	overflow: visible;
}

.sp-tp-root.layout-grid .sp-tp-track {
	display: grid;
	grid-template-columns: repeat(var(--sp-tp-columns), minmax(0, 1fr));
	transform: none !important;
}

.sp-tp-root.layout-grid .sp-tp-slide {
	min-width: 0;
}

.sp-tp-root.is-full-bleed .sp-tp-viewport {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-inline: max(24px, calc((100vw - min(1320px, 100%)) / 2));
}

.sp-tp-card {
	position: relative;
	display: flex;
	width: 100%;
	min-width: 0;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 320px;
	overflow: hidden;
	padding: 32px;
	border: 1px solid #27292d;
	border-radius: 18px;
	background: #121315;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .13);
	color: inherit;
	text-decoration: none;
	transform-style: preserve-3d;
	transition-property: transform, box-shadow, border-color, background-color;
	transition-duration: .35s;
	transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.sp-tp-root.is-equal-height .sp-tp-slide,
.sp-tp-root.is-equal-height .sp-tp-card {
	height: 100%;
}

.sp-tp-root.hover-lift .sp-tp-card:hover {
	transform: translateY(-9px);
	border-color: rgba(0, 200, 248, .45);
	box-shadow: 0 22px 55px rgba(0, 0, 0, .32), 0 0 0 1px rgba(0, 200, 248, .05);
}

.sp-tp-root.hover-scale .sp-tp-card:hover {
	transform: scale(1.025);
	border-color: rgba(0, 200, 248, .45);
	box-shadow: 0 22px 55px rgba(0, 0, 0, .32);
}

.sp-tp-root.hover-tilt .sp-tp-card {
	transform: perspective(900px) rotateX(var(--sp-tp-rotate-x, 0deg)) rotateY(var(--sp-tp-rotate-y, 0deg)) translateY(var(--sp-tp-lift, 0px));
}

.sp-tp-root.hover-tilt .sp-tp-card:hover {
	--sp-tp-lift: -5px;
	border-color: rgba(0, 200, 248, .45);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.sp-tp-shine {
	position: absolute;
	z-index: 0;
	top: -50%;
	left: -70%;
	width: 45%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
	transform: rotate(18deg);
	transition: left .75s ease;
	pointer-events: none;
}

.sp-tp-root.has-shine .sp-tp-card:hover .sp-tp-shine {
	left: 130%;
}

.sp-tp-card-main,
.sp-tp-card-footer {
	position: relative;
	z-index: 2;
}

.sp-tp-rating-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.sp-tp-stars {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 18px;
	line-height: 1;
}

.sp-tp-star {
	color: #334155;
}

.sp-tp-star.is-filled {
	color: #00c8f8;
}

.sp-tp-company-logo {
	display: block;
	max-width: 82px;
	max-height: 34px;
	object-fit: contain;
	object-position: right center;
}

.sp-tp-quote-icon {
	position: absolute;
	z-index: 1;
	top: 22px;
	right: 24px;
	color: rgba(0, 200, 248, .12);
	font-size: 64px;
	line-height: 1;
	pointer-events: none;
}

.sp-tp-quote-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-tp-text {
	margin-bottom: 30px;
	color: #a6adba;
	font-size: 16px;
	font-weight: 450;
	line-height: 1.75;
}

.sp-tp-text[style*="--sp-tp-clamp"] {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--sp-tp-clamp);
}

.sp-tp-text > :first-child {
	margin-top: 0;
}

.sp-tp-text > :last-child {
	margin-bottom: 0;
}

.sp-tp-card-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}

.sp-tp-author {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 14px;
}

.sp-tp-avatar {
	flex: 0 0 auto;
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
}

.sp-tp-author-copy {
	min-width: 0;
}

.sp-tp-name {
	color: #fff;
	font-size: 16px;
	font-weight: 750;
	line-height: 1.3;
}

.sp-tp-role {
	margin-top: 5px;
	color: #697386;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.sp-tp-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	flex: 0 0 auto;
	color: #7c8799;
	font-size: 11px;
	line-height: 1.3;
}

.sp-tp-source,
.sp-tp-verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.sp-tp-source-icon {
	color: #4285f4;
	font-size: 16px;
	line-height: 1;
}

.sp-tp-source-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-tp-verified {
	color: #22c55e;
	font-weight: 700;
}

.sp-tp-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

.sp-tp-arrows {
	display: flex;
	gap: 10px;
}

.sp-tp-arrow::before,
.sp-tp-arrow::after,
.sp-tp-dot::before,
.sp-tp-dot::after {
	display: none !important;
	content: none !important;
}

.sp-tp-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid #2b3039;
	border-radius: 50%;
	background: #171a20;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.sp-tp-arrow:hover {
	border-color: #00c8f8;
	background: #00c8f8;
	color: #050505;
	transform: translateY(-2px);
}

.sp-tp-arrow:disabled {
	cursor: not-allowed;
	opacity: .35;
	transform: none;
}

.sp-tp-arrow svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-tp-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 8px;
}

.sp-tp-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #3a414d;
	cursor: pointer;
	transition: width .25s ease, background-color .25s ease, transform .25s ease;
}

.sp-tp-dot:hover {
	transform: scale(1.2);
}

.sp-tp-dot.is-active {
	width: 24px;
	background: #00c8f8;
}

.sp-tp-counter {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 68px;
	justify-content: flex-end;
	color: #7d8797;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.sp-tp-current {
	color: #fff;
	font-weight: 800;
}

.sp-tp-progress {
	overflow: hidden;
	height: 3px;
	margin-top: 18px;
	border-radius: 999px;
	background: #272c35;
}

.sp-tp-progress-fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: #00c8f8;
	transition: width .35s ease;
}

.sp-tp-root.entrance-fade-up .sp-tp-slide,
.sp-tp-root.entrance-fade-in .sp-tp-slide,
.sp-tp-root.entrance-slide-left .sp-tp-slide {
	opacity: 0;
	transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
	transition-delay: calc(var(--sp-tp-index) * var(--sp-tp-stagger, 90ms));
}

.sp-tp-root.entrance-fade-up .sp-tp-slide {
	transform: translateY(24px);
}

.sp-tp-root.entrance-slide-left .sp-tp-slide {
	transform: translateX(35px);
}

.sp-tp-root.is-visible .sp-tp-slide {
	opacity: 1;
	transform: none;
}

@media (max-width: 1024px) {
	.sp-tp-root {
		padding: 72px 24px;
	}

	.sp-tp-decorative-dot {
		right: -40px;
	}
}

@media (max-width: 767px) {
	.sp-tp-root {
		padding: 58px 16px;
	}

	.sp-tp-heading {
		font-size: clamp(30px, 10vw, 42px);
	}

	.sp-tp-description {
		font-size: 15px;
	}

	.sp-tp-decorative-dot {
		display: none;
	}

	.sp-tp-review-badge {
		max-width: 100%;
	}

	.sp-tp-card {
		min-height: 0;
		padding: 25px;
	}

	.sp-tp-card-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.sp-tp-meta {
		align-items: flex-start;
	}

	.sp-tp-nav {
		flex-wrap: wrap;
	}

	.sp-tp-dots {
		order: 3;
		flex-basis: 100%;
	}

	.sp-tp-root.is-full-bleed .sp-tp-viewport {
		padding-inline: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-tp-root *,
	.sp-tp-root *::before,
	.sp-tp-root *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
