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

.tc-hero__floating-cards {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}

.tc-floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.875rem;

	width: 240px;
	max-width: 80%;

	padding: 1rem;

	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);

	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 18px;

	box-shadow:
		0 20px 45px rgba(15, 23, 42, 0.10),
		0 8px 18px rgba(15, 23, 42, 0.06);

	will-change: transform;
	animation: tcFloat 6s ease-in-out infinite;
}

/* ==========================================================================
   Card Positions
   ========================================================================== */

.tc-floating-card:nth-child(1) {
	top: 8%;
	right: -40px;
	animation-delay: 0s;
}

.tc-floating-card:nth-child(2) {
	bottom: 18%;
	left: -45px;
	animation-delay: 1.5s;
}

.tc-floating-card:nth-child(3) {
	top: 52%;
	right: -65px;
	animation-delay: 3s;
}

/* Optional fourth card */

.tc-floating-card:nth-child(4) {
	top: 20%;
	left: -105px;
	animation-delay: 4.5s;
}

/* ==========================================================================
   Icon
   ========================================================================== */

.tc-floating-card__icon {
	flex-shrink: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 52px;
	height: 52px;

	background: rgba(236, 105, 31, 0.10);
	border-radius: 14px;
}

.tc-floating-card__symbol {
	display: block;
	font-size: 1.55rem;
	line-height: 1;
}

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

.tc-floating-card__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.tc-floating-card__title {
	margin-bottom: 0.2rem;

	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;

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

.tc-floating-card__subtitle {
	font-size: 0.85rem;
	line-height: 1.45;

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

/* ==========================================================================
   Floating Animation
   ========================================================================== */

@keyframes tcFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

}

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

@media (min-width: 1400px) {

	.tc-floating-card {
		width: 260px;
	}

}

/* ==========================================================================
   Laptop
   ========================================================================== */

@media (max-width: 1199px) {

	.tc-floating-card {
		width: 220px;
		padding: 0.9rem;
	}

}

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

@media (max-width: 991px) {

	.tc-floating-card {
		width: 200px;
		padding: 0.85rem;
	}

	.tc-floating-card:nth-child(1) {
		right: -20px;
	}

	.tc-floating-card:nth-child(2) {
		left: -20px;
	}

	.tc-floating-card:nth-child(3) {
		right: -25px;
	}

}

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

@media (max-width: 767px) {

	.tc-floating-card {
		width: 170px;
		padding: 0.75rem;
		gap: 0.65rem;
		border-radius: 14px;
	}

	.tc-floating-card__icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.tc-floating-card__symbol {
	font-size: 1.25rem;
}

	.tc-floating-card__title {
		font-size: 0.85rem;
	}

	.tc-floating-card__subtitle {
		font-size: 0.75rem;
	}

	.tc-floating-card:nth-child(1) {
		top: 5%;
		right: -10px;
	}

	.tc-floating-card:nth-child(2) {
		bottom: 10%;
		left: -10px;
	}

	.tc-floating-card:nth-child(3) {
		display: none;
	}

	.tc-floating-card:nth-child(4) {
		display: none;
	}

}

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

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

	.tc-floating-card {
		animation: none;
	}

}

/* Premium floating proof cards */
.tc-floating-card {
	width: 248px;
	padding: .85rem;
	gap: .75rem;
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 20px;
	box-shadow: 0 22px 44px rgba(15, 23, 42, .13), 0 3px 10px rgba(236, 105, 31, .07);
}

.tc-floating-card:nth-child(1) { top: 9%; right: -24px; }
.tc-floating-card:nth-child(2) { bottom: 18%; left: -22px; }
.tc-floating-card:nth-child(3) { top: 53%; right: -34px; }

.tc-floating-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 15px;
	background: linear-gradient(145deg, rgba(236, 105, 31, .16), rgba(236, 105, 31, .06));
	color: var(--tc-primary);
}

.tc-floating-card__symbol { display: inline-flex; font-size: 0; }
.tc-floating-card__symbol svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tc-floating-card__title { font-size: .9rem; letter-spacing: -.01em; }
.tc-floating-card__subtitle { font-size: .77rem; }

@media (max-width: 991px) {
	.tc-floating-card:nth-child(1) { right: -12px; }
	.tc-floating-card:nth-child(2) { left: -12px; }
	.tc-floating-card:nth-child(3) { right: -18px; }
}

@media (max-width: 767px) {
	.tc-floating-card { width: 178px; }
	.tc-floating-card:nth-child(1) { right: -6px; }
	.tc-floating-card:nth-child(2) { left: -6px; }
}

/* Keep the mobile hero clean: floating proof cards obscure the student at narrow widths. */
@media (max-width: 767px) {
	.tc-hero__floating-cards {
		display: none;
	}
}
/* Compact mobile proof cards: retain trust cues without covering the artwork. */
@media (max-width: 767px) {
	.tc-hero__floating-cards {
		display: block;
		z-index: 10;
		pointer-events: none;
	}

	.tc-floating-card {
		width: 138px;
		max-width: 42%;
		padding: .5rem;
		gap: .45rem;
		border-radius: 13px;
		box-shadow: 0 10px 22px rgba(15,23,42,.1);
	}

	.tc-floating-card:nth-child(1) {
		top: 2%;
		right: -2px;
	}

	.tc-floating-card:nth-child(2) {
		bottom: 3%;
		left: -2px;
	}

	.tc-floating-card:nth-child(3),
	.tc-floating-card:nth-child(4) {
		display: none;
	}

	.tc-floating-card__icon {
		width: 30px;
		height: 30px;
		flex: 0 0 30px;
		border-radius: 9px;
	}

	.tc-floating-card__symbol svg {
		width: 15px;
		height: 15px;
	}

	.tc-floating-card__title {
		margin-bottom: .1rem;
		font-size: .68rem;
		line-height: 1.15;
	}

	.tc-floating-card__subtitle {
		font-size: .58rem;
		line-height: 1.25;
	}
}
/* New global-study-options pill */
.tc-floating-card--top-left {
	top: 18%;
	left: -35px;
}

@media (max-width: 991px) {
	.tc-floating-card--top-left {
		left: -12px;
	}
}

@media (max-width: 767px) {
	.tc-floating-card--top-left {
		display: none;
	}
}