:root {
	--llokko-dsm-bg: #090909;
	--llokko-dsm-bg-base: #090909;
	--llokko-dsm-bg-secondary: #0f1115;
	--llokko-dsm-bg-tertiary: #171a20;
	--llokko-dsm-surface: rgba(12, 12, 14, 0.72);
	--llokko-dsm-surface-strong: rgba(12, 12, 14, 0.92);
	--llokko-dsm-input-surface: rgba(255, 255, 255, 0.08);
	--llokko-dsm-input-surface-focus: rgba(255, 255, 255, 0.12);
	--llokko-dsm-text: #f4efe6;
	--llokko-dsm-text-secondary: #b8b3aa;
	--llokko-dsm-accent: #c67c4e;
	--llokko-dsm-muted: rgba(244, 239, 230, 0.72);
	--llokko-dsm-help: rgba(244, 239, 230, 0.56);
	--llokko-dsm-placeholder: rgba(244, 239, 230, 0.38);
	--llokko-dsm-border: rgba(255, 255, 255, 0.1);
	--llokko-dsm-divider: rgba(255, 255, 255, 0.1);
	--llokko-dsm-input-border: rgba(255, 255, 255, 0.16);
	--llokko-dsm-shell-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
	--llokko-dsm-panel-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
	--llokko-dsm-panel-blur: 18px;
	--llokko-dsm-success: #b7f6d1;
	--llokko-dsm-error: #ff908a;
	--llokko-dsm-overlay-opacity: 0.46;
	--llokko-dsm-highlight: rgba(198, 124, 78, 0.26);
	--llokko-dsm-highlight-strong: rgba(198, 124, 78, 0.4);
	--llokko-dsm-accent-shadow: rgba(198, 124, 78, 0.28);
	--llokko-dsm-submit-start: #c67c4e;
	--llokko-dsm-bg-image: none;
	--llokko-dsm-bg-image-opacity: 0;
	--llokko-dsm-backdrop-opacity: 0.45;
	--llokko-dsm-shell-width: 98%;
	--llokko-dsm-shell-max-width: 1720px;
}

.llokko-dsm-shell,
.llokko-dsm-shell *,
.llokko-dsm-shell *::before,
.llokko-dsm-shell *::after {
	box-sizing: border-box;
}

.llokko-dsm-shell {
	position: relative;
	overflow: hidden;
	width: min(var(--llokko-dsm-shell-width), var(--llokko-dsm-shell-max-width));
	max-width: 100%;
	margin: clamp(20px, 3vw, 36px) auto;
	padding: clamp(32px, 5vw, 72px);
	border-radius: 28px;
	font-family: var(--llokko-dsm-font-family, inherit);
	background:
		radial-gradient(circle at top left, var(--llokko-dsm-highlight), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 22%),
		linear-gradient(135deg, var(--llokko-dsm-bg-base) 0%, var(--llokko-dsm-bg-secondary) 48%, var(--llokko-dsm-bg-tertiary) 100%);
	color: var(--llokko-dsm-text);
	box-shadow: var(--llokko-dsm-shell-shadow);
	isolation: isolate;
}

.llokko-dsm-shell :where(h1, h2, h3, h4, h5, h6, p, div, span, label, button, input, select, textarea, option, legend, strong, small, a) {
	color: inherit;
	font-family: inherit;
}

.llokko-dsm-shell button,
.llokko-dsm-shell input,
.llokko-dsm-shell select,
.llokko-dsm-shell textarea {
	font-family: inherit;
}

.llokko-dsm-shell.llokko-dsm-font-plugin_sans,
.llokko-dsm-shell.llokko-dsm-font-plugin_sans :where(h1, h2, h3, h4, h5, h6, p, div, span, label, button, input, select, textarea, option, legend, strong, small, a) {
	font-family: var(--llokko-dsm-font-family, "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif) !important;
}

.llokko-dsm-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--llokko-dsm-bg-image);
	background-size: cover;
	background-position: center;
	opacity: var(--llokko-dsm-bg-image-opacity);
	transform: scale(1.02);
	pointer-events: none;
}

.llokko-dsm-shell.llokko-dsm-background-solid {
	background: linear-gradient(135deg, var(--llokko-dsm-bg-base) 0%, var(--llokko-dsm-bg-secondary) 100%);
}

.llokko-dsm-shell.llokko-dsm-background-image {
	background:
		linear-gradient(135deg, rgba(5, 5, 7, var(--llokko-dsm-overlay-opacity)) 0%, rgba(10, 12, 14, 0.82) 100%),
		linear-gradient(135deg, var(--llokko-dsm-bg-base) 0%, var(--llokko-dsm-bg-secondary) 100%);
}

.llokko-dsm-backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 20px);
	mix-blend-mode: screen;
	opacity: var(--llokko-dsm-backdrop-opacity);
	pointer-events: none;
}

.llokko-dsm-layout {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(22px, 3vw, 32px);
	align-items: start;
}

.llokko-dsm-panel {
	position: relative;
	min-width: 0;
}

.llokko-dsm-panel-form,
.llokko-dsm-guidelines {
	border: 1px solid var(--llokko-dsm-border);
	box-shadow: var(--llokko-dsm-panel-shadow);
}

.llokko-dsm-panel-main,
.llokko-dsm-panel-form {
	width: 100%;
}

.llokko-dsm-hero {
	width: min(100%, 1120px);
	margin: 0 auto;
	text-align: center;
}

.llokko-dsm-panel-form {
	width: 100%;
	padding: clamp(22px, 3vw, 34px);
	border-radius: 24px;
	background: var(--llokko-dsm-surface);
	backdrop-filter: blur(var(--llokko-dsm-panel-blur));
	-webkit-backdrop-filter: blur(var(--llokko-dsm-panel-blur));
}

.llokko-dsm-shell.llokko-dsm-panel-outline .llokko-dsm-panel-form,
.llokko-dsm-shell.llokko-dsm-panel-outline .llokko-dsm-guidelines {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.22);
}

.llokko-dsm-shell.llokko-dsm-panel-solid .llokko-dsm-panel-form,
.llokko-dsm-shell.llokko-dsm-panel-solid .llokko-dsm-guidelines {
	background: var(--llokko-dsm-surface-strong);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.llokko-dsm-shell.llokko-dsm-blur-none .llokko-dsm-panel-form {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.llokko-dsm-eyebrow {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--llokko-dsm-accent);
}

.llokko-dsm-title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 700;
	max-width: none;
}

.llokko-dsm-lead {
	margin: 0;
	max-width: 70ch;
	font-size: 15px;
	line-height: 1.7;
	color: var(--llokko-dsm-text-secondary);
	margin-inline: auto;
}

.llokko-dsm-guidelines {
	margin-top: 34px;
	margin-bottom: 28px;
	width: min(100%, 1100px);
	margin-inline: auto;
	padding: 22px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.llokko-dsm-guidelines h3 {
	margin: 0 0 10px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--llokko-dsm-accent);
}

.llokko-dsm-guidelines-text,
.llokko-dsm-guidelines p {
	margin: 0;
	line-height: 1.8;
	color: var(--llokko-dsm-text-secondary);
}

.llokko-dsm-guidelines-accordion {
	display: grid;
	gap: 12px;
}

.llokko-dsm-guideline-item {
	border: 1px solid var(--llokko-dsm-border);
	border-radius: 16px;
	background: var(--llokko-dsm-input-surface);
	overflow: hidden;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.llokko-dsm-guideline-item.is-open {
	border-color: color-mix(in srgb, var(--llokko-dsm-accent) 20%, var(--llokko-dsm-border));
	background: var(--llokko-dsm-input-surface-focus);
}

.llokko-dsm-guideline-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 18px;
	border: 0;
	background: transparent;
	color: var(--llokko-dsm-text);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.llokko-dsm-guideline-trigger:focus,
.llokko-dsm-guideline-trigger:focus-visible {
	outline: none;
}

.llokko-dsm-guideline-icon {
	font-size: 20px;
	line-height: 1;
	color: var(--llokko-dsm-accent);
	transition: transform 0.2s ease;
}

.llokko-dsm-guideline-item.is-open .llokko-dsm-guideline-icon {
	transform: rotate(45deg);
}

.llokko-dsm-guideline-panel {
	position: relative;
	padding: 18px 18px 18px;
}

.llokko-dsm-guideline-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 18px;
	right: 18px;
	height: 1px;
	background: var(--llokko-dsm-divider);
	opacity: 0.9;
}

.llokko-dsm-labelradar-description {
	margin-bottom: 14px;
}

.llokko-dsm-guidelines-labelradar {
	text-align: center;
}

.llokko-dsm-guidelines-labelradar .llokko-dsm-labelradar-description {
	max-width: 72ch;
	margin-left: auto;
	margin-right: auto;
}

.llokko-dsm-guidelines-labelradar .llokko-dsm-embed {
	margin-top: 18px;
	text-align: left;
}

.llokko-dsm-embed iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: clamp(760px, 92vh, 1200px);
	min-height: 760px;
	border: 0;
	border-radius: 16px;
}

.llokko-dsm-shell-standalone .llokko-dsm-layout {
	align-items: stretch;
}

.llokko-dsm-form {
	margin: 0;
}

.llokko-dsm-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 16px;
	align-items: start;
}

.llokko-dsm-field {
	min-width: 0;
}

.llokko-dsm-field-full {
	grid-column: 1 / -1;
}

.llokko-dsm-label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--llokko-dsm-text);
}

.llokko-dsm-label span,
.llokko-dsm-choice span span {
	color: var(--llokko-dsm-accent);
}

.llokko-dsm-required-indicator {
	display: inline-block;
	margin-left: 4px;
	font-size: 0.8em;
	line-height: 1;
	vertical-align: super;
	color: var(--llokko-dsm-accent);
}

.llokko-dsm-input,
.llokko-dsm-select,
.llokko-dsm-textarea {
	display: block;
	width: 100%;
	padding: 15px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-color: var(--llokko-dsm-input-border);
	border-radius: 14px;
	background: var(--llokko-dsm-input-surface) !important;
	background-color: var(--llokko-dsm-input-surface) !important;
	color: var(--llokko-dsm-text) !important;
	font: inherit;
	color-scheme: dark;
	caret-color: var(--llokko-dsm-text);
	-webkit-text-fill-color: var(--llokko-dsm-text);
	box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface);
	-webkit-box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface);
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.llokko-dsm-input {
	padding: 18px 20px;
	line-height: 1.45;
}

.llokko-dsm-select,
.llokko-dsm-select option,
.llokko-dsm-select optgroup {
	background-color: rgba(15, 17, 21, 0.96) !important;
	color: var(--llokko-dsm-text) !important;
}

.llokko-dsm-textarea {
	max-width: 100%;
	resize: vertical;
	min-height: 148px;
}

.llokko-dsm-select {
	appearance: none;
}

.llokko-dsm-shell.llokko-dsm-panel-solid .llokko-dsm-input,
.llokko-dsm-shell.llokko-dsm-panel-solid .llokko-dsm-select,
.llokko-dsm-shell.llokko-dsm-panel-solid .llokko-dsm-textarea {
	background: var(--llokko-dsm-input-surface) !important;
	background-color: var(--llokko-dsm-input-surface) !important;
}

.llokko-dsm-input::placeholder,
.llokko-dsm-textarea::placeholder {
	color: var(--llokko-dsm-placeholder) !important;
	-webkit-text-fill-color: var(--llokko-dsm-placeholder) !important;
	opacity: 1;
}

.llokko-dsm-shell input.llokko-dsm-input::placeholder,
.llokko-dsm-shell textarea.llokko-dsm-textarea::placeholder,
.llokko-dsm-shell input.llokko-dsm-input::-webkit-input-placeholder,
.llokko-dsm-shell textarea.llokko-dsm-textarea::-webkit-input-placeholder,
.llokko-dsm-shell input.llokko-dsm-input::-moz-placeholder,
.llokko-dsm-shell textarea.llokko-dsm-textarea::-moz-placeholder,
.llokko-dsm-shell input.llokko-dsm-input:-ms-input-placeholder,
.llokko-dsm-shell textarea.llokko-dsm-textarea:-ms-input-placeholder {
	color: var(--llokko-dsm-placeholder) !important;
	-webkit-text-fill-color: var(--llokko-dsm-placeholder) !important;
	opacity: 1 !important;
}

.llokko-dsm-input:focus,
.llokko-dsm-select:focus,
.llokko-dsm-textarea:focus {
	outline: none;
	border-color: var(--llokko-dsm-accent);
	background: var(--llokko-dsm-input-surface-focus) !important;
	background-color: var(--llokko-dsm-input-surface-focus) !important;
	color: var(--llokko-dsm-text) !important;
	-webkit-text-fill-color: var(--llokko-dsm-text);
	transform: translateY(-1px);
	box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface-focus), 0 0 0 4px rgba(255, 255, 255, 0.02);
	-webkit-box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface-focus), 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.llokko-dsm-shell input.llokko-dsm-input,
.llokko-dsm-shell select.llokko-dsm-select,
.llokko-dsm-shell textarea.llokko-dsm-textarea {
	border-color: var(--llokko-dsm-input-border) !important;
	background: var(--llokko-dsm-input-surface) !important;
	background-color: var(--llokko-dsm-input-surface) !important;
	color: var(--llokko-dsm-text) !important;
	-webkit-text-fill-color: var(--llokko-dsm-text) !important;
}

.llokko-dsm-shell input.llokko-dsm-input,
.llokko-dsm-shell select.llokko-dsm-select {
	padding: 20px 24px !important;
	min-height: 60px;
	line-height: 1.45;
}

.llokko-dsm-shell input.llokko-dsm-input:hover,
.llokko-dsm-shell select.llokko-dsm-select:hover,
.llokko-dsm-shell textarea.llokko-dsm-textarea:hover {
	border-color: color-mix(in srgb, var(--llokko-dsm-accent) 22%, var(--llokko-dsm-input-border)) !important;
}

.llokko-dsm-shell input.llokko-dsm-input:focus,
.llokko-dsm-shell select.llokko-dsm-select:focus,
.llokko-dsm-shell textarea.llokko-dsm-textarea:focus {
	border-color: var(--llokko-dsm-accent) !important;
	background: var(--llokko-dsm-input-surface-focus) !important;
	background-color: var(--llokko-dsm-input-surface-focus) !important;
	color: var(--llokko-dsm-text) !important;
	-webkit-text-fill-color: var(--llokko-dsm-text) !important;
}

.llokko-dsm-shell input.llokko-dsm-input:-webkit-autofill,
.llokko-dsm-shell input.llokko-dsm-input:-webkit-autofill:hover,
.llokko-dsm-shell input.llokko-dsm-input:-webkit-autofill:focus,
.llokko-dsm-shell textarea.llokko-dsm-textarea:-webkit-autofill,
.llokko-dsm-shell textarea.llokko-dsm-textarea:-webkit-autofill:hover,
.llokko-dsm-shell textarea.llokko-dsm-textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--llokko-dsm-text) !important;
	caret-color: var(--llokko-dsm-text);
	transition: background-color 9999s ease-in-out 0s;
	-webkit-box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface) !important;
	box-shadow: inset 0 0 0 999px var(--llokko-dsm-input-surface) !important;
}

.llokko-dsm-shell input.llokko-dsm-input:-internal-autofill-selected,
.llokko-dsm-shell textarea.llokko-dsm-textarea:-internal-autofill-selected {
	background-color: var(--llokko-dsm-input-surface) !important;
	color: var(--llokko-dsm-text) !important;
	-webkit-text-fill-color: var(--llokko-dsm-text) !important;
}

.llokko-dsm-shell input.llokko-dsm-input:disabled,
.llokko-dsm-shell select.llokko-dsm-select:disabled,
.llokko-dsm-shell textarea.llokko-dsm-textarea:disabled {
	background: color-mix(in srgb, var(--llokko-dsm-input-surface) 82%, #000 18%) !important;
	background-color: color-mix(in srgb, var(--llokko-dsm-input-surface) 82%, #000 18%) !important;
	color: var(--llokko-dsm-text-secondary) !important;
	-webkit-text-fill-color: var(--llokko-dsm-text-secondary) !important;
	opacity: 0.72;
	box-shadow: inset 0 0 0 999px color-mix(in srgb, var(--llokko-dsm-input-surface) 82%, #000 18%) !important;
	-webkit-box-shadow: inset 0 0 0 999px color-mix(in srgb, var(--llokko-dsm-input-surface) 82%, #000 18%) !important;
}

.llokko-dsm-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.llokko-dsm-choice {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--llokko-dsm-input-border);
	border-radius: 999px;
	background: var(--llokko-dsm-input-surface);
	color: var(--llokko-dsm-text);
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.llokko-dsm-choice:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.18);
}

.llokko-dsm-choice input {
	margin: 0;
	accent-color: var(--llokko-dsm-accent);
}

.llokko-dsm-choice-checkbox {
	display: flex;
	align-items: flex-start;
	border-radius: 16px;
	font-size: 15px;
	line-height: 1.5;
}

.llokko-dsm-help,
.llokko-dsm-error {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.6;
}

.llokko-dsm-help {
	color: var(--llokko-dsm-help);
}

.llokko-dsm-error {
	color: var(--llokko-dsm-error);
}

.llokko-dsm-input.is-invalid,
.llokko-dsm-select.is-invalid,
.llokko-dsm-textarea.is-invalid,
.llokko-dsm-radio-group.is-invalid,
.llokko-dsm-choice-checkbox.is-invalid {
	border-color: rgba(255, 144, 138, 0.6);
}

.llokko-dsm-actions {
	margin-top: 26px;
}

.llokko-dsm-recaptcha {
	margin-bottom: 16px;
}

.llokko-dsm-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	min-width: 210px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--llokko-dsm-submit-start) 0%, var(--llokko-dsm-submit-end) 100%);
	color: var(--llokko-dsm-submit-text);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	box-shadow: 0 14px 30px var(--llokko-dsm-accent-shadow);
}

.llokko-dsm-shell button.llokko-dsm-submit {
	color: var(--llokko-dsm-submit-text);
	background: linear-gradient(135deg, var(--llokko-dsm-submit-start) 0%, var(--llokko-dsm-submit-end) 100%);
}

.llokko-dsm-submit:hover,
.llokko-dsm-submit:focus {
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow: 0 18px 36px var(--llokko-dsm-accent-shadow);
}

.llokko-dsm-alert,
.llokko-dsm-success {
	padding: 18px 20px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.llokko-dsm-alert-error {
	background: rgba(155, 28, 28, 0.18);
	color: #ffd7d5;
}

.llokko-dsm-success {
	background: rgba(29, 78, 51, 0.26);
	color: var(--llokko-dsm-success);
}

.llokko-dsm-success h3 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.llokko-dsm-success p:last-child {
	margin-bottom: 0;
}

.llokko-dsm-honeypot {
	position: absolute;
	left: -999em;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.llokko-dsm-shortcode-error {
	padding: 14px 16px;
	border-radius: 12px;
	background: #fff1f2;
	color: #9f1239;
}

@media (max-width: 920px) {
	.llokko-dsm-shell {
		width: min(96%, var(--llokko-dsm-shell-max-width));
	}

	.llokko-dsm-guidelines,
	.llokko-dsm-hero {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.llokko-dsm-shell {
		width: calc(100% - 16px);
		padding: 22px;
		border-radius: 22px;
	}

	.llokko-dsm-panel-form {
		padding: 18px;
	}

	.llokko-dsm-fields {
		grid-template-columns: 1fr;
	}

	.llokko-dsm-embed iframe {
		height: min(1180px, 84vh);
		min-height: 560px;
	}

	.llokko-dsm-submit {
		width: 100%;
	}
}
