:root {
	--dl-header-height: 76px;
	--dl-container: var(--pr-content-wide);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--dl-header-height);
}

body.dl-homepage {
	margin: 0;
	background: var(--pr-white);
	color: var(--pr-ink);
	font-family: var(--pr-font-body);
	font-size: 16px;
}

.dl-homepage *,
.dl-homepage *::before,
.dl-homepage *::after {
	box-sizing: border-box;
}

.dl-homepage a {
	color: inherit;
}

.dl-homepage img {
	max-width: 100%;
}

.dl-container {
	width: var(--dl-container);
	margin-inline: auto;
}

.dl-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 99999;
	padding: 12px 18px;
	background: var(--pr-white);
	color: var(--pr-black);
	transform: translateY(-150%);
}

.dl-skip-link:focus {
	transform: none;
}

.dl-announcement {
	background: var(--pr-black);
	color: var(--pr-white);
}

.dl-announcement__inner {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	font-size: 12px;
}

.dl-announcement p {
	margin: 0;
	color: var(--pr-gray-300);
}

.dl-announcement a {
	color: var(--pr-cyan-400);
	font-weight: 700;
	text-decoration: none;
}

.dl-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--pr-line-light);
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(16px);
}

.admin-bar .dl-site-header {
	top: 32px;
}

.dl-site-header__main {
	display: flex;
	align-items: center;
	min-height: var(--dl-header-height);
}

.dl-logo {
	display: inline-flex;
	gap: 11px;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.dl-logo__word {
	color: var(--pr-black);
	font-family: var(--pr-font-display);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.dl-logo__symbol {
	position: relative;
	display: block;
	width: 34px;
	height: 27px;
}

.dl-logo__symbol i {
	position: absolute;
	display: block;
	width: 26px;
	height: 6px;
	border-radius: 1px;
	background: var(--pr-gradient-brand);
	transform: skewX(-28deg);
}

.dl-logo__symbol i:nth-child(1) {
	top: 0;
	left: 0;
}

.dl-logo__symbol i:nth-child(2) {
	top: 10px;
	left: 4px;
}

.dl-logo__symbol i:nth-child(3) {
	top: 20px;
	left: 8px;
}

.dl-primary-nav {
	display: flex;
	gap: 4px;
	align-items: stretch;
	margin-left: 46px;
	align-self: stretch;
}

.dl-primary-nav > a,
.dl-mega > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 15px;
	color: var(--pr-gray-800);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.dl-primary-nav > a::after,
.dl-mega > a::after {
	position: absolute;
	right: 15px;
	bottom: 0;
	left: 15px;
	height: 3px;
	background: var(--pr-purple-500);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--pr-transition);
}

.dl-primary-nav > a:hover::after,
.dl-primary-nav > a:focus-visible::after,
.dl-mega:hover > a::after,
.dl-mega:focus-within > a::after {
	transform: scaleX(1);
}

.dl-mega {
	display: flex;
	align-items: stretch;
}

.dl-mega__panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 20;
	padding: 38px 0;
	border-top: 1px solid var(--pr-line-light);
	background: var(--pr-white);
	box-shadow: 0 24px 38px rgba(10, 10, 10, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity var(--pr-transition), transform var(--pr-transition);
}

.dl-mega:hover .dl-mega__panel,
.dl-mega:focus-within .dl-mega__panel {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.dl-mega__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	gap: 72px;
}

.dl-mega__grid > div {
	display: grid;
	gap: 13px;
	align-content: start;
}

.dl-mega__intro {
	padding-right: 55px;
	border-right: 1px solid var(--pr-line-light);
}

.dl-mega__intro span,
.dl-mega__label {
	color: var(--pr-purple-500);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dl-mega__intro strong {
	max-width: 380px;
	font-family: var(--pr-font-display);
	font-size: 24px;
	line-height: 1.3;
}

.dl-mega__grid a {
	color: var(--pr-gray-600);
	font-size: 14px;
	text-decoration: none;
}

.dl-mega__grid a:hover {
	color: var(--pr-purple-500);
}

.dl-site-header__tools {
	display: flex;
	gap: 23px;
	align-items: center;
	margin-left: auto;
}

.dl-site-header__tools > a:not(.dl-header-cta) {
	color: var(--pr-gray-600);
	font-size: 13px;
	text-decoration: none;
}

.dl-header-cta {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 17px;
	border-radius: var(--pr-radius-button);
	background: var(--pr-gradient-brand);
	color: var(--pr-white) !important;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.dl-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.dl-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px 0;
	background: var(--pr-black);
}

.dl-hero {
	position: relative;
	overflow: hidden;
	background: var(--pr-black);
	color: var(--pr-white);
}

.dl-hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 42%, rgba(10, 10, 10, 0.16) 76%),
		radial-gradient(circle at 78% 42%, rgba(189, 3, 247, 0.36), transparent 31%),
		radial-gradient(circle at 92% 70%, rgba(23, 107, 255, 0.3), transparent 29%);
}

.dl-hero__backdrop::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(90deg, transparent 30%, var(--pr-black));
}

.dl-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	align-items: center;
	min-height: 650px;
}

.dl-hero__content {
	max-width: 690px;
	padding: 76px 0 116px;
}

.dl-kicker {
	margin: 0 0 19px;
	color: var(--pr-cyan-400);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.dl-kicker--dark {
	color: var(--pr-purple-500);
}

.dl-hero h1 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: clamp(52px, 5.3vw, 76px);
	font-weight: 750;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.dl-hero__lead {
	max-width: 650px;
	margin: 27px 0 0;
	color: var(--pr-gray-300);
	font-size: 19px;
	line-height: 1.58;
}

.dl-actions {
	display: flex;
	gap: 28px;
	align-items: center;
	margin-top: 36px;
}

.dl-button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: var(--pr-radius-button);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform var(--pr-transition), box-shadow var(--pr-transition), background var(--pr-transition);
}

.dl-button:hover {
	transform: translateY(-2px);
}

.dl-button--primary {
	background: var(--pr-gradient-brand);
	box-shadow: 0 12px 32px rgba(111, 20, 181, 0.26);
	color: var(--pr-white) !important;
}

.dl-button--primary:hover {
	box-shadow: 0 16px 40px rgba(23, 107, 255, 0.28);
}

.dl-button--text-light {
	padding: 0;
	color: var(--pr-white) !important;
}

.dl-button--text-light span,
.dl-solution-card a span,
.dl-platform-card a span,
.dl-resource-grid a span {
	color: var(--pr-purple-400);
	font-size: 21px;
	line-height: 0;
}

.dl-button--secondary-light {
	border-color: var(--pr-ink);
	color: var(--pr-ink) !important;
}

.dl-button--secondary-dark {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--pr-white) !important;
}

.dl-hero__product {
	position: relative;
	display: grid;
	align-self: stretch;
	place-items: center;
}

.dl-hero__product img {
	position: relative;
	z-index: 2;
	width: min(590px, 48vw);
	border-radius: 50%;
	mix-blend-mode: screen;
}

.dl-hero__glow {
	position: absolute;
	width: 80%;
	aspect-ratio: 1;
	border: 1px solid rgba(36, 214, 229, 0.22);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(189, 3, 247, 0.05),
		0 0 0 140px rgba(23, 107, 255, 0.025);
}

.dl-hero__rail {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: -84px;
	background: rgba(20, 20, 25, 0.92);
	backdrop-filter: blur(16px);
}

.dl-hero__rail a {
	display: grid;
	gap: 5px;
	min-height: 112px;
	padding: 26px 29px;
	border-right: 1px solid var(--pr-line-dark);
	text-decoration: none;
}

.dl-hero__rail a:last-child {
	border-right: 0;
}

.dl-hero__rail strong {
	font-family: var(--pr-font-display);
	font-size: 25px;
}

.dl-hero__rail span {
	color: var(--pr-gray-300);
	font-size: 11px;
}

.dl-topic-nav {
	border-bottom: 1px solid var(--pr-line-light);
	background: var(--pr-white);
}

.dl-topic-nav .dl-container {
	display: flex;
	justify-content: center;
}

.dl-topic-nav a {
	padding: 21px 28px;
	color: var(--pr-gray-600);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.dl-topic-nav a:hover {
	color: var(--pr-purple-500);
}

.dl-section {
	padding: 100px 0;
}

.dl-section-heading {
	max-width: 820px;
	margin-bottom: 48px;
}

.dl-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.dl-section-heading h2,
.dl-specifications h2,
.dl-company h2,
.dl-final-cta h2 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: clamp(38px, 4vw, 54px);
	font-weight: 720;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.dl-section-heading > p:last-child {
	max-width: 720px;
	margin: 19px auto 0;
	color: var(--pr-gray-600);
	font-size: 17px;
	line-height: 1.65;
}

.dl-products {
	background: var(--pr-white);
}

.dl-product-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-card);
	background: var(--pr-surface-muted);
}

.dl-product-feature__copy {
	display: flex;
	padding: 68px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.dl-card-label {
	display: block;
	margin-bottom: 13px;
	color: var(--pr-purple-500);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dl-product-feature h3 {
	max-width: 530px;
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: 42px;
	line-height: 1.12;
}

.dl-product-feature__copy > p {
	max-width: 570px;
	margin: 22px 0 0;
	color: var(--pr-gray-600);
	line-height: 1.7;
}

.dl-inline-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	margin: 38px 0;
	padding: 24px 0;
	border-top: 1px solid var(--pr-line-light);
	border-bottom: 1px solid var(--pr-line-light);
	list-style: none;
}

.dl-inline-specs li {
	display: grid;
	gap: 5px;
}

.dl-inline-specs strong {
	font-family: var(--pr-font-display);
	font-size: 20px;
}

.dl-inline-specs span {
	color: var(--pr-gray-600);
	font-size: 10px;
}

.dl-product-feature__visual {
	display: grid;
	min-height: 100%;
	background:
		radial-gradient(circle at 50% 50%, rgba(189, 3, 247, 0.18), transparent 44%),
		var(--pr-white);
	place-items: center;
}

.dl-product-feature__visual img {
	display: block;
	width: 82%;
}

.dl-platform {
	background: var(--pr-black);
	color: var(--pr-white);
}

.dl-section-heading--light > p:last-child {
	color: var(--pr-gray-300);
}

.dl-platform-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.dl-platform-card {
	display: flex;
	min-height: 390px;
	padding: 38px;
	border: 1px solid var(--pr-line-dark);
	border-radius: var(--pr-radius-card);
	background: var(--pr-surface-dark);
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.dl-platform-card--wide {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: 1.18fr 0.82fr;
	gap: 50px;
	align-items: center;
	min-height: 470px;
}

.dl-platform-card--wide img {
	width: 100%;
}

.dl-platform-card h3 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: 29px;
	line-height: 1.2;
}

.dl-platform-card p {
	margin: 16px 0 0;
	color: var(--pr-gray-300);
	line-height: 1.65;
}

.dl-platform-card a,
.dl-solution-card a,
.dl-resource-grid a {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 23px;
	color: var(--pr-white);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.dl-platform-card__graphic {
	display: grid;
	grid-template-columns: repeat(3, 24px);
	gap: 15px;
	justify-content: center;
	padding: 44px 0;
}

.dl-platform-card__graphic span {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--pr-gradient-data);
	box-shadow: 0 0 26px rgba(36, 214, 229, 0.35);
}

.dl-platform-card__graphic span:nth-child(2),
.dl-platform-card__graphic span:nth-child(5) {
	background: var(--pr-gradient-brand);
}

.dl-platform-card__metric {
	display: flex;
	align-items: baseline;
	justify-content: center;
	padding: 33px 0;
	background: var(--pr-gradient-brand);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dl-platform-card__metric strong {
	font-family: var(--pr-font-display);
	font-size: 108px;
	line-height: 1;
}

.dl-platform-card__metric span {
	font-size: 30px;
	font-weight: 700;
}

.dl-solutions {
	background: var(--pr-surface-muted);
}

.dl-solution-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.dl-solution-card {
	position: relative;
	display: flex;
	min-height: 390px;
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-card);
	background: var(--pr-white);
	flex-direction: column;
	justify-content: space-between;
}

.dl-solution-card--large {
	display: grid;
	grid-row: span 2;
	grid-template-rows: 1.2fr 0.8fr;
	min-height: 804px;
}

.dl-solution-card__image {
	overflow: hidden;
	background: var(--pr-gray-100);
}

.dl-solution-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dl-solution-card:hover .dl-solution-card__image img {
	transform: scale(1.03);
}

.dl-solution-card__body {
	position: relative;
	z-index: 2;
	padding: 38px;
}

.dl-solution-card h3 {
	max-width: 540px;
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: 29px;
	line-height: 1.2;
}

.dl-solution-card p {
	max-width: 540px;
	margin: 16px 0 0;
	color: var(--pr-gray-600);
	line-height: 1.65;
}

.dl-solution-card a,
.dl-resource-grid a {
	color: var(--pr-ink);
}

.dl-solution-card__data {
	display: grid;
	grid-template-columns: repeat(4, 20px);
	gap: 20px;
	justify-content: center;
	padding: 16px 0 50px;
}

.dl-solution-card__data i {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pr-gradient-data);
	box-shadow: 0 0 24px rgba(36, 214, 229, 0.32);
}

.dl-solution-card__data i:nth-child(3n) {
	background: var(--pr-gradient-brand);
}

.dl-solution-card__metric {
	display: grid;
	padding: 10px 38px 43px;
	grid-template-columns: auto auto;
	align-items: baseline;
	justify-content: start;
}

.dl-solution-card__metric strong {
	background: var(--pr-gradient-brand);
	background-clip: text;
	font-family: var(--pr-font-display);
	font-size: 82px;
	font-weight: 750;
	line-height: 1;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dl-solution-card__metric span {
	color: var(--pr-purple-500);
	font-size: 24px;
	font-weight: 700;
}

.dl-solution-card__metric small {
	grid-column: 1 / -1;
	margin-top: 5px;
	color: var(--pr-gray-600);
}

.dl-specifications {
	background: var(--pr-black);
	color: var(--pr-white);
}

.dl-specifications__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 94px;
	align-items: center;
}

.dl-specifications__visual {
	position: relative;
	padding: 25px;
	background:
		linear-gradient(135deg, rgba(189, 3, 247, 0.2), rgba(23, 107, 255, 0.08)),
		var(--pr-surface-dark);
}

.dl-specifications__visual::before {
	position: absolute;
	inset: -18px 18px 18px -18px;
	border: 1px solid rgba(36, 214, 229, 0.28);
	content: "";
}

.dl-specifications__visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
}

.dl-specifications__content > h2 {
	max-width: 600px;
}

.dl-spec-table {
	margin: 39px 0 32px;
	border-top: 1px solid var(--pr-line-dark);
}

.dl-spec-table > div {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--pr-line-dark);
}

.dl-spec-table span {
	color: var(--pr-gray-300);
	font-size: 12px;
}

.dl-spec-table strong {
	font-size: 13px;
	text-align: right;
}

.dl-developers {
	background: var(--pr-white);
}

.dl-resource-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--pr-line-light);
	border-left: 1px solid var(--pr-line-light);
}

.dl-resource-grid article {
	display: flex;
	min-height: 370px;
	padding: 34px;
	border-right: 1px solid var(--pr-line-light);
	border-bottom: 1px solid var(--pr-line-light);
	flex-direction: column;
}

.dl-resource-card__icon {
	display: grid;
	width: 64px;
	height: 64px;
	margin-bottom: 62px;
	border: 1px solid var(--pr-purple-500);
	color: var(--pr-purple-500);
	font-family: var(--pr-font-mono);
	font-size: 12px;
	font-weight: 700;
	place-items: center;
}

.dl-resource-grid h3 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: 23px;
	line-height: 1.25;
}

.dl-resource-grid p {
	margin: 15px 0 0;
	color: var(--pr-gray-600);
	font-size: 14px;
	line-height: 1.65;
}

.dl-resource-grid a {
	margin-top: auto;
	padding-top: 25px;
}

.dl-company {
	padding: 105px 0;
	background:
		linear-gradient(100deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 48%, rgba(10, 10, 10, 0.52) 100%),
		url("/wp-content/uploads/2026/06/Quality-Inspection-Workshop.png") center / cover no-repeat;
	color: var(--pr-white);
}

.dl-company__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 100px;
	align-items: center;
}

.dl-company__inner > div:first-child > p:not(.dl-kicker) {
	max-width: 650px;
	margin: 24px 0 32px;
	color: var(--pr-gray-300);
	font-size: 17px;
	line-height: 1.7;
}

.dl-company__facts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: rgba(10, 10, 10, 0.74);
	backdrop-filter: blur(12px);
}

.dl-company__facts div {
	display: grid;
	gap: 8px;
	min-height: 145px;
	padding: 30px;
	border-right: 1px solid var(--pr-line-dark);
	border-bottom: 1px solid var(--pr-line-dark);
	align-content: center;
}

.dl-company__facts strong {
	font-family: var(--pr-font-display);
	font-size: 28px;
}

.dl-company__facts span {
	color: var(--pr-gray-300);
	font-size: 11px;
}

.dl-final-cta {
	padding: 69px 0;
	background: var(--pr-surface-muted);
}

.dl-final-cta__inner {
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: space-between;
}

.dl-final-cta span {
	color: var(--pr-purple-500);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dl-final-cta h2 {
	max-width: 760px;
	margin-top: 8px;
	font-size: clamp(31px, 3vw, 43px);
}

.dl-footer {
	padding-top: 70px;
	background: var(--pr-black);
	color: var(--pr-white);
}

.dl-footer__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	padding-bottom: 60px;
}

.dl-footer__links > div {
	display: grid;
	gap: 13px;
	align-content: start;
}

.dl-footer__links h2 {
	margin: 0 0 17px;
	padding-bottom: 17px;
	border-bottom: 1px solid var(--pr-gray-600);
	font-family: var(--pr-font-display);
	font-size: 22px;
}

.dl-footer__links a {
	color: var(--pr-gray-300);
	font-size: 13px;
	text-decoration: none;
}

.dl-footer__links a:hover {
	color: var(--pr-purple-400);
}

.dl-footer__social {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	border-top: 1px solid var(--pr-line-dark);
}

.dl-footer__social > div {
	display: flex;
	gap: 17px;
	align-items: baseline;
}

.dl-footer__social strong {
	font-size: 14px;
}

.dl-footer__social span {
	color: var(--pr-gray-300);
	font-size: 12px;
}

.dl-footer__social > a {
	color: var(--pr-purple-400);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.dl-footer__global {
	padding: 28px 0;
	background: var(--pr-white);
	color: var(--pr-ink);
}

.dl-footer__global .dl-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dl-footer__legal {
	display: flex;
	gap: 20px;
	align-items: center;
	color: var(--pr-gray-600);
	font-size: 10px;
}

.dl-footer__legal a {
	text-decoration: none;
}

@media (max-width: 1120px) {
	.dl-primary-nav {
		margin-left: 25px;
	}

	.dl-primary-nav > a,
	.dl-mega > a {
		padding-inline: 10px;
		font-size: 13px;
	}

	.dl-primary-nav > a::after,
	.dl-mega > a::after {
		right: 10px;
		left: 10px;
	}

	.dl-site-header__tools {
		gap: 14px;
	}
}

@media (max-width: 979px) {
	:root {
		--dl-header-height: 68px;
	}

	.admin-bar .dl-site-header {
		top: 46px;
	}

	.dl-announcement__inner {
		justify-content: space-between;
	}

	.dl-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 106px);
		margin: 0;
		padding: 18px 20px 28px;
		background: var(--pr-white);
		box-shadow: 0 20px 30px rgba(10, 10, 10, 0.16);
		flex-direction: column;
		overflow-y: auto;
	}

	.dl-primary-nav.is-open {
		display: flex;
	}

	.dl-primary-nav > a,
	.dl-mega > a {
		min-height: 48px;
		padding: 0;
		border-bottom: 1px solid var(--pr-line-light);
	}

	.dl-primary-nav > a::after,
	.dl-mega > a::after,
	.dl-mega__panel {
		display: none;
	}

	.dl-mega {
		display: block;
	}

	.dl-site-header__tools > a {
		display: none !important;
	}

	.dl-menu-toggle {
		display: block;
	}

	.dl-hero__inner {
		grid-template-columns: 1fr;
	}

	.dl-hero__content {
		padding: 70px 0 20px;
	}

	.dl-hero__product {
		min-height: 430px;
	}

	.dl-hero__product img {
		width: min(540px, 75vw);
	}

	.dl-hero__rail {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 0;
	}

	.dl-hero__rail a:nth-child(2) {
		border-right: 0;
	}

	.dl-hero__rail a:nth-child(-n+2) {
		border-bottom: 1px solid var(--pr-line-dark);
	}

	.dl-topic-nav {
		overflow-x: auto;
	}

	.dl-topic-nav .dl-container {
		width: max-content;
		justify-content: flex-start;
	}

	.dl-product-feature,
	.dl-platform-card--wide,
	.dl-specifications__grid,
	.dl-company__inner {
		grid-template-columns: 1fr;
	}

	.dl-product-feature__visual {
		order: -1;
		min-height: 420px;
	}

	.dl-platform-grid,
	.dl-solution-grid {
		grid-template-columns: 1fr;
	}

	.dl-solution-card--large {
		grid-row: auto;
		min-height: 640px;
	}

	.dl-specifications__visual {
		max-width: 600px;
	}

	.dl-resource-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dl-company__inner {
		gap: 55px;
	}

	.dl-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.dl-footer__links {
		gap: 38px;
	}
}

@media (max-width: 639px) {
	.dl-announcement p {
		display: none;
	}

	.dl-announcement__inner {
		justify-content: center;
	}

	.dl-logo__word {
		font-size: 14px;
	}

	.dl-hero__content {
		padding-top: 58px;
	}

	.dl-hero h1 {
		font-size: 45px;
	}

	.dl-hero__lead {
		font-size: 17px;
	}

	.dl-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.dl-hero__product {
		min-height: 330px;
	}

	.dl-hero__rail {
		grid-template-columns: 1fr;
	}

	.dl-hero__rail a {
		min-height: 90px;
		border-right: 0;
		border-bottom: 1px solid var(--pr-line-dark);
	}

	.dl-section {
		padding: 68px 0;
	}

	.dl-section-heading h2,
	.dl-specifications h2,
	.dl-company h2 {
		font-size: 37px;
	}

	.dl-product-feature__copy {
		padding: 32px 24px 38px;
	}

	.dl-product-feature h3 {
		font-size: 33px;
	}

	.dl-product-feature__visual {
		min-height: 320px;
	}

	.dl-inline-specs {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.dl-platform-card,
	.dl-solution-card__body {
		padding: 27px;
	}

	.dl-platform-card--wide {
		gap: 30px;
	}

	.dl-platform-card__metric strong {
		font-size: 78px;
	}

	.dl-solution-card--large {
		min-height: 560px;
	}

	.dl-specifications__grid {
		gap: 58px;
	}

	.dl-spec-table > div {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.dl-spec-table strong {
		text-align: left;
	}

	.dl-resource-grid {
		grid-template-columns: 1fr;
	}

	.dl-resource-grid article {
		min-height: 320px;
	}

	.dl-resource-card__icon {
		margin-bottom: 45px;
	}

	.dl-company {
		padding: 72px 0;
	}

	.dl-company__facts {
		grid-template-columns: 1fr;
	}

	.dl-company__facts div {
		min-height: 110px;
	}

	.dl-footer__links {
		grid-template-columns: 1fr;
	}

	.dl-footer__social,
	.dl-footer__global .dl-container {
		gap: 22px;
		align-items: flex-start;
		flex-direction: column;
	}

	.dl-footer__social > div {
		align-items: flex-start;
		flex-direction: column;
	}

	.dl-footer__legal {
		gap: 12px;
		align-items: flex-start;
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.dl-homepage *,
	.dl-homepage *::before,
	.dl-homepage *::after {
		transition-duration: 0.01ms !important;
	}
}
