/* =========================================================
 * Tech Resolve — Service Control Room
 * Version: 1.0.0
 * ======================================================= */


/* =========================================================
 * Section
 * ======================================================= */

.tr-services {
	position: relative;
	isolation: isolate;

	padding:
		82px
		0
		88px;

	overflow: hidden;

	background:
		#f4f8f5;
}


.tr-services__shell {
	width: min(
		calc(100% - (var(--tr-gutter) * 2)),
		var(--tr-container-wide)
	);

	margin-inline: auto;
}


/* =========================================================
 * Background
 * ======================================================= */

.tr-services__background {
	position: absolute;
	z-index: -1;

	inset: 0;

	overflow: hidden;

	pointer-events: none;
}


.tr-services__grid {
	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(8, 72, 53, 0.032) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(8, 72, 53, 0.032) 1px,
			transparent 1px
		);

	background-size:
		54px
		54px;

	mask-image:
		linear-gradient(
			to bottom,
			transparent,
			#000 16%,
			#000 88%,
			transparent
		);
}


.tr-services__glow {
	position: absolute;

	border-radius: 50%;
}


.tr-services__glow--one {
	top: -360px;
	right: 12%;

	width: 700px;
	height: 700px;

	background:
		radial-gradient(
			circle,
			rgba(25, 224, 120, 0.10),
			transparent 70%
		);
}


.tr-services__glow--two {
	left: -300px;
	bottom: -390px;

	width: 760px;
	height: 760px;

	background:
		radial-gradient(
			circle,
			rgba(20, 215, 232, 0.065),
			transparent 72%
		);
}


/* =========================================================
 * Header
 * ======================================================= */

.tr-services__header {
	margin-bottom:
		48px;
}


.tr-services__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 18px;

	color:
		#0baa5c;

	font-size:
		clamp(10px, 0.72vw, 12px);

	font-weight: 830;

	letter-spacing:
		0.15em;
}


.tr-services__eyebrow-line {
	display: block;

	width: 34px;
	height: 1px;

	background:
		var(--tr-green);

	box-shadow:
		0 0 12px rgba(25, 224, 120, 0.25);
}


.tr-services__heading-grid {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(360px, 0.68fr);

	align-items: end;

	gap:
		clamp(45px, 8vw, 130px);
}


.tr-services__title {
	max-width: 880px;

	margin: 0;

	color:
		#101713;

	font-size:
		clamp(44px, 4.7vw, 74px);

	font-weight: 790;

	line-height:
		1;

	letter-spacing:
		-0.052em;

	text-wrap: balance;
}


.tr-services__description {
	max-width: 570px;

	margin:
		0
		0
		5px;

	color:
		#68766f;

	font-size:
		clamp(14px, 1vw, 17px);

	line-height:
		1.72;
}


/* =========================================================
 * Console
 * ======================================================= */

.tr-services__console {
	display: grid;

	grid-template-columns:
		330px
		minmax(0, 1fr);

	min-height: 610px;

	overflow: hidden;

	border:
		1px solid rgba(255, 255, 255, 0.08);

	background:
		linear-gradient(
			125deg,
			#07120f,
			#07151c 52%,
			#090f1b
		);

	box-shadow:
		0 40px 100px rgba(8, 38, 29, 0.20);

	clip-path:
		polygon(
			0 0,
			calc(100% - 28px) 0,
			100% 28px,
			100% 100%,
			28px 100%,
			0 calc(100% - 28px)
		);
}


/* =========================================================
 * Rail
 * ======================================================= */

.tr-services__rail {
	position: relative;

	padding:
		25px
		18px;

	border-right:
		1px solid rgba(255, 255, 255, 0.07);

	background:
		rgba(0, 0, 0, 0.12);
}


.tr-services__rail-label {
	margin:
		5px
		10px
		25px;

	color:
		rgba(207, 224, 217, 0.32);

	font-size: 8px;
	font-weight: 800;

	letter-spacing:
		0.14em;
}


/* =========================================================
 * Service Buttons
 * ======================================================= */

.tr-services__service,
.tr-services__service:hover,
.tr-services__service:focus,
.tr-services__service:active {
	position: relative;

	display: grid;

	grid-template-columns:
		44px
		1fr
		24px;

	align-items: center;

	gap: 12px;

	width: 100%;
	min-height: 82px;

	padding:
		11px
		12px;

	border: 0 !important;
	border-bottom:
		1px solid rgba(255, 255, 255, 0.055) !important;

	background:
		transparent !important;

	box-shadow:
		none !important;

	color:
		rgba(226, 239, 234, 0.54);

	text-align: left;

	cursor: pointer;

	transition:
		color 300ms ease,
		transform 400ms var(--tr-ease);
}


.tr-services__service::before {
	content: "";

	position: absolute;
	z-index: 0;

	inset:
		8px
		0;

	background:
		linear-gradient(
			90deg,
			rgba(25, 224, 120, 0.11),
			rgba(20, 215, 232, 0.035),
			transparent
		);

	opacity: 0;

	clip-path:
		polygon(
			0 0,
			calc(100% - 13px) 0,
			100% 13px,
			100% 100%,
			13px 100%,
			0 calc(100% - 13px)
		);

	transition:
		opacity 320ms ease;
}


.tr-services__service:hover,
.tr-services__service.is-active {
	color:
		#ffffff;

	transform:
		translateX(5px);
}


.tr-services__service:hover::before,
.tr-services__service.is-active::before {
	opacity: 1;
}


.tr-services__service-number,
.tr-services__service-name,
.tr-services__service-state {
	position: relative;
	z-index: 2;
}


.tr-services__service-number {
	color:
		transparent;

	font-size: 29px;
	font-weight: 850;

	line-height:
		1;

	letter-spacing:
		-0.06em;

	-webkit-text-stroke:
		1px
		rgba(255, 255, 255, 0.18);

	transition:
		-webkit-text-stroke 300ms ease;
}


.tr-services__service.is-active
.tr-services__service-number {
	-webkit-text-stroke:
		1px
		rgba(25, 224, 120, 0.72);
}


.tr-services__service-name {
	font-size: 14px;
	font-weight: 680;

	line-height: 1.35;
}


.tr-services__service-state {
	display: grid;
	place-items: center;

	width: 20px;
	height: 20px;

	border:
		1px solid rgba(255, 255, 255, 0.08);

	border-radius: 50%;
}


.tr-services__service-state span {
	width: 5px;
	height: 5px;

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.18);

	transition:
		background 300ms ease,
		box-shadow 300ms ease,
		transform 300ms ease;
}


.tr-services__service.is-active
.tr-services__service-state span {
	background:
		var(--tr-green);

	box-shadow:
		0 0 12px rgba(25, 224, 120, 0.65);

	transform:
		scale(1.25);
}


/* =========================================================
 * Stage
 * ======================================================= */

.tr-services__stage {
	position: relative;

	min-width: 0;

	padding:
		23px
		27px
		22px;
}


/* =========================================================
 * Stage Top
 * ======================================================= */

.tr-services__stage-top {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 25px;

	height: 40px;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.06);
}


.tr-services__stage-label,
.tr-services__stage-status {
	color:
		rgba(205, 223, 216, 0.34);

	font-size: 8px;
	font-weight: 800;

	letter-spacing:
		0.13em;
}


.tr-services__stage-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;

	color:
		rgba(177, 255, 219, 0.55);
}


.tr-services__stage-status span {
	width: 6px;
	height: 6px;

	border-radius: 50%;

	background:
		var(--tr-green);

	box-shadow:
		0 0 12px rgba(25, 224, 120, 0.65);
}


/* =========================================================
 * Panels
 * ======================================================= */

.tr-services__panels {
	position: relative;

	height: 485px;
}


.tr-services__panel {
	position: absolute;

	inset: 0;

	display: grid;

	grid-template-columns:
		minmax(260px, 0.76fr)
		minmax(0, 1.24fr);

	align-items: center;

	gap:
		clamp(25px, 5vw, 70px);

	padding:
		40px
		18px;

	opacity: 0;

	visibility: hidden;

	transform:
		translateY(18px)
		scale(0.985);

	transition:
		opacity 380ms ease,
		visibility 380ms ease,
		transform 550ms var(--tr-ease);
}


.tr-services__panel.is-active {
	opacity: 1;

	visibility: visible;

	transform:
		translateY(0)
		scale(1);
}


/* =========================================================
 * Panel Copy
 * ======================================================= */

.tr-services__panel-copy {
	position: relative;
	z-index: 5;

	max-width: 420px;
}


.tr-services__panel-number {
	display: block;

	margin-bottom: 20px;

	color:
		transparent;

	font-size:
		clamp(68px, 7vw, 108px);

	font-weight: 860;

	line-height:
		0.72;

	letter-spacing:
		-0.08em;

	-webkit-text-stroke:
		1px
		rgba(25, 224, 120, 0.31);
}


.tr-services__panel-copy h3 {
	max-width: 430px;

	margin:
		0
		0
		15px;

	color:
		#f5faf8;

	font-size:
		clamp(28px, 2.6vw, 42px);

	font-weight: 760;

	line-height:
		1.05;

	letter-spacing:
		-0.04em;
}


.tr-services__panel-copy p {
	max-width: 430px;

	margin:
		0
		0
		27px;

	color:
		rgba(211, 225, 220, 0.60);

	font-size: 14px;

	line-height:
		1.67;
}


/* =========================================================
 * Read More
 * ======================================================= */

.tr-services__link {
	display: inline-flex;
	align-items: center;
	gap: 14px;

	color:
		var(--tr-green);

	font-size: 13px;
	font-weight: 760;

	text-decoration: none;
}


.tr-services__link-icon {
	display: grid;
	place-items: center;

	width: 36px;
	height: 36px;

	border:
		1px solid rgba(25, 224, 120, 0.18);

	border-radius: 50%;

	background:
		rgba(25, 224, 120, 0.07);

	transition:
		color 300ms ease,
		background 300ms ease,
		transform 400ms var(--tr-ease);
}


.tr-services__link-icon svg {
	width: 16px;
	height: 16px;
}


.tr-services__link:hover
.tr-services__link-icon {
	color:
		#04170e;

	background:
		var(--tr-green);

	transform:
		translateX(5px)
		rotate(-35deg);
}


/* =========================================================
 * Visual Common
 * ======================================================= */

.tr-services__visual {
	position: relative;

	min-width: 0;
	height: 370px;
}


/* =========================================================
 * Website
 * ======================================================= */

.tr-services__website {
	position: relative;

	width: 100%;
	height: 100%;
}


.tr-services__website-frame {
	position: absolute;

	top: 50%;
	left: 50%;

	width: min(100%, 510px);
	height: 315px;

	overflow: hidden;

	border:
		1px solid rgba(255, 255, 255, 0.10);

	background:
		linear-gradient(
			145deg,
			#102029,
			#071117
		);

	box-shadow:
		0 38px 80px rgba(0, 0, 0, 0.28),
		0 0 55px rgba(25, 224, 120, 0.045);

	transform:
		translate(-50%, -50%)
		rotate(-2deg);

	clip-path:
		polygon(
			0 0,
			calc(100% - 19px) 0,
			100% 19px,
			100% 100%,
			19px 100%,
			0 calc(100% - 19px)
		);
}


.tr-services__website-top {
	display: flex;
	gap: 6px;

	height: 45px;

	padding:
		18px;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.06);
}


.tr-services__website-top span {
	width: 6px;
	height: 6px;

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.16);
}


.tr-services__website-top span:first-child {
	background:
		var(--tr-green);
}


.tr-services__website-layout {
	display: grid;

	grid-template-columns:
		1fr
		140px;

	gap: 25px;

	align-items: center;

	padding:
		32px
		27px
		25px;
}


.tr-services__website-copy {
	display: grid;
	gap: 10px;
}


.tr-services__website-copy i {
	display: block;

	height: 8px;

	border-radius: 30px;

	background:
		rgba(255, 255, 255, 0.12);
}


.tr-services__website-copy i:nth-child(1) {
	width: 35%;
	height: 5px;

	background:
		var(--tr-green);
}


.tr-services__website-copy i:nth-child(2) {
	width: 90%;
	height: 14px;
}


.tr-services__website-copy i:nth-child(3) {
	width: 68%;
	height: 14px;
}


.tr-services__website-copy i:nth-child(4) {
	width: 80%;
}


.tr-services__website-art {
	display: grid;
	place-items: center;

	width: 140px;
	height: 140px;

	border:
		1px solid rgba(20, 215, 232, 0.13);

	border-radius: 50%;
}


.tr-services__website-art span {
	width: 68px;
	height: 68px;

	border:
		1px solid rgba(25, 224, 120, 0.20);

	transform:
		rotate(45deg);

	background:
		linear-gradient(
			145deg,
			rgba(25, 224, 120, 0.12),
			rgba(20, 215, 232, 0.045)
		);
}


.tr-services__website-row {
	display: grid;

	grid-template-columns:
		repeat(3, 1fr);

	gap: 10px;

	padding:
		0
		27px;
}


.tr-services__website-row span {
	height: 48px;

	border:
		1px solid rgba(255, 255, 255, 0.05);

	background:
		rgba(255, 255, 255, 0.025);
}


/* =========================================================
 * Chips
 * ======================================================= */

.tr-services__visual-chip {
	position: absolute;
	z-index: 5;

	padding:
		10px
		13px;

	border:
		1px solid rgba(255, 255, 255, 0.08);

	background:
		#0d1d22;

	color:
		rgba(213, 230, 223, 0.60);

	font-size: 8px;
	font-weight: 800;

	letter-spacing:
		0.10em;

	box-shadow:
		0 16px 35px rgba(0, 0, 0, 0.24);
}


.tr-services__visual-chip--one {
	top: 4%;
	right: 2%;

	color:
		var(--tr-green);

	transform:
		rotate(4deg);
}


.tr-services__visual-chip--two {
	bottom: 4%;
	left: 1%;

	color:
		var(--tr-spectrum-cyan);

	transform:
		rotate(-4deg);
}


/* =========================================================
 * Commerce
 * ======================================================= */

.tr-services__commerce {
	position: relative;

	width: 100%;
	height: 100%;
}


.tr-services__commerce-bag {
	position: absolute;

	top: 50%;
	left: 50%;

	display: grid;
	place-items: center;

	width: 190px;
	height: 220px;

	border:
		1px solid rgba(25, 224, 120, 0.18);

	background:
		linear-gradient(
			145deg,
			rgba(25, 224, 120, 0.11),
			rgba(8, 26, 22, 0.74)
		);

	transform:
		translate(-50%, -50%)
		rotate(-4deg);

	clip-path:
		polygon(
			13% 14%,
			87% 14%,
			100% 100%,
			0 100%
		);
}


.tr-services__commerce-bag::before {
	content: "";

	position: absolute;

	top: -31px;

	width: 80px;
	height: 62px;

	border:
		2px solid rgba(25, 224, 120, 0.30);

	border-bottom: 0;

	border-radius:
		50px
		50px
		0
		0;
}


.tr-services__commerce-bag span {
	width: 50px;
	height: 50px;

	border:
		1px solid rgba(25, 224, 120, 0.25);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(25, 224, 120, 0.17),
			transparent 70%
		);
}


.tr-services__commerce-products {
	position: absolute;

	top: 13%;
	right: 0;

	display: grid;
	gap: 9px;

	width: 160px;
}


.tr-services__commerce-products > div {
	display: grid;

	grid-template-columns:
		45px
		1fr;

	align-items: center;
	gap: 10px;

	padding: 9px;

	border:
		1px solid rgba(255, 255, 255, 0.07);

	background:
		#0b1920;
}


.tr-services__commerce-products span {
	width: 45px;
	height: 40px;

	background:
		linear-gradient(
			135deg,
			rgba(25, 224, 120, 0.13),
			rgba(20, 215, 232, 0.06)
		);
}


.tr-services__commerce-products i {
	height: 6px;

	border-radius: 20px;

	background:
		rgba(255, 255, 255, 0.12);
}


.tr-services__commerce-checkout {
	position: absolute;

	left: 4%;
	bottom: 12%;

	display: flex;
	align-items: center;
	gap: 11px;

	width: 180px;

	padding: 12px;

	border:
		1px solid rgba(25, 224, 120, 0.12);

	background:
		#0b1c1a;
}


.tr-services__commerce-check {
	width: 34px;
	height: 34px;

	border-radius: 50%;

	background:
		var(--tr-green);

	box-shadow:
		0 0 20px rgba(25, 224, 120, 0.15);
}


.tr-services__commerce-checkout > div {
	display: grid;
	gap: 7px;

	flex: 1;
}


.tr-services__commerce-checkout i {
	height: 6px;

	border-radius: 20px;

	background:
		rgba(255, 255, 255, 0.12);
}


.tr-services__commerce-checkout i:last-child {
	width: 55%;
}


/* =========================================================
 * Custom Modules
 * ======================================================= */

.tr-services__modules {
	position: relative;

	width: 100%;
	height: 100%;
}


.tr-services__modules-lines {
	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;
}


.tr-services__modules-lines path {
	fill: none;

	stroke:
		rgba(25, 224, 120, 0.24);

	stroke-width: 1.2;

	stroke-dasharray:
		5
		7;
}


.tr-services__module {
	position: absolute;

	width: 92px;
	height: 72px;

	border:
		1px solid rgba(255, 255, 255, 0.08);

	background:
		linear-gradient(
			145deg,
			#102027,
			#071117
		);

	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.20);
}


.tr-services__module::after {
	content: "";

	position: absolute;

	inset:
		18px;

	border:
		1px solid rgba(25, 224, 120, 0.15);
}


.tr-services__module--one {
	top: 10%;
	left: 4%;
}


.tr-services__module--two {
	top: 10%;
	right: 4%;
}


.tr-services__module--three {
	bottom: 7%;
	left: 12%;
}


.tr-services__module--four {
	right: 8%;
	bottom: 7%;
}


.tr-services__modules-core {
	position: absolute;

	top: 50%;
	left: 50%;

	display: grid;
	place-items: center;

	width: 115px;
	height: 115px;

	border:
		1px solid rgba(25, 224, 120, 0.20);

	border-radius: 50%;

	background:
		linear-gradient(
			145deg,
			#0a2d24,
			#071613
		);

	color:
		var(--tr-green);

	font-size: 23px;
	font-weight: 850;

	box-shadow:
		0 0 55px rgba(25, 224, 120, 0.07);

	transform:
		translate(-50%, -50%);
}


/* =========================================================
 * Redesign
 * ======================================================= */

.tr-services__redesign {
	position: absolute;

	top: 50%;
	left: 50%;

	width: min(100%, 520px);
	height: 310px;

	overflow: hidden;

	border:
		1px solid rgba(255, 255, 255, 0.08);

	background:
		#091318;

	transform:
		translate(-50%, -50%);
}


.tr-services__redesign-old,
.tr-services__redesign-new {
	position: absolute;

	top: 0;
	bottom: 0;

	width: 50%;
}


.tr-services__redesign-old {
	left: 0;

	display: grid;
	align-content: center;
	gap: 13px;

	padding: 32px;

	background:
		#11171a;
}


.tr-services__redesign-old span {
	display: block;

	height: 13px;

	background:
		rgba(255, 255, 255, 0.08);
}


.tr-services__redesign-old span:nth-child(2) {
	width: 60%;
}


.tr-services__redesign-old span:nth-child(3) {
	width: 82%;
	height: 60px;
}


.tr-services__redesign-old span:nth-child(4) {
	width: 45%;
}


.tr-services__redesign-new {
	right: 0;

	padding:
		25px;

	background:
		linear-gradient(
			145deg,
			#0b221d,
			#07151a
		);
}


.tr-services__redesign-new-head {
	width: 65%;
	height: 11px;

	margin-bottom: 30px;

	background:
		var(--tr-green);
}


.tr-services__redesign-new-layout {
	display: grid;

	grid-template-columns:
		1fr
		0.8fr;

	gap: 15px;
}


.tr-services__redesign-new-layout > span {
	height: 130px;

	background:
		linear-gradient(
			135deg,
			rgba(25, 224, 120, 0.13),
			rgba(20, 215, 232, 0.07)
		);
}


.tr-services__redesign-new-layout > div {
	display: grid;
	gap: 9px;
}


.tr-services__redesign-new-layout i {
	background:
		rgba(255, 255, 255, 0.07);
}


.tr-services__redesign-divider {
	position: absolute;

	z-index: 5;

	top: 0;
	bottom: 0;
	left: 50%;

	width: 2px;

	background:
		var(--tr-green);

	box-shadow:
		0 0 18px rgba(25, 224, 120, 0.30);
}


.tr-services__redesign-divider span {
	position: absolute;

	top: 50%;
	left: 50%;

	display: grid;
	place-items: center;

	width: 45px;
	height: 45px;

	border-radius: 50%;

	background:
		var(--tr-green);

	color:
		#04170e;

	transform:
		translate(-50%, -50%);
}


.tr-services__redesign-divider svg {
	width: 21px;
	height: 21px;
}


/* =========================================================
 * Hosting
 * ======================================================= */

.tr-services__hosting {
	position: relative;

	width: 100%;
	height: 100%;
}


.tr-services__hosting-ring {
	position: absolute;

	top: 50%;
	left: 29%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 180px;
	height: 180px;

	border:
		1px solid rgba(20, 215, 232, 0.18);

	border-radius: 50%;

	box-shadow:
		inset 0 0 50px rgba(20, 215, 232, 0.035),
		0 0 50px rgba(20, 215, 232, 0.025);

	transform:
		translate(-50%, -50%);
}


.tr-services__hosting-ring::before {
	content: "";

	position: absolute;

	inset: 19px;

	border:
		8px solid rgba(255, 255, 255, 0.035);

	border-top-color:
		var(--tr-green);

	border-right-color:
		var(--tr-spectrum-cyan);

	border-radius: 50%;

	transform:
		rotate(28deg);
}


.tr-services__hosting-ring span,
.tr-services__hosting-ring small {
	position: relative;
	z-index: 2;
}


.tr-services__hosting-ring span {
	color:
		#ffffff;

	font-size: 35px;
	font-weight: 800;
}


.tr-services__hosting-ring small {
	color:
		rgba(213, 229, 222, 0.45);

	font-size: 7px;
	font-weight: 800;

	letter-spacing:
		0.13em;
}


.tr-services__servers {
	position: absolute;

	top: 50%;
	right: 3%;

	display: grid;
	gap: 9px;

	width: 230px;

	transform:
		translateY(-50%);
}


.tr-services__servers > div {
	display: grid;

	grid-template-columns:
		1fr
		8px
		8px
		8px;

	align-items: center;
	gap: 7px;

	height: 50px;

	padding:
		0
		14px;

	border:
		1px solid rgba(255, 255, 255, 0.07);

	background:
		linear-gradient(
			90deg,
			#0f2027,
			#081219
		);
}


.tr-services__servers > div > span {
	width: 55%;

	height: 6px;

	border-radius: 20px;

	background:
		rgba(255, 255, 255, 0.10);
}


.tr-services__servers i {
	width: 7px;
	height: 7px;

	border-radius: 50%;

	background:
		var(--tr-green);

	box-shadow:
		0 0 10px rgba(25, 224, 120, 0.45);
}


.tr-services__servers i:nth-child(3) {
	background:
		var(--tr-spectrum-cyan);
}


.tr-services__servers i:nth-child(4) {
	background:
		rgba(255, 255, 255, 0.14);

	box-shadow: none;
}


.tr-services__hosting-pulse {
	position: absolute;

	top: 50%;
	left: 49%;

	width: 100px;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			var(--tr-green),
			var(--tr-spectrum-cyan),
			transparent
		);

	box-shadow:
		0 0 10px rgba(20, 215, 232, 0.16);
}


/* =========================================================
 * Bottom
 * ======================================================= */

.tr-services__stage-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 25px;

	height: 40px;

	border-top:
		1px solid rgba(255, 255, 255, 0.06);

	color:
		rgba(205, 222, 216, 0.28);

	font-size: 8px;
	font-weight: 800;

	letter-spacing:
		0.13em;
}


.tr-services__progress {
	display: flex;
	gap: 6px;
}


.tr-services__progress span {
	display: block;

	width: 7px;
	height: 7px;

	border-radius: 20px;

	background:
		rgba(255, 255, 255, 0.09);

	transition:
		width 450ms var(--tr-ease),
		background 300ms ease;
}


.tr-services__progress span.is-active {
	width: 42px;

	background:
		var(--tr-green);
}


/* =========================================================
 * Entrance
 * ======================================================= */

.tr-has-services-js
.tr-services__header,
.tr-has-services-js
.tr-services__console {
	opacity: 0;

	transform:
		translateY(25px);
}


.tr-has-services-js
.tr-services.is-inview
.tr-services__header,
.tr-has-services-js
.tr-services.is-inview
.tr-services__console {
	opacity: 1;

	transform:
		translateY(0);

	transition:
		opacity 850ms ease,
		transform 950ms var(--tr-ease);
}


.tr-has-services-js
.tr-services.is-inview
.tr-services__console {
	transition-delay:
		140ms;
}


/* =========================================================
 * Tablet
 * ======================================================= */

@media (max-width: 1050px) {

	.tr-services__heading-grid {
		grid-template-columns: 1fr;

		gap: 20px;
	}


	.tr-services__description {
		max-width: 720px;
	}


	.tr-services__console {
		grid-template-columns:
			270px
			1fr;
	}


	.tr-services__panel {
		grid-template-columns: 1fr;

		gap: 15px;

		padding:
			27px
			10px;
	}


	.tr-services__panel-copy {
		max-width: 650px;
	}


	.tr-services__panel-number {
		font-size: 58px;

		margin-bottom: 12px;
	}


	.tr-services__panel-copy h3 {
		font-size: 28px;
	}


	.tr-services__visual {
		height: 245px;
	}


	.tr-services__website-frame {
		height: 230px;
	}


	.tr-services__commerce-bag {
		width: 130px;
		height: 160px;
	}


	.tr-services__hosting-ring {
		width: 140px;
		height: 140px;
	}


	.tr-services__servers {
		width: 190px;
	}

}


/* =========================================================
 * Mobile
 * ======================================================= */

@media (max-width: 720px) {

	.tr-services {
		padding:
			58px
			0
			62px;
	}


	.tr-services__shell {
		width:
			calc(100% - 24px);
	}


	.tr-services__header {
		margin-bottom: 32px;
	}


	.tr-services__title {
		font-size:
			clamp(38px, 10.5vw, 51px);
	}


	.tr-services__description {
		font-size: 15px;
	}


	.tr-services__console {
		display: block;

		min-height: 0;

		clip-path:
			polygon(
				0 0,
				calc(100% - 20px) 0,
				100% 20px,
				100% 100%,
				20px 100%,
				0 calc(100% - 20px)
			);
	}


	/* Rail */

	.tr-services__rail {
		display: flex;

		gap: 7px;

		padding:
			14px;

		overflow-x: auto;

		border-right: 0;

		border-bottom:
			1px solid rgba(255, 255, 255, 0.07);

		scrollbar-width: none;
	}


	.tr-services__rail::-webkit-scrollbar {
		display: none;
	}


	.tr-services__rail-label {
		display: none;
	}


	.tr-services__service,
	.tr-services__service:hover,
	.tr-services__service:focus {
		flex:
			0
			0
			185px;

		grid-template-columns:
			35px
			1fr;

		min-height: 62px;

		border:
			1px solid rgba(255, 255, 255, 0.06) !important;
	}


	.tr-services__service-state {
		display: none;
	}


	.tr-services__service-number {
		font-size: 23px;
	}


	.tr-services__service-name {
		font-size: 12px;
	}


	/* Stage */

	.tr-services__stage {
		padding:
			14px;
	}


	.tr-services__stage-label {
		display: none;
	}


	.tr-services__panels {
		height: 595px;
	}


	.tr-services__panel {
		padding:
			28px
			5px;

		grid-template-columns: 1fr;
	}


	.tr-services__panel-copy h3 {
		font-size:
			clamp(27px, 8vw, 35px);
	}


	.tr-services__panel-copy p {
		font-size: 13px;
	}


	.tr-services__visual {
		height: 260px;
	}


	.tr-services__website-frame {
		width: 100%;
		height: 235px;
	}


	.tr-services__website-layout {
		grid-template-columns:
			1fr
			90px;

		padding:
			23px
			18px;
	}


	.tr-services__website-art {
		width: 90px;
		height: 90px;
	}


	.tr-services__website-row {
		padding-inline: 18px;
	}


	.tr-services__commerce-products {
		width: 120px;
	}


	.tr-services__commerce-checkout {
		width: 145px;
	}


	.tr-services__modules-core {
		width: 90px;
		height: 90px;
	}


	.tr-services__module {
		width: 70px;
		height: 58px;
	}


	.tr-services__redesign {
		width: 100%;
		height: 240px;
	}


	.tr-services__hosting-ring {
		left: 28%;

		width: 120px;
		height: 120px;
	}


	.tr-services__hosting-ring span {
		font-size: 25px;
	}


	.tr-services__servers {
		right: 0;

		width: 155px;
	}


	.tr-services__servers > div {
		height: 42px;
	}


	.tr-services__hosting-pulse {
		display: none;
	}

}


/* =========================================================
 * Reduced Motion
 * ======================================================= */

@media (prefers-reduced-motion: reduce) {

	.tr-services__panel,
	.tr-services__service,
	.tr-services__progress span,
	.tr-services__link-icon {
		transition: none;
	}


	.tr-has-services-js
	.tr-services__header,
	.tr-has-services-js
	.tr-services__console {
		opacity: 1;

		transform: none;

		transition: none;
	}

}