/* =========================================================
 * Tech Resolve — Quote Hero
 * Version: 2.1.0
 * Homepage Typography Alignment
 * ======================================================= */
.tr-quote-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(132px,11vw,190px) var(--tr-gutter) clamp(78px,7vw,112px);
	color: #ffffff;
	background: radial-gradient(circle at 78% 38%,rgba(25,224,120,.13),transparent 30%),#06100d;
}
.tr-quote-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .1;
	background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
	background-size: 88px 88px;
	pointer-events: none;
}
.tr-quote-hero__shell {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0,.88fr) minmax(540px,.8fr);
	gap: clamp(62px,7vw,118px);
	align-items: center;
	width: min(100%,var(--tr-container-wide));
	margin: 0 auto;
}
.tr-quote-hero__copy {
	max-width: 820px;
}
.tr-quote-hero__eyebrow {
	display: block;
	margin-bottom: 20px;
	color: var(--tr-green);
	font-size: var(--tr-text-ui);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
	letter-spacing: .15em;
}
.tr-quote-hero__copy h1 {
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(54px,5.8vw,84px);
	font-weight: 790;
	line-height: .95;
	letter-spacing: -.058em;
	text-wrap: balance;
}
.tr-quote-hero__copy > p {
	max-width: 700px;
	margin: 30px 0 0;
	color: rgba(255,255,255,.64) !important;
	font-size: var(--tr-text-body);
	font-weight: var(--tr-weight-body);
	line-height: var(--tr-line-body);
}
.tr-quote-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 38px;
}
.tr-quote-hero__button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 58px;
	padding: 0 24px;
	color: #06100d !important;
	background: var(--tr-green) !important;
	border: 1px solid var(--tr-green) !important;
	border-radius: 999px !important;
	text-decoration: none !important;
	font-size: var(--tr-text-card);
	font-weight: var(--tr-weight-bold);
	line-height: var(--tr-line-card);
}
.tr-quote-hero__button i {
	width: 22px;
	height: 22px;
	background: #06100d;
	border-radius: 50%;
}
.tr-quote-hero__note {
	color: rgba(255,255,255,.42);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-medium);
	line-height: var(--tr-line-ui);
}
/* =========================================================
 * Brief
 * ======================================================= */
.tr-quote-hero__brief {
	overflow: hidden;
	background: #09160f;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 30px;
	box-shadow: 0 46px 115px rgba(0,0,0,.3);
	transform: rotate(1.5deg);
}
.tr-quote-hero__brief-head,
.tr-quote-hero__brief-foot {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 60px;
	padding: 0 18px;
	color: rgba(255,255,255,.34);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
	letter-spacing: .06em;
}
.tr-quote-hero__brief-head {
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.tr-quote-hero__brief-head > div {
	display: flex;
	align-items: center;
	gap: 9px;
}
.tr-quote-hero__brief-head > div i {
	width: 7px;
	height: 7px;
	background: var(--tr-green);
	border-radius: 50%;
}
.tr-quote-hero__brief-head strong,
.tr-quote-hero__brief-foot strong {
	color: var(--tr-green) !important;
	font-size: inherit;
	font-weight: inherit;
}
.tr-quote-hero__brief-foot {
	border-top: 1px solid rgba(255,255,255,.08);
}
.tr-quote-hero__brief-foot i {
	flex: 1;
	height: 1px;
	background: var(--tr-green);
}
.tr-quote-hero__brief-body {
	padding: 30px;
	background: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
	background-size: 46px 46px;
}
/* =========================================================
 * Brief Main
 * ======================================================= */
.tr-quote-hero__brief-main {
	padding: 26px;
	background: #ffffff;
	border-radius: 18px;
	transform: rotate(-1.5deg);
}
.tr-quote-hero__brief-main > span {
	color: var(--tr-green-deep);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
	letter-spacing: .08em;
}
.tr-quote-hero__brief-main > strong {
	display: block;
	max-width: 430px;
	margin-top: 10px;
	color: #0b1712 !important;
	font-size: clamp(26px,2.6vw,38px);
	font-weight: var(--tr-weight-bold);
	line-height: 1.02;
	letter-spacing: -.042em;
}
.tr-quote-hero__brief-lines {
	margin-top: 24px;
}
.tr-quote-hero__brief-lines i {
	display: block;
	height: 8px;
	margin-top: 10px;
	background: #dce4df;
	border-radius: 999px;
}
.tr-quote-hero__brief-lines i:nth-child(2) {
	width: 76%;
}
.tr-quote-hero__brief-lines i:nth-child(3) {
	width: 54%;
}
/* =========================================================
 * Brief Meta
 * ======================================================= */
.tr-quote-hero__brief-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 18px;
}
.tr-quote-hero__brief-meta div {
	min-height: 68px;
	padding: 14px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 10px;
}
.tr-quote-hero__brief-meta span {
	display: block;
	color: rgba(255,255,255,.38);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-medium);
	line-height: var(--tr-line-ui);
}
.tr-quote-hero__brief-meta strong {
	display: block;
	margin-top: 6px;
	color: var(--tr-green) !important;
	font-size: var(--tr-text-ui);
	font-weight: var(--tr-weight-semibold);
	line-height: var(--tr-line-ui);
}
/* =========================================================
 * Rail
 * ======================================================= */
.tr-quote-hero__rail {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 10px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.34);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
	letter-spacing: .05em;
}
.tr-quote-hero__rail i {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.08);
}
.tr-quote-hero__rail strong {
	color: var(--tr-green) !important;
	font-size: inherit;
	font-weight: inherit;
}
.tr-quote-hero h1,
.tr-quote-hero h2,
.tr-quote-hero h3,
.tr-quote-hero h4,
.tr-quote-hero h5,
.tr-quote-hero h6 {
	color: #ffffff !important;
}
/* =========================================================
 * Tablet
 * ======================================================= */
@media(max-width:1080px) {
	.tr-quote-hero__shell {
		grid-template-columns: 1fr;
	}
	.tr-quote-hero__brief {
		width: min(100%,760px);
		transform: none;
	}
}
/* =========================================================
 * Mobile
 * ======================================================= */
@media(max-width:720px) {
	.tr-quote-hero {
		padding: 110px var(--tr-gutter) 78px;
	}
	.tr-quote-hero__copy h1 {
		font-size: clamp(46px,11.5vw,64px);
	}
	.tr-quote-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.tr-quote-hero__button {
		justify-content: space-between;
		width: 100%;
	}
	.tr-quote-hero__note {
		text-align: center;
	}
	.tr-quote-hero__brief {
		border-radius: 22px;
	}
	.tr-quote-hero__brief-head,
	.tr-quote-hero__brief-foot {
		min-height: 56px;
	}
	.tr-quote-hero__brief-body {
		padding: 18px 14px;
	}
	.tr-quote-hero__brief-main {
		padding: 22px;
		transform: none;
	}
	.tr-quote-hero__brief-main > strong {
		font-size: clamp(26px,8vw,34px);
	}
	.tr-quote-hero__brief-meta {
		grid-template-columns: 1fr;
	}
	.tr-quote-hero__rail {
		display: none;
	}
}