:root {
	--th-dark: #06111f;
	--th-navy: #0a1b31;
	--th-blue: #0b76d1;
	--th-blue-deep: #064f9f;
	--th-cyan: #10d5ff;
	--th-green: #27d687;
	--th-amber: #ffb84d;
	--th-text: #172235;
	--th-muted: #637084;
	--th-soft: #f4f8ff;
	--th-soft-blue: #eaf5ff;
	--th-border: rgba(12, 47, 88, 0.12);
	--th-white: #ffffff;
	--th-shadow: 0 24px 70px rgba(4, 24, 51, 0.14);
}

.threat-hunting-page {
	background: var(--th-white);
	color: var(--th-text);
	font-family: inherit;
	overflow: hidden;
}

.threat-hunting-page * {
	box-sizing: border-box;
}

.th-section {
	position: relative;
	padding: 92px 0;
}

.th-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--th-blue);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.th-eyebrow::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--th-blue), var(--th-cyan));
}

.th-section-heading h2,
.th-cta__box h2 {
	margin: 0;
	color: var(--th-dark);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.th-section-heading p {
	margin: 18px 0 0;
	color: var(--th-muted);
	font-size: 1.06rem;
	line-height: 1.75;
}

.th-center {
	max-width: 840px;
	margin: 0 auto 46px;
	text-align: center;
}

.th-center .th-eyebrow {
	justify-content: center;
}

.th-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.th-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.th-btn--primary {
	background: linear-gradient(135deg, var(--th-blue), var(--th-cyan));
	box-shadow: 0 18px 42px rgba(15, 138, 220, 0.34);
	color: var(--th-white);
}

.th-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.1);
	color: var(--th-white);
	backdrop-filter: blur(10px);
}

.th-btn--outline:hover {
	border-color: rgba(255, 255, 255, 0.68);
	background: rgba(255, 255, 255, 0.18);
	color: var(--th-white);
}

.th-btn--light {
	background: var(--th-white);
	box-shadow: 0 16px 38px rgba(2, 16, 36, 0.24);
	color: var(--th-blue-deep);
}

.th-hero {
	position: relative;
	min-height: 760px;
	padding: 128px 0 96px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(115deg, rgba(4, 13, 28, 0.96) 0%, rgba(5, 24, 47, 0.9) 48%, rgba(4, 78, 128, 0.78) 100%),
		url('../images/threat-hunting/banner.jpg') center / cover no-repeat;
	color: var(--th-white);
}

.th-hero::before,
.th-hero::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.th-hero::before {
	inset: auto -160px -190px auto;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, rgba(16, 213, 255, 0.36), rgba(16, 213, 255, 0));
}

.th-hero::after {
	top: 96px;
	left: -130px;
	width: 330px;
	height: 330px;
	background: radial-gradient(circle, rgba(39, 214, 135, 0.23), rgba(39, 214, 135, 0));
}

.th-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.72fr);
	gap: 56px;
	align-items: center;
}

.th-hero .th-eyebrow {
	color: #94ecff;
}

.th-hero h1 {
	max-width: 790px;
	margin: 0;
	color: var(--th-white) !important;
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	font-weight: 950;
	line-height: 0.99;
	letter-spacing: -0.065em;
	text-wrap: balance;
}

.th-hero__content > p {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 1.4vw, 1.24rem);
	line-height: 1.76;
}

.th-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.th-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.th-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.87);
	font-size: 0.9rem;
	font-weight: 750;
	backdrop-filter: blur(12px);
}

.th-trust-row span::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--th-green);
	box-shadow: 0 0 0 5px rgba(39, 214, 135, 0.15);
}

.th-hero__visual {
	min-width: 0;
}

.th-radar-card {
	position: relative;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	background: rgba(3, 17, 36, 0.76);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(20px);
	overflow: hidden;
}

.th-radar-card::before {
	content: '';
	position: absolute;
	inset: 16px;
	border: 1px solid rgba(16, 213, 255, 0.18);
	border-radius: 24px;
	pointer-events: none;
}

.th-radar-card__top,
.th-radar-card__metrics {
	position: relative;
	z-index: 1;
}

.th-radar-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.th-radar-card__top span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(39, 214, 135, 0.15);
	color: #aff7d1;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.th-radar-card__top span::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--th-green);
}

.th-radar-card__top strong {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #9ceeff;
	font-size: 0.82rem;
	font-weight: 850;
}

.th-radar {
	position: relative;
	z-index: 1;
	width: min(100%, 360px);
	aspect-ratio: 1;
	margin: 34px auto 30px;
	border-radius: 50%;
	background:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		radial-gradient(circle, rgba(16, 213, 255, 0.2), rgba(16, 213, 255, 0.04) 43%, rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0.02) 100%);
	background-size: 34px 34px, 34px 34px, auto;
	box-shadow: inset 0 0 45px rgba(16, 213, 255, 0.18), 0 0 70px rgba(16, 213, 255, 0.08);
	overflow: hidden;
}

.th-radar::before,
.th-radar::after {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	background: rgba(148, 236, 255, 0.3);
	transform: translate(-50%, -50%);
}

.th-radar::before {
	width: 1px;
	height: 100%;
}

.th-radar::after {
	width: 100%;
	height: 1px;
}

.th-radar__ring {
	position: absolute;
	inset: 18%;
	border: 1px solid rgba(148, 236, 255, 0.24);
	border-radius: 50%;
}

.th-radar__ring--two {
	inset: 34%;
}

.th-radar__scan {
	position: absolute;
	inset: 0;
	background: conic-gradient(from 0deg, rgba(16, 213, 255, 0.42), rgba(16, 213, 255, 0.08) 28deg, transparent 68deg);
	animation: th-scan 5.5s linear infinite;
	transform-origin: 50% 50%;
}

.th-radar__dot {
	position: absolute;
	z-index: 2;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--th-amber);
	box-shadow: 0 0 0 7px rgba(255, 184, 77, 0.16), 0 0 28px rgba(255, 184, 77, 0.45);
}

.th-radar__dot--one {
	top: 30%;
	left: 65%;
}

.th-radar__dot--two {
	top: 58%;
	left: 27%;
}

.th-radar__dot--three {
	top: 72%;
	left: 72%;
	background: var(--th-green);
	box-shadow: 0 0 0 7px rgba(39, 214, 135, 0.16), 0 0 28px rgba(39, 214, 135, 0.45);
}

.th-radar-card__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.th-radar-card__metrics div {
	padding: 14px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
}

.th-radar-card__metrics strong,
.th-radar-card__metrics span {
	display: block;
}

.th-radar-card__metrics strong {
	color: var(--th-white);
	font-size: 0.92rem;
	font-weight: 850;
}

.th-radar-card__metrics span {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
}

@keyframes th-scan {
	to {
		transform: rotate(360deg);
	}
}

.th-overview {
	background: linear-gradient(180deg, var(--th-white), var(--th-soft));
}

.th-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: 56px;
	align-items: center;
}

.th-rich-text p {
	margin: 18px 0 0;
	color: var(--th-muted);
	font-size: 1.06rem;
	line-height: 1.78;
}

.th-overview__panel {
	position: relative;
	padding: 24px;
	border: 1px solid var(--th-border);
	border-radius: 30px;
	background: var(--th-white);
	box-shadow: var(--th-shadow);
}

.th-overview__panel::before {
	content: '';
	position: absolute;
	inset: -28px -28px auto auto;
	width: 160px;
	height: 160px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(16, 213, 255, 0.22), rgba(16, 213, 255, 0));
	pointer-events: none;
}

.th-overview__panel img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	background: var(--th-soft-blue);
}

.th-overview__panel h3 {
	margin: 22px 0 0;
	color: var(--th-dark);
	font-size: 1.42rem;
	font-weight: 850;
	line-height: 1.28;
}

.th-overview__panel p {
	margin: 12px 0 0;
	color: var(--th-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.th-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 46px;
}

.th-stat-grid article {
	padding: 24px;
	border: 1px solid var(--th-border);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 16px 44px rgba(6, 28, 56, 0.08);
}

.th-stat-grid strong,
.th-stat-grid span {
	display: block;
}

.th-stat-grid strong {
	color: var(--th-blue);
	font-size: clamp(1.75rem, 3vw, 2.65rem);
	font-weight: 950;
	line-height: 1;
}

.th-stat-grid span {
	margin-top: 10px;
	color: var(--th-muted);
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.45;
}

.th-challenges {
	background: var(--th-white);
}

.th-challenge-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.th-challenge-card {
	position: relative;
	min-height: 250px;
	padding: 28px;
	border: 1px solid var(--th-border);
	border-radius: 26px;
	background: linear-gradient(180deg, var(--th-white), #f8fbff);
	box-shadow: 0 18px 46px rgba(8, 32, 63, 0.08);
	overflow: hidden;
}

.th-challenge-card::after {
	content: '';
	position: absolute;
	inset: auto -48px -58px auto;
	width: 138px;
	height: 138px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(11, 118, 209, 0.16), rgba(11, 118, 209, 0));
}

.th-challenge-card > span {
	display: inline-flex;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(11, 118, 209, 0.12), rgba(16, 213, 255, 0.22));
}

.th-challenge-card > span::before {
	content: '!';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--th-blue);
	font-size: 1.35rem;
	font-weight: 950;
}

.th-challenge-card h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--th-dark);
	font-size: 1.16rem;
	font-weight: 850;
	line-height: 1.3;
}

.th-challenge-card p {
	position: relative;
	z-index: 1;
	margin: 12px 0 0;
	color: var(--th-muted);
	font-size: 0.96rem;
	line-height: 1.68;
}

.th-capabilities {
	background:
		radial-gradient(circle at 8% 12%, rgba(16, 213, 255, 0.12), transparent 32%),
		linear-gradient(180deg, #f8fbff, var(--th-white));
}

.th-capability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.th-capability-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--th-border);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 20px 54px rgba(6, 31, 66, 0.09);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.th-capability-card:hover {
	transform: translateY(-6px);
	border-color: rgba(11, 118, 209, 0.28);
	box-shadow: 0 26px 72px rgba(6, 31, 66, 0.14);
}

.th-capability-card__icon,
.th-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 21px;
	background: linear-gradient(135deg, rgba(11, 118, 209, 0.1), rgba(16, 213, 255, 0.18));
}

.th-capability-card__icon img,
.th-benefit-card__icon img {
	display: block;
	max-width: 42px;
	max-height: 42px;
}

.th-capability-card h3 {
	margin: 24px 0 0;
	color: var(--th-dark);
	font-size: 1.18rem;
	font-weight: 850;
	line-height: 1.32;
}

.th-capability-card p {
	margin: 12px 0 0;
	color: var(--th-muted);
	font-size: 0.97rem;
	line-height: 1.7;
}

.th-benefits {
	background: var(--th-dark);
	color: var(--th-white);
}

.th-benefits::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent);
	pointer-events: none;
}

.th-benefits__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 56px;
	align-items: start;
}

.th-benefits .th-section-heading {
	position: sticky;
	top: 96px;
}

.th-benefits .th-eyebrow {
	color: #94ecff;
}

.th-benefits .th-section-heading h2 {
	color: var(--th-white);
}

.th-benefits .th-section-heading p {
	color: rgba(255, 255, 255, 0.72);
}

.th-benefit-list {
	display: grid;
	gap: 16px;
}

.th-benefit-card {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 20px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.th-benefit-card__icon {
	background: rgba(255, 255, 255, 0.12);
}

.th-benefit-card h3 {
	margin: 0;
	color: var(--th-white);
	font-size: 1.2rem;
	font-weight: 850;
	line-height: 1.32;
}

.th-benefit-card p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.98rem;
	line-height: 1.7;
}

.th-scope {
	background: linear-gradient(180deg, var(--th-white), var(--th-soft));
}

.th-scope-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.th-scope-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--th-border);
	border-radius: 26px;
	background: var(--th-white);
	box-shadow: 0 18px 44px rgba(6, 31, 66, 0.08);
	overflow: hidden;
}

.th-scope-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--th-blue), var(--th-cyan));
}

.th-scope-card h3 {
	margin: 0;
	color: var(--th-dark);
	font-size: 1.2rem;
	font-weight: 850;
	line-height: 1.32;
}

.th-scope-card p {
	margin: 12px 0 0;
	color: var(--th-muted);
	font-size: 0.97rem;
	line-height: 1.7;
}

.th-process {
	background: var(--th-white);
}

.th-process__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 58px;
	align-items: start;
}

.th-process__note {
	margin-top: 28px;
	padding: 22px;
	border: 1px solid rgba(11, 118, 209, 0.18);
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(11, 118, 209, 0.08), rgba(16, 213, 255, 0.12));
}

.th-process__note strong,
.th-process__note span {
	display: block;
}

.th-process__note strong {
	color: var(--th-blue-deep);
	font-size: 1rem;
	font-weight: 900;
}

.th-process__note span {
	margin-top: 8px;
	color: var(--th-muted);
	font-size: 0.98rem;
	line-height: 1.65;
}

.th-step-list {
	position: relative;
	display: grid;
	gap: 16px;
}

.th-step-card {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	gap: 20px;
	padding: 24px;
	border: 1px solid var(--th-border);
	border-radius: 26px;
	background: var(--th-white);
	box-shadow: 0 18px 50px rgba(6, 31, 66, 0.08);
}

.th-step-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--th-blue), var(--th-cyan));
	box-shadow: 0 14px 30px rgba(11, 118, 209, 0.22);
	color: var(--th-white);
	font-size: 1.05rem;
	font-weight: 950;
}

.th-step-card h3 {
	margin: 0;
	color: var(--th-dark);
	font-size: 1.18rem;
	font-weight: 850;
	line-height: 1.32;
}

.th-step-card p {
	margin: 10px 0 0;
	color: var(--th-muted);
	font-size: 0.98rem;
	line-height: 1.72;
}

.th-usecases {
	background:
		radial-gradient(circle at 92% 18%, rgba(39, 214, 135, 0.13), transparent 30%),
		linear-gradient(135deg, #071426, #0b2545 56%, #084f86);
	color: var(--th-white);
}

.th-usecases__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 44px;
	align-items: center;
}

.th-usecases__card {
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.th-usecases__card .th-eyebrow {
	color: #94ecff;
}

.th-usecases__card h2 {
	margin: 0;
	color: var(--th-white) !important;
	font-size: clamp(1.9rem, 3.4vw, 3rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.th-usecases__card p {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.02rem;
	line-height: 1.75;
}

.th-usecase-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.th-usecase-item {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
}

.th-usecase-item span {
	width: 12px;
	height: 12px;
	margin-top: 7px;
	border-radius: 999px;
	background: var(--th-green);
	box-shadow: 0 0 0 6px rgba(39, 214, 135, 0.14);
}

.th-usecase-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.98rem;
	font-weight: 650;
	line-height: 1.65;
}

.th-why {
	background: var(--th-soft);
}

.th-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 52px;
	align-items: center;
}

.th-why-list {
	display: grid;
	gap: 14px;
}

.th-why-item {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 14px;
	padding: 20px 22px;
	border: 1px solid var(--th-border);
	border-radius: 22px;
	background: var(--th-white);
	box-shadow: 0 14px 34px rgba(6, 31, 66, 0.07);
}

.th-why-item span {
	width: 15px;
	height: 15px;
	margin-top: 6px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--th-blue), var(--th-cyan));
	box-shadow: 0 0 0 6px rgba(16, 213, 255, 0.13);
}

.th-why-item p {
	margin: 0;
	color: var(--th-muted);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.68;
}

.th-faq {
	background: var(--th-white);
}

.th-faq__list {
	max-width: 920px;
	margin: 0 auto;
	display: grid;
	gap: 14px;
}

.th-faq details {
	border: 1px solid var(--th-border);
	border-radius: 22px;
	background: var(--th-white);
	box-shadow: 0 14px 34px rgba(6, 31, 66, 0.07);
	overflow: hidden;
}

.th-faq summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 22px 58px 22px 24px;
	color: var(--th-dark);
	font-size: 1.04rem;
	font-weight: 850;
	line-height: 1.45;
}

.th-faq summary::-webkit-details-marker {
	display: none;
}

.th-faq summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--th-soft-blue);
	color: var(--th-blue);
	font-size: 1.25rem;
	font-weight: 850;
	transform: translateY(-50%);
}

.th-faq details[open] summary::after {
	content: '−';
}

.th-faq details p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--th-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.th-cta {
	padding-top: 0;
	background: var(--th-white);
}

.th-cta__box {
	position: relative;
	padding: 64px;
	border-radius: 34px;
	background:
		radial-gradient(circle at 85% 20%, rgba(16, 213, 255, 0.28), transparent 32%),
		linear-gradient(135deg, #06111f, #0a2a4c 58%, #0b76d1);
	box-shadow: 0 30px 90px rgba(6, 31, 66, 0.22);
	color: var(--th-white);
	overflow: hidden;
}

.th-cta__box::after {
	content: '';
	position: absolute;
	right: -110px;
	bottom: -130px;
	width: 300px;
	height: 300px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(39, 214, 135, 0.24), rgba(39, 214, 135, 0));
	pointer-events: none;
}

.th-cta__box .th-eyebrow {
	color: #94ecff;
}

.th-cta__box h2 {
	max-width: 820px;
	color: var(--th-white) !important;
}

.th-cta__box p {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 18px 0 28px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.08rem;
	line-height: 1.76;
}

.th-cta__box .th-btn {
	position: relative;
	z-index: 1;
}

@media (max-width: 1200px) {
	.th-hero__grid,
	.th-overview__grid,
	.th-process__grid,
	.th-benefits__grid,
	.th-usecases__grid,
	.th-why__grid {
		gap: 38px;
	}

	.th-challenge-grid,
	.th-capability-grid,
	.th-scope-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.th-section {
		padding: 72px 0;
	}

	.th-hero {
		min-height: auto;
		padding: 112px 0 76px;
	}

	.th-hero__grid,
	.th-overview__grid,
	.th-process__grid,
	.th-benefits__grid,
	.th-usecases__grid,
	.th-why__grid {
		grid-template-columns: 1fr;
	}

	.th-benefits .th-section-heading {
		position: static;
	}

	.th-stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.th-hero__visual {
		max-width: 520px;
	}
}

@media (max-width: 768px) {
	.th-section {
		padding: 58px 0;
	}

	.th-hero {
		padding: 96px 0 64px;
	}

	.th-hero h1 {
		font-size: clamp(2.45rem, 12vw, 4.2rem);
	}

	.th-hero__actions,
	.th-trust-row {
		align-items: stretch;
		flex-direction: column;
	}

	.th-btn,
	.th-trust-row span {
		width: 100%;
	}

	.th-radar-card {
		padding: 22px;
		border-radius: 24px;
	}

	.th-radar-card__metrics,
	.th-stat-grid,
	.th-challenge-grid,
	.th-capability-grid,
	.th-scope-grid,
	.th-usecase-list {
		grid-template-columns: 1fr;
	}

	.th-benefit-card,
	.th-step-card {
		grid-template-columns: 1fr;
	}

	.th-cta__box {
		padding: 42px 28px;
		border-radius: 28px;
	}
}

@media (max-width: 520px) {
	.th-section-heading h2,
	.th-cta__box h2 {
		font-size: 2rem;
	}

	.th-hero__content > p,
	.th-section-heading p,
	.th-rich-text p {
		font-size: 1rem;
	}

	.th-overview__panel,
	.th-challenge-card,
	.th-capability-card,
	.th-scope-card,
	.th-usecases__card {
		padding: 22px;
		border-radius: 22px;
	}

	.th-radar {
		width: 100%;
	}

	.th-faq summary {
		padding-right: 52px;
	}
}