/* Performance landing — capability, proof, process and contact sections. */
.dl-performance__capabilities {
	display: grid;
	gap: .9rem;
}
.dl-performance__capabilities article {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.45rem;
	border: 1px solid rgba(215, 157, 53, .22);
	border-radius: .8rem;
	background: var(--performance-ink);
	color: #fff;
	box-shadow: 0 .8rem 2rem rgba(8, 27, 49, .08);
}
.dl-performance__capability-icon {
	display: grid;
	place-items: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 1rem;
	color: var(--performance-gold);
}
.dl-performance__capability-icon svg { width: 100%; height: 100%; }
.dl-performance__capabilities h3 { margin-bottom: .5rem; }
.dl-performance__capabilities p {
	flex: 1;
	margin-bottom: 1rem;
	color: #c3cdd7;
	font-size: .92rem;
}
.dl-performance__capabilities ul,
.dl-performance__case-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: .38rem;
}
.dl-performance__capabilities li {
	padding: .22rem .5rem;
	border: 1px solid rgba(215, 157, 53, .2);
	border-radius: 99px;
	color: #bdc8d2;
	font-size: .68rem;
}
.dl-performance__section--proof { background: #fff; }
.dl-performance__cases {
	display: grid;
	gap: 1rem;
}
.dl-performance__cases > article {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-height: 100%;
	border-radius: .85rem;
	background: var(--performance-ink);
	color: #fff;
	box-shadow: 0 .8rem 2rem rgba(8, 27, 49, .13);
}
.dl-performance__case-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #102b49;
}
.dl-performance__case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}
.dl-performance__case-image:hover img { transform: scale(1.025); }
.dl-performance__case-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.2rem;
}
.dl-performance__case-label {
	margin-bottom: .45rem;
	color: #d6a750;
	font-size: .7rem;
	font-weight: 700;
}
.dl-performance__cases h3 { margin-bottom: 1rem; }
.dl-performance__case-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: auto;
	padding-top: .9rem;
	border-top: 1px solid rgba(255, 255, 255, .11);
}
.dl-performance__case-metrics li { min-width: 0; }
.dl-performance__case-metrics strong,
.dl-performance__case-metrics span { display: block; }
.dl-performance__case-metrics strong {
	color: #fff;
	font: 700 1rem var(--font-display);
}
.dl-performance__case-metrics span {
	overflow: hidden;
	color: #9eadba;
	font-size: .65rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dl-performance__case-link {
	margin-top: 1rem;
	color: #e2b65f;
	font-size: .82rem;
	font-weight: 700;
}
.dl-performance__empty { text-align: center; }
.dl-performance__process {
	margin: 0 1rem;
	padding: 4.5rem 0;
	border-radius: .85rem;
	background: var(--performance-ink);
	color: #fff;
}
.dl-performance__section-head--light h2 { color: #fff; }
.dl-performance__section-head--light .dl-performance__eyebrow { color: #d4aa5e; }
.dl-performance__process ol {
	display: grid;
	gap: 1.3rem;
	counter-reset: performance-step;
}
.dl-performance__process li {
	position: relative;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.dl-performance__process li > span {
	display: inline-grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(215, 157, 53, .45);
	border-radius: 50%;
	color: #e2b65f;
	font: 700 .75rem var(--font-display);
}
.dl-performance__process h3 { margin-bottom: .45rem; }
.dl-performance__process li p {
	margin: 0;
	color: #b8c4cf;
	font-size: .9rem;
}
.dl-performance__logos {
	padding: 3.5rem 0;
	background: var(--performance-cream);
	text-align: center;
}
.dl-performance__logos p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .7rem;
	margin-bottom: 1.8rem;
	color: #4b5661;
	font-weight: 600;
}
.dl-performance__logos p::before,
.dl-performance__logos p::after {
	width: 2rem;
	height: 1px;
	background: rgba(215, 157, 53, .55);
	content: "";
}
.dl-performance__logos ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.6rem;
	align-items: center;
}
.dl-performance__logos img {
	width: auto;
	max-width: 8.5rem;
	max-height: 2.6rem;
	margin: auto;
	filter: grayscale(1);
	opacity: .7;
}
.dl-performance__contact {
	padding: 1rem 0 5rem;
	background: var(--performance-cream);
}
.dl-performance__contact-grid {
	display: grid;
	gap: 2rem;
	padding-block: 2rem;
	border-radius: .9rem;
	background: var(--performance-ink);
	color: #fff;
}
.dl-performance__contact-copy,
.dl-performance__form { padding-inline: 1.25rem; }
.dl-performance__contact h2 {
	margin-bottom: .8rem;
	font-size: clamp(2rem, 8vw, 3.3rem);
}
.dl-performance__contact-copy > p { color: #c0cbd5; }
.dl-performance__contact-copy ul { display: grid; gap: .6rem; margin-top: 1.3rem; }
.dl-performance__contact-copy li::before {
	margin-left: .5rem;
	color: var(--performance-gold);
	content: "✓";
}
.dl-performance__contact .dl-form { gap: .75rem; }
.dl-performance__contact .dl-form label { color: #c8d1da; }
.dl-performance__contact .dl-form input {
	min-height: 44px;
	border-color: rgba(255, 255, 255, .14);
	border-radius: .35rem;
	background: rgba(255, 255, 255, .035);
}
.dl-performance__contact .dl-check a { color: #e2b65f; text-decoration: underline; }
.dl-performance__contact .dl-form-status { color: #e2b65f; }
.dl-performance__form-note {
	margin: .75rem 0 0;
	color: #93a3b2;
	font-size: .76rem;
}
@media (min-width: 620px) {
	.dl-performance__capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dl-performance__logos ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.dl-performance__contact .dl-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dl-performance__contact .dl-check,
	.dl-performance__contact .dl-form button,
	.dl-performance__contact .dl-form-status { grid-column: 1 / -1; }
}
@media (min-width: 760px) {
	.dl-performance__capabilities { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.dl-performance__cases { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.dl-performance__process { margin-inline: max(1rem, calc((100% - var(--container)) / 2)); padding: 4.5rem 2rem; }
	.dl-performance__process ol { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.dl-performance__process li { padding: 1.2rem; border-top: 0; border-left: 1px solid rgba(255, 255, 255, .12); }
	.dl-performance__process li:last-child { border-left: 0; }
	.dl-performance__logos ul { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.dl-performance__contact-grid { grid-template-columns: .85fr 1.15fr; align-items: center; padding: 3rem; }
	.dl-performance__contact-copy,
	.dl-performance__form { padding-inline: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.dl-performance__case-image img { transition: none; }
}
