@font-face {
	font-family: 'GothamSSm';
	src: url('/ui/theme/fonts/gothamssm/gothamssm_xlight.woff2') format('woff2');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GothamSSm';
	src: url('/ui/theme/fonts/gothamssm/gothamssm_light.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GothamSSm';
	src: url('/ui/theme/fonts/gothamssm/gothamssm_medium.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	/* NEW PALETTE — PETROL / AMBER / COOL GREY */

	/* Foundations */
	--c-paper: #f8fbfd;          /* sehr helles Ice-Blue White */
	--c-surface: #e8f6fb;        /* helle Flächen, Ice Mist */
	--c-text: #0b2331;           /* Deep Petrol Graphite (Text) */

	/* Primary (Petrol) */
	--c-headings: #134a63;       /* dunkel, seriös → Headlines */
	--c-subhead: #1c7fa6;        /* Primär-Buttons, Subheads */
	--c-muted: #4bb4d9;          /* Hover/Accent, helleres Petrol */

	/* Neutrals */
	--c-muted-2: #6b7280;        /* sekundärer Text */
	--c-muted-3: #d1d5db;        /* subtilere Flächen */
	--c-border: #d1d5db;         /* Linien, Harmonisch zu Petrol */

	--c-amber: color(display-p3 0.847 0.663 0.314);
	--c-amber-dark: color(display-p3 0.561 0.383 0.044);

	/* Links */
	--c-link: #1c7fa6;           /* gleich wie Subhead */

	/* Soft BG for Pills/Chips/Covers */
	--c-headings-soft: rgba(19, 74, 99, 0.08);

	/* Shadows (bleiben gleich – passen perfekt zu Petrol) */
	--shadow-elevated: 0 0px 8px rgba(0, 0, 0, 0.15);
	--shadow-elevated-strong: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.site-name {
	font-weight: 700;
	color: #555;
	text-transform: none;
}

body {
	font-family: GothamSSm, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}

/* Nach Bootstrap laden! */
h1, .h1 { font-size: calc(2rem * 1); }
h2, .h2 { font-size: calc(2rem * .7); }
h3, .h3 { font-size: calc(1.75rem * .7); }
h4, .h4 { font-size: calc(1.5rem * .7); }
h5, .h5 { font-size: calc(1.25rem * .7); }
h6, .h6 { font-size: calc(1rem * .7); }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	color: var(--c-headings);
	font-weight: 600;
	margin-bottom: .6em;
	text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration: none;
	color: var(--c-subhead);
}

label {
	text-transform: uppercase;
	color: var(--c-subhead);
	font-weight: bold;
	font-size: 75%;
	margin-bottom: .3em;
	padding-left: .6em;
}

.label-small {
	color: var(--c-muted-2);
	font-size: 60%;
}

.label-checkbox {
	font-size: .9em;
	text-transform: none;
	font-weight: 400;
	position: relative;
	top: 0px;
}

textarea:hover,
input:hover,
input[type]:hover,
.uneditable-input:hover {
	border-color: var(--c-headings);
}

textarea,
input,
input[type],
.uneditable-input {
	border: none;
	border-bottom: 1px solid;
	border-radius: 0;
	border-color: var(--c-border);
	outline: none;
	box-shadow: none !important;
}

/* float-labels */
/* powered by tony star */
.has-float-label,
.has-float-label2 {
	position: relative;
}

.has-float-label label {
	position: absolute;
	cursor: text;
	font-size: 65%;
	opacity: 1;
	color: var(--c-subhead);
	transition: all .2s;
	top: -.7em;
	left: .75rem;
	z-index: 3;
	line-height: 1;
	padding: 0 1px;
	text-transform: uppercase;
}

.has-float-label2 label {
	position: absolute;
	cursor: text;
	font-size: 75%;
	opacity: 1;
	color: var(--c-subhead);
	transition: all .2s;
	top: -1em;
	left: 1.35rem;
	z-index: 3;
	line-height: 1;
	padding: 0 1px;
	text-transform: uppercase;
}

.has-float-label label::after,
.has-float-label2 label::after {
	content: " ";
	display: block;
	position: absolute;
	background: var(--c-paper);
	height: 2px;
	top: 50%;
	left: -.2em;
	right: -.2em;
	z-index: -1;
}

.has-float-label .form-control::placeholder,
.has-float-label2 .form-control::placeholder {
	opacity: .5;
	transition: all .2s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder,
.has-float-label2 .form-control:placeholder-shown:not(:focus)::placeholder {
	opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)+label {
	font-size: 120%;
	top: .5em;
	font-weight: normal;
	text-transform: none;
}

.has-float-label2 .form-control:placeholder-shown:not(:focus)+label {
	font-size: 100%;
	color: var(--c-muted-2);
	top: .6em;
	left: 1.6em;
	font-weight: normal;
	text-transform: none;
}

.input-group .has-float-label { display: table-cell; }
.input-group .has-float-label .form-control { border-radius: .25rem; }
.input-group .has-float-label:not(:last-child) .form-control { border-bottom-right-radius: 0; border-top-right-radius: 0; }
.input-group .has-float-label:not(:first-child) .form-control { border-bottom-left-radius: 0; border-top-left-radius: 0; margin-left: -1px; }

#login { position: relative; left: -12px; border: none; }
label[for="login"] { left: 0; }

/* Breadcrumbs */
#breadcrumbs { margin: 0; padding: 0; list-style-type: none; }
#breadcrumbs li {
	font-weight: 300;
	display: inline-block;
	font-size: 1rem;
	color: var(--c-muted);
	text-transform: uppercase;
}

.feature-caption {
	font-size: .8rem;
	font-weight: 200;
	color: var(--c-text);
	background-color: var(--c-surface);
	border-bottom: 1px solid var(--c-muted-2);
	padding: .5rem;
}

.feature-feature h2, .feature-feature h3 { line-height: 1.0; margin-bottom: .2em; font-weight: bold; }
.feature-feature h4, .feature-feature h5, .feature-feature h6 { line-height: 1.0; }

.feature-body ul {
	border-left: 2px solid var(--c-border);
	list-style-type: decimal;
	padding: 1rem 2rem;
	margin-left: 2rem;
	margin-right: 2rem;
	background-color: var(--c-surface);
}

#tldr-container {
	margin: 2rem 0 2rem 0;
	border-left: 2px var(--c-border) solid;
	padding: 2rem;
	background-color: var(--c-surface);
}

.feature-header {
	background-blend-mode: color-burn;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.feature-header #subhead { text-transform: uppercase; color: white; text-shadow: 1px 1px 0px black; }
.feature-header #head { font-weight: bold; color: white; text-shadow: 1px 1px 0px black; padding-top: 0; margin: 0 0 .8em 0; }
.feature-header #sell { color: white; text-shadow: 1px 1px 0px black; font-weight: bold; font-size: 1.2em; }

.feature-feature .small { font-size: .8rem; }
.feature-feature p { margin-bottom: 1.2rem; }
.feature-feature p:last-child, p:last-child { margin-bottom: 0; }

.feature-body > p:first-child:first-letter {
	font-weight: bold;
	color: var(--c-muted);
	font-size: 4em;
	line-height: 1;
	margin: -.1em 2px -.1em -2px;
	float: left;
}

.feature-body p { margin-bottom: 1.5em; }

.feature-info {
	margin-top: 1em;
	font-size: .8em;
	font-weight: bold;
	color: var(--c-muted-2);
}

.feature-body {
	margin-top: 1rem;
	line-height: 1.7;
	color: var(--c-text);
}

.feature-video {
	background: linear-gradient(135deg, #ffffff 0%, #f2f4f7 50%, #e5e7eb 51%, #f8fafc 100%);
	border: 1px solid var(--c-border);
}

.feature-side { margin-bottom: 3rem; }
.feature-side-subhead { text-transform: uppercase; font-weight: bold; font-size: .7em; }
.feature-side-headline { font-weight: bold; font-size: 1.3em; margin: 0 0 .8em 0; }
.feature-side-teaser { line-height: 1.6; font-size: 0.8em; color: var(--c-muted); }
#category-description { font-weight: 700; }

.tag, .tag-provider {
	display: inline-block;
	font-size: .8em;
	padding: 6px;
	background-color: var(--c-surface);
	color: var(--c-muted);
	border-radius: .5em;
	font-weight: bold;
}
.tag-provider { margin: 0 .8em .8em 0em; }

/* Notifications */
#notifications {
	z-index: 10000;
	position: fixed;
	top: 6.5em;
	right: 2em;
	margin-right: -2em;
}

.notification {
	border-radius: 14px;
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.15),
		0 3px 8px rgba(0, 0, 0, 0.10);
	width: 20em;
	margin-bottom: 1em;
	margin-right: 2em;
}

.notification-wrapper.hidden { display: none; }

.notification-wrapper {
	transition-duration: 600ms;
	transform: translate(0%);
	opacity: .9;
}

.notification-wrapper.loading {
	opacity: 0;
	transform: translate(100%);
}

.notification-close { float: right; }
.notification .message b { font-weight: 700; }

.alert-notification h5, .alert-notification h6 { font-weight: 700; color: #fff; }
.alert-notification { background-color: var(--c-headings); border-color: #111827; color: #fff; }
.alert-notification hr { border-top-color: #374151; }
.alert-notification .alert-link { color: #e6e6e6; }

.progress {
	border-radius: 0;
	width: 100%;
	background: var(--c-surface);
	overflow: hidden;
	height: 42px;
}

.progress-bar {
	height: 100%;
	background: var(--c-muted);
	width: 0;
	transition: width 0.25s ease;
}

/* Animation für die Box */
#manual { overflow: hidden; transition: max-height 0.25s ease; max-height: none; }
#manual:not(.open) { max-height: 0; }

.handle { margin-left: .5rem; }

#sortable { list-style: none; padding: 0; }

#sortable li {
	transition: background-color .1s ease, color .1s ease;
	padding: .25rem .8rem;
	margin-bottom: .4rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	cursor: grab;
}

#sortable li.sortable-chosen,
#sortable li.sortable-drag {
	color: white;
	background-color: var(--c-amber);
}

#sortable li.dropped {
	background-color: var(--c-amber);
	color: white;
	transition: background-color .1s ease, color .1s ease;
}

/* Keine Textauswahl beim Draggen */
#sortable, #sortable *{
	-webkit-user-select: none;
	user-select: none;
}

/* iOS: kein "Callout" (Copy/Define) beim Long-Press */
#sortable{ -webkit-touch-callout: none; }

.placeholder {
	opacity: 0.25;
	border: 2px dashed #999;
	width: 100%;
	background-color: white !important;
	color: black !important;
}

#header-divider { background-color: var(--c-muted); height: 3rem; }

.carousel-item {
	height: 500px;
	background-image: url("/ui/theme/img/home/carousel/1.svg");
	background-size: cover;
	background-position: 50%;
}

/* Overlay mit diagonalem Verlauf von links oben nach rechts unten */
.carousel-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 0.3) 30%,
		rgba(0, 0, 0, 0.1) 55%,
		rgba(0, 0, 0, 0.0) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Damit der Text und Buttons über dem Overlay liegen */
.carousel-caption,
.carousel-caption * { z-index: 2; }

#heroCarousel h1 { font-weight: 100; }

#heroCarousel h1,
#heroCarousel p {
	color: white;
	filter: drop-shadow(1px 1px .6px rgba(0, 0, 0, 0.594));
}

.hr-with-link {
	position: relative;
	border-bottom: 1px solid #bbb;
	margin: 2rem 1rem 0 0;
}

.hr-with-link a {
	position: absolute;
	right: 3em;
	bottom: -0.75em;
	padding: 0 0.5em;
	font-size: 0.8rem;
	font-style: italic;
	text-decoration: none;
}

.hr-with-link a:hover,
a:hover { color: var(--c-headings); }

a {
	transition: color .25s ease;
	color: var(--c-link);
	text-decoration: none;
}

@media (max-width: 991px) {
	.carousel-caption .btn {
		display: block;
		width: 100%;
		margin: 8px 0;
	}
}

@media (max-width: 575px) {
	h1, .h1 { font-size: calc(2rem) !important; }
	h2, .h2 { font-size: calc(1.75rem * .7) !important; }
	h3, .h3 { font-size: calc(1.5rem * .7) !important; }
	h4, .h4 { font-size: calc(1.25rem * .7) !important; }
	h5, .h5 { font-size: calc(1 * .7) !important; }
	h6, .h6 { font-size: calc(0.75 * .7) !important; }
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .55);
	margin: 0 .4em;
}

.carousel-indicators .active { background-color: #fff; }

.carousel-indicators [data-bs-target]:focus,
.carousel-indicators [data-bs-target]:focus-visible {
	outline: none;
	box-shadow: none;
}

h1, h2, h3 { text-wrap: balance; }
.lead { line-height: 1.55; }

/* Buttons */
.btn {
	border-radius: 999px;
	padding: 0.75rem 2rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: var(--shadow-elevated);
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-elevated-strong);
}

.btn:focus-visible {
	outline: 2px solid var(--c-muted);
	outline-offset: 2px;
	box-shadow: var(--shadow-elevated-strong);
}

.btn-primary {
	background-color: var(--c-subhead);
	border-color: var(--c-subhead);
	color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--c-muted);
	border-color: var(--c-muted);
	color: #fff;
}

.btn-primary:active,
.btn-primary:focus:active {
	background-color: var(--c-headings);
	border-color: var(--c-headings);
	transform: translateY(0);
	box-shadow: var(--shadow-elevated);
}

.btn-outline { background-color: transparent; border-width: 2px; }

.btn-outline-primary {
	color: var(--c-subhead);
	border-color: var(--c-subhead);
	background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	box-shadow: var(--shadow-elevated-strong);
	background-color: var(--c-subhead);
	border-color: white;
	color: white;
	transform: translateY(-1px);
}

.btn-outline-primary:active,
.btn-outline-primary:focus:active {
	box-shadow: var(--shadow-elevated);
	background-color: var(--c-headings);
	border-color: white;
	transform: translateY(0);
}

.hero .btn-primary { font-size: 1.07rem; padding: 0.9rem 2.3rem; }
.hero .btn-outline-light {
	border-radius: 999px;
	padding: 0.75rem 1.9rem;
	font-weight: 500;
	border-width: 2px;
}
.hero .btn-outline-light:hover { color: white; background-color: rgba(255, 255, 255, 0.25); }

li > p { margin-bottom: 1em !important; }

/* Gray-Scales für spezielle Cases */
.gray-100 { background-color: #202221; }
.gray-200 { background-color: #343635; }
.gray-300 { background-color: #4a4c4b; }
.gray-400 { background-color: #616362; }
.gray-500 { background-color: #7a7c7b; }
.gray-600 { background-color: #949694; }
.gray-700 { background-color: #afb1af; }
.gray-800 { background-color: #cbcdcb; }
.gray-900 { background-color: #e8eae8; }

.gray-gradient-100 { background: linear-gradient(to bottom, #1a1a1a, #333333); }
.gray-gradient-200 { background: linear-gradient(to bottom, #333333, #4d4d4d); }
.gray-gradient-300 { background: linear-gradient(to bottom, #4d4d4d, #666666); }
.gray-gradient-400 { background: linear-gradient(to bottom, #666666, #808080); }
.gray-gradient-500 { background: linear-gradient(to bottom, #808080, #999999); }
.gray-gradient-600 { background: linear-gradient(to bottom, #999999, #b3b3b3); }
.gray-gradient-700 { background: linear-gradient(to bottom, #b3b3b3, #cccccc); }
.gray-gradient-800 { background: linear-gradient(to bottom, #cccccc, #e6e6e6); }
.gray-gradient-900 { background: linear-gradient(to bottom, #e6e6e6, #ffffff); }

#heroCarousel .carousel-caption { left: 0; right: 0; }
#heroCarousel .carousel-caption .container { padding-left: var(--bs-gutter-x, 1.5rem); padding-right: var(--bs-gutter-x, 1.5rem); }

.container { max-width: 1280px; padding: 0 32px; }

.hero-marker {
	position: absolute;
	right: 30px;
	width: 135px;
	height: 63px;
	background-color: var(--c-muted);
	background-image: url("/ui/theme/img/home/wertecockpit.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 3;
}

#email-disclaimer { font-size: .7em; color: #888; }

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	transition: opacity .75s ease, visibility .75s ease;
}

.overlay.show { opacity: 1; visibility: visible; }
#overlay .spinner-border { width: 81px; height: 81px; }

.mirror {
	-webkit-box-reflect: below 10px linear-gradient(to bottom,
		rgba(255, 255, 255, 0) 75%,
		rgba(255, 255, 255, 0.3) 100%);
}

.dropdown-menu { min-width: 3rem; }

#logo { color: var(--c-headings); }

/* =========================================================
   HVP ÜBERSICHT – konsolidiert (nur hvp-* Klassen)
========================================================= */

/* Grid / Animation */
.hvp-grid{
	position: relative;
	margin-top: 1.5rem;
}

.hvp-card-animate{
	transition: transform 0.3s ease, opacity 0.3s ease;
	will-change: transform;
}

.hvp-fade{ opacity: 0; }

.hvp-fadeout{
	opacity: 0 !important;
	transition: opacity 1s ease;
}

/* Overlay-Link (Karte klickbar) */
.hvp-card-link{
	position: absolute;
	inset: 0;
	z-index: 5;
	border-radius: inherit;
	text-indent: -9999px;
}

/* Card */
.hvp-card3{
	position: relative;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 18px;
	padding: 1rem 1.1rem 0.95rem;
	overflow: hidden;
	box-shadow: var(--shadow-elevated);
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease,
		background-color .18s ease;
}

/* Brand-Line */
.hvp-card3::before{
	content:"";
	position:absolute;
	left:0; right:0; top:0;
	height:4px;
	background: linear-gradient(90deg, var(--c-headings), var(--c-muted));
}

.hvp-card3:hover{
	transform: translateY(-2px);
	box-shadow: var(--shadow-elevated-strong);
	border-color: var(--c-muted-3);
	background: #fff;
}

/* Klickbares über Overlay */
.hvp-card3 .form-check,
.hvp-card3 .hvp-open-link,
.hvp-card3 .hvp-feedback-link,
.hvp-card3 .hvp-delete,
.hvp-card3 .hvp-icon-btn,
.hvp-card3 .checkbox-toggle,
.hvp-card3 .badge-hvp-upgrade,
.hvp-card3 .label-premium,
.hvp-card3 .label-pending,
.hvp-card3 .hvp-btn{
	position: relative;
	z-index: 10;
}

/* Header */
.hvp-card3-top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .9rem;
	padding-top: .2rem;
}

.hvp-card3-left{ min-width: 0; }

.hvp-card3-right{
	flex-shrink: 0;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .35rem;
}

.hvp-card3-name{
	font-weight: 700;
	letter-spacing: .01em;
	color: var(--c-headings);
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Meta (ID/Datum) – unauffällig, keine Pills */
.hvp-card3-meta{
	margin-top: .35rem;
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	color: var(--c-muted-2);
	font-size: .78rem;
	font-weight: 600;
}

.hvp-chip{
	display: inline;
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--c-muted-2);
	font-weight: 600;
	font-size: .78rem;
}

.hvp-card3-meta .hvp-chip + .hvp-chip::before{
	content: "•";
	margin-right: .6rem;
	color: var(--c-border);
}

/* Report öffnen Link */
.hvp-open-link{
	font-weight: 700;
	color: var(--c-link);
	text-decoration: none;
}
.hvp-open-link:hover{ color: var(--c-headings); }

/* Divider */
.hvp-card3-divider{
	height: 1px;
	background: color-mix(in srgb, var(--c-border) 70%, #fff 30%);
	margin: .85rem 0 .75rem 0;
}

/* Footer */
.hvp-card3-bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .8rem;
}

/* Switch: Bootstrap form-switch negative margins killen */
.hvp-card3 .form-switch{ padding-left: 0 !important; }
.hvp-card3 .form-switch .form-check-input{ margin-left: 0 !important; }

/* Switch Look */
.hvp-card3 .form-check-input{
	background-color: var(--c-border) !important;
	border-color: var(--c-border) !important;
}
.hvp-card3 .form-check-input:checked{
	background-color: var(--c-headings) !important;
	border-color: var(--c-headings) !important;
}
.hvp-card3 .form-check-input:focus{
	box-shadow: 0 0 0 0.15rem rgba(83,83,83,0.25) !important;
}

.hvp-card3 .form-check label{
	margin: 0;
	padding: 0;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--c-muted-2) !important;
}

/* Delete: nur Icon */
.hvp-icon-btn,
.hvp-delete{
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 0 !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	line-height: 1 !important;
	color: var(--c-muted-2) !important;
	cursor: pointer;
}
.hvp-icon-btn:hover,
.hvp-delete:hover{
	color: var(--c-headings) !important;
}

/* Status Pills + Feedback (alle gleich groß) */
.label-premium,
.label-pending,
.badge-hvp-upgrade,
.hvp-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .22rem .65rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .03em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
}

/* Pending */
.label-pending{
	background: color-mix(in srgb, var(--c-surface) 75%, #fff 25%);
	border: 1px solid color-mix(in srgb, var(--c-muted) 35%, var(--c-border) 65%);
	color: var(--c-subhead);
}

/* Premium */
.label-premium{
	background: color-mix(in srgb, var(--c-amber) 18%, #fff 82%);
	border: 1px solid color-mix(in srgb, var(--c-amber) 35%, var(--c-border) 65%);
	color: var(--c-amber-dark);
}

/* Upgrade */
.badge-hvp-upgrade{
	color: #fff;
	background: linear-gradient(135deg, var(--c-amber-dark), var(--c-amber));
	border: 0;
	box-shadow: var(--shadow-elevated);
	position: relative;
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.badge-hvp-upgrade:hover,
.badge-hvp-upgrade:focus-visible{
	transform: scale(1.03);
	color: #fff;
}

/* Shimmer */
.badge-hvp-upgrade::before{
	content:"";
	position:absolute;
	inset:0;
	background: linear-gradient(120deg,
		transparent 0%,
		rgba(255, 255, 255, 0.45) 35%,
		rgba(255, 255, 255, 0.9) 50%,
		rgba(255, 255, 255, 0.45) 65%,
		transparent 100%);
	transform: translateX(-150%);
	opacity: 0;
	animation: hvp-upgrade-shimmer 8s linear infinite;
}

@keyframes hvp-upgrade-shimmer{
	0%   { transform: translateX(-150%); opacity: 0; }
	4%   { opacity: 0.7; }
	10%  { transform: translateX(150%); opacity: 0.8; }
	12%  { opacity: 0; }
	100% { transform: translateX(150%); opacity: 0; }
}

/* Feedback Button */
.hvp-btn{
	box-shadow: none;
	border: 1px solid color-mix(in srgb, var(--c-muted) 35%, var(--c-border) 65%);
	background: color-mix(in srgb, var(--c-surface) 75%, #fff 25%);
	color: var(--c-subhead);
}
.hvp-btn:hover{
	background: color-mix(in srgb, var(--c-surface) 65%, #fff 35%);
}
.hvp-btn-primary{
	border: 1px solid color-mix(in srgb, var(--c-muted) 35%, var(--c-border) 65%);
	background: color-mix(in srgb, var(--c-surface) 75%, #fff 25%);
	color: var(--c-subhead);
}

/* Klickbarkeit sichern */
.hvp-feedback-link{
	position: relative;
	z-index: 10001;
	pointer-events: auto;
}

/* (falls noch genutzt) */
.hvp-status-row{
	font-size: 0.72rem;
	color: var(--c-muted-2);
}

/* Mobile */
@media (max-width: 520px){
	.hvp-card3-top{
		flex-direction: column;
		align-items: stretch;
	}
	.hvp-card3-right{
		align-items: flex-start;
		text-align: left;
	}
	.hvp-card3-bottom{
		flex-direction: column;
		align-items: stretch;
	}
	.hvp-btn{ width: 100%; }
}

/* ========================================================= */

#request-magic-link {
	transition: all 0.25s ease;
	white-space: nowrap;
}

#request-magic-link .spinner-wrap {
	display: flex;
	align-items: center;
	width: 0;
	overflow: hidden;
	transition: width 0.25s ease;
}

#request-magic-link .spinner-wrap.loading { width: 1.5rem; }

/* Report-Cover */

.report-cover--chapter .report-cover-inner {
	position: relative;
	padding-top: 3rem;
}

.report-cover-title,
.report-cover--chapter .report-cover-title {
	position: relative;
	padding: 0.35rem 1.75rem;
	border-radius: 999px;
	background-color: var(--c-headings-soft);
	display: inline-block;
}

.report-cover--chapter .report-cover-name {
	font-size: 1.1rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #6c757d;
	margin-bottom: .25rem;
}

.report-cover--chapter .report-cover-date.fs-4 {
	font-size: 1.5rem !important;
	font-weight: 700;
	color: var(--c-headings, #222);
	letter-spacing: .06em;
}

.report-cover {
	min-height: 100vh;
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.report-cover-inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.report-cover-tag {
	letter-spacing: .18em;
	font-size: .85rem;
	text-transform: uppercase;
	color: #6c757d;
	margin-bottom: 1.5rem;
}

.report-cover-subtitle {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 2rem;
	color: #4b5563;
	max-width: 30rem;
	line-height: 1.5;
}

.report-cover-hero {
	margin: 1.5rem auto 2.5rem;
	max-width: 420px;
	width: 100%;
}

.report-cover-section-hero {
	margin: 5.5rem auto 4.5rem;
	max-width: 400px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.report-cover-hero img,
.report-cover-section-hero img {
	display: block;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	object-fit: cover;
}

.report-cover-hero img { width: 100%; }
.report-cover-section-hero img { width: 48%; }

.report-cover-name-label {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: #6c757d;
	margin-bottom: .4rem;
}

.report-cover-name {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.report-cover-date { font-size: 0.95rem; color: #6c757d; }

.report-cover-divider {
	width: 80px;
	height: 2px;
	background: var(--c-headings, #333);
	border-radius: 999px;
	margin: 1.5rem auto 1.8rem;
}

.report-cover-footer {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.9rem;
	color: #6c757d;
}

.report-cover-footer .site-name { font-weight: 500; }
.report-cover-footer img { max-height: 30px; }

.site-logo {
	background: url("/ui/theme/img/logos/logo.svg") no-repeat;
	background-size: contain;
}

.report-cover h3 { font-size: 1em !important; }

/* SVG-Tachos */
svg text, .lbl, .arc-text { font-family: GothamSSm, ui-sans-serif, system-ui, sans-serif; }

.rim { stroke: #d9dde2; stroke-width: 8; fill: none; opacity: 1; vector-effect: non-scaling-stroke; pointer-events: none; }

.rim-inner {
	stroke: #9aa3af;
	stroke-width: 6;
	fill: none;
	opacity: .28;
	filter: url(#rimSoften);
	vector-effect: non-scaling-stroke;
	pointer-events: none;
}

.arc-track {
	stroke: var(--c-border);
	stroke-width: 14;
	fill: none;
	stroke-linecap: butt;
	opacity: .35;
	vector-effect: non-scaling-stroke;
	pointer-events: none;
}

.fill-bg {
	stroke-width: 16;
	fill: none;
	stroke-linecap: butt;
	vector-effect: non-scaling-stroke;
	stroke: url(#arcGrad);
}

.tick-major {
	stroke: var(--c-muted-2);
	stroke-width: 2;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
	pointer-events: none;
}

.lbl {
	font-weight: 500;
	font-size: 8.8px;
	line-height: 1;
	fill: #495057;
	letter-spacing: .005em;
	pointer-events: none;
}

.arc-text {
	font-weight: 700;
	font-size: 13.5px;
	line-height: 1;
	fill: var(--c-headings);
	letter-spacing: .06em;
}

.dot-halo { fill: var(--c-paper); stroke: var(--c-border); stroke-width: 0.5; vector-effect: non-scaling-stroke; }
.dot-core { fill: var(--c-subhead); }

.fill-anim {
	stroke-dasharray: 0 200;
	animation: cdp-fill var(--dur, 900ms) ease-out forwards;
	animation-play-state: var(--play, paused);
}

.value-dot-rot {
	transform-origin: 110px 110px;
	transform: rotate(-225deg);
	animation: cdp-dot-rot var(--dur, 900ms) ease-out forwards;
	animation-play-state: var(--play, paused);
	pointer-events: none;
}

.needle-anim {
	transform-origin: 110px 110px;
	transform: rotate(-225deg);
	animation: cdp-needle var(--dur, 900ms) ease-out forwards;
	animation-play-state: var(--play, paused);
}

@keyframes cdp-fill { from { stroke-dasharray: 0 200; } to { stroke-dasharray: var(--fill) 200; } }
@keyframes cdp-dot-rot { from { transform: rotate(-225deg); } to { transform: rotate(calc(-225deg + 1.35deg * var(--fill))); } }
@keyframes cdp-needle { from { transform: rotate(-225deg); } to { transform: rotate(calc(-225deg + 1.35deg * var(--needle))); } }

.tacho-grid { max-width: 900px; margin: 0 auto; }

.tacho-headline {
	grid-column: 1 / -1;
	font-size: 0.95rem !important;
	font-weight: 500;
	letter-spacing: .1em;
	background-color: var(--c-muted);
	color: #fff;
	margin: 0 0 1.2rem;
	padding: 0.55rem 1.75rem;
	text-align: left;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tacho-headline .tacho-subhead { font-weight: 600; font-size: 0.8rem; opacity: 0.9; }

.tacho-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 2.5rem;
	row-gap: 1.2rem;
	margin-bottom: 2.5rem;
}

.tacho-meta { display: flex; flex-direction: column; align-items: stretch; }
.tacho-meta .tacho-wrap { display: flex; justify-content: center; align-items: center; }

.tacho { display: block; width: 100%; height: auto; max-width: 240px; }

.tacho-text { font-size: 14px; line-height: 1.4; color: var(--c-text); margin-top: 4px; }

.interpretation {
	background-color: #f4f6f8;
	padding: 0.75rem 0.9rem;
	border-left: 4px solid var(--c-muted);
	margin-top: 0.2rem;
}

.interpretation h4 {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #495057;
	margin-bottom: 0.35rem;
}

.interpretation p { font-size: 0.9rem; margin-bottom: .4rem; }
.interpretation p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
	#sortable li {
		font-size: .8em;
		padding: .35rem;
		border: none;
		border-bottom: 3px solid white;
		background-color:#fafafa;
		margin-bottom: 0;
	}

	.report-cover { padding: 2.5rem 1.25rem; }
	.report-cover-title { font-size: 1.9rem; }
	.report-cover-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
	.report-cover-hero { margin: 1.25rem auto 2rem; max-width: 360px; }
	.report-cover-name { font-size: 1.4rem; }
	.tacho-headline { font-size: 1.2em !important; }

	.tacho-row { display: flex; flex-direction: column; gap: 1rem; }

	.tacho-row > * { order: 0; }
	.tacho-row > :nth-child(1) { order: 1; }
	.tacho-row > :nth-child(3) { order: 2; }
	.tacho-row > :nth-child(2) { order: 3; }
	.tacho-row > :nth-child(4) { order: 4; }
}

@media print {
	@page { size: auto; }

	body * { visibility: hidden !important; }

	.tacho-grid { max-width: none !important; padding: 0 !important; margin: 0 !important; }

	#print-area, #print-area * { visibility: visible !important; }

	#print-area {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}

	* { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

	.fill-anim { stroke-dasharray: var(--fill) 200 !important; animation: none !important; }
	.value-dot-rot { transform: rotate(calc(-225deg + 1.35deg * var(--fill))) !important; animation: none !important; }
	.needle-anim { transform: rotate(calc(-225deg + 1.35deg * var(--needle))) !important; animation: none !important; }

	.page-break-before { break-before: page; page-break-before: always; }

	.report-cover {
		min-height: 100vh;
		padding-top: 5vh;
		padding-bottom: 5vh;
		page-break-after: always;
		position: relative;
	}

	.report-cover-footer {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
		margin-top: 0 !important;
		bottom: 3vh;
	}

	.report-cover-title { font-size: 26pt; }
	.report-cover-subtitle { font-size: 14pt; margin-bottom: 1.8rem; }
	.report-cover-name { font-size: 18pt; }
	.report-cover-date { font-size: 11pt; }
	.report-cover-hero { max-width: 11cm; margin: 1.5rem auto 2rem; }

	.report-cover-hero img,
	.report-cover-section-hero img {
		box-shadow: none !important;
		border-radius: 18px;
		border: 0.5pt solid #888;
	}
}

h1.landing { font-size: 3.5rem; }
#empty-log { cursor: pointer; }

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
	box-shadow: none !important;
	outline: none !important;
}

.offcanvas.offcanvas-end { --bs-offcanvas-width: 80%; }

/* Nur im Offcanvas: Rahmen der Sprach-Dropdown-LISTE entfernen */
#mainNavOffcanvas .dropdown-menu {
	border: none !important;
	box-shadow: none !important;
}

.text-amber { color: var(--c-amber); }

/* ===== Graue Hero-Section mit gespiegelt SVG + Overlay + Parallax ===== */
.gray-hero {
	background-color: black;
	position: relative;
	overflow: hidden;
}

.gray-hero::before {
	content: "";
	position: absolute;
	top: -80vh;
	bottom: -80vh;
	left: -20vw;
	right: -20vw;
	background-image: url("/ui/theme/img/home/carousel/1.svg");
	background-size: cover;
	transform: translate3d(0, calc(var(--parallax-offset, 0) + 80px), 0) scale(-1, -1);
	z-index: 0;
	pointer-events: none;
	opacity: .7;
}

.gray-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top left,
		rgba(0, 0, 0, 1)   0%,
		rgba(0, 0, 0, 0.3) 30%,
		rgba(0, 0, 0, 0.1) 55%,
		rgba(0, 0, 0, 0.0) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.gray-hero > .container { position: relative; z-index: 2; }

#cookiesdetails { display: none; }
#cookiesdetails.is-visible { display: block; }