/* ============================================================================
   Nachklang — Landing / Hörspiel-Selector (neues Design)
   Aus dem Claude-Design portiert und an die Live-Seite angepasst.
   Alles ist unter #landing.nk2 gescoped, damit es NICHT mit den
   Player-Styles in styles.css kollidiert. Nur die Vollbild-Overlays
   (.nk-bg/.nk-grain/.nk-scan/#nk-three) liegen body-seitig und werden
   über body.view-landing ein-/ausgeblendet.
   ========================================================================== */

/* ---- Design-Tokens (gescoped auf die Landing) ---------------------------- */
#landing.nk2 {
  --bg: #080d16;
  --bg2: #0e1626;
  --bg3: #101a2d;
  --panel: rgba(18, 30, 52, .62);
  --panel-solid: #13223b;
  --border: rgba(125, 160, 215, .16);
  --border-strong: rgba(140, 175, 225, .32);
  --red: #dc0404;
  --red-soft: #dc0404;
  --red-glow: rgba(220, 4, 4, .5);
  --cyan: #38e1e1;
  --cyan-soft: rgba(56, 225, 225, .5);
  --text: #eaf0fa;
  --muted: #90a2bf;
  --muted2: #6c7e9c;
  --radius: 16px;
  --maxw: 1280px;
  --ff: "Open Sans", system-ui, sans-serif;
  --display-font: "Open Sans", system-ui, sans-serif;
  --echo-spin: 46s;
  --amb: .5;

  /* Vollbreite statt der klassischen 1100px-Spalte. */
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: var(--ff);
  overflow-x: clip; /* erlaubt full-bleed (100vw) Kinder ohne horizontales Scrollen */
}
#landing.nk2 > * { position: relative; z-index: 1; }

/* ---- Atmosphärischer Hintergrund (body-seitig, nur auf der Landing) ------ */
/* Body transparent schalten, sonst überdeckt der opake Body-Background die
   fixierten Layer mit negativem z-index (#nk-three, .nk-bg). */
body.view-landing { background: transparent; }
.nk-bg {
  position: fixed; inset: 0; z-index: -4; background: #05070d;
}
.nk-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(118% 92% at 50% 34%, transparent 52%, rgba(0, 0, 0, .6) 100%);
}
#nk-three {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: -3; pointer-events: none;
}
.nk-scan {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background: repeating-linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, .42) 3px, rgba(0, 0, 0, 0) 4px);
}
.nk-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
/* Overlays nur auf der Landing sichtbar — im Player wird alles ausgeblendet. */
body.view-player .nk-bg,
body.view-player .nk-scan,
body.view-player .nk-grain,
body.view-player #nk-three { display: none !important; }

/* ---- Grundlayout --------------------------------------------------------- */
#landing.nk2 a { color: inherit; text-decoration: none; }
#landing.nk2 button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
#landing .nk-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- HERO ---------------------------------------------------------------- */
#landing .hero { position: relative; text-align: center; padding: 64px 20px 26px; }
/* Hero-Visualizer (Partikelkugel + Strings) hinter dem Inhalt, volle Breite. */
#landing #nk-hero-viz { position: absolute; inset: -10px 0 0; z-index: 0; pointer-events: none; overflow: hidden; }
#landing #nk-hero-viz canvas { mix-blend-mode: overlay; } /* „Ineinanderkopieren" — kräftigeres Glühen */
#landing .hero__logo, #landing .hero__lede, #landing .hero__platforms { position: relative; z-index: 1; }
#landing .hero__logo {
  display: block; width: min(860px, 92vw); height: auto; margin: 0 auto 20px;
  filter: drop-shadow(0 0 48px rgba(220, 4, 4, .32));
}
#landing .hero__lede {
  max-width: 760px; margin: 0 auto; color: #c4d0e2; line-height: 1.7; font-size: 15.5px;
  font-family: var(--display-font); text-wrap: pretty;
}
#landing .hero__platforms { display: flex; gap: 22px; justify-content: center; align-items: center; margin: 26px 0 0; }
#landing .hero__platforms a { color: var(--muted); transition: color .25s, transform .25s, filter .25s; }
#landing .hero__platforms a:hover { color: #fff; transform: translateY(-2px); filter: drop-shadow(0 0 10px rgba(255, 255, 255, .4)); }
#landing .hero__platforms svg { width: 26px; height: 26px; display: block; }

/* ---- STEUERLEISTE -------------------------------------------------------- */
#landing .controls { position: relative; z-index: 40; padding: 14px 0 16px; }
#landing .search { position: relative; margin-bottom: 12px; }
#landing .search input {
  width: 100%; height: 54px; border-radius: 14px; background: var(--panel);
  border: 1px solid var(--border); color: var(--text); padding: 0 18px 0 50px; font-size: 15px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
#landing .search input:focus { border-color: var(--border-strong); box-shadow: 0 0 0 3px rgba(56, 225, 225, .10); }
#landing .search input::placeholder { color: var(--paper-faint); }
#landing .search > svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--muted2); }

/* Such-Vorschläge */
#landing .search-suggestions {
  display: block; gap: 0; /* überschreibt das ungescopte .search-suggestions{display:grid} aus styles.css */
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: rgba(11, 18, 31, .97); backdrop-filter: blur(16px); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 6px; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .78); max-height: 320px; overflow-y: auto;
}
#landing .search-suggestions[hidden] { display: none; }
#landing .search-suggestions button {
  display: block; width: 100%; text-align: left; padding: 9px 12px; border-radius: 8px;
  font-size: 13.5px; color: #bccadf; transition: background .14s, color .14s;
}
#landing .search-suggestions button:hover { background: rgba(56, 225, 225, .1); color: #fff; }

#landing .filterbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
#landing .spacer { flex: 1; }
#landing .count { color: var(--muted2); font-size: 13px; white-space: nowrap; }

/* Custom-Dropdown */
#landing .nkdd { position: relative; }
#landing .nkdd__btn {
  height: 42px; padding: 0 14px; border-radius: 11px; background: var(--panel); border: 1px solid var(--border);
  color: var(--text); font-size: 13.5px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
#landing .nkdd__btn:hover, #landing .nkdd.open .nkdd__btn { border-color: var(--border-strong); }
#landing .nkdd.active .nkdd__btn { border-color: var(--cyan-soft); color: #fff; }
#landing .nkdd__lab { pointer-events: none; }
#landing .nkdd__cv { display: inline-flex; transition: transform .22s; opacity: .65; }
#landing .nkdd__cv svg { width: 15px; height: 15px; }
#landing .nkdd.open .nkdd__cv { transform: rotate(180deg); }
#landing .nkdd__menu {
  display: none; position: absolute; top: calc(100% + 7px); left: 0; min-width: 100%; max-height: 340px; overflow-y: auto;
  background: rgba(11, 18, 31, .97); backdrop-filter: blur(16px); border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 6px; z-index: 60; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .78);
}
#landing .nkdd__menu::-webkit-scrollbar { width: 8px; }
#landing .nkdd__menu::-webkit-scrollbar-thumb { background: rgba(140, 175, 225, .25); border-radius: 8px; }
#landing .nkdd.open .nkdd__menu { display: block; }
#landing .nkdd__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 12px; border-radius: 8px;
  font-size: 13.5px; color: #bccadf; cursor: pointer; white-space: nowrap; transition: background .14s, color .14s;
}
#landing .nkdd__opt:hover { background: rgba(56, 225, 225, .1); color: #fff; }
#landing .nkdd__opt.sel { color: #fff; }
#landing .nkdd__ck { width: 15px; height: 15px; color: var(--cyan); opacity: 0; flex: none; }
#landing .nkdd__opt.sel .nkdd__ck { opacity: 1; }

/* Such-Zeile: Suchfeld nimmt den Platz, View-Umschalter rechts kompakt (nur Icons + Tooltip). */
#landing .searchrow { display: flex; gap: 12px; align-items: stretch; margin-bottom: 12px; flex-wrap: wrap; }
#landing .searchrow .search { flex: 1 1 240px; margin-bottom: 0; }
#landing .viewswitch { flex: 0 0 auto; display: flex; gap: 4px; height: 54px; padding: 4px; border-radius: 14px; background: var(--panel); border: 1px solid var(--border); }
#landing.nk2 .viewswitch__btn {
  position: relative; flex: 0 0 auto; width: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px;
  color: var(--muted); cursor: pointer; background: transparent; border: 0; transition: color .2s, background .2s;
}
#landing.nk2 .viewswitch__btn svg { width: 18px; height: 18px; }
#landing.nk2 .viewswitch__btn span { display: none; } /* Label nur als gestylter Tooltip */
#landing.nk2 .viewswitch__btn:hover { color: #fff; }
#landing.nk2 .viewswitch__btn.active { color: #fff; background: var(--red); }
/* Gestylter Tooltip (statt Browser-title). */
#landing.nk2 .viewswitch__btn::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translate(-50%, 4px);
  padding: 5px 9px; border-radius: 7px; background: rgba(11, 18, 31, .97); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 12px; font-weight: 600; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .15s ease, transform .15s ease; box-shadow: 0 12px 32px -12px rgba(0, 0, 0, .8); z-index: 70;
}
#landing.nk2 .viewswitch__btn:hover::after, #landing.nk2 .viewswitch__btn:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

/* ---- STAGE --------------------------------------------------------------- */
#landing .stage { position: relative; min-height: 560px; padding: 30px 0 96px; }
#landing .view { display: none; }
#landing .view.is-active { display: block; }
#landing .empty { text-align: center; color: var(--muted); padding: 80px 0; font-size: 15px; }
#landing .nk-loading { text-align: center; color: var(--muted2); padding: 90px 0; font-size: 14px; letter-spacing: normal; }

/* ---- Geteilte Komponenten ----------------------------------------------- */
/* Tags/Chips — 1:1 wie .theme-tags der Original-index.html. */
#landing .chip {
  display: inline-flex; align-items: center; min-height: 17px; padding: 2px 6px; border-radius: 3px; cursor: pointer;
  background: rgba(36, 52, 84, .54); border: 1px solid rgba(245, 247, 250, .08); color: rgba(245, 247, 250, .54);
  font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: normal; text-transform: uppercase; text-decoration: none;
  transition: color .18s, border-color .18s, background .18s;
}
#landing .chip:hover { color: #fff; border-color: rgba(245, 247, 250, .24); }
#landing .chip.active { color: #fff; border-color: rgba(63, 234, 255, .5); background: rgba(63, 234, 255, .15); }
/* Badges — 1:1 wie .menu-card .badge / .genre / .series / .runtime der Original-index.html. */
#landing .badge-genre, #landing .badge-series, #landing .badge-dur {
  display: inline-block; font-size: 11px; padding: 4px 10px; border-radius: 4px; font-weight: 700;
  letter-spacing: normal; text-transform: uppercase; font-variant-numeric: tabular-nums; white-space: nowrap;
}
#landing .badge-genre { background: #DC0404; color: #fff; box-shadow: 0 0 12px rgba(220, 4, 4, .35); }
#landing .badge-series { background: rgba(63, 234, 255, .12); color: #3FEAFF; border: 1px solid rgba(63, 234, 255, .28); }
#landing .badge-dur { background: #243454; color: #f5f7fa; border: 1px solid rgba(245, 247, 250, .24); }
#landing .pip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--cyan); font-weight: 600; }
#landing .pip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

/* Split-Button „Anhören | Lesen" — 1:1 wie .card-actions der Original-index.html.
   Über .card-actions-Vorfahr qualifiziert (Spezifität 1,3,0), damit der
   Button-Reset (#landing.nk2 button) sicher verliert. Keine Icons. */
#landing .card-actions { width: 100%; max-width: 260px; margin: 8px auto 0; display: grid; overflow: hidden; border: 0; border-radius: 999px; background: #f5f7fa; }
#landing .card-actions.dual { grid-template-columns: 1fr 1fr; }
#landing .card-actions.single { max-width: 210px; background: #DC0404; }
#landing.nk2 .card-actions .listen-btn, #landing.nk2 .card-actions .article-btn {
  width: 100%; min-width: 0; min-height: 40px; display: flex; align-items: center; justify-content: center; padding: 0 15px;
  border: 0; border-radius: 0; background: transparent; color: #101A2D; font-family: inherit; font-size: 13px; font-weight: 800;
  letter-spacing: normal; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background .18s ease, color .18s ease;
}
#landing.nk2 .card-actions .listen-btn { background: #DC0404; color: #fff; }
#landing.nk2 .card-actions.dual .listen-btn { border-right: 1px solid rgba(245, 247, 250, .22); }
#landing.nk2 .card-actions .listen-btn:hover { background: #9f0505; color: #fff; }
#landing.nk2 .card-actions .article-btn:hover { background: #101A2D; color: #fff; }

/* ============ VIEW 1 · Raster ============ */
#landing #view-raster .grid { display: grid; grid-template-columns: repeat(var(--grid-cols, 3), 1fr); gap: 26px; }
@media (min-width: 1200px) { #landing #view-raster .grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1000px) { #landing #view-raster .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { #landing #view-raster .grid { grid-template-columns: 1fr; } }
#landing .rcard { position: relative; border-radius: 12px; overflow: hidden; background: var(--panel-solid); border: 1px solid var(--border); transition: border-color .3s ease; }
#landing .rcard:hover { border-color: var(--border-strong); }
#landing .rcard__cov { position: relative; aspect-ratio: 1/1; overflow: hidden; cursor: pointer; }
#landing .rcard__cov img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.01); transition: transform 6s ease; }
#landing .rcard:hover .rcard__cov img { transform: scale(1.06); }
#landing .rcard__cov::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8, 12, 20, .55) 100%); }
#landing .rcard__cov.empty { background: linear-gradient(160deg, #16243f, #0d1626); }
#landing .rprog { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255, 255, 255, .14); z-index: 4; }
#landing .rprog i { display: block; height: 100%; background: var(--red); }
#landing .rwave { position: absolute; left: 0; right: 0; bottom: 0; height: 46px; display: flex; align-items: flex-end; gap: 2px; padding: 0 12px 10px; z-index: 3; opacity: 0; transition: opacity .35s; cursor: crosshair; }
#landing .rcard:hover .rwave { opacity: 1; }
#landing .rwave i { flex: 1; background: rgba(255, 255, 255, .28); border-radius: 2px; min-width: 1px; transition: background .12s, height .25s; }
#landing .rwave i.on { background: #dfe8f5; }
#landing .rcard__body { padding: 18px 17px; text-align: center; }
#landing .rcard__meta { display: flex; gap: 8px; align-items: center; justify-content: space-between; margin-bottom: 11px; flex-wrap: wrap; }
#landing .rcard__title { font-size: 20px; font-weight: 700; letter-spacing: normal; margin: 0 0 8px; line-height: 1.2; }
#landing .rcard__desc { font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--paper-dim); margin: 0 0 16px; text-wrap: pretty; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
#landing .rcard__btns { display: flex; gap: 9px; margin-bottom: 15px; justify-content: center; }
#landing .rcard__tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: -1px; }

/* ============ VIEW 2 · Coverflow ============ */
#landing #view-coverflow { user-select: none; }
#landing .cf { position: relative; }
#landing .cf-backdrop { position: absolute; top: -70px; left: 50%; transform: translateX(-50%); width: 130%; height: 580px; z-index: 0; pointer-events: none; background-size: cover; background-position: center; filter: blur(72px) saturate(1.15) brightness(.55); opacity: .45; }
#landing .cf-backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(58% 60% at 50% 42%, transparent, rgba(5, 7, 13, .9)); }
/* Akzent-Glow hinter dem fokussierten Cover (Farbe aus dem Cover, additiv). */
#landing .cf-glow { position: absolute; top: 215px; left: 50%; width: 560px; height: 380px; transform: translate(-50%, -50%); border-radius: 50%; filter: blur(64px); opacity: 0; z-index: 0; pointer-events: none; mix-blend-mode: screen; transition: opacity .6s ease, background .5s ease; }
#landing .cf-stage { position: relative; z-index: 1; height: 430px; perspective: 1600px; cursor: grab; touch-action: pan-y; }
#landing .cf-stage.drag { cursor: grabbing; }
#landing .cf-track { position: absolute; inset: 0; transform-style: preserve-3d; }
#landing .cf-item { position: absolute; top: 50%; left: 50%; width: 330px; height: 330px; margin: -165px 0 0 -165px; border-radius: 12px; overflow: hidden; will-change: transform, opacity; transform-style: preserve-3d; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); }
#landing .cf-item img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
#landing .cf-item.empty { background: linear-gradient(160deg, #16243f, #0d1626); }
#landing .cf-item::after { content: ""; position: absolute; inset: 0; transition: background .4s; background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 18, .6)); }
#landing .cf-item .refl { position: absolute; inset: auto 0 0 0; height: 38%; background: linear-gradient(180deg, transparent, rgba(6, 10, 18, .9)); }
#landing .cf-item.is-focus { box-shadow: 0 40px 70px -28px rgba(0, 0, 0, .9); outline: 1px solid rgba(255, 255, 255, .18); outline-offset: -1px; }
#landing .cf-item.is-focus::after { background: linear-gradient(180deg, transparent 60%, rgba(6, 10, 18, .35)); }
#landing .cf-arrow { position: absolute; top: 215px; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; border-radius: 50%; background: var(--panel-solid); border: 1px solid var(--border-strong); color: #fff; display: grid; place-items: center; transition: background .2s; }
#landing .cf-arrow:hover { background: #1c2c49; }
#landing .cf-arrow svg { width: 20px; height: 20px; }
#landing .cf-arrow.prev { left: 8px; }
#landing .cf-arrow.next { right: 8px; }
#landing .cf-info { position: relative; z-index: 2; max-width: 680px; margin: 34px auto 0; text-align: center; min-height: 230px; }
#landing .cf-info__meta { display: flex; gap: 9px; justify-content: center; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
#landing .cf-info__mood { font-size: 11px; color: var(--cyan); font-weight: 700; letter-spacing: normal; text-transform: uppercase; }
#landing .cf-info__title { font-size: 38px; font-weight: 800; letter-spacing: normal; margin: 0 0 4px; line-height: 1.05; font-family: var(--display-font); }
#landing .cf-info__desc { font-size: 15px; line-height: 1.7; color: #bccadf; margin: 14px auto 20px; max-width: 600px; text-wrap: pretty; }
#landing .cf-info__btns { display: flex; gap: 11px; justify-content: center; margin-bottom: 18px; }
#landing .cf-info__tags { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; }
#landing .cf-info__tags .chip { cursor: pointer; }
#landing .cf-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
#landing .cf-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .2); transition: all .3s; }
#landing .cf-dots button.on { background: var(--red); width: 22px; border-radius: 4px; }
#landing .cf-empty { text-align: center; color: var(--muted); padding: 120px 0; }

/* ============ VIEW 3 · Nachklang-Echo ============ */
#landing #view-echo { user-select: none; }
#landing .echo { position: relative; min-height: 560px; display: grid; place-items: center; overflow: visible; }
#landing .echo-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
#landing .echo-rings i { position: absolute; border-radius: 50%; border: 1px solid rgba(120, 150, 200, .09); }
#landing .echo-rings i:nth-child(1) { width: 330px; height: 330px; }
#landing .echo-rings i:nth-child(2) { width: 640px; height: 640px; }
#landing .echo-dial { position: absolute; width: 486px; height: 486px; border-radius: 50%; border: 1px dashed color-mix(in srgb, var(--accent, #38e1e1) 60%, transparent); animation: nkEchoSpin var(--echo-spin, 46s) linear infinite; }
#landing .echo-dial.two { width: 560px; height: 560px; border-style: solid; border-color: color-mix(in srgb, var(--accent, #38e1e1) 22%, transparent); animation: nkEchoSpin calc(var(--echo-spin, 46s) * 1.7) linear infinite reverse; }
@keyframes nkEchoSpin { to { transform: rotate(360deg); } }
#landing .echo-wave { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 6; pointer-events: none; }
#landing .echo-pulse { position: absolute; border-radius: 50%; border: 1.5px solid var(--accent, #38e1e1); pointer-events: none; width: 240px; height: 240px; opacity: 0; }
#landing .echo-orbit { position: absolute; inset: 0; cursor: grab; }
#landing .echo-orbit.drag { cursor: grabbing; }
#landing .echo-thumb { position: absolute; top: 0; left: 0; width: 96px; height: 96px; margin: -48px 0 0 -48px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255, 255, 255, .14); opacity: 0; will-change: transform; box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .75); transition: border-color .3s; }
#landing .echo-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) brightness(.72); transition: filter .3s; }
#landing .echo-thumb:hover { border-color: rgba(255, 255, 255, .7); }
#landing .echo-thumb:hover img { filter: saturate(1) brightness(1); }
#landing .echo-thumb b { position: absolute; left: 0; right: 0; bottom: 0; font-size: 9.5px; text-align: center; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); padding: 16px 4px 5px; font-weight: 700; letter-spacing: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#landing .echo-center { position: relative; z-index: 10; width: 268px; text-align: center; pointer-events: none; }
#landing .echo-center__cov { width: 236px; height: 236px; margin: 0 auto; border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 36px 70px -28px rgba(0, 0, 0, .85); outline: 1px solid rgba(255, 255, 255, .12); outline-offset: -1px; pointer-events: auto; }
#landing .echo-center__cov img { width: 100%; height: 100%; object-fit: cover; }
#landing .echo-center__mood { margin-top: 18px; font-size: 11px; color: var(--cyan); font-weight: 700; letter-spacing: normal; text-transform: uppercase; }
#landing .echo-center__title { font-size: 30px; font-weight: 800; letter-spacing: normal; margin: 12px 0 0; line-height: 1.08; font-family: var(--display-font); }
#landing .echo-center__meta { display: flex; gap: 8px; justify-content: center; margin: 12px 0 0; flex-wrap: wrap; }
#landing .echo-center__btns { display: flex; gap: 9px; justify-content: center; margin-top: 16px; pointer-events: auto; }
/* Texte vor den Cover-Glow/-Schatten holen (Cover ist positioniert und läge sonst darüber). */
#landing .echo-center__title, #landing .echo-center__meta, #landing .echo-center__btns { position: relative; z-index: 2; }
#landing .echo-empty { position: absolute; color: var(--muted); }
#landing .echo-hint { text-align: center; margin: 14px 0 0; font-size: 11px; color: var(--muted2); letter-spacing: normal; }

/* ============ VIEW 4 · Stimmungskarte (Moodmap) ============ */
#landing #view-moodmap .mm { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: stretch; }
@media (max-width: 900px) { #landing #view-moodmap .mm { grid-template-columns: 1fr; } }
#landing .mm-plot { position: relative; min-height: 520px; border-radius: 14px; border: 1px solid var(--border); overflow: hidden;
  background:
    repeating-linear-gradient(to right, rgba(140, 175, 225, .05) 0 1px, transparent 1px 10%),
    repeating-linear-gradient(to bottom, rgba(140, 175, 225, .05) 0 1px, transparent 1px 10%),
    radial-gradient(80% 58% at 50% -2%, rgba(56, 225, 225, .07), transparent 70%),
    radial-gradient(80% 58% at 50% 102%, rgba(220, 4, 4, .08), transparent 70%),
    radial-gradient(120% 120% at 50% 50%, rgba(20, 34, 58, .42), rgba(8, 12, 20, .32)); }
#landing .mm-sel-ring { position: absolute; width: 62px; height: 62px; margin: -31px 0 0 -31px; border-radius: 9px; pointer-events: none; border: 1px solid var(--accent, #fff); opacity: 0; z-index: 4; }
#landing .mm-sel-ring.on { animation: nkMmPulse 2.4s ease-out infinite; }
@keyframes nkMmPulse { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(2.6); } }
#landing .mm-plot::before, #landing .mm-plot::after { content: ""; position: absolute; background: rgba(140, 175, 225, .1); }
#landing .mm-plot::before { left: 50%; top: 6%; bottom: 6%; width: 1px; }
#landing .mm-plot::after { top: 50%; left: 6%; right: 6%; height: 1px; }
#landing .mm-axis { position: absolute; font-size: 11px; letter-spacing: normal; text-transform: uppercase; color: var(--muted2); font-weight: 700; }
#landing .mm-axis.top { top: 14px; left: 50%; transform: translateX(-50%); }
#landing .mm-axis.bottom { bottom: 14px; left: 50%; transform: translateX(-50%); }
#landing .mm-axis.left { left: 14px; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
#landing .mm-axis.right { right: 14px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; }
#landing .mm-pt { position: absolute; width: 132px; height: 132px; margin: -66px 0 0 -66px; border-radius: 9px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255, 255, 255, .16); transform: scale(.47); transform-origin: center; transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), border-color .3s, opacity .3s; box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .8); z-index: 1; }
#landing .mm-pt img { width: 100%; height: 100%; object-fit: cover; display: block; }
#landing .mm-pt.sel { border-color: rgba(255, 255, 255, .85); transform: scale(.62); z-index: 5; }
#landing .mm-pt:hover { border-color: rgba(255, 255, 255, .85); transform: scale(1); z-index: 30; }
#landing .mm-pt.dim { opacity: .22; }
#landing .mm-detail { align-self: stretch; border-radius: 12px; overflow: hidden; background: var(--panel-solid); border: 1px solid var(--border); }
#landing .mm-detail__cov { aspect-ratio: 1/1; position: relative; }
#landing .mm-detail__cov img { width: 100%; height: 100%; object-fit: cover; }
#landing .mm-detail__cov::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8, 12, 20, .5)); }
#landing .mm-detail__b { padding: 18px 18px 20px; text-align: center; }
#landing .mm-detail__meta { display: flex; gap: 8px; align-items: center; justify-content: space-between; margin-bottom: 11px; flex-wrap: wrap; }
#landing .mm-detail__title { font-size: 22px; font-weight: 800; margin: 0 0 9px; letter-spacing: normal; font-family: var(--display-font); }
#landing .mm-detail__desc { font-size: 13px; line-height: 1.6; color: #b7c4d8; margin: 0 0 16px; text-wrap: pretty; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
#landing .mm-detail__btns { display: flex; justify-content: center; margin-bottom: 15px; }
#landing .mm-detail__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
#landing .mm-detail__tags .chip { cursor: pointer; }
#landing .mm-empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); text-align: center; padding: 20px; }
#landing .mm-note { grid-column: 1 / -1; color: var(--muted2); font-size: 12.5px; text-align: center; margin-top: 4px; }

/* ---- FAQ ----------------------------------------------------------------- */
#landing .nk-faq { max-width: var(--maxw); margin: 26px auto 0; padding: 56px 28px 10px; }
#landing .nk-faq__head { text-align: center; margin-bottom: 26px; }
#landing .nk-faq__head span { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: normal; text-transform: uppercase; color: var(--cyan); }
#landing .nk-faq__head h2 { font-size: 26px; font-weight: 800; margin: 10px 0 0; letter-spacing: normal; }
#landing .nk-faq__list { display: flex; flex-direction: column; gap: 10px; }
#landing .nk-faq__list details { border: 1px solid var(--border); border-radius: 12px; background: var(--panel); overflow: hidden; transition: border-color .2s; }
#landing .nk-faq__list details[open] { border-color: var(--border-strong); }
#landing .nk-faq__list summary { list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 15px; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
#landing .nk-faq__list summary::-webkit-details-marker { display: none; }
#landing .nk-faq__list summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .25s; flex: none; }
#landing .nk-faq__list details[open] summary::after { transform: rotate(-135deg); }
#landing .nk-faq__list p { margin: 0; padding: 0 20px 18px; color: #b7c4d8; line-height: 1.6; font-size: 14px; }

/* ---- Footer -------------------------------------------------------------- */
#landing .nk-footer { text-align: center; padding: 50px 20px 30px; margin-top: 30px; }
#landing .nk-footer img { width: 200px; max-width: 60vw; height: auto; opacity: .85; filter: drop-shadow(0 0 24px rgba(220, 4, 4, .25)); margin: 0 auto 16px; display: block; }
#landing .nk-footer nav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
#landing .nk-footer nav a { color: var(--muted); font-size: 13.5px; transition: color .2s; }
#landing .nk-footer nav a:hover { color: var(--cyan); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 760px) {
  #landing .hero { padding: 40px 16px 18px; }
  #landing .spacer { display: none; }
  #landing .cf-item { width: 250px; height: 250px; margin: -125px 0 0 -125px; }
  #landing .cf-info__title { font-size: 30px; }
}

/* ---- Reduced motion: ruhiger, ohne Dauer-Animationen -------------------- */
@media (prefers-reduced-motion: reduce) {
  #landing .echo-dial { animation: none; }
  #landing .mm-sel-ring.on { animation: none; opacity: .4; }
  #landing .rcard__cov img, #landing .rcard:hover .rcard__cov img { transition: none; transform: none; }
}
