/* ============================================================
   NoicePatch — Landing (noicepatch.app)
   Design-DNA aus der App: Soft-Black, Karten, Lila-Akzent,
   Space Grotesk (Headlines) + IBM Plex Mono (Labels/Status).
   ============================================================ */

:root {
  --ink: #0b0b0e;
  --ink-2: #141418;
  --ink-3: #1c1c22;
  --paper: #f2f2f0;
  --muted: #8a8a92;
  --accent: #9d7bff;
  --accent-soft: rgba(157, 123, 255, 0.14);
  --run: #3fb268;
  --warn: #e8c545;
  --alert: #cf5046;
  --orange: #f0872f;
  --blue: #4c8dff;
  --line: rgba(242, 242, 240, 0.08);
  --line-strong: rgba(242, 242, 240, 0.14);
  --radius: 14px;
  --nav-h: 72px;
  --pad: clamp(20px, 4vw, 64px);
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/IBMPlexMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background-color 0.25s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot.is-hover { width: 46px; height: 46px; background: #fff; }
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.preloader__mark { width: 64px; height: 64px; color: var(--accent); }
.preloader__count {
  font-size: 13px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.2em;
}
.preloader__bar {
  width: min(240px, 60vw); height: 2px;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.preloader__bar i {
  display: block; height: 100%; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(11, 11, 14, 0.6);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 17px; }
.nav__brand svg { width: 26px; height: 26px; color: var(--accent); }
.nav__links { display: flex; gap: 34px; font-size: 12px; font-weight: 600; }
.nav__links a { color: var(--muted); text-transform: uppercase; transition: color 0.25s; }
.nav__links a:hover { color: var(--paper); }
.nav__cta {
  padding: 10px 22px; border-radius: 100px;
  background: var(--paper); color: var(--ink);
  font-size: 13px; font-weight: 600;
  transition: background-color 0.25s, transform 0.25s;
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__links a.is-active { color: var(--accent); }
.lang-toggle {
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line-strong); color: var(--muted);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  transition: color 0.25s, border-color 0.25s;
}
.lang-toggle:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 800px) { .nav__links { display: none; } }

/* ---------- Legal-Seiten ---------- */
.legal {
  max-width: 780px; margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--pad) 100px;
}
.legal h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 40px; }
.legal h2 { font-size: 21px; font-weight: 600; margin: 44px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.legal a { color: var(--accent); }
.legal .todo { color: var(--warn); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4vh) var(--pad) 10vh;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero__inner { position: relative; z-index: 2; max-width: 1200px; }
.hero__eyebrow {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; margin-bottom: 26px;
  display: flex; align-items: center; gap: 10px;
}
.hero__eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent);
}
.hero__title {
  font-size: clamp(46px, 9.2vw, 132px);
  line-height: 0.98; font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub {
  margin-top: 30px; max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted); line-height: 1.65;
}
.hero__cta { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { transform: translateY(-2px); background: #b298ff; }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--paper); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--soon { opacity: 0.55; cursor: default; }
.btn--soon:hover { border-color: var(--line-strong); color: var(--paper); transform: none; }
.hero__status {
  position: relative; z-index: 2; margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase;
}
.hero__status .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--run); margin-right: 8px;
  box-shadow: 0 0 10px var(--run);
  animation: pulse 2.2s ease-in-out infinite;
}
@media (max-width: 700px) {
  .hero__status {
    flex-direction: column; align-items: flex-start; gap: 7px;
    font-size: 10px;
  }
}
@keyframes pulse { 50% { opacity: 0.35; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; overflow: hidden; white-space: nowrap;
  background: var(--ink);
}
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span {
  font-size: clamp(15px, 1.6vw, 19px); font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  padding: 0 34px; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 34px;
}
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 9px; }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(90px, 12vh, 160px) var(--pad); }
.section__head { max-width: 1200px; margin: 0 auto clamp(44px, 6vh, 80px); }
.eyebrow {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.section__title {
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.04;
  text-wrap: balance;
}
.section__title .line { display: block; overflow: hidden; }
.section__title .line > span { display: inline-block; }
.section__sub {
  margin-top: 22px; max-width: 620px;
  color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.65;
}

/* ---------- Device-Compositing (echter Frame + Screen-Maske) ---------- */
.hero__device {
  position: relative; z-index: 2;
  max-width: min(1080px, 92%);
  margin: clamp(40px, 7vh, 80px) auto 40px;
}
.device { position: relative; }
.device__frame { position: relative; z-index: 2; width: 100%; }
/* Wrapper = exakt die Frame-Box, Maske 1:1; Screenshot in der gemessenen
   Screen-BBox der Maske (mask_bbox.swift: 9.05/2.17/81.85/86.61). */
.device__screenwrap {
  position: absolute; inset: 0; z-index: 1;
  -webkit-mask-image: url("../assets/frames/macbook-pro-16-space-black-mask-display.webp");
  mask-image: url("../assets/frames/macbook-pro-16-space-black-mask-display.webp");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.device__screen {
  position: absolute;
  left: 9.05%; top: 2.17%; width: 81.85%; height: 86.61%;
  object-fit: cover; object-position: left top;
}
@media (max-width: 800px) { .hero__device { margin-bottom: 20px; } }

/* ---------- Ansichten-Viewer (echte Screenshots) ---------- */
.viewer { max-width: 1300px; margin: 0 auto clamp(40px, 6vh, 70px); }
.viewer__tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.viewer__tab {
  padding: 10px 22px; border-radius: 100px;
  border: 1px solid var(--line-strong); color: var(--muted);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.viewer__tab:hover { color: var(--paper); }
.viewer__tab.is-active { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.viewer__frame {
  border: 1px solid var(--line-strong); border-radius: 18px; overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}
.viewer__frame img { width: 100%; display: block; }

.routing__facts {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.fact { border-top: 1px solid var(--line); padding: 24px 4px 0; }
.fact h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.fact p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Screenshot-Karte ---------- */
.shotcard {
  max-width: 1150px; margin: 0 auto;
  border: 1px solid var(--line-strong); border-radius: 18px; overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 90px rgba(157, 123, 255, 0.06);
}
.shotcard img { width: 100%; display: block; }

/* ---------- Filter Grid ---------- */
.filters__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}
.ecard--filter { transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.ecard--filter:hover { border-color: rgba(157, 123, 255, 0.55); transform: translateY(-4px); }
.ecard__tagrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.ecard__tagrow .ecard__tag { margin-bottom: 0; }
.ecard__ficon {
  width: 26px; height: 26px; padding: 4px; border-radius: 7px;
  background: var(--accent-soft); flex: none;
}

/* ---------- EQ ---------- */
.eq__panel {
  max-width: 1300px; margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 40px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}
.eq__toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; font-size: 11px; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
}
.eq__toolbar .tag { color: var(--accent); }
.eq__stage { position: relative; height: clamp(260px, 42vh, 440px); }
#eq-spectrum { position: absolute; inset: 0; width: 100%; height: 100%; }
#eq-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
#eq-svg .eq-grid line { stroke: var(--line); stroke-width: 1; }
#eq-svg .eq-grid text { fill: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
#eq-svg .eq-curve {
  fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(157, 123, 255, 0.6));
}
#eq-svg .eq-fill { fill: url(#eqFillGrad); opacity: 0.5; }
#eq-svg .band { cursor: grab; }
#eq-svg .band circle.core { stroke-width: 2.5; fill: var(--ink); }
#eq-svg .band circle.halo { fill: none; stroke-width: 1; opacity: 0.35; }
#eq-svg .band text {
  fill: var(--paper); font-family: "IBM Plex Mono", monospace;
  font-size: 10px; font-weight: 700; text-anchor: middle; dominant-baseline: central;
  pointer-events: none;
}

/* ---------- Engine Features ---------- */
.engine__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}
.ecard {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  min-height: 300px; display: flex; flex-direction: column;
}
.ecard__viz { flex: 1; position: relative; margin-bottom: 22px; min-height: 120px; }
.ecard__viz canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ecard__title { font-size: 21px; font-weight: 600; }
.ecard__text { margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.ecard__tag {
  align-self: flex-start; font-size: 10px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px;
}

/* ---------- Streamer-Sektion (knalliger) ---------- */
.streamer {
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(157, 123, 255, 0.14), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(63, 178, 104, 0.09), transparent 60%),
    var(--ink);
  border-top: 1px solid rgba(157, 123, 255, 0.25);
  border-bottom: 1px solid var(--line);
}
.section__title--big { font-size: clamp(38px, 6.4vw, 88px); max-width: 1100px; }
.section__sub--big { font-size: clamp(17px, 1.8vw, 22px); max-width: 720px; color: var(--paper); opacity: 0.82; }
.streamer__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.scard {
  background: rgba(20, 20, 24, 0.75);
  border: 1px solid rgba(157, 123, 255, 0.22);
  border-radius: var(--radius);
  padding: 30px 26px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.scard:hover { border-color: rgba(157, 123, 255, 0.55); transform: translateY(-4px); }
.scard__num { display: block; font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.2em; margin-bottom: 16px; }
.scard h3 { font-size: clamp(19px, 1.8vw, 23px); font-weight: 600; margin-bottom: 10px; }
.scard p { color: var(--muted); font-size: 14.5px; line-height: 1.62; }

/* ---------- Stream-Deck-Wand (echte Plugin-Renders) ---------- */
.decksec { overflow: hidden; }
.deckwall {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0 calc(-1 * var(--pad)) clamp(40px, 6vh, 64px);
}
.deckwall__row { display: flex; gap: 14px; will-change: transform; width: max-content; }
.deckwall__row img {
  width: clamp(84px, 8.5vw, 118px); height: clamp(84px, 8.5vw, 118px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #060608;
  flex: none;
}
.deckwall__row img.wide { width: auto; aspect-ratio: 2 / 1; }
.deck__stats {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; text-align: center;
}
.dstat { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px; }
.dstat__num { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.dstat__label { margin-top: 8px; font-size: 10.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }

/* ---------- Stats ---------- */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1300px; margin: 0 auto;
}
.stat { padding: clamp(36px, 5vh, 60px) 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { font-size: clamp(42px, 5vw, 68px); font-weight: 700; letter-spacing: -0.03em; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { margin-top: 6px; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; }
@media (max-width: 700px) { .stat { border-right: none; border-bottom: 1px solid var(--line); } }

/* ---------- Pricing ---------- */
.pricing { display: grid; place-items: center; position: relative; }
.pricing__bg {
  position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw;
  background: url("../assets/cover/kabel-gold-lila.webp") center 62% / cover no-repeat;
  opacity: 0.4; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.pricing__grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center; gap: clamp(28px, 5vw, 80px);
  width: min(1180px, 100%);
}
.pricing__box { display: grid; place-items: center; }
.pricing__box img {
  width: min(420px, 100%); height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.65));
}
@media (max-width: 960px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__box img { width: min(300px, 80%); }
}
.price-card {
  width: min(560px, 100%);
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(157, 123, 255, 0.4);
  border-radius: 24px;
  padding: clamp(34px, 5vw, 56px);
  position: relative; overflow: hidden;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.6), 0 0 80px rgba(157, 123, 255, 0.08) inset;
}
.price-card__flag {
  position: absolute; top: 22px; right: -46px;
  background: var(--accent); color: var(--ink);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  padding: 7px 52px; transform: rotate(38deg);
  text-transform: uppercase;
}
.price-card__label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; }
.price-card__price { margin-top: 14px; display: flex; align-items: baseline; gap: 14px; }
.price-card__num { font-size: clamp(64px, 8vw, 96px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-card__once { color: var(--muted); font-size: 15px; }
.price-card__strike { color: var(--muted); text-decoration: line-through; font-size: 26px; font-weight: 500; }
.price-card ul { list-style: none; margin: 30px 0 34px; display: flex; flex-direction: column; gap: 13px; }
.price-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--paper); }
.price-card li::before { content: "✓"; color: var(--run); font-weight: 700; flex: none; }
.price-card li small { color: var(--muted); }
.price-card__cta { display: flex; flex-direction: column; gap: 12px; }
.price-card__cta .btn { justify-content: center; width: 100%; }
.price-card__note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(50px, 8vh, 90px) var(--pad) 40px;
}
.footer__grid {
  width: 100%;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 19px; }
.footer__brand svg { width: 32px; height: 32px; color: var(--accent); }
.footer__meta { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer__links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col h4 { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; color: var(--paper); margin-bottom: 10px; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.footer__col a:hover { opacity: 1; color: var(--accent); }
.footer__bottom {
  width: 100%; margin: 60px 0 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Reveal-Helfer ---------- */
.reveal { opacity: 0; transform: translateY(40px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__status .dot { animation: none; }
}

/* ---------- Hero CTA-Note + Streamer-Shot ---------- */
.hero__ctanote {
  margin-top: 16px; font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em;
}
.shotcard--streamer { margin-top: clamp(36px, 5vh, 56px); }
.shotcap {
  padding: 12px 18px; font-size: 10.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

/* ---------- Stream Deck 3D-Gerät (echte Renders) ---------- */
.deck3d {
  perspective: 1400px;
  max-width: 760px; margin: 0 auto clamp(44px, 6vh, 70px);
}
.deck3d__body {
  background: linear-gradient(160deg, #26262c, #0e0e12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: clamp(18px, 3vw, 30px);
  transform: rotateX(16deg);
  transform-style: preserve-3d;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.6) inset;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.deck3d:hover .deck3d__body { transform: rotateX(9deg); }
.deck3d__keys { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(8px, 1.4vw, 14px); }
.deck3d__keys img {
  width: 100%; aspect-ratio: 1; border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #060608;
}
.deck3d__dials {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.4vw, 14px);
  margin-top: clamp(10px, 1.6vw, 16px);
  padding-top: clamp(10px, 1.6vw, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.deck3d__dials img {
  width: 100%; aspect-ratio: 2 / 1; border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #060608;
}

/* ---------- Feature-Spalten ---------- */
.featcols {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.featcol { border-top: 1px solid var(--line); padding-top: 22px; }
.featcol h4 {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 16px;
}
.featcol ul { list-style: none; }
.featcol li {
  font-size: 14px; color: var(--paper); opacity: 0.82;
  padding: 7px 0 7px 20px; position: relative; line-height: 1.45;
  border-bottom: 1px solid rgba(242, 242, 240, 0.04);
}
.featcol li::before {
  content: "◆"; position: absolute; left: 0; top: 9px;
  color: var(--accent); font-size: 8px;
}


/* ---------- Kabel-Erklärung (100vh, gepinnt) ---------- */
.wiresec { margin: clamp(60px, 8vh, 100px) calc(-1 * var(--pad)); }
.wiresec__inner {
  min-height: 100vh;
  display: grid; grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(24px, 4vw, 70px); align-items: center;
  padding: 0 var(--pad);
  background: radial-gradient(900px 500px at 80% 50%, rgba(157, 123, 255, 0.07), transparent 65%);
}
@media (max-width: 960px) { .wiresec__inner { grid-template-columns: 1fr; min-height: auto; padding: 60px var(--pad); } }
.wiresec__title { font-size: clamp(26px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 26px; }
.wiresec__step {
  color: var(--muted); font-size: 15.5px; line-height: 1.65;
  padding: 16px 0 16px 20px; border-left: 2px solid var(--line);
  opacity: 0.35; transition: opacity 0.4s, border-color 0.4s;
}
.wiresec__step.is-active { opacity: 1; border-left-color: var(--accent); color: var(--paper); }
.wiresec__stage svg { width: 100%; height: auto; overflow: visible; }
#wire-svg .wnode { fill: var(--ink-2); stroke: rgba(242,242,240,0.16); stroke-width: 1.5; }
#wire-svg .wnode--filter { stroke: rgba(157,123,255,0.5); }
#wire-svg text { fill: var(--paper); font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 600; }
#wire-svg text.sub { fill: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: 0.1em; }
#wire-svg .wire2 { fill: none; stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(157,123,255,0.45)); }
#wire-svg .wpulse { filter: drop-shadow(0 0 8px currentColor); }

/* ---------- Szenarien ---------- */
.scenes__wrap { display: flex; flex-direction: column; }
.scene {
  min-height: 100vh;
  display: grid; grid-template-columns: minmax(300px, 480px) 1fr;
  gap: clamp(26px, 4vw, 80px); align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vh, 80px) 0;
}
.scene--rev { grid-template-columns: 1fr minmax(300px, 480px); }
.scene--rev .scene__text { order: 2; }
@media (max-width: 960px) {
  .scene, .scene--rev { grid-template-columns: 1fr; min-height: auto; }
  .scene--rev .scene__text { order: 0; }
}
.scene__num { display: block; font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.24em; margin-bottom: 18px; }
.scene__text h3 { font-size: clamp(28px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px; }
.scene__text > p { color: var(--muted); font-size: clamp(15px, 1.5vw, 17.5px); line-height: 1.7; }
.scene__chain {
  margin-top: 22px; padding: 12px 16px;
  border: 1px solid rgba(157, 123, 255, 0.3); border-radius: 8px;
  background: var(--accent-soft);
  font-size: 11px; color: var(--paper); letter-spacing: 0.04em; line-height: 1.6;
}
.scene__art {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55);
}
.scene__art img { width: 100%; display: block; }
.scene__art--a { background: linear-gradient(160deg, #17131f, var(--ink-2)); }
.scene__art--b { background: linear-gradient(160deg, #101720, var(--ink-2)); }
.scene__art--c { background: linear-gradient(160deg, #11181a, var(--ink-2)); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-size: clamp(16px, 1.7vw, 19px); font-weight: 600;
  transition: color 0.25s;
}
.faq__q:hover { color: var(--accent); }
.faq__q .ind { color: var(--accent); font-weight: 400; font-size: 22px; flex: none; transition: transform 0.3s; }
.faq__item.is-open .ind { transform: rotate(45deg); }
.faq__a { overflow: hidden; height: 0; }
.faq__a p { color: var(--muted); font-size: 15px; line-height: 1.7; padding: 0 4px 24px; max-width: 92%; }

/* ---------- Support ---------- */
.support__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.supcard {
  display: block; background: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.supcard:hover { border-color: rgba(157, 123, 255, 0.5); transform: translateY(-4px); }
.supcard h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.supcard p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.supcard__link { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- Handbuch ---------- */
.manual { max-width: 860px; }
.manual__teaser { font-size: 17px !important; color: var(--paper) !important; opacity: 0.8; }
.manual__nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; }
.manual__nav a { color: var(--accent); }

/* ---------- Handbuch-Sidebar ---------- */
.manual-body { background: var(--ink); }
.manual-layout { display: flex; min-height: 100vh; }
.mnav {
  position: sticky; top: 0; align-self: flex-start;
  height: 100vh; width: 250px; flex: none;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--ink-2);
  padding: 18px 12px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.mnav.is-min { width: 66px; }
.mnav__toggle {
  align-self: flex-end;
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  color: var(--muted); border: 1px solid var(--line);
  margin-bottom: 18px; flex: none;
  transition: color 0.25s, transform 0.35s;
}
.mnav__toggle:hover { color: var(--accent); }
.mnav.is-min .mnav__toggle { transform: rotate(180deg); align-self: center; }
.mnav__toggle svg { width: 16px; height: 16px; }
.mnav__items { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mnav__item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 10px;
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.mnav__item:hover { color: var(--paper); background: rgba(242, 242, 240, 0.04); }
.mnav__item.is-active { color: var(--accent); background: var(--accent-soft); }
.mnav__item svg { width: 19px; height: 19px; flex: none; }
.mnav.is-min .mnav__item span { opacity: 0; }
.mnav__item span { transition: opacity 0.2s; }
.mnav__item--back { margin-top: auto; border-top: 1px solid var(--line); border-radius: 0; padding-top: 16px; }
.manual-content {
  flex: 1; min-width: 0;
  max-width: 860px;
  padding: clamp(40px, 7vh, 80px) clamp(24px, 5vw, 70px) 100px;
}
.manual-content h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px; }
.manual-content h2 { font-size: 21px; font-weight: 600; margin: 44px 0 12px; }
.manual-content p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.manual-content a { color: var(--accent); }
@media (max-width: 800px) {
  .mnav { position: fixed; z-index: 500; }
  .mnav.is-min { width: 60px; }
  .manual-content { padding-left: 84px; }
}

/* ---------- FAQ v2: Sticky-Antwort links, Fragen rechts ---------- */
.faq2 {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(300px, 520px);
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}
.faq2__panel {
  position: sticky; top: calc(var(--nav-h) + 30px);
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(157, 123, 255, 0.35);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 48px);
  min-height: 320px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.faq2__panel .q { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 18px; }
.faq2__panel .a { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.75; }
.faq2__list { display: flex; flex-direction: column; }
.faq2__item {
  text-align: left; padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; font-weight: 600; color: var(--muted);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  border-radius: 10px 10px 0 0;
  transition: color 0.2s, background-color 0.2s;
}
.faq2__item:hover { color: var(--paper); }
.faq2__item.is-active { color: var(--accent); background: rgba(157, 123, 255, 0.06); }
.faq2__item .arrow { opacity: 0; transition: opacity 0.2s; color: var(--accent); flex: none; }
.faq2__item.is-active .arrow { opacity: 1; }
@media (max-width: 900px) {
  .faq2 { grid-template-columns: 1fr; }
  .faq2__panel { position: static; order: -1; }
}

/* ---------- VS-CC Cookie-Banner ---------- */
.cc-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 8000;
  max-width: 620px; margin: 0 auto;
  background: rgba(20, 20, 24, 0.92);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.cc-banner__text { flex: 1 1 260px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.cc-banner__text a { color: var(--accent); text-decoration: underline; }
.cc-banner__actions { display: flex; gap: 10px; }
.cc-btn { padding: 10px 20px; font-size: 13px; }




/* ---------- Filter-Flipflop: eine Bühne pro Filter ---------- */

.frow {
  position: relative;
  min-height: 82vh;
  display: flex; align-items: center;
  padding: clamp(30px, 5vh, 60px) 0;
  border-top: 1px solid var(--line);
}
.frow--rev { justify-content: flex-end; }
@media (max-width: 900px) { .frow, .frow--rev { min-height: 60vh; } }
.frow__num { display: block; font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.24em; margin-bottom: 20px; }
.frow__tagrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.frow__name { font-size: clamp(42px, 5.8vw, 84px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 20px; }
.frow__hint { color: var(--paper); opacity: 0.92; font-size: clamp(18px, 2vw, 24px); line-height: 1.6; max-width: 560px; }
.frow__more { margin-top: 16px; color: var(--muted); font-size: clamp(15.5px, 1.6vw, 19px); line-height: 1.75; max-width: 540px; }
.fstage__icon {
  width: 54px; height: 54px; flex: none; display: block;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  background: var(--accent);
}
/* Tag-Text exakt mittig zum Icon (ecard__tag bringt align-self/margin mit) */
.fstage__ui .frow__tagrow { align-items: center; gap: 16px; }
.fstage__ui .frow__tagrow .ecard__tag { align-self: center; margin-bottom: 0; }
/* Dock: alle 14 Filter klein, der aktive leuchtet in seiner Filterfarbe */
.fstage__dock {
  position: absolute; z-index: 1; left: 0;
  top: clamp(84px, 13vh, 150px);
  display: flex; gap: 15px;
}
.fstage__dock span {
  width: 21px; height: 21px; flex: none;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  background: rgba(242, 242, 240, 0.26);
  transition: background 0.35s, transform 0.35s, opacity 0.35s;
}
.fstage__dock span.is-active {
  background: var(--fc, var(--accent));
  transform: scale(1.35);
}
@media (max-width: 720px) {
  .fstage__dock { gap: 8px; }
  .fstage__dock span { width: 16px; height: 16px; }
}
.frow__tagrow { display: flex; align-items: center; gap: 14px; }
.frow__tagrow .ecard__tag { margin: 0; }
.frow__text {
  position: relative; z-index: 1;
  max-width: 620px;
  text-shadow: 0 2px 24px rgba(11, 11, 14, 0.9), 0 0 8px rgba(11, 11, 14, 0.8);
}
/* Grafik = vollflächige Hintergrund-Ebene der Zeile, kein Rahmen, kein Verlauf */
.frow__stage {
  position: absolute; top: 0; bottom: 0;
  left: calc(-1 * var(--pad)); right: calc(-1 * var(--pad));
  z-index: 0; opacity: 0.42;
  pointer-events: none;
}
.frow__stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }




/* ---------- Filter-Bühne: ein Signal, gepinnt im Container ---------- */
.fstage {
  position: relative;
  max-width: 1300px; margin: 0 auto;
  height: 100vh;
  display: flex; align-items: center;
}
#fstage-canvas {
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 50vw); width: 100vw; height: 100%;
  z-index: 0; opacity: 0.7;
}
.fstage__ui { position: relative; z-index: 1; max-width: 600px; }
.fstage__num { display: block; font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.24em; margin-bottom: 20px; }
.fstage__name {
  font-size: clamp(42px, 5.6vw, 80px); font-weight: 700;
  letter-spacing: -0.025em; margin: 14px 0 18px;
  text-shadow: 0 2px 24px rgba(11, 11, 14, 0.9);
}
.fstage__hint {
  color: var(--paper); opacity: 0.92;
  font-size: clamp(17px, 1.9vw, 23px); line-height: 1.6; max-width: 540px;
  text-shadow: 0 2px 18px rgba(11, 11, 14, 0.9);
}
.fstage__more {
  margin-top: 14px; color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.72; max-width: 520px;
  text-shadow: 0 2px 18px rgba(11, 11, 14, 0.9);
}
.fstage__progress {
  position: absolute; left: 0; right: 0; bottom: 36px; z-index: 1;
  height: 2px; background: rgba(242, 242, 240, 0.1); border-radius: 2px;
}
.fstage__progress i {
  display: block; height: 100%; width: 0;
  background: var(--accent); border-radius: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ---------- Filter-Gesamtübersicht (nach der Signal-Bühne) ---------- */
.filters__overview { max-width: 1300px; margin: clamp(70px, 10vh, 120px) auto 0; }
.filters__overview-title {
  font-size: clamp(24px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.filters__grid2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
