.ll-kernbereiche-form {
	--ll-acid: #d2ff20;
	--ll-acid-soft: rgba(210, 255, 32, 0.22);
	--ll-ink: #111513;
	--ll-ink-soft: #4b514d;
	--ll-paper: #fbf8f2;
	--ll-paper-strong: #fffdf8;
	--ll-line: #d7d4cc;
	--ll-line-strong: #a9a39a;
	--ll-shadow: 0 28px 70px rgba(17, 21, 19, 0.12);
	--ll-radius-xl: 30px;
	--ll-radius-lg: 22px;
	--ll-radius-md: 16px;
	--ll-transition: 180ms ease;
	position: relative;
	width: min(1230px, calc(100% - 32px));
	margin: 0 auto 96px;
	font-family: "Onest", sans-serif;
	color: var(--ll-ink);
}

.ll-kernbereiche-form__backdrop {
	position: absolute;
	inset: 24px 6% auto auto;
	width: min(280px, 42vw);
	height: 240px;
	border-radius: 50%;
	background:
		radial-gradient(circle at center, rgba(210, 255, 32, 0.42) 0%, rgba(210, 255, 32, 0.18) 30%, rgba(210, 255, 32, 0.04) 60%, transparent 74%);
	filter: blur(18px);
	pointer-events: none;
}

.ll-kernbereiche-form__frame {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(169, 163, 154, 0.55);
	border-radius: var(--ll-radius-xl);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 100% 0%, rgba(210, 255, 32, 0.22), transparent 30%),
		var(--ll-paper);
	box-shadow: var(--ll-shadow);
	isolation: isolate;
}

.ll-kernbereiche-form__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 100% 0%, rgba(210, 255, 32, 0.26), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
	opacity: 0.95;
	pointer-events: none;
}

.ll-kernbereiche-form__rail,
.ll-kernbereiche-form__form {
	position: relative;
	z-index: 1;
}

.ll-kernbereiche-form__rail {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	margin-bottom: 34px;
}

.ll-kernbereiche-form__progress {
	height: 1px;
	background: linear-gradient(90deg, rgba(17, 21, 19, 0.12), rgba(17, 21, 19, 0.28), rgba(17, 21, 19, 0.12));
}

.ll-kernbereiche-form__step {
	display: flex;
	align-items: center;
	gap: 14px;
	opacity: 0.56;
	transition: opacity var(--ll-transition), transform var(--ll-transition);
}

.ll-kernbereiche-form__step.is-current {
	opacity: 1;
	transform: translateY(-1px);
}

.ll-kernbereiche-form__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(17, 21, 19, 0.7);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.ll-kernbereiche-form__step.is-current .ll-kernbereiche-form__count {
	background: var(--ll-acid);
}

.ll-kernbereiche-form__step-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ll-kernbereiche-form__step-copy strong {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ll-kernbereiche-form__eyebrow,
.ll-kernbereiche-form__mini-label,
.ll-kernbereiche-selection__label,
.ll-kernbereiche-extras__title {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ll-kernbereiche-form__step.is-current .ll-kernbereiche-form__eyebrow {
	color: #6c9920;
}

.ll-kernbereiche-form__header {
	display: grid;
	gap: 10px;
	margin-bottom: 28px;
}

.ll-kernbereiche-form__header h2 {
	margin: 0;
	font-family: "Onest", sans-serif;
	font-size: clamp(31px, 4vw, 42px);
	font-weight: 700;
	line-height: 0.98;
	text-wrap: balance;
}

.ll-kernbereiche-form__header p {
	max-width: 760px;
	margin: 0;
	color: var(--ll-ink-soft);
	font-size: 16px;
	line-height: 1.6;
}

.ll-kernbereiche-form__panel[hidden] {
	display: none !important;
}

.ll-kernbereiche-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ll-kernbereiche-tile {
	position: relative;
	display: grid;
	gap: 12px;
	min-height: 216px;
	padding: 24px;
	border: 1px solid rgba(169, 163, 154, 0.56);
	border-radius: var(--ll-radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 247, 239, 0.82)),
		var(--ll-paper-strong);
	box-shadow: 0 14px 40px rgba(17, 21, 19, 0.06);
	cursor: pointer;
	transition:
		transform var(--ll-transition),
		border-color var(--ll-transition),
		box-shadow var(--ll-transition),
		background-color var(--ll-transition);
}

.ll-kernbereiche-tile:hover {
	transform: translateY(-3px);
	border-color: rgba(17, 21, 19, 0.34);
	box-shadow: 0 22px 50px rgba(17, 21, 19, 0.09);
}

.ll-kernbereiche-tile.is-selected {
	border-color: rgba(17, 21, 19, 0.92);
	background:
		linear-gradient(180deg, rgba(210, 255, 32, 0.86), rgba(248, 255, 212, 0.96)),
		var(--ll-paper-strong);
	box-shadow:
		0 22px 55px rgba(17, 21, 19, 0.12),
		inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.ll-kernbereiche-tile__input,
.ll-kernbereiche-pill__input,
.ll-kernbereiche-form__honeypot {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ll-kernbereiche-tile__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(17, 21, 19, 0.45);
	border-radius: 15px;
	background: rgba(210, 255, 32, 0.88);
}

.ll-kernbereiche-tile__icon svg {
	width: 24px;
	height: 24px;
}

.ll-kernbereiche-tile__title {
	font-family: "Onest", sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 0.98;
}

.ll-kernbereiche-tile__copy {
	color: rgba(17, 21, 19, 0.74);
	font-size: 15px;
	line-height: 1.55;
}

.ll-kernbereiche-extras {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.ll-kernbereiche-extras__list,
.ll-kernbereiche-selection__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ll-kernbereiche-pill,
.ll-kernbereiche-selection__chips span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid rgba(17, 21, 19, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color var(--ll-transition), transform var(--ll-transition), background-color var(--ll-transition);
}

.ll-kernbereiche-pill:hover {
	transform: translateY(-1px);
	border-color: rgba(17, 21, 19, 0.35);
}

.ll-kernbereiche-pill.is-selected,
.ll-kernbereiche-selection__chips span {
	background: rgba(210, 255, 32, 0.38);
	border-color: rgba(17, 21, 19, 0.58);
}

.ll-kernbereiche-selection {
	display: grid;
	gap: 12px;
	margin-top: 20px;
	padding: 16px 18px;
	border: 1px dashed rgba(17, 21, 19, 0.18);
	border-radius: var(--ll-radius-md);
	background: rgba(255, 255, 255, 0.52);
}

.ll-kernbereiche-selection__chips--dense {
	min-height: 20px;
}

.ll-kernbereiche-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ll-kernbereiche-field,
.ll-kernbereiche-consent {
	display: grid;
	gap: 10px;
}

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

.ll-kernbereiche-field span,
.ll-kernbereiche-consent span {
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
}

.ll-kernbereiche-field input,
.ll-kernbereiche-field textarea {
	width: 100%;
	min-width: 0;
	padding: 15px 17px;
	border: 1px solid rgba(169, 163, 154, 0.56);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--ll-ink);
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 16px;
	line-height: 1.45;
	transition: border-color var(--ll-transition), box-shadow var(--ll-transition), transform var(--ll-transition);
}

.ll-kernbereiche-field input::placeholder,
.ll-kernbereiche-field textarea::placeholder {
	color: rgba(17, 21, 19, 0.44);
}

.ll-kernbereiche-field input:focus,
.ll-kernbereiche-field textarea:focus {
	outline: none;
	border-color: rgba(17, 21, 19, 0.88);
	box-shadow: 0 0 0 4px rgba(210, 255, 32, 0.18);
}

.ll-kernbereiche-consent {
	grid-template-columns: 22px 1fr;
	align-items: flex-start;
	padding: 16px 18px;
	border: 1px solid rgba(169, 163, 154, 0.46);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.88);
}

.ll-kernbereiche-consent input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--ll-acid);
}

.ll-kernbereiche-consent a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.ll-kernbereiche-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
}

.ll-kernbereiche-form__hint {
	color: rgba(17, 21, 19, 0.64);
	font-size: 14px;
}

.ll-kernbereiche-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 16px 28px;
	border: 1px solid rgba(17, 21, 19, 0.92);
	border-radius: 999px;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform var(--ll-transition), background-color var(--ll-transition), color var(--ll-transition), box-shadow var(--ll-transition);
}

.ll-kernbereiche-form__button:hover {
	transform: translateY(-1px);
}

.ll-kernbereiche-form__button--primary {
	background: var(--ll-acid);
	color: var(--ll-ink);
	box-shadow: 0 14px 30px rgba(210, 255, 32, 0.22);
}

.ll-kernbereiche-form__button--primary:hover {
	background: #c3f414;
}

.ll-kernbereiche-form__button--ghost {
	background: transparent;
	color: var(--ll-ink);
}

.ll-kernbereiche-form__button--ghost:hover {
	background: rgba(255, 255, 255, 0.7);
}

.ll-kernbereiche-form__button[disabled] {
	opacity: 0.6;
	cursor: wait;
	transform: none;
}

.ll-kernbereiche-form__status {
	min-height: 24px;
	margin: 18px 0 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 15px;
	font-weight: 600;
}

.ll-kernbereiche-form__status.is-error {
	color: #8f2719;
}

.ll-kernbereiche-form__status.is-success {
	color: #365b00;
}

.ll-kernbereiche-field.is-invalid input,
.ll-kernbereiche-field.is-invalid textarea,
.ll-kernbereiche-consent.is-invalid {
	border-color: rgba(173, 36, 21, 0.62);
	box-shadow: 0 0 0 4px rgba(173, 36, 21, 0.08);
}

@media (max-width: 1024px) {
	.ll-kernbereiche-form {
		width: min(100%, calc(100% - 24px));
		margin-bottom: 72px;
	}

	.ll-kernbereiche-form__frame {
		padding: 22px;
	}

	.ll-kernbereiche-grid,
	.ll-kernbereiche-fields {
		grid-template-columns: 1fr;
	}

	.ll-kernbereiche-form__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ll-kernbereiche-form__button {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.ll-kernbereiche-form__rail {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 22px;
	}

	.ll-kernbereiche-form__progress {
		display: none;
	}

	.ll-kernbereiche-form__step {
		justify-content: flex-start;
	}

	.ll-kernbereiche-form__frame {
		padding: 18px;
		border-radius: 24px;
	}

	.ll-kernbereiche-tile {
		min-height: 176px;
		padding: 20px;
	}

	.ll-kernbereiche-tile__title {
		font-size: 26px;
	}

	.ll-kernbereiche-form__header h2 {
		font-size: 30px;
	}

	.ll-kernbereiche-consent {
		grid-template-columns: 20px 1fr;
		padding: 14px 16px;
	}
}
