:root {
	color-scheme: light;
	--green: #60b949;
	--green-soft: #8ed67b;
	--green-dark: #2f6f24;
	--green-tint: #f1f8ee;
	--black: #050505;
	--white: #ffffff;
	--off-white: #f7faf6;
	--line: #d8e2d4;
	--line-strong: #849386;
	--muted: #626b60;
	--error: #b3261e;
	--warning: #b7791f;
	--warning-tint: #fff7df;
	--shadow: 0 24px 60px rgba(21, 52, 14, .10);
	--radius: 14px;
	--ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
	box-sizing: border-box;
}

.dcom-flow-body {
	margin: 0;
	min-height: 100vh;
	background: var(--white);
	color: var(--black);
	font-family: "Inter", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.dcom-flow-shell {
	min-height: 100vh;
	padding: clamp(18px, 4vw, 48px);
	background: var(--off-white);
}

.dcom-flow-main {
	width: min(940px, 100%);
	margin: 0 auto;
}

.dcom-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.dcom-flow-form {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: clamp(22px, 4vw, 44px);
	background: var(--white);
	box-shadow: var(--shadow);
}

.dcom-flow-brand {
	margin: calc(clamp(22px, 4vw, 44px) * -1) calc(clamp(22px, 4vw, 44px) * -1) clamp(26px, 4vw, 38px);
	padding: clamp(18px, 3vw, 28px);
	display: flex;
	justify-content: center;
	background: var(--black);
	border-radius: 20px 20px 0 0;
	border-bottom: 4px solid var(--green);
}

.dcom-flow-brand img {
	display: block;
	width: min(222px, 72vw);
	height: auto;
}

/* ---------- Progress ---------- */

.dcom-flow-progress-wrap {
	margin: 0 0 clamp(26px, 4vw, 38px);
	border-bottom: 1px solid var(--line);
	padding-bottom: 20px;
}

.dcom-flow-progress-wrap[hidden] {
	display: none;
}

.dcom-flow-meter {
	height: 6px;
	margin-bottom: 16px;
	background: #e7efe3;
	border-radius: 999px;
	overflow: hidden;
}

.dcom-flow-meter span {
	display: block;
	width: 20%;
	height: 100%;
	background: var(--green);
	border-radius: inherit;
	transition: width .5s var(--ease-out);
}

.dcom-flow-progress {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.dcom-flow-progress button {
	position: relative;
	min-height: 40px;
	border: 2px solid var(--line);
	border-radius: 999px;
	padding: 7px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--white);
	color: var(--muted);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.dcom-flow-progress button:not(:disabled):hover {
	border-color: var(--green);
	background: var(--green-tint);
	color: var(--black);
}

.dcom-flow-progress button.after-current {
	background: var(--white);
	border-color: var(--line);
	color: var(--muted);
	opacity: .5;
	box-shadow: none;
}

.dcom-flow-progress button.after-current:not(:disabled):hover {
	border-color: var(--line);
	color: var(--muted);
}

.dcom-flow-progress button.after-current i {
	border-color: var(--line);
	background: var(--white);
	color: var(--black);
	font-size: 11px;
}

.dcom-flow-progress button.active {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
	box-shadow: 0 6px 16px rgba(96, 185, 73, .35);
}

.dcom-flow-progress button.complete {
	background: var(--green-tint);
	border-color: rgba(96, 185, 73, .5);
	color: var(--green-dark);
}

.dcom-flow-progress button:disabled {
	cursor: default;
	opacity: .5;
}

.dcom-flow-progress i {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	border-radius: 999px;
	display: inline-grid;
	place-items: center;
	border: 2px solid var(--line);
	background: var(--white);
	color: var(--black);
	font-size: 11px;
	font-weight: 800;
	font-style: normal;
}

.dcom-flow-progress button.active i {
	border-color: rgba(255, 255, 255, .6);
	background: rgba(255, 255, 255, .18);
	color: var(--white);
}

.dcom-flow-progress button.complete i {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
	font-size: 0;
}

.dcom-flow-progress button.complete i::after {
	content: "\2713";
	font-size: 11px;
}

.dcom-flow-progress button.status-incomplete {
	background: var(--warning-tint);
	border-color: rgba(183, 121, 31, .55);
	color: #705014;
}

.dcom-flow-progress button.status-missing {
	background: #fff0ee;
	border-color: rgba(179, 38, 30, .48);
	color: var(--error);
}

.dcom-flow-progress button.status-incomplete i,
.dcom-flow-progress button.status-missing i {
	position: relative;
	color: var(--white);
	font-size: 0;
	line-height: 1;
}

.dcom-flow-progress button.status-incomplete i {
	border-color: var(--warning);
	background: var(--warning);
}

.dcom-flow-progress button.status-missing i {
	border-color: var(--error);
	background: var(--error);
}

.dcom-flow-progress button.status-incomplete i::after,
.dcom-flow-progress button.status-missing i::after {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: currentColor;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
}

.dcom-flow-progress button.status-incomplete i::after {
	content: "\26A0";
	transform: translateY(-.5px);
}

.dcom-flow-progress button.status-missing i::after {
	content: "\2715";
}

.dcom-flow-progress button[data-status-message]::after {
	content: attr(data-status-message);
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 10;
	width: max-content;
	max-width: min(300px, 80vw);
	border: 1px solid rgba(5, 5, 5, .12);
	border-radius: 10px;
	padding: 9px 11px;
	background: var(--black);
	color: var(--white);
	box-shadow: 0 14px 34px rgba(5, 5, 5, .22);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	text-transform: none;
	letter-spacing: 0;
	white-space: pre-line;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -4px);
	transition: opacity .14s ease, transform .14s ease;
}

.dcom-flow-progress button[data-status-message]::before {
	content: "";
	position: absolute;
	top: calc(100% + 4px);
	left: 50%;
	z-index: 11;
	width: 10px;
	height: 10px;
	background: var(--black);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -4px) rotate(45deg);
	transition: opacity .14s ease, transform .14s ease;
}

.dcom-flow-progress button[data-status-message]:hover::after,
.dcom-flow-progress button[data-status-message]:focus-visible::after,
.dcom-flow-progress button[data-status-message]:hover::before,
.dcom-flow-progress button[data-status-message]:focus-visible::before {
	opacity: 1;
	transform: translate(-50%, 0);
	transition-delay: .5s;
}

.dcom-flow-progress button[data-status-message]:hover::before,
.dcom-flow-progress button[data-status-message]:focus-visible::before {
	transform: translate(-50%, 0) rotate(45deg);
}

.dcom-requirements-notice {
	margin: 0 0 22px;
	border: 1px solid rgba(179, 38, 30, .32);
	border-radius: var(--radius);
	padding: 14px 16px;
	background: #fff7f6;
	color: var(--black);
	font-size: 14px;
}

.dcom-requirements-notice b {
	display: block;
	margin-bottom: 8px;
	color: var(--error);
}

.dcom-requirements-notice ul {
	margin: 0;
	padding-left: 18px;
}

.dcom-requirements-notice li + li {
	margin-top: 3px;
}

/* ---------- Steps ---------- */

.dcom-flow-step {
	display: none;
}

.dcom-flow-step.active {
	display: block;
	animation: dcomStepIn .5s var(--ease-out) both;
}

.dcom-flow-step[data-step="0"].active {
	position: relative;
	z-index: 2;
}

@keyframes dcomStepIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.dcom-flow-step h2 {
	margin: 0 0 10px;
	color: var(--black);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -.01em;
	text-transform: uppercase;
}

.dcom-flow-lede {
	max-width: 640px;
	margin: 0 0 24px;
	color: var(--muted);
}

/* ---------- Inputs ---------- */

.dcom-flow-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.dcom-flow-grid label {
	display: grid;
	gap: 7px;
	align-content: start;
	color: var(--black);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.dcom-label-text {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	width: fit-content;
	max-width: 100%;
}

.dcom-required-badge {
	color: var(--error);
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.dcom-required-field input,
.dcom-required-field select,
.dcom-required-field textarea {
	border-color: #b7cbb1;
}

.dcom-required-field.shake input,
.dcom-required-field.shake select,
.dcom-required-field.shake textarea,
.dcom-required-field.shake.dcom-dropzone {
	border-color: var(--error);
	box-shadow: 0 0 0 4px rgba(179, 38, 30, .14);
}

.dcom-required-field.shake input:focus,
.dcom-required-field.shake select:focus,
.dcom-required-field.shake textarea:focus,
.dcom-required-field.shake.dcom-dropzone:focus-within {
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(96, 185, 73, .2);
}

.dcom-flow-grid .span-2 {
	grid-column: 1 / -1;
}

.dcom-flow-grid input,
.dcom-flow-grid select,
.dcom-flow-grid textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid #cfdcca;
	border-radius: 10px;
	padding: 12px 14px;
	background: var(--white);
	color: var(--black);
	font: inherit;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.dcom-flow-grid input::placeholder {
	color: #9aa596;
	font-weight: 400;
}

.dcom-flow-grid textarea {
	min-height: 112px;
	resize: vertical;
}

.dcom-currency-input,
.dcom-rate-input {
	position: relative;
	display: block;
}

.dcom-currency-input i,
.dcom-rate-input i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-style: normal;
	font-weight: 700;
	pointer-events: none;
}

.dcom-currency-input i {
	left: 14px;
}

.dcom-rate-input i {
	right: 14px;
}

.dcom-currency-input input {
	padding-left: 30px;
}

.dcom-rate-input input {
	padding-right: 72px;
}

.dcom-contact-subhead {
	margin: 24px 0 0;
	color: var(--black);
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 1.15;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-contact-primary {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 12px;
}

.dcom-contact-address {
	grid-template-columns: 2fr 1fr 1fr;
	margin-top: 12px;
}

/* ---------- Address hero ---------- */

.dcom-step-hero {
	position: relative;
	z-index: 2;
	max-width: 620px;
	margin: 0 auto;
	padding: clamp(16px, 5vw, 52px) 0 clamp(18px, 2vw, 26px);
	text-align: center;
}

.dcom-step-hero h2 {
	margin-bottom: 22px;
}

.dcom-address-field {
	position: relative;
	z-index: 3;
	text-align: left;
}

.dcom-address-icon {
	position: absolute;
	top: 30px;
	left: 18px;
	transform: translateY(-50%);
	color: var(--muted);
	pointer-events: none;
	transition: color .18s ease;
}

.dcom-address-field:focus-within .dcom-address-icon {
	color: var(--green-dark);
}

.dcom-address-field input {
	width: 100%;
	height: 60px;
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	padding: 0 18px 0 50px;
	background: var(--white);
	color: var(--black);
	font: inherit;
	font-size: 17px;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(21, 52, 14, .07);
	transition: border-color .18s ease, box-shadow .18s ease;
}

.dcom-address-field input::placeholder {
	color: #9aa596;
	font-weight: 400;
}

/* The shared field foundation is intentionally overridden for the address hero. */
.dcom-flow-body .dcom-address-field input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
	min-height: 0;
	border-color: var(--line-strong);
	border-radius: 14px;
	padding: 0 18px 0 50px;
	font-size: 17px;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(21, 52, 14, .07);
}

.dcom-address-field.has-selection input {
	border-color: var(--green);
}

.dcom-address-field.is-loading input {
	padding-right: 52px;
	border-color: var(--green);
}

.dcom-address-field.is-application-loading .dcom-address-icon,
.dcom-address-field.is-application-loading input {
	opacity: 0;
	pointer-events: none;
}

.dcom-address-field.is-application-loading::after {
	display: none;
}

.dcom-application-loading {
	position: absolute;
	inset: 0;
	height: 60px;
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	background: var(--white);
	box-shadow: 0 10px 30px rgba(21, 52, 14, .07);
	overflow: hidden;
}

.dcom-application-loading[hidden] {
	display: none;
}

.dcom-application-loading span {
	position: relative;
	display: block;
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: #e7efe3;
	overflow: hidden;
}

.dcom-application-loading span::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 52%;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(96, 185, 73, 0), var(--green) 20%, var(--green) 80%, rgba(96, 185, 73, 0));
	transform: translate3d(-145%, 0, 0);
	will-change: transform, opacity;
	animation: dcomLoadingBar 1.7s linear infinite;
}

@keyframes dcomLoadingBar {
	0% {
		opacity: 0;
		transform: translate3d(-145%, 0, 0);
	}
	12% {
		opacity: 1;
	}
	88% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(245%, 0, 0);
	}
}

.dcom-address-field.is-loading::after {
	content: "";
	position: absolute;
	top: 30px;
	right: 18px;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	border: 2px solid rgba(96, 185, 73, .22);
	border-top-color: var(--green-dark);
	border-radius: 999px;
	animation: dcomSpin .75s linear infinite;
	pointer-events: none;
}

@keyframes dcomSpin {
	to {
		transform: rotate(360deg);
	}
}

.dcom-address-status {
	min-height: 42px;
	margin: 12px 2px 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
	text-align: left;
}

.dcom-address-status:empty {
	visibility: hidden;
}

.dcom-address-status.is-error {
	color: var(--error);
	font-weight: 700;
}

.dcom-continue-applications {
	display: grid;
	justify-items: center;
	width: fit-content;
	max-width: min(620px, 100%);
	margin: 34px auto 0;
	text-align: left;
}

.dcom-continue-applications h3 {
	margin: 0 0 10px;
	color: var(--black);
	font-size: 16px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.dcom-continue-list {
	display: grid;
	justify-self: center;
	width: max-content;
	max-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 8px;
}

.dcom-continue-loading {
	margin: 0;
	border: 2px solid var(--line);
	border-radius: 10px;
	padding: 12px 14px;
	background: var(--white);
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.dcom-continue-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--white);
	list-style: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.dcom-continue-row:hover,
.dcom-continue-row:focus-within {
	border-color: var(--green);
	box-shadow: 0 6px 16px rgba(21, 52, 14, .08);
}

.dcom-continue-open,
.dcom-continue-delete {
	border: 0;
	border-radius: 0;
	background: transparent;
	font: inherit;
	cursor: pointer;
}

.dcom-continue-open {
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: center;
	gap: 36px;
	min-height: 54px;
	padding: 10px 32px;
	text-align: left;
}

.dcom-continue-open:hover,
.dcom-continue-open:focus-visible {
	background: var(--green-tint);
	outline: none;
}

.dcom-continue-address {
	overflow: hidden;
	text-overflow: ellipsis;
	overflow-wrap: anywhere;
	color: var(--black);
	font-size: 14px;
	font-weight: 800;
}

.dcom-continue-open small {
	justify-self: end;
	white-space: nowrap;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
}

.dcom-continue-delete {
	display: grid;
	width: 48px;
	place-items: center;
	border-left: 1px solid var(--line);
	background: var(--white);
	color: var(--error);
}

.dcom-continue-delete svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 2.5;
}

.dcom-continue-delete:hover,
.dcom-continue-delete:focus-visible {
	border-left-color: var(--error);
	background: #fff0ee;
	outline: none;
}

.dcom-address-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	left: 0;
	z-index: 20;
	max-height: 320px;
	overflow: auto;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 24px 60px rgba(5, 5, 5, .16);
	display: none;
}

.dcom-address-suggestions.active {
	display: block;
	animation: dcomDropIn .18s var(--ease-out) both;
}

@keyframes dcomDropIn {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.dcom-address-suggestions button {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #edf3ea;
	padding: 13px 16px;
	background: var(--white);
	color: var(--black);
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.dcom-address-suggestions button:last-child {
	border-bottom: 0;
}

.dcom-address-suggestions button:hover,
.dcom-address-suggestions button:focus,
.dcom-address-suggestions button.kbd-active {
	background: var(--green-tint);
	outline: none;
}

.dcom-address-suggestions button.loading,
.dcom-address-suggestions button:disabled {
	background: var(--green-tint);
	color: var(--green-dark);
	cursor: wait;
}

.dcom-address-suggestions mark {
	background: rgba(96, 185, 73, .28);
	color: inherit;
	border-radius: 3px;
	padding: 0 1px;
}

/* ---------- Estimate ---------- */

.dcom-estimate-plan-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 10px 12px 10px 16px;
	background: var(--off-white);
}

.dcom-estimate-plan-bar > span {
	color: var(--black);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.dcom-plan-toggle {
	display: inline-grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 4px;
	border: 1px solid #cfdcca;
	border-radius: 7px;
	padding: 3px;
	background: var(--white);
}

.dcom-plan-toggle button {
	min-height: 38px;
	border: 0;
	border-radius: 5px;
	padding: 8px 14px;
	background: transparent;
	color: var(--muted);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}

.dcom-plan-toggle button:hover {
	color: var(--green-dark);
}

.dcom-plan-toggle button.active {
	background: var(--green);
	color: var(--white);
	box-shadow: 0 4px 10px rgba(42, 115, 32, .18);
}

.dcom-plan-toggle button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(96, 185, 73, .24);
}

.dcom-estimate-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 8px;
}

.dcom-stat {
	min-height: 138px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	background: var(--white);
	display: grid;
	grid-template-rows: 50px auto;
	align-content: start;
	gap: 12px;
}

.dcom-stat.is-highlight {
	background: var(--green-tint);
	border-color: rgba(96, 185, 73, .45);
}

.dcom-stat-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	min-height: 50px;
}

.dcom-stat-head b {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.dcom-info-button {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border: 1px solid rgba(96, 185, 73, .5);
	border-radius: 999px;
	display: inline-grid;
	place-items: center;
	background: var(--white);
	color: var(--green-dark);
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.dcom-info-button:hover,
.dcom-info-button[aria-expanded="true"] {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
}

.dcom-info-button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(96, 185, 73, .24);
}

.dcom-stat-value {
	color: var(--green-dark);
	font-size: clamp(24px, 3.6vw, 34px);
	line-height: 1;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
}

.dcom-metric-info {
	border-top: 1px solid var(--line);
	padding-top: 12px;
	color: var(--muted);
	font-size: 13px;
}

.dcom-metric-info[hidden] {
	display: none;
}

.dcom-metric-info p {
	margin: 0 0 8px;
}

.dcom-formula-line {
	color: var(--black);
	font-weight: 700;
}

.dcom-investment-estimate {
	margin-top: 26px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 22px 0 24px;
}

.dcom-investment-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.dcom-investment-head h3 {
	margin: 0;
	color: var(--black);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.dcom-investment-head > span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.dcom-group-install-note {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.dcom-group-install-note b {
	color: var(--black);
}

.dcom-investment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.dcom-investment-stat {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 16px;
	background: var(--white);
	display: grid;
	grid-template-rows: 50px auto;
	align-content: start;
	gap: 10px;
}

.dcom-investment-stat.is-highlight {
	border-color: rgba(96, 185, 73, .45);
	background: var(--green-tint);
}

.dcom-investment-value {
	color: var(--green-dark);
	font-size: 26px;
	font-weight: 900;
	line-height: 1.12;
	font-variant-numeric: tabular-nums;
	overflow-wrap: anywhere;
}

/* ---------- Chart ---------- */

.dcom-monthly-graph-wrap {
	margin-top: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(16px, 3vw, 24px);
	background: var(--white);
}

.dcom-monthly-graph-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.dcom-monthly-graph-head h3 {
	margin: 0;
	color: var(--black);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.dcom-chart-legend-row {
	display: flex;
	gap: 14px;
	flex: 0 0 auto;
}

.dcom-legend-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.dcom-legend-chip i {
	width: 10px;
	height: 10px;
	border-radius: 3px;
}

.dcom-legend-chip i.usage {
	background: #5f8f80;
}

.dcom-legend-chip i.solar {
	background: var(--green);
}

.dcom-monthly-graph {
	width: 100%;
	overflow-x: auto;
}

.dcom-monthly-graph svg {
	display: block;
	width: 100%;
	min-width: 680px;
	height: auto;
}

.dcom-chart-grid {
	stroke: #e2eadf;
	stroke-width: 1;
}

.dcom-chart-axis {
	stroke: #b9c6b3;
	stroke-width: 1.2;
}

.dcom-chart-axis-label,
.dcom-chart-month-label {
	fill: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

.dcom-chart-usage {
	fill: #5f8f80;
	opacity: .92;
}

.dcom-monthly-graph.animate .dcom-chart-usage {
	transform-box: fill-box;
	transform-origin: 50% 100%;
	animation: dcomBarGrow .7s var(--ease-out) both;
}

@keyframes dcomBarGrow {
	from {
		transform: scaleY(0);
	}
	to {
		transform: scaleY(1);
	}
}

.dcom-chart-solar-area {
	fill: rgba(96, 185, 73, .2);
}

.dcom-chart-solar-line {
	fill: none;
	stroke: var(--green);
	stroke-width: 3;
	stroke-linejoin: round;
}

.dcom-chart-solar-dot {
	fill: var(--white);
	stroke: var(--green);
	stroke-width: 2.2;
}

.dcom-monthly-graph.animate .dcom-chart-solar-area,
.dcom-monthly-graph.animate .dcom-chart-solar-line,
.dcom-monthly-graph.animate .dcom-chart-solar-dot {
	animation: dcomChartFade .9s ease .25s both;
}

@keyframes dcomChartFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.dcom-chart-month-hit {
	fill: transparent;
	cursor: pointer;
}

.dcom-chart-month-hit:hover + .dcom-chart-month-focus,
.dcom-chart-month-hit.active + .dcom-chart-month-focus {
	opacity: 1;
}

.dcom-chart-month-focus {
	fill: rgba(96, 185, 73, .12);
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s ease;
}

.dcom-month-detail {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.dcom-month-detail div {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px;
	background: var(--off-white);
}

.dcom-month-detail b {
	display: block;
	margin-bottom: 4px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.dcom-month-detail span {
	color: var(--black);
	font-size: 18px;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
}

.dcom-data-source {
	margin: 14px 2px 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
}

.dcom-data-source[hidden] {
	display: none;
}

.dcom-data-source a {
	color: #1d4ed8;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ---------- Choice cards ---------- */

.dcom-flow-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.dcom-flow-choice-grid fieldset {
	min-width: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

.dcom-flow-choice-grid legend {
	padding: 0;
	margin-bottom: 10px;
	color: var(--black);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.dcom-choice-options {
	display: grid;
	gap: 10px;
}

.dcom-choice {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 52px;
	border: 2px solid var(--line);
	border-radius: 12px;
	padding: 12px 14px;
	background: var(--white);
	cursor: pointer;
	transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.dcom-choice:hover {
	border-color: var(--green);
	transform: translateY(-1px);
}

.dcom-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dcom-choice span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--black);
	font-size: 14px;
	font-weight: 700;
}

.dcom-choice span::before {
	content: "";
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	border: 2px solid #b9c6b3;
	border-radius: 999px;
	background: var(--white);
	transition: border-color .16s ease, box-shadow .16s ease;
}

.dcom-choice input:checked + span::before {
	border-color: var(--green);
	box-shadow: inset 0 0 0 4.5px var(--green);
}

.dcom-choice:has(input:checked) {
	border-color: var(--green);
	background: var(--green-tint);
	box-shadow: 0 6px 18px rgba(96, 185, 73, .22);
}

.dcom-choice:has(input:focus-visible) {
	box-shadow: 0 0 0 4px rgba(96, 185, 73, .25);
}

.dcom-field-help {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 400;
}

/* ---------- Panel intake ---------- */

.dcom-panel-intake {
	margin-top: 22px;
}

.dcom-panel-phase {
	display: none;
}

.dcom-panel-phase.active {
	display: block;
	animation: dcomStepIn .35s var(--ease-out) both;
}

.dcom-panel-phase-head {
	margin-bottom: 18px;
}

.dcom-panel-phase-head h3 {
	margin: 0 0 6px;
	color: var(--black);
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-panel-phase-head p {
	max-width: 680px;
	margin: 0;
	color: var(--muted);
}

.dcom-panel-images-head {
	margin: 24px 0 14px;
}

.dcom-panel-images-head h3 {
	margin: 0 0 6px;
	color: var(--black);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-panel-images-head p {
	max-width: 720px;
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.55;
}

.dcom-panel-images-head ul {
	display: grid;
	gap: 4px;
	margin: 10px 0 0;
	padding-left: 20px;
	color: var(--muted);
}

.dcom-panel-images-head li {
	padding-left: 2px;
}

.dcom-panel-step-label {
	margin-bottom: 4px !important;
	color: var(--green-dark) !important;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}


.dcom-example-heading {
	margin: 26px 0 10px;
	color: var(--black);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-example-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.dcom-example-thumb {
	min-width: 0;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--off-white);
	cursor: zoom-in;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
	color: var(--black);
	font: inherit;
	text-align: left;
}

.dcom-example-thumb:hover,
.dcom-example-thumb:focus-visible {
	border-color: var(--green);
	box-shadow: 0 14px 32px rgba(21, 52, 14, .12);
	outline: none;
	transform: translateY(-1px);
}

.dcom-example-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.dcom-example-thumb span {
	display: block;
	padding: 8px 9px;
	color: var(--black);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

body.dcom-lightbox-open {
	overflow: hidden;
}

.dcom-image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: grid;
	place-items: center;
	padding: clamp(16px, 4vw, 42px);
	background: rgba(5, 5, 5, .72);
}

.dcom-image-lightbox[hidden] {
	display: none;
}

.dcom-image-lightbox-panel {
	position: relative;
	width: min(940px, 100%);
	max-height: 92vh;
	border-radius: var(--radius);
	padding: clamp(12px, 2vw, 18px);
	background: var(--white);
	box-shadow: 0 28px 80px rgba(5, 5, 5, .35);
}

.dcom-image-lightbox-panel img {
	display: block;
	width: 100%;
	max-height: 76vh;
	border-radius: 10px;
	object-fit: contain;
	background: var(--off-white);
}

.dcom-image-lightbox-panel p {
	margin: 12px 52px 0;
	color: var(--black);
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.dcom-image-lightbox-close,
.dcom-image-lightbox-prev,
.dcom-image-lightbox-next {
	position: absolute;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .96);
	color: var(--ink);
	box-shadow: 0 6px 16px rgba(5, 5, 5, .2);
	font: inherit;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.dcom-image-lightbox-close {
	right: 18px;
	top: 18px;
	border-color: var(--error);
	background: var(--error);
	color: var(--white);
}

.dcom-image-lightbox-prev,
.dcom-image-lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	font-size: 32px;
}

.dcom-image-lightbox-prev {
	left: 18px;
}

.dcom-image-lightbox-next {
	right: 18px;
}

.dcom-image-lightbox-prev:hover,
.dcom-image-lightbox-prev:focus-visible,
.dcom-image-lightbox-next:hover,
.dcom-image-lightbox-next:focus-visible {
	border-color: var(--green-dark);
	background: var(--green-dark);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(21, 82, 28, .28);
	outline: none;
}

.dcom-image-lightbox-close:hover,
.dcom-image-lightbox-close:focus-visible {
	border-color: #7f1813;
	background: #7f1813;
	color: var(--white);
	box-shadow: 0 8px 20px rgba(165, 29, 24, .28);
	outline: none;
}

.dcom-subpanel-question {
	border: 0;
	margin: 0 0 18px;
	padding: 0;
}

.dcom-subpanel-question legend {
	margin-bottom: 10px;
	color: var(--black);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.dcom-yes-no {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.dcom-yes-no label {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--black);
	font-weight: 800;
	cursor: pointer;
	transition: border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.dcom-yes-no input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dcom-yes-no label:has(input:checked) {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
	box-shadow: 0 6px 18px rgba(96, 185, 73, .28);
}

.dcom-subpanel-builder[hidden] {
	display: none;
}

.dcom-subpanel-list {
	display: grid;
	gap: 12px;
}

.dcom-subpanel-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
	background: var(--off-white);
}

.dcom-add-subpanel {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--green-dark);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.dcom-add-subpanel {
	margin-top: 12px;
	padding: 10px 14px;
}

.dcom-add-subpanel:hover {
	border-color: var(--green);
	background: var(--green-tint);
}

/* ---------- Uploads ---------- */

.dcom-house-documents {
	margin-top: 28px;
	border-top: 1px solid var(--line);
	padding-top: 24px;
}

.dcom-house-documents h3 {
	margin: 0;
	color: var(--black);
	font-size: 17px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-house-documents > p {
	max-width: 760px;
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.dcom-document-dropzone {
	margin-top: 16px;
}

.dcom-dropzone {
	display: grid;
	justify-items: center;
	gap: 4px;
	margin-top: 18px;
	border: 2px dashed #b7cbb1;
	border-radius: var(--radius);
	padding: 26px 18px;
	background: var(--off-white);
	color: var(--green-dark);
	text-align: center;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease;
}

.dcom-dropzone:hover,
.dcom-dropzone:focus-within,
.dcom-dropzone.dragover {
	border-color: var(--green);
	background: var(--green-tint);
}

.dcom-dropzone.is-uploading {
	border-color: var(--green);
	background: var(--green-tint);
	cursor: progress;
}

.dcom-dropzone.dragover {
	border-style: solid;
}

.dcom-dropzone input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.dcom-dropzone b {
	color: var(--black);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.dcom-dropzone > span {
	color: var(--muted);
	font-size: 13px;
}

.dcom-file-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.dcom-file-list:empty {
	display: none;
}

.dcom-file-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 6px 5px 5px;
	background: var(--white);
	animation: dcomChipIn .25s var(--ease-out) both;
}

@keyframes dcomChipIn {
	from {
		opacity: 0;
		transform: scale(.92);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.dcom-file-chip img {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	object-fit: cover;
}

.dcom-file-type-icon {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 5px;
	background: #e7f3e2;
	color: var(--green-dark);
	font-size: 8px;
	font-weight: 900;
	line-height: 1;
}

.dcom-file-type-icon.is-pdf {
	background: #f9e4e1;
	color: #9d2f27;
}

.dcom-file-type-icon.is-document {
	background: #e5edf9;
	color: #2d5a98;
}

.dcom-file-type-icon.is-spreadsheet {
	background: #e1f3e7;
	color: #247247;
}

.dcom-file-type-icon.is-presentation {
	background: #f9eddd;
	color: #9a5b17;
}

.dcom-file-type-icon.is-text {
	background: #edf0ed;
	color: #536353;
}

.dcom-file-chip .dcom-file-name {
	max-width: 180px;
	overflow: hidden;
	color: var(--black);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.dcom-file-chip button {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 0;
	border-radius: 999px;
	background: #edf3ea;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

.dcom-file-chip button:hover {
	background: var(--error);
	color: var(--white);
}

/* ---------- Review ---------- */

.dcom-flow-review {
	display: grid;
	gap: 14px;
	margin-top: 8px;
}

.dcom-review-group {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
}

.dcom-review-group.has-missing-required {
	border-color: rgba(179, 38, 30, .45);
	background: #fff7f6;
}

.dcom-review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	background: var(--off-white);
	border-bottom: 1px solid var(--line);
}

.dcom-review-group.has-missing-required .dcom-review-head {
	background: #fff0ee;
	border-bottom-color: rgba(179, 38, 30, .28);
}

.dcom-review-group.has-missing-required .dcom-review-head h3 {
	color: var(--error);
	cursor: pointer;
}

.dcom-review-head h3 {
	margin: 0;
	color: var(--black);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.dcom-review-edit {
	border: 0;
	border-radius: 999px;
	padding: 5px 14px;
	background: transparent;
	color: var(--green-dark);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background .15s ease;
}

.dcom-review-edit:hover {
	background: var(--green-tint);
}

.dcom-review-group.has-missing-required .dcom-review-edit {
	color: var(--error);
}

.dcom-review-group.has-missing-required .dcom-review-edit:hover {
	background: rgba(179, 38, 30, .10);
}

.dcom-review-rows {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	padding: 14px 16px;
}

.dcom-review-rows b {
	display: block;
	margin-bottom: 2px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.dcom-review-rows span {
	color: var(--black);
	font-size: 15px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.dcom-review-rows span.empty {
	color: #9aa596;
	font-weight: 500;
}

.dcom-review-rows .is-missing-required b,
.dcom-review-rows .is-missing-required span,
.dcom-review-rows .is-missing-required span.empty {
	color: var(--error);
	font-weight: 900;
}

.dcom-review-rows .is-missing-required {
	cursor: pointer;
}

/* ---------- Errors & actions ---------- */

.dcom-step-error {
	margin: 18px 0 0;
	color: var(--error);
	font-size: 14px;
	font-weight: 700;
}

.dcom-field-error {
	margin: 0;
	padding: 7px 9px;
	border-left: 3px solid var(--error);
	border-radius: 4px;
	background: #fff1ef;
	color: var(--error);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.dcom-field-error + .dcom-dropzone {
	margin-top: 8px;
}

.dcom-step-error.shake,
.dcom-address-status.shake,
.dcom-address-field.shake,
.dcom-required-field.shake {
	animation: dcomShake .4s ease;
}

@keyframes dcomShake {
	20% { transform: translateX(-5px); }
	40% { transform: translateX(5px); }
	60% { transform: translateX(-3px); }
	80% { transform: translateX(3px); }
}

.dcom-flow-note {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.dcom-flow-actions {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.dcom-flow-step[data-step="0"].active ~ .dcom-flow-actions {
	margin-top: 12px;
}

.dcom-flow-actions.has-submit-tooltip::after {
	content: attr(data-submit-tooltip);
	position: absolute;
	right: 0;
	bottom: calc(100% + 10px);
	width: min(320px, 80vw);
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--black);
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity .15s ease, transform .15s ease;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
	z-index: 20;
}

.dcom-flow-actions.has-submit-tooltip:hover::after,
.dcom-flow-actions.has-submit-tooltip:focus-within::after {
	opacity: 1;
	transform: translateY(0);
}

.dcom-flow-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 128px;
	min-height: 50px;
	border: 0;
	border-radius: 999px;
	padding: 13px 26px;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.dcom-flow-actions .primary {
	background: var(--green);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(96, 185, 73, .35);
}

.dcom-flow-actions .primary:hover {
	background: var(--green-dark);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(47, 111, 36, .3);
}

.dcom-flow-actions .primary:active {
	transform: translateY(0);
}

.dcom-flow-actions .primary.is-loading,
.dcom-flow-actions .primary:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.dcom-flow-actions .primary:disabled:not(.is-loading) {
	background: #aeb8aa;
	color: var(--white);
	box-shadow: none;
	cursor: not-allowed;
}

.dcom-flow-actions .primary.is-loading::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .42);
	border-top-color: var(--white);
	border-radius: 999px;
	animation: dcomSpin .75s linear infinite;
}

.dcom-flow-actions .primary svg {
	transition: transform .18s ease;
}

.dcom-flow-actions .primary:hover svg {
	transform: translateX(3px);
}

.dcom-flow-actions .secondary {
	background: transparent;
	border: 1px solid var(--line);
	color: var(--muted);
}

.dcom-flow-actions .secondary:hover {
	border-color: var(--black);
	color: var(--black);
}

.dcom-submit-confirmation {
	display: grid;
	gap: 16px;
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
}

.dcom-submit-confirmation h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-submit-confirmation p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
}

.dcom-submit-confirmation label {
	display: grid;
	gap: 7px;
	color: var(--black);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-submit-confirmation input {
	width: 100%;
	border: 1px solid #cfdcca;
	border-radius: 10px;
	padding: 12px 14px;
	background: var(--off-white);
	color: var(--black);
	font: inherit;
	font-size: 14px;
	text-transform: none;
}

.dcom-copy-link {
	display: flex;
	align-items: stretch;
	max-width: 760px;
	transition: filter .18s ease;
}

.dcom-copy-link input {
	min-width: 0;
	border-radius: 10px 0 0 10px;
	transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.dcom-copy-link button {
	display: grid;
	width: 52px;
	min-width: 52px;
	place-items: center;
	border: 1px solid var(--green);
	border-radius: 0 10px 10px 0;
	background: var(--green);
	color: var(--white);
	cursor: pointer;
	transition: background .18s ease, transform .18s ease;
}

.dcom-copy-link button:hover {
	background: var(--green-dark);
}

.dcom-copy-link button:active {
	transform: scale(.96);
}

.dcom-copy-link svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.dcom-copy-link.is-copied input {
	border-color: var(--green);
	background: #e9f7e4;
	color: #24751b;
	font-weight: 800;
}

.dcom-copy-link.is-copied button {
	background: #24751b;
	border-color: #24751b;
}

.dcom-terminal-page,
.dcom-submitted-review {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(36px, 7vw, 80px) clamp(20px, 5vw, 64px);
}

.dcom-terminal-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 8px;
}

.dcom-start-link {
	width: fit-content;
	border: 2px solid var(--green);
	border-radius: 999px;
	padding: 11px 22px;
	color: var(--green-dark);
	font-weight: 900;
	text-decoration: none;
}

.dcom-start-link:hover {
	background: #e9f7e4;
}

.dcom-submitted-review {
	display: grid;
	gap: 18px;
	color: var(--black);
}

.dcom-submitted-review h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-submitted-review > p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
}

.dcom-readonly-review {
	margin: 4px 0;
}

.dcom-return-link {
	width: fit-content;
	border-radius: 999px;
	padding: 13px 24px;
	background: var(--green);
	color: var(--white);
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(96, 185, 73, .35);
}

.dcom-return-link:hover {
	background: var(--green-dark);
}

@media (max-width: 640px) {
	.dcom-terminal-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.dcom-terminal-actions a {
		text-align: center;
	}
}

.dcom-toast {
	position: fixed;
	right: clamp(12px, 3vw, 28px);
	bottom: clamp(12px, 3vw, 28px);
	z-index: 20;
	width: min(430px, calc(100vw - 24px));
	border: 1px solid var(--line);
	border-left: 5px solid var(--error);
	border-radius: var(--radius);
	padding: 16px;
	background: var(--white);
	box-shadow: 0 22px 54px rgba(5, 5, 5, .22);
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease;
}

.dcom-toast.active {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.dcom-toast.success {
	border-left-color: var(--green);
}

.dcom-toast-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.dcom-toast-head b {
	color: var(--black);
	font-size: 15px;
	font-weight: 900;
}

.dcom-toast-head button {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border: 0;
	border-radius: 999px;
	background: #edf3ea;
	color: var(--muted);
	font: inherit;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.dcom-toast p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.dcom-toast ul {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.dcom-toast li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid #edf3ea;
	padding-top: 8px;
	color: var(--black);
	font-size: 14px;
	font-weight: 700;
}

.dcom-toast li button {
	flex: 0 0 auto;
	border: 1px solid rgba(96, 185, 73, .5);
	border-radius: 999px;
	padding: 6px 12px;
	background: var(--green-tint);
	color: var(--green-dark);
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.dcom-toast li button:hover {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
}

.dcom-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 30;
	display: grid;
	place-items: center;
	padding: 18px;
	background: rgba(5, 5, 5, .38);
}

.dcom-modal {
	width: min(560px, 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	background: var(--white);
	box-shadow: 0 28px 70px rgba(5, 5, 5, .24);
}

.dcom-modal-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.dcom-modal h3 {
	margin: 0;
	color: var(--black);
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
}

.dcom-modal p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 15px;
}

.dcom-modal-close {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border: 0;
	border-radius: 999px;
	background: #edf3ea;
	color: var(--muted);
	font: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.dcom-modal-address-list {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.dcom-modal-address-list button {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px 14px;
	background: var(--white);
	color: var(--black);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.dcom-modal-address-list button:hover {
	border-color: var(--green);
	background: var(--green-tint);
}

.dcom-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}

.dcom-modal-actions button {
	min-height: 46px;
	border-radius: 999px;
	padding: 11px 18px;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.dcom-modal-actions .primary {
	border: 0;
	background: var(--green);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(96, 185, 73, .28);
}

.dcom-modal-actions .secondary {
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--muted);
}

/* ---------- Motion & mobile ---------- */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

@media (max-width: 700px) {
	.dcom-flow-shell {
		padding: 12px;
	}

	.dcom-flow-form {
		border-radius: 16px;
		padding: 22px 18px;
	}

	.dcom-flow-brand {
		margin: -22px -18px 24px;
		padding: 18px;
		border-radius: 16px 16px 0 0;
	}

	.dcom-flow-progress {
		grid-template-columns: repeat(5, minmax(34px, 1fr));
		gap: 6px;
	}

	.dcom-flow-progress button {
		padding: 7px 4px;
	}

	.dcom-flow-progress button span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.dcom-flow-grid,
	.dcom-flow-choice-grid,
	.dcom-estimate-grid,
	.dcom-investment-grid,
	.dcom-review-rows {
		grid-template-columns: 1fr;
	}

	.dcom-estimate-plan-bar,
	.dcom-investment-head {
		align-items: stretch;
		flex-direction: column;
	}

	.dcom-plan-toggle {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-example-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-yes-no {
		grid-template-columns: 1fr;
	}

	.dcom-add-subpanel {
		width: 100%;
	}

	.dcom-month-detail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-monthly-graph-head {
		flex-direction: column;
		gap: 8px;
	}

	.dcom-flow-grid .span-2 {
		grid-column: auto;
	}

	.dcom-stat {
		min-height: 0;
	}

	.dcom-flow-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.dcom-flow-actions button {
		width: 100%;
	}

	.dcom-toast {
		right: 12px;
		bottom: 12px;
	}
}

/* ==========================================================================
   Product interface refresh
   A calm, accessible application shell built around speed and clear progress.
   ========================================================================== */

:root {
	--green: #237b2b;
	--green-soft: #dff2dc;
	--green-dark: #15521c;
	--green-tint: #eff8ed;
	--black: #172019;
	--ink: #172019;
	--white: #ffffff;
	--off-white: #f3f6f2;
	--surface-subtle: #f7f9f6;
	--surface-strong: #e8eee7;
	--line: #d2dcd1;
	--line-strong: #849386;
	--muted: #59665c;
	--muted-strong: #3d4a40;
	--focus: #165fc7;
	--solar-club-blue: #0786a0;
	--error: #a51d18;
	--warning: #8a5a0a;
	--warning-tint: #fff7df;
	--shadow: 0 24px 70px rgba(23, 45, 27, .12);
	--shadow-soft: 0 10px 30px rgba(23, 45, 27, .08);
	--radius: 16px;
	--radius-large: 24px;
	--ease-out: cubic-bezier(.22, 1, .36, 1);
}

html {
	background: var(--off-white);
	scroll-padding-top: 24px;
}

.dcom-flow-body {
	min-width: 280px;
	background: var(--off-white);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.dcom-flow-body button,
.dcom-flow-body input,
.dcom-flow-body select,
.dcom-flow-body textarea {
	font: inherit;
}

.dcom-flow-body ::selection {
	background: #cde9c8;
	color: var(--ink);
}

.dcom-flow-shell {
	position: relative;
	min-height: 100svh;
	padding: clamp(16px, 3vw, 42px);
	background:
		radial-gradient(circle at 12% 0%, rgba(87, 163, 77, .10), transparent 30rem),
		linear-gradient(180deg, #f6f9f5 0%, var(--off-white) 62%);
}

.dcom-flow-main {
	width: min(1220px, 100%);
	margin: 0 auto;
}

.dcom-flow-form {
	width: 100%;
	border: 1px solid rgba(88, 109, 91, .22);
	border-radius: 26px;
	overflow: hidden;
	padding: 0;
	background: var(--white);
	box-shadow: var(--shadow);
}

.dcom-flow-brand {
	min-height: 82px;
	margin: 0;
	border: 0;
	border-bottom: 3px solid #68c64d;
	border-radius: 25px 25px 0 0;
	padding: 18px clamp(22px, 3vw, 36px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: #0d120e;
}

.dcom-brand-lockup {
	display: flex;
	align-items: center;
	min-width: 0;
}

.dcom-flow-brand img {
	width: min(172px, 46vw);
	max-height: 43px;
	object-fit: contain;
	object-position: left center;
}

.dcom-brand-context {
	display: grid;
	justify-items: end;
	color: #dce5dc;
	font-size: 11px;
	line-height: 1.25;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.dcom-brand-context strong {
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	text-transform: none;
}

.dcom-flow-workspace {
	min-width: 0;
}

.dcom-flow-workspace.is-application-active {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
}

.dcom-flow-content {
	min-width: 0;
	padding: clamp(30px, 4.2vw, 58px);
}

.dcom-flow-workspace.is-application-active .dcom-flow-content {
	border-left: 1px solid var(--line);
}

.dcom-flow-step:not(.dcom-estimate-step) {
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
}

.dcom-flow-step.dcom-long-step {
	max-width: 900px;
}

.dcom-flow-step[data-step="6"] {
	max-width: 860px;
}

.dcom-step-hero {
	width: min(720px, 100%);
	margin: 0 auto;
	padding-block: clamp(18px, 5vw, 64px) clamp(6px, 2vw, 22px);
	text-align: left;
}

.dcom-flow-step h1,
.dcom-flow-step h2 {
	max-width: 18ch;
	margin: 0 0 12px;
	color: var(--ink);
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -.035em;
	text-transform: none;
}

.dcom-flow-step h1:focus,
.dcom-flow-step h2:focus,
.dcom-submit-confirmation h1:focus {
	outline: none;
}

.dcom-flow-step h3 {
	margin: 30px 0 10px;
	color: var(--ink);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.015em;
	text-transform: none;
}

.dcom-flow-lede {
	max-width: 66ch;
	margin: 0 0 30px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.dcom-step-hero .dcom-flow-lede {
	max-width: 58ch;
	margin-bottom: 26px;
	font-size: 18px;
}

/* Progress and save state */

.dcom-flow-progress-wrap {
	position: sticky;
	top: 20px;
	align-self: start;
	margin: 0;
	border: 0;
	padding: 38px 24px 32px;
	background: var(--surface-subtle);
}

.dcom-progress-summary {
	display: grid;
	gap: 18px;
	margin-bottom: 20px;
}

.dcom-progress-summary > div {
	display: grid;
	gap: 3px;
}

.dcom-progress-summary > div > span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.dcom-progress-summary strong {
	color: var(--ink);
	font-size: 18px;
	line-height: 1.25;
}

.dcom-save-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.dcom-save-status i {
	position: relative;
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-radius: 50%;
	background: #89968b;
}

.dcom-save-status.is-saving i {
	border: 2px solid #a8b2aa;
	border-top-color: var(--green-dark);
	background: transparent;
	animation: dcomSpin .8s linear infinite;
}

.dcom-save-status.is-saved i {
	background: var(--green);
}

.dcom-save-status.is-local i {
	background: #b47613;
}

.dcom-flow-meter {
	height: 7px;
	margin: 0 0 22px;
	border-radius: 999px;
	background: #dce5db;
}

.dcom-flow-meter span {
	background: var(--green-dark);
	transition: width .35s var(--ease-out);
}

.dcom-flow-progress {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dcom-flow-progress li {
	margin: 0;
	padding: 0;
}

.dcom-flow-progress button {
	width: 100%;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 7px 8px;
	justify-content: flex-start;
	gap: 11px;
	background: transparent;
	color: var(--muted-strong);
	font-size: 13px;
	font-weight: 650;
	text-align: left;
	box-shadow: none;
}

.dcom-flow-progress i {
	width: 30px;
	height: 30px;
	flex-basis: 30px;
	border: 1px solid #aab6ab;
	background: var(--white);
	color: var(--muted-strong);
	font-size: 12px;
	font-weight: 750;
}

.dcom-flow-progress button:not(:disabled):hover {
	border-color: #c3d0c3;
	background: #edf3ec;
	color: var(--ink);
}

.dcom-flow-progress button.active {
	border-color: #c6dbc3;
	background: #e6f3e3;
	color: var(--green-dark);
	box-shadow: none;
}

.dcom-flow-progress button.active i {
	border-color: var(--green-dark);
	background: var(--green-dark);
	color: var(--white);
}

.dcom-flow-progress button.complete {
	border-color: transparent;
	background: transparent;
	color: var(--muted-strong);
}

.dcom-flow-progress button.complete i {
	border-color: var(--green);
	background: var(--green);
}

.dcom-flow-progress button.after-current {
	border-color: transparent;
	background: transparent;
	opacity: .65;
}

.dcom-flow-progress button.after-current:not(:disabled),
.dcom-flow-progress button.after-current:not(:disabled):hover {
	color: var(--ink);
	opacity: 1;
}

.dcom-flow-progress button:disabled {
	opacity: .5;
}

.dcom-flow-progress button.status-incomplete,
.dcom-flow-progress button.status-missing {
	background: #fff8ea;
}

.dcom-flow-progress button.status-missing {
	background: #fff2f0;
}

/* Errors, focus, and field foundations */

:where(.dcom-flow-body button, .dcom-flow-body input, .dcom-flow-body select, .dcom-flow-body textarea, .dcom-flow-body a, .dcom-flow-body summary):focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
}

.dcom-step-error {
	max-width: 860px;
	margin: 0 auto 22px;
	border: 1px solid #d79691;
	border-left: 5px solid var(--error);
	border-radius: 12px;
	padding: 13px 16px;
	background: #fff5f4;
	color: #721510;
	font-size: 14px;
	font-weight: 650;
}

.dcom-requirements-notice {
	margin: 0;
	border: 0;
	border-bottom: 1px solid #dfaaa6;
	border-radius: 0;
	padding: 15px clamp(22px, 4vw, 48px);
	background: #fff2f1;
	color: #651410;
}

.dcom-requirements-notice b {
	margin: 0 0 2px;
	color: inherit;
}

.dcom-requirements-notice p {
	margin: 0;
}

.dcom-flow-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 22px;
}

.dcom-contact-primary {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcom-contact-address {
	grid-template-columns: minmax(0, 1.7fr) minmax(0, .85fr) minmax(0, .8fr);
}

.dcom-flow-grid label,
.dcom-rate-field {
	gap: 8px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 650;
	letter-spacing: 0;
	text-transform: none;
}

.dcom-label-text {
	gap: 8px;
}

.dcom-required-badge {
	border-radius: 5px;
	padding: 2px 6px;
	background: #f2e7e6;
	color: #7f1813;
	font-size: 10px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.dcom-flow-body input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.dcom-flow-body select,
.dcom-flow-body textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--line-strong);
	border-radius: 11px;
	padding: 12px 14px;
	background: var(--white);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.35;
	box-shadow: 0 1px 2px rgba(23, 32, 25, .04);
	transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.dcom-flow-body input::placeholder,
.dcom-flow-body textarea::placeholder {
	color: #6c796e;
	opacity: 1;
}

.dcom-flow-body input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):hover,
.dcom-flow-body select:hover,
.dcom-flow-body textarea:hover {
	border-color: #536256;
}

.dcom-flow-body input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
.dcom-flow-body select:focus,
.dcom-flow-body textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(96, 185, 73, .2), 0 1px 2px rgba(23, 32, 25, .04);
}

.dcom-flow-body input[aria-invalid="true"],
.dcom-flow-body select[aria-invalid="true"],
.dcom-flow-body textarea[aria-invalid="true"] {
	border-color: var(--error);
	background: #fffafa;
	box-shadow: 0 0 0 1px var(--error);
}

.dcom-contact-subhead {
	margin-top: 38px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.dcom-flow-actions {
	max-width: 760px;
	margin: 42px auto 0;
	border-top: 1px solid var(--line);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.dcom-flow-content:has(.dcom-estimate-step.active) .dcom-flow-actions {
	max-width: none;
}

.dcom-flow-content:has(.dcom-long-step.active) .dcom-flow-actions {
	max-width: 900px;
}

.dcom-flow-content:has(.dcom-flow-step[data-step="6"].active) .dcom-flow-actions {
	max-width: 860px;
}

.dcom-flow-actions button,
.dcom-modal-actions button,
.dcom-return-link,
.dcom-start-link {
	min-height: 48px;
	border-radius: 11px;
	padding: 12px 20px;
	gap: 9px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.dcom-flow-actions .primary,
.dcom-modal-actions .primary,
.dcom-return-link {
	border: 1px solid var(--green-dark);
	background: var(--green-dark);
	color: var(--white);
	box-shadow: 0 8px 18px rgba(21, 82, 28, .18);
}

.dcom-flow-actions .primary:hover,
.dcom-modal-actions .primary:hover,
.dcom-return-link:hover {
	background: #0d4214;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(21, 82, 28, .24);
}

.dcom-flow-actions .secondary,
.dcom-modal-actions .secondary {
	border: 1px solid #a9b6aa;
	background: var(--white);
	color: var(--muted-strong);
	box-shadow: none;
}

.dcom-flow-actions .secondary:hover,
.dcom-modal-actions .secondary:hover {
	border-color: #657367;
	background: var(--surface-subtle);
	color: var(--ink);
}

.dcom-flow-actions button:active,
.dcom-modal-actions button:active {
	transform: translateY(0);
}

.dcom-flow-actions button:disabled {
	cursor: wait;
	opacity: .62;
	transform: none;
}

.dcom-flow-form:not(.is-application-active) .dcom-flow-actions {
	width: min(720px, 100%);
}

.dcom-flow-form:not(.is-application-active) .dcom-flow-actions .primary {
	margin-left: auto;
}

@keyframes dcomSpin {
	to {
		transform: rotate(360deg);
	}
}

/* Address search and saved applications */

.dcom-address-label {
	display: block;
	margin: 0 0 8px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
}

.dcom-address-field {
	position: relative;
	z-index: 4;
}


.dcom-address-entry-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: end;
}

.dcom-address-action-slot .dcom-flow-actions {
	width: auto;
	margin: 0;
	border: 0;
	padding: 0;
	align-items: stretch;
	justify-content: flex-start;
}

.dcom-address-action-slot .dcom-flow-actions .secondary {
	display: none !important;
}

.dcom-address-action-slot .dcom-flow-actions .primary {
	margin-left: 0 !important;
	min-height: 60px;
	white-space: nowrap;
}

@media (max-width: 760px) {
	.dcom-address-entry-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.dcom-address-action-slot .dcom-flow-actions {
		width: 100%;
		margin-top: 16px;
	}

	.dcom-address-action-slot .dcom-flow-actions .primary {
		width: 100%;
	}
}

.dcom-address-suggestions {
	top: calc(100% + 8px);
	max-height: min(340px, 48vh);
	border-color: #aebaae;
	border-radius: 13px;
	padding: 5px;
	box-shadow: 0 22px 55px rgba(20, 35, 23, .18);
}

.dcom-address-suggestions button {
	min-height: 48px;
	border: 0;
	border-radius: 8px;
	padding: 12px 14px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 550;
}

.dcom-address-suggestions button + button {
	border-top: 1px solid #edf1ec;
}

.dcom-address-suggestions button:hover,
.dcom-address-suggestions button:focus,
.dcom-address-suggestions button.kbd-active {
	background: #e9f3e7;
}

.dcom-address-suggestions mark {
	border-radius: 2px;
	padding: 0;
	background: #d5ebd0;
	color: var(--green-dark);
	font-weight: 750;
}

/* Estimate hierarchy and plan comparison */

.dcom-estimate-step > h1 {
	max-width: none;
}

.dcom-estimate-step > .dcom-flow-lede {
	max-width: 760px;
}

.dcom-estimate-plan-bar {
	margin: 0 0 18px;
	border: 1px solid var(--line);
	border-radius: 13px;
	padding: 10px 11px 10px 16px;
	background: var(--surface-subtle);
}

.dcom-estimate-plan-bar > span {
	color: var(--muted-strong);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.dcom-plan-toggle {
	grid-template-columns: max-content max-content;
	gap: 3px;
	border-color: #b7c3b8;
	border-radius: 9px;
	padding: 3px;
}

.dcom-plan-rate-options {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 3px;
	isolation: isolate;
}

.dcom-plan-rate-options::before {
	position: absolute;
	inset: 0 calc(50% + 1.5px) 0 0;
	z-index: 0;
	border-radius: 7px;
	background: var(--green-dark);
	box-shadow: 0 3px 9px rgba(21, 82, 28, .18);
	content: "";
	transition: transform .22s var(--ease-out);
}

.dcom-plan-rate-options[data-active-plan="solar-club"]::before {
	transform: translateX(calc(100% + 3px));
}

.dcom-plan-rate-options button {
	position: relative;
	z-index: 1;
	background: transparent !important;
	box-shadow: none !important;
	transition: color .16s ease;
}

.dcom-plan-toggle button {
	min-height: 42px;
	border-radius: 7px;
	padding: 9px 14px;
	color: var(--muted-strong);
	font-size: 13px;
	font-weight: 700;
}

.dcom-plan-toggle button.active {
	color: var(--white);
}

.dcom-estimate-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
}

.dcom-stat {
	min-height: 154px;
	border-color: #c8d3c8;
	border-radius: 15px;
	padding: 20px;
	grid-template-rows: auto auto;
	gap: 14px;
	background: var(--surface-subtle);
	box-shadow: 0 1px 1px rgba(23, 45, 27, .03);
}

.dcom-stat.is-highlight {
	border-color: #a9cea5;
	background: #edf7eb;
}

.dcom-stat.is-credit {
	border-color: #7cba76;
	background: #e6f5e3;
	box-shadow: inset 4px 0 0 var(--green);
}

.dcom-stat-head {
	min-height: 44px;
	align-items: flex-start;
}

.dcom-stat-head b {
	max-width: 30ch;
	color: var(--muted-strong);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.dcom-info-button {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	margin: -7px -7px 0 0;
	border-color: #95b393;
	background: rgba(255, 255, 255, .75);
	color: var(--green-dark);
	font-size: 14px;
}

.dcom-info-button:hover,
.dcom-info-button[aria-expanded="true"] {
	border-color: var(--green-dark);
	background: var(--green-dark);
	color: var(--white);
}

.dcom-solar-club-link {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	align-self: center;
	min-height: 36px;
	border: 2px solid var(--solar-club-blue);
	border-radius: 7px;
	padding: 5px 8px 5px 10px;
	background: var(--white);
	color: var(--solar-club-blue);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.05;
	text-decoration: none;
	transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.dcom-solar-club-link:hover {
	border-color: #056f85;
	background: #e9f8fb;
	color: #056f85;
}

.dcom-solar-club-link:focus-visible {
	outline: 3px solid rgba(7, 134, 160, .28);
	outline-offset: 2px;
}

.dcom-solar-club-link svg {
	width: 21px;
	height: 21px;
	margin-left: 6px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.dcom-stat-value {
	color: var(--ink);
	font-size: clamp(28px, 3.3vw, 39px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.dcom-stat.is-highlight .dcom-stat-value,
.dcom-stat.is-credit .dcom-stat-value {
	color: var(--green-dark);
}

.dcom-metric-info {
	margin-top: 2px;
	border-top-color: #c8d5c7;
	color: var(--muted);
	line-height: 1.5;
}

.dcom-formula-line {
	color: var(--muted-strong);
	font-weight: 550;
}

.dcom-estimate-step > .dcom-flow-grid {
	max-width: 390px;
	margin: 20px 0 0;
}

.dcom-rate-input i {
	right: 15px;
	color: var(--muted-strong);
	font-size: 13px;
}

.dcom-investment-estimate {
	margin-top: 30px;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 22px;
	background: var(--surface-subtle);
}

.dcom-investment-head {
	margin-bottom: 8px;
}

.dcom-investment-head h3,
.dcom-monthly-graph-head h3 {
	margin: 0;
	color: var(--ink);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -.015em;
	text-transform: none;
}

.dcom-investment-head > span {
	border-radius: 999px;
	padding: 5px 9px;
	background: var(--surface-strong);
	color: var(--muted-strong);
	font-weight: 650;
}

.dcom-group-install-note {
	max-width: 78ch;
	margin-bottom: 18px;
	color: var(--muted);
}

.dcom-investment-grid {
	gap: 14px;
}

.dcom-investment-stat {
	min-height: 128px;
	border-color: #c9d3c9;
	border-radius: 12px;
	padding: 17px;
	grid-template-rows: auto auto;
	gap: 12px;
	background: var(--white);
}

.dcom-investment-value {
	color: var(--ink);
	font-size: clamp(24px, 2.8vw, 32px);
	font-weight: 750;
	letter-spacing: -.025em;
}

/* Data visualization */

.dcom-monthly-graph-wrap {
	margin-top: 22px;
	border-color: #c7d2c7;
	border-radius: 16px;
	padding: clamp(18px, 2.6vw, 26px);
	box-shadow: var(--shadow-soft);
}

.dcom-monthly-graph-head {
	align-items: flex-start;
	margin-bottom: 12px;
}

.dcom-chart-takeaway {
	max-width: 72ch;
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.dcom-chart-legend-row {
	gap: 12px;
	padding-top: 3px;
}

.dcom-legend-chip {
	color: var(--muted-strong);
	font-weight: 650;
}

.dcom-legend-chip i.usage {
	background: #496f66;
}

.dcom-legend-chip i.solar {
	background: #2f9636;
}

.dcom-chart-scroll-hint {
	display: none;
	margin: 4px 0 10px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
}

.dcom-monthly-graph {
	border-radius: 10px;
	scrollbar-color: #a7b5a8 transparent;
	scrollbar-width: thin;
}

.dcom-monthly-graph:focus-visible {
	outline-offset: 5px;
}

.dcom-monthly-graph svg {
	min-width: 660px;
}

.dcom-chart-grid {
	stroke: #dfe6de;
}

.dcom-chart-axis {
	stroke: #909d92;
}

.dcom-chart-axis-label,
.dcom-chart-month-label {
	fill: #526055;
}

.dcom-chart-usage {
	fill: #496f66;
}

.dcom-chart-solar-area {
	fill: rgba(47, 150, 54, .15);
}

.dcom-chart-solar-line {
	stroke: #2f9636;
}

.dcom-chart-solar-dot {
	stroke: #237b2b;
}

.dcom-chart-month-hit:focus {
	outline: none;
}

.dcom-chart-month-hit:focus + .dcom-chart-month-focus,
.dcom-chart-month-hit.active + .dcom-chart-month-focus {
	opacity: 1;
	fill: rgba(22, 95, 199, .10);
	stroke: var(--focus);
	stroke-width: 1.5;
}

.dcom-month-detail {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.dcom-month-detail div {
	border-color: #d2dbd2;
	border-radius: 10px;
	background: var(--surface-subtle);
}

.dcom-month-detail b {
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
}

.dcom-month-detail span {
	color: var(--ink);
	font-size: 17px;
	font-weight: 700;
}

.dcom-chart-data {
	margin-top: 14px;
	border-top: 1px solid var(--line);
	padding-top: 12px;
}

.dcom-chart-data summary {
	width: fit-content;
	border-radius: 7px;
	padding: 5px 2px;
	color: var(--green-dark);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.dcom-chart-table-scroll {
	margin-top: 10px;
	overflow-x: auto;
}

.dcom-chart-data table {
	width: 100%;
	min-width: 580px;
	border-collapse: collapse;
	font-size: 13px;
}

.dcom-chart-data th,
.dcom-chart-data td {
	border-bottom: 1px solid var(--line);
	padding: 9px 10px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.dcom-chart-data th {
	background: var(--surface-subtle);
	color: var(--muted-strong);
	font-weight: 700;
}

.dcom-chart-data th:first-child,
.dcom-chart-data td:first-child {
	text-align: left;
}

/* House, panel, upload, and choice controls */

.dcom-house-documents,
.dcom-panel-intake {
	margin-top: 30px;
	border-top: 1px solid var(--line);
	padding-top: 26px;
}

.dcom-house-documents h3,
.dcom-panel-images-head h3,
.dcom-example-heading {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -.01em;
	text-transform: none;
}

.dcom-house-documents > p,
.dcom-panel-phase-head p,
.dcom-panel-images-head p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}

.dcom-panel-phase-head {
	margin-bottom: 24px;
	border: 0;
	padding: 0;
	background: transparent;
}

.dcom-panel-phase-head h3 {
	font-size: 20px;
	font-weight: 700;
	text-transform: none;
}

.dcom-panel-images-head {
	margin-top: 32px;
	border-radius: 14px;
	padding: 20px 22px;
	background: var(--surface-subtle);
}

.dcom-panel-images-head ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	margin: 15px 0 0;
	padding-left: 20px;
	color: var(--muted-strong);
}

.dcom-example-heading {
	margin-top: 26px;
}

.dcom-example-strip {
	gap: 12px;
	margin-top: 12px;
}

.dcom-example-thumb {
	min-height: 150px;
	border-color: #bac6bb;
	border-radius: 12px;
	background: var(--surface-subtle);
	box-shadow: none;
}

.dcom-example-thumb:hover,
.dcom-example-thumb:focus-visible {
	border-color: var(--green-dark);
	box-shadow: 0 8px 22px rgba(23, 45, 27, .11);
	transform: translateY(-2px);
}

.dcom-example-thumb img {
	aspect-ratio: 4 / 3;
}

.dcom-example-thumb span {
	padding: 9px 10px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 650;
	text-transform: none;
}

.dcom-subpanel-question {
	margin-top: 22px;
	border: 0;
	padding: 0;
}

.dcom-subpanel-question legend {
	margin-bottom: 10px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
}

.dcom-yes-no {
	max-width: 420px;
	gap: 12px;
}

.dcom-yes-no label {
	min-height: 54px;
	border: 1px solid var(--line-strong);
	border-radius: 11px;
	background: var(--white);
	font-size: 15px;
	font-weight: 650;
}

.dcom-yes-no label:has(input:checked) {
	border-color: var(--green-dark);
	background: var(--green-tint);
	color: var(--green-dark);
	box-shadow: inset 0 0 0 1px var(--green-dark);
}

.dcom-subpanel-builder {
	margin-top: 30px;
	padding-top: 24px;
}

.dcom-subpanel-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	align-items: end;
	gap: 12px;
	border-color: #becabe;
	border-radius: 14px;
	padding: 12px;
	background: var(--surface-subtle);
}

.dcom-remove-subpanel {
	min-height: 52px;
	border: 1px solid rgba(165, 29, 24, .55);
	border-radius: 10px;
	padding: 10px 14px;
	background: var(--white);
	color: var(--error);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.dcom-remove-subpanel:hover,
.dcom-remove-subpanel:focus-visible {
	border-color: var(--error);
	background: #fff0ee;
	color: var(--error);
	outline: none;
}

.dcom-add-subpanel {
	min-height: 46px;
	border: 1px solid #8ea08f;
	border-radius: 10px;
	padding: 10px 16px;
	background: var(--white);
	color: var(--green-dark);
	font-size: 14px;
	font-weight: 700;
}

.dcom-dropzone {
	position: relative;
	min-height: 154px;
	margin-top: 20px;
	border: 2px dashed #879a88;
	border-radius: 14px;
	padding: 24px 18px;
	gap: 5px;
	background: var(--surface-subtle);
	color: var(--green-dark);
}

.dcom-dropzone:hover,
.dcom-dropzone:focus-within,
.dcom-dropzone.dragover {
	border-color: var(--green-dark);
	background: var(--green-tint);
	box-shadow: inset 0 0 0 1px rgba(21, 82, 28, .14);
}

.dcom-dropzone b {
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.dcom-dropzone > span {
	color: var(--muted-strong);
	font-size: 13px;
}

.dcom-upload-meta {
	margin-top: 4px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.4;
}

.dcom-file-list {
	gap: 9px;
	margin-top: 12px;
}

.dcom-file-chip {
	min-height: 42px;
	border-color: #b9c5ba;
	border-radius: 11px;
	padding: 5px;
	background: var(--surface-subtle);
}

.dcom-file-chip img,
.dcom-file-type-icon {
	width: 32px;
	height: 32px;
	border-radius: 7px;
}

.dcom-file-chip button {
	width: 34px;
	height: 34px;
	background: transparent;
	color: #6b1a16;
	font-size: 18px;
}

/* Review, confirmation, notices, and dialogs */

.dcom-flow-review {
	gap: 16px;
	margin-top: 16px;
}

.dcom-review-group {
	border-color: #c5d0c5;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(23, 45, 27, .04);
}

.dcom-review-head {
	min-height: 48px;
	padding: 6px 17px;
	background: var(--surface-subtle);
}

.dcom-review-head h3 {
	margin: 0;
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.dcom-review-edit {
	min-height: 40px;
	border-radius: 8px;
	padding: 7px 11px;
	color: var(--green-dark);
	font-size: 13px;
	font-weight: 700;
}

.dcom-review-rows {
	gap: 16px 24px;
	padding: 17px;
}

.dcom-review-rows b {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}

.dcom-review-rows span {
	color: var(--ink);
	font-size: 15px;
	font-weight: 600;
	white-space: pre-line;
}

.dcom-review-rows span.empty {
	color: #677368;
	font-weight: 450;
}

.dcom-submit-confirmation {
	width: min(720px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(44px, 8vw, 88px) 0;
	gap: 14px;
}

.dcom-confirmation-mark {
	width: 54px;
	height: 54px;
	margin-bottom: 4px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--green-dark);
}

.dcom-confirmation-mark span {
	width: 23px;
	height: 12px;
	border-bottom: 3px solid var(--white);
	border-left: 3px solid var(--white);
	transform: translateY(-3px) rotate(-45deg);
}

.dcom-submit-confirmation h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(34px, 5vw, 48px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -.035em;
	text-transform: none;
}

.dcom-submit-confirmation p,
.dcom-submit-confirmation .dcom-confirmation-lede {
	max-width: 65ch;
	color: var(--muted);
	font-size: 15px;
	font-weight: 450;
}

.dcom-submit-confirmation .dcom-confirmation-lede {
	color: var(--muted-strong);
	font-size: 17px;
}

.dcom-copy-link {
	width: 100%;
	max-width: 680px;
}

.dcom-flow-form .dcom-copy-link input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
	min-height: 52px;
	border-right: 0;
	border-radius: 11px 0 0 11px;
	border-color: #849386;
	background: var(--surface-subtle);
}

.dcom-copy-link button {
	width: 54px;
	min-width: 54px;
	border-color: var(--green-dark);
	border-radius: 0 11px 11px 0;
	background: var(--green-dark);
}

.dcom-confirmation-note {
	font-size: 15px !important;
}

.dcom-return-link {
	width: fit-content;
	margin-top: 7px;
	text-decoration: none;
}

.dcom-terminal-page {
	width: min(900px, calc(100% - 40px));
	container-type: inline-size;
}

.dcom-terminal-page h1 {
	font-size: min(48px, 5.5cqi);
	white-space: nowrap;
}

.dcom-terminal-actions .dcom-return-link {
	margin-top: 0;
}

.dcom-terminal-actions {
	align-items: flex-start;
}

.dcom-toast {
	right: clamp(12px, 2vw, 24px);
	bottom: clamp(12px, 2vw, 24px);
	z-index: 50;
	border-color: #c1ccc2;
	border-left-color: var(--error);
	border-radius: 13px;
	padding: 16px;
	box-shadow: 0 20px 55px rgba(16, 28, 18, .24);
}

.dcom-toast-head b {
	color: var(--ink);
	font-weight: 700;
}

.dcom-toast-head button {
	width: 40px;
	height: 40px;
	flex-basis: 40px;
	margin: -7px -7px 0 0;
	background: var(--surface-strong);
}

.dcom-modal-overlay {
	z-index: 60;
	padding: 18px;
	background: rgba(10, 17, 11, .58);
	backdrop-filter: blur(3px);
}

.dcom-modal {
	width: min(580px, 100%);
	max-height: calc(100svh - 36px);
	overflow: auto;
	border-color: #b8c3b9;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 30px 90px rgba(8, 14, 9, .34);
}

.dcom-modal h3 {
	color: var(--ink);
	font-size: 24px;
	font-weight: 750;
	letter-spacing: -.02em;
	text-transform: none;
}

.dcom-modal-close {
	width: 44px;
	height: 44px;
	flex-basis: 44px;
	margin: -8px -8px 0 0;
	background: var(--surface-strong);
}

.dcom-modal-address-list button {
	min-height: 50px;
	border-color: #acb9ad;
	border-radius: 10px;
}

.dcom-modal-address-list button:hover {
	border-color: var(--green-dark);
}

/* Responsive behavior: preserve one clear task at every viewport */

@media (max-width: 1080px) {
	.dcom-flow-shell {
		padding: 18px;
	}

	.dcom-flow-content {
		padding: 38px;
	}

	.dcom-flow-workspace.is-application-active {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.dcom-flow-progress-wrap {
		padding-inline: 20px;
	}

	.dcom-contact-primary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-contact-primary label:first-child {
		grid-column: 1 / -1;
	}

	.dcom-contact-address {
		grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.dcom-flow-workspace.is-application-active {
		display: block;
	}

	.dcom-flow-workspace.is-application-active .dcom-flow-content {
		border-left: 0;
	}

	.dcom-flow-progress-wrap {
		position: static;
		padding: 22px 32px 18px;
		border-bottom: 1px solid var(--line);
		background: var(--surface-subtle);
	}

	.dcom-progress-summary {
		grid-template-columns: 1fr auto;
		align-items: end;
		gap: 16px;
		margin-bottom: 13px;
	}

	.dcom-flow-meter {
		margin-bottom: 15px;
	}

	.dcom-flow-progress {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 6px;
	}

	.dcom-flow-progress button {
		min-height: 44px;
		padding: 6px;
		justify-content: center;
		gap: 6px;
		font-size: 11px;
		text-align: center;
	}

	.dcom-flow-progress i {
		width: 25px;
		height: 25px;
		flex-basis: 25px;
		font-size: 10px;
	}

	.dcom-flow-progress button[data-status-message]::after {
		top: calc(100% + 9px);
		left: 50%;
	}

	.dcom-flow-progress button[data-status-message]::before {
		top: calc(100% + 3px);
		left: 50%;
	}
}

@media (max-width: 760px) {
	.dcom-flow-content {
		padding: 32px 26px;
	}

	.dcom-flow-progress-wrap {
		padding-inline: 26px;
	}

	.dcom-flow-progress {
		display: none;
	}

	.dcom-flow-meter {
		margin-bottom: 0;
	}

	.dcom-flow-grid,
	.dcom-contact-primary,
	.dcom-contact-address {
		grid-template-columns: 1fr;
	}

	.dcom-contact-primary label:first-child {
		grid-column: auto;
	}

	.dcom-panel-images-head ul {
		grid-template-columns: 1fr;
	}

	.dcom-monthly-graph-head {
		flex-direction: column;
	}
}

@media (max-width: 700px) {
	.dcom-flow-shell {
		min-height: 100svh;
		padding: 0;
		background: var(--white);
	}

	.dcom-flow-main {
		width: 100%;
	}

	.dcom-flow-form {
		min-height: 100svh;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.dcom-flow-brand {
		min-height: 70px;
		border-radius: 0;
		padding: 14px 18px;
	}

	.dcom-flow-brand img {
		width: min(156px, 44vw);
		max-height: 38px;
	}

	.dcom-brand-context {
		font-size: 9px;
	}

	.dcom-brand-context strong {
		font-size: 13px;
	}

	.dcom-flow-progress-wrap {
		padding: 15px 18px 13px;
	}

	.dcom-subpanel-card {
		grid-template-columns: 1fr;
	}

	.dcom-remove-subpanel {
		width: 100%;
	}

	.dcom-progress-summary {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		margin-bottom: 10px;
	}

	.dcom-progress-summary > div > span {
		font-size: 10px;
	}

	.dcom-progress-summary strong {
		max-width: 20ch;
		font-size: 15px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.dcom-save-status {
		max-width: 145px;
		justify-content: flex-end;
		font-size: 10px;
		text-align: right;
	}

	.dcom-flow-meter {
		height: 5px;
	}

	.dcom-flow-content {
		padding: 28px 18px 0;
	}

	.dcom-flow-step:not(.dcom-estimate-step),
	.dcom-flow-step.dcom-long-step,
	.dcom-flow-step[data-step="6"] {
		max-width: none;
	}

	.dcom-step-hero {
		padding: 14px 0 4px;
	}

	.dcom-flow-step h1,
	.dcom-flow-step h2 {
		margin-bottom: 10px;
		font-size: clamp(29px, 9vw, 38px);
		line-height: 1.1;
	}

	.dcom-flow-step h3 {
		margin-top: 26px;
		font-size: 18px;
	}

	.dcom-flow-lede {
		margin-bottom: 24px;
		font-size: 15px;
		line-height: 1.6;
	}

	.dcom-step-hero .dcom-flow-lede {
		margin-bottom: 22px;
		font-size: 16px;
	}

	.dcom-address-field input,
	.dcom-flow-body .dcom-address-field input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
		height: 58px;
		min-height: 58px;
		padding-inline: 48px 42px;
		font-size: 16px;
	}

	.dcom-address-icon,
	.dcom-address-field.is-loading::after {
		top: 29px;
	}

	.dcom-application-loading {
		height: 58px;
	}

	.dcom-address-help {
		font-size: 12px;
	}

	.dcom-address-suggestions {
		max-height: min(310px, 45svh);
	}

	.dcom-continue-applications {
		margin-top: 26px;
	}

	.dcom-flow-grid {
		gap: 16px;
		margin-top: 18px;
	}

	.dcom-contact-subhead {
		margin-top: 30px;
		padding-top: 24px;
	}

	.dcom-estimate-plan-bar {
		align-items: stretch;
		flex-direction: column;
		gap: 9px;
		padding: 12px;
	}

	.dcom-plan-toggle {
		width: 100%;
		grid-template-columns: minmax(0, 1fr) max-content;
	}

	.dcom-plan-rate-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-estimate-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.dcom-stat {
		min-height: 142px;
		padding: 16px;
	}

	.dcom-stat-head {
		min-height: 42px;
	}

	.dcom-stat-head b {
		font-size: 10px;
	}

	.dcom-stat-value {
		font-size: clamp(24px, 7vw, 31px);
	}

	.dcom-info-button {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		margin: -6px -6px 0 0;
	}

	.dcom-estimate-step > .dcom-flow-grid {
		max-width: none;
	}

	.dcom-investment-estimate {
		margin-top: 24px;
		padding: 18px;
	}

	.dcom-investment-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.dcom-monthly-graph-wrap {
		padding: 18px 14px;
	}

	.dcom-chart-legend-row {
		flex-wrap: wrap;
	}

	.dcom-chart-scroll-hint {
		display: block;
	}

	.dcom-monthly-graph {
		margin-inline: -4px;
		padding-inline: 4px;
	}

	.dcom-monthly-graph svg {
		min-width: 620px;
	}

	.dcom-month-detail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-month-detail span {
		font-size: 15px;
	}

	.dcom-panel-images-head {
		margin-top: 26px;
		padding: 17px;
	}

	.dcom-panel-images-head ul {
		padding-left: 18px;
		font-size: 14px;
	}

	.dcom-example-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-example-thumb {
		min-height: 0;
	}

	.dcom-dropzone {
		min-height: 148px;
		padding: 22px 15px;
	}

	.dcom-file-chip {
		width: 100%;
	}

	.dcom-file-chip .dcom-file-name {
		max-width: none;
		flex: 1 1 auto;
	}

	.dcom-review-rows {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.dcom-flow-workspace.is-application-active .dcom-flow-actions {
		position: sticky;
		bottom: 0;
		z-index: 25;
		width: auto;
		max-width: none;
		margin: 34px -18px 0;
		border-top: 1px solid #cbd5cb;
		padding: 12px 18px max(12px, env(safe-area-inset-bottom));
		display: grid;
		grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
		gap: 10px;
		background: rgba(255, 255, 255, .96);
		box-shadow: 0 -10px 28px rgba(23, 45, 27, .09);
		backdrop-filter: blur(10px);
	}

	.dcom-flow-actions button {
		width: 100%;
		min-width: 0;
		min-height: 50px;
		padding: 11px 13px;
		font-size: 14px;
	}

	.dcom-flow-actions button span {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.dcom-flow-form:not(.is-application-active) .dcom-flow-actions {
		width: 100%;
		margin: 30px 0 0;
		padding-top: 20px;
	}

	.dcom-flow-form:not(.is-application-active) .dcom-flow-actions .primary {
		width: 100%;
	}

	.dcom-flow-form:not(.is-application-active) .dcom-flow-actions .secondary {
		display: none !important;
	}

	body:has(.dcom-flow-workspace.is-application-active) .dcom-toast {
		bottom: calc(82px + env(safe-area-inset-bottom));
	}

	.dcom-submit-confirmation {
		width: auto;
		margin-inline: 18px;
		padding: 42px 0;
	}

	.dcom-submit-confirmation h1 {
		font-size: 34px;
	}

	.dcom-copy-link input {
		font-size: 13px;
	}

	.dcom-modal-overlay {
		place-items: end center;
		padding: 0;
	}

	.dcom-modal {
		width: 100%;
		max-height: min(86svh, 720px);
		border-radius: 20px 20px 0 0;
		padding: 22px 18px max(20px, env(safe-area-inset-bottom));
	}

	.dcom-toast {
		right: 10px;
		bottom: 10px;
		width: calc(100vw - 20px);
	}
}

@media (max-width: 560px) {
	.dcom-estimate-grid,
	.dcom-investment-grid {
		grid-template-columns: 1fr;
	}

	.dcom-stat {
		min-height: 126px;
	}

	.dcom-stat-head {
		min-height: 38px;
	}

	.dcom-stat-value {
		font-size: 30px;
	}

	.dcom-investment-stat {
		min-height: 112px;
	}

	.dcom-modal-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.dcom-modal-actions button {
		width: 100%;
	}
}

@media (max-width: 390px) {
	.dcom-flow-brand {
		gap: 12px;
		padding-inline: 15px;
	}

	.dcom-brand-context span {
		display: none;
	}

	.dcom-flow-progress-wrap {
		padding-inline: 15px;
	}

	.dcom-flow-content {
		padding-inline: 15px;
	}

	.dcom-flow-workspace.is-application-active .dcom-flow-actions {
		margin-inline: -15px;
		padding-inline: 15px;
		grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	}

	.dcom-flow-actions button {
		padding-inline: 10px;
		font-size: 13px;
	}

	.dcom-flow-actions button svg {
		width: 14px;
		flex: 0 0 14px;
	}

	.dcom-month-detail {
		gap: 8px;
	}

	.dcom-month-detail div {
		padding: 10px;
	}

	.dcom-example-thumb span {
		font-size: 11px;
	}
}

@media (max-height: 520px) and (orientation: landscape) {
	.dcom-flow-brand {
		min-height: 58px;
		padding-block: 9px;
	}

	.dcom-flow-brand img {
		max-height: 34px;
	}

	.dcom-flow-progress-wrap {
		padding-block: 10px;
	}

	.dcom-progress-summary {
		margin-bottom: 7px;
	}
}

@media (prefers-contrast: more) {
	:root {
		--line: #8b988d;
		--line-strong: #4e5c51;
		--muted: #3e4b41;
	}

	.dcom-flow-form,
	.dcom-stat,
	.dcom-investment-estimate,
	.dcom-monthly-graph-wrap,
	.dcom-review-group {
		border-width: 2px;
	}
}

@media (forced-colors: active) {
	.dcom-flow-brand,
	.dcom-flow-actions .primary,
	.dcom-plan-toggle button.active,
	.dcom-confirmation-mark {
		forced-color-adjust: none;
	}

	.dcom-chart-usage,
	.dcom-chart-solar-line,
	.dcom-chart-solar-dot {
		forced-color-adjust: auto;
	}
}

@media print {
	.dcom-flow-shell {
		padding: 0;
		background: var(--white);
	}

	.dcom-flow-form {
		border: 0;
		box-shadow: none;
	}

	.dcom-flow-progress-wrap,
	.dcom-flow-actions,
	.dcom-info-button,
	.dcom-chart-scroll-hint {
		display: none !important;
	}

	.dcom-flow-workspace.is-application-active {
		display: block;
	}

	.dcom-flow-content {
		padding: 24px 0;
	}
}

/* Final responsive and accessibility hardening */

body.dcom-modal-open,
body.dcom-lightbox-open {
	overflow: hidden;
	overscroll-behavior: none;
}

.dcom-flow-workspace.is-application-active {
	background: linear-gradient(90deg, var(--surface-subtle) 0 230px, var(--white) 230px);
}

.dcom-estimate-step > .dcom-flow-grid {
	width: min(390px, 100%);
	grid-template-columns: 1fr;
}

.dcom-info-button {
	width: 44px;
	height: 44px;
	flex-basis: 44px;
	margin: -9px -9px 0 0;
}

.dcom-monthly-graph:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 5px;
}

.dcom-plan-toggle button:focus-visible,
.dcom-info-button:focus-visible,
.dcom-address-suggestions button:focus-visible,
.dcom-example-thumb:focus-visible,
.dcom-image-lightbox-close:focus-visible,
.dcom-image-lightbox-prev:focus-visible,
.dcom-image-lightbox-next:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
}

.dcom-flow-choice-grid label:has(input:focus-visible),
.dcom-yes-no label:has(input:focus-visible) {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
}

.dcom-dropzone b .dcom-required-badge {
	margin-left: 8px;
	vertical-align: middle;
}

.dcom-submitted-review h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -.035em;
	text-transform: none;
}

@media (max-width: 1080px) {
	.dcom-flow-workspace.is-application-active {
		background: linear-gradient(90deg, var(--surface-subtle) 0 210px, var(--white) 210px);
	}
}

@media (max-width: 920px) {
	.dcom-flow-workspace.is-application-active {
		background: var(--white);
	}

	.dcom-flow-progress {
		grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
	}
}

@media (max-width: 700px) {
	.dcom-save-status {
		justify-self: end;
		justify-content: flex-start;
		text-align: left;
	}

	.dcom-save-status > span {
		width: auto;
		text-align: left;
	}

	.dcom-flow-workspace.is-application-active .dcom-flow-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dcom-copy-link input {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.dcom-terminal-actions {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.dcom-modal-actions {
		flex-direction: column;
	}
}

@media (max-width: 390px) {
	.dcom-flow-workspace.is-application-active .dcom-flow-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
}

@media (forced-colors: active) {
	.dcom-flow-brand,
	.dcom-flow-actions .primary,
	.dcom-plan-toggle button.active,
	.dcom-confirmation-mark,
	.dcom-chart-usage,
	.dcom-chart-solar-line,
	.dcom-chart-solar-dot {
		forced-color-adjust: auto;
	}
}

@media (max-width: 700px) {
	.dcom-flow-content:has(.dcom-flow-step[data-step="1"].active) .dcom-flow-actions {
		grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
	}

	.dcom-flow-content:has(.dcom-flow-step[data-step="2"].active) .dcom-flow-actions {
		grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
	}

	.dcom-flow-content:has(.dcom-flow-step[data-step="6"].active) .dcom-flow-actions {
		grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
	}
}

.dcom-toast {
	max-height: calc(100svh - 110px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

@media (max-width: 700px) {
	.dcom-example-thumb img {
		aspect-ratio: 1 / 1;
	}

	.dcom-flow-content:has(.dcom-flow-step[data-step="4"].active) .dcom-flow-actions {
		position: static;
		margin: 34px 0 0;
		border-top: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}
}

.dcom-upload-meta {
	color: var(--muted-strong);
	font-size: 12px;
	font-weight: 550;
	line-height: 1.4;
}

/* Keep utility copy out of the way until it is genuinely useful. */
.dcom-brand-context,
.dcom-address-label,
.dcom-address-help {
	display: none !important;
}

.dcom-stat,
.dcom-investment-stat {
	position: relative;
}

.dcom-metric-info {
	display: none;
	position: absolute;
	z-index: 30;
	top: calc(100% + 8px);
	left: 0;
	width: min(320px, calc(100vw - 48px));
	margin: 0;
	border: 1px solid #b9cdb8;
	border-radius: 12px;
	padding: 12px 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(23, 45, 27, .16);
	color: var(--muted-strong);
	font-size: 13px;
	line-height: 1.45;
}

.dcom-metric-info.is-open,
.dcom-stat:has(.dcom-info-button:hover) .dcom-metric-info,
.dcom-stat:has(.dcom-info-button:focus-visible) .dcom-metric-info,
.dcom-investment-stat:has(.dcom-info-button:hover) .dcom-metric-info,
.dcom-investment-stat:has(.dcom-info-button:focus-visible) .dcom-metric-info {
	display: block;
}

.dcom-metric-info::before {
	content: '';
	position: absolute;
	top: -6px;
	right: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #b9cdb8;
	border-left: 1px solid #b9cdb8;
	background: #fff;
	transform: rotate(45deg);
}

.dcom-confirmation-mark span {
	width: 27px;
	height: 15px;
	border-bottom-width: 4px;
	border-left-width: 4px;
	transform: translate(-1px, -1px) rotate(-45deg);
	transform-origin: center;
}

.dcom-confirmation-mark span {
	width: 31px;
	height: 17px;
	border-bottom-width: 4px;
	border-left-width: 4px;
	transform: translate(0, 1px) rotate(-45deg);
}

.dcom-confirmation-mark span {
	width: 26px;
	height: 14px;
	border-bottom-width: 3.5px;
	border-left-width: 3.5px;
	transform: translate(0, -2px) rotate(-45deg);
}

.dcom-confirmation-mark span {
	width: 36px;
	height: 20px;
	border-bottom-width: 4px;
	border-left-width: 4px;
	transform: translate(0, -6px) rotate(-45deg);
}

.dcom-confirmation-mark span {
	width: 54px;
	height: 30px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	transform: translate(0, -8px) rotate(-45deg);
}

/* Confirmation uses its original compact mark; progress has its own icon. */
.dcom-confirmation-mark span {
	width: 23px;
	height: 12px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	transform: translateY(-3px) rotate(-45deg);
}

.dcom-flow-progress button.complete i {
	position: relative;
	display: grid;
	place-items: center;
	font-size: 0;
}

.dcom-flow-progress button.complete i::after {
	content: '';
	position: static;
	width: 15px;
	height: 8px;
	border-bottom: 3px solid var(--white);
	border-left: 3px solid var(--white);
	transform: translateY(-1px) rotate(-45deg);
	transform-origin: center;
}

/* Completed-step icon: restore the original glyph, lightly enlarged and optically centered. */
.dcom-flow-progress button.complete i {
	display: inline-grid;
	place-items: center;
}

.dcom-flow-progress button.complete i::after {
	content: "\2713";
	position: static;
	width: auto;
	height: auto;
	border: 0;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-2px);
}

/* Address entry keeps the original compact, centered hero treatment. */
.dcom-flow-step[data-step="0"] .dcom-step-hero {
	padding: clamp(16px, 5vw, 52px) 0 clamp(18px, 2vw, 26px);
	text-align: center;
}

.dcom-submission-details {
	margin-top: 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--off-white);
	padding: 18px 20px;
}

.dcom-submission-details h2 {
	margin: 0 0 14px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: none;
}

.dcom-submission-details dl {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px 24px;
	margin: 0;
}

.dcom-submission-details dl > div {
	display: grid;
	gap: 3px;
}

.dcom-submission-details dt {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.dcom-submission-details dd {
	margin: 0;
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
}

.dcom-submission-details a {
	color: var(--green-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.dcom-flow-step[data-step="0"] .dcom-step-hero > h2 {
	max-width: none;
	margin: 0 auto 22px;
	color: var(--black);
	font-size: clamp(32px, 4vw, 42px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -.01em;
	text-align: center;
	text-transform: none;
}

.dcom-flow-actions .primary,
.dcom-modal-actions .primary,
.dcom-return-link {
	border-color: #60b949;
	background: #60b949;
	box-shadow: 0 8px 20px rgba(96, 185, 73, .24);
}

.dcom-flow-actions .primary:hover,
.dcom-modal-actions .primary:hover,
.dcom-return-link:hover {
	border-color: #50aa3e;
	background: #50aa3e;
	box-shadow: 0 10px 24px rgba(96, 185, 73, .3);
}

/* Center the logo against the header itself, independent of adjacent content. */
.dcom-flow-brand {
	position: relative;
}

.dcom-brand-lockup {
	position: absolute;
	top: 50%;
	left: 50%;
	grid-column: auto;
	transform: translate(-50%, -50%);
}

/* Preserve the logo artwork's intrinsic ratio so its visible pixels are centered. */
.dcom-flow-brand img {
	width: auto;
	height: 43px;
	max-height: none;
	object-position: center;
}

@media (max-width: 760px) {
	.dcom-flow-brand img {
		height: 38px;
	}
}

@media (max-height: 520px) and (orientation: landscape) {
	.dcom-flow-brand img {
		height: 34px;
	}
}
