/* =========================================================
 * Tech Resolve — Website Final CTA
 * ======================================================= */

.tr-website-final-cta {
	position: relative;
	overflow: hidden;

	padding:
		clamp(115px, 12vw, 200px)
		var(--tr-gutter);

	color: #fff;

	background:
		linear-gradient(
			135deg,
			#05100b,
			#081812 52%,
			#05100c
		);
}


.tr-website-final-cta__background,
.tr-website-final-cta__grid,
.tr-website-final-cta__glow,
.tr-website-final-cta__beam {
	position: absolute;

	pointer-events: none;
}


.tr-website-final-cta__background {
	inset: 0;
}


.tr-website-final-cta__grid {
	inset: 0;

	opacity: .16;

	background-image:
		linear-gradient(
			rgba(255,255,255,.04) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255,255,255,.04) 1px,
			transparent 1px
		);

	background-size: 54px 54px;
}


.tr-website-final-cta__glow--green {
	top: -240px;
	right: -80px;

	width: 760px;
	height: 760px;

	background:
		radial-gradient(
			circle,
			rgba(25,224,120,.14),
			transparent 68%
		);
}


.tr-website-final-cta__glow--cyan {
	bottom: -390px;
	left: 20%;

	width: 700px;
	height: 700px;

	background:
		radial-gradient(
			circle,
			rgba(20,215,232,.06),
			transparent 70%
		);
}


.tr-website-final-cta__beam {
	top: -40%;
	right: 25%;

	width: 1px;
	height: 170%;

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(25,224,120,.24),
			transparent
		);

	transform:
		rotate(29deg);
}


.tr-website-final-cta__shell {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns:
		minmax(0, 1.1fr)
		minmax(430px, .9fr);
	align-items: center;
	gap: clamp(60px, 9vw, 140px);

	width: min(100%, var(--tr-container));
	margin: 0 auto;
}


/* =========================================================
 * Copy
 * ======================================================= */

.tr-website-final-cta__eyebrow {
	display: block;

	margin-bottom: 20px;

	color: #19e078;

	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
}


.tr-website-final-cta__copy h2 {
	max-width: 850px;
	margin: 0;

	font-size:
		clamp(50px, 6.5vw, 96px);

	font-weight: 800;
	line-height: .92;
	letter-spacing: -.065em;
}


.tr-website-final-cta__copy h2 > span,
.tr-website-final-cta__copy h2 > strong {
	display: block;
}


.tr-website-final-cta__copy h2 > span {
	color: #fff;
}


.tr-website-final-cta__copy h2 > strong {
	margin-top: 8px;

	color: #19e078;

	font-weight: inherit;
}


.tr-website-final-cta__copy > p {
	max-width: 660px;
	margin: 30px 0 0;

	color: rgba(255,255,255,.53);

	font-size: 14px;
	line-height: 1.78;
}


/* =========================================================
 * Actions
 * ======================================================= */

.tr-website-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;

	margin-top: 38px;
}


.tr-website-final-cta__primary,
.tr-website-final-cta__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;

	min-height: 52px;
	padding: 0 20px;

	text-decoration: none;

	border-radius: 999px;

	font-size: 10px;
	font-weight: 800;

	transition:
		transform 170ms var(--tr-ease),
		background 170ms ease,
		border-color 170ms ease;
}


.tr-website-final-cta__primary {
	color: #06100d;

	background: #19e078;

	border: 1px solid #19e078;
}


.tr-website-final-cta__primary:hover {
	color: #06100d;

	background: #35ef8d;

	transform:
		translateY(-2px);
}


.tr-website-final-cta__secondary {
	color: rgba(255,255,255,.62);

	background:
		rgba(255,255,255,.025);

	border:
		1px solid rgba(255,255,255,.11);
}


.tr-website-final-cta__secondary:hover {
	color: #fff;

	border-color:
		rgba(255,255,255,.23);

	transform:
		translateY(-2px);
}


.tr-website-final-cta__primary svg {
	width: 17px;
	height: 17px;
}


/* =========================================================
 * Portal
 * ======================================================= */

.tr-website-final-cta__portal {
	overflow: hidden;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.05),
			rgba(255,255,255,.013)
		);

	border:
		1px solid rgba(255,255,255,.09);

	border-radius: 24px;

	box-shadow:
		0 40px 100px rgba(0,0,0,.25);
}


.tr-website-final-cta__portal-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;

	min-height: 51px;
	padding: 0 18px;

	color: rgba(255,255,255,.31);

	border-bottom:
		1px solid rgba(255,255,255,.075);

	font-size: 8px;
	font-weight: 800;
	letter-spacing: .12em;
}


.tr-website-final-cta__portal-top > div {
	display: flex;
	align-items: center;
	gap: 7px;

	color: #19e078;
}


.tr-website-final-cta__portal-top i {
	width: 6px;
	height: 6px;

	background: #19e078;

	border-radius: 50%;

	box-shadow:
		0 0 12px rgba(25,224,120,.75);
}


/* =========================================================
 * Radar
 * ======================================================= */

.tr-website-final-cta__radar {
	position: relative;

	display: grid;
	place-items: center;

	min-height: 330px;
}


.tr-website-final-cta__rings {
	position: absolute;

	width: 235px;
	height: 235px;
}


.tr-website-final-cta__rings span {
	position: absolute;

	border:
		1px solid rgba(25,224,120,.13);

	border-radius: 50%;
}


.tr-website-final-cta__rings span:nth-child(1) {
	inset: 0;
}


.tr-website-final-cta__rings span:nth-child(2) {
	inset: 32px;

	border-color:
		rgba(20,215,232,.1);
}


.tr-website-final-cta__rings span:nth-child(3) {
	inset: 67px;

	border-color:
		rgba(255,255,255,.08);
}


.tr-website-final-cta__core {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	width: 122px;
	height: 122px;

	background:
		radial-gradient(
			circle,
			rgba(25,224,120,.16),
			rgba(25,224,120,.025)
		);

	border:
		1px solid rgba(25,224,120,.25);

	border-radius: 50%;
}


.tr-website-final-cta__core span {
	color: #19e078;

	font-size: 8px;
	font-weight: 800;
}


.tr-website-final-cta__core strong {
	margin-top: 7px;

	color: #fff;

	font-size: 16px;
	letter-spacing: .08em;
}


.tr-website-final-cta__core small {
	margin-top: 3px;

	color: rgba(255,255,255,.3);

	font-size: 7px;
	font-weight: 800;
	letter-spacing: .13em;
}


/* =========================================================
 * Status
 * ======================================================= */

.tr-website-final-cta__status {
	display: grid;
	grid-template-columns:
		1fr
		auto
		1fr;
	align-items: center;
	gap: 20px;

	padding: 20px;

	border-top:
		1px solid rgba(255,255,255,.07);
}


.tr-website-final-cta__status > div > span {
	display: block;

	color: rgba(255,255,255,.27);

	font-size: 7px;
	font-weight: 800;
	letter-spacing: .12em;
}


.tr-website-final-cta__status > div > strong {
	display: block;

	margin-top: 6px;

	color: rgba(255,255,255,.68);

	font-size: 9px;
}


.tr-website-final-cta__status > i {
	width: 6px;
	height: 6px;

	background: #19e078;

	border-radius: 50%;

	box-shadow:
		0 0 12px rgba(25,224,120,.7);
}


/* =========================================================
 * Portal Bottom
 * ======================================================= */

.tr-website-final-cta__portal-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;

	min-height: 48px;

	color: rgba(255,255,255,.27);

	border-top:
		1px solid rgba(255,255,255,.07);

	font-size: 7px;
	font-weight: 800;
	letter-spacing: .12em;
}


.tr-website-final-cta__portal-bottom i {
	width: 18px;
	height: 1px;

	background:
		rgba(25,224,120,.18);
}


@media (max-width: 1050px) {

	.tr-website-final-cta__shell {
		grid-template-columns: 1fr;
	}


	.tr-website-final-cta__portal {
		max-width: 700px;
	}

}