/* ==========================================================================
   Duensing Digital
   Design system. No external requests: the one webfont is served from this
   domain, and there is no CDN, no font service, and no trackers.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts
   Chakra Petch, by Cadson Demak, under the SIL Open Font License 1.1.
   See fonts/OFL.txt. Subset to latin + the punctuation the headings use,
   which takes it from 77 KB to under 8 KB.
   -------------------------------------------------------------------------- */

@font-face {
	font-family: "Chakra Petch";
	src: url("/plugins/public/dd-design@1.0.0/chakraPetch-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */

:root {
	/* Brand. --green is sampled from the logo wordmark. */
	--green:            #007f5f;
	--green-dark:       #00614a;
	--green-darker:     #004534;
	--green-light:      #10a37a;

	/* Phosphor. For green on dark surfaces, where --green fails contrast. */
	--phosphor:         #2ee6a0;
	--phosphor-dim:     #1fb37c;

	/* Ink. Near-blacks carry a slight green cast to tie back to the brand. */
	--ink-900:          #0a0f0d;
	--ink-800:          #111815;
	--ink-700:          #1a2320;
	--ink-600:          #2b3833;
	--ink-500:          #4d5f58;
	--ink-400:          #6f827a;
	--ink-300:          #9aaaa3;

	/* Paper */
	--paper:            #ffffff;
	--paper-2:          #f4f7f6;
	--paper-3:          #e9efed;
	--line:             #dde5e2;
	--line-strong:      #c6d3ce;

	/* Accents */
	--amber:            #d98324;
	--danger:           #b3261e;

	/* Type. Display carries the personality; body stays on the system stack so
	   long-form copy costs nothing and renders instantly. */
	--font-display:     "Chakra Petch", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-sans:        system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-mono:        ui-monospace, "SF Mono", SFMono-Regular, "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, "Liberation Mono", monospace;

	--step--1:          clamp(0.83rem, 0.80rem + 0.15vw, 0.90rem);
	--step-0:           clamp(1.00rem, 0.96rem + 0.20vw, 1.10rem);
	--step-1:           clamp(1.20rem, 1.12rem + 0.40vw, 1.42rem);
	--step-2:           clamp(1.45rem, 1.30rem + 0.75vw, 1.90rem);
	--step-3:           clamp(1.75rem, 1.48rem + 1.35vw, 2.55rem);
	--step-4:           clamp(2.10rem, 1.62rem + 2.40vw, 3.40rem);
	--step-5:           clamp(2.50rem, 1.70rem + 4.00vw, 4.50rem);

	/* Space */
	--sp-1:             0.25rem;
	--sp-2:             0.5rem;
	--sp-3:             0.75rem;
	--sp-4:             1rem;
	--sp-5:             1.5rem;
	--sp-6:             2rem;
	--sp-7:             3rem;
	--sp-8:             4rem;
	--sp-9:             6rem;

	/* Shape */
	--radius:           10px;
	--radius-lg:        16px;
	--radius-pill:      999px;

	--shadow-1:         0 1px 2px rgba(10, 15, 13, 0.06), 0 2px 8px rgba(10, 15, 13, 0.04);
	--shadow-2:         0 2px 4px rgba(10, 15, 13, 0.06), 0 12px 28px rgba(10, 15, 13, 0.10);
	--shadow-3:         0 8px 20px rgba(10, 15, 13, 0.12), 0 24px 60px rgba(10, 15, 13, 0.16);

	--container:        1160px;
	--container-narrow: 760px;

	--ease:             cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink-800);
	font-family: var(--font-sans);
	font-size: var(--step-0);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
	margin: 0 0 var(--sp-4);
	color: var(--ink-900);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.005em;
	text-wrap: balance;
}

h1 {
	font-size: var(--step-5);
}

h2 {
	font-size: var(--step-3);
}

h3 {
	font-size: var(--step-1);
	letter-spacing: 0;
}

p {
	margin: 0 0 var(--sp-4);
	text-wrap: pretty;
}

a {
	color: var(--green-dark);
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
}

a:hover {
	color: var(--green);
}

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

ul, ol {
	margin: 0 0 var(--sp-4);
	padding-left: 1.25em;
}

li {
	margin-bottom: var(--sp-2);
}

strong {
	font-weight: 650;
	color: var(--ink-900);
}

hr {
	height: 1px;
	margin: var(--sp-7) 0;
	border: 0;
	background: var(--line);
}

:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 2px;
	border-radius: 3px;
}

::selection {
	background: var(--phosphor);
	color: var(--ink-900);
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.dd-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--sp-5);
}

.dd-container--narrow {
	max-width: var(--container-narrow);
}

.dd-section {
	padding-block: var(--sp-9);
}

.dd-section--tight {
	padding-block: var(--sp-8);
}

.dd-section--paper2 {
	background: var(--paper-2);
}

.dd-section--dark {
	background: var(--ink-900);
	color: var(--ink-300);
}

.dd-section--dark h2,
.dd-section--dark h3 {
	color: var(--paper);
}

.dd-section--dark a {
	color: var(--phosphor);
}

/* Buttons keep their own colours inside dark sections: the rule above is for
   inline links and would otherwise win on specificity and gut the contrast. */
.dd-section--dark .dd-btn--primary {
	color: var(--paper);
}

.dd-skipLink {
	position: absolute;
	top: -100px;
	left: var(--sp-4);
	z-index: 200;
	padding: var(--sp-3) var(--sp-4);
	background: var(--green);
	color: var(--paper);
	border-radius: 0 0 var(--radius) var(--radius);
	font-weight: 600;
	text-decoration: none;
	transition: top 0.15s var(--ease);
}

.dd-skipLink:focus {
	top: 0;
	color: var(--paper);
}

/* --------------------------------------------------------------------------
   Eyebrow / section heading
   -------------------------------------------------------------------------- */

.dd-eyebrow {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-bottom: var(--sp-4);
	color: var(--green-dark);
	font-family: var(--font-mono);
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dd-eyebrow::before {
	content: "";
	width: 1.75rem;
	height: 2px;
	background: currentColor;
	flex: none;
}

.dd-section--dark .dd-eyebrow {
	color: var(--phosphor);
}

.dd-sectionHead {
	max-width: 60ch;
	margin-bottom: var(--sp-7);
}

.dd-sectionHead p {
	margin-bottom: 0;
	color: var(--ink-500);
	font-size: var(--step-1);
	line-height: 1.5;
}

.dd-section--dark .dd-sectionHead p {
	color: var(--ink-300);
}

.dd-lede {
	color: var(--ink-500);
	font-size: var(--step-1);
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.dd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	padding: 0.72em 1.35em;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	font-family: inherit;
	font-size: var(--step-0);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.12s var(--ease), background-color 0.15s var(--ease), border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.dd-btn:active {
	transform: translateY(1px);
}

.dd-btn--primary {
	background: var(--green);
	color: var(--paper);
	box-shadow: var(--shadow-1);
}

.dd-btn--primary:hover {
	background: var(--green-dark);
	color: var(--paper);
	box-shadow: var(--shadow-2);
}

.dd-btn--ghost {
	border-color: var(--line-strong);
	background: transparent;
	color: var(--ink-800);
}

.dd-btn--ghost:hover {
	border-color: var(--green);
	background: var(--paper);
	color: var(--green-dark);
}

.dd-section--dark .dd-btn--ghost,
.dd-hero .dd-btn--ghost {
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--paper);
}

.dd-section--dark .dd-btn--ghost:hover,
.dd-hero .dd-btn--ghost:hover {
	border-color: var(--phosphor);
	background: rgba(46, 230, 160, 0.08);
	color: var(--phosphor);
}

.dd-btnRow {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	align-items: center;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.dd-siteHeader {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 15, 13, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: saturate(160%) blur(12px);
}

.dd-siteHeader__inner {
	display: flex;
	align-items: center;
	gap: var(--sp-5);
	min-height: 4.5rem;
}

.dd-siteHeader__brand {
	flex: none;
	display: flex;
	align-items: center;
	padding-block: var(--sp-3);
}

.dd-siteHeader__brand img {
	width: auto;
	height: 1.75rem;
}

.dd-siteHeader__spacer {
	flex: 1;
}

.dd-navToggle {
	display: none;
	flex: none;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: transparent;
	color: var(--paper);
	cursor: pointer;
}

.dd-navToggle__bar,
.dd-navToggle__bar::before,
.dd-navToggle__bar::after {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	background: currentColor;
	transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.dd-navToggle__bar::before,
.dd-navToggle__bar::after {
	content: "";
	position: relative;
}

.dd-navToggle__bar::before {
	top: -6px;
}

.dd-navToggle__bar::after {
	top: 4px;
}

.dd-navToggle[aria-expanded="true"] .dd-navToggle__bar {
	background: transparent;
}

.dd-navToggle[aria-expanded="true"] .dd-navToggle__bar::before {
	transform: translateY(6px) rotate(45deg);
}

.dd-navToggle[aria-expanded="true"] .dd-navToggle__bar::after {
	transform: translateY(-6px) rotate(-45deg);
}

.dd-nav {
	display: flex;
	align-items: center;
	gap: var(--sp-1);
}

.dd-nav__list {
	display: flex;
	align-items: center;
	gap: var(--sp-1);
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-nav__list li {
	margin: 0;
}

.dd-nav__link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	padding: var(--sp-2) var(--sp-3);
	border-radius: var(--radius);
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--step--1);
	font-weight: 550;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.dd-nav__link:hover {
	background: rgba(255, 255, 255, 0.07);
	color: var(--paper);
}

.dd-nav__link[aria-current="page"] {
	color: var(--phosphor);
}

.dd-nav__item--hasMenu {
	position: relative;
}

.dd-nav__caret {
	width: 0.55em;
	height: 0.55em;
	margin-left: 0.1em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s var(--ease);
}

.dd-nav__toggle[aria-expanded="true"] .dd-nav__caret {
	transform: translateY(1px) rotate(-135deg);
}

.dd-nav__menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	z-index: 20;
	min-width: 16rem;
	margin: 0;
	padding: var(--sp-2);
	background: var(--ink-800);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-3);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
}

.dd-nav__item--hasMenu:hover .dd-nav__menu,
.dd-nav__menu--open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dd-nav__menuLink {
	display: block;
	padding: var(--sp-3);
	border-radius: var(--radius);
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--step--1);
	font-weight: 550;
	text-decoration: none;
	line-height: 1.3;
}

.dd-nav__menuLink span {
	display: block;
	margin-top: 2px;
	color: var(--ink-400);
	font-size: 0.82em;
	font-weight: 400;
}

.dd-nav__menuLink:hover {
	background: rgba(46, 230, 160, 0.1);
	color: var(--phosphor);
}

.dd-nav__menuLink:hover span {
	color: var(--ink-300);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.dd-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.8);
	isolation: isolate;
}

.dd-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

/* The hero photograph is atmosphere, not subject matter. Blur keeps it from
   competing with the headline and stops incidental signage in the shot from
   reading as ours. Scaled up so the blur has no soft edge at the viewport. */
.dd-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	filter: grayscale(0.55) contrast(1.05) blur(3px);
}

.dd-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(120% 90% at 15% 20%, rgba(10, 15, 13, 0.72) 0%, rgba(10, 15, 13, 0.92) 55%, rgba(10, 15, 13, 0.98) 100%),
		linear-gradient(100deg, rgba(0, 97, 74, 0.35) 0%, rgba(10, 15, 13, 0) 60%);
}

/* Scanlines. Hero only, and very restrained. */
.dd-hero__scan {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.5;
	background-image: repeating-linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.028) 0px,
		rgba(255, 255, 255, 0.028) 1px,
		transparent 1px,
		transparent 4px
	);
	mix-blend-mode: overlay;
}

.dd-hero__inner {
	max-width: 46rem;
	padding-block: clamp(var(--sp-8), 11vw, 9.5rem);
}

.dd-hero h1 {
	color: var(--paper);
	margin-bottom: var(--sp-5);
}

.dd-hero h1 em {
	position: relative;
	color: var(--phosphor);
	font-style: normal;
	white-space: nowrap;
}

.dd-hero__lede {
	max-width: 46ch;
	margin-bottom: var(--sp-6);
	color: rgba(255, 255, 255, 0.76);
	font-size: var(--step-1);
	line-height: 1.55;
}

.dd-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2) var(--sp-5);
	margin-top: var(--sp-7);
	padding-top: var(--sp-5);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-mono);
	font-size: var(--step--1);
	letter-spacing: 0.02em;
}

.dd-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
}

.dd-hero__meta span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--phosphor);
	flex: none;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.dd-grid {
	display: grid;
	gap: var(--sp-4);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.dd-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: var(--sp-5);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: inherit;
	transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

a.dd-card:hover {
	transform: translateY(-3px);
	border-color: var(--green);
	box-shadow: var(--shadow-2);
}

.dd-card__icon {
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: var(--sp-4);
	border-radius: var(--radius);
	background: color-mix(in srgb, var(--green) 10%, transparent);
	color: var(--green-dark);
	flex: none;
}

.dd-card__icon svg {
	width: 1.4rem;
	height: 1.4rem;
}

.dd-card h3 {
	margin-bottom: var(--sp-2);
}

.dd-card p {
	margin-bottom: 0;
	color: var(--ink-500);
	font-size: var(--step--1);
	line-height: 1.6;
}

.dd-card__more {
	margin-top: var(--sp-4);
	color: var(--green-dark);
	font-size: var(--step--1);
	font-weight: 600;
}

a.dd-card:hover .dd-card__more::after {
	transform: translateX(3px);
}

.dd-card__more::after {
	content: "\2192";
	display: inline-block;
	margin-left: 0.35em;
	transition: transform 0.18s var(--ease);
}

/* Cards sitting on a dark section need their own surface. */
.dd-cardDark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
}

.dd-cardDark h3 {
	color: var(--paper);
}

.dd-cardDark p {
	color: var(--ink-300);
}

.dd-cardDark a {
	color: var(--phosphor);
}

.dd-card .dd-tag {
	align-self: flex-start;
	margin-bottom: var(--sp-3);
}

.dd-card__more a {
	text-decoration: none;
}

.dd-card__more a:hover {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Feature (image + text)
   -------------------------------------------------------------------------- */

.dd-feature {
	display: grid;
	gap: clamp(var(--sp-5), 5vw, var(--sp-8));
	align-items: center;
	grid-template-columns: 1fr;
}

/* Two columns of unequal height should align to the top, not float centred
   against each other. */
.dd-feature--top {
	align-items: start;
}

.dd-feature__body h2 {
	margin-bottom: var(--sp-4);
}

.dd-feature__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--ink-800);
	box-shadow: var(--shadow-2);
	aspect-ratio: 4 / 3;
}

.dd-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dd-feature__tag {
	position: absolute;
	left: var(--sp-4);
	bottom: var(--sp-4);
	padding: var(--sp-2) var(--sp-3);
	border-radius: var(--radius-pill);
	background: rgba(10, 15, 13, 0.82);
	color: var(--phosphor);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	backdrop-filter: blur(6px);
}

/* --------------------------------------------------------------------------
   Checklist
   -------------------------------------------------------------------------- */

.dd-checkList {
	margin: 0 0 var(--sp-5);
	padding: 0;
	list-style: none;
}

.dd-checkList li {
	position: relative;
	margin-bottom: var(--sp-3);
	padding-left: 1.9rem;
}

.dd-checkList li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.42em;
	width: 0.62rem;
	height: 0.34rem;
	border-left: 2.5px solid var(--green);
	border-bottom: 2.5px solid var(--green);
	transform: rotate(-45deg);
}

.dd-section--dark .dd-checkList li::before {
	border-color: var(--phosphor);
}

/* --------------------------------------------------------------------------
   Terminal panel
   Stands in where a photograph would say less than the content does.
   -------------------------------------------------------------------------- */

.dd-terminal {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	background: #060a08;
	box-shadow: var(--shadow-3);
	overflow: hidden;
}

.dd-terminal__bar {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	padding: var(--sp-3) var(--sp-4);
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dd-terminal__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	flex: none;
}

.dd-terminal__dot:first-child {
	background: var(--phosphor-dim);
}

.dd-terminal__title {
	margin: 0 0 0 var(--sp-3);
	color: var(--ink-400);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

/* background and border are reset explicitly, not left to inherit: Bootstrap
   and Tabler both style the bare <pre> element, and an element selector sails
   straight past the dd- namespace. */
.dd-terminal__body {
	margin: 0;
	padding: var(--sp-5);
	background: transparent;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--font-mono);
	font-size: clamp(0.72rem, 0.62rem + 0.42vw, 0.88rem);
	line-height: 1.75;
	white-space: pre;
	overflow-x: auto;
}

.dd-terminal__prompt {
	color: var(--phosphor);
	font-weight: 700;
}

.dd-terminal__ok {
	color: var(--phosphor);
}

.dd-terminal__ok::before {
	content: "\25CF ";
}

.dd-terminal__caret {
	display: inline-block;
	width: 0.6em;
	height: 1.05em;
	background: var(--phosphor);
	vertical-align: text-bottom;
	animation: blink 1.1s steps(2, start) infinite;
}

@keyframes blink {
	to {
		visibility: hidden;
	}
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.dd-stats {
	display: grid;
	gap: var(--sp-5);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

.dd-stat__num {
	display: block;
	color: var(--phosphor);
	font-family: var(--font-mono);
	font-size: var(--step-3);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
}

.dd-stat__label {
	display: block;
	margin-top: var(--sp-3);
	color: var(--ink-300);
	font-size: var(--step--1);
	line-height: 1.5;
}

/* Stats on a light section need their own surface and darker ink. */
.dd-statsPanel {
	gap: 0;
	margin-bottom: var(--sp-6);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--paper-2);
}

.dd-statsPanel .dd-stat {
	padding: var(--sp-5);
	border-bottom: 1px solid var(--line);
}

.dd-statsPanel .dd-stat__num {
	color: var(--green-dark);
	font-size: var(--step-2);
}

.dd-statsPanel .dd-stat__label {
	color: var(--ink-500);
}

@media (min-width: 48rem) {
	.dd-statsPanel {
		grid-template-columns: repeat(4, 1fr);
	}

	.dd-statsPanel .dd-stat {
		border-bottom: 0;
		border-right: 1px solid var(--line);
	}

	.dd-statsPanel .dd-stat:last-child {
		border-right: 0;
	}
}

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */

.dd-pageHead {
	position: relative;
	overflow: hidden;
	padding-block: var(--sp-8);
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.75);
}

.dd-pageHead::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 97, 74, 0.45) 0%, rgba(10, 15, 13, 0) 55%);
	pointer-events: none;
}

.dd-pageHead .dd-container {
	position: relative;
	z-index: 1;
}

.dd-pageHead h1 {
	max-width: 18ch;
	margin-bottom: var(--sp-4);
	color: var(--paper);
	font-size: var(--step-4);
}

.dd-pageHead__lede {
	max-width: 54ch;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--step-1);
	line-height: 1.55;
}

.dd-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	align-items: center;
	margin-bottom: var(--sp-5);
	padding: 0;
	list-style: none;
	font-family: var(--font-mono);
	font-size: var(--step--1);
}

.dd-breadcrumb li {
	margin: 0;
	color: var(--ink-400);
}

.dd-breadcrumb li + li::before {
	content: "/";
	margin-right: var(--sp-2);
	color: var(--ink-400);
}

.dd-breadcrumb a {
	color: var(--ink-300);
	text-decoration: none;
}

.dd-breadcrumb a:hover {
	color: var(--phosphor);
}

/* --------------------------------------------------------------------------
   Prose (long-form interior content)
   -------------------------------------------------------------------------- */

.dd-prose {
	max-width: 68ch;
}

.dd-prose > :first-child {
	margin-top: 0;
}

.dd-prose h2 {
	margin-top: var(--sp-7);
	font-size: var(--step-2);
}

.dd-prose h3 {
	margin-top: var(--sp-6);
}

.dd-prose p,
.dd-prose li {
	color: var(--ink-700);
}

/* .dd-prose sets a near-black ink, which would otherwise win on specificity over
   .dd-section--dark and render the copy as black-on-black. */
.dd-section--dark .dd-prose p,
.dd-section--dark .dd-prose li,
.dd-section--dark .dd-prose .dd-lede {
	color: var(--ink-300);
}

.dd-section--dark .dd-prose strong {
	color: var(--paper);
}

/* --------------------------------------------------------------------------
   Callout
   -------------------------------------------------------------------------- */

.dd-callout {
	margin: var(--sp-6) 0;
	padding: var(--sp-5);
	background: var(--paper-2);
	border: 1px solid var(--line);
	border-left: 3px solid var(--green);
	border-radius: var(--radius);
}

.dd-callout > :last-child {
	margin-bottom: 0;
}

.dd-callout h3 {
	margin-bottom: var(--sp-2);
	font-size: var(--step-0);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.dd-cta {
	position: relative;
	overflow: hidden;
	background: var(--green-darker);
	color: rgba(255, 255, 255, 0.82);
}

.dd-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(90% 140% at 85% 15%, rgba(46, 230, 160, 0.22) 0%, transparent 60%);
	pointer-events: none;
}

.dd-cta .dd-container {
	position: relative;
	z-index: 1;
}

.dd-cta .dd-eyebrow {
	color: var(--phosphor);
}

.dd-cta h2 {
	max-width: 20ch;
	color: var(--paper);
}

.dd-cta p {
	max-width: 52ch;
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--step-1);
}

.dd-cta .dd-btn--primary {
	background: var(--paper);
	color: var(--green-darker);
}

.dd-cta .dd-btn--primary:hover {
	background: var(--phosphor);
	color: var(--ink-900);
}

.dd-cta .dd-btn--ghost {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--paper);
}

.dd-cta .dd-btn--ghost:hover {
	border-color: var(--paper);
	background: rgba(255, 255, 255, 0.1);
	color: var(--paper);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.dd-siteFooter {
	padding-block: var(--sp-8) var(--sp-6);
	background: var(--ink-900);
	color: var(--ink-300);
	font-size: var(--step--1);
}

.dd-siteFooter__grid {
	display: grid;
	gap: var(--sp-6);
	grid-template-columns: 1fr;
	padding-bottom: var(--sp-6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dd-siteFooter__brand img {
	height: 1.6rem;
	width: auto;
	margin-bottom: var(--sp-4);
}

.dd-siteFooter__brand p {
	max-width: 34ch;
	color: var(--ink-400);
}

.dd-siteFooter h4 {
	margin-bottom: var(--sp-4);
	color: var(--paper);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dd-siteFooter ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-siteFooter li {
	margin-bottom: var(--sp-2);
}

.dd-siteFooter a {
	color: var(--ink-300);
	text-decoration: none;
}

.dd-siteFooter a:hover {
	color: var(--phosphor);
	text-decoration: underline;
}

/* --ink-500 here measured 2.85:1 against the footer, well under AA. --ink-400
   is the dimmest step that still passes on this background. */
.dd-siteFooter__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3) var(--sp-5);
	justify-content: space-between;
	align-items: center;
	padding-top: var(--sp-5);
	color: var(--ink-400);
	font-family: var(--font-mono);
	font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.dd-field {
	margin-bottom: var(--sp-5);
}

.dd-field label {
	display: block;
	margin-bottom: var(--sp-2);
	color: var(--ink-900);
	font-size: var(--step--1);
	font-weight: 600;
}

.dd-field input,
.dd-field textarea,
.dd-field select {
	width: 100%;
	padding: 0.75em 0.9em;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--ink-900);
	font-family: inherit;
	font-size: var(--step-0);
	transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.dd-field input:focus,
.dd-field textarea:focus,
.dd-field select:focus {
	border-color: var(--green);
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 22%, transparent);
}

.dd-field textarea {
	min-height: 9rem;
	resize: vertical;
}

.dd-field__hint {
	margin: var(--sp-2) 0 0;
	color: var(--ink-500);
	font-size: var(--step--1);
}

.dd-field__optional {
	color: var(--ink-400);
	font-weight: 400;
}

.dd-contactForm {
	padding: var(--sp-5);
	background: var(--paper-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.dd-contactForm .dd-field:last-of-type {
	margin-bottom: var(--sp-4);
}

.dd-policyDate {
	margin-top: var(--sp-7);
	padding-top: var(--sp-5);
	border-top: 1px solid var(--line);
	color: var(--ink-500);
	font-family: var(--font-mono);
	font-size: var(--step--1);
	line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Contact detail list
   -------------------------------------------------------------------------- */

.dd-contactList {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-contactList li {
	display: flex;
	gap: var(--sp-4);
	margin-bottom: var(--sp-5);
}

.dd-contactList svg {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.2rem;
	color: var(--green);
	flex: none;
}

.dd-contactList strong {
	display: block;
	margin-bottom: var(--sp-1);
}

.dd-contactList span {
	color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.dd-visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.dd-tag {
	display: inline-block;
	padding: 0.3em 0.8em;
	border-radius: var(--radius-pill);
	background: color-mix(in srgb, var(--green) 12%, transparent);
	color: var(--green-dark);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.dd-tag--amber {
	background: color-mix(in srgb, var(--amber) 16%, transparent);
	color: #8a4f0d;
}

.dd-mb-0 {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 48rem) {
	.dd-feature {
		grid-template-columns: 1fr 1fr;
	}

	.dd-feature--flip .dd-feature__media {
		order: -1;
	}

	.dd-siteFooter__grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

@media (min-width: 64rem) {
	.dd-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 61.99rem) {
	.dd-navToggle {
		display: grid;
		place-items: center;
	}

	.dd-nav {
		position: fixed;
		inset: 4.5rem 0 0;
		z-index: 90;
		display: block;
		padding: var(--sp-5);
		background: var(--ink-900);
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
	}

	.dd-nav--open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.dd-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.dd-nav__link {
		padding: var(--sp-4) var(--sp-2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0;
		font-size: var(--step-0);
	}

	.dd-nav__item--hasMenu {
		position: static;
	}

	.dd-nav__toggle {
		width: 100%;
		justify-content: space-between;
	}

	.dd-nav__menu {
		position: static;
		display: none;
		min-width: 0;
		margin: 0;
		padding: var(--sp-2) 0 var(--sp-3) var(--sp-4);
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.dd-nav__item--hasMenu:hover .dd-nav__menu {
		display: none;
	}

	.dd-nav__menu--open {
		display: block;
	}

	.dd-nav__menuLink {
		padding: var(--sp-3) var(--sp-2);
	}

	body.dd-navOpen {
		overflow: hidden;
	}
}

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

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

@media print {
	.dd-siteHeader,
	.dd-nav,
	.dd-cta,
	.dd-hero__scan {
		display: none;
	}

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