@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%;
}

.hero-slide-1 { background-image: url("/ui/theme/img/home/carousel/1.svg"); }
.hero-slide-2 { background-image: url("/ui/theme/img/home/carousel/1.svg"); }
.hero-slide-3 { background-image: url("/ui/theme/img/home/carousel/1.svg"); }

/* 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; }

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; }

.cdp-journey-kicker {
	color: var(--c-subhead);
	letter-spacing: .08em;
}

.cdp-journey-card {
	background: #fff;
	border: 1px solid #d7e7ef;
	border-radius: .75rem;
	padding: 1.1rem 1rem;
}

.cdp-journey-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	margin-bottom: .65rem;
	border-radius: 50%;
	background: #0f6987;
	color: #fff;
	font-weight: 700;
	font-size: .85rem;
}

.cdp-premium-teaser {
	border: 1px solid #cfe2ec;
	border-radius: .85rem;
	padding: 1rem;
	background: #f7fcff;
}

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