:root {
	--dgl-black: #050507;
	--dgl-ink: #0a0a0f;
	--dgl-panel: #111117;
	--dgl-panel-2: #171721;
	--dgl-line: rgba(255, 255, 255, .14);
	--dgl-line-strong: rgba(255, 255, 255, .24);
	--dgl-text: #f4f4f6;
	--dgl-muted: #a5a5b2;
	--dgl-blue: #2d7dff;
	--dgl-amber: #ffb000;
	--dgl-red: #c5162e;
	--dgl-violet: #7b2dff;
	--dgl-green: #1f6f4a;
	--dgl-shadow: 0 24px 70px rgba(0, 0, 0, .44);
	--dgl-wrap: min(1180px, calc(100% - 44px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--dgl-black);
}

body.dgl-site {
	margin: 0;
	color: var(--dgl-text);
	background:
		linear-gradient(115deg, rgba(45, 125, 255, .12), transparent 28%),
		linear-gradient(245deg, rgba(255, 176, 0, .12), transparent 30%),
		linear-gradient(180deg, #050507, #0b0b12 48%, #050507);
	font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.dgl-site::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
	background-image:
		linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .5) 45%, transparent 100%);
}

body.dgl-site::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	opacity: .33;
	background:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 5px),
		linear-gradient(90deg, transparent, rgba(255, 255, 255, .045), transparent);
	mix-blend-mode: screen;
}

a {
	color: inherit;
}

img,
canvas {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

summary {
	cursor: pointer;
}

.dgl-wrap {
	width: var(--dgl-wrap);
	margin: 0 auto;
}

.dgl-skip {
	position: fixed;
	left: 16px;
	top: 12px;
	z-index: 200;
	transform: translateY(-140%);
	background: var(--dgl-text);
	color: #050507;
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 900;
	text-decoration: none;
}

.dgl-skip:focus {
	transform: translateY(0);
}

.dgl-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	background: rgba(5, 5, 7, .74);
	backdrop-filter: blur(24px) saturate(140%);
}

.dgl-header__inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.dgl-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	min-width: 0;
}

.dgl-logo__mark {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(45, 125, 255, .52), transparent 55%),
		linear-gradient(315deg, rgba(255, 176, 0, .5), transparent 55%),
		#0d0d14;
	box-shadow: 0 0 40px rgba(45, 125, 255, .18);
}

.dgl-logo__mark span {
	position: absolute;
	left: 9px;
	right: 9px;
	top: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, .86);
	border-radius: 50%;
}

.dgl-logo__mark span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 7px;
	height: 7px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--dgl-amber);
	box-shadow: 0 0 18px rgba(255, 176, 0, .9);
}

.dgl-logo__type {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.dgl-logo__type strong {
	font-size: 1rem;
	line-height: 1;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dgl-logo__type small {
	color: var(--dgl-muted);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dgl-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.dgl-nav a,
.dgl-nav summary {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	padding: 0 12px;
	color: rgba(244, 244, 246, .82);
	font-size: .9rem;
	font-weight: 850;
	text-decoration: none;
	letter-spacing: 0;
	white-space: nowrap;
}

.dgl-nav a:hover,
.dgl-nav summary:hover,
.dgl-nav-group[open] summary {
	background: rgba(255, 255, 255, .09);
	color: #fff;
}

.dgl-nav__cta {
	margin-left: 4px;
	background: linear-gradient(135deg, var(--dgl-amber), #fff2bb);
	color: #09090d !important;
	box-shadow: 0 12px 30px rgba(255, 176, 0, .18);
}

.dgl-nav-group {
	position: relative;
}

.dgl-nav-group summary {
	list-style: none;
}

.dgl-nav-group summary::-webkit-details-marker {
	display: none;
}

.dgl-nav-group summary::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .72;
}

.dgl-nav-group__panel {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	width: 280px;
	max-height: min(70vh, 620px);
	overflow: auto;
	padding: 8px;
	border: 1px solid var(--dgl-line);
	border-radius: 8px;
	background: rgba(14, 14, 21, .96);
	box-shadow: var(--dgl-shadow);
	backdrop-filter: blur(24px);
}

.dgl-nav-group:not([open]) .dgl-nav-group__panel {
	display: none;
}

.dgl-nav-group__panel a {
	width: 100%;
	min-height: 40px;
	justify-content: flex-start;
	white-space: normal;
}

.dgl-nav-group__all {
	color: var(--dgl-amber) !important;
}

.dgl-menu-button {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--dgl-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	align-items: center;
	justify-content: center;
}

.dgl-menu-button span,
.dgl-menu-button span::before,
.dgl-menu-button span::after {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
}

.dgl-menu-button span::before {
	transform: translateY(-7px);
}

.dgl-menu-button span::after {
	transform: translateY(5px);
}

.dgl-main {
	outline: none;
}

.dgl-hero {
	position: relative;
	min-height: min(760px, calc(100svh - 96px));
	overflow: hidden;
	isolation: isolate;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.dgl-hero__media {
	position: absolute;
	inset: 0;
	z-index: -4;
	background: #050507;
}

.dgl-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .88;
	filter: saturate(112%) contrast(108%);
}

.dgl-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 5, 7, .96), rgba(5, 5, 7, .62) 48%, rgba(5, 5, 7, .88)),
		linear-gradient(180deg, rgba(5, 5, 7, .2), #050507);
}

.dgl-audio-field {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	opacity: .72;
}

.dgl-hero__inner {
	min-height: min(760px, calc(100svh - 96px));
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 44px;
	align-items: center;
	padding: 54px 0;
}

.dgl-hero__copy {
	max-width: 830px;
}

.dgl-eyebrow,
.dgl-kicker {
	margin: 0;
	color: #b8d5ff;
	font-size: .78rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dgl-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.dgl-eyebrow::before,
.dgl-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	background: linear-gradient(90deg, var(--dgl-blue), var(--dgl-amber));
}

.dgl-eyebrow::before {
	display: inline-block;
}

.dgl-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.dgl-hero h1 {
	margin: 18px 0;
	max-width: 920px;
	font-family: Sora, "Space Grotesk", Inter, system-ui, sans-serif;
	font-size: 4.65rem;
	line-height: .94;
	font-weight: 950;
	letter-spacing: 0;
	text-wrap: balance;
}

.dgl-lead {
	max-width: 760px;
	margin: 0;
	color: rgba(244, 244, 246, .82);
	font-size: 1.28rem;
	line-height: 1.58;
	font-weight: 620;
	text-wrap: pretty;
}

.dgl-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.dgl-button {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 8px;
	padding: 0 18px;
	background: linear-gradient(135deg, var(--dgl-amber), #ffe7a0);
	color: #07070b;
	box-shadow: 0 18px 44px rgba(255, 176, 0, .2);
	font-weight: 950;
	text-decoration: none;
	letter-spacing: 0;
	white-space: normal;
	text-align: center;
}

.dgl-button--ghost {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	box-shadow: none;
}

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

.dgl-hero__panel {
	position: relative;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 8px;
	padding: 22px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045)),
		rgba(10, 10, 15, .68);
	box-shadow: var(--dgl-shadow);
	backdrop-filter: blur(22px);
	overflow: hidden;
}

.dgl-hero__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(45, 125, 255, .22), transparent 58%);
	transform: translateX(-45%);
	animation: dgl-sheen 7s ease-in-out infinite;
}

.dgl-hero__panel > * {
	position: relative;
	z-index: 1;
}

.dgl-hero__panel strong {
	display: block;
	margin-top: 20px;
	font-size: 1.48rem;
	line-height: 1.08;
}

.dgl-hero__panel p {
	margin: 10px 0 0;
	color: rgba(244, 244, 246, .74);
	line-height: 1.58;
	font-weight: 640;
}

.dgl-meter {
	height: 118px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	align-items: end;
}

.dgl-meter span {
	display: block;
	min-height: 22px;
	border-radius: 8px 8px 3px 3px;
	background: linear-gradient(180deg, var(--dgl-blue), var(--dgl-violet) 52%, var(--dgl-amber));
	box-shadow: 0 0 28px rgba(45, 125, 255, .25);
	animation: dgl-meter 1.24s ease-in-out infinite;
}

.dgl-meter span:nth-child(2) {
	animation-delay: .12s;
}

.dgl-meter span:nth-child(3) {
	animation-delay: .24s;
}

.dgl-meter span:nth-child(4) {
	animation-delay: .36s;
}

.dgl-meter span:nth-child(5) {
	animation-delay: .48s;
}

.dgl-signal-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.dgl-signal-row span,
.dgl-proof__track span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 8px;
	padding: 0 10px;
	background: rgba(255, 255, 255, .07);
	color: rgba(244, 244, 246, .84);
	font-size: .8rem;
	font-weight: 900;
}

.dgl-proof {
	background: rgba(5, 5, 7, .92);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.dgl-proof__track {
	min-height: 78px;
	display: flex;
	align-items: center;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.dgl-section {
	position: relative;
	padding: 86px 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .045));
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.dgl-section:nth-of-type(odd) {
	background: linear-gradient(180deg, rgba(9, 9, 14, .72), rgba(15, 15, 22, .84));
}

.dgl-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
	gap: 42px;
	align-items: center;
}

.dgl-section--flip .dgl-section__copy {
	order: 2;
}

.dgl-section--flip .dgl-image-block {
	order: 1;
}

.dgl-section__copy {
	max-width: 760px;
}

.dgl-section h2,
.dgl-section-head h2 {
	margin: 0;
	font-family: Sora, "Space Grotesk", Inter, system-ui, sans-serif;
	font-size: 2.9rem;
	line-height: 1.02;
	font-weight: 940;
	letter-spacing: 0;
	text-wrap: balance;
}

.dgl-section__copy p,
.dgl-section__copy li,
.dgl-faq p,
.dgl-source-box li,
.dgl-contact-section p {
	color: rgba(244, 244, 246, .76);
	font-size: 1.04rem;
	line-height: 1.72;
	font-weight: 560;
}

.dgl-section__copy p {
	margin: 16px 0 0;
}

.dgl-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.dgl-list li {
	position: relative;
	padding-left: 24px;
}

.dgl-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .74em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--dgl-amber);
	box-shadow: 0 0 18px rgba(255, 176, 0, .65);
}

.dgl-section blockquote {
	margin: 22px 0 0;
	border-left: 3px solid var(--dgl-blue);
	padding: 12px 0 12px 18px;
	color: rgba(244, 244, 246, .86);
	font-size: 1.04rem;
	line-height: 1.58;
}

.dgl-image-block {
	position: relative;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	background: #0b0b12;
	box-shadow: var(--dgl-shadow);
}

.dgl-image-block img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .7s ease;
}

.dgl-image-block::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .72)),
		repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, .035) 12px 13px);
	pointer-events: none;
}

.dgl-image-block:hover img {
	transform: scale(1.035);
}

.dgl-image-block figcaption {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	z-index: 1;
	color: rgba(255, 255, 255, .8);
	font-size: .78rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dgl-section--wide .dgl-section-head,
.dgl-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
	gap: 20px;
	align-items: end;
	margin-bottom: 28px;
}

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

.dgl-card-grid--artists {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dgl-card {
	min-height: 360px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .14);
	background: #0d0d14;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.dgl-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform .65s ease;
}

.dgl-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(5, 5, 7, .04), rgba(5, 5, 7, .82)),
		linear-gradient(45deg, rgba(45, 125, 255, .22), transparent 45%, rgba(255, 176, 0, .15));
}

.dgl-card:hover img {
	transform: scale(1.055);
}

.dgl-card span,
.dgl-card h3,
.dgl-card p {
	position: relative;
	z-index: 2;
	margin-left: 16px;
	margin-right: 16px;
}

.dgl-card span {
	width: fit-content;
	margin-bottom: 10px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 8px;
	padding: 7px 9px;
	background: rgba(0, 0, 0, .24);
	color: #fff2bb;
	font-size: .72rem;
	font-weight: 950;
	letter-spacing: 0;
}

.dgl-card h3 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 1.42rem;
	line-height: 1.08;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.dgl-card p {
	margin-top: 0;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, .8);
	line-height: 1.48;
	font-weight: 650;
}

.dgl-section--compact {
	padding: 46px 0;
}

.dgl-link-cloud {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.dgl-link-cloud a {
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	padding: 14px;
	background: rgba(255, 255, 255, .055);
	text-decoration: none;
}

.dgl-link-cloud a:hover {
	border-color: rgba(255, 176, 0, .7);
	background: rgba(255, 176, 0, .09);
}

.dgl-link-cloud strong {
	color: #fff;
	line-height: 1.15;
}

.dgl-link-cloud span {
	color: var(--dgl-muted);
	font-size: .84rem;
	line-height: 1.42;
}

.dgl-subheading {
	margin: 24px 0 0;
	color: #fff;
	font-size: 1.08rem;
	line-height: 1.22;
	font-weight: 950;
}

.dgl-article-meta {
	border-bottom: 1px solid rgba(255, 255, 255, .11);
	background: rgba(5, 5, 7, .92);
}

.dgl-article-meta .dgl-wrap {
	min-height: 66px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.dgl-article-meta span,
.dgl-brand-note strong,
.dgl-news-card span,
.dgl-topic-card span {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 8px;
	padding: 0 10px;
	background: rgba(255, 255, 255, .07);
	color: #fff2bb;
	font-size: .74rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

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

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

.dgl-news-card,
.dgl-topic-card {
	min-height: 420px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
		#0d0d14;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
}

.dgl-topic-card {
	min-height: 360px;
}

.dgl-news-card img,
.dgl-topic-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	filter: saturate(112%) contrast(106%);
	transition: transform .65s ease;
}

.dgl-news-card:hover img,
.dgl-topic-card:hover img {
	transform: scale(1.045);
}

.dgl-news-card span,
.dgl-topic-card span {
	margin: 16px 16px 0;
}

.dgl-news-card h3,
.dgl-topic-card h3 {
	margin: 16px 16px 0;
	font-size: 1.46rem;
	line-height: 1.1;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.dgl-topic-card h3 {
	font-size: 1.22rem;
}

.dgl-news-card p,
.dgl-topic-card p {
	margin: 12px 16px 18px;
	color: rgba(244, 244, 246, .78);
	line-height: 1.5;
	font-weight: 650;
}

.dgl-brand-note {
	border: 1px solid rgba(255, 176, 0, .34);
	border-radius: 8px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(255, 176, 0, .14), rgba(45, 125, 255, .08)),
		rgba(255, 255, 255, .055);
}

.dgl-brand-note p {
	margin: 12px 0 0;
	color: rgba(244, 244, 246, .8);
	line-height: 1.62;
	font-weight: 650;
}

.dgl-section--faq {
	background: linear-gradient(180deg, rgba(5, 5, 7, .96), #050507);
}

.dgl-faq {
	max-width: 920px;
}

.dgl-faq details,
.dgl-source-box {
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .055);
	margin-top: 10px;
	padding: 0 18px;
}

.dgl-faq summary,
.dgl-source-box summary {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #fff;
	font-weight: 900;
	line-height: 1.25;
}

.dgl-faq summary::after,
.dgl-source-box summary::after {
	content: "+";
	font-size: 1.35rem;
	color: var(--dgl-amber);
}

.dgl-faq details[open] summary::after,
.dgl-source-box[open] summary::after {
	content: "-";
}

.dgl-faq p {
	margin: 0;
	padding: 0 0 18px;
}

.dgl-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.dgl-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 8px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
		rgba(12, 12, 18, .86);
	box-shadow: var(--dgl-shadow);
}

.dgl-form label {
	display: grid;
	gap: 8px;
	color: #fff;
	font-weight: 850;
}

.dgl-form__wide {
	grid-column: 1 / -1;
}

.dgl-form input,
.dgl-form select,
.dgl-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(5, 5, 7, .72);
	color: #fff;
	padding: 13px 12px;
	outline: none;
}

.dgl-form textarea {
	resize: vertical;
	min-height: 180px;
}

.dgl-form input:focus,
.dgl-form select:focus,
.dgl-form textarea:focus {
	border-color: var(--dgl-amber);
	box-shadow: 0 0 0 3px rgba(255, 176, 0, .16);
}

.dgl-form button {
	width: fit-content;
	border: 0;
	cursor: pointer;
}

.dgl-honey {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dgl-form-status {
	border-radius: 8px;
	padding: 12px 14px;
}

.dgl-form-status--success {
	background: rgba(31, 111, 74, .24);
	border: 1px solid rgba(31, 111, 74, .6);
}

.dgl-form-status--error {
	background: rgba(197, 22, 46, .22);
	border: 1px solid rgba(197, 22, 46, .58);
}

.dgl-footer {
	padding: 34px 0;
	background: #030305;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.dgl-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 22px;
}

.dgl-footer__brand {
	display: inline-flex;
	gap: 7px;
	color: #fff;
	font-weight: 950;
	text-decoration: none;
	text-transform: uppercase;
}

.dgl-footer__brand span {
	color: var(--dgl-amber);
}

.dgl-footer p {
	max-width: 520px;
	margin: 10px 0 0;
	color: var(--dgl-muted);
	line-height: 1.55;
}

.dgl-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.dgl-footer nav a {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	padding: 0 12px;
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
	font-weight: 850;
}

.dgl-footer__blind-stitch {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: end;
	padding-top: 20px;
	font-size: .58rem;
	line-height: 1.25;
	letter-spacing: 0;
	color: rgba(255, 255, 255, .16);
}

.dgl-footer .dgl-footer__blind-stitch p {
	max-width: none;
	margin: 0;
	color: inherit;
}

.dgl-footer__blind-stitch a {
	color: rgba(255, 255, 255, .19);
	text-decoration: none;
}

.dgl-footer__blind-stitch a:hover,
.dgl-footer__blind-stitch a:focus-visible {
	color: rgba(255, 255, 255, .48);
	text-decoration: underline;
}

.dgl-footer__copyright {
	text-align: right;
	white-space: nowrap;
}

@keyframes dgl-meter {
	0%,
	100% {
		height: 34px;
	}
	50% {
		height: 112px;
	}
}

@keyframes dgl-sheen {
	0%,
	100% {
		transform: translateX(-58%);
	}
	50% {
		transform: translateX(34%);
	}
}

@media (max-width: 1080px) {
	.dgl-menu-button {
		display: inline-flex;
	}

	.dgl-nav {
		position: fixed;
		left: 16px;
		right: 16px;
		top: 86px;
		display: grid;
		grid-template-columns: 1fr;
		align-items: stretch;
		max-height: calc(100svh - 104px);
		overflow: auto;
		border: 1px solid var(--dgl-line);
		border-radius: 8px;
		padding: 10px;
		background: rgba(8, 8, 12, .99);
		box-shadow: var(--dgl-shadow);
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
	}

	.dgl-nav.is-open {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.dgl-nav a,
	.dgl-nav summary {
		width: 100%;
		justify-content: flex-start;
	}

	.dgl-nav-group__panel {
		position: static;
		width: 100%;
		max-height: none;
		margin-top: 4px;
		box-shadow: none;
		background: rgba(255, 255, 255, .045);
	}

	.dgl-hero__inner,
	.dgl-section__grid,
	.dgl-contact-grid {
		grid-template-columns: 1fr;
	}

	.dgl-hero__panel {
		max-width: 520px;
	}

	.dgl-section--flip .dgl-section__copy,
	.dgl-section--flip .dgl-image-block {
		order: initial;
	}

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

	.dgl-link-cloud {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 760px) {
	:root {
		--dgl-wrap: min(100% - 28px, 1180px);
	}

	.dgl-header__inner {
		min-height: 68px;
	}

	.dgl-logo__mark {
		width: 40px;
		height: 40px;
	}

	.dgl-logo__type strong {
		font-size: .88rem;
	}

	.dgl-logo__type small {
		font-size: .68rem;
	}

	.dgl-hero,
	.dgl-hero__inner {
		min-height: auto;
	}

	.dgl-hero__inner {
		padding: 38px 0 30px;
	}

	.dgl-hero h1 {
		font-size: 2.58rem;
		line-height: .98;
	}

	.dgl-lead {
		font-size: 1.06rem;
	}

	.dgl-actions,
	.dgl-footer__inner {
		display: grid;
		grid-template-columns: 1fr;
	}

	.dgl-footer__blind-stitch {
		grid-template-columns: 1fr;
		gap: 6px;
		font-size: .56rem;
	}

	.dgl-footer__copyright {
		text-align: left;
		white-space: normal;
	}

	.dgl-actions .dgl-button,
	.dgl-form button {
		width: 100%;
	}

	.dgl-hero__panel {
		display: none;
	}

	.dgl-proof__track {
		min-height: auto;
		padding: 14px 0;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
		overflow: visible;
		scrollbar-width: none;
	}

	.dgl-proof__track span {
		width: 100%;
		min-height: 44px;
		justify-content: center;
		text-align: center;
		line-height: 1.12;
		padding: 8px 9px;
		font-size: .72rem;
	}

	.dgl-meter {
		height: 86px;
	}

	.dgl-section {
		padding: 58px 0;
	}

	.dgl-section h2,
	.dgl-section-head h2 {
		font-size: 2.12rem;
	}

	.dgl-section--wide .dgl-section-head,
	.dgl-section-head,
	.dgl-card-grid,
	.dgl-card-grid--artists,
	.dgl-news-grid,
	.dgl-topic-grid,
	.dgl-link-cloud,
	.dgl-form {
		grid-template-columns: 1fr;
	}

	.dgl-card,
	.dgl-news-card,
	.dgl-topic-card {
		min-height: 320px;
	}

	.dgl-link-cloud a {
		min-height: 96px;
	}

	.dgl-footer nav {
		justify-content: flex-start;
	}
}

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