.l3clp-app {
	--l3clp-bg: #f6f7f9;
	--l3clp-panel: #ffffff;
	--l3clp-text: #1d2630;
	--l3clp-muted: #657282;
	--l3clp-line: #d9dee6;
	--l3clp-accent: #147c73;
	--l3clp-accent-2: #315c9a;
	--l3clp-warning-bg: #fff7d7;
	--l3clp-warning-border: #e2b93b;
	--l3clp-danger-bg: #fff0f0;
	--l3clp-danger-border: #dd4b4b;
	--l3clp-radius: 8px;
	box-sizing: border-box;
	color: var(--l3clp-text);
	font-family: inherit;
	width: 100%;
}

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

.l3clp-layout {
	align-items: start;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.42fr);
}

.l3clp-panel,
.l3clp-preview-panel,
.l3clp-result-panel,
.l3clp-compare-panel,
.l3clp-inquiry-form {
	background: var(--l3clp-panel);
	border: 1px solid var(--l3clp-line);
	border-radius: var(--l3clp-radius);
	box-shadow: 0 10px 24px rgba(29, 38, 48, 0.06);
	padding: 18px;
}

.l3clp-output {
	display: grid;
	gap: 18px;
}

.l3clp-panel-head {
	align-items: start;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.l3clp-panel-head h2 {
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 4px;
}

.l3clp-panel-head p {
	color: var(--l3clp-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.l3clp-fieldset {
	border: 1px solid var(--l3clp-line);
	border-radius: var(--l3clp-radius);
	margin: 14px 0;
	padding: 14px;
}

.l3clp-fieldset legend {
	color: var(--l3clp-text);
	font-size: 13px;
	font-weight: 700;
	padding: 0 6px;
}

.l3clp-grid {
	display: grid;
	gap: 12px;
}

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

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

.l3clp-field,
.l3clp-check {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.l3clp-label,
.l3clp-field span,
.l3clp-check span {
	color: var(--l3clp-text);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.25;
}

.l3clp-field-wide {
	grid-column: 1 / -1;
}

.l3clp-field input,
.l3clp-field select,
.l3clp-field textarea,
.l3clp-app select[data-l3clp-field],
.l3clp-app input[data-l3clp-field] {
	background: #ffffff;
	border: 1px solid #cfd6df;
	border-radius: 6px;
	color: var(--l3clp-text);
	font: inherit;
	line-height: 1.35;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.l3clp-field select,
.l3clp-app select[data-l3clp-field] {
	font-size: 12.5px;
	height: auto;
	overflow: visible;
	padding: 9px 34px 9px 10px;
	text-overflow: ellipsis;
}

.l3clp-field textarea {
	resize: vertical;
}

.l3clp-check {
	align-items: center;
	border: 1px solid var(--l3clp-line);
	border-radius: 6px;
	grid-template-columns: 18px 1fr;
	padding: 10px;
}

.l3clp-check input {
	height: 16px;
	margin: 0;
	width: 16px;
}

.l3clp-primary-btn,
.l3clp-secondary-btn,
.l3clp-container-tab,
.l3clp-viewer-tools button,
.l3clp-card-btn {
	align-items: center;
	background: #ffffff;
	border: 1px solid #c8d0da;
	border-radius: 6px;
	color: var(--l3clp-text);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 36px;
	padding: 8px 12px;
	text-align: center;
	text-decoration: none;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.l3clp-primary-btn,
.l3clp-container-tab[aria-checked="true"],
.l3clp-card-btn[aria-pressed="true"] {
	background: var(--l3clp-accent);
	border-color: var(--l3clp-accent);
	color: #ffffff;
}

.l3clp-secondary-btn {
	margin-top: 8px;
	width: 100%;
}

.l3clp-primary-btn:hover,
.l3clp-secondary-btn:hover,
.l3clp-container-tab:hover,
.l3clp-viewer-tools button:hover,
.l3clp-card-btn:hover {
	border-color: var(--l3clp-accent);
	transform: translateY(-1px);
}

.l3clp-container-tabs {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 12px 0 14px;
}

.l3clp-warning,
.l3clp-alert {
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 12px;
	padding: 10px 12px;
}

.l3clp-warning,
.l3clp-alert-warning {
	background: var(--l3clp-warning-bg);
	border: 1px solid var(--l3clp-warning-border);
	color: #634800;
}

.l3clp-alert-danger {
	background: var(--l3clp-danger-bg);
	border: 1px solid var(--l3clp-danger-border);
	color: #8e2525;
}

.l3clp-viewport {
	background:
		linear-gradient(180deg, rgba(20, 124, 115, 0.08), rgba(49, 92, 154, 0.05)),
		#eef2f5;
	border: 1px solid var(--l3clp-line);
	border-radius: var(--l3clp-radius);
	min-height: 420px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.l3clp-viewport canvas {
	display: block;
	height: 100%;
	min-height: 420px;
	width: 100%;
}

.l3clp-viewport-loading,
.l3clp-viewport-fallback {
	align-items: center;
	background: rgba(255, 255, 255, 0.88);
	color: var(--l3clp-muted);
	display: flex;
	inset: 0;
	justify-content: center;
	line-height: 1.45;
	padding: 18px;
	position: absolute;
	text-align: center;
}

.l3clp-viewport-fallback[hidden],
.l3clp-viewport-loading[hidden],
.l3clp-fieldset[hidden] {
	display: none;
}

.l3clp-door-badge {
	background: rgba(29, 38, 48, 0.82);
	border-radius: 999px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	left: 14px;
	padding: 4px 9px;
	position: absolute;
	top: 14px;
}

.l3clp-viewer-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.l3clp-viewer-tools [data-l3clp-action="auto-arrange"],
.l3clp-viewer-tools [data-l3clp-action="download-preview"],
.l3clp-viewer-tools [data-l3clp-action="rotate-selected"],
.l3clp-viewer-tools [data-l3clp-action="reset-layout"] {
	background: var(--l3clp-accent-2);
	border-color: var(--l3clp-accent-2);
	color: #ffffff;
	box-shadow: 0 6px 14px rgba(49, 92, 154, 0.18);
}

.l3clp-viewer-tools [data-l3clp-action="auto-arrange"] {
	background: var(--l3clp-accent);
	border-color: var(--l3clp-accent);
}

.l3clp-container-pages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.l3clp-container-pages button {
	background: #fff;
	border: 1px solid #c8d0da;
	border-radius: 999px;
	color: var(--l3clp-text);
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	min-height: 30px;
	padding: 6px 12px;
}

.l3clp-container-pages button[aria-pressed="true"] {
	background: var(--l3clp-accent);
	border-color: var(--l3clp-accent);
	color: #fff;
}

.l3clp-result-list {
	display: grid;
	gap: 0;
	margin: 0;
}

.l3clp-result-list div {
	align-items: start;
	border-bottom: 1px solid var(--l3clp-line);
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(150px, 0.65fr) minmax(120px, 1fr);
	padding: 9px 0;
}

.l3clp-result-list div:last-child {
	border-bottom: 0;
}

.l3clp-result-list dt {
	color: var(--l3clp-muted);
	font-size: 13px;
	font-weight: 700;
	margin: 0;
}

.l3clp-result-list dd {
	color: var(--l3clp-text);
	font-size: 13px;
	font-weight: 650;
	margin: 0;
	word-break: break-word;
}

.l3clp-alerts {
	display: grid;
	gap: 8px;
	margin-bottom: 10px;
}

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

.l3clp-card-btn {
	align-items: stretch;
	display: grid;
	gap: 8px;
	justify-content: stretch;
	min-height: 132px;
	padding: 12px;
	text-align: left;
}

.l3clp-card-title {
	font-size: 15px;
	font-weight: 800;
}

.l3clp-card-metrics {
	color: inherit;
	display: grid;
	font-size: 12px;
	font-weight: 650;
	gap: 4px;
	line-height: 1.35;
}

.l3clp-inquiry-form {
	margin-top: 18px;
}

.l3clp-form-actions {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

.l3clp-form-status {
	color: var(--l3clp-muted);
	font-size: 13px;
	font-weight: 650;
	margin: 0;
}

@media (max-width: 1100px) {
	.l3clp-layout {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 760px) {
	.l3clp-panel,
	.l3clp-preview-panel,
	.l3clp-result-panel,
	.l3clp-compare-panel,
	.l3clp-inquiry-form {
		padding: 14px;
	}

	.l3clp-grid-2,
	.l3clp-grid-3,
	.l3clp-container-tabs,
	.l3clp-comparison-grid {
		grid-template-columns: 1fr;
	}

	.l3clp-viewport,
	.l3clp-viewport canvas {
		min-height: 340px;
	}

	.l3clp-result-list div {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

/* Precision logistics workspace skin. */
	.l3clp-app {
		--l3clp-bg: #f7fafd;
	--l3clp-panel: #ffffff;
	--l3clp-sidebar: #f1f4f7;
	--l3clp-text: #181c1e;
	--l3clp-muted: #434654;
	--l3clp-line: #c3c6d6;
	--l3clp-accent: #003d9b;
	--l3clp-accent-2: #0052cc;
	--l3clp-warning-bg: #fff2e2;
	--l3clp-warning-border: #fd8b00;
	--l3clp-danger-bg: #fff0ed;
	--l3clp-danger-border: #de350b;
	background: var(--l3clp-bg);
	border: 1px solid var(--l3clp-line);
	border-radius: 12px;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		isolation: isolate;
		max-width: 100%;
		overflow: visible;
		position: relative;
	}

	.l3clp-page-template {
		background: #f7fafd;
		box-sizing: border-box;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 100vw;
		overflow-x: clip;
		padding: 18px;
		width: 100vw;
	}

	.l3clp-page-template-inner {
		box-sizing: border-box;
		margin: 0 auto;
		width: 100%;
	}

	.l3clp-page-template-intro {
		margin: 0 0 14px;
		max-width: 980px;
	}

	.l3clp-page-template-heading {
		color: #101418;
		font-size: 34px;
		font-weight: 850;
		letter-spacing: 0;
		line-height: 1.12;
		margin: 0 0 8px;
	}

	.l3clp-page-template-summary {
		color: #434654;
		font-size: 15px;
		line-height: 1.55;
		margin: 0;
	}

	.l3clp-layout {
		align-items: stretch;
		border-radius: inherit;
		gap: 0;
		grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
		max-width: 100%;
		min-height: 720px;
		min-width: 0;
		overflow: hidden;
	}

	.l3clp-input-panel {
	background: var(--l3clp-sidebar);
	border: 0;
	border-radius: 0;
	border-right: 1px solid var(--l3clp-line);
		box-shadow: none;
		max-height: min(880px, calc(100vh - 48px));
		max-width: 100%;
		min-width: 0;
		overflow: auto;
		padding: 22px;
	}

	.l3clp-output {
		align-items: stretch;
		display: grid;
			grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
			max-width: 100%;
			min-width: 0;
		}

	.l3clp-app:not(.l3clp-result-open) .l3clp-output {
		grid-template-columns: minmax(0, 1fr);
	}

.l3clp-preview-panel {
	background: var(--l3clp-bg);
	border: 0;
	border-radius: 0;
		box-shadow: none;
		max-width: 100%;
		min-height: 720px;
		min-width: 0;
		padding: 24px 24px 30px;
	}

.l3clp-panel-head h2,
.l3clp-drawer-head h2 {
	color: #101418;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
}

.l3clp-fieldset {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 22px 0;
	padding: 0;
}

.l3clp-fieldset legend {
	color: #2e3342;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 0 0 12px;
	text-transform: uppercase;
}

.l3clp-field input,
.l3clp-field select,
.l3clp-field textarea,
.l3clp-app select[data-l3clp-field],
.l3clp-app input[data-l3clp-field] {
	background: #f7fafd;
	border-color: var(--l3clp-line);
	border-radius: 8px;
	color: #111827;
	font-size: 14px;
	min-height: 40px;
}

.l3clp-field input:focus,
.l3clp-field select:focus,
.l3clp-field textarea:focus,
.l3clp-app select[data-l3clp-field]:focus,
.l3clp-app input[data-l3clp-field]:focus {
	border-color: var(--l3clp-accent);
	box-shadow: 0 0 0 2px rgba(0, 61, 155, 0.12);
	outline: 0;
}

.l3clp-check {
	background: #f7fafd;
	border-color: var(--l3clp-line);
	border-radius: 8px;
}

.l3clp-container-tabs {
	border-bottom: 1px solid var(--l3clp-line);
	gap: 0;
	grid-template-columns: repeat(5, minmax(100px, 1fr));
	margin: -24px -24px 22px;
	overflow-x: auto;
}

.l3clp-container-tab {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #202432;
	font-size: 16px;
	min-height: 58px;
	position: relative;
}

.l3clp-container-tab[aria-checked="true"] {
	background: transparent;
	color: var(--l3clp-accent);
}

.l3clp-container-tab[aria-checked="true"]::after {
	background: var(--l3clp-accent);
	bottom: 0;
	content: "";
	height: 3px;
	left: 18px;
	position: absolute;
	right: 18px;
}

.l3clp-viewport {
	background:
		radial-gradient(circle, rgba(0, 61, 155, 0.10) 1px, transparent 1px) 0 0 / 28px 28px,
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 244, 247, 0.76)),
		#f7fafd;
	border: 2px dashed var(--l3clp-line);
	border-radius: 12px;
	box-shadow: inset 0 0 42px rgba(9, 30, 66, 0.06);
	min-height: 560px;
}

.l3clp-viewport canvas {
	min-height: 560px;
}

.l3clp-door-badge {
	background: var(--l3clp-accent);
	border-radius: 4px;
	font-size: 12px;
	letter-spacing: 0.04em;
	left: auto;
	right: 14px;
	text-transform: uppercase;
}

.l3clp-viewer-tools {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--l3clp-line);
	border-radius: 14px;
	box-shadow: 0 10px 22px rgba(9, 30, 66, 0.08);
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	justify-content: center;
	margin: 18px auto 0;
	max-width: 460px;
	padding: 8px;
}

.l3clp-viewer-tools button {
	border-radius: 8px;
	min-height: 44px;
	padding: 9px 12px;
	white-space: normal;
	width: 100%;
}

.l3clp-viewer-tools [data-l3clp-action="auto-arrange"],
.l3clp-viewer-tools [data-l3clp-action="download-preview"],
.l3clp-viewer-tools [data-l3clp-action="rotate-selected"],
.l3clp-viewer-tools [data-l3clp-action="reset-layout"] {
	background: rgba(0, 82, 204, 0.10);
	border-color: transparent;
	box-shadow: none;
	color: var(--l3clp-accent);
}

.l3clp-result-toggle,
.l3clp-drawer-close,
.l3clp-result-fab {
	align-items: center;
	background: var(--l3clp-accent-2);
	border: 1px solid var(--l3clp-accent-2);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	min-height: 36px;
	padding: 8px 13px;
}

	.l3clp-result-drawer {
			background: var(--l3clp-sidebar);
			border: 0;
			border-left: 1px solid var(--l3clp-line);
			border-radius: 0;
			box-sizing: border-box;
			box-shadow: none;
			display: grid;
		gap: 16px;
		grid-auto-rows: max-content;
		max-height: none;
		max-width: none;
			min-height: 720px;
			min-width: 0;
			opacity: 1;
		overflow-y: visible;
		padding: 22px 18px;
		pointer-events: auto;
		position: relative;
		transform: none;
		visibility: visible;
			width: 100%;
			z-index: auto;
		}

	.l3clp-result-open .l3clp-result-drawer {
		display: grid;
	}

	.l3clp-app:not(.l3clp-result-open) .l3clp-result-drawer {
		display: none;
	}

.l3clp-result-fab {
	position: absolute;
	right: 14px;
	top: 92px;
	z-index: 25;
}

.l3clp-result-open .l3clp-result-fab {
	display: none;
}

.l3clp-drawer-head {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.l3clp-drawer-head p {
	color: var(--l3clp-muted);
	font-size: 13px;
	margin: 4px 0 0;
}

.l3clp-drawer-close {
	border-radius: 999px;
	font-size: 20px;
	line-height: 1;
	min-height: 34px;
	padding: 0;
	width: 34px;
}

.l3clp-result-panel,
.l3clp-compare-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.l3clp-result-card {
	background: #ffffff;
	border: 1px solid var(--l3clp-line);
	border-radius: 12px;
	overflow: hidden;
}

.l3clp-result-card-head {
	align-items: center;
	background: #e5e8eb;
	display: flex;
	justify-content: space-between;
	padding: 14px 16px 4px;
}

.l3clp-result-card-head span {
	color: #2e3342;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.l3clp-result-card-head strong {
	background: #d6e3ff;
	border-radius: 4px;
	color: var(--l3clp-accent);
	font-size: 12px;
	padding: 4px 8px;
}

.l3clp-result-card h3 {
	background: #e5e8eb;
	font-size: 26px;
	line-height: 1.2;
	margin: 0;
	padding: 4px 16px 18px;
}

.l3clp-result-metrics {
	display: grid;
	gap: 0;
	padding: 12px 16px 16px;
}

.l3clp-result-metrics div {
	border-bottom: 1px solid var(--l3clp-line);
	display: grid;
	gap: 5px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 10px 0;
}

.l3clp-result-metrics div:last-child {
	border-bottom: 0;
}

.l3clp-result-metrics span {
	color: var(--l3clp-muted);
	font-size: 13px;
}

.l3clp-result-metrics strong {
	color: #0f1419;
	font-size: 14px;
}

.l3clp-meter {
	background: #d7dadd;
	border-radius: 999px;
	grid-column: 1 / -1;
	height: 8px;
	overflow: hidden;
}

.l3clp-meter b {
	background: #fd8b00;
	display: block;
	height: 100%;
	width: 0;
}

.l3clp-meter-blue b {
	background: var(--l3clp-accent);
}

.l3clp-result-detail-head h3,
.l3clp-compare-panel h2 {
	font-size: 16px;
	letter-spacing: 0.08em;
	margin: 18px 0 10px;
	text-transform: uppercase;
}

.l3clp-result-list {
	background: #ffffff;
	border: 1px solid var(--l3clp-line);
	border-radius: 12px;
	max-height: 360px;
	overflow: auto;
	padding: 4px 14px;
}

.l3clp-result-list div {
	grid-template-columns: 1fr;
	gap: 3px;
}

.l3clp-result-drawer .l3clp-comparison-grid {
	grid-template-columns: 1fr;
}

.l3clp-result-drawer .l3clp-card-btn {
	background: #ffffff;
	border-color: var(--l3clp-line);
	border-radius: 12px;
	min-height: 96px;
}

.l3clp-result-drawer .l3clp-card-btn[aria-pressed="true"] {
	background: #ffffff;
	border-color: var(--l3clp-accent);
	box-shadow: inset 0 0 0 1px var(--l3clp-accent);
	color: var(--l3clp-text);
}

	@media (max-width: 980px) {
		.l3clp-app {
			overflow: hidden;
	}

		.l3clp-layout {
			grid-template-columns: 1fr;
			overflow: visible;
		}

		.l3clp-output,
		.l3clp-app:not(.l3clp-result-open) .l3clp-output {
			grid-template-columns: 1fr;
		}

	.l3clp-input-panel {
		border-right: 0;
		border-bottom: 1px solid var(--l3clp-line);
		max-height: none;
	}

		.l3clp-result-drawer {
			border-left: 0;
			border-top: 1px solid var(--l3clp-line);
			min-height: 0;
			position: relative;
			width: 100%;
		}
	}

	@media (max-width: 760px) {
		.l3clp-page-template {
			padding: 10px;
		}

		.l3clp-page-template-heading {
			font-size: 26px;
		}

		.l3clp-page-template-summary {
			font-size: 14px;
		}

		.l3clp-input-panel {
			padding: 18px;
		}

		.l3clp-preview-panel {
			min-height: 0;
			padding: 18px;
	}

		.l3clp-container-tabs {
			display: flex;
			grid-template-columns: none;
			margin: -18px -18px 18px;
			max-width: calc(100% + 36px);
			min-width: 0;
			overflow-x: auto;
		}

		.l3clp-container-tab {
			flex: 0 0 auto;
			font-size: 14px;
			min-width: 86px;
		}

	.l3clp-viewport,
	.l3clp-viewport canvas {
		min-height: 380px;
	}

		.l3clp-viewer-tools {
			border-radius: 12px;
			grid-template-columns: 1fr;
			max-width: none;
		}

		.l3clp-result-drawer {
			padding: 18px;
		}

		.l3clp-drawer-head {
			align-items: start;
		}

		.l3clp-result-card h3 {
			font-size: 22px;
		}

		.l3clp-result-metrics div {
			grid-template-columns: 1fr;
		}

		.l3clp-result-list {
			max-height: none;
		}
	}

	@media (max-width: 520px) {
		.l3clp-page-template {
			padding: 8px;
		}

		.l3clp-input-panel,
		.l3clp-preview-panel,
		.l3clp-result-drawer {
			padding: 14px 12px;
		}

		.l3clp-container-tabs {
			margin: -14px -12px 14px;
			max-width: calc(100% + 24px);
		}

		.l3clp-container-tab {
			font-size: 13px;
			min-width: 78px;
		}

		.l3clp-viewport,
		.l3clp-viewport canvas {
			min-height: 320px;
		}
	}

/* v0.2.4: centered SEO intro and compact in-preview result panel. */
.l3clp-page-template-intro {
	margin: 0 auto 20px;
	max-width: 1040px;
	text-align: center;
}

.l3clp-page-template-heading {
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.08;
}

.l3clp-page-template-summary {
	font-size: 16px;
	line-height: 1.62;
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
}

.l3clp-overlay-labels {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(148, 163, 184, 0.72);
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
	display: grid;
	gap: 7px;
	left: 14px;
	max-width: min(320px, calc(100% - 28px));
	padding: 11px 12px;
	position: absolute;
	top: 12px;
	z-index: 4;
}

.l3clp-overlay-labels div {
	display: grid;
	gap: 2px;
}

.l3clp-overlay-labels span {
	color: #64748b;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.l3clp-overlay-labels strong {
	color: #0f172a;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.25;
}

@media (max-width: 760px) {
	.l3clp-page-template-intro {
		margin-bottom: 16px;
	}

	.l3clp-overlay-labels {
		left: 10px;
		right: 10px;
		top: 10px;
		max-width: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* v0.2.6: keep the WebGL viewport stable without making the camera feel zoomed in. */
.l3clp-viewport {
	height: clamp(420px, 42vw, 520px);
	contain: layout paint;
}

.l3clp-viewport canvas {
	height: 100%;
	min-height: 0;
}

@media (max-width: 900px) {
	.l3clp-viewport,
	.l3clp-viewport canvas {
		height: 380px;
		min-height: 0;
	}
}

@media (max-width: 520px) {
	.l3clp-viewport,
	.l3clp-viewport canvas {
		height: 320px;
		min-height: 0;
	}
}
