/* ============================================================
   Obsidian – neovio cms Theme
   OLED-Dunkel, Violett-Cyan-Akzente, Space Grotesk/DM Sans,
   Bento-Karten mit dezenten Glow-Effekten
   ============================================================ */

:root {
  --bg: #09090f;
  --surface: #12141d;
  --surface-2: #181b27;
  --line: #242838;
  --line-strong: #323750;
  --ink: #e7e9f4;
  --ink-soft: #c0c4d8;
  --muted: #9aa0b5;
  --faint: #5d6378;
  --head: #ffffff;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --accent-soft: rgba(139, 92, 246, .14);
  --accent-line: rgba(139, 92, 246, .4);
  --grad: linear-gradient(120deg, #a78bfa, #22d3ee);
  --grad-btn: linear-gradient(120deg, #8b5cf6, #0ea5e9);
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 12px 32px rgba(0, 0, 0, .35);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .55);
  --glow: 0 0 0 1px rgba(139, 92, 246, .25), 0 8px 40px rgba(139, 92, 246, .22);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 1160px;
  --narrow: 760px;
  --gutter: clamp(16px, 4vw, 32px);
}

* { box-sizing: border-box; }
/* scroll-padding hält fokussierte/angesprungene Inhalte unter dem
   Sticky-Header sichtbar (WCAG 2.4.11 Fokus nicht verdeckt) */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; scrollbar-gutter: stable; }
.blocks-flow > *:has(> .lc-section-anchor) { position: relative; }
.lc-section-anchor {
  position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px;
  pointer-events: none;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(139, 92, 246, .12), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(34, 211, 238, .06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--head);
  margin: 0 0 .5em;
  text-wrap: balance;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; }
a { color: var(--accent-2); }
a:hover { color: #67e8f9; }

::selection { background: rgba(139, 92, 246, .45); color: #fff; }
:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; border-radius: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.cms-preview-bar {
  position: fixed; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 10000;
  display: flex; align-items: center; gap: 10px; max-width: calc(100vw - 36px);
  margin: 0; padding: 10px 12px 10px 14px;
  color: var(--ink); background: rgba(18, 20, 29, .94);
  border: 1px solid var(--accent-line); border-radius: 999px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  font: 600 13px/1.35 var(--font-body);
}
.cms-preview-bar strong { color: var(--head); }
.cms-preview-bar span { color: var(--muted); font-weight: 500; }
.cms-preview-bar a {
  flex: 0 0 auto; padding: 6px 11px; color: #fff; background: var(--accent);
  border-radius: 999px; text-decoration: none;
}
.cms-preview-bar a:hover { color: #fff; background: #7c3aed; }
@media (max-width: 680px) {
  .cms-preview-bar { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; border-radius: 16px; }
  .cms-preview-bar span { display: none; }
  .cms-preview-bar a { margin-left: auto; }
}

.container { max-width: calc(var(--container) + var(--gutter) + var(--gutter)); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-narrow { max-width: var(--narrow); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 9, 15, .72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: border-color .2s ease, background .25s ease, transform .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(139, 92, 246, .25);
  background: rgba(9, 9, 15, .88);
}
/* Ausblenden beim Runterscrollen (data-scroll="hide") */
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: calc(var(--container) + var(--gutter) + var(--gutter)); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 24px;
  min-height: 70px;
  transition: min-height .25s ease;
}

.site-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--head); text-decoration: none; letter-spacing: -.01em;
}
.brand-dot {
  width: 15px; height: 15px; border-radius: 5px; rotate: 45deg;
  background: var(--grad-btn);
  box-shadow: 0 0 14px rgba(139, 92, 246, .65);
}

.site-nav { margin-left: auto; }
.nav-list { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav-list a {
  display: inline-block; padding: 10px 15px; border-radius: 10px;
  color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: background .15s ease, color .15s ease;
}
.nav-list a:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.nav-list a.is-active, .nav-list a[aria-current="page"] {
  background: var(--accent-soft); color: #c4b5fd;
  box-shadow: inset 0 0 0 1px var(--accent-line);
}

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 0; cursor: pointer; padding: 10px;
  min-width: 44px; min-height: 44px;
}
.nav-toggle-box { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.nav-toggle-box span { height: 2.5px; background: var(--head); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-open .nav-toggle-box span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-box span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Seitengerüst
   ============================================================ */

.site-main { min-height: 55vh; }

.page-head { padding: clamp(40px, 7vw, 84px) 0 clamp(8px, 2vw, 24px); }
.page-title {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 700;
}
.page-intro { color: var(--muted); font-size: 1.12rem; max-width: 640px; }

.blocks-flow { padding-bottom: clamp(48px, 7vw, 96px); }
.blocks-flow > * {
  max-width: calc(var(--container) + var(--gutter) + var(--gutter));
  margin-left: auto; margin-right: auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.blocks-flow.is-narrow > * { max-width: var(--narrow); }
.blocks-flow > .lc-hero,
.blocks-flow > .lc-stats,
.blocks-flow > .lc-cta,
.blocks-flow > .lc-hcar,
.blocks-flow > .lc-sgal {
  max-width: none; padding-left: 0; padding-right: 0;
}
.blocks-flow > .lc-hero {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.blocks-flow > .lc-hero.lc-hero-video {
  padding-left: 0;
  padding-right: 0;
}
.blocks-flow > .lc-hero.lc-hero-video.is-framed {
  width: min(calc(var(--container) + 40px), calc(100% - var(--gutter) - var(--gutter)));
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(18px, 3vw, 28px);
  max-height: 610px;
}
.blocks-flow.is-home > :first-child { margin-top: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Platzhalter-Grafik
   ============================================================ */

.lc-ph {
  display: grid; place-items: center; width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(380px 220px at 80% 0%, rgba(139, 92, 246, .22), transparent 60%),
    linear-gradient(140deg, #161927, #0e1018);
  color: #4c5269;
}
.lc-ph .lc-ph-icon { width: 15%; max-width: 64px; min-width: 32px; height: auto; opacity: .9; }

/* ============================================================
   Text-Blöcke
   ============================================================ */

.lc-paragraph { font-size: 1.05rem; margin-top: 0; margin-bottom: 1.1em; color: var(--ink-soft); }
.lc-align-center { text-align: center; }
.lc-align-right { text-align: right; }

.lc-heading { margin-top: 1.6em; }
h2.lc-heading { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3.lc-heading { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4.lc-heading { font-size: 1.18rem; }

.lc-list { margin: 0 auto 1.3em; padding-left: calc(var(--gutter) + 1.3em); font-size: 1.05rem; color: var(--ink-soft); }
.lc-list li { margin: 7px 0; }
.lc-list li::marker { color: var(--accent-2); font-weight: 700; }

.lc-quote {
  margin: 2em auto;
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px 28px;
}
.lc-quote blockquote {
  margin: 0; font-family: var(--font-head); font-size: 1.25rem; font-weight: 500;
  color: var(--head); line-height: 1.5;
}
.lc-quote figcaption { margin-top: 10px; color: var(--muted); font-size: .95rem; }

.lc-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.4em auto; }
.lc-buttons.lc-align-center { justify-content: center; }
.lc-buttons.lc-align-right { justify-content: flex-end; }

.lc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; min-height: 48px;
  border-radius: 12px; text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.lc-btn:hover { transform: translateY(-2px); }
.lc-btn:active { transform: translateY(0) scale(.98); }
.lc-btn-primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 8px 28px rgba(139, 92, 246, .4);
}
.lc-btn-primary:hover { color: #fff; box-shadow: 0 12px 38px rgba(139, 92, 246, .55); }
.lc-btn-secondary {
  background: rgba(255, 255, 255, .08); color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
}
.lc-btn-secondary:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.lc-btn-outline {
  border: 1px solid var(--accent-line); color: #c4b5fd; background: transparent;
}
.lc-btn-outline:hover { background: var(--accent-soft); color: #ddd6fe; }

.lc-code {
  background: #0c0e16; color: #cdd3ea;
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
  overflow-x: auto; font-size: .9rem; line-height: 1.6;
  margin: 1.6em auto;
}
.lc-code code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; }

/* ============================================================
   Medien-Blöcke
   ============================================================ */

.lc-image { margin: 2em auto; }
.lc-image img { border-radius: var(--radius); display: block; box-shadow: var(--shadow); border: 1px solid var(--line); }
.lc-image figcaption, .lc-gallery figcaption, .lc-embed figcaption {
  text-align: center; color: var(--muted); font-size: .92rem; margin-top: 10px;
}
.blocks-flow > .lc-image.lc-width-wide { max-width: calc(var(--container) + 120px); }
.blocks-flow > .lc-image.lc-width-full { max-width: none; padding-left: 0; padding-right: 0; }
.lc-image.lc-width-full img { border-radius: 0; border: 0; }

.lc-gallery { display: grid; gap: 14px; margin: 2em auto; }
.lc-gallery.lc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lc-gallery.lc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lc-gallery.lc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.lc-gallery-item { margin: 0; }
.lc-gallery-item img {
  border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%;
  display: block; border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease;
}
.lc-gallery-item a:hover img { transform: scale(1.02); border-color: var(--accent-line); }

.lc-embed { margin: 2em auto; }
.lc-embed-ratio {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.lc-embed-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Layout-Blöcke
   ============================================================ */

.lc-columns { display: grid; gap: 28px; margin: 2.2em auto; }
.lc-columns.lc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lc-columns.lc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lc-columns.lc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.lc-column-img { border-radius: var(--radius-sm); margin-bottom: 14px; border: 1px solid var(--line); }
.lc-column-heading { font-size: 1.2rem; }
.lc-column p { color: var(--ink-soft); }

.lc-table { margin: 2.2em auto; }
.lc-table-scroll {
  max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface);
  box-shadow: var(--shadow);
}
.lc-table-scroll:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.lc-table table {
  width: 100%; min-width: calc(var(--lc-table-cols, 2) * 150px);
  border-collapse: separate; border-spacing: 0; color: var(--ink-soft);
}
.lc-table caption {
  padding: 16px 18px; text-align: left; color: var(--head);
  font-family: var(--font-head); font-weight: 650; font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.lc-table th, .lc-table td {
  padding: 15px 18px; text-align: left; vertical-align: top;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lc-table th { color: var(--head); font-weight: 650; }
.lc-table thead th { background: var(--surface-2); }
.lc-table tbody th[scope="row"] { background: rgba(255, 255, 255, .025); }
.lc-table.is-striped tbody tr:nth-child(even) { background: rgba(255, 255, 255, .025); }
.lc-table tr > :last-child { border-right: 0; }
.lc-table tbody tr:last-child > * { border-bottom: 0; }

.lc-separator { border: 0; margin: 3em auto; }
.lc-separator-line {
  width: 130px; height: 2px; border-radius: 2px;
  background: var(--grad);
}
.lc-separator-wide { width: 100%; max-width: var(--narrow); border-top: 1px solid var(--line); }
.lc-separator-dots { width: auto; text-align: center; }
.lc-separator-dots::before {
  content: "···"; letter-spacing: 16px; font-size: 1.6rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============================================================
   Sections – gemeinsame Elemente
   ============================================================ */

.lc-section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(28px, 5vw, 48px); }
.lc-section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; }
.lc-section-subtitle { color: var(--muted); font-size: 1.1rem; margin: 0; }

.lc-kicker {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  margin: 0 0 10px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.lc-features, .lc-pricing, .lc-team, .lc-testimonials, .lc-faq, .lc-logos, .lc-contact,
.lc-media-text, .lc-image-cards, .lc-logo-slider {
  margin-top: clamp(48px, 8vw, 96px);
}

/* ============================================================
   Hero – Varianten
   ============================================================ */

.lc-hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 75% -15%, rgba(139, 92, 246, .35), transparent 60%),
    radial-gradient(760px 420px at 10% 110%, rgba(34, 211, 238, .18), transparent 60%),
    #0a0a12;
  background-size: cover; background-position: center;
  color: #fff;
  display: flex; align-items: center;
  padding: clamp(64px, 11vw, 150px) var(--gutter);
  overflow: hidden;
}
/* Dezentes Linienraster über dem Hero */
.lc-hero-classic::after, .lc-hero-cardbg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent);
}
.lc-hero.has-image.has-overlay::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 10, .72), rgba(5, 5, 10, .6));
}

/* Hero mit Hintergrund-Video (per JS gesteuert, BFSG-konform mit Pause-Button) */
.lc-hero-video { overflow: hidden; }
.lc-hero-video-el {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; border: 0;
}
.lc-hero-video.has-overlay::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 10, .66), rgba(5, 5, 10, .58));
}
.lc-hero-video .lc-hero-inner {
  z-index: 2;
  max-width: calc(var(--container) + var(--gutter) + var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.lc-hero-video-toggle {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  color: #fff; border-radius: 999px;
  background: rgba(5, 5, 10, .5); border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer; opacity: .55;
  transition: opacity .2s ease, background .2s ease;
}
body:has(.nvc-manage) .lc-hero-video-toggle { bottom: 72px; }
.lc-hero-video-toggle:hover, .lc-hero-video-toggle:focus-visible { opacity: 1; background: rgba(5, 5, 10, .72); }
.lc-hero-video-toggle .lc-hero-video-ico-play { display: none; }
.lc-hero-video.is-paused .lc-hero-video-toggle .lc-hero-video-ico-pause { display: none; }
.lc-hero-video.is-paused .lc-hero-video-toggle .lc-hero-video-ico-play { display: inline; }
.lc-hero-normal { min-height: 320px; }
.lc-hero-large { min-height: clamp(420px, 62vh, 660px); }
.lc-hero-full { min-height: calc(100svh - 70px); }
.lc-hero-video.lc-hero-full { min-height: 100svh; }
.lc-hero-video.is-framed.lc-hero-normal { min-height: clamp(320px, 34vw, 460px); }
.lc-hero-video.is-framed.lc-hero-large { min-height: clamp(420px, 42vw, 610px); }
.lc-hero-video.is-framed.lc-hero-full { min-height: clamp(480px, 52vw, 610px); }
.lc-hero-video.is-framed .lc-hero-inner {
  max-width: min(560px, 100%);
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(28px, 5vw, 64px);
  padding-right: clamp(24px, 4vw, 48px);
}
.lc-hero-video.is-framed.lc-hero-align-center .lc-hero-inner {
  margin-left: auto;
  margin-right: auto;
}
.lc-hero-video.is-framed .lc-hero-title { font-size: 2.2rem; }
.lc-hero-inner { position: relative; max-width: var(--container); margin: 0 auto; width: 100%; z-index: 1; }
.lc-hero-align-center .lc-hero-inner { text-align: center; }
.lc-hero-align-center .lc-buttons { justify-content: center; }
.lc-hero-title {
  color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.8rem); font-weight: 700;
  letter-spacing: -.02em;
  max-width: 840px; margin: 0 auto .4em;
}
.lc-hero-align-left .lc-hero-title { margin-left: 0; }
.lc-hero-subtitle {
  color: rgba(231, 233, 244, .78); font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 640px; margin: 0 auto 1.6em;
}
.lc-hero-align-left .lc-hero-subtitle { margin-left: 0; }
.lc-hero .lc-buttons { margin: 0; }
.lc-hero .lc-btn-outline { border-color: rgba(255, 255, 255, .25); color: #fff; }
.lc-hero .lc-btn-outline:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.lc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139, 92, 246, .16); color: #c4b5fd;
  border: 1px solid var(--accent-line);
  border-radius: 999px; padding: 6px 16px; margin: 0 0 20px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.lc-hero-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}
.lc-hero-align-left .lc-hero-badge { margin-left: 0; }

.lc-hero-scroll {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .4); border-radius: 999px;
}
.lc-hero-scroll::after {
  content: ""; position: absolute; left: 50%; top: 8px; translate: -50% 0;
  width: 4px; height: 9px; border-radius: 4px;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  animation: lc-scroll-hint 1.8s ease-in-out infinite;
}
@keyframes lc-scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: .2; }
}

/* ---------- Variante: Split ---------- */

.lc-hero-split {
  display: block;
  background:
    radial-gradient(820px 460px at 90% 0%, rgba(139, 92, 246, .2), transparent 60%),
    var(--bg);
  padding: clamp(56px, 9vw, 120px) var(--gutter);
}
.lc-hero-split-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.lc-hero-split .lc-hero-title { margin-left: 0; margin-right: 0; font-size: clamp(2rem, 4.6vw, 3.3rem); }
.lc-hero-split .lc-hero-subtitle { color: var(--muted); margin-left: 0; margin-right: 0; }

.lc-hero-stats {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 44px);
  margin: 34px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.lc-hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.lc-hero-stats strong {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-hero-stats span { color: var(--muted); font-size: .88rem; font-weight: 500; }

.lc-hero-collage { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; align-items: stretch; }
.lc-hero-collage-main img, .lc-hero-collage-main .lc-ph {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--glow);
}
.lc-hero-collage-side { display: grid; gap: 14px; align-content: stretch; }
.lc-hero-collage-side img, .lc-hero-collage-side .lc-ph {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ---------- Variante: Karte mit Dithering ---------- */

.lc-hero-cardbg {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 18% 0%, rgba(139, 92, 246, .4), transparent 55%),
    radial-gradient(720px 420px at 85% 100%, rgba(34, 211, 238, .25), transparent 60%),
    #07070c;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(64px, 10vw, 140px) var(--gutter);
}
.lc-hero-cardbg::before {
  content: ""; position: absolute; inset: -60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .16; mix-blend-mode: overlay;
  animation: lc-dither 1.2s steps(4) infinite;
  pointer-events: none;
}
@keyframes lc-dither {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-22px, 14px); }
  50%  { transform: translate(16px, -18px); }
  75%  { transform: translate(-12px, -10px); }
  100% { transform: translate(0, 0); }
}
.lc-hero-card {
  position: relative; max-width: 680px; width: 100%; z-index: 1;
  text-align: center;
  background: rgba(18, 20, 29, .55);
  border: 1px solid rgba(167, 139, 250, .25);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.lc-hero-card .lc-hero-title { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.lc-hero-card .lc-buttons { justify-content: center; margin-bottom: 0; }

/* ============================================================
   Features
   ============================================================ */

.lc-features-grid { display: grid; gap: 18px; }
.lc-features-grid.lc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lc-features-grid.lc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lc-features-grid.lc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.lc-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.lc-feature:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: var(--glow); }
.lc-feature-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: #c4b5fd; margin-bottom: 16px;
}
.lc-feature-icon .lc-icon { width: 26px; height: 26px; }
.lc-feature-title { font-size: 1.16rem; margin-bottom: .35em; }
.lc-feature-text { color: var(--muted); margin: 0; font-size: .97rem; }

/* ============================================================
   Bild + Text
   ============================================================ */

.lc-media-text {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.lc-media-right .lc-media-text-media { order: 2; }
.lc-media-text-media img, .lc-media-text-ph {
  border-radius: var(--radius); box-shadow: var(--glow);
  display: block; width: 100%; object-fit: cover;
}
.lc-media-text-body .lc-section-title { margin-bottom: .45em; }
.lc-media-text-copy { color: var(--ink-soft); font-size: 1.05rem; }
.lc-media-text .lc-buttons { margin-bottom: 0; }

.lc-checklist { list-style: none; margin: 18px 0 22px; padding: 0; }
.lc-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-weight: 500; color: var(--ink-soft);
}
.lc-checklist .lc-icon {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  color: var(--accent-2); background: rgba(34, 211, 238, .12);
  border-radius: 50%; padding: 3px;
}

/* ============================================================
   Bild-Karten
   ============================================================ */

.lc-image-cards-grid { display: grid; gap: 18px; }
.lc-image-cards-grid.lc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lc-image-cards-grid.lc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lc-image-cards-grid.lc-cols-4 { grid-template-columns: repeat(4, 1fr); }

.lc-image-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.lc-image-card:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: var(--glow); }
.lc-image-card-media { position: relative; }
.lc-image-card-media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.lc-image-card-ph { border-radius: 0; border: 0; box-shadow: none; }
.lc-image-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(9, 9, 15, .78); color: #c4b5fd;
  border: 1px solid var(--accent-line);
  backdrop-filter: blur(6px);
  border-radius: 999px; padding: 4px 13px;
  font-family: var(--font-head); font-size: .76rem; font-weight: 600; letter-spacing: .03em;
}
.lc-image-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lc-image-card-title { font-size: 1.16rem; margin: 0; }
.lc-image-card-title a { color: var(--head); text-decoration: none; }
.lc-image-card-title a:hover { color: #c4b5fd; }
.lc-image-card-text { color: var(--muted); font-size: .96rem; margin: 0; flex: 1; }
.lc-image-card-more { font-weight: 600; font-size: .92rem; text-decoration: none; margin-top: 4px; }

/* ============================================================
   Stats
   ============================================================ */

.lc-stats { padding: clamp(48px, 7vw, 84px) var(--gutter); margin-top: clamp(48px, 8vw, 96px); }
.lc-stats.lc-bg-dark {
  background:
    radial-gradient(900px 300px at 85% 0%, rgba(139, 92, 246, .22), transparent 60%),
    #0c0d16;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lc-stats.lc-bg-muted { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lc-stats-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px; text-align: center;
}
.lc-stat-value {
  display: block; font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-stat-label { color: var(--muted); font-weight: 500; font-size: .95rem; }

/* ============================================================
   Pricing
   ============================================================ */

.lc-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.lc-plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.lc-plan:hover { border-color: var(--line-strong); }
.lc-plan.is-highlighted {
  border-color: var(--accent-line);
  box-shadow: var(--glow);
  background: linear-gradient(170deg, rgba(139, 92, 246, .1), transparent 45%), var(--surface);
}
.lc-plan-name {
  font-size: .95rem; text-transform: uppercase; letter-spacing: .08em;
  color: #c4b5fd;
}
.lc-plan-price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--head); margin: 4px 0 18px; }
.lc-plan-period { font-size: .95rem; font-weight: 400; color: var(--muted); }
.lc-plan-features { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.lc-plan-features li {
  padding: 9px 0 9px 30px; border-bottom: 1px dashed var(--line);
  position: relative; font-size: .97rem; color: var(--ink-soft);
}
.lc-plan-features li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34, 211, 238, .12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2322d3ee" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="m5 13 4 4 10-10"/></svg>') center/11px no-repeat;
}
.lc-plan .lc-btn { width: 100%; }

/* ============================================================
   Team
   ============================================================ */

.lc-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.lc-member {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px; text-align: center;
  transition: border-color .18s ease, transform .18s ease;
}
.lc-member:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.lc-member-img, .lc-member-placeholder {
  width: 104px; height: 104px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto 16px;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent-line);
}
.lc-member-placeholder { background: linear-gradient(135deg, #1d2030, #141625); }
.lc-member-name { font-size: 1.1rem; margin-bottom: .15em; }
.lc-member-name a { color: inherit; text-decoration: none; }
.lc-member-name a:hover { color: #c4b5fd; }
.lc-member-role { color: var(--muted); font-size: .92rem; margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */

.lc-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.lc-testimonial {
  margin: 0; display: flex; flex-direction: column; gap: 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative;
}
.lc-testimonial::before {
  content: "“"; position: absolute; top: 4px; right: 22px;
  font-family: var(--font-head); font-size: 4.5rem; line-height: 1;
  color: rgba(139, 92, 246, .25); font-weight: 700;
}
.lc-testimonial blockquote { margin: 0; font-size: 1.05rem; color: var(--ink-soft); flex: 1; }
.lc-testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.lc-testimonial figcaption img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.lc-testimonial figcaption strong { display: block; font-family: var(--font-head); color: var(--head); }
.lc-testimonial figcaption em { font-style: normal; color: var(--muted); font-size: .88rem; }

/* ============================================================
   FAQ
   ============================================================ */

.lc-faq-list { max-width: var(--narrow); margin: 0 auto; }
.lc-faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .18s ease;
}
.lc-faq-item[open] { border-color: var(--accent-line); }
.lc-faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--head);
  padding: 18px 52px 18px 22px; position: relative;
  transition: background .15s ease;
}
.lc-faq-item summary::-webkit-details-marker { display: none; }
.lc-faq-item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%;
  width: 12px; height: 12px; translate: 0 -65%;
  border-right: 2.5px solid var(--accent-2); border-bottom: 2.5px solid var(--accent-2);
  rotate: 45deg; transition: rotate .2s ease, translate .2s ease;
}
.lc-faq-item[open] summary::after { rotate: 225deg; translate: 0 -25%; }
.lc-faq-item summary:hover { background: rgba(255, 255, 255, .04); }
.lc-faq-answer { padding: 0 22px 18px; color: var(--muted); }
.lc-faq-answer p { margin: 0; }

/* ============================================================
   CTA
   ============================================================ */

.lc-cta { padding: clamp(56px, 8vw, 96px) var(--gutter); margin-top: clamp(48px, 8vw, 96px); position: relative; overflow: hidden; }
.lc-cta-accent {
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(34, 211, 238, .25), transparent 55%),
    linear-gradient(135deg, #4c1d95, #6d28d9);
  color: #fff;
}
.lc-cta-dark { background: #0c0d16; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lc-cta-muted { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lc-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.lc-cta-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; color: var(--head); }
.lc-cta-accent .lc-cta-title { color: #fff; }
.lc-cta-text { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.6em; }
.lc-cta-accent .lc-cta-text { color: rgba(255, 255, 255, .85); }
.lc-cta-accent .lc-btn-primary {
  background: #fff; color: #4c1d95; box-shadow: 0 10px 36px rgba(0, 0, 0, .35);
}
.lc-cta-accent .lc-btn-primary:hover { color: #4c1d95; }

/* ============================================================
   Logos & Logo-Slider
   ============================================================ */

.lc-logos { text-align: center; }
.lc-logos-title {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 600; color: var(--muted); margin-bottom: 26px;
}
.lc-logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(28px, 5vw, 56px);
}
.lc-logos-row img {
  max-height: 44px; width: auto;
  filter: grayscale(1) brightness(1.6); opacity: .55;
  transition: filter .2s ease, opacity .2s ease;
}
.lc-logos-row a:hover img, .lc-logos-row img:hover { filter: none; opacity: 1; }

.lc-logo-slider { text-align: center; }
.lc-logo-slider-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.lc-logo-slider-track {
  display: flex; width: max-content;
  animation: lc-marquee var(--lc-marquee-duration, 28s) linear infinite;
}
.lc-logo-slider:hover .lc-logo-slider-track,
.lc-logo-slider:focus-within .lc-logo-slider-track { animation-play-state: paused; }

.lc-logo-group {
  display: flex; align-items: center;
  gap: clamp(40px, 6vw, 88px); padding-right: clamp(40px, 6vw, 88px);
}
.lc-logo-group img { max-height: 46px; width: auto; display: block; }
.lc-logo-slider.is-grayscale .lc-logo-group img {
  filter: grayscale(1) brightness(1.6); opacity: .55;
  transition: filter .2s ease, opacity .2s ease;
}
.lc-logo-slider.is-grayscale .lc-logo-group a:hover img,
.lc-logo-slider.is-grayscale .lc-logo-group img:hover { filter: none; opacity: 1; }

.lc-logo-mark {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: #494f66; white-space: nowrap; letter-spacing: .02em;
}

@keyframes lc-marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Kontakt
   ============================================================ */

.lc-contact-info { max-width: var(--narrow); margin: 0 auto; text-align: center; }
.lc-contact-list {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.lc-contact-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color .18s ease;
}
.lc-contact-list li:hover { border-color: var(--accent-line); }
.lc-contact-list .lc-icon { width: 26px; height: 26px; color: var(--accent-2); }
.lc-contact-list a { font-weight: 600; text-decoration: none; word-break: break-word; }
.lc-contact-list address { font-style: normal; color: var(--ink-soft); }

/* ============================================================
   Blog
   ============================================================ */

.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; padding: 16px 0 56px;
}
.post-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: var(--glow); }
.post-card-media { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-fallback {
  display: block; width: 100%; height: 100%;
  background:
    radial-gradient(420px 200px at 80% 0%, rgba(139, 92, 246, .45), transparent 60%),
    linear-gradient(135deg, #141625, #0b0c14);
}
.post-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { color: var(--muted); font-size: .88rem; margin: 0; }
.single-post .post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
}
.post-meta-separator { opacity: .6; }
.post-ai-label {
  display: inline-flex; align-items: center; gap: 7px; max-width: 100%;
  min-height: 28px; padding: 0;
  color: var(--ink); background: transparent;
  border: 0; border-radius: 0;
  font-size: .78rem; font-weight: 600; line-height: 1.25;
}
.post-ai-label img {
  width: 35px; height: 28px; flex: 0 0 35px; display: block;
  padding: 0; border-radius: 0; background: transparent; object-fit: contain;
}
.post-card-title { font-size: 1.22rem; margin: 0; }
.post-card-title a { color: var(--head); text-decoration: none; }
.post-card-title a:hover { color: #c4b5fd; }
.post-card-excerpt { color: var(--muted); font-size: .97rem; margin: 0; flex: 1; }
.post-card-more { font-weight: 600; text-decoration: none; font-size: .95rem; margin-top: 4px; }

.post-cats { margin: 0 0 10px; }
.post-cat {
  display: inline-block; background: var(--accent-soft); color: #c4b5fd;
  border: 1px solid var(--accent-line);
  border-radius: 999px; padding: 4px 14px; font-size: .82rem; font-weight: 600;
  text-decoration: none; margin-right: 6px;
}
.post-cat:hover { background: var(--accent); color: #fff; }

.single-post .page-head { padding-bottom: 10px; }
.post-featured-media { margin: 10px 0 26px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.post-featured { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); margin: 0; display: block; }
.post-toc {
  margin-top: clamp(26px, 4vw, 46px); margin-bottom: clamp(30px, 5vw, 56px);
  padding: 22px 24px 24px;
  background: linear-gradient(145deg, var(--accent-soft), transparent 72%), var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.post-toc-title {
  margin: 0 0 12px; color: var(--head); font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
}
.post-toc-list { margin: 0; padding-left: 1.35em; }
.post-toc-item { margin: 7px 0; color: var(--muted); line-height: 1.45; }
.post-toc-item.is-level-3 { margin-left: 1.1em; }
.post-toc-item.is-level-4 { margin-left: 2.2em; }
.post-toc a { color: inherit; text-decoration: none; }
.post-toc a:hover { color: var(--accent-bright); }
.single-post .lc-heading[id] { scroll-margin-top: 110px; }
.post-footer { padding-top: 8px; padding-bottom: 72px; }

@media (max-width: 560px) {
  .single-post .post-meta { align-items: flex-start; }
  .single-post .post-meta .post-ai-label { width: 100%; }
  .single-post .post-meta-ai-separator { display: none; }
  .post-toc { padding: 18px 19px 20px; }
  .post-toc-item.is-level-3 { margin-left: .6em; }
  .post-toc-item.is-level-4 { margin-left: 1.2em; }
}

.pagination { display: flex; gap: 8px; justify-content: center; padding: 0 0 64px; flex-wrap: wrap; }
.page-num {
  min-width: 44px; min-height: 44px; display: inline-grid; place-items: center;
  border-radius: 12px; border: 1px solid var(--line); background: var(--surface);
  text-decoration: none; color: var(--ink); font-weight: 600;
}
.page-num.is-current { background: var(--grad-btn); color: #fff; border-color: transparent; }
.page-num:hover:not(.is-current) { border-color: var(--accent-line); color: #c4b5fd; }

/* ============================================================
   404 & Footer
   ============================================================ */

.error-page { text-align: center; padding: clamp(64px, 12vw, 140px) var(--gutter); }
.error-code {
  font-family: var(--font-head); font-size: clamp(4rem, 14vw, 8rem); font-weight: 700;
  line-height: 1; margin: 0;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.site-footer {
  background: #07070c;
  border-top: 1px solid var(--line);
  color: var(--muted); margin-top: clamp(48px, 8vw, 96px);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--gutter) 24px;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
}
.site-footer .site-brand { color: var(--head); }
.footer-tagline { color: var(--faint); margin: 10px 0 0; max-width: 360px; }
.footer-nav .nav-list { flex-wrap: wrap; }
.footer-nav .nav-list a { color: var(--muted); }
.footer-nav .nav-list a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.footer-meta {
  max-width: var(--container); margin: 0 auto;
  padding: 18px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--faint);
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   Struktur-Wrapper ohne eigenes Design
   ============================================================ */

.lc-hero-split-content { min-width: 0; }
.lc-html { margin: 1.6em auto; }
.lc-spacer { display: block; }

/* ============================================================
   Reduced Motion & Responsive
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .lc-hero-cardbg::before { animation: none; }
  .lc-hero-scroll::after { animation: none; }
  .lc-logo-slider-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .lc-logo-slider-track .lc-logo-group[aria-hidden="true"] { display: none; }
  .lc-logo-group { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .lc-logo-slider-viewport { -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 920px) {
  .lc-features-grid.lc-cols-3, .lc-features-grid.lc-cols-4,
  .lc-columns.lc-cols-3, .lc-columns.lc-cols-4,
  .lc-image-cards-grid.lc-cols-3, .lc-image-cards-grid.lc-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .lc-gallery.lc-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .lc-hero-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .lc-hero-collage { max-width: 560px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    position: fixed; inset: 70px 0 auto 0; z-index: 99;
    background: rgba(9, 9, 15, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav-list { flex-direction: column; gap: 2px; }
  .site-nav .nav-list a { display: block; padding: 13px 16px; border-radius: 10px; }

  .lc-features-grid.lc-cols-2, .lc-features-grid.lc-cols-3, .lc-features-grid.lc-cols-4,
  .lc-columns.lc-cols-2, .lc-columns.lc-cols-3, .lc-columns.lc-cols-4,
  .lc-image-cards-grid.lc-cols-2, .lc-image-cards-grid.lc-cols-3, .lc-image-cards-grid.lc-cols-4 { grid-template-columns: 1fr; }
  .lc-gallery.lc-cols-2, .lc-gallery.lc-cols-3, .lc-gallery.lc-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .lc-media-text { grid-template-columns: 1fr; gap: 24px; }
  .lc-media-right .lc-media-text-media { order: 0; }
  .lc-hero-full { min-height: 78svh; }
  .lc-hero-video.lc-hero-full { min-height: 100svh; }
  .lc-hero-video.is-framed.lc-hero-full { min-height: clamp(420px, 92svh, 610px); }
  .lc-hero-stats { gap: 18px; }
  .lc-hero-stats strong { font-size: 1.3rem; }
  .lc-logo-group img { max-height: 36px; }
}

/* ============================================================
   Hero mit Karussell (Typewriter + 3D-Karten)
   ============================================================ */

.lc-hcar {
  text-align: center;
  background:
    radial-gradient(900px 480px at 50% -20%, rgba(139, 92, 246, .26), transparent 60%),
    radial-gradient(700px 380px at 85% 10%, rgba(34, 211, 238, .1), transparent 55%),
    #0a0a12;
  padding: clamp(56px, 9vw, 110px) var(--gutter) clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.lc-hcar-head { max-width: 800px; margin: 0 auto; }
.lc-hcar-title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700;
  color: var(--head); line-height: 1.18; margin-bottom: .4em; letter-spacing: -.02em;
}
.lc-hcar-name { color: #c4b5fd; }
.lc-hcar-role {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-hcar-cursor {
  display: inline-block; width: 3px; height: .85em;
  background: var(--accent-2); margin-left: 3px; vertical-align: -.08em;
  box-shadow: 0 0 8px var(--accent-2);
  animation: lc-hcar-blink 1s steps(2) infinite;
}
@keyframes lc-hcar-blink { 50% { opacity: 0; } }
.lc-hcar-subtitle { color: var(--muted); font-size: 1.12rem; margin: 0 auto 1.6em; max-width: 640px; }

.lc-hcar-stage {
  position: relative; max-width: 880px; margin: clamp(36px, 5vw, 56px) auto 0;
}
.lc-hcar-cards {
  position: relative; height: clamp(300px, 46vw, 420px);
}
.lc-hcar-card {
  position: absolute; left: 50%; top: 0; margin: 0;
  height: 100%; aspect-ratio: 5 / 7;
  border-radius: 18px; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform .45s cubic-bezier(.22, .8, .3, 1), opacity .45s ease, border-color .2s ease;
  will-change: transform;
}
.lc-hcar-card[data-pos="center"] { border-color: var(--accent-line); box-shadow: var(--glow); }
.lc-hcar-card img, .lc-hcar-card .lc-hcar-ph {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; border: 0;
}
.lc-hcar-card-label {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(9, 9, 15, .78); color: #c4b5fd;
  border: 1px solid var(--accent-line);
  backdrop-filter: blur(6px);
  border-radius: 999px; padding: 5px 15px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
}
.lc-hcar-card[data-pos="center"] { transform: translateX(-50%) scale(1); opacity: 1; z-index: 3; cursor: default; }
.lc-hcar-card[data-pos="right"]  { transform: translateX(24%) scale(.84) rotate(4deg); opacity: .7; z-index: 2; }
.lc-hcar-card[data-pos="left"]   { transform: translateX(-124%) scale(.84) rotate(-4deg); opacity: .7; z-index: 2; }
.lc-hcar-card[data-pos="hidden"] { transform: translateX(-50%) scale(.6); opacity: 0; z-index: 1; pointer-events: none; }

.lc-hcar-nav {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.lc-hcar-nav:hover { border-color: var(--accent-line); color: #c4b5fd; transform: translateY(-2px); box-shadow: var(--glow); }
.lc-hcar-nav:active { transform: scale(.95); }
.lc-hcar-prev { left: clamp(-8px, -1vw, 0px); }
.lc-hcar-next { right: clamp(-8px, -1vw, 0px); }

.lc-hcar-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
/* Trefferfläche 24x24 px (WCAG 2.5.8), optischer Punkt bleibt 10 px */
.lc-hcar-dot {
  width: 24px; height: 24px; min-width: 24px; padding: 7px; box-sizing: border-box;
  border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line-strong); background-clip: content-box;
  transition: background .15s ease, transform .15s ease;
}
.lc-hcar-dot:hover { transform: scale(1.2); }
.lc-hcar-dot.is-active { background: var(--accent-2); background-clip: content-box; }

.lc-hcar-logos { margin-top: clamp(40px, 6vw, 64px); }
.lc-hcar-logos-title {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 600; color: var(--muted); margin-bottom: 22px;
}
.lc-hcar-logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(24px, 4vw, 48px);
}
.lc-hcar-logos-row img {
  max-height: 32px; width: auto;
  filter: grayscale(1) brightness(1.6); opacity: .5;
  transition: filter .2s ease, opacity .2s ease;
}
.lc-hcar-logos-row img:hover { filter: none; opacity: 1; }

.lc-hcar-bottom {
  max-width: 640px; margin: clamp(32px, 5vw, 48px) auto 0;
  color: var(--muted); font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .lc-hcar-cursor { animation: none; }
  .lc-hcar-card { transition: none; }
}
@media (max-width: 680px) {
  .lc-hcar-cards { height: clamp(260px, 78vw, 340px); }
  .lc-hcar-card[data-pos="right"], .lc-hcar-card[data-pos="left"] { opacity: .3; }
  .lc-hcar-nav { width: 42px; height: 42px; }
  .lc-hcar-prev { left: 4px; }
  .lc-hcar-next { right: 4px; }
}

/* ============================================================
   Wert-Karten (Count-up)
   ============================================================ */

.lc-vcards { margin-top: clamp(48px, 8vw, 96px); }
.lc-vcards-grid { display: grid; gap: 16px; }
.lc-vcards-grid.lc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lc-vcards-grid.lc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lc-vcards-grid.lc-cols-4 { grid-template-columns: repeat(4, 1fr); }

.lc-vcard {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.lc-vcard:hover { transform: translateY(-3px); border-color: var(--accent-line); box-shadow: var(--glow); }
.lc-vcard-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
}
.lc-vcard-icon svg { width: 22px; height: 22px; }
.lc-vcard-icon.is-up { background: rgba(34, 211, 238, .12); color: var(--accent-2); }
.lc-vcard-icon.is-down { background: var(--accent-soft); color: #c4b5fd; }
.lc-vcard-number {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.1;
  font-variant-numeric: tabular-nums;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-vcard-label { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }

/* ============================================================
   Feature + Chart
   ============================================================ */

.lc-fstats {
  margin-top: clamp(48px, 8vw, 96px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.lc-fstats-content .lc-section-title { margin-bottom: .45em; }
.lc-fstats-text { color: var(--ink-soft); font-size: 1.05rem; }
.lc-fstats .lc-buttons { margin-bottom: 0; }
.lc-fstats-row {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 44px);
  margin: 30px 0 0; padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.lc-fstats-row li { display: flex; flex-direction: column; gap: 2px; }
.lc-fstats-row strong {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-fstats-row span { color: var(--muted); font-size: .88rem; font-weight: 500; }

.lc-fstats-chart {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 28px);
  box-shadow: var(--shadow);
}
.lc-fstats-chart svg { display: block; width: 100%; height: auto; }
.lc-fstats-stop1 { stop-color: #8b5cf6; stop-opacity: .4; }
.lc-fstats-stop2 { stop-color: #22d3ee; stop-opacity: 0; }
.lc-fstats-line { stroke: #a78bfa; stroke-width: 3; stroke-linecap: round; }
.lc-fstats-dot { fill: var(--accent-2); stroke: var(--surface); stroke-width: 3; }

/* ============================================================
   Scroll-Galerie (Apple-Stil)
   ============================================================ */

.lc-sgal { margin-top: clamp(48px, 8vw, 96px); }
.lc-sgal-head {
  max-width: var(--container); margin: 0 auto clamp(20px, 4vw, 40px);
  padding: 0 var(--gutter);
}
.lc-sgal-title { font-size: clamp(1.8rem, 4.2vw, 2.9rem); font-weight: 700; margin: 0; }
.lc-sgal-gradient {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.lc-sgal-viewport {
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  scrollbar-width: none;
}
.lc-sgal-viewport::-webkit-scrollbar { display: none; }
.lc-sgal-track {
  list-style: none; display: flex; gap: 18px;
  margin: 0; width: max-content;
  padding: 4px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.lc-sgal-item {
  scroll-snap-align: start;
  width: clamp(260px, 76vw, 380px);
}
.lc-sgal-item.is-wide { width: clamp(300px, 92vw, 640px); }
.lc-sgal-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: border-color .18s ease;
}
.lc-sgal-card:hover { border-color: var(--accent-line); }
.lc-sgal-media img, .lc-sgal-ph { display: block; width: 100%; object-fit: cover; border-radius: 0; border: 0; }
.lc-sgal-item:not(.is-wide) .lc-sgal-media img { aspect-ratio: 4 / 5; }
.lc-sgal-item.is-wide .lc-sgal-media img { aspect-ratio: 16 / 10; }
.lc-sgal-text { padding: 22px 24px 26px; }
.lc-sgal-card-title { font-size: 1.22rem; margin: 0 0 .35em; }
.lc-sgal-card-copy { color: var(--muted); font-size: .96rem; margin: 0; }

.lc-sgal-nav {
  max-width: var(--container); margin: 18px auto 0;
  padding: 0 var(--gutter);
  display: flex; justify-content: flex-end; gap: 12px;
}
.lc-sgal-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .15s ease, color .15s ease, opacity .15s ease, box-shadow .15s ease;
}
.lc-sgal-arrow svg { width: 26px; height: 26px; }
.lc-sgal-arrow:hover:not(:disabled) { border-color: var(--accent-line); color: #c4b5fd; box-shadow: var(--glow); }
.lc-sgal-arrow:disabled { opacity: .3; cursor: default; }

@media (max-width: 920px) {
  .lc-vcards-grid.lc-cols-3, .lc-vcards-grid.lc-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .lc-fstats { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lc-vcards-grid.lc-cols-2, .lc-vcards-grid.lc-cols-3, .lc-vcards-grid.lc-cols-4 { grid-template-columns: 1fr; }
}

/* ---------- Hochgeladenes Seiten-Logo ---------- */
.site-logo { display: block; max-height: 42px; width: auto; max-width: 220px; object-fit: contain; }
.site-footer .site-logo { max-height: 36px; }

/* ============================================================
   Header-Layouts & Navigations-CTA
   ============================================================ */

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 9px 20px; min-height: 40px; font-size: .92rem; border-radius: 10px; }

.header-standard .site-nav { margin-left: auto; }
.header-standard.has-cta .site-nav { margin-right: 16px; }

.header-spread .site-nav { margin: 0 auto; }

.header-centered { position: relative; }
.header-centered .site-nav {
  flex: 1; display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.header-centered .nav-list-start { justify-content: flex-end; }
.header-centered .nav-list-end { justify-content: flex-start; }
.header-centered .site-brand {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  white-space: nowrap;
}
.header-centered .header-actions { margin-left: 8px; }

/* Split: Navigation links, Logo absolut mittig, Aktionen rechts */
.header-split { position: relative; }
.header-split .site-nav { margin-right: auto; }
.header-split .header-actions { margin-left: auto; }
.header-split .site-brand {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  white-space: nowrap;
}

/* Shrink beim Scrollen (data-scroll="shrink") */
.site-header[data-scroll="shrink"].is-scrolled .header-inner { min-height: 56px; }
.site-header[data-scroll="shrink"].is-scrolled .site-brand { font-size: 1.05rem; }

/* Overlay: Header transparent über dem ersten Abschnitt */
body.has-overlay-header .site-header.has-overlay {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
/* Inhalt unter den fixierten Header schieben, Hero-Seite darunter ziehen */
body.has-overlay-header .site-main { padding-top: 70px; }
body.has-overlay-header .blocks-flow.is-home { margin-top: -70px; }
/* Beim Scrollen wieder solide Glas-Leiste */
body.has-overlay-header .site-header.has-overlay.is-scrolled {
  background: rgba(9, 9, 15, .88);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(139, 92, 246, .25);
}

@media (max-width: 680px) {
  .header-inner { position: static; }
  .header-centered .site-brand,
  .header-split .site-brand { position: static; translate: none; margin-right: auto; }
  .header-centered .site-nav,
  .header-spread .site-nav,
  .header-split .site-nav,
  .header-standard .site-nav { margin: 0; }
  .header-centered .site-nav,
  .header-split .site-nav { display: none; flex-direction: column; }
  .header-centered .site-nav.is-open,
  .header-split .site-nav.is-open { display: flex; }
  .header-centered .nav-list-start, .header-centered .nav-list-end { justify-content: flex-start; }
  .header-actions { margin-left: auto; }
}

/* ============================================================
   Formular-Block
   ============================================================ */

.lc-form { margin-top: clamp(48px, 8vw, 96px); }
.lc-form-card {
  max-width: var(--narrow); margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}
.lc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lc-form-field { grid-column: 1 / -1; }
.lc-form-field.is-half { grid-column: auto / span 1; }
.lc-form-field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .92rem; color: var(--head); margin-bottom: 6px;
}
.lc-form-req { color: var(--accent-2); }
.lc-form-field input[type="text"],
.lc-form-field input[type="email"],
.lc-form-field input[type="tel"],
.lc-form-field select,
.lc-form-field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--surface-2); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lc-form-field ::placeholder { color: var(--faint); }
.lc-form-field textarea { resize: vertical; min-height: 120px; }
.lc-form-field input:focus-visible,
.lc-form-field select:focus-visible,
.lc-form-field textarea:focus-visible {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.lc-form-check { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; cursor: pointer; color: var(--ink-soft); }
.lc-form-check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--accent); flex: none; }
.lc-form-field.has-error input,
.lc-form-field.has-error select,
.lc-form-field.has-error textarea { border-color: #f87171; }
.lc-form-error { margin: 6px 0 0; font-size: .86rem; font-weight: 600; color: #fca5a5; }
.lc-form-alert {
  background: rgba(248, 113, 113, .12); border: 1px solid rgba(248, 113, 113, .4); color: #fca5a5;
  border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 600; margin: 0 0 18px;
}
.lc-form-actions { grid-column: 1 / -1; }
.lc-form-success {
  display: flex; gap: 14px; align-items: center;
  color: #86efac; font-weight: 600; font-size: 1.08rem;
}
.lc-form-success p { margin: 0; }
.lc-form-success-icon {
  flex: none; width: 44px; height: 44px; padding: 9px; border-radius: 50%;
  background: rgba(52, 211, 153, .15); color: #34d399;
  box-shadow: 0 0 24px rgba(52, 211, 153, .25);
}
/* Honeypot: visuell raus, aber nicht display:none (manche Bots pruefen das) */
.lc-form-hp {
  position: absolute !important; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
@media (max-width: 640px) {
  .lc-form-field.is-half { grid-column: 1 / -1; }
}

/* ============================================================
   Prozess-Schritte
   ============================================================ */

.lc-steps { margin-top: clamp(48px, 8vw, 96px); }
.lc-steps-list { list-style: none; margin: 0; padding: 0; counter-reset: lc-step; }
.lc-step { counter-increment: lc-step; position: relative; }
.lc-step-num {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad-btn);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--glow);
}
.lc-step-num::before { content: counter(lc-step); }
.lc-step-title { font-size: 1.12rem; color: var(--head); margin-bottom: .3em; }
.lc-step-text { color: var(--muted); margin: 0; font-size: .97rem; }

/* Nebeneinander: Bento-Karten mit Verbindungslinie */
.lc-steps-horizontal .lc-steps-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px;
}
.lc-steps-horizontal .lc-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.lc-steps-horizontal .lc-step:hover { border-color: var(--accent-line); }
.lc-steps-horizontal .lc-step-num { margin-bottom: 16px; }
.lc-steps-horizontal .lc-step:not(:last-child)::after {
  content: ""; position: absolute; top: 48px; left: calc(100% + 1px); width: 22px;
  border-top: 2px dashed var(--accent-line);
}

/* Timeline: vertikale Linie links */
.lc-steps-vertical .lc-steps-list {
  max-width: var(--narrow); margin: 0 auto;
  display: grid; gap: 34px;
}
.lc-steps-vertical .lc-step { display: flex; gap: 20px; }
.lc-steps-vertical .lc-step:not(:last-child)::before {
  content: ""; position: absolute; left: 22px; top: 52px; bottom: -30px;
  border-left: 2px dashed var(--line-strong); z-index: 0;
}
.lc-steps-vertical .lc-step-body { padding-top: 7px; }
@media (max-width: 860px) {
  .lc-steps-horizontal .lc-step::after { display: none; }
}

/* ============================================================
   Tabs
   ============================================================ */

.lc-tabs { margin-top: clamp(48px, 8vw, 96px); }
.lc-tabs-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 26px; }
.lc-tab {
  font: inherit; font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  color: var(--ink-soft); background: transparent; border: 0; cursor: pointer;
  padding: 10px 20px; min-height: 44px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lc-tabs-pills .lc-tab { border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--surface); }
.lc-tabs-pills .lc-tab:hover { border-color: var(--accent-line); color: var(--head); }
.lc-tabs-pills .lc-tab[aria-selected="true"] {
  background: var(--grad-btn); border-color: transparent; color: #fff;
  box-shadow: var(--glow);
}
.lc-tabs-underline .lc-tabs-nav { border-bottom: 2px solid var(--line); gap: 0; }
.lc-tabs-underline .lc-tab { border-bottom: 3px solid transparent; margin-bottom: -2px; }
.lc-tabs-underline .lc-tab:hover { color: var(--head); }
.lc-tabs-underline .lc-tab[aria-selected="true"] { color: var(--head); border-bottom-color: var(--accent); }
.lc-tab-panel-label { font-size: 1.15rem; color: var(--head); margin: 22px 0 .5em; }
.lc-tabs.is-js .lc-tab-panel-label {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.lc-tab-panel-inner.has-image {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 4vw, 44px); align-items: center;
}
.lc-tab-panel-text { font-size: 1.04rem; color: var(--ink-soft); }
.lc-tab-panel-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: auto; }
@media (max-width: 780px) {
  .lc-tab-panel-inner.has-image { grid-template-columns: 1fr; }
}

/* ============================================================
   Hinweis-Banner
   ============================================================ */

.lc-banner { margin-top: clamp(32px, 5vw, 56px); }
.lc-banner-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center;
}
.lc-banner-info    { background: rgba(34, 211, 238, .08); border-block: 1px solid rgba(34, 211, 238, .3); }
.lc-banner-success { background: rgba(52, 211, 153, .08); border-block: 1px solid rgba(52, 211, 153, .3); }
.lc-banner-warning { background: rgba(251, 191, 36, .08); border-block: 1px solid rgba(251, 191, 36, .3); }
.lc-banner-icon { display: grid; place-items: center; flex: none; }
.lc-banner-icon .lc-icon { width: 24px; height: 24px; }
.lc-banner-info    .lc-banner-icon { color: var(--accent-2); }
.lc-banner-success .lc-banner-icon { color: #34d399; }
.lc-banner-warning .lc-banner-icon { color: #fbbf24; }
.lc-banner-text { flex: 1; min-width: 220px; font-weight: 500; color: var(--ink); }
.lc-banner-text p { margin: 0; }
.lc-banner-btn {
  font-family: var(--font-head); font-weight: 700; font-size: .94rem;
  text-decoration: none; white-space: nowrap; padding: 8px 4px;
}
.lc-banner-info    .lc-banner-btn { color: var(--accent-2); }
.lc-banner-success .lc-banner-btn { color: #34d399; }
.lc-banner-warning .lc-banner-btn { color: #fbbf24; }

/* ============================================================
   Vorher/Nachher-Vergleich
   ============================================================ */

.lc-ba { margin-top: clamp(48px, 8vw, 96px); }
.lc-ba-frame {
  position: relative; max-width: var(--container); margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
  isolation: isolate;
  --lc-ba-pos: 50%;
}
.lc-ba-frame .lc-ba-img,
.lc-ba-frame .lc-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; margin: 0; }
.lc-ba-top { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--lc-ba-pos)) 0 0); }
.lc-ba-top .lc-ph { background: var(--surface-2); }
.lc-ba-badge {
  position: absolute; bottom: 14px; z-index: 3; pointer-events: none;
  background: rgba(9, 9, 15, .72); color: var(--head); backdrop-filter: blur(4px);
  border: 1px solid var(--line-strong);
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 13px; border-radius: 999px;
}
.lc-ba-badge.is-before { left: 14px; }
.lc-ba-badge.is-after { right: 14px; }
.lc-ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--lc-ba-pos); z-index: 2;
  width: 3px; translate: -50% 0; background: var(--grad); pointer-events: none;
  box-shadow: 0 0 16px rgba(139, 92, 246, .6);
}
.lc-ba-handle::after {
  content: "\25C2 \25B8"; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-btn); color: #fff;
  font-size: .72rem; letter-spacing: 1px; font-weight: 700;
  box-shadow: var(--glow);
}
.lc-ba-range {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; touch-action: none;
  -webkit-appearance: none; appearance: none;
}
.lc-ba-range:focus-visible + .lc-ba-handle::after {
  outline: 3px solid var(--accent-2); outline-offset: 2px;
}

/* ============================================================
   Footer-Sektion
   ============================================================ */

.blocks-flow > .lc-footer,
.blocks-flow > .lc-banner { max-width: none; padding-left: 0; padding-right: 0; }

.lc-footer {
  margin-top: clamp(56px, 9vw, 110px);
  background:
    radial-gradient(900px 340px at 12% 0%, rgba(139, 92, 246, .16), transparent 60%),
    radial-gradient(700px 280px at 90% 20%, rgba(34, 211, 238, .08), transparent 55%),
    var(--surface);
  border-top: 1px solid var(--line-strong);
  color: var(--ink-soft);
}
.lc-footer-inner { max-width: var(--container); margin: 0 auto; padding: clamp(44px, 7vw, 80px) var(--gutter) 0; }
.lc-footer a { color: var(--ink-soft); text-decoration: none; transition: color .15s ease; }
.lc-footer a:hover { color: var(--accent-2); }
.lc-footer-brand {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; display: inline-block;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-footer-text { max-width: 34ch; color: var(--muted); font-size: .97rem; margin: 10px 0 0; }
.lc-footer-coltitle {
  color: var(--head); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}
.lc-footer-col ul, .lc-footer-links ul, .lc-footer-social {
  list-style: none; margin: 0; padding: 0;
}
.lc-footer-col li { margin-bottom: 9px; }
.lc-footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(28px, 5vw, 56px);
}
.lc-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.lc-footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  transition: border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.lc-footer-social a:hover {
  border-color: var(--accent-line); color: var(--head);
  transform: translateY(-2px); box-shadow: var(--glow);
}
.lc-footer-social svg { width: 18px; height: 18px; }
.lc-footer-bottom {
  margin-top: clamp(32px, 5vw, 52px); padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}

/* Variante: zentriert */
.lc-footer-centered .lc-footer-center { text-align: center; }
.lc-footer-centered .lc-footer-text { margin-inline: auto; }
.lc-footer-centered .lc-footer-links ul {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-top: 24px;
  font-weight: 600;
}
.lc-footer-centered .lc-footer-social { justify-content: center; margin-top: 26px; }
.lc-footer-centered .lc-footer-bottom { justify-content: center; }

/* Variante: grosser CTA */
.lc-footer-cta .lc-footer-ctahead {
  display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between;
  padding-bottom: clamp(32px, 5vw, 52px); border-bottom: 1px solid var(--line);
}
.lc-footer-ctatitle {
  font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; margin: 0; max-width: 18ch;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lc-footer-cta .lc-footer-row {
  display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: flex-start; justify-content: space-between;
  margin-top: clamp(28px, 4vw, 44px);
}
.lc-footer-cta .lc-footer-links ul { display: flex; flex-wrap: wrap; gap: 8px 24px; font-weight: 600; }
.lc-footer-cta .lc-footer-social { margin-top: 0; }

@media (max-width: 760px) {
  .lc-footer-grid { grid-template-columns: 1fr 1fr; }
  .lc-footer-grid > .lc-footer-brandcol { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .lc-footer-social a, .lc-tab,
  .lc-form-field input, .lc-form-field select, .lc-form-field textarea { transition: none; }
}

/* ============================================================
   Hero Cinema (Video, Schlagschatten oben – Vorbild .b-hero)
   ============================================================ */

.blocks-flow > .lc-hcin,
.blocks-flow > .lc-vsp { max-width: none; padding-left: 0; padding-right: 0; }

.lc-hcin {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 540px;
  display: flex; align-items: center;
  color: #fff;
  background: linear-gradient(180deg, #0b1020, #151b2e);
  background-size: cover; background-position: center;
}
@supports (height: 100svh) { .lc-hcin { height: 100svh; } }
.lc-hcin-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; border: 0;
}
.lc-hcin.has-overlay::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 10, .66), rgba(5, 5, 10, .58));
}
/* Weicher Schlagschatten von oben statt Voll-Overlay */
.lc-hcin-shadow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 250px 120px -90px rgba(0, 0, 0, .8);
}
.lc-hcin-shadow-b {
  display: none; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 -300px 160px 1px rgba(0, 0, 0, .5);
}
.lc-hcin-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: calc(var(--container) + var(--gutter) + var(--gutter));
  margin: 0 auto; padding: 0 var(--gutter);
}

/* Responsive Medien und EU-Kennzeichnung für KI-Bildinhalte. */
.lc-ai-media { position: relative; }
.lc-ai-media picture { display: contents; }
.lc-logo-item, .lc-member-media, .lc-testimonial-media { display: inline-flex; position: relative; }
.lc-member-media { width: 104px; height: 120px; margin: 0 auto; align-items: flex-start; }
.lc-member-media .lc-member-img { margin: 0; }
.lc-hero-classic, .lc-hero-video, .lc-hcin-poster { background-image: var(--lc-poster-desktop); }
@media (max-width: 767px) {
  .lc-hero-classic, .lc-hero-video, .lc-hcin-poster { background-image: var(--lc-poster-mobile, var(--lc-poster-desktop)); }
}
.lc-ai-badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 8;
  display: inline-flex; align-items: center; gap: 7px; max-width: calc(100% - 24px);
  min-height: 30px; padding: 4px 8px 4px 4px; border-radius: 999px;
  color: #1d1d1b; background: rgba(255,255,255,.94); box-shadow: 0 4px 16px rgba(0,0,0,.24);
  font: 700 11px/1.2 system-ui, sans-serif; pointer-events: none;
}
.lc-ai-badge img { width: 22px !important; height: 22px !important; min-width: 22px; object-fit: contain !important; border-radius: 0 !important; }
.lc-ai-badge.is-basic { width: 32px; height: 32px; min-height: 32px; padding: 3px; }
.lc-ai-badge.is-basic img { width: 26px !important; height: 26px !important; }
@media (max-width: 767px) {
  .lc-ai-badge { left: 8px; bottom: 8px; max-width: calc(100% - 16px); font-size: 10px; }
}
.lc-hcin-copy {
  transform: translate3d(0, var(--lc-hcin-text-offset, 0%), 0);
}
.lc-hcin-title {
  margin: 0; color: #fff;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.4; letter-spacing: -.03em;
  text-wrap: balance;
}
.lc-hcin-line { display: block; }
.lc-hcin-text {
  margin: 10px 0 0; max-width: 480px;
  font-size: 1rem; line-height: 1.5; color: rgba(255, 255, 255, .92);
}
.lc-hcin .lc-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.lc-hcin .lc-btn-outline { border-color: rgba(255, 255, 255, .75); color: #fff; }
.lc-hcin .lc-btn-outline:hover { background: rgba(255, 255, 255, .14); color: #fff; }
@media (max-width: 900px) {
  .lc-hcin {
    height: auto; min-height: 100svh; align-items: center;
    padding-block: max(80px, calc(env(safe-area-inset-top) + 64px)) max(24px, env(safe-area-inset-bottom));
  }
  .lc-hcin-shadow-b { display: block; }
  .lc-hcin .lc-buttons { width: 100%; margin-top: 20px; gap: 10px; }
}
@media (max-width: 760px) {
  .lc-hcin .lc-btn { width: 100%; justify-content: center; }
}

/* Pause/Play-Button (geteilt von Hero Cinema + Scroll-Video, WCAG 2.2.2) */
.lc-media-toggle {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  color: #fff; border-radius: 999px;
  background: rgba(2, 6, 23, .4); border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer; opacity: .55;
  transition: opacity .2s ease, background .2s ease;
}
body:has(.nvc-manage) .lc-media-toggle { bottom: 72px; }
.lc-media-toggle:hover, .lc-media-toggle:focus-visible { opacity: 1; background: rgba(2, 6, 23, .65); }
.lc-media-toggle .lc-media-ico-play { display: none; }
.lc-hcin.is-paused .lc-media-ico-pause, .lc-vsp.is-paused .lc-media-ico-pause { display: none; }
.lc-hcin.is-paused .lc-media-ico-play, .lc-vsp.is-paused .lc-media-ico-play { display: inline; }

/* ============================================================
   Scroll-Video (Pin & Zoom – Nachbau des GSAP pin-spacer
   mit position: sticky + Scroll-Progress als CSS-Variable)
   ============================================================ */

.lc-vsp { position: relative; margin-top: clamp(48px, 8vw, 96px); }
.lc-vsp-short  { height: 180vh; }
.lc-vsp-normal { height: 260vh; }
.lc-vsp-long   { height: 340vh; }
.lc-vsp-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
}
@supports (height: 100svh) { .lc-vsp-sticky { height: 100svh; } }
.lc-vsp-frame {
  position: absolute; inset: 0; overflow: hidden; background: #000;
  transform: scale(calc(.62 + .38 * var(--lc-vsp-p, 1)));
  border-radius: calc((1 - var(--lc-vsp-p, 1)) * 28px);
  will-change: transform;
}
.lc-vsp.is-full .lc-vsp-frame { transform: none; border-radius: 0; }
.lc-vsp-video { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }
.lc-vsp-frame .lc-ph { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Fallback ohne Pin-Effekt: reduzierte Bewegung oder JS deaktiviert */
.lc-vsp.is-static { height: auto; }
.lc-vsp.is-static .lc-vsp-sticky { position: relative; }
.lc-vsp.is-static .lc-vsp-frame { transform: none; border-radius: 0; }
@media (prefers-reduced-motion: reduce) {
  .lc-vsp-short, .lc-vsp-normal, .lc-vsp-long { height: auto; }
  .lc-vsp-sticky { position: relative; }
  .lc-vsp-frame { transform: none; border-radius: 0; }
  .lc-media-toggle { transition: none; }
}

/* ============================================================
   Scroll-Story (gepinntes Video + Text-Einblendungen an frei
   gewählten Scroll-Punkten – Vorbild .b-frame-animation)
   ============================================================ */

.blocks-flow > .lc-vstory { max-width: none; padding-left: 0; padding-right: 0; }

.lc-vstory { position: relative; margin-top: clamp(48px, 8vw, 96px); }
.lc-vstory.is-js.lc-vstory-short  { height: 220vh; }
.lc-vstory.is-js.lc-vstory-normal { height: 320vh; }
.lc-vstory.is-js.lc-vstory-long   { height: 420vh; }
.lc-vstory.is-js .lc-vstory-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
}
@supports (height: 100svh) { .lc-vstory.is-js .lc-vstory-sticky { height: 100svh; } }

.lc-vstory-media { position: relative; background: #000; }
.lc-vstory.is-js .lc-vstory-media { position: absolute; inset: 0; }
.lc-vstory-video { width: 100%; height: auto; object-fit: cover; display: block; border: 0; }
.lc-vstory.is-js .lc-vstory-video { height: 100%; }
.lc-vstory-ph { width: 100%; aspect-ratio: 16 / 9 !important; }
.lc-vstory.is-js .lc-vstory-ph { position: absolute; inset: 0; height: 100%; aspect-ratio: auto !important; }
.lc-vstory-scrim { display: none; }
.lc-vstory.is-js .lc-vstory-scrim {
  display: block; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 6, 16, .35), rgba(3, 6, 16, .05) 40%, rgba(3, 6, 16, .3));
}

/* Einblendungen: ohne JS normale Textblöcke unter dem Video */
.lc-vstory-caption {
  max-width: calc(var(--container) + var(--gutter) + var(--gutter));
  margin: 0 auto; padding: 24px var(--gutter) 0;
}
.lc-vstory-kicker {
  margin: 0 0 6px; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.lc-vstory-title {
  margin: 0; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.2;
}
.lc-vstory-text { margin: 10px 0 0; font-size: 1.02rem; line-height: 1.6; max-width: 44ch; }

/* Mit JS: Overlays auf dem Video, per Scroll-Fenster ein-/ausgeblendet */
.lc-vstory.is-js .lc-vstory-caption {
  position: absolute; left: 0; right: 0; top: 50%; z-index: 2;
  translate: 0 -50%;
  display: flex; padding: 0 var(--gutter);
  margin: 0 auto;
  color: #fff;
  opacity: 0; pointer-events: none;
  transform: translateY(26px);
  transition: opacity .45s ease, transform .45s ease;
}
.lc-vstory.is-js .lc-vstory-caption.is-active {
  opacity: 1; pointer-events: auto; transform: none;
}
.lc-vstory.is-js .lc-vstory-caption > * { text-shadow: 0 2px 24px rgba(0, 0, 0, .55); }
.lc-vstory.is-js .lc-vstory-kicker { color: #7dd3fc; }
.lc-vstory.is-js .lc-vstory-title { color: #fff; }
.lc-vstory.is-js .lc-vstory-caption {
  flex-direction: column; align-items: flex-start; text-align: left;
}
.lc-vstory.is-js .is-pos-center { align-items: center; text-align: center; }
.lc-vstory.is-js .is-pos-right { align-items: flex-end; text-align: right; }
.lc-vstory.is-js .is-pos-right .lc-vstory-text { text-align: right; }

@media (prefers-reduced-motion: reduce) {
  .lc-vstory.is-js .lc-vstory-caption { transition: none; }
}

/* ============================================================
   Bild-Rondell (3D-Zylinder) – exakt nach bambulab.com/a2l
   Feste Pixelmaße (Karte 455:647, Perspektive auf dem Track):
   Positionen und Skalierung ändern sich bewusst NICHT beim Resize.
   Bis 1024 px: zwei gegenläufige Bildreihen wie beim Vorbild.
   ============================================================ */

.blocks-flow > .lc-rondell { max-width: none; padding-left: 0; padding-right: 0; }

.lc-rondell {
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(40px, 6vw, 80px) 0;
  overflow-x: clip;
  --lc-rn-card-w: 430px; /* feste Breite, absichtlich nicht responsiv */
  --lc-rn-fade: clamp(88px, 14vw, 260px);
  --lc-rn-fade-soft: min(198px, var(--lc-rn-fade));
  --lc-rn-bottom-fade: clamp(120px, 10vw, 220px);
  --lc-rn-mobile-duration: 30s;
}
.lc-rondell.is-size-small  { --lc-rn-card-w: 340px; }
.lc-rondell.is-size-medium { --lc-rn-card-w: 430px; }
.lc-rondell.is-size-large  { --lc-rn-card-w: 500px; }
.lc-rondell[data-speed="slow"] { --lc-rn-mobile-duration: 42s; }
.lc-rondell[data-speed="fast"] { --lc-rn-mobile-duration: 20s; }

@media (min-width: 1800px) {
  .lc-rondell { --lc-rn-fade: clamp(320px, 20vw, 520px); }
}

.lc-rondell-muted {
  background: linear-gradient(to bottom, #eef2f7 0, #eef2f7 calc(100% - var(--lc-rn-bottom-fade)), transparent 100%);
}
.lc-rondell-dark {
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(14, 165, 233, .22), transparent 60%),
    linear-gradient(to bottom, var(--navy, #0f172a) 0, var(--navy, #0f172a) calc(100% - var(--lc-rn-bottom-fade)), transparent 100%);
  color: #fff;
}
.lc-rondell-dark .lc-section-title { color: #fff; }
.lc-rondell-dark .lc-section-subtitle { color: rgba(255, 255, 255, .8); }
.lc-rondell .lc-section-header { padding-inline: var(--gutter); }

/* ---- Flache Fallback-/Mobilansicht: horizontale Snap-Reihe ---- */
.lc-rondell-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px clamp(16px, 8vw, 80px);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.lc-rondell-track::-webkit-scrollbar { display: none; }
.lc-rondell-cell { flex: 0 0 auto; scroll-snap-align: center; }
.lc-rondell:not(.is-3d) .lc-rondell-cell.is-clone { display: none; }
.lc-rondell-card {
  position: relative; display: block; width: var(--lc-rn-card-w); aspect-ratio: 455 / 647;
  border-radius: 16px; overflow: hidden; background: #000;
  box-shadow: 0 18px 44px rgba(2, 6, 23, .28); text-decoration: none;
}
.lc-rondell-img, .lc-rondell-ph { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; }
.lc-rondell-card:focus-visible { outline: 3px solid var(--accent-bright, #0ea5e9); outline-offset: 3px; }

/* ---- Responsive Doppelreihe: feste Bambu-Maße, Viewport schneidet sauber ab ---- */
.lc-rondell-mobile { display: none; }

@keyframes lc-rondell-mobile-forward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lc-rondell-mobile-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .lc-rondell-stage { display: none; }
  .lc-rondell-mobile {
    display: flex; flex-direction: column; gap: 8px;
    width: 100vw; height: 306px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }
  .lc-rondell-mobile-row {
    display: flex; flex: 0 0 149px; gap: 8px;
    width: max-content; height: 149px;
    animation: lc-rondell-mobile-forward var(--lc-rn-mobile-duration) linear infinite;
    will-change: transform;
  }
  .lc-rondell-mobile-row.is-reverse { animation-name: lc-rondell-mobile-reverse; }
  .lc-rondell-mobile-item,
  .lc-rondell-mobile-card {
    display: block; position: relative;
    flex: 0 0 241px; width: 241px; height: 149px;
  }
  .lc-rondell-mobile-card {
    overflow: hidden; background: #000; text-decoration: none;
  }
  .lc-rondell-mobile-card picture { display: block; width: 100%; height: 100%; }
  .lc-rondell-mobile-card .lc-rondell-img,
  .lc-rondell-mobile-card .lc-rondell-ph {
    width: 100%; height: 100%; aspect-ratio: auto !important;
    object-fit: cover; display: block; margin: 0;
  }
  .lc-rondell-mobile-card:focus-visible {
    outline: 3px solid var(--accent-bright, #0ea5e9); outline-offset: -3px;
  }
  .lc-rondell-mobile:hover .lc-rondell-mobile-row,
  .lc-rondell-mobile:focus-within .lc-rondell-mobile-row,
  .lc-rondell-mobile:active .lc-rondell-mobile-row { animation-play-state: paused; }
}

/* ---- 3D-Zylinder (per JS: .is-3d). Perspektive auf dem TRACK wie im Original. ---- */
.lc-rondell.is-3d .lc-rondell-stage {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw);
  height: calc(var(--lc-rn-card-w) * 647 / 455 + 90px);
  isolation: isolate;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0,
    transparent calc(var(--lc-rn-fade) - var(--lc-rn-fade-soft)),
    #000 var(--lc-rn-fade),
    #000 calc(100% - var(--lc-rn-fade)),
    transparent calc(100% - var(--lc-rn-fade) + var(--lc-rn-fade-soft)),
    transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0,
    transparent calc(var(--lc-rn-fade) - var(--lc-rn-fade-soft)),
    #000 var(--lc-rn-fade),
    #000 calc(100% - var(--lc-rn-fade)),
    transparent calc(100% - var(--lc-rn-fade) + var(--lc-rn-fade-soft)),
    transparent 100%);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.lc-rondell.is-3d .lc-rondell-stage.is-grabbing { cursor: grabbing; }
.lc-rondell.is-3d .lc-rondell-track {
  position: absolute; inset: 0;
  display: block; overflow: visible; padding: 0;
  transform-style: preserve-3d; will-change: transform;
  cursor: grab; user-select: none; -webkit-user-select: none;
  transform: perspective(var(--lc-rn-persp, 2835px)) rotateY(var(--lc-rn-angle, 0deg));
}
.lc-rondell.is-3d .lc-rondell-cell {
  position: absolute; top: 50%; left: 50%;
  width: var(--lc-rn-card-w); height: calc(var(--lc-rn-card-w) * 647 / 455);
  margin-left: calc(var(--lc-rn-card-w) / -2);
  margin-top: calc(var(--lc-rn-card-w) * 647 / 455 / -2);
  transform: rotateY(calc(var(--i) * var(--lc-rn-step, 30deg))) translateZ(calc(var(--lc-rn-radius, 1065px) * -1));
  backface-visibility: hidden;
}
.lc-rondell.is-3d .lc-rondell-card { width: 100%; height: 100%; }

/* ---- Scroll-Modus: Sektion pinnen und beim Scrollen drehen ---- */
.lc-rondell.is-scroll.is-3d { height: 300vh; padding: 0; }
.lc-rondell.is-scroll.is-3d .lc-rondell-pin {
  position: sticky; top: 0; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(24px, 5vw, 64px);
}

@media (prefers-reduced-motion: reduce) {
  .lc-rondell.is-scroll { height: auto !important; }
  .lc-rondell-mobile {
    overflow-x: auto; overflow-y: hidden;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .lc-rondell-mobile::-webkit-scrollbar { display: none; }
  .lc-rondell-mobile-row { animation: none !important; transform: none !important; }
}

/* ============================================================
   Header-Layout "pill": schwebende Navigations-Pille
   Logo links, Navigation + CTA rechts. Kein eigenes Markup –
   dieselbe Struktur wie "standard", nur andere Optik.
   ============================================================ */

.site-header:has(.header-pill) {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  padding: 14px var(--gutter);
}
.site-header:has(.header-pill).is-scrolled {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}

.header-pill {
  max-width: var(--container);
  min-height: 0;
  padding: 10px 12px 10px 20px;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(12, 14, 15, .62);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .header-pill {
  background: rgba(12, 14, 15, .82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .5);
}

.header-pill .site-nav { margin-left: auto; }
.header-pill.has-cta .site-nav { margin-right: 4px; }
.header-pill .nav-list { gap: 2px; }
.header-pill .nav-list a { border-radius: 999px; padding: 8px 14px; font-size: .92rem; }
.header-pill .header-cta { border-radius: 999px; padding: 10px 20px; min-height: 40px; }
.header-pill .site-brand { font-size: 1.08rem; }

body.has-overlay-header .site-header.has-overlay:has(.header-pill) { padding-top: 14px; }

@media (max-width: 680px) {
  .site-header:has(.header-pill) { padding: 10px var(--gutter); }
  .header-pill { border-radius: 22px; padding: 10px 12px; position: relative; }
  .header-pill .site-nav.is-open {
    position: absolute; left: 0; right: 0; top: calc(100% + 10px);
    flex-direction: column; gap: 4px;
    padding: 12px; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(12, 14, 15, .96);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .6);
  }
}

/* ============================================================
   Hero Cinema: Badge, Kennzahlen-Leiste, Scroll-Hinweis
   (Themes können Farben und Verlauf überschreiben)
   ============================================================ */

/* Gemeinsame Dachzeile für Sections mit optionalem Kicker-Feld */
.lc-section-kicker {
  display: block;
  margin: 0 0 8px;
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Der Schalter ist themeübergreifend verfügbar; --grad liefert die Theme-Farbe. */
.lc-hcin-title.has-gradient .lc-hcin-line:last-child {
  width: fit-content;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lc-hcin-badge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin: 0 0 4px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: .82rem; letter-spacing: .02em; font-weight: 500;
  color: #fff;
}

/* Kennzahlen-Leiste unter den Buttons: ein Raster mit Trennfugen */
.lc-hcin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; margin: 34px 0 0; padding: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px; overflow: hidden;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.lc-hcin-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px;
  background: rgba(10, 12, 14, .62);
}
.lc-hcin-stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.1; color: #fff;
}
.lc-hcin-stat-label {
  margin: 0; font-size: .84rem; color: rgba(255, 255, 255, .58);
}

/* Scroll-Hinweis: dezente Maus-Silhouette mit wanderndem Punkt */
.lc-hcin-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  translate: -50% 0;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  pointer-events: none;
}
.lc-hcin-cue::after {
  content: ""; position: absolute; left: 50%; top: 9px;
  width: 4px; height: 7px; margin-left: -2px;
  border-radius: 999px; background: rgba(255, 255, 255, .8);
  animation: lc-hcin-cue 1.9s ease-in-out infinite;
}
@keyframes lc-hcin-cue {
  0%   { transform: translateY(0); opacity: .9; }
  70%  { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lc-hcin-cue::after { animation: none; }
}
@media (max-width: 900px) {
  .lc-hcin-stats { margin-top: 24px; }
  .lc-hcin-cue { display: none; }
}

/* Parallax-Ebene des Hero: ragt oben/unten über den Rand hinaus, damit beim
   Verschieben keine Lücke sichtbar wird. Bewegt wird nur transform. */
.lc-hcin-bg {
  position: absolute; inset: -8% 0; z-index: 0;
  will-change: transform;
}
.lc-hcin-poster {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.lc-hcin-bg .lc-hcin-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.lc-hcin-inner[data-hero-content] { will-change: transform, opacity; }

/* Schwebender Header über dem Hero: die Leiste bleibt durchsichtig, die Pille
   trägt die Optik – auch beim Scrollen (überschreibt die Overlay-Grundregel). */
body.has-overlay-header .site-header.has-overlay:has(.header-pill),
body.has-overlay-header .site-header.has-overlay:has(.header-pill).is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
/* Der Hero beginnt ganz oben; nur Nicht-Hero-Inhalte brauchen den Freiraum */
body.has-overlay-header .site-main:has(> .blocks-flow > .lc-hcin:first-child),
body.has-overlay-header .site-main:has(> article > .blocks-flow > .lc-hcin:first-child) {
  padding-top: 0;
}
body.has-overlay-header .site-main > .blocks-flow.is-home:has(> .lc-hcin:first-child),
body.has-overlay-header .site-main > article > .blocks-flow.is-home:has(> .lc-hcin:first-child) {
  margin-top: 0;
}
