/* =========================================================================
   Der Bildgestalter — neue Designschicht
   Wird nach styles.css geladen und gibt der gesamten Seite den neuen Look.
   Struktur, Inhalte und SEO der Seiten bleiben unverändert.
   ========================================================================= */

:root {
  --bg: #0b0c0f;
  --bg-soft: #101218;
  --bg-card: #14161c;
  --ink: #f7f3ea;
  --muted: #a7a094;
  --line: rgba(247, 243, 234, 0.12);
  --line-strong: rgba(247, 243, 234, 0.22);
  --cyan: #5de4d0;
  --lime: #bbef5f;
  --coral: #ff795f;
  --gold: #f6c851;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1240px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --text: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--text);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body h1, body h2, body h3, body h4 {
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 700;
}

body .kicker {
  font-family: var(--text);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 .9rem;
}

body ::selection { background: rgba(93, 228, 208, .28); color: var(--ink); }

/* ---------- Wirkungsschichten: Korn, Fortschritt, Zeiger ---------- */
.fx-grain {
  position: fixed; inset: -150%; z-index: 60; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: fx-grain 6s steps(6) infinite;
}
@keyframes fx-grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-3%, -3%); }
  80%  { transform: translate(4%, 2%); }
  100% { transform: translate(0, 0); }
}

.fx-progress {
  position: fixed; inset: 0 0 auto; height: 2px; z-index: 70; pointer-events: none;
}
.fx-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--gold));
}

.fx-cursor, .fx-cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 80; pointer-events: none;
  border-radius: 50%; mix-blend-mode: screen; opacity: 0; will-change: transform;
}
.fx-cursor {
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 1px solid rgba(93, 228, 208, .55);
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease),
              background .3s, border-color .3s, opacity .3s;
}
.fx-cursor.is-big {
  width: 78px; height: 78px; margin: -39px 0 0 -39px;
  background: rgba(93, 228, 208, .10); border-color: rgba(93, 228, 208, .8);
}
.fx-cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: var(--lime); }
body.fx-cursor-on .fx-cursor, body.fx-cursor-on .fx-cursor-dot { opacity: 1; }

/* ---------- Einblenden beim Scrollen ---------- */
[data-fx-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-fx-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Kopfzeile ---------- */
body .site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem clamp(1rem, 4vw, 2.6rem);
  border-bottom: 1px solid transparent; background: transparent; backdrop-filter: none;
  transition: transform .5s var(--ease), background .4s var(--ease),
              backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
body .site-header.is-scrolled {
  background: rgba(11, 12, 15, .72);
  backdrop-filter: blur(20px) saturate(1.3);
  border-color: var(--line);
  padding-block: .72rem;
}
body .site-header.fx-hidden { transform: translateY(-115%); }

body .brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--text); font-weight: 700; font-size: .95rem;
  letter-spacing: -.01em; text-transform: none; text-decoration: none;
}
body .brand::before {
  content: ""; width: 11px; height: 11px; border-radius: 3px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 16px rgba(93, 228, 208, .7);
  animation: fx-pulse 3s ease-in-out infinite;
}
@keyframes fx-pulse {
  50% { transform: scale(.7) rotate(45deg); box-shadow: 0 0 26px rgba(187, 239, 95, .8); }
}

body .site-nav { gap: clamp(.85rem, 2.4vw, 1.9rem); font-size: .89rem; color: rgba(247, 243, 234, .72); }
body .site-nav a { padding: .2rem 0; transition: color .25s ease; }
body .site-nav a:hover, body .site-nav a[aria-current="page"] { color: var(--ink); }
body .site-nav a::after {
  bottom: -3px; height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transition: transform .4s var(--ease);
}
body .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Knöpfe ----------
   Die grüne Fläche wächst als Hintergrundbild von unten nach oben. Ein
   Hintergrund liegt immer HINTER der Schrift — anders als ein Overlay, das den
   Text verdeckt hätte. Die Schriftfarbe wechselt gleichzeitig auf Dunkel,
   damit der Text auf Grün gut lesbar bleibt. */
body .button, body .back-button {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .92rem 1.85rem;
  font-family: var(--text); font-size: .94rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; text-decoration: none; border: 1px solid transparent;
  background-image: linear-gradient(100deg, var(--cyan), var(--lime));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 0%;
  transition: background-size .45s var(--ease), color .3s ease,
              border-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
body .button:hover, body .button:focus-visible,
body .back-button:hover, body .back-button:focus-visible {
  background-size: 100% 100%;
}
body .button > span, body .back-button > span { position: relative; }

/* Heller Knopf: Schrift ist immer dunkel, auf Weiß wie auf Grün lesbar. */
body .button-primary { background-color: var(--ink); color: #0b0c0f; }
body .button-primary:hover { color: #0b0c0f; box-shadow: 0 10px 30px rgba(93, 228, 208, .22); }

/* Umrandeter Knopf: helle Schrift, beim Überfahren dunkel auf Grün. */
body .button-secondary, body .back-button {
  background-color: transparent; border-color: var(--line); color: var(--ink);
}
body .button-secondary:hover, body .button-secondary:focus-visible,
body .back-button:hover, body .back-button:focus-visible {
  color: #0b0c0f; border-color: transparent;
}
body .back-button { padding: .6rem 1.25rem; font-size: .84rem; }

/* ---------- Abschnittsköpfe & Fließtext ---------- */
body .section-head { max-width: var(--max); margin-inline: auto; }
body .section-head h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
body .section-head > p:not(.kicker) { color: var(--muted); max-width: 58ch; }
body p { color: var(--muted); }
body h1, body h2, body h3, body h4, body strong, body dt { color: var(--ink); }
body main a:not(.button):not(.back-button):not(.category-card):not(.art-card) {
  color: var(--cyan);
  text-decoration-color: rgba(93, 228, 208, .4);
  text-underline-offset: .22em;
  transition: color .25s ease, text-decoration-color .25s ease;
}
body main a:not(.button):not(.back-button):hover { text-decoration-color: var(--cyan); }

/* =========================== STARTSEITE =========================== */

body .hero {
  position: relative; min-height: 100svh;
  display: grid; align-content: center; justify-items: stretch; gap: 0;
  padding: 7.5rem clamp(1.2rem, 5vw, 3rem) 6.5rem;
  overflow: hidden; isolation: isolate;
}
body .hero::before, body .hero::after { content: none; }

body .hero-backdrop {
  position: absolute; inset: -8%; height: auto; clip-path: none;
  z-index: 0;
  background: url("Assets/Banner.png") center/cover no-repeat;
  animation: fx-kenburns 26s ease-in-out infinite alternate;
  filter: saturate(.85) contrast(1.08);
}
@keyframes fx-kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.16) translate(-1.5%, 1%); }
}
body .hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(130% 100% at 50% 34%, rgba(11,12,15,.10), rgba(11,12,15,.62) 62%, rgba(11,12,15,.94) 100%),
    linear-gradient(180deg, rgba(11,12,15,.68), transparent 26%, transparent 62%, var(--bg));
}

/* Farbnebel im Hero */
/* Weiche Farbnebel — bewusst ohne filter/blur und ohne mix-blend-mode:
   beides erzwingt eine eigene Zeichenebene und lässt darüberliegenden Text grau werden. */
.fx-aurora { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.fx-aurora i { position: absolute; display: block; will-change: transform; }
.fx-aurora i:nth-child(1) {
  width: 70vw; height: 70vw; left: -18%; top: -8%;
  background: radial-gradient(circle, rgba(93, 228, 208, .30) 0%, rgba(93, 228, 208, .12) 38%, transparent 68%);
  animation: fx-f1 18s ease-in-out infinite;
}
.fx-aurora i:nth-child(2) {
  width: 62vw; height: 62vw; right: -16%; top: 10%;
  background: radial-gradient(circle, rgba(255, 121, 95, .24) 0%, rgba(255, 121, 95, .09) 38%, transparent 68%);
  animation: fx-f2 22s ease-in-out infinite;
}
.fx-aurora i:nth-child(3) {
  width: 56vw; height: 56vw; left: 30%; bottom: -22%;
  background: radial-gradient(circle, rgba(187, 239, 95, .20) 0%, rgba(187, 239, 95, .07) 38%, transparent 68%);
  animation: fx-f3 26s ease-in-out infinite;
}
@keyframes fx-f1 { 50% { transform: translate(14%, 10%) scale(1.15); } }
@keyframes fx-f2 { 50% { transform: translate(-12%, 14%) scale(.88); } }
@keyframes fx-f3 { 50% { transform: translate(8%, -12%) scale(1.2); } }

/* Ein einziger Textblock mit klarer Reihenfolge:
   Logo → Einordnung → Schlagzeile → Trennlinie → Aussage + Knöpfe.
   Alles hängt an derselben linken Kante und hat feste Abstände zueinander. */
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max); width: 100%; margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1fr); align-items: end;
}

body .hero-logo-title {
  grid-column: 1 / -1;
  width: auto; margin: 0 0 clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1;
}
body .hero-logo-title img { width: min(46vw, 330px); height: auto; }

.hero-eyebrow {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: .85rem;
  margin: 0 0 clamp(.9rem, 1.8vw, 1.3rem);
  font-family: var(--text); font-size: clamp(.64rem, 1.05vw, .75rem);
  font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan); white-space: nowrap;
}
.hero-eyebrow i {
  display: block; flex: 0 0 auto; height: 1px;
  width: clamp(26px, 4.5vw, 58px);
  background: linear-gradient(90deg, var(--cyan), rgba(93, 228, 208, 0));
}

.hero-claim {
  grid-column: 1 / -1; margin: 0; font-weight: 700;
  font-size: clamp(2.4rem, 7.4vw, 5.9rem); letter-spacing: -.035em;
  padding-bottom: clamp(1.6rem, 3.2vw, 2.4rem);
  border-bottom: 1px solid rgba(247, 243, 234, .26);
}
.hero-claim .line { display: block; overflow: hidden; padding-bottom: .05em; }

/* Die Wörter fahren per CSS-Animation ein, nicht über einen Klassenwechsel
   aus JavaScript. Eine Animation zeichnet der Browser zuverlässig neu; beim
   Klassenwechsel blieb die Schlagzeile je nach Ladezeitpunkt unsichtbar. */
.hero-claim .w {
  display: inline-block; opacity: 0;
  animation: hero-word .95s var(--ease) both;
}
.hero-claim .line:nth-of-type(1) .w { animation-delay: .25s; }
.hero-claim .line:nth-of-type(2) .w { animation-delay: .40s; }
@keyframes hero-word {
  from { transform: translateY(112%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-claim .accent {
  background: linear-gradient(100deg, var(--cyan), var(--lime) 45%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-lead {
  grid-column: 1; margin: clamp(1.5rem, 3vw, 2.1rem) 0 0;
  max-width: 42ch; font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.62; color: var(--muted);
}

body .hero-actions {
  grid-column: 1; display: flex; flex-wrap: wrap; gap: .8rem;
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0; padding: 0;
  max-width: none; width: auto;
}

/* Ab Tablet stehen Aussage und Knöpfe nebeneinander — das gibt dem Block
   einen ruhigen Abschluss statt einer langen Kette untereinander. */
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) auto; column-gap: clamp(2rem, 5vw, 4rem); }
  body .hero-actions { grid-column: 2; justify-self: end; margin-top: clamp(1.5rem, 3vw, 2.1rem); }
}

.fx-scrollhint {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .6rem; pointer-events: none;
}
.fx-scrollhint i { width: 1px; height: 46px; background: linear-gradient(var(--cyan), transparent); animation: fx-drop 2.2s ease-in-out infinite; }
@keyframes fx-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.fx-scrollhint span { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* ---------- Laufband ---------- */
.fx-marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 1.1rem 0; background: var(--bg-soft);
}
.fx-marquee__track {
  display: flex; gap: 2.2rem; align-items: center; width: max-content;
  animation: fx-slide 38s linear infinite;
  font-family: var(--display); font-size: clamp(1.3rem, 3.4vw, 2.5rem);
  text-transform: uppercase; letter-spacing: -.02em; color: rgba(247, 243, 234, .24);
}
.fx-marquee:hover .fx-marquee__track { animation-play-state: paused; }
.fx-marquee__track i { color: var(--cyan); font-size: .5em; font-style: normal; }
@keyframes fx-slide { to { transform: translateX(-50%); } }

/* ---------- Zahlen ---------- */
.fx-stats {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(3.4rem, 8vw, 5.5rem) clamp(1.2rem, 5vw, 3rem);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem;
}
.fx-stat { display: grid; gap: .25rem; }
.fx-stat b {
  font-family: var(--display); font-size: clamp(2.3rem, 5.2vw, 3.5rem); font-weight: 700; line-height: 1;
  background: linear-gradient(120deg, var(--ink), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fx-stat span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Textabschnitte der Startseite ---------- */
body .intro, body .band { background: transparent; border: 0; }
body .intro {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem);
}
body .intro p {
  font-family: var(--display); font-size: clamp(1.45rem, 4vw, 3rem);
  line-height: 1.22; letter-spacing: -.025em; max-width: 24ch; margin: 0; color: var(--ink);
}
body .intro .fx-word { color: rgba(247, 243, 234, .14); transition: color .4s ease; }
body .intro .fx-word.is-lit { color: var(--ink); }

body .seo-copy, body .seo-details, body .creative-process {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem);
}
body .seo-details, body .creative-process {
  display: grid; gap: clamp(1.6rem, 4vw, 3.4rem);
}
@media (min-width: 900px) {
  body .creative-process { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; }
  body .creative-process-heading { position: sticky; top: 6rem; }
}
body .creative-process-copy { display: grid; gap: 1.2rem; }
body .seo-details h2, body .creative-process h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
body .seo-details p, body .creative-process p { max-width: 68ch; }

/* ---------- Bildwelten-Karten ---------- */
body .gallery-section {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
}
body .category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 1.3rem;
  margin-top: 3rem;
}
body .category-card {
  position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  aspect-ratio: 3 / 4; background: var(--bg-card); text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .40);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}
body .category-card:hover { box-shadow: 0 30px 80px rgba(0, 0, 0, .65); }
body .category-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.72) brightness(.72);
  transition: transform .9s var(--ease), filter .6s ease;
}
body .category-card:hover img { transform: scale(1.1); filter: saturate(1.05) brightness(.92); }
body .category-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(220px circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(255,255,255,.20), transparent 60%);
}
body .category-card:hover::after { opacity: 1; }
body .category-info {
  position: absolute; inset: auto 0 0; display: grid; gap: .3rem;
  padding: 1.3rem; transform: translateZ(40px);
  background: linear-gradient(transparent, rgba(8, 9, 12, .88) 55%);
}
body .category-meta { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); }
body .category-title {
  font-family: var(--display); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -.02em; line-height: 1.08; color: var(--ink);
}
body .category-description {
  font-size: .84rem; color: var(--muted); max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s ease;
}
body .category-card:hover .category-description { max-height: 7rem; opacity: 1; }
body .category-card::before {
  content: ""; position: absolute; left: 1.3rem; right: 1.3rem; bottom: 0; z-index: 2; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
body .category-card:hover::before { transform: scaleX(1); }

/* ---------- Atelier-Blöcke ---------- */
body .atelier {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem);
  background: transparent;
}
body .atelier-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem;
}
body .atelier-block {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.1rem 1.8rem 2.3rem;
  background: linear-gradient(180deg, rgba(23,25,30,.9), rgba(16,18,24,.6));
  transition: transform .5s var(--ease), border-color .5s ease;
}
body .atelier-block:hover { transform: translateY(-8px); border-color: rgba(93, 228, 208, .45); }
body .atelier-block > span:first-child {
  display: block; font-family: var(--display); font-size: 3.3rem; font-weight: 700;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(247, 243, 234, .22);
  transition: -webkit-text-stroke-color .5s ease;
}
body .atelier-block:hover > span:first-child { -webkit-text-stroke-color: var(--cyan); }
body .atelier-block h3 { font-size: 1.5rem; margin: 1rem 0 .6rem; }
body .atelier-block p { margin: 0; font-size: .94rem; }
body .atelier-block::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  filter: blur(60px); background: rgba(93, 228, 208, .28);
  top: -120px; right: -80px; opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
body .atelier-block:hover::after { opacity: 1; }

/* =========================== GALERIESEITEN =========================== */

body .category-page { padding-top: 0; }
body .category-landing-hero {
  position: relative; max-width: var(--max); margin-inline: auto;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.2rem, 5vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  display: grid; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center;
}
@media (min-width: 940px) {
  body .category-landing-hero { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
}
body .category-landing-hero {
  background: radial-gradient(58% 72% at 88% 22%, rgba(93, 228, 208, .13), transparent 64%);
}
body .category-landing-copy { display: grid; gap: 1rem; justify-items: start; }
body .category-landing-copy h1 { font-size: clamp(2.8rem, 8vw, 6rem); margin: .3rem 0 0; }
body .hero-slogan {
  font-family: var(--display); font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  letter-spacing: -.02em; color: var(--ink); margin: .4rem 0 .6rem; max-width: 30ch;
}
body .category-hero-detail { color: var(--muted); }
body .category-landing-copy p { max-width: 60ch; margin: 0; }

body .category-landing-visual {
  position: relative; display: block; width: 100%; padding: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card);
  cursor: pointer; box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
body .category-landing-visual:hover { transform: translateY(-6px); border-color: rgba(93, 228, 208, .45); }
body .category-landing-visual img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(.85) brightness(.84); transition: transform .9s var(--ease), filter .6s ease;
}
body .category-landing-visual:hover img { transform: scale(1.06); filter: saturate(1) brightness(1); }
body .category-landing-visual span {
  position: absolute; inset: auto 0 0; padding: 1.4rem; font-size: .86rem; color: var(--muted);
  background: linear-gradient(transparent, rgba(8, 9, 12, .92) 55%); text-align: left;
}

body .category-image-list {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem);
}
body .category-image-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 1.2rem; margin-top: 2.6rem;
}
body .category-gallery-card {
  position: relative; display: block; padding: 0; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card);
  aspect-ratio: 4 / 5; box-shadow: 0 10px 36px rgba(0, 0, 0, .4);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
body .category-gallery-card:hover { box-shadow: 0 26px 70px rgba(0, 0, 0, .62); border-color: rgba(93, 228, 208, .4); }
body .category-gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.72) brightness(.74); transition: transform .9s var(--ease), filter .6s ease;
}
body .category-gallery-card:hover img { transform: scale(1.09); filter: saturate(1.05) brightness(.94); }
body .category-gallery-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(200px circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(255,255,255,.18), transparent 60%);
}
body .category-gallery-card:hover::after { opacity: 1; }
body .category-gallery-card > span {
  position: absolute; inset: auto 0 0; display: grid; gap: .3rem; padding: 1.2rem;
  text-align: left; transform: translateZ(30px);
  background: linear-gradient(transparent, rgba(8, 9, 12, .9) 55%);
}
body .category-gallery-card strong {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em;
}
body .category-gallery-card small {
  font-size: .8rem; color: var(--muted); line-height: 1.45;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s ease;
}
body .category-gallery-card:hover small { max-height: 7rem; opacity: 1; }

body .category-landing-panel, body .category-landing-panel-dark, body .category-closing {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem);
  border: 0; background: transparent;
  display: grid; gap: clamp(1.4rem, 3.5vw, 2.6rem);
}
@media (min-width: 900px) {
  body .category-landing-panel, body .category-landing-panel-dark {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start;
  }
}
body .category-landing-panel h2, body .category-closing h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
body .category-landing-text { display: grid; gap: 1.1rem; }
body .category-landing-text p, body .category-closing p { max-width: 68ch; margin: 0; }
body .category-landing-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }

/* =========================== BLOG-ÜBERSICHT =========================== */

body .blog-page { padding-top: 0; }
body .blog-hero, body .blog-overview-hero {
  position: relative; max-width: var(--max); margin-inline: auto;
  padding: clamp(8rem, 16vw, 13rem) clamp(1.2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  background: transparent; border: 0; overflow: visible;
}
body .blog-hero {
  background: radial-gradient(64% 86% at 22% 34%, rgba(93, 228, 208, .13), transparent 66%);
}
body .blog-hero h1 { font-size: clamp(3.2rem, 12vw, 9rem); margin: 0; }
body .blog-hero h1,
body .blog-hero h1 span {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  background: none !important;
}
body .blog-hero h1 span { position: relative; display: inline-block; }
body .blog-hero h1 span::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .08em;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0); transform-origin: left;
  animation: fx-underline 1.1s var(--ease) .35s forwards;
}
@keyframes fx-underline { to { transform: scaleX(1); } }

body .blog-intro-panel {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem);
  border: 0; background: transparent;
  display: grid; gap: clamp(1.4rem, 4vw, 3rem);
}
@media (min-width: 940px) {
  body .blog-intro-panel { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; }
  body .blog-intro-panel > div:first-child { position: sticky; top: 6rem; }
}
body .blog-intro-panel h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
body .blog-intro-copy { display: grid; gap: 1.1rem; }
body .blog-intro-copy p { max-width: 70ch; margin: 0; }

body .blog-index-section {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
}
body .blog-overview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.4rem;
}
body .blog-screenshot-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23,25,30,.92), rgba(16,18,24,.72));
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  transition: transform .5s var(--ease), border-color .4s ease, box-shadow .5s var(--ease);
}
body .blog-screenshot-card:hover {
  transform: translateY(-8px); border-color: rgba(93, 228, 208, .45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .6);
}
body .blog-screenshot-link { display: grid; gap: 0; text-decoration: none; }
body .screenshot-window { display: block; overflow: hidden; background: #0e1014; }
body .screenshot-bar {
  display: flex; gap: .38rem; padding: .7rem .9rem; background: rgba(247, 243, 234, .05);
  border-bottom: 1px solid var(--line);
}
body .screenshot-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(247, 243, 234, .22); }
body .screenshot-bar span:first-child { background: var(--coral); }
body .screenshot-bar span:nth-child(2) { background: var(--gold); }
body .screenshot-bar span:nth-child(3) { background: var(--lime); }
body .screenshot-hero { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
body .screenshot-hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.82) brightness(.86); transition: transform .9s var(--ease), filter .6s ease;
}
body .blog-screenshot-card:hover .screenshot-hero img { transform: scale(1.07); filter: saturate(1) brightness(1); }
body .blog-card-copy { display: grid; gap: .55rem; padding: 1.4rem 1.5rem 1.7rem; }
body .blog-card-copy h3 { font-size: 1.32rem; }
body .blog-card-copy p { margin: 0; font-size: .9rem; }
body .blog-card-copy::after {
  content: "Beitrag lesen →"; font-size: .8rem; letter-spacing: .06em; color: var(--cyan);
  transition: transform .4s var(--ease); transform-origin: left;
}
body .blog-screenshot-card:hover .blog-card-copy::after { transform: translateX(5px); }

/* =========================== BLOG-ARTIKEL =========================== */

body .article-page { padding-top: 0; }
body .article-shell { max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 3rem); }
body .article-header, body .article-hero-grid {
  position: relative; padding: clamp(7rem, 13vw, 11rem) 0 clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; background: transparent; border: 0;
}
@media (min-width: 940px) {
  body .article-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
}
body .article-hero-copy { display: grid; gap: 1rem; justify-items: start; }
body .article-hero-copy h1 { font-size: clamp(2.4rem, 6.5vw, 4.8rem); }
body .article-hero-media {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
body .article-hero-media img { width: 100%; height: auto; }
body .article-meta-row {
  display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 1rem 0;
  border-block: 1px solid var(--line); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
body .article-content { display: grid; gap: 1.3rem; max-width: 72ch; padding-block: clamp(1.5rem, 4vw, 2.5rem); }
body .article-content-wide { max-width: none; }
body .article-content h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); margin-top: 1.8rem; }
body .article-content h3 { font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin-top: 1.2rem; }
body .article-content p, body .article-content li { font-size: 1.02rem; }
body .article-content img { border-radius: var(--radius-sm); border: 1px solid var(--line); }
body .article-split {
  display: grid; gap: clamp(1.4rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(1.8rem, 5vw, 3.4rem); background: transparent; border: 0;
}
@media (min-width: 900px) {
  body .article-split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body .article-split.reverse > *:first-child { order: 2; }
}
body .article-takeaway, body .source-box, body .prompt-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23,25,30,.92), rgba(16,18,24,.66));
  padding: 1.6rem 1.7rem;
}
body .article-takeaway { border-left: 3px solid var(--cyan); }
body .prompt-card { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88rem; }
body .prompt-label { color: var(--cyan); letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; }
body .article-highlight-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem;
  padding-block: clamp(1.5rem, 4vw, 2.6rem);
}
body .article-related {
  padding-block: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--line); margin-top: 2.5rem;
}
body .article-related-links { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }

/* =========================== VIDEOSEITE =========================== */

body .video-page { padding-top: 0; }
body .video-hero {
  position: relative; max-width: var(--max); margin-inline: auto;
  padding: clamp(7rem, 13vw, 11rem) clamp(1.2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: end; background: transparent;
}
@media (min-width: 940px) { body .video-hero { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); } }
body .video-hero h1 { font-size: clamp(3rem, 9vw, 6.5rem); }
body .video-hero-copy { display: grid; gap: 1rem; }
body .video-hero-note {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem;
  background: linear-gradient(180deg, rgba(23,25,30,.92), rgba(16,18,24,.66));
}
body .video-hero-note span {
  font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px var(--cyan); display: block; margin-bottom: .5rem;
}
body .video-feature {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem);
  display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start;
}
@media (min-width: 940px) { body .video-feature { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } }
body .video-player-shell {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6); background: #000;
}
body .video-player-shell video { width: 100%; height: auto; display: block; }
body .video-feature-copy { display: grid; gap: 1rem; }
body .video-feature-copy h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
body .video-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem;
  margin: .6rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line);
}
body .video-meta dt { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); }
body .video-meta dd { margin: .3rem 0 0; color: var(--muted); font-size: .92rem; }
body .video-about {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem);
  display: grid; gap: clamp(1.4rem, 4vw, 3rem);
}
@media (min-width: 900px) { body .video-about { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); } }
body .video-about h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }

/* =========================== RECHTLICHES & 404 =========================== */

/* Der obere Abstand sitzt auf <main>, weil die alte Datei .legal-page .legal
   den Innenabstand oben mit höherer Priorität auf 0 setzt. */
body .legal-page { padding: clamp(8.5rem, 13vw, 11rem) 0 0; min-height: 72svh; }
body .error-page { padding: 0; }
body .legal {
  max-width: 980px; margin-inline: auto; width: 100%;
  padding: 0 clamp(1.2rem, 5vw, 3rem) clamp(3.5rem, 8vw, 6rem);
  background: transparent; border: 0;
}
body .legal .section-head { margin-bottom: 2.8rem; }
body .legal h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 0; }
body .legal h1 span { display: block; }
body .legal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; padding: 0; margin: 0; max-width: none; background: none; border: 0;
}
body .legal-panel, body .legal-hobby-note {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23,25,30,.9), rgba(16,18,24,.62));
  padding: 1.7rem 1.8rem; margin: 0; max-width: none;
  transition: border-color .4s ease;
}
body .legal-panel:hover, body .legal-hobby-note:hover { border-color: rgba(93, 228, 208, .4); }
body .legal-hobby-note { margin-top: 1.2rem; border-left: 3px solid var(--gold); }
body .legal h2 { font-size: clamp(1.15rem, 2.4vw, 1.55rem); margin: 0 0 .9rem; }
body .legal p, body .legal li { font-size: .96rem; margin: 0 0 .8rem; }
body .legal p:last-child { margin-bottom: 0; }
body .error-page {
  min-height: 80svh; display: grid; place-content: center; text-align: center;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.2rem, 5vw, 3rem);
}
body .error-page h1 { font-size: clamp(3rem, 12vw, 8rem); }

/* =========================== FUSSZEILE =========================== */

body .footer {
  border-top: 1px solid var(--line); background: transparent;
  padding: 2.4rem clamp(1.2rem, 5vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--muted);
}
body .footer p { margin: 0; }
body .footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem; }
body .footer-links a { transition: color .25s ease; }
body .footer-links a:hover { color: var(--cyan); }
body .footer-social svg { width: 20px; height: 20px; }

/* =========================== GROSSANSICHT =========================== */

body .lightbox {
  border: 0; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 7, 9, .94); backdrop-filter: blur(14px);
}
body .lightbox::backdrop { background: rgba(6, 7, 9, .9); backdrop-filter: blur(10px); }
body .lightbox-frame img { border-radius: var(--radius-sm); }
body .lightbox-caption h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
body .lightbox-caption > span { color: var(--cyan); letter-spacing: .26em; text-transform: uppercase; font-size: .7rem; }
body .lightbox-nav, body .lightbox-close {
  background: rgba(247, 243, 234, .06); border: 1px solid var(--line); color: var(--ink);
  border-radius: 50%; transition: background .3s ease, border-color .3s ease;
}
body .lightbox-nav:hover, body .lightbox-close:hover { background: rgba(93, 228, 208, .18); border-color: var(--cyan); }
body .copy-link {
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem;
  background: transparent; color: var(--ink); font-size: .82rem; cursor: pointer;
  transition: border-color .3s ease, background .3s ease;
}
body .copy-link:hover { border-color: var(--cyan); background: rgba(93, 228, 208, .12); }

/* =========================== RÜCKSICHT =========================== */

@media (hover: none) {
  .fx-cursor, .fx-cursor-dot { display: none; }
  body .category-description,
  body .category-gallery-card small { max-height: 8rem; opacity: 1; }
  body .category-card img,
  body .category-gallery-card img { filter: saturate(.95) brightness(.85); }
  body .category-card::before { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  body *, body *::before, body *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-fx-reveal], .hero-claim .w { opacity: 1 !important; transform: none !important; animation: none !important; }
  .fx-grain { display: none; }
}

/* =========================== HÄUFIGE FRAGEN =========================== */

.fx-faq {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
}
.fx-faq-list { display: grid; gap: .8rem; margin-top: 2.6rem; }
.fx-faq details {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(23,25,30,.88), rgba(16,18,24,.6));
  transition: border-color .4s ease, background .4s ease;
}
.fx-faq details[open], .fx-faq details:hover { border-color: rgba(93, 228, 208, .4); }
.fx-faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 3.2rem 1.25rem 1.6rem; position: relative;
  font-family: var(--display); font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 500; letter-spacing: -.015em; color: var(--ink);
}
.fx-faq summary::-webkit-details-marker { display: none; }
.fx-faq summary::after {
  content: ""; position: absolute; right: 1.6rem; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: translateY(-70%) rotate(45deg); transition: transform .35s var(--ease);
}
.fx-faq details[open] summary::after { transform: translateY(-25%) rotate(225deg); }
.fx-faq details p {
  margin: 0; padding: 0 1.6rem 1.5rem; max-width: 74ch;
  animation: fx-open .45s var(--ease);
}
@keyframes fx-open { from { opacity: 0; transform: translateY(-8px); } }

/* =========================== FEINSCHLIFF =========================== */

/* Überschriften in gemischter Schreibweise statt durchgehend groß.
   Die alte Datei setzt das an vielen Stellen sehr spezifisch — deshalb hier hart. */
body h1, body h2, body h3, body h4, body h5, body h6,
body .category-title, body .hero-slogan, body .brand,
body .gallery-toolbar h3, body .lightbox-caption h2,
body summary, body dt, body strong {
  text-transform: none !important;
}
/* Nur die Kleintexte bleiben in Versalien */
body .kicker, body .category-meta, body .article-meta-row,
body .hero-eyebrow, body .fx-stat span, body .video-meta dt,
body .prompt-label, body .fx-scrollhint span, body .lightbox-caption > span {
  text-transform: uppercase !important;
}

/* Überschriftengrößen des neuen Designs durchsetzen */
body .section-head h2, body .seo-details h2, body .creative-process h2 {
  font-size: clamp(2.1rem, 5.6vw, 4.2rem); line-height: 1.04; letter-spacing: -.03em;
}
body h1 { font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
body .kicker { font-weight: 500; letter-spacing: .3em; }
body .brand { font-weight: 700; }

/* Textabschnitte linksbündig und in einer Flucht */
body .section-head,
body .seo-copy, body .seo-details, body .creative-process,
body .intro, body .atelier, body .gallery-section, body .fx-faq {
  text-align: left;
  place-items: stretch;
}
body .section-head {
  width: 100%; max-width: var(--max); padding-inline: 0; margin-bottom: 2.4rem;
}
body .gallery-section .section-head,
body .atelier .section-head,
body .fx-faq .section-head,
body .category-image-list .section-head { margin-inline: 0; }

/* Flächen statt Kästen */
body .intro, body .seo-details, body .seo-copy, body .creative-process, body .atelier {
  border: 0; background: none;
}
body .intro { border-block: 1px solid var(--line); }
body .seo-details { width: 100%; max-width: var(--max); }
body .seo-copy { width: 100%; max-width: var(--max); }

/* =========================== KLEINE BILDSCHIRME =========================== */

@media (max-width: 760px) {
  body .hero { padding: 6.5rem clamp(1.2rem, 5vw, 3rem) 4.5rem; gap: 1.3rem; }
  body .hero-logo-title img { width: min(66vw, 300px); }
  .fx-scrollhint { display: none; }
  .hero-claim { font-size: clamp(2.05rem, 10vw, 3.5rem); }
  .hero-eyebrow { font-size: .61rem; letter-spacing: .14em; gap: .6rem; white-space: nowrap; }
  .hero-eyebrow i { width: 18px; }
  body .hero-logo-title img { width: min(62vw, 260px); }
  body .hero-actions .button { flex: 1 1 100%; }

  /* Alles linksbündig wie in der großen Ansicht */
  body .intro, body .intro p,
  body .seo-copy, body .seo-copy *,
  body .section-head, body .section-head *,
  body .atelier, body .fx-faq, body .video-about,
  body .blog-intro-panel, body .category-landing-copy { text-align: left; }
  body .intro p { max-width: none; }

  body .footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  body .footer-links { gap: 1rem 1.1rem; }
}

/* Hero-Inhalte sicher über die Hintergrundebenen legen */
/* Inhalte immer über Bild, Schleier und Farbnebel.
   Wichtig: im Hero werden ausschließlich positive Ebenen benutzt — negative
   z-index-Werte führten dort zu Darstellungsfehlern (Text blieb unsichtbar). */
body .hero-content,
body .hero-actions,
.hero-inner,
.fx-hero-claim { position: relative; z-index: 3; }
.fx-scrollhint { z-index: 3; }

/* Kenndaten der Videos als eigene Kärtchen */
body .video-meta { border-top: 1px solid var(--line); padding-top: 1.4rem; }
body .video-meta > div {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(23,25,30,.9), rgba(16,18,24,.6));
  padding: 1rem 1.1rem; margin: 0;
}
