.dgl-home {
	--dgl-blue: #1769e8;
	--dgl-blue-dark: #0c2e67;
	--dgl-orange: #ff8a32;
	--dgl-ink: #13243d;
	--dgl-muted: #64748b;
	--dgl-line: #e4eaf2;
	--dgl-soft: #f4f7fb;
	color: var(--dgl-ink);
	font-family: inherit;
}

.dgl-home *,
.dgl-home *::before,
.dgl-home *::after {
	box-sizing: border-box;
}

.dgl-hero {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(540px, 1.15fr);
	gap: 18px;
	margin: 22px auto 56px;
	max-width: 1240px;
}

.dgl-hero-copy,
.dgl-prime-showcase {
	border-radius: 28px;
	min-width: 0;
}

.dgl-hero-copy {
	align-items: flex-start;
	background:
		radial-gradient(circle at 15% 15%, rgba(255, 138, 50, .32), transparent 31%),
		linear-gradient(145deg, #0a2b63, #071c3e 72%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 525px;
	overflow: hidden;
	padding: clamp(30px, 4vw, 58px);
	position: relative;
}

.dgl-hero-copy::after {
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	content: "";
	height: 310px;
	left: -155px;
	position: absolute;
	top: -125px;
	width: 310px;
}

.dgl-eyebrow {
	color: var(--dgl-blue);
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -.1px;
	margin-bottom: 12px;
}

.dgl-hero .dgl-eyebrow {
	color: #9dc5ff;
}

.dgl-hero h1 {
	color: #fff;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 900;
	letter-spacing: -1.9px;
	line-height: 1.25;
	margin: 0 0 20px;
}

.dgl-hero-copy > p {
	color: #d3e1f6;
	font-size: 17px;
	line-height: 2;
	margin: 0 0 28px;
	max-width: 610px;
}

.dgl-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dgl-button {
	align-items: center;
	border-radius: 13px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.dgl-button--primary {
	background: var(--dgl-orange);
	box-shadow: 0 14px 34px rgba(255, 138, 50, .24);
	color: #182034;
}

.dgl-button--ghost {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
}

.dgl-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 30px;
}

.dgl-hero-tags a {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	color: #dbe8fb;
	font-size: 12px;
	padding: 7px 12px;
}

.dgl-prime-showcase {
	background: var(--dgl-soft);
	border: 1px solid var(--dgl-line);
	padding: 20px;
}

.dgl-section-kicker {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 900;
	gap: 8px;
	margin: 0 4px 15px;
}

.dgl-section-kicker span {
	background: #21b36b;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(33, 179, 107, .12);
	height: 8px;
	width: 8px;
}

.dgl-prime-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.dgl-product-card {
	background: #fff;
	border: 1px solid var(--dgl-line);
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dgl-product-card:hover {
	border-color: #bcd3f7;
	box-shadow: 0 16px 34px rgba(20, 53, 95, .1);
	transform: translateY(-3px);
}

.dgl-product-image {
	aspect-ratio: 1.16 / 1;
	background: linear-gradient(145deg, #f8fafc, #edf2f8);
	display: block;
	overflow: hidden;
	position: relative;
}

.dgl-product-card--compact .dgl-product-image {
	aspect-ratio: 1.5 / 1;
}

.dgl-product-card--compact .dgl-product-body {
	padding: 11px 12px 12px;
}

.dgl-product-card--compact .dgl-product-body small {
	margin-bottom: 3px;
}

.dgl-product-card--compact .dgl-product-body h3 {
	display: -webkit-box;
	font-size: 12px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.55;
	margin-bottom: 8px;
	overflow: hidden;
}

.dgl-product-card--compact .dgl-price {
	font-size: 11px;
}

.dgl-product-image img {
	height: 100%;
	object-fit: contain;
	padding: 12px;
	transition: transform .25s ease;
	width: 100%;
}

.dgl-product-card:hover .dgl-product-image img {
	transform: scale(1.045);
}

.dgl-stock-badge {
	background: #e7f8ef;
	border-radius: 999px;
	color: #13864b;
	font-size: 10px;
	font-weight: 900;
	left: 10px;
	padding: 5px 8px;
	position: absolute;
	top: 10px;
}

.dgl-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px;
}

.dgl-product-body small {
	color: #8a98ac;
	direction: rtl;
	display: block;
	font-size: 10px;
	margin-bottom: 6px;
	text-align: right;
}

.dgl-product-body small b {
	color: var(--dgl-blue);
	direction: ltr;
	display: inline-block;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-weight: 900;
	unicode-bidi: isolate;
}

.dgl-product-body h3 {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.65;
	margin: 0 0 13px;
}

.dgl-product-body h3 a {
	color: var(--dgl-ink);
}

.dgl-product-footer {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-top: auto;
}

.dgl-price {
	color: var(--dgl-blue);
	font-size: 12px;
	font-weight: 900;
}

.dgl-product-arrow {
	align-items: center;
	background: var(--dgl-blue);
	border-radius: 9px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 30px;
	height: 30px;
	justify-content: center;
}

.dgl-section {
	margin: 0 auto 72px;
	max-width: 1240px;
}

.dgl-section-heading {
	align-items: flex-end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.dgl-section-heading h2,
.dgl-final-cta h2 {
	color: var(--dgl-ink);
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 1.35;
	margin: 0;
}

.dgl-section-heading > a {
	color: var(--dgl-blue);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.dgl-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.dgl-category-card {
	background: #fff;
	border: 1px solid var(--dgl-line);
	border-radius: 20px;
	color: var(--dgl-ink);
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: auto auto auto;
	padding: 19px;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.dgl-category-card:hover {
	background: #f7faff;
	border-color: #bad3fa;
	transform: translateY(-2px);
}

.dgl-category-mark {
	align-items: center;
	background: #eaf2ff;
	border-radius: 16px;
	color: var(--dgl-blue);
	direction: ltr;
	display: flex;
	font-size: 15px;
	font-weight: 950;
	grid-row: 1 / 4;
	height: 58px;
	justify-content: center;
	margin-left: 14px;
	width: 58px;
}

.dgl-category-card strong {
	font-size: 16px;
	margin-bottom: 4px;
}

.dgl-category-card small {
	color: var(--dgl-muted);
	font-size: 12px;
	line-height: 1.6;
}

.dgl-card-link {
	color: var(--dgl-blue);
	font-size: 11px;
	font-weight: 800;
	margin-top: 10px;
}

.dgl-services {
	background: var(--dgl-soft);
	border-radius: 28px;
	padding: clamp(24px, 4vw, 48px);
}

.dgl-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.dgl-service-card {
	background: #fff;
	border: 1px solid var(--dgl-line);
	border-radius: 19px;
	color: var(--dgl-ink);
	display: flex;
	flex-direction: column;
	min-height: 255px;
	padding: 22px;
	transition: box-shadow .2s ease, transform .2s ease;
}

.dgl-service-card:hover {
	box-shadow: 0 18px 36px rgba(20, 53, 95, .09);
	transform: translateY(-3px);
}

.dgl-service-card > span {
	color: var(--dgl-orange);
	direction: ltr;
	font-size: 28px;
	font-weight: 950;
	margin-bottom: 25px;
	text-align: right;
}

.dgl-service-card h3 {
	font-size: 18px;
	font-weight: 900;
	margin: 0 0 10px;
}

.dgl-service-card p {
	color: var(--dgl-muted);
	font-size: 13px;
	line-height: 1.9;
	margin: 0 0 20px;
}

.dgl-service-card strong {
	color: var(--dgl-blue);
	font-size: 12px;
	margin-top: auto;
}

.dgl-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.dgl-product-grid .dgl-product-image {
	aspect-ratio: 1.2 / 1;
}

.dgl-final-cta {
	align-items: center;
	background: linear-gradient(135deg, var(--dgl-blue), #0948a8);
	border-radius: 28px;
	color: #fff;
	display: flex;
	gap: 35px;
	justify-content: space-between;
	margin: 0 auto 70px;
	max-width: 1240px;
	overflow: hidden;
	padding: clamp(30px, 5vw, 58px);
	position: relative;
}

.dgl-final-cta::after {
	border: 34px solid rgba(255, 255, 255, .07);
	border-radius: 50%;
	content: "";
	height: 240px;
	left: -85px;
	position: absolute;
	top: -70px;
	width: 240px;
}

.dgl-final-cta .dgl-eyebrow {
	color: #cce0ff;
}

.dgl-final-cta h2 {
	color: #fff;
}

.dgl-final-cta p {
	color: #d7e6ff;
	font-size: 14px;
	line-height: 1.9;
	margin: 12px 0 0;
}

.dgl-button--light {
	background: #fff;
	color: var(--dgl-blue);
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 1100px) {
	.dgl-hero {
		grid-template-columns: 1fr;
	}

	.dgl-hero-copy {
		min-height: auto;
	}

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

@media (max-width: 760px) {
	.dgl-hero,
	.dgl-section,
	.dgl-final-cta {
		margin-left: 12px;
		margin-right: 12px;
	}

	.dgl-hero {
		margin-top: 12px;
	}

	.dgl-hero-copy,
	.dgl-prime-showcase,
	.dgl-services,
	.dgl-final-cta {
		border-radius: 20px;
	}

	.dgl-hero-copy {
		padding: 30px 23px;
	}

	.dgl-hero h1 {
		font-size: 34px;
		letter-spacing: -1.2px;
	}

	.dgl-hero-copy > p {
		font-size: 14px;
	}

	.dgl-prime-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.dgl-product-card--compact {
		flex: 0 0 72%;
		scroll-snap-align: start;
	}

	.dgl-category-grid,
	.dgl-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dgl-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.dgl-service-grid {
		grid-template-columns: 1fr;
	}

	.dgl-service-card {
		min-height: 215px;
	}

	.dgl-final-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 460px) {
	.dgl-category-grid,
	.dgl-product-grid {
		grid-template-columns: 1fr;
	}

	.dgl-product-card--compact {
		flex-basis: 84%;
	}
}

/* Inventory and service carousels. */
.dgl-story-carousel {
	background: #071a35;
	border-radius: 30px;
	box-shadow: 0 24px 70px rgba(5, 29, 66, .18);
	margin: 22px auto 64px;
	max-width: 1240px;
	overflow: hidden;
	position: relative;
}

.dgl-story-slides {
	min-height: 570px;
	position: relative;
}

.dgl-story-slide {
	display: flex;
	min-height: 570px;
	overflow: hidden;
	position: relative;
}

.dgl-story-slide[hidden] {
	display: none;
}

.dgl-story-slide.is-active {
	animation: dgl-story-reveal .48s ease both;
}

@keyframes dgl-story-reveal {
	from { opacity: .4; transform: scale(1.01); }
	to { opacity: 1; transform: scale(1); }
}

.dgl-story-media {
	background-position: center;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.dgl-story-slide::after {
	background:
		linear-gradient(90deg, rgba(3, 17, 39, .97) 0%, rgba(3, 17, 39, .9) 43%, rgba(3, 17, 39, .44) 72%, rgba(3, 17, 39, .18) 100%),
		linear-gradient(0deg, rgba(3, 17, 39, .62), transparent 55%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.dgl-story-copy {
	align-self: center;
	color: #fff;
	max-width: 720px;
	padding: 58px clamp(32px, 6vw, 76px) 100px;
	position: relative;
	z-index: 2;
}

.dgl-story-copy .dgl-eyebrow {
	color: #a8ccff;
}

.dgl-story-copy h1,
.dgl-story-copy h2 {
	color: #fff;
	font-size: clamp(37px, 5vw, 64px);
	font-weight: 950;
	letter-spacing: -2px;
	line-height: 1.22;
	margin: 0 0 20px;
	text-shadow: 0 3px 22px rgba(0, 0, 0, .3);
}

.dgl-story-copy p {
	color: #dceaff;
	font-size: 16px;
	line-height: 2;
	margin: 0 0 28px;
	max-width: 650px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.dgl-story-controls {
	align-items: center;
	bottom: 26px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	left: clamp(28px, 5vw, 62px);
	position: absolute;
	right: clamp(28px, 5vw, 62px);
	z-index: 5;
}

.dgl-carousel-buttons {
	display: inline-flex;
	direction: rtl;
	gap: 7px;
}

.dgl-carousel-buttons button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--dgl-line);
	border-radius: 10px;
	color: var(--dgl-ink);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 16px;
	font-weight: 900;
	height: 39px;
	justify-content: center;
	padding: 0;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
	width: 39px;
}

.dgl-story-controls .dgl-carousel-buttons button {
	background: rgba(8, 28, 59, .82);
	border-color: rgba(255, 255, 255, .25);
	color: #fff;
}

.dgl-story-autoplay {
	align-items: center;
	background: rgba(8, 28, 59, .82);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 12px;
	font-weight: 850;
	gap: 7px;
	justify-content: center;
	min-height: 39px;
	padding: 0 14px;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
	white-space: nowrap;
}

.dgl-story-autoplay-icon {
	display: inline-flex;
	font-size: 12px;
	justify-content: center;
	line-height: 1;
	min-width: 12px;
}

.dgl-story-autoplay:hover,
.dgl-story-autoplay[aria-pressed='true'] {
	background: var(--dgl-orange);
	border-color: var(--dgl-orange);
}

.dgl-story-autoplay:hover {
	transform: translateY(-1px);
}

.dgl-story-autoplay:focus-visible,
.dgl-story-controls .dgl-carousel-buttons button:focus-visible,
.dgl-story-dots button:focus-visible {
	outline: 3px solid #ffd08a;
	outline-offset: 3px;
}

.dgl-story-autoplay:disabled {
	background: rgba(8, 28, 59, .72);
	border-color: rgba(255, 255, 255, .18);
	cursor: not-allowed;
	opacity: .78;
	transform: none;
}

.dgl-screen-reader-text {
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.dgl-carousel-buttons button:hover {
	background: var(--dgl-blue);
	border-color: var(--dgl-blue);
	color: #fff;
	transform: translateY(-1px);
}

.dgl-story-dots {
	display: flex;
	gap: 7px;
	margin-right: auto;
}

.dgl-story-dots button {
	background: rgba(255, 255, 255, .42);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 7px;
	padding: 0;
	transition: width .2s ease, background-color .2s ease;
	width: 7px;
}

.dgl-story-dots button[aria-selected='true'] {
	background: var(--dgl-orange);
	width: 28px;
}

.dgl-story-counter {
	color: #c7d9f2;
	font-size: 11px;
	font-weight: 800;
}

.dgl-story-counter b {
	color: #fff;
	font-size: 16px;
}

.dgl-stock-now {
	margin-bottom: 76px;
}

.dgl-section-kicker i {
	background: #21b36b;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(33, 179, 107, .12);
	display: inline-block;
	height: 8px;
	margin-left: 4px;
	width: 8px;
}

.dgl-heading-actions {
	align-items: center;
	display: flex;
	gap: 16px;
}

.dgl-heading-actions > a {
	color: var(--dgl-blue);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.dgl-product-rail {
	direction: rtl;
	display: flex;
	gap: 14px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 4px 2px 22px;
	scrollbar-color: #cad7e8 transparent;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
}

.dgl-product-rail::-webkit-scrollbar {
	height: 6px;
}

.dgl-product-rail::-webkit-scrollbar-thumb {
	background: #cad7e8;
	border-radius: 999px;
}

.dgl-product-rail .dgl-product-card {
	flex: 0 0 calc((100% - 46px) / 4.25);
	scroll-snap-align: start;
}

.dgl-product-rail .dgl-product-image {
	aspect-ratio: 1.25 / 1;
}

@media (max-width: 900px) {
	.dgl-story-slides,
	.dgl-story-slide {
		min-height: 520px;
	}

	.dgl-story-slide::after {
		background: linear-gradient(90deg, rgba(3, 17, 39, .96) 0%, rgba(3, 17, 39, .82) 62%, rgba(3, 17, 39, .42) 100%);
	}

	.dgl-story-copy {
		max-width: 650px;
	}

	.dgl-product-rail .dgl-product-card {
		flex-basis: calc((100% - 30px) / 2.6);
	}
}

@media (max-width: 760px) {
	.dgl-story-carousel {
		border-radius: 20px;
		margin: 12px 12px 52px;
	}

	.dgl-story-slides,
	.dgl-story-slide {
		min-height: 590px;
	}

	.dgl-story-media {
		background-position: 62% center;
	}

	.dgl-story-slide::after {
		background: linear-gradient(180deg, rgba(3, 17, 39, .65) 0%, rgba(3, 17, 39, .46) 30%, rgba(3, 17, 39, .97) 70%, #031127 100%);
	}

	.dgl-story-copy {
		align-self: flex-end;
		padding: 220px 24px 105px;
	}

	.dgl-story-copy h1,
	.dgl-story-copy h2 {
		font-size: 34px;
		letter-spacing: -1.1px;
	}

	.dgl-story-copy p {
		font-size: 13px;
		line-height: 1.85;
	}

	.dgl-story-controls {
		bottom: 20px;
		gap: 9px;
		left: 22px;
		right: 22px;
	}

	.dgl-story-autoplay {
		padding-inline: 11px;
	}

	.dgl-heading-actions {
		justify-content: space-between;
		width: 100%;
	}

	.dgl-product-rail .dgl-product-card {
		flex-basis: 72%;
	}
}

@media (max-width: 460px) {
	.dgl-story-controls {
		left: 16px;
		right: 16px;
	}

	.dgl-story-autoplay {
		font-size: 11px;
		padding-inline: 9px;
	}

	.dgl-story-counter {
		display: none;
	}

	.dgl-product-rail .dgl-product-card {
		flex-basis: 84%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dgl-story-slide.is-active {
		animation: none;
	}
}
