/*
 * Deluxe Plugins global UI
 * Lean, framework-free styles for the site shell and WordPress content.
 */

:root {
	--dp-ink: #111322;
	--dp-muted: #5b6375;
	--dp-line: #e2e5ee;
	--dp-line-strong: #cfd4e1;
	--dp-soft: #f5f6fa;
	--dp-white: #fff;
	--dp-night: #080a13;
	--dp-night-2: #0d1120;
	--dp-purple: #6846dc;
	--dp-purple-dark: #5738c6;
	--dp-purple-bright: #8c72ff;
	--dp-cyan: #65e8ff;
	--dp-green: #67e7ae;
	--dp-danger: #c83858;
	--dp-shell: 1240px;
	--dp-content: 760px;
	--dp-radius-sm: 10px;
	--dp-radius: 16px;
	--dp-radius-lg: 24px;
	--dp-shadow-sm: 0 10px 30px rgba(17, 19, 34, .07);
	--dp-shadow: 0 22px 70px rgba(17, 19, 34, .11);
	--dp-focus: 0 0 0 3px rgba(101, 232, 255, .7);
	--dp-header-height: 76px;
}

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

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	min-width: 320px;
	margin: 0;
	color: var(--dp-ink);
	background: var(--dp-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.has-site-overlay {
	overflow: hidden;
}

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

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

button {
	cursor: pointer;
}

a {
	color: var(--dp-purple);
	text-decoration-thickness: .08em;
	text-underline-offset: .16em;
}

a:hover {
	color: var(--dp-purple-dark);
}

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

img {
	height: auto;
}

figure {
	margin: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--dp-line);
}

::selection {
	color: var(--dp-night);
	background: var(--dp-cyan);
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid #542ec4;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #fff;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed !important;
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto !important;
	color: var(--dp-white);
	background: var(--dp-purple);
	border-radius: var(--dp-radius-sm);
	box-shadow: var(--dp-shadow-sm);
	font-weight: 750;
	text-decoration: none;
}

.shell {
	width: min(var(--dp-shell), calc(100% - 48px));
	margin-inline: auto;
}

.site-frame {
	min-height: 62vh;
}

.site-main:focus {
	outline: 0;
}

/* Header */

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(17, 19, 34, .08);
	background: rgba(255, 255, 255, .91);
	box-shadow: 0 8px 32px rgba(17, 19, 34, .045);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-scrolled {
	box-shadow: 0 12px 38px rgba(17, 19, 34, .08);
}

.header-scroll-marker {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

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

.site-header__bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	min-height: var(--dp-header-height);
	column-gap: clamp(20px, 3vw, 46px);
}

.site-branding,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo-link img {
	width: auto;
	max-width: 220px;
	height: 46px;
	object-fit: contain;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--dp-ink);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	letter-spacing: -.035em;
}

.brand:hover {
	color: var(--dp-ink);
}

.brand__name {
	font-size: clamp(18px, 2vw, 21px);
}

.brand__name span {
	color: var(--dp-purple);
}

.brand__mark {
	position: relative;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(104, 70, 220, .22);
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(104, 70, 220, .12), rgba(101, 232, 255, .08));
	box-shadow: inset 0 1px rgba(255, 255, 255, .75);
}

.brand__mark span {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--dp-purple);
	box-shadow: 0 0 11px rgba(104, 70, 220, .6);
}

.brand__mark span:nth-child(1) {
	transform: translate(-7px, 5px);
}

.brand__mark span:nth-child(2) {
	transform: translate(0, -6px);
	background: var(--dp-purple-bright);
}

.brand__mark span:nth-child(3) {
	transform: translate(7px, 5px);
	background: var(--dp-cyan);
}

.brand__mark::before,
.brand__mark::after {
	position: absolute;
	width: 9px;
	height: 1px;
	background: rgba(104, 70, 220, .65);
	content: "";
}

.brand__mark::before {
	transform: rotate(-55deg) translate(1px, -2px);
}

.brand__mark::after {
	transform: rotate(55deg) translate(-1px, -2px);
}

.site-navigation {
	justify-self: center;
}

.site-menu__list,
.site-menu__list ul,
.footer-menu,
.legal-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-menu__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-menu__list > li {
	position: relative;
}

.site-menu__list a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 12px;
	color: #282c3e;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 720;
	line-height: 1.35;
	text-decoration: none;
	letter-spacing: .01em;
}

.site-menu__list a:hover,
.site-menu__list .current-menu-item > a,
.site-menu__list .current-menu-ancestor > a {
	color: var(--dp-purple);
	background: rgba(104, 70, 220, .07);
}

.site-menu__list .menu-item-has-children > a::after {
	width: 6px;
	height: 6px;
	margin: -3px 0 0 4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.site-menu__list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 230px;
	padding: 8px;
	visibility: hidden;
	border: 1px solid var(--dp-line);
	border-radius: 14px;
	opacity: 0;
	background: rgba(255, 255, 255, .98);
	box-shadow: var(--dp-shadow);
	transform: translateY(-5px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.site-menu__list .sub-menu a {
	min-height: 40px;
	padding-inline: 11px;
}

.site-menu__list li:hover > .sub-menu,
.site-menu__list li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
}

.icon-button {
	display: inline-grid;
	min-width: 42px;
	min-height: 42px;
	padding: 8px;
	place-items: center;
	color: var(--dp-ink);
	border: 0;
	border-radius: 11px;
	background: transparent;
	text-decoration: none;
	transition: color .16s ease, background-color .16s ease, transform .16s ease;
}

.icon-button:hover {
	color: var(--dp-purple);
	background: rgba(104, 70, 220, .075);
}

.icon-button svg,
.button svg,
.text-link svg,
.footer-cta__icon svg,
.site-search-form__icon svg,
.empty-state__mark svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-tool {
	position: relative;
}

.header-tool__label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.dp-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	display: grid;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	place-items: center;
	color: var(--dp-white);
	border: 2px solid var(--dp-white);
	border-radius: 99px;
	background: var(--dp-purple);
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}

.dp-cart-count:not(.has-items) {
	display: none;
}

.menu-toggle {
	display: none;
}

.menu-toggle__close {
	display: none;
}

.no-js .search-toggle {
	display: none;
}

.nav-is-open .menu-toggle__open {
	display: none;
}

.nav-is-open .menu-toggle__close {
	display: block;
}

/* Search overlay with a no-JavaScript inline fallback. */

.site-search-panel {
	position: relative;
	z-index: 900;
	padding: 28px 0;
	border-bottom: 1px solid var(--dp-line);
	background: var(--dp-soft);
}

.site-search-panel__backdrop,
.site-search-panel [data-search-close] {
	display: none;
}

.site-search-panel__dialog {
	width: min(780px, calc(100% - 48px));
	margin-inline: auto;
}

.site-search-panel__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.site-search-panel h2 {
	margin: 4px 0 0;
	font-size: clamp(24px, 4vw, 38px);
	line-height: 1.1;
	letter-spacing: -.04em;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--dp-purple);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.eyebrow::before {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 12px currentColor;
	content: "";
}

.site-search-form {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.site-search-form__icon {
	position: absolute;
	top: 50%;
	left: 18px;
	color: var(--dp-muted);
	transform: translateY(-50%);
	pointer-events: none;
}

.site-search-form input,
.inline-search input {
	width: 100%;
	min-height: 54px;
	padding: 11px 18px;
	border: 1px solid var(--dp-line-strong);
	border-radius: 13px;
	outline: 0;
	background: var(--dp-white);
	box-shadow: inset 0 1px 2px rgba(17, 19, 34, .035);
}

.site-search-form input {
	padding-left: 52px;
}

.site-search-form input:focus,
.inline-search input:focus {
	border-color: var(--dp-purple-bright);
	box-shadow: 0 0 0 4px rgba(104, 70, 220, .11);
}

.site-search-panel__hint {
	margin: 12px 0 0;
	color: var(--dp-muted);
	font-size: 13px;
}

.js .site-search-panel {
	position: fixed;
	z-index: 3000;
	inset: 0;
	display: grid;
	padding: 24px;
	visibility: hidden;
	place-items: center;
	border: 0;
	opacity: 0;
	background: transparent;
	pointer-events: none;
	transition: opacity .2s ease, visibility .2s;
}

.js .site-search-panel.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.js .site-search-panel__backdrop {
	position: absolute;
	display: block;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(8, 10, 19, .74);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

.js .site-search-panel__dialog {
	position: relative;
	width: min(720px, 100%);
	padding: clamp(26px, 5vw, 46px);
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: var(--dp-radius-lg);
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
	transform: translateY(10px) scale(.985);
	transition: transform .2s ease;
}

.js .site-search-panel.is-open .site-search-panel__dialog {
	transform: translateY(0) scale(1);
}

.js .site-search-panel [data-search-close] {
	display: grid;
}

/* Shared controls */

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 19px;
	gap: 9px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.2;
	text-decoration: none;
	transition: color .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

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

.button--primary,
button.button--primary {
	color: var(--dp-white);
	background: var(--dp-purple);
	box-shadow: 0 11px 26px rgba(104, 70, 220, .2);
}

.button--primary:hover,
button.button--primary:hover {
	color: var(--dp-white);
	background: var(--dp-purple-dark);
	box-shadow: 0 14px 32px rgba(104, 70, 220, .28);
}

.button--light {
	color: var(--dp-night);
	background: var(--dp-white);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.button--light:hover {
	color: var(--dp-purple-dark);
	background: #f9f8ff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--dp-purple);
	font-size: 13px;
	font-weight: 780;
	text-decoration: none;
}

.text-link svg {
	width: 17px;
	height: 17px;
	transition: transform .16s ease;
}

.text-link:hover svg {
	transform: translateX(3px);
}

/* WordPress content */

.content-shell {
	padding-block: clamp(64px, 8vw, 104px);
}

.content-shell--page {
	width: min(1000px, calc(100% - 48px));
}

.page-main--full,
.page-layout--full,
.page-main--full .page-entry,
.page-main--full .entry-content,
.dp-home-active .site-main,
.dp-home-active .page-layout,
.dp-home-active .page-entry,
.dp-home-active .entry-content {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

.entry-header,
.page-hero {
	position: relative;
	margin-bottom: clamp(36px, 6vw, 64px);
}

.entry-header::before,
.page-hero::before {
	position: absolute;
	z-index: -1;
	top: -34px;
	left: -44px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(104, 70, 220, .11), transparent 70%);
	content: "";
	pointer-events: none;
}

.entry-title,
.page-hero h1,
.single-entry h1,
.error-card h1 {
	margin: 0;
	color: var(--dp-ink);
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 780;
	line-height: 1.03;
	letter-spacing: -.055em;
}

.page-hero--compact {
	max-width: 900px;
}

.page-hero--compact h1 {
	margin-top: 12px;
	font-size: clamp(38px, 5vw, 64px);
}

.page-hero p,
.page-hero__description,
.single-entry__lead,
.error-card > p {
	max-width: 720px;
	margin: 18px 0 0;
	color: var(--dp-muted);
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.65;
}

.entry-content {
	font-size: 17px;
}

.content-shell--page .entry-content,
.single-entry .entry-content {
	max-width: var(--dp-content);
}

.entry-content > * {
	margin-block-start: 0;
	margin-block-end: 1.5em;
}

.entry-content > :where(h2, h3, h4) {
	margin-top: 1.65em;
	margin-bottom: .65em;
	font-weight: 760;
	line-height: 1.2;
	letter-spacing: -.035em;
}

.entry-content h2 {
	font-size: clamp(26px, 4vw, 38px);
}

.entry-content h3 {
	font-size: clamp(21px, 3vw, 28px);
}

.entry-content p,
.entry-content li {
	color: #323748;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.25em;
}

.entry-content blockquote {
	padding: 5px 0 5px 22px;
	margin-inline: 0;
	border-left: 4px solid var(--dp-purple);
	color: var(--dp-muted);
	font-size: 1.15em;
}

.entry-content pre,
.entry-content code {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.entry-content code {
	padding: .15em .36em;
	border-radius: 5px;
	background: var(--dp-soft);
	font-size: .88em;
}

.entry-content pre {
	max-width: 100%;
	padding: 22px;
	overflow: auto;
	color: #e9ebff;
	border-radius: var(--dp-radius);
	background: var(--dp-night-2);
	font-size: 14px;
}

.entry-content pre code {
	padding: 0;
	color: inherit;
	background: transparent;
}

.entry-content table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--dp-line);
	text-align: left;
}

.entry-content th {
	background: var(--dp-soft);
	font-size: 13px;
}

.alignwide {
	width: min(var(--dp-shell), calc(100vw - 48px));
	max-width: none;
	margin-right: calc((min(var(--dp-shell), calc(100vw - 48px)) - min(var(--dp-content), calc(100vw - 48px))) / -2);
	margin-left: calc((min(var(--dp-shell), calc(100vw - 48px)) - min(var(--dp-content), calc(100vw - 48px))) / -2);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

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

.content-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius);
	background: var(--dp-white);
	box-shadow: 0 12px 42px rgba(17, 19, 34, .055);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.content-card:hover {
	border-color: rgba(104, 70, 220, .3);
	box-shadow: var(--dp-shadow-sm);
	transform: translateY(-3px);
}

.content-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--dp-soft);
}

.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.content-card:hover .content-card__media img {
	transform: scale(1.025);
}

.content-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 25px;
}

.content-card__meta,
.single-entry__meta {
	color: var(--dp-muted);
	font-size: 11px;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.content-card__title {
	margin: 9px 0 10px;
	font-size: clamp(20px, 2.5vw, 25px);
	line-height: 1.2;
	letter-spacing: -.035em;
}

.content-card__title a {
	color: var(--dp-ink);
	text-decoration: none;
}

.content-card__excerpt {
	flex: 1;
	color: var(--dp-muted);
	font-size: 14px;
}

.content-card__excerpt > :last-child {
	margin-bottom: 20px;
}

.navigation.pagination {
	margin-top: 52px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	padding: 7px 12px;
	place-items: center;
	color: var(--dp-ink);
	border: 1px solid var(--dp-line);
	border-radius: 10px;
	background: var(--dp-white);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	color: var(--dp-white);
	border-color: var(--dp-purple);
	background: var(--dp-purple);
}

.article-shell {
	width: min(1000px, calc(100% - 48px));
	padding-block: clamp(64px, 9vw, 118px);
}

.single-entry__header {
	margin-bottom: clamp(36px, 6vw, 64px);
}

.single-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 18px;
}

.single-entry__media {
	margin-bottom: clamp(36px, 6vw, 64px);
	overflow: hidden;
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius-lg);
	box-shadow: var(--dp-shadow-sm);
}

.single-entry__media img {
	width: 100%;
}

.post-navigation {
	max-width: var(--dp-content);
	padding-top: 32px;
	margin-top: 64px;
	border-top: 1px solid var(--dp-line);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.post-navigation a {
	display: block;
	padding: 18px;
	color: var(--dp-ink);
	border: 1px solid var(--dp-line);
	border-radius: 13px;
	text-decoration: none;
}

.post-navigation a:hover {
	border-color: rgba(104, 70, 220, .35);
}

.post-navigation span {
	display: block;
	margin-bottom: 5px;
	color: var(--dp-muted);
	font-size: 11px;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.post-navigation strong {
	display: block;
	font-size: 14px;
	line-height: 1.4;
}

.empty-state {
	max-width: 680px;
	padding: clamp(32px, 6vw, 62px);
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius-lg);
	background: linear-gradient(145deg, var(--dp-white), var(--dp-soft));
	box-shadow: var(--dp-shadow-sm);
}

.empty-state__mark {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 22px;
	place-items: center;
	color: var(--dp-purple);
	border-radius: 15px;
	background: rgba(104, 70, 220, .1);
}

.empty-state h2 {
	margin: 0 0 10px;
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.13;
	letter-spacing: -.04em;
}

.empty-state p {
	margin: 0 0 24px;
	color: var(--dp-muted);
}

.inline-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 9px;
	margin-bottom: 22px;
}

/* 404 */

.error-main {
	position: relative;
	overflow: hidden;
	color: var(--dp-white);
	background:
		radial-gradient(circle at 80% 20%, rgba(104, 70, 220, .25), transparent 30%),
		linear-gradient(145deg, var(--dp-night), var(--dp-night-2));
}

.error-main::before {
	position: absolute;
	inset: 0;
	opacity: .38;
	background-image:
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	pointer-events: none;
}

.error-layout {
	position: relative;
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	align-items: center;
	min-height: 620px;
	padding-block: 80px;
	gap: clamp(30px, 7vw, 100px);
}

.error-code {
	color: transparent;
	background: linear-gradient(145deg, rgba(140, 114, 255, .5), rgba(101, 232, 255, .18));
	background-clip: text;
	-webkit-background-clip: text;
	font-size: clamp(110px, 19vw, 260px);
	font-weight: 850;
	line-height: .8;
	letter-spacing: -.1em;
	-webkit-text-stroke: 1px rgba(255, 255, 255, .13);
}

.error-card h1 {
	margin-top: 12px;
	color: var(--dp-white);
	font-size: clamp(38px, 5vw, 66px);
}

.error-card > p {
	color: #aeb4c8;
}

.error-card .inline-search {
	max-width: 600px;
	margin-top: 30px;
}

.error-card .text-link {
	color: var(--dp-cyan);
}

/* Footer */

.site-footer {
	position: relative;
	overflow: hidden;
	color: #c5cada;
	background:
		radial-gradient(circle at 14% 4%, rgba(104, 70, 220, .13), transparent 26%),
		linear-gradient(145deg, var(--dp-night), #0b0e19 58%, #0c1120);
}

.footer-signal {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(900px, 80vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--dp-cyan), var(--dp-purple-bright), transparent);
	box-shadow: 0 0 26px rgba(101, 232, 255, .4);
	transform: translateX(-50%);
}

.footer-cta {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	padding: clamp(32px, 5vw, 56px) 0;
	gap: clamp(18px, 3vw, 30px);
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-cta__icon {
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	color: var(--dp-cyan);
	border: 1px solid rgba(101, 232, 255, .18);
	border-radius: 18px;
	background: rgba(101, 232, 255, .07);
	box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 0 36px rgba(101, 232, 255, .08);
}

.footer-cta .eyebrow {
	color: var(--dp-cyan);
}

.footer-cta h2 {
	max-width: 700px;
	margin: 7px 0 0;
	color: var(--dp-white);
	font-size: clamp(23px, 3vw, 36px);
	line-height: 1.15;
	letter-spacing: -.04em;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .75fr 1fr;
	padding: clamp(55px, 7vw, 88px) 0;
	gap: clamp(40px, 7vw, 100px);
}

.brand--inverse,
.brand--inverse:hover {
	color: var(--dp-white);
}

.brand--inverse .brand__mark {
	border-color: rgba(101, 232, 255, .19);
	background: rgba(255, 255, 255, .04);
	box-shadow: none;
}

.footer-brand > p {
	max-width: 420px;
	margin: 22px 0;
	color: #9ba3b9;
}

.footer-status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 650;
}

.footer-status span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--dp-green);
	box-shadow: 0 0 13px rgba(103, 231, 174, .65);
}

.footer-nav h2,
.footer-details h2 {
	margin: 0 0 18px;
	color: var(--dp-white);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.footer-menu,
.footer-checks {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 11px;
	list-style: none;
}

.footer-menu a,
.legal-menu a {
	color: #adb4c7;
	font-size: 13px;
	text-decoration: none;
}

.footer-menu a:hover,
.legal-menu a:hover {
	color: var(--dp-cyan);
}

.footer-checks li {
	position: relative;
	padding-left: 22px;
	color: #adb4c7;
	font-size: 13px;
}

.footer-checks li::before {
	position: absolute;
	top: .65em;
	left: 0;
	width: 8px;
	height: 5px;
	border-bottom: 1.5px solid var(--dp-green);
	border-left: 1.5px solid var(--dp-green);
	content: "";
	transform: rotate(-45deg);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 23px 0 30px;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
	margin: 0;
	color: #7f879d;
	font-size: 12px;
}

.legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

/* Mobile shell */

@media (max-width: 1080px) {
	.site-header__bar {
		column-gap: 15px;
	}

	.site-menu__list a {
		padding-inline: 8px;
	}

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

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

	.site-header__bar {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: inline-grid;
		justify-self: end;
		grid-column: 2;
	}

	.no-js .menu-toggle {
		display: none;
	}

	.header-tools {
		grid-column: 3;
	}

	.site-navigation {
		grid-column: 1 / -1;
		justify-self: stretch;
		border-top: 1px solid var(--dp-line);
	}

	.no-js .site-navigation {
		padding: 12px 0 18px;
	}

	.js .site-navigation {
		max-height: 0;
		overflow: hidden;
		visibility: hidden;
		border-top-color: transparent;
		opacity: 0;
		transition: max-height .26s ease, opacity .2s ease, visibility .2s, border-color .2s;
	}

	.js .nav-is-open .site-navigation {
		max-height: calc(100vh - var(--dp-header-height));
		padding: 12px 0 18px;
		overflow-y: auto;
		visibility: visible;
		border-top-color: var(--dp-line);
		opacity: 1;
	}

	.site-menu__list {
		display: grid;
		gap: 2px;
	}

	.site-menu__list a {
		min-height: 44px;
		padding-inline: 12px;
		font-size: 14px;
	}

	.site-menu__list .menu-item-has-children > a::after {
		display: none;
	}

	.site-menu__list .sub-menu {
		position: static;
		width: auto;
		padding: 0 0 5px 15px;
		visibility: visible;
		border: 0;
		opacity: 1;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.site-menu__list .sub-menu a {
		min-height: 39px;
		color: var(--dp-muted);
		font-size: 13px;
	}

	.footer-grid {
		grid-template-columns: 1.2fr .8fr;
	}

	.footer-details {
		grid-column: 1 / -1;
	}

	.error-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.error-code {
		font-size: clamp(100px, 32vw, 200px);
	}
}

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

@media (max-width: 680px) {
	.shell,
	.content-shell--page,
	.article-shell {
		width: min(100% - 32px, var(--dp-shell));
	}

	.site-header__bar {
		column-gap: 4px;
	}

	.brand__name {
		display: none;
	}

	.brand__mark {
		width: 32px;
		height: 32px;
	}

	.custom-logo-link img {
		max-width: 124px;
		height: 38px;
	}

	.header-tools {
		gap: 0;
	}

	.icon-button {
		min-width: 40px;
		min-height: 40px;
	}

	.js .site-search-panel {
		align-items: start;
		padding: 72px 12px 12px;
	}

	.js .site-search-panel__dialog {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.site-search-form,
	.inline-search {
		grid-template-columns: 1fr;
	}

	.site-search-form .button,
	.inline-search .button {
		width: 100%;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}

	.entry-title,
	.page-hero h1,
	.single-entry h1 {
		font-size: clamp(36px, 12vw, 54px);
	}

	.alignwide {
		width: calc(100vw - 32px);
		margin-right: calc((calc(100vw - 32px) - min(var(--dp-content), calc(100vw - 32px))) / -2);
		margin-left: calc((calc(100vw - 32px) - min(var(--dp-content), calc(100vw - 32px))) / -2);
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.footer-cta {
		grid-template-columns: 1fr;
	}

	.footer-cta .button {
		justify-self: start;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.footer-details {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.error-layout {
		min-height: 560px;
		padding-block: 55px 75px;
	}

	.error-card .inline-search {
		grid-template-columns: 1fr;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (forced-colors: active) {
	.brand__mark,
	.content-card,
	.empty-state,
	.footer-cta__icon {
		border: 1px solid ButtonText;
	}

	.eyebrow::before,
	.footer-status span {
		background: ButtonText;
	}
}

@media print {
	.site-header,
	.site-search-panel,
	.site-footer,
	.skip-link,
	.post-navigation {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
	}

	a {
		color: inherit;
	}

	.site-frame,
	.site-main {
		min-height: 0;
	}
}
