/* ==========================================================================
   Turbohandel24 – Hauptstyles
   ========================================================================== */

:root {
	/* Hero-Hintergrund: Datei austauschen unter assets/images/hero-bg.jpg
	   oder --th24-hero-bg-image auf "none" setzen für reinen CSS-Look. */
	--th24-hero-bg-image: url("../images/hero-bg.svg");
	--th24-header-height: 3.75rem;
	--th24-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--th24-header-height) + 0.5rem);
}

body {
	margin: 0;
	-webkit-font-smoothing: antialiased;
	background: #0e1116;
}

/* Weißer Spalt zwischen Header/Sections (WP Block-Gap) entfernen */
.wp-site-blocks {
	padding: 0 !important;
	background: #0e1116;
}

.wp-site-blocks > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.wp-block-template-part,
.th24-main {
	margin: 0 !important;
}

.skip-link {
	display: none !important;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Sticky Header
   -------------------------------------------------------------------------- */

.th24-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: var(--th24-header-height);
	background: rgba(14, 17, 22, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: none;
	box-shadow: none;
}

.th24-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0.45rem 1.25rem;
	min-height: var(--th24-header-height);
}

.th24-header__logo img {
	height: 34px;
	width: auto;
}

.th24-header__nav {
	display: flex;
	align-items: center;
	gap: 0.25rem 1.25rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.th24-header__nav a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s var(--th24-ease);
}

.th24-header__nav a:hover,
.th24-header__nav a:focus-visible {
	color: var(--wp--preset--color--primary);
}

.th24-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1rem;
	border-radius: 6px;
	background: var(--wp--preset--color--accent);
	color: #fff !important;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.2s var(--th24-ease), background 0.2s var(--th24-ease);
}

.th24-header__cta:hover {
	background: #e8681f;
	transform: translateY(-1px);
	color: #fff !important;
}

.th24-nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	border-radius: 6px;
	padding: 0.45rem 0.7rem;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 860px) {
	.th24-nav-toggle {
		display: inline-flex;
	}

	.th24-header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.75rem 1.25rem 1.25rem;
		background: rgba(14, 17, 22, 0.97);
		border-bottom: 1px solid rgba(61, 195, 252, 0.12);
	}

	.th24-header.is-open .th24-header__nav {
		display: flex;
	}

	.th24-header__nav a {
		padding: 0.75rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.th24-header__cta {
		margin-top: 0.5rem;
		justify-content: center;
	}
}

/* --------------------------------------------------------------------------
   Sections (gemeinsam)
   -------------------------------------------------------------------------- */

.th24-section {
	padding: clamp(2.25rem, 5vw, 4rem) 1.25rem;
	position: relative;
}

.th24-section__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.th24-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--primary);
	margin: 0 0 0.75rem;
}

.th24-section h2 {
	margin: 0 0 1rem;
	font-size: var(--wp--preset--font-size--x-large);
}

.th24-lead {
	max-width: 40rem;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--slate);
	margin: 0 0 1.35rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.th24-hero {
	position: relative;
	min-height: min(72vh, 640px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1.25rem 3.25rem;
	overflow: hidden;
	color: #fff;
	background-color: #0a0d12;
	/* Austauschbar: Bilddatei oder nur CSS-Gradient */
	background-image:
		linear-gradient(165deg, rgba(10, 13, 18, 0.72) 0%, rgba(10, 13, 18, 0.88) 55%, rgba(14, 17, 22, 0.95) 100%),
		var(--th24-hero-bg-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.th24-hero__glow {
	position: absolute;
	inset: auto;
	width: 55vw;
	height: 55vw;
	max-width: 640px;
	max-height: 640px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}

.th24-hero__glow--cyan {
	top: -10%;
	left: -5%;
	background: #3dc3fc;
}

.th24-hero__glow--orange {
	bottom: -15%;
	right: -8%;
	background: #fd7628;
	opacity: 0.28;
}

.th24-hero__content {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	margin: 0 auto;
}

.th24-hero-in {
	opacity: 0;
	transform: translateY(22px);
	animation: th24-hero-in 0.85s var(--th24-ease) forwards;
	animation-delay: var(--d, 0s);
}

@keyframes th24-hero-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.th24-hero__logo {
	width: min(220px, 55vw);
	height: auto;
	margin: 0 auto 1rem;
	filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

.th24-hero h1 {
	color: #fff;
	font-size: var(--wp--preset--font-size--xx-large);
	margin: 0 0 0.4rem;
	letter-spacing: -0.03em;
}

.th24-hero h1 .th24-accent {
	color: var(--wp--preset--color--primary);
}

.th24-hero__tagline {
	margin: 0 auto 1.15rem;
	max-width: 28rem;
	font-size: var(--wp--preset--font-size--large);
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.4;
}

.th24-hero__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	max-width: 34rem;
	margin: 0 auto 1.4rem;
	text-align: left;
}

.th24-hero__col {
	padding: 1rem 1.1rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: border-color 0.25s var(--th24-ease), background 0.25s var(--th24-ease);
}

.th24-hero__col:hover {
	border-color: rgba(61, 195, 252, 0.35);
	background: rgba(61, 195, 252, 0.06);
}

.th24-hero__col-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--primary);
	margin-bottom: 0.35rem;
}

.th24-hero__col strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 650;
	color: #fff;
	margin-bottom: 0.25rem;
	letter-spacing: -0.01em;
}

.th24-hero__col p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 560px) {
	.th24-hero__split {
		grid-template-columns: 1fr;
		max-width: 20rem;
	}
}

.th24-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
}

.th24-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.95rem 1.55rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.2s var(--th24-ease), background 0.2s var(--th24-ease), box-shadow 0.2s var(--th24-ease);
}

.th24-btn:hover {
	transform: translateY(-2px);
}

.th24-btn--primary {
	background: var(--wp--preset--color--primary);
	color: #0e1116;
	box-shadow: 0 10px 30px rgba(61, 195, 252, 0.25);
}

.th24-btn--primary:hover {
	background: #5ecefd;
	color: #0e1116;
}

.th24-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.th24-btn--ghost:hover {
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
}

.th24-btn--accent {
	background: var(--wp--preset--color--accent);
	color: #fff;
}

.th24-btn--accent:hover {
	background: #e8681f;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Über uns
   -------------------------------------------------------------------------- */

.th24-about {
	background: var(--wp--preset--color--paper);
}

.th24-about__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

@media (max-width: 800px) {
	.th24-about__grid {
		grid-template-columns: 1fr;
	}
}

.th24-about__panel {
	background: linear-gradient(145deg, #0e1116 0%, #1a2433 100%);
	color: #fff;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border-radius: 12px;
	border: 1px solid rgba(61, 195, 252, 0.2);
}

.th24-about__panel h3 {
	color: #fff;
	margin: 0 0 1rem;
	font-size: 1.35rem;
}

.th24-about__panel ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.th24-about__panel li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.45;
}

.th24-about__panel li::before {
	content: "";
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	margin-top: 0.45rem;
	border-radius: 50%;
	background: var(--wp--preset--color--accent);
}

/* --------------------------------------------------------------------------
   Leistungen / Vorteile
   -------------------------------------------------------------------------- */

.th24-services {
	background: var(--wp--preset--color--mist);
}

.th24-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

@media (max-width: 1000px) {
	.th24-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.th24-services__grid {
		grid-template-columns: 1fr;
	}
}

.th24-card {
	background: #fff;
	border: 1px solid rgba(14, 17, 22, 0.08);
	border-radius: 10px;
	padding: 1.5rem 1.35rem;
	height: 100%;
	transition: border-color 0.25s var(--th24-ease), transform 0.25s var(--th24-ease);
}

.th24-card:hover {
	border-color: rgba(61, 195, 252, 0.45);
	transform: translateY(-3px);
}

.th24-card__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	color: var(--wp--preset--color--primary);
}

.th24-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.th24-card p {
	margin: 0;
	color: var(--wp--preset--color--slate);
	font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Amazon Showcase
   -------------------------------------------------------------------------- */

.th24-showcase {
	background: var(--wp--preset--color--ink);
	color: #fff;
}

.th24-showcase h2,
.th24-showcase .th24-lead {
	color: #fff;
}

.th24-showcase .th24-lead {
	color: rgba(255, 255, 255, 0.72);
}

.th24-showcase__video {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	margin-bottom: 1.35rem;
	aspect-ratio: 16 / 9;
	pointer-events: none;
	user-select: none;
}

.th24-showcase__video video,
.th24-showcase__player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.th24-marketplaces {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: flex-start;
}

.th24-showcase .th24-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.th24-showcase .th24-btn--ghost:hover {
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
}

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */

.th24-contact {
	background: var(--wp--preset--color--paper);
}

.th24-contact-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(14, 17, 22, 0.1);
	background: #fff;
	box-shadow: 0 20px 50px rgba(14, 17, 22, 0.06);
}

@media (max-width: 800px) {
	.th24-contact-card {
		grid-template-columns: 1fr;
	}
}

.th24-contact-card__info {
	padding: clamp(1.75rem, 4vw, 2.75rem);
}

.th24-contact-card__aside {
	padding: clamp(1.75rem, 4vw, 2.75rem);
	background: linear-gradient(160deg, #0e1116 0%, #152033 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.25rem;
}

.th24-contact-link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-decoration: none;
	color: #fff;
	padding: 1rem 1.1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: border-color 0.2s var(--th24-ease), background 0.2s var(--th24-ease);
}

.th24-contact-link:hover {
	border-color: var(--wp--preset--color--primary);
	background: rgba(61, 195, 252, 0.08);
	color: #fff;
}

.th24-contact-link span {
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
}

.th24-contact-link strong {
	font-size: 1.15rem;
	font-weight: 600;
	word-break: break-word;
}

.th24-response-note {
	margin: 1.5rem 0 0;
	padding: 0.9rem 1rem;
	background: rgba(61, 195, 252, 0.1);
	border-left: 3px solid var(--wp--preset--color--primary);
	border-radius: 0 6px 6px 0;
	color: var(--wp--preset--color--slate);
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.th24-footer {
	background: var(--wp--preset--color--ink);
	color: rgba(255, 255, 255, 0.7);
	padding: 1.75rem 1.25rem;
}

.th24-footer__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.th24-footer__logo img {
	height: 36px;
	width: auto;
	opacity: 0.95;
}

.th24-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
}

.th24-footer__links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	text-decoration: none;
}

.th24-footer__links a:hover {
	color: var(--wp--preset--color--primary);
}

.th24-footer__copy {
	width: 100%;
	margin: 0.5rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.th24-legal {
	padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem;
	background: #f7fafc !important;
	color: #0e1116 !important;
}

.th24-legal__inner {
	max-width: 42rem;
	margin: 0 auto;
	color: #0e1116;
}

.th24-legal .wp-block-post-title,
.th24-legal h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0e1116 !important;
	font-weight: 700;
}

.th24-legal h2,
.th24-legal h2.wp-block-heading {
	margin: 2.25rem 0 0.65rem;
	padding-top: 0.35rem;
	font-size: 1.35rem !important;
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: #0e1116 !important;
	font-weight: 700;
	border-top: 1px solid rgba(14, 17, 22, 0.08);
}

.th24-legal h2:first-of-type {
	border-top: none;
	padding-top: 0;
}

.th24-legal h3,
.th24-legal h3.wp-block-heading {
	margin: 1.35rem 0 0.45rem;
	font-size: 1.05rem !important;
	line-height: 1.35;
	letter-spacing: 0;
	color: #1a1f27 !important;
	font-weight: 650;
}

.th24-legal p,
.th24-legal li {
	color: #3a4250 !important;
	font-size: 1rem !important;
	line-height: 1.7;
	margin: 0 0 0.9rem;
}

.th24-legal a {
	color: #0a7eb8 !important;
	word-break: break-word;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.th24-legal a:hover {
	color: #fd7628 !important;
}

.th24-legal code {
	font-size: 0.88em;
	padding: 0.1em 0.35em;
	border-radius: 4px;
	background: rgba(14, 17, 22, 0.06);
	color: #1a1f27;
}

.th24-legal__notice {
	margin: 0 0 1.75rem;
	padding: 1rem 1.15rem;
	border-radius: 10px;
	border: 1px solid rgba(61, 195, 252, 0.35);
	background: rgba(61, 195, 252, 0.1);
	color: #0e1116 !important;
	font-size: 1rem !important;
	line-height: 1.55;
}

.th24-legal__notice strong {
	color: #0e1116;
}

.th24-legal__address {
	margin: 0.75rem 0 1rem;
	padding: 1rem 1.15rem;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(14, 17, 22, 0.08);
	line-height: 1.65;
	color: #3a4250 !important;
}

/* --------------------------------------------------------------------------
   Scroll animations
   -------------------------------------------------------------------------- */

.th24-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s var(--th24-ease),
		transform 0.75s var(--th24-ease);
	transition-delay: calc(var(--stagger, 0) * 90ms);
}

.th24-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.th24-card.is-visible .th24-card__icon {
	animation: th24-icon-pop 0.55s var(--th24-ease) both;
	animation-delay: calc(var(--stagger, 0) * 90ms + 0.15s);
}

@keyframes th24-icon-pop {
	from {
		opacity: 0;
		transform: scale(0.7) translateY(8px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* --------------------------------------------------------------------------
   Premium effects
   -------------------------------------------------------------------------- */

/* Scroll-Progress */
.th24-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	z-index: 1100;
	background: linear-gradient(90deg, #3dc3fc, #fd7628);
	box-shadow: 0 0 12px rgba(61, 195, 252, 0.55);
	pointer-events: none;
	transform-origin: left center;
}

/* Brand-Scrollbar */
html {
	scrollbar-width: thin;
	scrollbar-color: #3dc3fc #151a22;
}

html::-webkit-scrollbar {
	width: 10px;
}

html::-webkit-scrollbar-track {
	background: #151a22;
}

html::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #3dc3fc, #fd7628);
	border-radius: 999px;
	border: 2px solid #151a22;
}

/* Header beim Scrollen */
.th24-header {
	transition:
		background 0.35s var(--th24-ease),
		box-shadow 0.35s var(--th24-ease),
		border-color 0.35s var(--th24-ease);
}

.th24-header.is-scrolled {
	background: rgba(10, 13, 18, 0.92);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(61, 195, 252, 0.18);
}

.th24-header__nav a.is-active {
	color: var(--wp--preset--color--primary);
}

.th24-header__nav a.is-active::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 0.2rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #3dc3fc, #fd7628);
}

/* Hero: Grid, Linien, Partikel, Scroll-Hinweis */
.th24-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(61, 195, 252, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(61, 195, 252, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
	animation: th24-grid-drift 28s linear infinite;
	pointer-events: none;
}

@keyframes th24-grid-drift {
	from { background-position: 0 0, 0 0; }
	to { background-position: 64px 64px, 64px 64px; }
}

.th24-hero__glow--cyan {
	animation: th24-glow-pulse 12s ease-in-out infinite alternate;
}

.th24-hero__glow--orange {
	animation: th24-glow-pulse 14s ease-in-out infinite alternate-reverse;
}

@keyframes th24-glow-pulse {
	from { opacity: 0.28; filter: blur(80px); }
	to { opacity: 0.42; filter: blur(96px); }
}

.th24-hero__lines {
	position: absolute;
	inset: 18% -10% auto;
	z-index: 0;
	height: 40%;
	pointer-events: none;
	overflow: hidden;
}

.th24-hero__lines span {
	position: absolute;
	left: -20%;
	width: 140%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(61, 195, 252, 0.55), transparent);
	opacity: 0.45;
	animation: th24-line-sweep 7s ease-in-out infinite;
}

.th24-hero__lines span:nth-child(1) { top: 20%; animation-delay: 0s; }
.th24-hero__lines span:nth-child(2) { top: 50%; animation-delay: 1.4s; opacity: 0.3; }
.th24-hero__lines span:nth-child(3) { top: 78%; animation-delay: 2.8s; opacity: 0.55; background: linear-gradient(90deg, transparent, rgba(253, 118, 40, 0.5), transparent); }

@keyframes th24-line-sweep {
	0%, 100% { transform: translateX(-8%) scaleX(0.85); opacity: 0.15; }
	50% { transform: translateX(8%) scaleX(1); opacity: 0.55; }
}

.th24-hero__particles {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.th24-hero__particles i {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #3dc3fc;
	box-shadow: 0 0 10px rgba(61, 195, 252, 0.8);
	opacity: 0;
	animation: th24-particle 9s linear infinite;
}

.th24-hero__particles i:nth-child(odd) {
	background: #fd7628;
	box-shadow: 0 0 10px rgba(253, 118, 40, 0.75);
}

.th24-hero__particles i:nth-child(1) { left: 12%; animation-delay: 0s; }
.th24-hero__particles i:nth-child(2) { left: 28%; animation-delay: 1.2s; }
.th24-hero__particles i:nth-child(3) { left: 41%; animation-delay: 2.4s; }
.th24-hero__particles i:nth-child(4) { left: 55%; animation-delay: 0.6s; }
.th24-hero__particles i:nth-child(5) { left: 67%; animation-delay: 3.1s; }
.th24-hero__particles i:nth-child(6) { left: 78%; animation-delay: 1.8s; }
.th24-hero__particles i:nth-child(7) { left: 88%; animation-delay: 4s; }
.th24-hero__particles i:nth-child(8) { left: 18%; animation-delay: 5.2s; }

@keyframes th24-particle {
	0% { top: 88%; opacity: 0; transform: translateX(0) scale(0.6); }
	15% { opacity: 0.9; }
	100% { top: 8%; opacity: 0; transform: translateX(24px) scale(1.2); }
}

.th24-hero__logo.th24-hero-in {
	animation:
		th24-hero-in 0.85s var(--th24-ease) forwards,
		th24-logo-float 5.5s ease-in-out 1.2s infinite;
}

@keyframes th24-logo-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.th24-accent--shine {
	background: linear-gradient(100deg, #3dc3fc 0%, #9ae6ff 35%, #3dc3fc 55%, #7dd8ff 75%, #3dc3fc 100%);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: th24-text-shine 4.5s linear infinite;
}

@keyframes th24-text-shine {
	to { background-position: 220% center; }
}

.th24-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	z-index: 2;
	transform: translateX(-50%);
	width: 22px;
	height: 34px;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	opacity: 0.7;
}

.th24-hero__scroll span {
	display: block;
	width: 3px;
	height: 7px;
	margin: 6px auto 0;
	border-radius: 3px;
	background: #3dc3fc;
	animation: th24-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes th24-scroll-dot {
	0% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(12px); opacity: 0; }
}

/* Button Shine */
.th24-btn--shine {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.th24-btn--shine::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s var(--th24-ease);
	z-index: 0;
	pointer-events: none;
}

.th24-btn--shine:hover::after {
	transform: translateX(120%);
}

.th24-btn--shine > * {
	position: relative;
	z-index: 1;
}

/* Cards: Glow-Hover + leichter 3D-Tilt via JS */
.th24-card {
	transform-style: preserve-3d;
	will-change: transform;
	position: relative;
}

.th24-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(61, 195, 252, 0.16), transparent 40%);
	opacity: 0;
	transition: opacity 0.35s var(--th24-ease);
	pointer-events: none;
}

.th24-card:hover::before {
	opacity: 1;
}

.th24-card:hover {
	border-color: rgba(61, 195, 252, 0.45);
	box-shadow: 0 18px 40px rgba(14, 17, 22, 0.1);
}

/* Showcase: leuchtender Rahmen */
.th24-showcase__video {
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(61, 195, 252, 0.2),
		0 0 40px rgba(61, 195, 252, 0.12);
	animation: th24-video-glow 4.5s ease-in-out infinite;
}

.th24-showcase__video.is-visible .th24-showcase__player {
	animation: th24-video-ken 18s ease-in-out infinite alternate;
}

@keyframes th24-video-glow {
	0%, 100% {
		box-shadow:
			0 24px 60px rgba(0, 0, 0, 0.4),
			0 0 0 1px rgba(61, 195, 252, 0.18),
			0 0 28px rgba(61, 195, 252, 0.1);
	}
	50% {
		box-shadow:
			0 24px 60px rgba(0, 0, 0, 0.4),
			0 0 0 1px rgba(253, 118, 40, 0.28),
			0 0 42px rgba(253, 118, 40, 0.14);
	}
}

@keyframes th24-video-ken {
	from { transform: scale(1); }
	to { transform: scale(1.04); }
}

/* Kontaktkarte: Ambient Glow */
.th24-contact-card {
	position: relative;
}

.th24-contact-card::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(120deg, rgba(61, 195, 252, 0.55), transparent 40%, transparent 60%, rgba(253, 118, 40, 0.45));
	z-index: -1;
	opacity: 0.55;
	filter: blur(10px);
	animation: th24-card-aura 5s ease-in-out infinite alternate;
}

@keyframes th24-card-aura {
	from { opacity: 0.35; transform: scale(0.995); }
	to { opacity: 0.7; transform: scale(1.01); }
}

.th24-contact-link {
	position: relative;
	overflow: hidden;
}

.th24-contact-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(61, 195, 252, 0.15) 50%, transparent 65%);
	transform: translateX(-120%);
	transition: transform 0.55s var(--th24-ease);
}

.th24-contact-link:hover::before {
	transform: translateX(120%);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.th24-hero-in,
	.th24-reveal,
	.th24-hero__logo.th24-hero-in,
	.th24-hero__grid,
	.th24-hero__glow--cyan,
	.th24-hero__glow--orange,
	.th24-hero__lines span,
	.th24-hero__particles i,
	.th24-accent--shine,
	.th24-hero__scroll span,
	.th24-showcase__video,
	.th24-contact-card::after {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}

	.th24-progress,
	.th24-hero__scroll,
	.th24-hero__particles,
	.th24-hero__lines {
		display: none !important;
	}

	.th24-btn:hover,
	.th24-card:hover {
		transform: none;
	}
}
