/* Home landing modules */

/* Benefits */
.l-benefits__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 72px;
}
.l-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.l-benefits__grid article {
	min-height: 188px;
	padding: 24px;
	background: linear-gradient(145deg, rgba(var(--l-surface-soft-rgb), 0.92), rgba(var(--l-surface-rgb), 0.92));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-md);
	box-shadow:
		var(--l-shadow-soft),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.07);
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
}
.l-benefits__grid article:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.52);
	background: linear-gradient(145deg, rgba(var(--l-surface-hover-rgb), 0.96), rgba(var(--l-surface-rgb), 0.96));
	box-shadow:
		var(--l-shadow-hover),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.1);
}

.l-benefits__grid h3 {
	margin: 18px 0 12px;
	font-size: 18px;
	line-height: 1.1;
}
.l-benefits__grid p {
	margin: 0;
	color: var(--l-text-muted);
	font-size: 12px;
	line-height: 1.55;
}
.l-floorplan-wrap {
	position: relative;
	width: 100%;
	max-width: 620px;
	display: block;
	align-self: center;
	justify-self: end;
}
.l-floorplan {
	width: 100%;
	display: block;
	filter: var(--l-floorplan-filter);
}
.l-floorplan img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}
.l-floorplan__point {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 1px solid rgba(var(--l-floorplan-point-rgb), 0.9);
	border-radius: 50%;
	background: var(--l-accent);
	box-shadow: 0 0 0 4px rgba(var(--l-accent-rgb), 0.13), 0 0 16px rgba(var(--l-accent-rgb), 0.75);
	transform: translate(-50%, -50%);
	animation: l-floorplan-ping 2.6s ease-out infinite;
}
.l-floorplan__point::after {
	content: '';
	position: absolute;
	inset: -7px;
	border: 1px solid rgba(var(--l-accent-rgb), 0.46);
	border-radius: inherit;
	animation: l-floorplan-ring 2.6s ease-out infinite;
}
.l-floorplan__point--1 { top: 29%; left: 48.5%; }
.l-floorplan__point--2 { top: 24.5%; left: 60.5%; animation-delay: 0.32s; }
.l-floorplan__point--3 { top: 31.5%; left: 76.5%; animation-delay: 0.64s; }
.l-floorplan__point--4 { top: 45.5%; left: 58.5%; animation-delay: 0.96s; }
.l-floorplan__point--5 { top: 58.5%; left: 59%; animation-delay: 1.28s; }

/* Process */
.l-process__steps {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--l-gold);
}
.l-process__steps li {
	position: relative;
	min-width: 0;
	padding: 21px 20px 0 0;
}
.l-process__steps li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: -1px;
	right: 0;
	width: 1px;
	height: 9px;
	background: var(--l-gold);
}
.l-step-number {
	position: relative;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	color: var(--l-gold);
	border: 1px solid rgba(var(--l-gold-rgb), 0.68);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, rgba(var(--l-gold-rgb), 0.18), rgba(var(--l-gold-rgb), 0.03) 58%, transparent 75%);
	box-shadow:
		0 0 0 5px rgba(var(--l-gold-rgb), 0.04),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.14);
	font-family: var(--shd-font-mono, ui-monospace, SFMono-Regular, Consolas, monospace);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}
.l-step-number::after {
	content: '';
	position: absolute;
	top: calc(100% + 2px);
	left: 50%;
	width: 1px;
	height: 10px;
	background: linear-gradient(180deg, rgba(var(--l-gold-rgb), 0.62), transparent);
}
.l-step-icon {
	width: 36px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	margin-bottom: 20px;
	color: var(--l-gold);
	line-height: 0;
}
.l-step-icon .shd-svg-icon {
	width: 100%;
	height: 100%;
}
.l-process__steps h3 {
	min-height: 38px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.2;
}
.l-process__steps p {
	max-width: 180px;
	margin: 0;
	color: var(--l-text-muted);
	font-size: 11px;
	line-height: 1.55;
}


/* Work */

.l-projects .l-section-head {
	align-items: start;
}
.l-projects__intro {
	max-width: 480px;
}
.l-projects__intro > p {
	margin: 0;
	color: var(--l-text-soft);
	font-size: 14px;
	line-height: 1.6;
}
.l-projects__actions {
	display: grid;
	justify-items: start;
	gap: 14px;
	margin-top: 20px;
}
.l-projects__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.l-project-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: linear-gradient(145deg, rgba(var(--l-surface-soft-rgb), 0.72), rgba(var(--l-surface-rgb), 0.52));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-lg);
	box-shadow: var(--l-shadow-soft), inset 0 1px 0 rgba(var(--l-text-rgb), 0.06);
	overflow: hidden;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}
.l-project-card:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.52);
	box-shadow: var(--l-shadow-hover), inset 0 1px 0 rgba(var(--l-text-rgb), 0.08);
}
.l-project-card__visual {
	position: relative;
	width: 100%;
	aspect-ratio: 1.12;
	margin: 0;
	overflow: hidden;
	background: var(--l-media-surface);
}

.l-project-card__visual img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: var(--l-project-image-filter);
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.7s ease;
}
.l-project-card:hover .l-project-card__visual img {
	transform: scale(1.025);
	filter: var(--l-project-image-hover-filter);
}
.l-project-card__visual figcaption {
	position: absolute;
	right: 14px;
	bottom: 12px;
	left: 14px;
	color: var(--l-text);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: 0 1px 12px var(--l-caption-shadow);
}
.l-project-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
}
.l-project-card__body h3 {
	margin: 0;
	color: var(--l-text);
	font-size: 17px;
	line-height: 1.15;
}
.l-project-card__body > p:not(.l-project-card__meta):not(.l-project-card__result) {
	margin: 12px 0 0;
	color: var(--l-text-muted);
	font-size: 11px;
	line-height: 1.55;
}
.l-project-card__body > p.l-project-card__meta {
	margin: 0 0 10px;
	color: var(--l-gold);
	font-size: 9px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}


/* Project card metadata */
.l-project-card__body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}
.l-project-card__body li {
	padding: 5px 8px;
	color: var(--l-text-soft);
	border: 1px solid var(--l-line);
	border-radius: 999px;
	font-size: 9px;
	line-height: 1.2;
}


.l-project-card__body .l-text-link {
	margin-top: auto;
	padding-top: 18px;
}

.l-video-trigger {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
	text-align: left;
}
.l-video-panel {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 18px;
	overflow: visible;
	color: var(--l-text);
	background: rgba(var(--l-shadow-rgb), 0.78);
	border: 0;
	box-shadow: none;
	outline: 0;
}
.l-video-panel[hidden] {
	display: none;
}

html.l-video-open {
	overflow: hidden;
}

.l-video-panel__panel {
	position: relative;
	width: min(940px, calc(100% - 36px));
	padding: 10px;
	background: var(--l-surface);
	border: 1px solid rgba(var(--l-text-rgb), 0.2);
	border-radius: var(--l-radius-lg);
	box-shadow: 0 30px 90px rgba(var(--l-shadow-rgb), 0.52);
}
.l-video-panel__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: calc(var(--l-radius-lg) - 8px);
	background: var(--l-media-bg);
}
.l-video-panel iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}
.l-video-panel__close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	padding: 0;
	color: var(--l-text);
	background: var(--l-surface-soft);
	border: 1px solid rgba(var(--l-text-rgb), 0.26);
	border-radius: 50%;
	cursor: pointer;
}
.l-video-panel__close .shd-svg-icon {
	width: 16px;
	height: 16px;
}

/* Testimonials */
.l-testimonials {
	padding: clamp(96px, 8vw, 132px) 0;
	background: var(--l-surface-soft);
	border-bottom: 1px solid var(--l-line);
}
.l-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.l-testimonial-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 26px;
	background: linear-gradient(145deg, rgba(var(--l-surface-soft-rgb), 0.86), rgba(var(--l-surface-rgb), 0.68));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-md);
	box-shadow: var(--l-shadow-soft), inset 0 1px 0 rgba(var(--l-text-rgb), 0.07);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.3s ease;
}
.l-testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.52);
	background: linear-gradient(145deg, rgba(var(--l-surface-hover-rgb), 0.94), rgba(var(--l-surface-rgb), 0.78));
}
.l-testimonial-card__quote {
	height: 38px;
	color: var(--l-gold);
	font-family: Georgia, serif;
	font-size: 54px;
	line-height: 0.96;
}
.l-testimonial-card blockquote {
	margin: 18px 0 28px;
	color: var(--l-text-soft);
	font-size: 14px;
	line-height: 1.65;
}
.l-testimonial-card figcaption {
	display: grid;
	gap: 4px;
	margin-top: auto;
}
.l-testimonial-card figcaption strong {
	font-size: 12px;
}
.l-testimonial-card figcaption span {
	color: var(--l-text-muted);
	font-size: 10px;
	line-height: 1.4;
}

/* Everyday life */
.l-day {
	background: var(--l-surface);
}
.l-day__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.l-day__card {
	min-height: 210px;
	padding: 24px;
	background: linear-gradient(145deg, rgba(var(--l-surface-day-rgb), 0.74), rgba(var(--l-surface-rgb), 0.52));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-md);
	box-shadow: inset 0 1px 0 rgba(var(--l-text-rgb), 0.07);
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.3s ease,
		background 0.3s ease,
		box-shadow 0.3s ease;
}
.l-day__card:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.52);
	background: linear-gradient(145deg, rgba(var(--l-surface-hover-rgb), 0.88), rgba(var(--l-surface-rgb), 0.72));
	box-shadow: var(--l-shadow-hover);
}

.l-day__number {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: var(--l-gold);
	border: 1px solid rgba(var(--l-gold-rgb), 0.54);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, rgba(var(--l-gold-rgb), 0.16), rgba(var(--l-gold-rgb), 0.03) 62%, transparent 78%);
	box-shadow:
		0 0 0 6px rgba(var(--l-gold-rgb), 0.035),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.12);
	font-family: var(--shd-font-mono, ui-monospace, SFMono-Regular, Consolas, monospace);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	transition:
		color 0.28s ease,
		border-color 0.28s ease,
		background 0.28s ease,
		transform 0.28s ease;
}
.l-day__card:hover .l-day__number {
	color: var(--l-text);
	border-color: rgba(var(--l-accent-rgb), 0.72);
	background: radial-gradient(circle at 35% 25%, rgba(var(--l-accent-rgb), 0.24), rgba(var(--l-accent-rgb), 0.04) 62%, transparent 78%);
	transform: translateY(-2px);
}
.l-day__card h3 {
	margin: 24px 0 12px;
	font-size: 18px;
	line-height: 1.1;
}
.l-day__card p {
	max-width: 220px;
	margin: 0;
	color: var(--l-text-muted);
	font-size: 12px;
	line-height: 1.55;
}


/* Systems */
.l-systems {
	background: var(--l-systems-bg);
}
.l-systems__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.l-system-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 158px;
	padding: 24px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(var(--l-systems-card-rgb), 0.92), rgba(var(--l-systems-deep-rgb), 0.92));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-md);
	box-shadow: inset 0 1px 0 rgba(var(--l-text-rgb), 0.05);
	transition:
		color 0.28s ease,
		background 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease;
}
.l-system-card__icon {
	position: absolute;
	inset: 23%;
	z-index: 0;
	display: grid;
	place-items: center;
	color: var(--l-gold);
	opacity: 0.05;
	transform: rotate(-8deg) scale(1);
	transform-origin: center;
	transition:
		color 0.28s ease,
		opacity 0.28s ease,
		transform 0.28s ease;
	pointer-events: none;
}
.l-system-card__icon .shd-svg-icon {
	--shd-icon-size: 100%;
	width: 100%;
	height: 100%;
}
.l-system-card__number {
	position: absolute;
	top: 16px;
	right: 20px;
	z-index: 1;
	color: var(--l-system-number);
	font-family: var(--shd-font-mono, ui-monospace, SFMono-Regular, Consolas, monospace);
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.08em;
	line-height: 0.85;
	transition:
		color 0.28s ease,
		transform 0.28s ease;
}
.l-system-card__number::after {
	content: '';
	position: absolute;
	right: 3px;
	bottom: -10px;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: var(--l-accent);
	opacity: 0.7;
}
.l-system-card:hover {
	z-index: 1;
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.58);
	background: linear-gradient(145deg, rgba(var(--l-systems-hover-rgb), 0.98), rgba(var(--l-systems-deep-rgb), 0.98));
	box-shadow:
		var(--l-shadow-hover),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.08);
}
.l-system-card:hover .l-system-card__icon {
	color: var(--l-gold);
	opacity: 0.1;
	transform: rotate(-8deg) scale(1.04);
}
.l-system-card:hover .l-system-card__number {
	color: var(--l-system-number-hover);
	transform: translateY(-2px);
}
.l-system-card:hover h3 {
	color: var(--l-gold);
	text-shadow: 0 0 18px rgba(var(--l-gold-rgb), 0.24);
}
.l-system-card h3 {
	position: relative;
	z-index: 1;
	max-width: 220px;
	margin: 0;
	padding-right: 36px;
	color: var(--l-text);
	font-size: 17px;
	line-height: 1.15;
	transition: color 0.28s ease;
}

/* Technology */
.l-tech {
	padding: clamp(74px, 6vw, 98px) 0;
	background: var(--l-bg);
	border-bottom: 1px solid var(--l-line);
}
.l-tech__head {
	max-width: 760px;
	margin-bottom: 36px;
}
.l-tech__head h2 {
	max-width: 680px;
	color: var(--l-text);
	font-size: clamp(28px, 3.4vw, 46px);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}
.l-tech__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.l-tech__item {
	min-height: 94px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	padding: 16px;
	background: linear-gradient(145deg, rgba(var(--l-surface-soft-rgb), 0.68), rgba(var(--l-surface-rgb), 0.46));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-sm);
	transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-tech__item img {
	width: auto;
	height: 29px;
	max-width: 96px;
	object-fit: contain;
	filter: grayscale(0.2) opacity(0.88);
	transition: filter 0.28s ease, transform 0.28s ease;
}
.l-tech__item span {
	color: rgba(var(--l-text-rgb), 0.78);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.04em;
}
.l-tech__item:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--l-gold-rgb), 0.5);
	background: linear-gradient(145deg, rgba(var(--l-surface-hover-rgb), 0.9), rgba(var(--l-surface-rgb), 0.72));
}
.l-tech__item:hover img {
	filter: grayscale(0) opacity(1);
	transform: scale(1.04);
}
.l-tech__item:hover span {
	color: var(--l-text);
}

/* Start point */
.l-start {
	position: relative;
	overflow: hidden;
	background: var(--l-surface-soft);
}
.l:not(.l--platform) .l-start::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -9%;
	width: 55vw;
	height: 55vw;
	max-width: 760px;
	max-height: 760px;
	border: 1px solid rgba(var(--l-gold-rgb), 0.16);
	border-radius: 50%;
	box-shadow: 0 0 0 80px rgba(var(--l-gold-rgb), 0.025), 0 0 0 160px rgba(var(--l-gold-rgb), 0.015);
	z-index: 0;
	pointer-events: none;
}
.l-start > .l-container {
	position: relative;
	z-index: 1;
}
.l-start__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
	align-items: end;
	gap: 72px;
	padding: 46px 48px;
	background: linear-gradient(120deg, rgba(var(--l-surface-day-rgb), 0.92), rgba(var(--l-surface-rgb), 0.72));
	border: 1px solid var(--l-line);
	border-top-color: var(--l-gold);
	border-radius: var(--l-radius-lg);
	box-shadow:
		var(--l-shadow-soft),
		inset 0 1px 0 rgba(var(--l-text-rgb), 0.07);
}
.l-start__inner > div {
	min-width: 0;
}
.l-start h2 {
	max-width: 700px;
	color: var(--l-text);
	font-size: clamp(34px, 4.5vw, 62px);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 0.98;
	text-transform: uppercase;
}
.l-start__inner > div:last-child > p {
	max-width: 480px;
	margin: 0;
	color: var(--l-text-soft);
	font-size: 14px;
	line-height: 1.65;
}

/* Lead entry options */
.l-entry {
	background: var(--l-surface-soft);
}
.l-entry__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.l-entry__card {
	min-width: 0;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
	padding: 30px;
	background: linear-gradient(145deg, rgba(var(--l-surface-day-rgb), 0.92), rgba(var(--l-surface-rgb), 0.78));
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-lg);
	box-shadow: var(--l-shadow-soft), inset 0 1px 0 rgba(var(--l-text-rgb), 0.07);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.l-entry__card:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--l-gold-rgb), 0.58);
	box-shadow: var(--l-shadow-hover), inset 0 1px 0 rgba(var(--l-text-rgb), 0.09);
}
.l-entry__card h3 {
	max-width: 460px;
	margin: 0 0 14px;
	color: var(--l-text);
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.02;
}
.l-entry__card p {
	max-width: 460px;
	margin: 0;
	color: var(--l-text-soft);
	font-size: 14px;
	line-height: 1.65;
}
.l-entry__card .l-button {
	align-self: flex-start;
}
