/* ============================================================
   Landing „Die Reise" — cinematisch-immersiv (cinema.js)
   Akt I: fixe Stationen über der Kamerafahrt · Akt II: Lichtung
   ============================================================ */

.landing.cine {
  --c-night: #0f3a1f;
  --c-deep: #0a2214;
  --c-mist: #a8c9b8;
  --c-leaf: #7fc7a1;
  --c-gold: var(--brand-yellow);
  --c-warm: #ffe08a;
  --c-paper: var(--paper);
  --c-line: rgba(157, 191, 171, 0.22);
  --c-glass: rgba(4, 22, 14, 0.62);

  position: relative;
  overflow-x: clip;
  color: var(--c-paper);
  background:
    radial-gradient(140vmax 90vmax at 70% -20%, #16402a, transparent 55%),
    linear-gradient(#071d12, var(--c-night) 60%);
  line-height: 1.6;
}
.cine ::selection { background: rgba(242, 194, 0, 0.35); color: var(--c-paper); }

/* Fokus auf Nacht: Gold statt Markengrün (Kontrast auf #04140c) */
.cine :focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* Cursor: Glühwürmchen sichtbar im Hintergrund, System-Cursor bleibt aktiv */
/* (Glühwürmchen-Trail folgt aber weiter) */

/* Lenis (sanftes Scrollen) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ---------------------------------------------------- Kino-Chrome */
.cine-gl { position: fixed; inset: 0; z-index: 0; }
.cine-gl canvas { width: 100%; height: 100%; display: block; }
.cine-no3d .cine-gl { display: none; }

.cine-vignette {
  position: fixed; inset: 0; z-index: 20; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(1, 6, 4, 0.5) 100%);
}
.cine-bar { position: fixed; left: 0; right: 0; height: 50vh; background: var(--c-deep); z-index: 30; pointer-events: none; }
.cine-bar.top { top: 0; transform-origin: top; }
.cine-bar.bottom { bottom: 0; transform-origin: bottom; }

.cine-loader {
  position: fixed; inset: 0; z-index: 1200; background: var(--c-deep);
  display: grid; place-items: center;
}
.cine-loader .l-inner { text-align: center; }
.cine-loader .l-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--c-leaf); margin: 0 auto 26px;
  box-shadow: 0 0 24px var(--c-leaf), 0 0 60px rgba(127, 199, 161, 0.6);
  animation: cine-pulse 1.1s ease-in-out infinite;
}
@keyframes cine-pulse { 50% { transform: scale(1.6); box-shadow: 0 0 40px var(--c-leaf), 0 0 90px rgba(127, 199, 161, 0.8); } }
.cine-loader .l-name { font-family: var(--serif); font-size: 30px; letter-spacing: 0.06em; }
.cine-loader .l-count { margin-top: 14px; font-size: 11px; letter-spacing: 0.5em; color: var(--c-mist); font-variant-numeric: tabular-nums; }

/* Tiefen-HUD */
.cine-hud {
  position: fixed; left: clamp(16px, 3vw, 44px); top: 50%; transform: translateY(-50%);
  z-index: 25; display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.cine-hud .track { width: 1px; height: 34vh; background: rgba(157, 191, 171, 0.25); position: relative; }
.cine-hud .marker {
  position: absolute; left: 50%; top: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-gold); transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(242, 194, 0, 0.8);
}
.cine-hud .meter, .cine-hud .stnum {
  font-size: 10.5px; letter-spacing: 0.3em; writing-mode: vertical-rl;
  font-variant-numeric: tabular-nums;
}
.cine-hud .meter { color: var(--c-mist); }
.cine-hud .stnum { color: rgba(157, 191, 171, 0.6); }
@media (max-width: 900px) { .cine-hud { display: none; } }

/* Scroll-Einladung — in der HUD-Spalte links, kollidiert nie mit den CTAs */
.cine-cue {
  position: fixed; bottom: 14vh; left: clamp(16px, 3vw, 44px); z-index: 15;
  font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(157, 191, 171, 0.8);
  display: flex; flex-direction: column; align-items: center; gap: 12px; pointer-events: none; opacity: 0;
}
@media (max-width: 900px) { .cine-cue { display: none; } }
.cine-cue::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(rgba(157, 191, 171, 0.8), transparent);
  animation: cine-cueline 2s var(--ease-out) infinite;
}
@keyframes cine-cueline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Glühwürmchen-Cursor */
.cine-fly { position: fixed; z-index: 1100; pointer-events: none; border-radius: 50%; top: 0; left: 0; }
.cine-fly.fly-core { width: 9px; height: 9px; background: var(--c-warm); box-shadow: 0 0 14px rgba(255, 224, 138, 0.95), 0 0 34px rgba(255, 224, 138, 0.55); }
.cine-fly.fly-trail { width: 5px; height: 5px; background: rgba(255, 224, 138, 0.55); box-shadow: 0 0 10px rgba(255, 224, 138, 0.5); }
@media (pointer: coarse) { .cine-fly { display: none; } }

/* ---------------------------------------------------- Topbar */
.cine .topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, opacity 0.6s ease;
}
.cine-topbar { opacity: 0; }
.cine.cine-in .cine-topbar, .cine-rm .cine-topbar, .cine-no3d .cine-topbar { opacity: 1; }
.cine .topbar.scrolled {
  background: rgba(1, 8, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(157, 191, 171, 0.14);
  padding-top: 12px;
  padding-bottom: 12px;
}
.cine .topbar .logo { color: var(--c-paper); }
.cine .topbar .logo-dot { background: var(--c-leaf); box-shadow: 0 0 14px rgba(127, 199, 161, 0.7); }
.cine .topbar nav { display: flex; gap: 26px; align-items: center; }
.cine .topbar nav a:not(.btn) {
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  color: rgba(251, 250, 246, 0.75);
  transition: color 0.2s;
}
.cine .topbar nav a:not(.btn):hover { color: #fff; }
.cine .topbar .nav-links { display: flex; gap: 26px; }
.cine .topbar .btn { white-space: nowrap; }
@media (max-width: 760px) { .cine .topbar .nav-links { display: none; } }
@media (max-width: 520px) {
  .cine .topbar { gap: 10px; }
  .cine .topbar .btn-cine-ghost { display: none; }
}
.btn.btn-cine-ghost {
  background: transparent;
  border-color: rgba(251, 250, 246, 0.35);
  color: var(--c-paper);
}
.btn.btn-cine-ghost:hover { border-color: var(--c-gold); }
.btn.btn-cine-gold {
  background: var(--c-gold);
  color: #1c1503;
  box-shadow: 0 8px 30px -6px rgba(242, 194, 0, 0.5);
}
.btn.btn-cine-gold:hover { box-shadow: 0 12px 40px -6px rgba(242, 194, 0, 0.7); transform: translateY(-1.5px); }

/* ---------------------------------------------------- Akt I: Stationen */
.journey { height: 480vh; position: relative; z-index: 10; }
.cine .station {
  position: fixed; inset: 0; z-index: 10; display: grid; place-items: center;
  text-align: center; padding: 0 6vw; pointer-events: none; opacity: 0;
}
.cine .station .inner { max-width: 960px; pointer-events: auto; }
.cine .kicker {
  font-size: 11.5px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--c-mist); margin-bottom: 3vh; font-weight: 600;
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.cine .station h1, .cine .station h2, .cine .finale h2 {
  font-family: var(--serif); font-weight: 400; margin: 0; line-height: 1.06;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 40px rgba(1, 8, 5, 0.9), 0 0 90px rgba(1, 8, 5, 0.6);
}
.cine .station h1 { font-size: clamp(46px, 9vw, 132px); }
.cine .station h2, .cine .finale h2 { font-size: clamp(34px, 6vw, 88px); }
.cine .station em, .cine .finale em, .cine .csection-head em { font-style: italic; color: var(--c-gold); }
.cine .rvl { display: block; overflow: hidden; padding-bottom: 0.08em; }
.cine .rvl > span { display: inline-block; transform: translateY(115%); will-change: transform; }
.cine-rm .rvl > span, .cine-no3d .rvl > span { transform: none; }
.cine .station p {
  color: rgba(251, 250, 246, 0.82); max-width: 54ch; margin: 3.5vh auto 0;
  font-size: clamp(15px, 1.4vw, 18.5px); text-shadow: 0 1px 22px rgba(1, 8, 5, 0.9);
}

.st-ctas { margin-top: 5vh; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cine {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15.5px;
  padding: 17px 34px; border-radius: 999px; text-decoration: none;
  transition: box-shadow 0.35s, border-color 0.35s; will-change: transform;
}
.btn-cine.btn-gold {
  background: var(--c-gold); color: #1c1503;
  box-shadow: 0 12px 50px -8px rgba(242, 194, 0, 0.55);
}
.btn-cine.btn-gold:hover { box-shadow: 0 22px 70px -8px rgba(242, 194, 0, 0.8); }
.btn-cine.btn-outline {
  background: transparent; color: var(--c-paper);
  border: 1px solid rgba(251, 250, 246, 0.35);
}
.btn-cine.btn-outline:hover { border-color: var(--c-gold); }

.st-langs { margin-top: 5vh; display: flex; gap: 8px 18px; justify-content: center; flex-wrap: wrap; }
.st-langs .sl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(251, 250, 246, 0.72);
}
.st-langs .sl i { width: 7px; height: 7px; border-radius: 50%; background: var(--sl, var(--c-gold)); font-style: normal; box-shadow: 0 0 10px var(--sl, var(--c-gold)); }

/* Kern-Loop: der antippbare Satz */
.cine .chatline {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 0 0.28em;
  font-family: var(--serif); font-size: clamp(26px, 4.6vw, 60px); line-height: 1.3;
  filter: drop-shadow(0 6px 40px rgba(1, 8, 5, 0.95));
}
.cine .chatline .word { border-radius: 8px; padding: 0 0.04em; }
.cine .chatline .word:hover {
  background: none;
  color: var(--c-leaf);
  text-shadow: 0 0 24px rgba(127, 199, 161, 0.65);
}
.cine .chatline .word.saved {
  background: none;
  color: var(--c-gold);
}
.cine .chatline .word.saved::after { background: var(--c-gold); width: 5px; height: 5px; }
.cine .chatline .tap-invite {
  position: relative; color: var(--c-gold);
  border-bottom: 2px dotted rgba(242, 194, 0, 0.65); padding-bottom: 0.04em;
}
.cine .chatline .tap-invite::after {
  content: ""; position: absolute; inset: -14px -18px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(242, 194, 0, 0.22), transparent);
  animation: cine-tap 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cine-tap { 50% { transform: scale(1.35); opacity: 0.5; } }
.cine .tap-hint {
  margin-top: 2.5vh; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(157, 191, 171, 0.75);
  transition: opacity 0.4s ease;
}
.cine .tap-hint.hide-soft { opacity: 0; }
.cine .tap-sub { font-size: 14px !important; color: rgba(251, 250, 246, 0.6) !important; max-width: 46ch !important; }

/* ---------------------------------------------------- Akt II: Lichtung */
.act-two { position: relative; z-index: 12; }

.cine .marquee {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(1, 8, 5, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cine .marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: cine-marquee 36s linear infinite;
  font-family: var(--serif); font-size: 22px; color: var(--c-mist); white-space: nowrap;
}
.cine .marquee:hover .marquee-track { animation-play-state: paused; }
.cine .marquee-track .dotsep { color: var(--c-gold); }
@keyframes cine-marquee { to { transform: translateX(-50%); } }

.csection {
  padding: clamp(80px, 11vw, 140px) clamp(20px, 6vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}
.csection-narrow { max-width: 900px; }
.csection-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 70px); }
.csection-head .kicker { justify-content: flex-start; margin-bottom: 18px; }
.csection-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.csection-head p { margin-top: 18px; color: rgba(251, 250, 246, 0.72); font-size: 17px; max-width: 58ch; }

/* Dunkles Glas: die Paneele der Lichtung */
.glass-card {
  background: var(--c-glass);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 1px rgba(127, 199, 161, 0.16), 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(127, 199, 161, 0.3), 0 40px 90px -20px rgba(0, 0, 0, 0.8);
}

/* Spotlight: das Nachtglas antwortet auf den Cursor (Glühwürmchen-Logik) */
.glass-card.spot { position: relative; }
.glass-card.spot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(220px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(242, 194, 0, 0.09), rgba(127, 199, 161, 0.05) 45%, transparent 70%);
}
.glass-card.spot:hover::after { opacity: 1; }
@media (pointer: coarse) { .glass-card.spot::after { display: none; } }
@media (prefers-reduced-motion: reduce) { .glass-card.spot::after { transition: none; } }
.dmuted { color: rgba(251, 250, 246, 0.62); }
.pill-gold {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  background: rgba(242, 194, 0, 0.14); color: var(--c-gold);
}

/* ---------------------------------------------------- Showcase */
.cine .showcase { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .cine .showcase { grid-template-columns: 1fr; } }
.cine .showcase-tabs { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 100px; }
.cine .showcase-tab {
  text-align: left;
  padding: 16px 18px;
  border-radius: var(--r-md);
  transition: background 0.25s, transform 0.25s var(--ease-out);
  border: 1px solid transparent;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--c-paper);
}
.cine .showcase-tab .st-num { font-family: var(--serif); font-size: 13px; color: rgba(157, 191, 171, 0.6); }
.cine .showcase-tab h4 { font-size: 16.5px; font-weight: 600; margin: 0; }
.cine .showcase-tab p { font-size: 13px; color: rgba(251, 250, 246, 0.55); margin: 2px 0 0; }
.cine .showcase-tab:hover { background: rgba(4, 22, 14, 0.55); }
.cine .showcase-tab.active {
  background: var(--c-glass);
  border-color: rgba(127, 199, 161, 0.22);
  transform: translateX(6px);
}
.cine .showcase-tab.active .st-num { color: var(--c-gold); }
.cine .showcase-stage {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 44px);
}
.cine .stage-enter { animation: cine-stage 0.5s var(--ease-out); }
@keyframes cine-stage {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Chat-Demo */
.cine .demo-chat { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.cine .demo-bubble {
  padding: 13px 17px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 85%;
}
.cine .demo-bubble.tutor {
  background: rgba(251, 250, 246, 0.08);
  box-shadow: 0 0 0 1px rgba(157, 191, 171, 0.2);
  border-bottom-left-radius: 6px; align-self: flex-start;
}
.cine .demo-bubble.user {
  background: linear-gradient(150deg, var(--brand-green), var(--brand-green-deep));
  color: #fff; border-bottom-right-radius: 6px; align-self: flex-end;
}
.cine .demo-hint { font-size: 12.5px; color: rgba(157, 191, 171, 0.8); display: flex; gap: 7px; align-items: center; }
.cine .correction {
  background: rgba(242, 194, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(242, 194, 0, 0.28);
  color: #f4dfa0;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13.5px;
}
.cine .correction b { display: flex; align-items: center; gap: 7px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; color: var(--c-gold); }

/* Wörter in dunklen Demo-Bubbles */
.cine .demo-bubble .word:hover { background: rgba(242, 194, 0, 0.22); }
.cine .demo-bubble .word.saved { background: linear-gradient(transparent 72%, rgba(242, 194, 0, 0.45) 72%); }

/* Flip-Card */
.cine .flip-scene { perspective: 1200px; width: min(360px, 100%); margin: 10px auto; }
.cine .flip-card {
  position: relative; width: 100%; aspect-ratio: 8 / 5;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease-spring);
  cursor: pointer;
}
.cine .flip-card.flipped { transform: rotateY(180deg); }
.cine .flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 22px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 24px; text-align: center;
}
.cine .flip-face .kicker { margin-bottom: 0; }
.cine .flip-face.front {
  background: var(--c-paper); color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.cine .flip-face.front .kicker { color: var(--ink-3); }
.cine .flip-face.back {
  background: linear-gradient(160deg, var(--brand-green), var(--brand-green-deep));
  color: #fff;
  transform: rotateY(180deg);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.cine .flip-face .big { font-family: var(--serif); font-size: 34px; }

/* Grammatik-Demo */
.cine .lesson-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 14px 0; }
.cine .lesson-table th, .cine .lesson-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--c-line); }
.cine .lesson-table th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-mist); }
.cine .lesson-table tr td:first-child { color: var(--c-mist); }
.cine .example-line {
  padding: 10px 16px; border-left: 2px solid var(--c-gold);
  background: rgba(251, 250, 246, 0.06);
  border-radius: 0 12px 12px 0; margin-bottom: 8px; font-size: 14.5px;
}
.cine .example-line .de { color: var(--c-mist); font-size: 13px; }

/* Kultur-Demo */
.cine .wod-term { font-size: 34px; letter-spacing: -0.01em; }
.cine .lyric-line { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px dashed var(--c-line); }
.cine .lyric-line .fs { font-family: var(--serif); font-size: 17px; }
.cine .lyric-line .de { font-size: 12.5px; color: var(--c-mist); }

/* Spiele-Demo */
.cine .word-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.cine .word-tile {
  padding: 16px 12px; border-radius: var(--r-md);
  background: rgba(251, 250, 246, 0.07);
  box-shadow: 0 0 0 1px rgba(157, 191, 171, 0.24);
  font-weight: 650; font-size: 15px; text-align: center; color: var(--c-paper);
}
.cine .word-tile.right { background: rgba(127, 199, 161, 0.16); box-shadow: 0 0 0 2px var(--c-leaf); }

/* ---------------------------------------------------- Wissenschaft */
.cine .science { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.cine .science h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; margin-bottom: 10px; }
.cine .science p { font-size: 14.5px; color: rgba(251, 250, 246, 0.72); }
.cine .science .tagline { font-size: 12px; color: var(--c-leaf); font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }

/* Das Papier-Exponat: eine echte Karteikarte in der Nacht */
.paper-exhibit {
  background: var(--c-paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.85);
  transform: rotate(-1deg);
  transition: transform 0.35s var(--ease-spring);
}
.paper-exhibit:hover { transform: rotate(0deg) translateY(-3px); }
.paper-exhibit .tagline { font-size: 12px; color: var(--brand-green-deep); font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.paper-exhibit h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; margin-bottom: 10px; }
.paper-exhibit p { font-size: 14.5px; color: var(--ink-2); }
.paper-exhibit .curve-svg { margin-top: 16px; }

/* ---------------------------------------------------- Sprachwelten */
.cine .themes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.cine .theme-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-glass);
  box-shadow: 0 0 0 1px rgba(127, 199, 161, 0.16);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  text-align: left;
  color: var(--c-paper);
}
.cine .theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(127, 199, 161, 0.3), 0 40px 90px -20px rgba(0, 0, 0, 0.8);
}
.cine .theme-card .tc-head {
  height: 110px; position: relative;
  display: flex; align-items: flex-start; padding: 14px; overflow: hidden;
}
.cine .theme-card .tc-head svg { position: absolute; bottom: 0; left: 0; width: 100%; }
.cine .theme-card .tc-body { padding: 14px 16px 16px; }
.cine .theme-card .tc-body b { font-size: 16px; display: flex; gap: 8px; align-items: center; }
.cine .theme-card .tc-body span { font-size: 12.5px; color: rgba(251, 250, 246, 0.55); }

/* ---------------------------------------------------- Stimmen */
.cine .quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.cine .quote { display: flex; flex-direction: column; gap: 16px; }
.cine .quote blockquote { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.5; }
.cine .quote blockquote::before { content: "„"; color: var(--c-gold); font-size: 30px; line-height: 0; margin-right: 2px; }
.cine .quote .who { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.cine .quote .who .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(251, 250, 246, 0.1); font-size: 19px;
}
.cine .quote .who b { display: block; }
.cine .quote .who span { color: rgba(251, 250, 246, 0.55); }

/* ---------------------------------------------------- Preise */
.cine .pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 860px; margin: 0 auto; }
.cine .price-card { padding: 36px 32px; position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); }
.cine .price-card .kicker { justify-content: flex-start; margin-bottom: 0; }
.cine .price-card.premium {
  background: linear-gradient(165deg, #0d3c24, var(--brand-green-deep) 55%, #0c4d2c);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(127, 199, 161, 0.3), 0 40px 90px -20px rgba(0, 0, 0, 0.8);
}
.cine .price-card.premium .kicker { color: rgba(255, 255, 255, 0.72); }
.cine .price-card .price { font-family: var(--serif); font-size: 52px; margin: 16px 0 2px; letter-spacing: -0.02em; }
.cine .price-card .price small { font-size: 16px; font-family: var(--sans); color: inherit; opacity: 0.7; }
.cine .price-card .pmuted { font-size: 13.5px; color: rgba(251, 250, 246, 0.6); margin-top: 4px; }
.cine .price-card ul { list-style: none; margin: 22px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.cine .price-card ul li { display: flex; gap: 10px; align-items: baseline; }
.cine .price-card ul li::before { content: "•"; color: var(--c-gold); font-weight: 700; }
.cine .price-badge {
  position: absolute; top: -13px; right: 24px;
  background: var(--c-gold); color: #4a3a00;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px;
  text-transform: uppercase;
}

/* ---------------------------------------------------- FAQ */
.cine .faq { max-width: 760px; margin: 0 auto; }
.cine .faq-item { border-bottom: 1px solid var(--c-line); }
.cine .faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 4px;
  font-weight: 600; font-size: 16.5px;
}
@media (pointer: fine) { .cine:not(.cine-rm) .faq-item summary { cursor: none; } }
.cine .faq-item summary::-webkit-details-marker { display: none; }
.cine .faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 26px;
  color: var(--c-mist);
  transition: transform 0.35s var(--ease-out);
  flex: none;
}
.cine .faq-item[open] summary::after { transform: rotate(45deg); color: var(--c-gold); }
.cine .faq-item .faq-body { padding: 0 4px 24px; color: rgba(251, 250, 246, 0.72); font-size: 15px; max-width: 62ch; }

/* ---------------------------------------------------- Finale */
.finale {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 6vw;
}
.finale .inner { max-width: 900px; }
.finale p { color: rgba(251, 250, 246, 0.78); max-width: 46ch; margin: 3vh auto 0; font-size: clamp(15px, 1.4vw, 18px); }

/* ---------------------------------------------------- Footer */
.cine-footer {
  padding: 60px clamp(20px, 6vw, 72px) 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(251, 250, 246, 0.65);
  border-top: 1px solid var(--c-line);
}
.cine-footer .logo { color: var(--c-paper); }
.cine-footer .logo-dot { background: var(--c-leaf); }
.cine-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.cine-footer a { text-decoration: none; }
.cine-footer a:hover { color: #fff; text-decoration: underline; }
.cine-footer .fine { width: 100%; margin-top: 8px; font-size: 12.5px; color: rgba(157, 191, 171, 0.6); }

/* ---------------------------------------------------- Reduzierte Bewegung / Fallbacks */
.cine-rm .journey { height: auto; }
.cine-rm .station {
  position: relative; inset: auto; opacity: 1 !important;
  min-height: 100svh; pointer-events: auto; transform: none !important;
}
.cine-rm .cine-bar, .cine-rm .cine-cue, .cine-rm .cine-hud, .cine-rm .cine-fly, .cine-rm .cine-loader { display: none; }
.cine-rm .chatline .tap-invite::after { animation: none; }
.cine-rm .marquee-track { animation: none; }

.cine-no3d {
  background:
    radial-gradient(120vmax 80vmax at 75% -10%, #1d5433, transparent 55%),
    radial-gradient(100vmax 70vmax at 10% 110%, #0a3524, transparent 60%),
    linear-gradient(#071d12, var(--c-night) 60%);
}

@media (prefers-reduced-motion: reduce) {
  .cine-loader .l-dot, .cine-cue::after, .cine .chatline .tap-invite::after,
  .cine .marquee-track { animation: none !important; }
}

/* ---------------------------------------------------- Legal (hell, unverändert) */
.legal-page { max-width: 720px; margin: 0 auto; padding: 130px 24px 80px; }
.legal-page h1 { font-family: var(--serif); font-weight: 400; font-size: 42px; margin-bottom: 30px; }
.legal-page h2 { font-size: 19px; margin: 30px 0 8px; }
.legal-page p { color: var(--ink-2); margin-bottom: 12px; font-size: 15px; }
