:root {
	--dg-black: #050505;
	--dg-ink: #1d1d1f;
	--dg-muted: #6e6e73;
	--dg-line: rgba(29, 29, 31, 0.16);
	--dg-soft: #f5f5f7;
	--dg-blue: #0066cc;
	--dg-blue-dark: #004a99;
	--dg-surface: rgba(255, 255, 255, 0.72);
	--dg-surface-strong: rgba(255, 255, 255, 0.9);
	--dg-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
	--dg-radius: 28px;
	--dg-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--dg-ink);
	font-family: var(--dg-font);
	letter-spacing: 0;
}

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

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text,
.dg-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.dg-skip-link:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	border-radius: 999px;
	box-shadow: var(--dg-shadow);
}

.liquid-glass,
.dg-site-header {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
		rgba(255, 255, 255, 0.66);
	backdrop-filter: blur(26px) saturate(180%);
	-webkit-backdrop-filter: blur(26px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 18px 60px rgba(0, 0, 0, 0.08);
}

.liquid-glass {
	position: relative;
	overflow: hidden;
}

.liquid-glass::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 34%, rgba(255, 255, 255, 0.2) 66%, transparent),
		radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.45), transparent 26%);
	opacity: 0.72;
	transform: translate3d(-12%, -8%, 0);
	transition: transform 520ms ease, opacity 520ms ease;
}

.liquid-glass:hover::before {
	opacity: 0.94;
	transform: translate3d(8%, 4%, 0);
}

.dg-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	border-width: 0 0 1px;
	background:
		linear-gradient(180deg, rgba(251, 251, 253, 0.84), rgba(251, 251, 253, 0.64)),
		rgba(251, 251, 253, 0.72);
	transition: background-color 180ms ease, box-shadow 180ms ease;
}

.dg-site-header.is-scrolled {
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.dg-nav {
	width: min(100%, 1120px);
	height: 46px;
	margin: 0 auto;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.dg-brand,
.dg-footer__brand {
	text-decoration: none;
	font-weight: 800;
}

.dg-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: max-content;
	font-size: 13px;
}

.dg-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0;
}

.dg-brand__name {
	color: #1d1d1f;
}

.dg-nav__desktop {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.dg-nav__list,
.dg-mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dg-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2.1vw, 30px);
}

.dg-nav__list > li {
	position: relative;
}

.dg-nav__list > li.has-submenu::after {
	content: "";
	position: absolute;
	left: -18px;
	right: -18px;
	top: 100%;
	height: 22px;
}

.dg-nav__list a,
.dg-mobile-menu a {
	text-decoration: none;
	color: rgba(29, 29, 31, 0.84);
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	transition: color 160ms ease;
}

.dg-nav__list a:hover,
.dg-mobile-menu a:hover {
	color: #000;
}

.dg-nav__submenu {
	position: absolute;
	left: 50%;
	top: calc(100% + 12px);
	transform: translateX(-50%) translateY(8px);
	min-width: 236px;
	list-style: none;
	margin: 0;
	padding: 10px;
	display: block;
	border-radius: 18px;
	background: rgba(251, 251, 253, 0.82);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transform-origin: top center;
	transition: opacity 180ms ease, transform 180ms ease;
}

.dg-nav__submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -18px;
	height: 18px;
}

.dg-nav__submenu a {
	display: block;
	min-height: 0;
	padding: 10px 12px;
	border-radius: 12px;
	background: transparent;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.18;
	white-space: nowrap;
	box-shadow: none;
	transition: background-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.dg-nav__submenu a:hover {
	background: rgba(255, 255, 255, 0.72);
	color: var(--dg-blue);
	transform: translateX(2px);
}

.has-submenu:hover .dg-nav__submenu,
.has-submenu:focus-within .dg-nav__submenu,
.has-submenu.is-open .dg-nav__submenu {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.dg-nav__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dg-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 6px 13px;
	border-radius: 999px;
	background: var(--dg-blue);
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}

.dg-menu-toggle {
	display: none;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	padding: 0;
	position: relative;
	cursor: pointer;
}

.dg-menu-toggle span:not(.screen-reader-text) {
	position: absolute;
	left: 10px;
	width: 14px;
	height: 1.5px;
	background: #1d1d1f;
	transition: transform 160ms ease, top 160ms ease;
}

.dg-menu-toggle span:first-child {
	top: 13px;
}

.dg-menu-toggle span:nth-child(2) {
	top: 20px;
}

.dg-menu-toggle[aria-expanded="true"] span:first-child {
	top: 17px;
	transform: rotate(45deg);
}

.dg-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	top: 17px;
	transform: rotate(-45deg);
}

.dg-mobile-menu {
	padding: 16px 22px 34px;
	background: rgba(251, 251, 253, 0.92);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
}

.dg-menu-open,
.dg-menu-open body {
	overflow: hidden;
}

.dg-mobile-menu__list > li > a {
	display: block;
	padding: 15px 0;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
}

.dg-mobile-menu .dg-nav__submenu {
	position: static;
	transform: none;
	opacity: 1;
	pointer-events: auto;
	box-shadow: none;
	background: transparent;
	backdrop-filter: none;
	border: 0;
	display: block;
	min-width: 0;
	padding: 0 0 12px 18px;
}

.dg-mobile-menu .dg-nav__submenu a {
	min-height: 0;
	padding: 8px 0;
	background: transparent;
	box-shadow: none;
	font-size: 18px;
	font-weight: 750;
	color: #6e6e73;
}

.dg-main {
	min-height: 70vh;
}

.dg-eyebrow {
	margin: 0 0 14px;
	color: var(--dg-muted);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dg-hero {
	min-height: calc(100vh - 46px);
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
	align-items: center;
	gap: clamp(28px, 6vw, 92px);
	padding: clamp(64px, 8vw, 112px) clamp(22px, 6vw, 96px) clamp(38px, 5vw, 72px);
	background:
		radial-gradient(circle at 70% 16%, rgba(0, 113, 227, 0.14), transparent 34%),
		linear-gradient(180deg, #fbfbfd 0%, #fff 74%);
}

.dg-hero__copy {
	max-width: 760px;
	justify-self: end;
}

.dg-hero h1,
.dg-showcase h2,
.dg-tile h2,
.dg-process h2,
.dg-cta h2,
.dg-page-hero h1,
.dg-card h2 {
	margin: 0;
	letter-spacing: 0;
	color: inherit;
}

.dg-hero h1 {
	font-size: clamp(48px, 7.8vw, 104px);
	line-height: 0.96;
	font-weight: 850;
	max-width: 880px;
}

.dg-hero__lead {
	margin: 26px 0 0;
	color: #424245;
	font-size: clamp(20px, 2.1vw, 30px);
	line-height: 1.25;
	max-width: 720px;
}

.dg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.dg-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	font-family: var(--dg-font);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.dg-button:hover,
.button:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.dg-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--dg-blue);
	color: #fff;
}

.dg-button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--dg-blue-dark);
	color: #fff;
}

.dg-button--ghost {
	border: 1px solid var(--dg-blue);
	color: var(--dg-blue);
	background: transparent;
}

.dg-button--ghost:hover {
	background: var(--dg-blue);
	color: #fff;
}

.dg-hero__visual {
	position: relative;
	justify-self: stretch;
	padding: 10px;
	border-radius: 34px;
	transform: translate3d(0, var(--dg-parallax-y, 0), 0);
	transition: transform 220ms ease;
}

.dg-hero__visual img {
	width: min(100%, 980px);
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 24px;
	display: block;
}

.dg-product-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	background: var(--dg-soft);
}

.dg-product-strip a {
	min-height: 164px;
	padding: 32px clamp(22px, 4vw, 54px);
	border-radius: var(--dg-radius);
	color: var(--dg-ink);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateY(0);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.dg-product-strip a:hover,
.dg-metric-panel div:hover,
.dg-process li:hover,
.dg-card:hover {
	transform: translateY(-4px);
}

.dg-product-strip span {
	color: var(--dg-blue);
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 8px;
}

.dg-product-strip strong {
	font-size: clamp(21px, 2vw, 30px);
	line-height: 1.12;
	font-weight: 850;
}

.dg-showcase {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
	gap: clamp(28px, 6vw, 80px);
	align-items: center;
	padding: clamp(76px, 9vw, 136px) clamp(22px, 6vw, 96px);
}

.dg-showcase--light {
	background: linear-gradient(180deg, #f5f5f7, #fff);
}

.dg-showcase__content {
	max-width: 690px;
	justify-self: end;
}

.dg-showcase h2,
.dg-process h2,
.dg-cta h2,
.dg-page-hero h1 {
	font-size: clamp(42px, 5.6vw, 78px);
	line-height: 1;
	font-weight: 850;
}

.dg-showcase p:not(.dg-eyebrow),
.dg-tile p:not(.dg-eyebrow),
.dg-process li p,
.dg-page-hero p,
.dg-content,
.dg-card p {
	color: var(--dg-muted);
	font-size: clamp(18px, 1.5vw, 23px);
	line-height: 1.42;
}

.dg-link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--dg-blue);
	font-size: 19px;
	font-weight: 800;
	text-decoration: none;
}

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

.dg-metric-panel div {
	min-height: 210px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	border-radius: var(--dg-radius);
}

.dg-metric-panel span {
	color: var(--dg-muted);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.dg-metric-panel strong {
	font-size: clamp(30px, 3.8vw, 54px);
	line-height: 1;
	margin-top: 10px;
}

.dg-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	background: var(--dg-soft);
}

.dg-tile {
	min-height: 520px;
	padding: clamp(34px, 5vw, 68px);
	background: #fff;
	border-radius: var(--dg-radius);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.dg-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.1);
}

.dg-tile h2 {
	font-size: clamp(36px, 4.6vw, 68px);
	line-height: 1;
	font-weight: 850;
	max-width: 760px;
}

.dg-tile p:not(.dg-eyebrow) {
	max-width: 600px;
}

.dg-tile--dark {
	background: #000;
	color: #f5f5f7;
}

.dg-tile--dark .dg-eyebrow,
.dg-tile--dark p:not(.dg-eyebrow) {
	color: #a1a1a6;
}

.dg-tile--blue {
	background: linear-gradient(135deg, #eaf4ff 0%, #fff 100%);
}

.dg-process {
	padding: clamp(76px, 9vw, 140px) clamp(22px, 6vw, 96px);
	background: #fff;
	text-align: center;
}

.dg-process > h2 {
	max-width: 920px;
	margin: 0 auto;
}

.dg-process ol {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 58px auto 0;
	max-width: 1280px;
	text-align: left;
}

.dg-process li {
	min-height: 250px;
	padding: 28px;
	border-radius: var(--dg-radius);
}

.dg-process li span {
	color: var(--dg-blue);
	font-weight: 800;
	font-size: 15px;
}

.dg-process li strong {
	display: block;
	margin-top: 20px;
	font-size: 28px;
}

.dg-cta {
	min-height: 520px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(70px, 9vw, 132px) 22px;
	background: #000;
	color: #f5f5f7;
}

.dg-cta .dg-eyebrow {
	color: #a1a1a6;
}

.dg-cta .dg-button {
	margin-top: 30px;
}

.dg-page-hero {
	padding: clamp(86px, 11vw, 156px) 22px clamp(48px, 7vw, 94px);
	background:
		radial-gradient(circle at 76% 20%, rgba(0, 113, 227, 0.12), transparent 34%),
		linear-gradient(180deg, #fbfbfd, #f5f5f7);
	text-align: left;
}

.dg-page-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
	align-items: center;
	gap: clamp(28px, 5vw, 76px);
}

.dg-page-hero p:not(.dg-eyebrow) {
	max-width: 820px;
	margin: 22px 0 0;
	color: #424245;
}

.dg-page-hero__visual {
	border-radius: 34px;
	padding: 9px;
	transform: translate3d(0, var(--dg-parallax-y, 0), 0);
}

.dg-page-hero__visual img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 24px;
}

.dg-content-band {
	padding: 12px;
	background: var(--dg-soft);
}

.dg-apple-page {
	background: #fff;
	color: var(--dg-ink);
}

.dg-apple-progress {
	position: sticky;
	top: 46px;
	z-index: 21;
	height: 2px;
	background: rgba(29, 29, 31, 0.08);
}

.dg-apple-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--dg-blue);
	transform: scaleX(0);
	transform-origin: left center;
}

.dg-apple-tabs {
	position: sticky;
	top: 46px;
	z-index: 20;
	display: flex;
	gap: 8px;
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 10px 14px;
	overflow-x: auto;
	background: rgba(245, 245, 247, 0.78);
	backdrop-filter: blur(22px) saturate(180%);
	-webkit-backdrop-filter: blur(22px) saturate(180%);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 999px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.dg-apple-tabs a {
	flex: 0 0 auto;
	padding: 8px 13px;
	border-radius: 999px;
	color: rgba(29, 29, 31, 0.78);
	text-decoration: none;
	font-size: 13px;
	font-weight: 750;
	white-space: nowrap;
	transition: background-color 180ms ease, color 180ms ease;
}

.dg-apple-tabs a:hover {
	background: #fff;
	color: #000;
}

.dg-apple-tabs a.is-active,
.dg-apple-tabs a[aria-current="true"] {
	background: #fff;
	color: var(--dg-blue);
}

.dg-apple-intro {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(84px, 11vw, 152px) 22px clamp(58px, 8vw, 104px);
	text-align: center;
}

.dg-apple-intro h2,
.dg-apple-cta h2 {
	margin: 0;
	color: var(--dg-ink);
	font-size: clamp(46px, 7vw, 96px);
	line-height: 0.98;
	font-weight: 850;
	letter-spacing: 0;
}

.dg-apple-intro p:not(.dg-eyebrow) {
	max-width: 840px;
	margin: 26px auto 0;
	color: #424245;
	font-size: clamp(21px, 2.1vw, 30px);
	line-height: 1.25;
}

.dg-apple-story {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
	gap: clamp(34px, 6vw, 92px);
	width: min(100%, 1240px);
	margin: 0 auto;
	padding: clamp(34px, 5vw, 74px) 22px clamp(82px, 10vw, 150px);
	align-items: start;
}

.dg-apple-visual {
	position: sticky;
	top: 112px;
	min-height: 540px;
	display: grid;
	align-content: center;
	gap: 18px;
}

.dg-apple-device {
	padding: 0;
	border-radius: 36px;
	background: transparent;
	transform: translate3d(0, var(--dg-parallax-y, 0), 0) scale(calc(1 + (var(--dg-section-index, 0) * 0.006)));
	filter: saturate(calc(1 + (var(--dg-section-index, 0) * 0.025)));
	transition: filter 360ms ease, transform 360ms ease;
}

.dg-apple-device img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 34px;
	box-shadow: 0 38px 120px rgba(0, 0, 0, 0.13);
}

.dg-apple-mini {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 10px 12px;
	padding: 18px 4px 0;
	color: #6e6e73;
}

.dg-apple-mini span {
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 900;
}

.dg-apple-mini strong {
	color: #1d1d1f;
	font-size: 14px;
	line-height: 1.2;
}

.dg-apple-sections {
	display: grid;
	gap: clamp(34px, 6vw, 82px);
}

.dg-apple-section {
	min-height: 48vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 5vw, 64px);
	border: 1px solid rgba(255, 255, 255, 0.66);
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
		rgba(245, 245, 247, 0.66);
	backdrop-filter: blur(22px) saturate(170%);
	-webkit-backdrop-filter: blur(22px) saturate(170%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 60px rgba(0, 0, 0, 0.06);
}

.dg-apple-section > span {
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 18px;
	letter-spacing: 0;
}

.dg-apple-section h2 {
	margin: 0;
	font-size: clamp(40px, 5.7vw, 82px);
	line-height: 0.98;
	font-weight: 850;
	letter-spacing: 0;
	color: var(--dg-ink);
}

.dg-apple-section p {
	max-width: 720px;
	margin: 22px 0 0;
	color: #6e6e73;
	font-size: clamp(18px, 1.45vw, 23px);
	line-height: 1.42;
}

.dg-apple-cta {
	min-height: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(74px, 10vw, 150px) 22px;
	background: #000;
	color: #f5f5f7;
}

.dg-apple-cta h2 {
	max-width: 960px;
	color: #f5f5f7;
}

.dg-apple-cta .dg-eyebrow {
	color: #a1a1a6;
}

.dg-apple-cta .dg-button {
	margin-top: 32px;
	width: auto;
}

.dg-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 72px);
	border-radius: var(--dg-radius);
	color: #333336;
	background-color: rgba(255, 255, 255, 0.86);
	overflow: hidden;
}

.dg-content h1,
.dg-content h2,
.dg-content h3,
.dg-content h4 {
	color: var(--dg-ink);
	letter-spacing: 0;
	line-height: 1.05;
	margin: 1.2em 0 0.45em;
}

.dg-content h2 {
	font-size: clamp(32px, 4vw, 58px);
}

.dg-content h3 {
	font-size: clamp(25px, 2.8vw, 38px);
}

.dg-content p {
	margin: 0 0 1.05em;
}

.dg-content a {
	color: var(--dg-blue);
	font-weight: 700;
	text-decoration: none;
}

.dg-content ul,
.dg-content ol {
	padding-left: 1.2em;
}


.dg-contact-shell {
	margin-top: 0;
}

.dg-contact-page {
	width: min(100%, 1180px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
	gap: clamp(30px, 6vw, 90px);
	align-items: center;
	padding: clamp(64px, 8vw, 126px) 22px;
	background: #fff;
}

.dg-contact-page__copy h2 {
	margin: 0;
	font-size: clamp(48px, 7vw, 96px);
	line-height: 0.98;
	font-weight: 850;
	letter-spacing: 0;
}

.dg-contact-page__copy p:not(.dg-eyebrow) {
	max-width: 640px;
	margin: 26px 0 0;
	color: #424245;
	font-size: clamp(21px, 2vw, 30px);
	line-height: 1.28;
}

.dg-contact-page__meta {
	margin-top: 38px;
	display: grid;
	gap: 8px;
	padding-top: 24px;
	border-top: 1px solid rgba(29, 29, 31, 0.12);
}

.dg-contact-page__meta span {
	color: var(--dg-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dg-contact-page__meta strong {
	max-width: 460px;
	font-size: clamp(24px, 2.4vw, 36px);
	line-height: 1.08;
}

.dg-contact-page__form {
	padding: clamp(24px, 4vw, 46px);
	border-radius: 34px;
}

.dg-liquid-form {
	display: grid;
	gap: 18px;
	position: relative;
	z-index: 1;
}

.dg-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.dg-form-grid label {
	display: grid;
	gap: 8px;
	margin: 0;
}

.dg-form-grid__wide {
	grid-column: 1 / -1;
}

.dg-form-grid span {
	color: var(--dg-ink);
	font-size: 14px;
	font-weight: 850;
}

.dg-liquid-form input,
.dg-liquid-form textarea {
	width: 100%;
	min-height: 54px;
	padding: 15px 16px;
	border: 1px solid rgba(29, 29, 31, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.66);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 30px rgba(0, 0, 0, 0.04);
	color: var(--dg-ink);
	font-family: var(--dg-font);
	font-size: 16px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.dg-liquid-form textarea {
	min-height: 160px;
	resize: vertical;
}

.dg-liquid-form input:focus,
.dg-liquid-form textarea:focus {
	outline: none;
	border-color: rgba(0, 102, 204, 0.74);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
	transform: translateY(-1px);
}

.dg-liquid-form .dg-button {
	justify-self: start;
	border: 0;
	cursor: pointer;
	box-shadow: 0 18px 44px rgba(0, 102, 204, 0.22);
}

.dg-form-trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dg-form-notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 18px;
	font-size: 15px;
	font-weight: 800;
}

.dg-form-notice--success {
	background: rgba(40, 167, 69, 0.12);
	color: #176b2c;
}

.dg-form-notice--error {
	background: rgba(220, 53, 69, 0.12);
	color: #8f1d2c;
}

.dg-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	background: var(--dg-soft);
}

.dg-card {
	min-height: 220px;
	padding: 28px;
	border-radius: var(--dg-radius);
	transition: transform 220ms ease;
}

.dg-visual-feature {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 1fr);
	align-items: center;
	gap: clamp(28px, 6vw, 84px);
	padding: clamp(76px, 9vw, 136px) clamp(22px, 6vw, 96px);
	background: #fff;
}

.dg-visual-feature--reverse .dg-visual-feature__copy {
	order: 2;
}

.dg-visual-feature__copy {
	max-width: 700px;
	justify-self: end;
}

.dg-visual-feature__copy h2 {
	margin: 0;
	font-size: clamp(42px, 5.4vw, 76px);
	line-height: 1;
	font-weight: 850;
	letter-spacing: 0;
}

.dg-visual-feature__copy p:not(.dg-eyebrow) {
	color: var(--dg-muted);
	font-size: clamp(18px, 1.5vw, 23px);
	line-height: 1.42;
}

.dg-visual-feature__media {
	border-radius: 34px;
	padding: 10px;
	transform: translate3d(0, var(--dg-parallax-y, 0), 0);
}

.dg-visual-feature__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 24px;
}

.dg-animate {
	opacity: 0;
	transform: translate3d(0, 34px, 0) scale(0.985);
	transition:
		opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc(var(--dg-stagger, 0) * 45ms);
}

.dg-animate.is-visible,
.dg-reduced-motion .dg-animate {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.dg-card h2 {
	font-size: clamp(24px, 2.5vw, 38px);
	line-height: 1.08;
}

.dg-card a {
	text-decoration: none;
}

.dg-footer {
	background: #f5f5f7;
	color: #6e6e73;
	padding: 42px 22px 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dg-footer__inner,
.dg-footer__bottom {
	width: min(100%, 1120px);
	margin: 0 auto;
}

.dg-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: start;
}

.dg-footer__brand {
	display: inline-flex;
	margin-bottom: 10px;
	color: #1d1d1f;
	font-size: 16px;
}

.dg-footer p {
	max-width: 560px;
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.dg-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(110px, auto));
	gap: 10px 24px;
}

.dg-footer__links a {
	color: #424245;
	font-size: 13px;
	text-decoration: none;
}

.dg-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 12px;
}

.woocommerce .dg-content,
.woocommerce-page .dg-content {
	max-width: 1220px;
}

@media (max-width: 1020px) {
	.dg-nav__desktop {
		display: none;
	}

	.dg-menu-toggle {
		display: inline-flex;
	}

	.dg-mobile-menu {
		position: fixed;
		inset: 46px 0 0;
		z-index: 999;
		overflow-y: auto;
	}

	.dg-hero,
	.dg-showcase,
	.dg-visual-feature,
	.dg-apple-story,
	.dg-contact-page,
	.dg-product-strip,
	.dg-grid,
	.dg-process ol,
	.dg-card-grid,
	.dg-page-hero__inner,
	.dg-footer__inner {
		grid-template-columns: 1fr;
	}

	.dg-hero {
		min-height: auto;
		padding-top: 54px;
	}

	.dg-hero__copy,
	.dg-showcase__content,
	.dg-visual-feature__copy {
		justify-self: start;
	}

	.dg-visual-feature--reverse .dg-visual-feature__copy {
		order: initial;
	}

	.dg-apple-tabs {
		top: 46px;
		width: calc(100% - 24px);
	}

	.dg-apple-visual {
		position: relative;
		top: auto;
		min-height: auto;
		order: -1;
	}

	.dg-apple-section {
		min-height: auto;
		padding: 34px 24px;
		border-radius: 26px;
	}

	.dg-contact-page {
		padding-top: 74px;
	}

	.dg-metric-panel {
		grid-template-columns: 1fr;
	}

	.dg-metric-panel div {
		min-height: 150px;
	}

	.dg-tile {
		min-height: 420px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.dg-animate {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar .dg-site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	body.admin-bar .dg-site-header {
		top: 0;
	}

	.dg-nav {
		padding: 0 14px;
	}

	.dg-brand__name {
		display: none;
	}

	.dg-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.dg-button {
		width: 100%;
	}

	.dg-hero h1 {
		font-size: clamp(42px, 14vw, 64px);
	}

	.dg-page-hero {
		padding: 62px 18px 38px;
	}

	.dg-page-hero h1,
	.dg-apple-intro h2,
	.dg-apple-cta h2,
	.dg-contact-page__copy h2 {
		font-size: clamp(40px, 12vw, 58px);
		line-height: 1;
	}

	.dg-page-hero p:not(.dg-eyebrow),
	.dg-apple-intro p:not(.dg-eyebrow),
	.dg-contact-page__copy p:not(.dg-eyebrow) {
		font-size: 19px;
		line-height: 1.32;
	}

	.dg-page-hero__visual {
		border-radius: 24px;
		padding: 6px;
	}

	.dg-page-hero__visual img,
	.dg-apple-device img {
		border-radius: 20px;
	}

	.dg-apple-tabs {
		top: 46px;
		border-radius: 22px;
		padding: 8px;
	}

	.dg-apple-tabs a {
		padding: 8px 11px;
		font-size: 12px;
	}

	.dg-apple-intro {
		padding: 58px 18px 42px;
	}

	.dg-apple-story {
		padding: 26px 18px 68px;
	}

	.dg-apple-section h2 {
		font-size: clamp(34px, 10vw, 52px);
	}

	.dg-apple-section p {
		font-size: 18px;
		line-height: 1.42;
	}

	.dg-contact-page {
		padding: 58px 18px 74px;
	}

	.dg-contact-page__form {
		padding: 22px;
		border-radius: 26px;
	}

	.dg-hero__visual {
		border-radius: 24px;
	}

	.dg-hero__visual img {
		border-radius: 18px;
	}

	.dg-product-strip a {
		min-height: 132px;
	}

	.dg-footer__bottom {
		flex-direction: column;
	}

	.dg-form-grid {
		grid-template-columns: 1fr;
	}

	.dg-liquid-form .dg-button {
		width: 100%;
	}
}
