/* ============================================================
   Radieschen Studio – Premium Dark Theme
   ============================================================
   01 Tokens      02 Base        03 Layout
   04 Nav         05 Hero        06 Sections/Typo
   07 Cards       08 Carousel    09 Features
   10 Sub-Heroes  11 About/CTA   12 Support/FAQ
   13 Prose       14 Footer      15 Cookie/Modal
   16 Responsive & Reduced Motion
============================================================ */

/* ── 01  Tokens ──────────────────────────────────────────── */
:root {
  --accent-green:  #34d399;
  --accent-gold:   #f5c954;
  --accent-orange: #ff9f0a;
  --accent-violet: #a78bfa;
  --bg:            #08090b;
  --bg-elev-1:     #101114;
  --bg-elev-2:     #15171c;
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --text:          #f4f5f7;
  --text-muted:    #a2a8af;
  --text-dim:      #6b7075;
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-pill: 999px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 10px 28px rgba(0,0,0,0.35);
  --shadow-lift: 0 1px 0 rgba(255,255,255,0.06) inset, 0 18px 40px rgba(0,0,0,0.45);
  /* Legacy-Aliase – bestehende Klassen bleiben kompatibel */
  --green: var(--accent-green); --gold: var(--accent-gold);
  --orange: var(--accent-orange); --purple: var(--accent-violet);
  --muted: var(--text-muted);
  --bg-card: rgba(255,255,255,0.03); --radius: var(--r-md);
}

/* ── 02  Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent-green); text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .85; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; border-radius: 6px; }
.no-text-select, .no-text-select * { user-select: none !important; -webkit-user-select: none !important; }

/* ── 03  Layout ──────────────────────────────────────────── */
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container.wide { max-width: 960px; }
main { display: block; }

/* ── 04  Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; height: 56px;
}
.nav-brand {
  font-weight: 700; font-size: 1rem; color: var(--text);
  display: flex; align-items: center; gap: 10px; letter-spacing: -0.005em;
}
.nav-brand a, .nav-brand-link {
  color: inherit; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.nav-brand-logo { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: color .2s ease; padding: 4px 0; position: relative;
}
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-links a[aria-current="true"] { color: var(--text); }
.nav-links a[aria-current="true"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -18px;
  height: 2px; border-radius: 2px; background: var(--accent-gold); opacity: .9;
}
.lang {
  font-size: 0.78rem; padding: 3px 10px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: border-color .2s ease, color .2s ease;
}
.lang:hover { border-color: var(--border-strong); color: var(--text); opacity: 1; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.4rem; cursor: pointer; padding: 4px;
}

/* ── 05  Hero ────────────────────────────────────────────── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlow {
  0%, 100% { opacity: .55; transform: translate(-50%, 0) scale(1); }
  50%      { opacity: .75; transform: translate(-50%, 0) scale(1.05); }
}
/* Dezenter Atem-Puls für das Logo-Wasserzeichen – 9 s Zyklus, minimal skaliert */
@keyframes heroWatermarkPulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50%      { opacity: 0.18; transform: scale(1.025); }
}
.hero {
  text-align: center; padding: 144px 24px 128px;
  position: relative; overflow: hidden;
  min-height: clamp(560px, 72vh, 820px);
  display: flex; flex-direction: column; justify-content: center;
  /* Weicher Übergang an Hero-Ober- und Unterkante */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 64px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 64px, #000 calc(100% - 80px), transparent 100%);
}
.hero::before {
  content: ""; position: absolute; left: 50%; top: 18%;
  width: 720px; height: 720px; transform: translate(-50%, 0);
  background: radial-gradient(closest-side, rgba(167,139,250,0.18), rgba(52,211,153,0.08) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: heroGlow 8s ease-in-out infinite;
}
.hero > * { position: relative; z-index: 2; }

/* Logo als Wasserzeichen hinter dem Text – Höhen-basiert, damit es immer komplett passt */
.hero--watermark::after {
  content: ""; position: absolute; inset: 0;
  background-image: url('Radieschen Transparent.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto clamp(360px, 60vh, 620px);
  filter: saturate(0.9);
  pointer-events: none; z-index: 1;
  transform-origin: center center;
  animation: heroWatermarkPulse 9s ease-in-out 0.2s infinite;
  /* Weiches Ausblenden an allen vier Kanten, damit das Logo nicht hart endet */
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; padding: 0 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 4.4rem);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px; line-height: 1.1;
  animation: heroReveal .6s ease-out .12s forwards; opacity: 0;
}
.hero p {
  color: var(--text-muted); font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  max-width: 720px; margin: 0 auto; line-height: 1.8;
  animation: heroReveal .6s ease-out .24s forwards; opacity: 0;
}

/* ── 05b  Pillar Lighting (nur auf body.has-pillar) ──────── */
/* Litfaßsäulen-Andeutung: Rand-Vignette + Top-Spotlight + elliptischer Hero-Glow
   + Mikro-Perspektive auf Randkarten + horizontale Säulenbänder. */
body.has-pillar { position: relative; }
body.has-pillar::before, body.has-pillar::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 4;
}
body.has-pillar::before {
  background: radial-gradient(ellipse 120% 90% at 50% 50%, transparent 0%, transparent 55%, rgba(0,0,0,0.28) 92%, rgba(0,0,0,0.42) 100%);
  mix-blend-mode: multiply;
}
body.has-pillar::after {
  background: radial-gradient(ellipse 70% 28% at 50% -8%, rgba(255,255,255,0.06), transparent 70%);
  mix-blend-mode: screen;
}
body.has-pillar .hero::before {
  width: 1000px; height: 520px;
  background: radial-gradient(ellipse closest-side, rgba(167,139,250,0.20), rgba(52,211,153,0.08) 45%, transparent 70%);
}
body.has-pillar .section + .section { position: relative; }
body.has-pillar .section + .section::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(255,255,255,0.07) 35%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.07) 65%, transparent 100%);
}

/* ── 06  Sections & Typography ───────────────────────────── */
.section { padding: 96px 0; }
.section-title {
  font-size: 1.75rem; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 10px; padding-bottom: 14px;
  text-align: center; font-family: inherit;
  border-bottom: 1px solid var(--border);
}
.section-sub {
  color: var(--text-muted); text-align: center; margin-bottom: 48px;
  font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── 07  Product Cards (Home) ────────────────────────────── */
.products-wrap { position: relative; }
.products {
  display: flex; gap: 24px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 24px 24px 32px;
  /* Weicher Fade an linker und rechter Kante, damit abgeschnittene Karten sanft enden */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}
.products::-webkit-scrollbar { display: none; }
.products .card {
  flex: 0 0 min(340px, 85vw); scroll-snap-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease, border-color .2s ease;
  user-select: none;
}
.products.in-view .card { opacity: 1; transform: translateY(0); }
.products.in-view .card:nth-child(1) { transition-delay: 0ms; }
.products.in-view .card:nth-child(2) { transition-delay: 80ms; }
.products.in-view .card:nth-child(3) { transition-delay: 160ms; }
.products.in-view .card:nth-child(4) { transition-delay: 240ms; }

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)) var(--bg-elev-1);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px 28px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative; isolation: isolate;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: radial-gradient(60% 90% at 50% -10%, var(--card-accent, transparent), transparent 70%);
  opacity: .28; z-index: -1; pointer-events: none;
}
.card:hover {
  border-color: var(--border-strong); transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.card--violet { --card-accent: var(--accent-violet); }
.card--orange { --card-accent: var(--accent-orange); }
.card--gold   { --card-accent: var(--accent-gold); }
.card--green  { --card-accent: var(--accent-green); }

.card-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.card-badge--green  { background: rgba(52,211,153,0.12);  color: var(--accent-green); }
.card-badge--gold   { background: rgba(245,201,84,0.14);  color: var(--accent-gold); }
.card-badge--orange { background: rgba(255,159,10,0.14);  color: var(--accent-orange); }
.card-badge--purple { background: rgba(167,139,250,0.16); color: var(--accent-violet); }

.card h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.card-body { flex: 1; min-height: 0; }
.card-body p, .card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px;
}
.card-body ul, .card ul { list-style: none; margin-bottom: 20px; padding-left: 0; }
.card ul li {
  color: var(--text-muted); font-size: 0.85rem;
  padding: 6px 0 6px 1.15em; position: relative; line-height: 1.5;
}
.card ul li::before { content: "·"; position: absolute; left: 0; color: rgba(255,255,255,0.28); }

.card-media {
  min-height: 260px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 20px; pointer-events: none;
}
.card-media .card-img-flip { pointer-events: auto; }
.card-media .card-img { margin: 0 auto; }
.card-img {
  border-radius: var(--r-md); margin: 0;
  max-height: 260px; object-fit: contain; display: block;
}

.card-img-flip {
  perspective: 800px; margin: 0 auto;
  cursor: pointer; width: 100%; height: 260px; min-height: 260px;
}
.card-img-flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .5s ease;
}
.card-img-flip.flipped .card-img-flip-inner { transform: rotateY(180deg); }
.card-img-flip .card-img-front, .card-img-flip .card-img-back {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0;
  object-fit: contain; object-position: center;
  border-radius: var(--r-sm);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.card-img-flip .card-img-back { transform: rotateY(180deg); }

.card-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: auto; padding-top: 16px; width: 100%; min-height: 40px;
}
.card-actions .badge { margin-left: auto; }
.card-link { font-size: 0.86rem; font-weight: 600; }
.card-link--green  { color: var(--accent-green); }
.card-link--gold   { color: var(--accent-gold); }
.card-link--orange { color: var(--accent-orange); }
.card-link--purple { color: var(--accent-violet); }

.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--r-sm); overflow: hidden; background: #000;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.badge { display: inline-block; }
.badge img { height: 40px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 600; cursor: pointer;
  background: none; border: none; padding: 0; font-family: inherit;
}

/* Produktnamen-Spans */
.wt-first, .dg-first, .ls-first { color: var(--text); }
.wt-second { color: var(--accent-gold); }
.dg-second { color: var(--accent-orange); }
.ls-second { color: var(--accent-violet); }

/* ── 08  Carousel ────────────────────────────────────────── */
.products-wrap.is-carousel .products {
  overflow: hidden; padding: 0; scroll-snap-type: none; cursor: grab;
}
.products-wrap.is-carousel .products.is-dragging { cursor: grabbing; }
.products-wrap.is-carousel .products-track {
  display: flex; gap: 24px; align-items: stretch; will-change: transform;
}
.products-wrap.is-carousel .products-track.is-animating {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 1);
}
/* Keine gestaffelten Delays aus .products.in-view – sonst ruckelt der Fokus beim Slide */
.products-wrap.is-carousel .products.in-view .card {
  transition-delay: 0ms !important;
}
.products-wrap.is-carousel .products .card {
  flex: 0 0 min(340px, 82vw);
  opacity: .28; transform: scale(.9);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 1),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 1),
    border-color .2s ease;
}
.products-wrap.is-carousel .products .card.is-adjacent { opacity: .55; transform: scale(.94); }
.products-wrap.is-carousel .products .card.is-active   { opacity: 1; transform: scale(1); }

/* Mikro-Perspektive: Randkarten leicht zur Säulenmitte gekippt */
body.has-pillar .products-wrap.is-carousel .products-track {
  perspective: 2400px; perspective-origin: 50% 55%; transform-style: preserve-3d;
}
body.has-pillar .products-wrap.is-carousel .products .card { transform: scale(.9) rotateY(0deg); }
body.has-pillar .products-wrap.is-carousel .products .card.is-adjacent { transform: scale(.94) rotateY(var(--tilt, 0deg)); }
body.has-pillar .products-wrap.is-carousel .products .card.is-adjacent-left  { --tilt:  0.5deg; }
body.has-pillar .products-wrap.is-carousel .products .card.is-adjacent-right { --tilt: -0.5deg; }
body.has-pillar .products-wrap.is-carousel .products .card.is-active { transform: scale(1) rotateY(0deg); }

.products-arrow {
  display: flex; position: absolute; top: 50%;
  transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,20,22,0.6); border: 1px solid var(--border);
  color: var(--text); font-size: 1.25rem; cursor: pointer;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  align-items: center; justify-content: center;
}
.products-arrow:hover { background: rgba(255,255,255,0.1); border-color: var(--border-strong); }
.products-arrow:active { transform: translateY(-50%) scale(.95); }
.products-arrow--left  { left: 6px; }
.products-arrow--right { right: 6px; }

.products-dots {
  display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px;
}
.products-dots button {
  width: 8px; height: 8px; padding: 0; border: none; cursor: pointer;
  border-radius: 50%; background: rgba(255,255,255,0.18);
  transition: width .3s ease, background .2s ease;
}
.products-dots button:hover { background: rgba(255,255,255,0.32); }
.products-dots button.is-active {
  width: 22px; background: var(--accent-gold); border-radius: 999px;
}

@media (min-width: 700px) {
  .products .card { flex: 0 0 min(380px, 72vw); }
  .products-wrap.is-carousel .products .card { flex: 0 0 380px; }
  .products-arrow { width: 48px; height: 48px; }
  .products-arrow--left  { left: 8px; }
  .products-arrow--right { right: 8px; }
}
@media (min-width: 960px) {
  .products .card { flex: 0 0 360px; }
  .products-wrap.is-carousel .products .card { flex: 0 0 420px; }
}

/* ── 09  Features Grid ───────────────────────────────────── */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px;
}
.feat {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)) var(--bg-elev-1);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 24px 22px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease, border-color .25s ease, background .25s ease;
}
.features.in-view .feat { opacity: 1; transform: translateY(0); }
.features.in-view .feat:nth-child(1) { transition-delay: 0ms; }
.features.in-view .feat:nth-child(2) { transition-delay: 80ms; }
.features.in-view .feat:nth-child(3) { transition-delay: 160ms; }
.features.in-view .feat:nth-child(4) { transition-delay: 240ms; }
.features.in-view .feat:nth-child(5) { transition-delay: 320ms; }
.features.in-view .feat:nth-child(6) { transition-delay: 400ms; }
.feat:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.055); }
.feat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.feat-icon {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem;
  color: var(--accent-gold);
  transition: transform .3s ease, filter .3s ease;
}
.feat:hover .feat-icon {
  transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(245,201,84,0.6));
}
.feat-icon svg { width: 100%; height: 100%; display: block; stroke-width: 2px; }
.feat h3 { font-size: 0.95rem; font-weight: 600; margin: 0; line-height: 1.25; }
.feat p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.65; margin: 0 0 0 32px; }

/* Marken-Varianten */
.dg-feat:hover      { border-color: rgba(255,159,10,0.32); }
.dg-feat .feat-icon { color: var(--accent-orange); }
.dg-feat:hover .feat-icon { filter: drop-shadow(0 0 6px rgba(255,159,10,0.6)); }
.ls-feat:hover      { border-color: rgba(167,139,250,0.35); }
.ls-feat .feat-icon { color: var(--accent-violet); }
.ls-feat:hover .feat-icon { filter: drop-shadow(0 0 6px rgba(167,139,250,0.6)); }
.wt-feat:hover      { border-color: rgba(245,201,84,0.32); }
.wt-feat .feat-icon { color: var(--accent-gold); }
.wt-feat:hover .feat-icon { filter: drop-shadow(0 0 6px rgba(245,201,84,0.6)); }

/* ── 10  Subpage Heroes (WT/DG/LS) ───────────────────────── */
.wt-hero, .dg-hero, .ls-hero {
  padding: 104px 24px 72px; text-align: center; position: relative; overflow: hidden;
}
.wt-hero::before, .dg-hero::before, .ls-hero::before {
  content: ""; position: absolute; left: 50%; top: 10%;
  width: 520px; height: 520px; transform: translate(-50%, 0);
  pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, var(--hero-glow, transparent), transparent 72%);
  opacity: .55;
}
.wt-hero { --hero-glow: rgba(245,201,84,0.16); }
.dg-hero { --hero-glow: rgba(255,159,10,0.18); }
.ls-hero { --hero-glow: rgba(167,139,250,0.20); }
.wt-hero > *, .dg-hero > *, .ls-hero > * { position: relative; z-index: 1; }

.wt-hero h1, .dg-hero h1, .ls-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em; margin-bottom: 8px;
  animation: heroReveal .55s ease-out .1s forwards; opacity: 0;
}
.wt-hero .sub, .dg-hero .sub, .ls-hero .sub {
  color: var(--text-muted); font-size: 1rem; margin-bottom: 14px;
  animation: heroReveal .55s ease-out .18s forwards; opacity: 0;
}
.wt-hero .tagline, .dg-hero .tagline, .ls-hero .tagline {
  color: var(--text-muted); font-size: 0.95rem;
  max-width: 440px; margin: 0 auto 28px;
  animation: heroReveal .55s ease-out .26s forwards; opacity: 0;
}
.wt-hero .badge, .dg-hero .badge, .ls-hero .badge {
  animation: heroReveal .55s ease-out .34s forwards; opacity: 0;
}
.wt-hero--centered, .dg-hero--centered, .ls-hero--centered { text-align: center; }

.wt-icon, .dg-icon, .ls-icon {
  width: 92px; height: 92px; border-radius: 22px;
  margin: 0 auto 24px; overflow: hidden;
  animation: heroReveal .55s ease-out forwards;
}
.wt-icon img, .dg-icon img, .ls-icon img { width: 100%; height: 100%; object-fit: contain; }
.wt-icon { box-shadow: 0 8px 32px rgba(245,201,84,0.18); }
.dg-icon { box-shadow: 0 8px 32px rgba(255,159,10,0.18); }
.ls-icon { box-shadow: 0 8px 32px rgba(167,139,250,0.28); }
.wt-icon--fallback { background: linear-gradient(135deg, var(--accent-gold), #cc783d); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.dg-icon--fallback { background: linear-gradient(135deg, var(--accent-orange), #cc5500); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.ls-icon--fallback { background: linear-gradient(135deg, var(--accent-violet), #6d42d2); display: flex; align-items: center; justify-content: center; font-size: 40px; }

.wt-hero-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center;
}
.wt-hero-text { text-align: center; flex: 1 1 320px; min-width: 0; }
.wt-hero-img {
  flex: 1 1 280px; min-width: 0;
  display: flex; justify-content: center; align-items: center;
  animation: heroReveal .55s ease-out .2s forwards; opacity: 0;
}
.wt-hero-img img {
  max-height: 260px; max-width: 100%;
  object-fit: contain; border-radius: 20px; display: block;
}

/* ── 11  About / Contact / Banner / CTA / Tags ───────────── */
.about-text {
  color: var(--text-muted); font-size: 0.95rem;
  max-width: 580px; margin: 0 auto; text-align: center; line-height: 1.8;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 700px; margin: 0 auto;
}
.contact-grid h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-grid p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 4px; }
.contact-grid a  { color: var(--accent-green); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.gallery img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%;
  border-radius: var(--r-md);
}

.banner { margin-top: 24px; padding: 0 0 8px; }
.banner img {
  width: 100%; height: auto; object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,0.45);
  display: block;
}

.cta { text-align: center; padding: 80px 24px; margin-bottom: 24px; }
.cta h2 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; }
.cta p  {
  color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-note {
  color: var(--text-dim); font-size: 0.78rem;
  margin-top: 28px; max-width: 420px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}

.demo {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 32px 28px; margin-top: 20px;
}
.demo h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.demo p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }
.demo-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; }

.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tag {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 7px 14px;
  font-size: 0.8rem; color: var(--text);
}
.tag--beta { border-color: rgba(245,201,84,0.35); position: relative; }
.tag--beta::after {
  content: "Beta"; font-size: 0.58rem; font-weight: 700; color: #000;
  background: var(--accent-gold); border-radius: 4px; padding: 1px 5px;
  margin-left: 6px; vertical-align: middle;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.tags-note {
  margin-top: 18px; font-size: 0.8rem; color: var(--text-muted);
  text-align: center; max-width: 460px;
  margin-left: auto; margin-right: auto; line-height: 1.55;
}

.page-hdr { text-align: center; padding: 88px 24px 48px; }
.page-hdr h1 {
  font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.page-hdr p { color: var(--text-muted); font-size: 0.95rem; max-width: 420px; margin: 0 auto; }

.cbox {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 32px; text-align: center; margin-bottom: 48px;
}
.cbox h2 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.cbox p  { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6; }
.cbox--gold   { border-color: rgba(245,201,84,0.22); }
.cbox--orange { border-color: rgba(255,159,10,0.22); }
.cbox--purple { border-color: rgba(167,139,250,0.28); }

.btn-gold, .btn-orange, .btn-purple {
  display: inline-block; color: #000; font-weight: 600; font-size: 0.88rem;
  padding: 10px 22px; border-radius: var(--r-pill);
  transition: opacity .2s ease, transform .15s ease;
}
.btn-gold   { background: var(--accent-gold); }
.btn-orange { background: var(--accent-orange); }
.btn-purple { background: var(--accent-violet); }
.btn-gold:hover, .btn-orange:hover, .btn-purple:hover { opacity: .92; transform: translateY(-1px); }

/* ── 12  Support / FAQ / Tips / Requirements ─────────────── */
.faq {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: inherit;
  font-size: 0.9rem; font-weight: 500; text-align: left;
  padding: 16px 18px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q::after {
  content: '+'; font-size: 1.1rem; color: var(--text-muted);
  transition: transform .2s ease; flex-shrink: 0; margin-left: 12px;
}
.faq.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 18px 18px; color: var(--text-muted);
  font-size: 0.85rem; line-height: 1.7;
}
.faq-a-inner a          { color: var(--accent-gold); }
.faq-a-inner a.orange   { color: var(--accent-orange); }
.faq-a-inner a.purple   { color: var(--accent-violet); }
.faq-a-inner a.gold     { color: var(--accent-gold); }

.tip {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 18px 20px; margin-bottom: 10px;
  display: flex; gap: 14px; align-items: flex-start;
}
.tip-icon { font-size: 1rem; flex-shrink: 0; }
.tip h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.tip p  { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; }

.reqs {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 24px; list-style: none;
}
.reqs li {
  padding: 10px 0; font-size: 0.86rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.5;
}
.reqs li:last-child { border-bottom: none; }
.reqs li strong { color: var(--text); }

.sb { margin-bottom: 48px; }
.sh {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

/* ── 13  Privacy / Prose ─────────────────────────────────── */
.prose { padding: 56px 0 32px; }
.prose h1 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 4px;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--accent-gold); padding-bottom: 8px;
}
.prose .date { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 28px; }
.prose h2 { font-size: 1.05rem; font-weight: 700; margin-top: 32px; margin-bottom: 8px; }
.prose p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.prose ul { color: var(--text-muted); font-size: 0.9rem; padding-left: 20px; margin-bottom: 10px; }
.prose li { margin-bottom: 4px; }
.prose .hl {
  background: rgba(245,201,84,0.08); border-left: 3px solid var(--accent-gold);
  padding: 12px 16px; border-radius: 0 8px 8px 0;
  margin: 16px 0; color: var(--text); font-size: 0.9rem;
}
.prose .hl--gold   { background: rgba(245,201,84,0.09);  border-left-color: var(--accent-gold); }
.prose .hl--orange { background: rgba(255,159,10,0.09);  border-left-color: var(--accent-orange); }
.prose .hl--purple { background: rgba(167,139,250,0.12); border-left-color: var(--accent-violet); }
.prose .ccard {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px; margin-top: 24px;
}
.prose .ccard a        { color: var(--accent-gold); }
.prose .ccard a.orange { color: var(--accent-orange); }
.prose .ccard a.purple { color: var(--accent-violet); }
.prose .ccard a.gold   { color: var(--accent-gold); }

/* ── 14  Footer ──────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 48px 24px 40px; text-align: center; }
.footer-links {
  display: flex; justify-content: center; gap: 22px;
  list-style: none; margin-bottom: 18px; flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); font-size: 0.82rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-copy {
  color: var(--text-dim); font-size: 0.74rem;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.footer-logo { width: 18px; height: 18px; border-radius: 4px; vertical-align: middle; opacity: .7; }

/* ── 15  Cookie Banner & Video Modal ─────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  max-width: 520px;
  background: rgba(20,20,22,0.92); border: 1px solid var(--border);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--r-md); padding: 18px 20px; z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-banner.show { opacity: 1; pointer-events: auto; }
.cookie-banner p { color: var(--text); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 16px;
  border-radius: var(--r-pill); font-size: 0.8rem; cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.btn-ghost:hover { border-color: var(--border-strong); color: var(--text); }

.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box { width: 100%; max-width: 720px; position: relative; }
.modal-box .video-wrap { margin: 0; }
.modal-close {
  position: absolute; top: -36px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 1.6rem; cursor: pointer; opacity: .7;
}
.modal-close:hover { opacity: 1; }
.video-consent-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 260px; text-align: center; gap: 14px;
  color: var(--text-muted); font-size: 0.88rem;
}

/* ── 16  Responsive & Reduced Motion ─────────────────────── */
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(10,10,10,0.96); border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a, .nav-links .lang {
    display: block; padding: 12px 24px;
    font-size: 0.95rem; border: none; border-radius: 0;
  }
  .nav-links .lang { display: inline-block; margin: 8px 24px 12px; }
  .nav-links a[aria-current="true"]::after { display: none; }
  .nav-inner { position: relative; gap: 10px; }
  .nav-inner .nav-brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-toggle { flex-shrink: 0; }
  .hero { padding: 108px 16px 86px; min-height: clamp(500px, 70vh, 640px); }
  .hero::before { width: 420px; height: 420px; }
  /* Logo-Wasserzeichen nach oben, Text etwas tiefer – Spitze bleibt über der Headline sichtbar */
  .hero--watermark::after {
    background-position: 50% calc(50% - 12vh);
    background-size: auto clamp(300px, 48vh, 400px);
  }
  .hero-content { padding-top: 0.75rem; }
  .hero h1 { margin-top: 0.25rem; margin-bottom: 24px; }
  body.has-pillar::before { background: radial-gradient(ellipse 130% 95% at 50% 50%, transparent 0%, transparent 60%, rgba(0,0,0,0.18) 95%, rgba(0,0,0,0.28) 100%); }
  .dg-hero, .ls-hero, .wt-hero { padding: 64px 16px 44px; }
  .wt-hero-inner { flex-direction: column; gap: 32px; }
  .wt-hero-img img { max-height: 220px; }
  .page-hdr { padding: 56px 16px 32px; }
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .feat p { margin-left: 0; margin-top: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cbox { padding: 24px 20px; }
  .cta { padding: 56px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero--watermark::after { animation: none; opacity: 0.14; transform: none; }
  .hero h1, .hero p,
  .wt-hero .wt-icon, .wt-hero h1, .wt-hero .sub, .wt-hero .tagline, .wt-hero .badge, .wt-hero-img,
  .dg-hero .dg-icon, .dg-hero h1, .dg-hero .sub, .dg-hero .tagline, .dg-hero .badge,
  .ls-hero .ls-icon, .ls-hero h1, .ls-hero .sub, .ls-hero .tagline, .ls-hero .badge,
  .products .card, .feat {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
  .card-img-flip-inner { transition: none; }
  .card-img-flip.flipped .card-img-flip-inner { transform: none; }
  .card-img-flip .card-img-back { display: none; }
  .products-track.is-animating { transition: none !important; }
}
