@charset "utf-8";
/* CSS Document */
/* ==========================================================================
   Hero Content
   ========================================================================== */

.tc-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 640px;
}

/* ==========================================================================
   Hero Badge
   ========================================================================== */

.tc-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 1rem;
	margin-bottom: 1.75rem;

	background: rgba(236, 105, 31, 0.08);
	border: 1px solid rgba(236, 105, 31, 0.18);
	border-radius: 999px;

	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	color: var(--tc-primary);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.tc-hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;

	background: var(--tc-primary);
	color: var(--tc-white);

	border-radius: 50%;

	flex-shrink: 0;
}

.tc-hero__badge-icon svg {
	width: 16px;
	height: 16px;
}

.tc-hero__badge-text {
	white-space: nowrap;
}

/* ==========================================================================
   Hero Title
   ========================================================================== */

.tc-hero__title {
	margin: 0 0 1.5rem;

	font-size: clamp(2.75rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;

	color: var(--tc-heading);

	text-wrap: balance;
}

.tc-highlight {
	position: relative;
	display: inline-block;
	color: var(--tc-primary);
}

/* Optional underline accent */

/*.tc-highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.08em;

	width: 100%;
	height: 0.28em;

	background: rgba(236, 105, 31, 0.18);

	z-index: -1;
	border-radius: 999px;
}*/

/* ==========================================================================
   Description
   ========================================================================== */

.tc-hero__description {
	max-width: 58ch;
	margin-bottom: 2.5rem;

	font-size: 1.125rem;
	line-height: 1.8;
	font-weight: 400;

	color: var(--tc-text);
}

.tc-hero__description p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Content Spacing
   ========================================================================== */

.tc-hero__buttons {
	margin-bottom: 2.75rem;
}

.tc-hero__statistics {
	margin-top: auto;
}

/* ==========================================================================
   Desktop Large
   ========================================================================== */

@media (min-width: 1400px) {

	.tc-hero__title {
		font-size: clamp(4rem, 4vw, 5rem);
	}

}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991px) {

	.tc-hero__content {
		align-items: center;
		max-width: 100%;
		text-align: center;
	}

	.tc-hero__description {
		max-width: 42rem;
		margin-inline: auto;
		margin-bottom: 2.25rem;
	}

}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {

	.tc-hero__badge {
		margin-bottom: 1.25rem;
		padding: 0.45rem 0.85rem;

		font-size: 0.8125rem;
	}

	.tc-hero__badge-icon {
		width: 28px;
		height: 28px;
	}

	.tc-hero__title {
		font-size: clamp(2.25rem, 8vw, 3rem);
		margin-bottom: 1.25rem;
	}

	.tc-hero__description {
		font-size: 1rem;
		line-height: 1.75;
		margin-bottom: 2rem;
	}

	.tc-hero__buttons {
		margin-bottom: 2rem;
	}

}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.tc-highlight::after {
		transition: none;
	}

}

/* Premium content treatment */
.tc-hero__badge {
	padding: .45rem .85rem .45rem .5rem;
	margin-bottom: 1.5rem;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(236, 105, 31, .08);
}

.tc-hero__badge-icon { width: 30px; height: 30px; }
.tc-hero__title {
	max-width: 720px;
	margin-bottom: 1.35rem;
	font-size: clamp(3rem, 5.2vw, 5rem);
	line-height: 1.02;
	letter-spacing: -.055em;
}

.tc-hero__description {
	max-width: 58ch;
	margin-bottom: 2.25rem;
	font-size: 1.06rem;
	line-height: 1.75;
	color: var(--tc-text-light);
}

.tc-hero__buttons { margin-bottom: 2.25rem; }

@media (max-width: 767px) {
	.tc-hero__title { font-size: clamp(2.45rem, 11vw, 3.5rem); letter-spacing: -.045em; }
	.tc-hero__badge-text { white-space: normal; text-align: left; }
}
