/* =========================================================
 * Tech Resolve — Contact Hero
 * ======================================================= */

.tr-contact-hero {
	position: relative;
	overflow: hidden;

	padding:
		clamp(84px, 9vw, 150px)
		var(--tr-gutter)
		clamp(90px, 10vw, 160px);

	color: #fff;

	background:
		linear-gradient(
			135deg,
			#07100d 0%,
			#0a1712 52%,
			#06100d 100%
		);
}


.tr-contact-hero__background,
.tr-contact-hero__grid,
.tr-contact-hero__glow,
.tr-contact-hero__beam {
	position: absolute;
	pointer-events: none;
}


.tr-contact-hero__background {
	inset: 0;
}


.tr-contact-hero__grid {
	inset: 0;

	opacity: 0.22;

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.045) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.045) 1px,
			transparent 1px
		);

	background-size: 54px 54px;

	mask-image:
		linear-gradient(
			to bottom,
			black,
			transparent 88%
		);
}


.tr-contact-hero__glow {
	border-radius: 50%;
}


.tr-contact-hero__glow--green {
	top: -24%;
	right: 3%;

	width: 560px;
	height: 560px;

	background:
		radial-gradient(
			circle,
			rgba(25, 224, 120, 0.16),
			transparent 67%
		);
}


.tr-contact-hero__glow--cyan {
	right: 29%;
	bottom: -45%;

	width: 500px;
	height: 500px;

	background:
		radial-gradient(
			circle,
			rgba(20, 215, 232, 0.1),
			transparent 68%
		);
}


.tr-contact-hero__beam {
	top: -40%;
	right: 23%;

	width: 1px;
	height: 150%;

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(25, 224, 120, 0.36),
			transparent
		);

	transform: rotate(28deg);
	transform-origin: center;
}


.tr-contact-hero__shell {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(420px, 0.95fr);
	align-items: center;
	gap: clamp(50px, 8vw, 130px);

	width: min(100%, var(--tr-container));
	margin: 0 auto;
}


/* =========================================================
 * Copy
 * ======================================================= */

.tr-contact-hero__copy {
	max-width: 760px;
}


.tr-contact-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;

	margin-bottom: 25px;

	color: #19e078;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
}


.tr-contact-hero__eyebrow > span {
	width: 8px;
	height: 8px;

	background: currentColor;
	border-radius: 50%;

	box-shadow:
		0 0 0 6px rgba(25, 224, 120, 0.08);
}


.tr-contact-hero__title {
	max-width: 780px;
	margin: 0;

	color: #fff;

	font-size: clamp(52px, 6.2vw, 94px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.055em;
}


.tr-contact-hero__description {
	max-width: 690px;
	margin: 30px 0 0;

	color: rgba(255, 255, 255, 0.65);

	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.75;
}


.tr-contact-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 40px;
}


.tr-contact-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;

	min-height: 54px;
	padding: 0 23px;

	border-radius: 999px;

	font-size: 12px;
	font-weight: 800;
	text-decoration: none;

	transition:
		transform 180ms var(--tr-ease),
		background 180ms ease,
		border-color 180ms ease;
}


.tr-contact-hero__button:hover {
	transform: translateY(-2px);
}


.tr-contact-hero__button--primary {
	color: #06100d;

	background: #19e078;

	border: 1px solid #19e078;
}


.tr-contact-hero__button--primary:hover {
	color: #06100d;

	background: #35ee8d;
}


.tr-contact-hero__button--primary svg {
	width: 19px;
	height: 19px;
}


.tr-contact-hero__button--secondary {
	color: rgba(255, 255, 255, 0.82);

	background: rgba(255, 255, 255, 0.035);

	border: 1px solid rgba(255, 255, 255, 0.13);
}


.tr-contact-hero__button--secondary:hover {
	color: #fff;

	border-color: rgba(255, 255, 255, 0.3);
}


/* =========================================================
 * Portal
 * ======================================================= */

.tr-contact-hero__portal {
	position: relative;

	padding: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.055),
			rgba(255, 255, 255, 0.016)
		);

	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 26px;

	box-shadow:
		0 35px 90px rgba(0, 0, 0, 0.25);

	transform:
		perspective(1000px)
		rotateX(var(--tr-contact-rx, 0deg))
		rotateY(var(--tr-contact-ry, 0deg));

	transition:
		transform 220ms var(--tr-ease);
}


.tr-contact-hero__portal-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	padding-bottom: 18px;

	color: rgba(255, 255, 255, 0.46);

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);

	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
}


.tr-contact-hero__portal-live {
	display: flex;
	align-items: center;
	gap: 7px;

	color: #19e078;
}


.tr-contact-hero__portal-live i {
	width: 6px;
	height: 6px;

	background: currentColor;
	border-radius: 50%;

	box-shadow:
		0 0 12px rgba(25, 224, 120, 0.8);
}


.tr-contact-hero__portal-core {
	position: relative;

	display: grid;
	place-items: center;

	min-height: 280px;
}


.tr-contact-hero__portal-orbit {
	position: absolute;

	width: 200px;
	height: 200px;

	border: 1px solid rgba(25, 224, 120, 0.23);
	border-radius: 50%;
}


.tr-contact-hero__portal-orbit::before,
.tr-contact-hero__portal-orbit::after {
	content: "";

	position: absolute;
	inset: 20px;

	border: 1px solid rgba(20, 215, 232, 0.13);
	border-radius: 50%;
}


.tr-contact-hero__portal-orbit::after {
	inset: 47px;

	border-color: rgba(255, 255, 255, 0.08);
}


.tr-contact-hero__portal-orbit > span {
	position: absolute;
	top: 50%;
	left: -4px;

	width: 8px;
	height: 8px;

	background: #19e078;
	border-radius: 50%;

	box-shadow:
		0 0 18px rgba(25, 224, 120, 0.8);
}


.tr-contact-hero__portal-center {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	flex-direction: column;

	width: 118px;
	height: 118px;
	padding-top: 24px;

	background:
		radial-gradient(
			circle,
			rgba(25, 224, 120, 0.16),
			rgba(25, 224, 120, 0.035) 56%,
			transparent
		);

	border: 1px solid rgba(25, 224, 120, 0.24);
	border-radius: 50%;
}


.tr-contact-hero__portal-number {
	color: #19e078;

	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}


.tr-contact-hero__portal-center strong {
	margin-top: 8px;

	color: #fff;

	font-size: 17px;
	letter-spacing: 0.08em;
}


.tr-contact-hero__portal-center small {
	margin-top: 3px;

	color: rgba(255, 255, 255, 0.4);

	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.18em;
}


.tr-contact-hero__portal-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	padding: 14px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.tr-contact-hero__portal-status span {
	color: #19e078;

	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
}


.tr-contact-hero__portal-status strong {
	color: rgba(255, 255, 255, 0.62);

	font-size: 10px;
	font-weight: 600;
}


.tr-contact-hero__signals {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 8px;

	margin-top: 12px;
}


.tr-contact-hero__signals > div {
	display: flex;
	align-items: center;
	gap: 11px;

	min-height: 52px;
	padding: 11px 13px;

	background: rgba(255, 255, 255, 0.025);

	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 11px;
}


.tr-contact-hero__signals span {
	color: #19e078;

	font-size: 9px;
	font-weight: 800;
}


.tr-contact-hero__signals strong {
	color: rgba(255, 255, 255, 0.66);

	font-size: 10px;
	font-weight: 600;
}


/* =========================================================
 * Basic Responsive
 * ======================================================= */

@media (max-width: 980px) {

	.tr-contact-hero__shell {
		grid-template-columns: 1fr;
	}


	.tr-contact-hero__portal {
		max-width: 620px;
	}

}