/*
 * Native service and paused-product landing pages.
 * Deliberately namespaced so this bundle can be loaded only on the two pages.
 */

.dlp-page {
	--dlp-ink: #121426;
	--dlp-muted: #5a6274;
	--dlp-line: #e2e5ee;
	--dlp-soft: #f5f6fa;
	--dlp-purple: #16325f;
	--dlp-purple-dark: #10274b;
	--dlp-cyan: #2a9bc0;
	--dlp-green: #4ea67e;
	--dlp-night: #080a13;
	--dlp-night-2: #101528;
	--dlp-amber: #f5b940;
	--dlp-radius: 18px;
	--dlp-radius-lg: 28px;
	--dlp-shadow: 0 24px 70px rgba(17, 19, 34, .1);
	overflow: hidden;
	color: var(--dlp-ink);
	background: #fff;
}

.dlp-page h1,
.dlp-page h2,
.dlp-page h3,
.dlp-page p,
.dlp-page ul,
.dlp-page ol,
.dlp-page dl,
.dlp-page blockquote {
	margin-top: 0;
}

.dlp-page h1,
.dlp-page h2,
.dlp-page h3 {
	color: inherit;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.dlp-page p {
	color: var(--dlp-muted);
}

.dlp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--dlp-purple) !important;
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dlp-kicker::before {
	width: 26px;
	height: 2px;
	background: currentColor;
	content: "";
}

.dlp-hero {
	position: relative;
	isolation: isolate;
	padding: clamp(72px, 9vw, 132px) 0 clamp(76px, 9vw, 126px);
	color: #fff;
	background:
		radial-gradient(circle at 78% 12%, rgba(42, 155, 192, .17), transparent 24rem),
		radial-gradient(circle at 15% 86%, rgba(61, 103, 199, .19), transparent 28rem),
		linear-gradient(145deg, var(--dlp-night) 0%, #0a0e1b 48%, #12172a 100%);
}

.dlp-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 54px 54px;
	content: "";
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 92%);
}

.dlp-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	align-items: center;
	gap: clamp(54px, 8vw, 108px);
}

.dlp-hero .dlp-kicker {
	color: var(--dlp-cyan) !important;
}

.dlp-hero h1 {
	max-width: 820px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(3rem, 6.2vw, 6rem);
	letter-spacing: -.065em;
}

.dlp-hero__lead {
	max-width: 760px;
	margin-bottom: 18px;
	color: #edf1ff !important;
	font-size: clamp(1.12rem, 1.8vw, 1.42rem);
	line-height: 1.6;
}

.dlp-hero__detail {
	max-width: 710px;
	margin-bottom: 30px;
	color: #bfc7dc !important;
	font-size: 1rem;
}

.dlp-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.dlp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: .94rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.dlp-button span {
	margin-left: 9px;
	font-size: 1.12em;
	transition: transform .2s ease;
}

.dlp-button:hover span {
	transform: translateX(3px);
}

.dlp-button--primary {
	color: #fff;
	background: var(--dlp-purple);
	box-shadow: 0 14px 34px rgba(22, 50, 95, .3);
}

.dlp-button--primary:hover {
	color: #fff;
	background: var(--dlp-purple-dark);
	box-shadow: 0 18px 42px rgba(22, 50, 95, .4);
	transform: translateY(-2px);
}

.dlp-button--ghost {
	color: #f4f5ff;
	border-color: rgba(255, 255, 255, .24);
	background: rgba(255, 255, 255, .06);
}

.dlp-button--ghost:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, .44);
	background: rgba(255, 255, 255, .11);
}

.dlp-button--light {
	color: var(--dlp-night);
	background: #fff;
	box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.dlp-button--light:hover {
	color: var(--dlp-night);
	background: var(--dlp-cyan);
	transform: translateY(-2px);
}

.dlp-button--outline {
	width: 100%;
	margin-top: auto;
	color: var(--dlp-purple-dark);
	border-color: rgba(22, 50, 95, .3);
	background: #fff;
}

.dlp-button--outline:hover {
	color: #fff;
	border-color: var(--dlp-purple);
	background: var(--dlp-purple);
}

.dlp-button--disabled,
.dlp-button--disabled:hover {
	width: 100%;
	margin-top: auto;
	cursor: not-allowed;
	color: #697083;
	border-color: #d8dce6;
	background: #eceef3;
	box-shadow: none;
	transform: none;
}

.dlp-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
}

.dlp-hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #cbd2e4;
	font-size: .88rem;
	font-weight: 650;
}

.dlp-hero__proof span {
	color: var(--dlp-green);
}

.dlp-build-map {
	position: relative;
	min-height: 470px;
}

.dlp-build-map::before,
.dlp-build-map::after {
	position: absolute;
	inset: 50%;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%);
}

.dlp-build-map::after {
	width: 230px;
	height: 230px;
	border-color: rgba(42, 155, 192, .16);
}

.dlp-build-map__halo {
	position: absolute;
	inset: 50%;
	width: 270px;
	height: 270px;
	border-radius: 50%;
	background: rgba(22, 50, 95, .23);
	filter: blur(50px);
	transform: translate(-50%, -50%);
}

.dlp-build-map__core {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: flex;
	width: 180px;
	height: 180px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(22, 50, 95, .88), rgba(11, 40, 75, .9));
	box-shadow: 0 24px 70px rgba(0, 0, 0, .35), inset 0 1px rgba(255, 255, 255, .24);
	text-align: center;
	transform: translate(-50%, -50%);
}

.dlp-build-map__core span {
	margin-bottom: 3px;
	color: #d8d0ff;
	font-size: .69rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.dlp-build-map__core strong {
	font-size: 1.25rem;
}

.dlp-build-map__node {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: 12px;
	color: #eef1ff;
	background: rgba(12, 16, 30, .8);
	box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
	font-size: .85rem;
	font-weight: 750;
	backdrop-filter: blur(12px);
}

.dlp-build-map__node span {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 8px;
	color: var(--dlp-cyan);
	background: rgba(42, 155, 192, .1);
	font-size: .65rem;
}

.dlp-build-map__node--one {
	top: 9%;
	left: 10%;
}

.dlp-build-map__node--two {
	top: 21%;
	right: 0;
}

.dlp-build-map__node--three {
	right: 4%;
	bottom: 13%;
}

.dlp-build-map__node--four {
	bottom: 7%;
	left: 4%;
}

.dlp-section {
	padding-top: clamp(76px, 9vw, 126px);
	padding-bottom: clamp(76px, 9vw, 126px);
}

.dlp-section--soft {
	background: var(--dlp-soft);
}

.dlp-section__header,
.dlp-pricing__header {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
	align-items: end;
	gap: 44px;
	margin-bottom: clamp(40px, 6vw, 68px);
}

.dlp-section__header--compact {
	margin-bottom: 38px;
}

.dlp-section__header h2,
.dlp-pricing__header h2,
.dlp-maintenance h2,
.dlp-faq h2,
.dlp-closing h2,
.dlp-project-band h2 {
	margin-bottom: 0;
	font-size: clamp(2.15rem, 4vw, 3.75rem);
}

.dlp-section__header > p,
.dlp-pricing__header > p {
	margin-bottom: 3px;
	font-size: 1.04rem;
}

.dlp-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dlp-service-card {
	position: relative;
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--dlp-line);
	border-radius: var(--dlp-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dlp-service-card:hover {
	border-color: rgba(22, 50, 95, .28);
	box-shadow: var(--dlp-shadow);
	transform: translateY(-5px);
}

.dlp-service-card__number {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 52px;
	place-items: center;
	border: 1px solid rgba(22, 50, 95, .18);
	border-radius: 12px;
	color: var(--dlp-purple-dark);
	background: rgba(22, 50, 95, .07);
	font-size: .72rem;
	font-weight: 850;
}

.dlp-service-card h3 {
	margin-bottom: 12px;
	font-size: 1.35rem;
}

.dlp-service-card p {
	margin-bottom: 0;
	font-size: .94rem;
}

.dlp-project-band {
	padding: clamp(74px, 8vw, 112px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 90% 0, rgba(42, 155, 192, .16), transparent 25rem),
		linear-gradient(135deg, #6140d0 0%, #482aab 56%, #23185b 100%);
}

.dlp-project-band__grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr);
	align-items: center;
	gap: clamp(56px, 9vw, 124px);
}

.dlp-project-band .dlp-kicker {
	color: #bdf4ff !important;
}

.dlp-project-band h2 {
	margin-bottom: 22px;
	color: #fff;
}

.dlp-project-band__copy > p:not(.dlp-kicker) {
	margin-bottom: 28px;
	color: #e1dcf8;
	font-size: 1.04rem;
}

.dlp-project-band__steps {
	padding: 0;
	margin: 0;
	list-style: none;
}

.dlp-project-band__steps li {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	padding: 21px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.dlp-project-band__steps li:first-child {
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.dlp-project-band__steps > li > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	color: #10203a;
	background: var(--dlp-cyan);
	font-size: .68rem;
	font-weight: 900;
}

.dlp-project-band__steps strong {
	display: block;
	margin: 1px 0 3px;
	color: #fff;
	font-size: 1.04rem;
}

.dlp-project-band__steps p {
	margin-bottom: 0;
	color: #d8d3ee;
	font-size: .9rem;
}

.dlp-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--dlp-line);
	border-left: 1px solid var(--dlp-line);
	list-style: none;
}

.dlp-benefit-grid li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 15px;
	padding: 27px 25px;
	border-right: 1px solid var(--dlp-line);
	border-bottom: 1px solid var(--dlp-line);
}

.dlp-benefit-grid > li > span {
	padding-top: 2px;
	color: var(--dlp-purple);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .08em;
}

.dlp-benefit-grid strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1rem;
}

.dlp-benefit-grid p {
	margin-bottom: 0;
	font-size: .88rem;
}

.dlp-pricing {
	padding: clamp(76px, 9vw, 126px) 0;
	background: var(--dlp-soft);
}

.dlp-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dlp-price-card {
	display: flex;
	min-height: 100%;
	padding: 30px;
	flex-direction: column;
	border: 1px solid var(--dlp-line);
	border-radius: var(--dlp-radius);
	background: #fff;
	box-shadow: 0 10px 34px rgba(17, 19, 34, .055);
}

.dlp-price-card__top > p:first-child {
	margin-bottom: 11px;
	color: var(--dlp-purple);
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.dlp-price-card h3 {
	min-height: 2.16em;
	margin-bottom: 18px;
	font-size: 1.42rem;
}

.dlp-price-card data {
	display: block;
	margin-bottom: 11px;
	color: var(--dlp-ink);
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1;
}

.dlp-price-card__top > p:last-child {
	min-height: 3.2em;
	margin-bottom: 24px;
	font-size: .9rem;
}

.dlp-price-card > ul {
	padding: 22px 0 12px;
	margin: 0 0 22px;
	border-top: 1px solid var(--dlp-line);
	list-style: none;
}

.dlp-price-card > ul li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 8px;
	margin-bottom: 10px;
	color: #42495a;
	font-size: .88rem;
	line-height: 1.5;
}

.dlp-price-card > ul span {
	color: #16845a;
	font-weight: 900;
}

.dlp-pricing__note {
	max-width: 940px;
	padding: 18px 20px;
	margin: 26px 0 0;
	border: 1px solid #dfe3eb;
	border-radius: 12px;
	color: #50576a !important;
	background: rgba(255, 255, 255, .7);
	font-size: .88rem;
}

.dlp-faq {
	display: grid;
	grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
	gap: clamp(52px, 8vw, 110px);
	padding-top: clamp(76px, 9vw, 126px);
	padding-bottom: clamp(76px, 9vw, 126px);
}

.dlp-faq__intro h2 {
	margin-bottom: 20px;
}

.dlp-faq__items {
	border-top: 1px solid var(--dlp-line);
}

.dlp-faq details {
	border-bottom: 1px solid var(--dlp-line);
}

.dlp-faq summary {
	position: relative;
	padding: 24px 48px 24px 0;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 780;
	list-style: none;
}

.dlp-faq summary::-webkit-details-marker {
	display: none;
}

.dlp-faq summary::before,
.dlp-faq summary::after {
	position: absolute;
	top: 50%;
	right: 8px;
	width: 16px;
	height: 2px;
	background: var(--dlp-purple);
	content: "";
	transform: translateY(-50%);
}

.dlp-faq summary::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform .18s ease;
}

.dlp-faq details[open] summary::after {
	transform: translateY(-50%) rotate(0);
}

.dlp-faq details p {
	padding: 0 48px 25px 0;
	margin-bottom: 0;
}

.dlp-closing {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 38px;
	padding-top: clamp(42px, 6vw, 68px);
	padding-right: clamp(28px, 5vw, 64px);
	padding-bottom: clamp(42px, 6vw, 68px);
	padding-left: clamp(28px, 5vw, 64px);
	margin-bottom: clamp(76px, 9vw, 126px);
	border: 1px solid rgba(22, 50, 95, .17);
	border-radius: var(--dlp-radius-lg);
	background:
		radial-gradient(circle at 80% 10%, rgba(42, 155, 192, .18), transparent 17rem),
		linear-gradient(135deg, rgba(22, 50, 95, .09), rgba(22, 50, 95, .035));
}

.dlp-closing h2 {
	margin-bottom: 11px;
}

.dlp-closing p:last-child {
	margin-bottom: 0;
}

/* Paused Bulk Email variant. */

.dlp-hero--paused {
	background:
		radial-gradient(circle at 80% 15%, rgba(245, 185, 64, .13), transparent 24rem),
		radial-gradient(circle at 15% 90%, rgba(42, 155, 192, .12), transparent 28rem),
		linear-gradient(145deg, #080a13 0%, #0d111f 54%, #17192a 100%);
}

.dlp-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 12px;
	margin-bottom: 22px;
	border: 1px solid rgba(245, 185, 64, .28);
	border-radius: 999px;
	color: #ffe4a9 !important;
	background: rgba(245, 185, 64, .1);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.dlp-status-pill span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dlp-amber);
	box-shadow: 0 0 0 5px rgba(245, 185, 64, .1);
}

.dlp-existing-customer {
	max-width: 680px;
	padding-left: 15px;
	margin: 26px 0 0;
	border-left: 2px solid var(--dlp-cyan);
	color: #cbd2e4 !important;
	font-size: .88rem;
}

.dlp-existing-customer strong {
	color: #fff;
}

.dlp-status-board {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 22px;
	background: rgba(10, 13, 25, .74);
	box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
	backdrop-filter: blur(16px);
}

.dlp-status-board__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.dlp-status-board__top span {
	color: #abb3c8;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.dlp-status-board__top strong {
	padding: 6px 9px;
	border-radius: 8px;
	color: #ffe6ae;
	background: rgba(245, 185, 64, .12);
	font-size: .75rem;
}

.dlp-status-board__signal {
	display: flex;
	height: 126px;
	align-items: end;
	gap: 8px;
	padding: 24px 0;
}

.dlp-status-board__signal span {
	display: block;
	width: 33.333%;
	border-radius: 8px 8px 3px 3px;
	background: linear-gradient(to top, rgba(22, 50, 95, .42), rgba(42, 155, 192, .68));
}

.dlp-status-board__signal span:nth-child(1) {
	height: 35%;
}

.dlp-status-board__signal span:nth-child(2) {
	height: 70%;
}

.dlp-status-board__signal span:nth-child(3) {
	height: 48%;
	background: linear-gradient(to top, rgba(110, 87, 39, .45), rgba(245, 185, 64, .72));
}

.dlp-status-board dl {
	margin-bottom: 0;
}

.dlp-status-board dl > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.dlp-status-board dt {
	color: #aeb6ca;
	font-size: .82rem;
}

.dlp-status-board dd {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #f1f3fa;
	font-size: .82rem;
	font-weight: 750;
}

.dlp-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.dlp-dot--paused {
	background: var(--dlp-amber);
}

.dlp-dot--support {
	background: var(--dlp-green);
}

.dlp-maintenance {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
	gap: clamp(50px, 8vw, 104px);
	padding-top: clamp(72px, 8vw, 106px);
	padding-bottom: clamp(72px, 8vw, 106px);
}

.dlp-maintenance h2 {
	margin-bottom: 21px;
}

.dlp-maintenance__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.dlp-maintenance__list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: start;
	gap: 14px;
	padding: 17px 0;
	border-bottom: 1px solid var(--dlp-line);
	color: #373e4f;
	font-size: .94rem;
}

.dlp-maintenance__list li:first-child {
	border-top: 1px solid var(--dlp-line);
}

.dlp-maintenance__list span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 10px;
	color: #7c5712;
	background: #fff1ce;
	font-size: .66rem;
	font-weight: 900;
}

.dlp-service-grid--paused .dlp-service-card__number {
	color: #805d16;
	border-color: rgba(172, 120, 18, .18);
	background: rgba(245, 185, 64, .12);
}

.dlp-pricing--paused {
	background: #fff;
}

.dlp-price-card--paused {
	background: #f8f9fb;
	box-shadow: none;
}

.dlp-price-card--paused .dlp-price-card__top > p:first-child {
	color: #8a6115;
}

.dlp-price-card__alternate {
	min-height: 0 !important;
	margin-bottom: 24px !important;
	color: #646b7d !important;
	font-size: .82rem !important;
}

.dlp-closing--paused {
	border-color: rgba(198, 140, 27, .22);
	background:
		radial-gradient(circle at 82% 0, rgba(245, 185, 64, .18), transparent 17rem),
		linear-gradient(135deg, rgba(245, 185, 64, .09), rgba(22, 50, 95, .035));
}

@media (max-width: 1080px) {
	.dlp-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
		gap: 46px;
	}

	.dlp-build-map {
		min-height: 400px;
	}

	.dlp-build-map::before {
		width: 290px;
		height: 290px;
	}

	.dlp-service-grid,
	.dlp-price-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dlp-price-grid--three > :last-child {
		grid-column: 1 / -1;
	}

	.dlp-price-grid--three > :last-child {
		width: calc(50% - 9px);
		justify-self: center;
	}
}

@media (max-width: 820px) {
	.dlp-hero__grid,
	.dlp-project-band__grid,
	.dlp-section__header,
	.dlp-pricing__header,
	.dlp-faq,
	.dlp-maintenance {
		grid-template-columns: minmax(0, 1fr);
	}

	.dlp-hero__grid,
	.dlp-project-band__grid,
	.dlp-faq,
	.dlp-maintenance {
		gap: 44px;
	}

	.dlp-hero h1 {
		font-size: clamp(3rem, 12vw, 5.2rem);
	}

	.dlp-build-map {
		width: min(100%, 540px);
		min-height: 420px;
		margin-inline: auto;
	}

	.dlp-section__header,
	.dlp-pricing__header {
		align-items: start;
		gap: 18px;
	}

	.dlp-benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dlp-closing {
		grid-template-columns: minmax(0, 1fr);
		justify-items: start;
	}
}

@media (max-width: 620px) {
	.dlp-hero {
		padding-top: 62px;
		padding-bottom: 68px;
	}

	.dlp-hero h1 {
		font-size: clamp(2.65rem, 14vw, 4.25rem);
	}

	.dlp-actions,
	.dlp-actions .dlp-button,
	.dlp-closing .dlp-button {
		width: 100%;
	}

	.dlp-hero__proof {
		align-items: flex-start;
		flex-direction: column;
	}

	.dlp-build-map {
		min-height: 350px;
	}

	.dlp-build-map::before {
		width: 260px;
		height: 260px;
	}

	.dlp-build-map::after {
		width: 180px;
		height: 180px;
	}

	.dlp-build-map__core {
		width: 142px;
		height: 142px;
	}

	.dlp-build-map__core strong {
		font-size: 1.05rem;
	}

	.dlp-build-map__node {
		padding: 9px 10px;
		font-size: .75rem;
	}

	.dlp-build-map__node--one {
		top: 5%;
		left: 0;
	}

	.dlp-build-map__node--two {
		top: 18%;
	}

	.dlp-build-map__node--three {
		right: 0;
		bottom: 11%;
	}

	.dlp-build-map__node--four {
		bottom: 4%;
		left: 0;
	}

	.dlp-service-grid,
	.dlp-price-grid,
	.dlp-benefit-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.dlp-price-grid--three > :last-child {
		grid-column: auto;
	}

	.dlp-price-grid--three > :last-child {
		width: auto;
	}

	.dlp-service-card {
		min-height: 0;
		padding: 25px;
	}

	.dlp-service-card__number {
		margin-bottom: 32px;
	}

	.dlp-benefit-grid {
		border-left: 0;
	}

	.dlp-benefit-grid li {
		padding-right: 0;
		padding-left: 0;
		border-right: 0;
	}

	.dlp-price-card {
		padding: 25px;
	}

	.dlp-price-card h3,
	.dlp-price-card__top > p:last-child {
		min-height: 0;
	}

	.dlp-project-band__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.dlp-status-board {
		padding: 22px;
	}

	.dlp-status-board dl > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.dlp-closing {
		width: min(100% - 32px, var(--dp-shell));
	}
}

@media (prefers-reduced-motion: reduce) {
	.dlp-page *,
	.dlp-page *::before,
	.dlp-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
