:root {
  --void: #020208;
  --void-mid: #0a0814;
  --surface: rgba(18, 14, 32, 0.55);
  --surface-strong: rgba(26, 20, 45, 0.85);
  --border-faint: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(129, 140, 248, 0.45);
  --text: rgba(252, 250, 255, 0.96);
  --text-dim: rgba(196, 190, 220, 0.82);

  /* Brand: schwarz + neon-gelb */
  /* etwas kühleres Neon-Gelb (weniger orangestich) */
  --neon-yellow: #d9ff2f;
  --neon-yellow-soft: #f2ff6b;
  --neon-yellow-deep: #bfff00;

  --grad-cta: linear-gradient(
    125deg,
    var(--neon-yellow) 0%,
    var(--neon-yellow-deep) 45%,
    var(--neon-yellow-soft) 100%
  );
  --grad-text: linear-gradient(
    100deg,
    var(--neon-yellow) 10%,
    #ffffff 55%,
    var(--neon-yellow-soft) 100%
  );

  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Syne', var(--font-sans);
  --radius: 16px;
  --radius-xl: 24px;

  font-synthesis-weight: none;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  min-height: -webkit-fill-available;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text);
  background: var(--void);
  background-image:
    radial-gradient(ellipse 140% 80% at 15% -15%, rgba(234, 255, 0, 0.12), transparent 48%),
    radial-gradient(ellipse 100% 70% at 95% 8%, rgba(255, 212, 0, 0.12), transparent 48%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(234, 255, 0, 0.08), transparent 52%);
  background-attachment: fixed;
}

/* iOS Safari: fixed Hintergrund wirkt oft buggy, weicher Fallback */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

body::before {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: rgba(252, 250, 255, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  will-change: opacity, transform, filter;
}

.reveal.reveal--in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.wrap {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/*, Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border-faint);
  background: rgba(2, 2, 8, 0.94);
}

@media (min-width: 769px) {
  .site-header {
    position: sticky;
  }

  .site-header .nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.72rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.brand:hover {
  filter: brightness(1.08);
}

.brand img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(234, 255, 0, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  padding: 0.48rem 0.92rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cta-phone,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.58rem 1.28rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  color: #050508;
  background: var(--grad-cta);
  background-size: 180% auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 4px 24px rgba(234, 255, 0, 0.18),
    0 10px 40px rgba(255, 212, 0, 0.16);
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.2s ease,
    background-position 0.45s ease;
}

.cta-primary:hover,
.cta-phone:hover {
  transform: translateY(-2px);
  filter: saturate(110%) brightness(1.06);
  background-position: 100% 50%;
}

.cta-primary--inline {
  margin-top: 0.25rem;
}

.cta-primary--soft {
  background: linear-gradient(125deg, rgba(217, 255, 47, 0.62) 0%, rgba(242, 255, 107, 0.58) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 4px 14px rgba(217, 255, 47, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-primary--soft:hover {
  filter: saturate(105%) brightness(1.02);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 255, 0, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.nav-toggle-bars {
  display: grid;
  gap: 7px;
  width: 20px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-yellow), var(--neon-yellow-soft));
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-toggle-bars span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-mobile-cta {
  display: none;
}

.nav-mobile-head {
  display: none;
}

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  body.nav-open .site-header {
    z-index: 110;
  }

  .site-header {
    z-index: 40;
  }

  .header-inner {
    gap: 0.65rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    height: 40px;
    max-width: min(190px, 52vw);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 3;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    border: 0;
    padding: 0;
    background: rgba(8, 6, 18, 0.42);
    cursor: pointer;
    touch-action: manipulation;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  .nav {
    position: fixed;
    top: calc(3.65rem + env(safe-area-inset-top, 0px));
    left: max(1rem, env(safe-area-inset-left, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: auto;
    z-index: 120;
    max-height: calc(100vh - 4.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.85rem;
    gap: 0.45rem;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: var(--radius-xl);
    background: linear-gradient(
      165deg,
      rgba(38, 30, 62, 0.97) 0%,
      rgba(24, 18, 42, 0.96) 100%
    );
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.18s ease,
      visibility 0.22s;
  }

  .nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a,
  .nav-close {
    position: relative;
    z-index: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(234, 255, 0, 0.2);
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-mobile-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neon-yellow-soft);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(234, 255, 0, 0.28);
    border-radius: 12px;
    background: rgba(234, 255, 0, 0.08);
    color: var(--neon-yellow-soft);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-close span {
    display: block;
    transform: translateY(-1px);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.82rem 0.95rem;
    border-radius: 14px;
    font-size: 1.02rem;
    text-align: left;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav a[aria-current='page'] {
    border-color: rgba(234, 255, 0, 0.4);
    background: rgba(234, 255, 0, 0.12);
    color: var(--text);
  }

  .nav-mobile-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.65rem;
    min-height: 3.15rem;
    font-size: 0.95rem;
  }
}

/* Glass / ghost buttons */

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.42rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.btn-glass:hover {
  border-color: rgba(234, 255, 0, 0.42);
  box-shadow:
    0 0 0 1px rgba(129, 140, 248, 0.15),
    0 0 32px rgba(234, 255, 0, 0.08);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-wire {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  color: var(--neon-yellow);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(234, 255, 0, 0.35);
  transition: box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-wire:hover {
  color: #fdf4ff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 212, 0, 0.55),
    0 0 24px rgba(234, 255, 0, 0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.42rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(234, 255, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

/*, Typography helpers */

.text-gradient {
  background: var(--grad-text);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon-yellow), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*, Hero */

.hero--stage {
  position: relative;
  min-height: min(92vh, 940px);
  padding: clamp(2.75rem, 8vw, 5rem) 0 clamp(3.25rem, 10vw, 6rem);
  overflow: hidden;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: -4% -2%;
  opacity: 0.55;
}

.hero-bg img {
  width: 100%;
  height: 104%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1) translate(-1%, -0.5%);
  }
  to {
    transform: scale(1.07) translate(1.5%, 0.8%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, transparent 28%, rgba(2, 2, 8, 0.55) 70%),
    linear-gradient(
      120deg,
      rgba(2, 2, 8, 0.96) 0%,
      rgba(2, 2, 8, 0.55) 45%,
      rgba(14, 6, 30, 0.35) 100%
    );
  pointer-events: none;
}

.hero-bloom {
  position: absolute;
  width: clamp(260px, 38vw, 520px);
  height: clamp(260px, 38vw, 520px);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.52;
  pointer-events: none;
  animation: floaty 14s ease-in-out infinite alternate;
}

.hero-bloom--a {
  top: -6%;
  right: -12%;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.9), transparent 72%);
}

.hero-bloom--b {
  bottom: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(234, 255, 0, 0.4), transparent 72%);
  animation-delay: -4s;
}

@keyframes floaty {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-3%, 3%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bloom {
    animation: none;
  }
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.74fr);
  }
}

.hero-copy {
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  margin: 0 0 1.35rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(234, 255, 0, 0.25);
  background: rgba(2, 2, 8, 0.55);
  color: rgba(253, 230, 255, 0.95);
}

.hero-badge-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--neon-yellow) 45%, transparent 70%);
  box-shadow:
    0 0 0 6px rgba(234, 255, 0, 0.10),
    0 0 18px rgba(255, 212, 0, 0.35);
  animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% {
    box-shadow:
      0 0 0 9px rgba(234, 255, 0, 0.06),
      0 0 28px rgba(255, 212, 0, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge-dot {
    animation: none;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7.8vw, 4.85rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.hero-linebreak {
  display: block;
}

.hero-blurb {
  margin: 0 0 1.25rem;
  max-width: 44ch;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-tag {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.72rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: rgba(230, 220, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/*, Sections */

section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

.section-head {
  max-width: 48ch;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  text-wrap: balance;
}

.section-lede {
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 0 1.85rem;
}

.section-band {
  position: relative;
}

.section-band::before {
  content: '';
  position: absolute;
  inset: auto 0 calc(100% - 40px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(129, 140, 248, 0.45),
    rgba(255, 212, 0, 0.28),
    transparent
  );
  opacity: 0.85;
}

.section-gallery-home {
  position: relative;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.section-coops {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.coop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.coop-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.coop-pill:hover {
  border-color: rgba(234, 255, 0, 0.38);
  color: var(--neon-yellow-soft);
  box-shadow: 0 0 0 1px rgba(234, 255, 0, 0.06), 0 12px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.coop-pill:focus-visible {
  outline: 2px solid rgba(234, 255, 0, 0.55);
  outline-offset: 3px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-faint);
  background: linear-gradient(165deg, rgba(234, 255, 0, 0.05), rgba(2, 2, 8, 0.22));
  padding: 1.35rem 1.3rem 1.45rem;
}

.step-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  color: rgba(252, 250, 255, 0.92);
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
  text-wrap: balance;
}

.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.965rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  overflow: clip;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.95rem 1.05rem;
  list-style: none;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  opacity: 0.8;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-body {
  padding: 0 1.05rem 1.05rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}

.kirbe-faq,
.winter-faq {
  margin: 0;
}

.kirbe-faq p,
.winter-faq p {
  margin: 0 0 0.65rem;
}

.kirbe-faq p:last-child,
.winter-faq p:last-child {
  margin-bottom: 0;
}

.kirbe-faq__note {
  font-size: 0.92rem;
  opacity: 0.92;
}

.faq-body .kirbe-faq a,
.faq-body .winter-faq a {
  color: var(--neon-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(234, 255, 0, 0.45);
  text-underline-offset: 3px;
}

.faq-body .kirbe-faq a:hover,
.faq-body .winter-faq a:hover {
  color: #fdf4ff;
  text-decoration-color: rgba(255, 212, 0, 0.55);
}

.cta-band {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.cta-band-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(234, 255, 0, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 255, 0, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(232, 121, 249, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

@media (min-width: 860px) {
  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.cta-band-inner a[href^='mailto:'] {
  color: var(--neon-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(234, 255, 0, 0.45);
  text-underline-offset: 4px;
}

.cta-band-inner a[href^='mailto:']:hover {
  color: #fdf4ff;
  text-decoration-color: rgba(255, 212, 0, 0.6);
}

.card-grid {
  display: grid;
  gap: 1.05rem;
}

@media (min-width: 760px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  position: relative;
  padding: 1.55rem 1.45rem 1.65rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-faint);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(2, 2, 8, 0.15));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.tile-index {
  position: absolute;
  top: 1.05rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.85rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}

.tile h3 {
  font-family: var(--font-display);
  margin: 0 0 0.62rem;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tile p {
  margin: 0;
  font-size: 0.965rem;
  color: var(--text-dim);
}

.tile[data-tone='violet'].tile--glow:hover {
  border-color: rgba(234, 255, 0, 0.26);
  box-shadow:
    0 0 0 1px rgba(129, 140, 248, 0.12),
    0 20px 50px rgba(234, 255, 0, 0.08);
}

.tile[data-tone='cyan'].tile--glow:hover {
  border-color: rgba(234, 255, 0, 0.32);
  box-shadow:
    0 0 0 1px rgba(234, 255, 0, 0.12),
    0 20px 50px rgba(234, 255, 0, 0.08);
}

.tile[data-tone='amber'].tile--glow:hover {
  border-color: rgba(255, 212, 0, 0.36);
  box-shadow:
    0 0 0 1px rgba(255, 212, 0, 0.12),
    0 20px 50px rgba(234, 255, 0, 0.07);
}

.tile--glow:hover {
  transform: translateY(-6px);
}

/* Team-Seite: Porträt-Raster */

.section-team {
  scroll-margin-top: calc(var(--header-h, 4.5rem) + 0.75rem);
  padding-bottom: 0.25rem;
}

.team-hero-title {
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  color: var(--neon-yellow);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-shadow: 0 0 48px rgba(234, 255, 0, 0.12);
}

.team-hero-lede a {
  color: var(--neon-yellow);
  font-weight: 600;
  text-underline-offset: 3px;
}

.team-hero-lede a:hover {
  color: #fdf4ff;
}

.team-portrait-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 3.5vw, 2.25rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 880px) {
  .team-portrait-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-member {
  margin: 0;
}

.team-member-photo {
  margin: 0 0 0.85rem;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 18, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.team-member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-photo--missing {
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, rgba(55, 55, 70, 0.5), rgba(8, 8, 12, 0.95));
}

/* Portrait + Initialen-Fallback (Lennart), bis assets/team/lennart-portrait-480.jpg existiert */
.team-member-photo--lennart-fallback {
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: stretch;
  background: linear-gradient(165deg, rgba(55, 55, 70, 0.5), rgba(8, 8, 12, 0.95));
}

.team-member-photo--lennart-fallback .team-member-photo-img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.team-member-photo--lennart-fallback .team-member-photo-initials {
  grid-area: 1 / 1;
  place-self: center;
  z-index: 1;
}

.team-member-photo-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.28);
}

.team-member-name {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.team-member-role {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.team-member-note {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

/* Home preview mosaic */

.preview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.preview-strip img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    z-index 0s;
}

.preview-strip img:hover {
  transform: translateY(-4px) rotate(-1.25deg);
  box-shadow:
    0 0 0 1px rgba(232, 121, 249, 0.35),
    0 26px 50px rgba(0, 0, 0, 0.5);
}

/*, Gallery */

.gallery-block {
  margin-bottom: clamp(2.35rem, 5vw, 3.35rem);
  scroll-margin-top: 96px;
}

.gallery-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 520px) {
  .gallery-head {
    grid-template-columns: 1fr;
  }
}

.gallery-cover {
  width: 160px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

@media (max-width: 520px) {
  .gallery-cover {
    width: 100%;
    height: 140px;
  }
}

.gallery-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-meta {
  min-width: 0;
}

.gallery-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.gallery-info {
  color: var(--text-dim);
  font-weight: 650;
  font-size: 0.92rem;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 0.85rem;
  padding: 0;
}

.thumbs button {
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}

.thumbs button:focus-visible {
  box-shadow:
    0 0 0 2px var(--void),
    0 0 0 5px rgba(234, 255, 0, 0.45);
}

.thumbs button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.thumbs button:hover img {
  transform: scale(1.035);
}

.privacy-note-gallery {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 2rem;
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  background: rgba(2, 2, 6, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox-prev {
  left: 1.15rem;
}

.lightbox-next {
  right: 1.15rem;
}

.lightbox-nav:hover {
  box-shadow: 0 0 0 1px rgba(234, 255, 0, 0.18) inset, 0 0 22px rgba(255, 212, 0, 0.14);
}

.lightbox-nav:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--void),
    0 0 0 5px rgba(234, 255, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Forms */

.form-card {
  max-width: 560px;
  padding: clamp(1.85rem, 4.5vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-faint);
  background: linear-gradient(168deg, rgba(129, 140, 248, 0.08), rgba(2, 2, 8, 0.35));
}

.form-row {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.05rem;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.42rem;
  letter-spacing: 0.02em;
}

.form-card input:not([type='radio']):not([type='checkbox']),
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 0.75rem 0.92rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card textarea {
  min-height: 136px;
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(234, 255, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(234, 255, 0, 0.08);
}

.fieldset-radio {
  border: none;
  padding: 0;
  margin: 0 0 1.05rem;
}

.fieldset-radio legend {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.42rem;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.checkbox-row label a {
  text-decoration: underline;
  text-decoration-color: rgba(244, 114, 182, 0.55);
  text-underline-offset: 4px;
}

.form-status {
  min-height: 1.42rem;
  font-size: 0.935rem;
  margin-top: 1rem;
  color: var(--neon-yellow-soft);
  font-weight: 600;
}

.form-status--ok {
  color: rgba(110, 231, 183, 0.95);
}

.form-status--note {
  border-color: rgba(234, 255, 0, 0.22);
  background: rgba(234, 255, 0, 0.06);
  color: var(--text);
}

.form-status--note a {
  color: var(--neon-yellow-soft);
  font-weight: 700;
}

.form-status--dev {
  border-color: rgba(255, 180, 80, 0.35);
  background: rgba(255, 140, 40, 0.08);
  color: var(--text-dim);
  font-size: 0.88rem;
}

.form-status--dev code {
  font-size: 0.84em;
}

.form-status--err {
  color: rgba(252, 165, 165, 0.95);
}

.hp-wrap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.h-captcha-wrap {
  margin: 1rem 0 0.25rem;
}

.contact-aside {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(234, 255, 0, 0.18);
  background: rgba(234, 255, 0, 0.05);
}

.contact-aside p {
  margin: 0;
  font-size: 0.965rem;
  color: var(--text-dim);
}

.contact-aside a {
  color: var(--neon-yellow);
  font-weight: 700;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem 0 2.35rem;
  margin-top: auto;
  font-size: 0.895rem;
  color: var(--text-dim);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem 1.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-brand > p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(252, 250, 255, 0.9);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.social-link:hover {
  border-color: rgba(234, 255, 0, 0.38);
  color: var(--neon-yellow-soft);
  box-shadow: 0 0 0 1px rgba(234, 255, 0, 0.06), 0 10px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid rgba(234, 255, 0, 0.55);
  outline-offset: 3px;
}

.social-link__icon {
  display: block;
}

.social-links--inline {
  margin-top: 0.35rem;
}

.contact-social-lede {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.contact-social-lede__label {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(196, 190, 220, 0.9);
}

.contact-social-lede .social-links--inline {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--neon-yellow);
}

.footer-credit {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  opacity: 0.5;
  text-align: left;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.footer-credit a:hover {
  opacity: 1;
  color: var(--neon-yellow-soft);
}

/*, Mobil: kompakteres Layout (weniger „fette“ Blöcke, weniger Scroll bis zum Inhalt) */

@media (max-width: 768px) {
  .hero--stage {
    min-height: min(62vh, 480px);
    min-height: min(62svh, 480px);
    padding: clamp(1.25rem, 3.5vw, 1.75rem) 0 clamp(1.5rem, 4.5vw, 2.35rem);
  }

  .hero-shell {
    gap: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    margin-bottom: 0.75rem;
  }

  .hero-blurb {
    font-size: 0.96rem;
    line-height: 1.62;
    margin-bottom: 0.85rem;
  }

  .hero-badge {
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  section {
    padding: clamp(1.45rem, 4.5vw, 2.35rem) 0;
  }

  .section-title {
    font-size: clamp(1.48rem, 5vw, 2.1rem);
    margin-bottom: 0.55rem;
  }

  .section-lede {
    margin-bottom: 1.05rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 0.45rem;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
  }

  .section-gallery-home {
    padding-bottom: clamp(1.65rem, 4.5vw, 2.5rem);
  }

  .card-grid {
    gap: 0.72rem;
  }

  .tile {
    padding: 1.05rem 1rem 1.12rem;
  }

  .tile h3 {
    font-size: 1.12rem;
  }

  .steps {
    gap: 0.6rem;
  }

  .step {
    padding: 0.95rem 0.95rem 1rem;
  }

  .faq-item summary {
    padding: 0.72rem 0.82rem;
    font-size: 0.9rem;
  }

  .faq-body {
    padding: 0 0.82rem 0.85rem;
    font-size: 0.92rem;
  }

  .preview-strip {
    gap: 0.55rem;
    margin-bottom: 1.15rem;
  }

  .cta-band {
    padding-top: clamp(1.2rem, 3.5vw, 1.85rem);
  }

  .cta-band-inner {
    padding: 0.85rem 0.9rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
  }

  .cta-band .section-title {
    font-size: clamp(1.32rem, 4.6vw, 1.82rem);
    margin-bottom: 0.4rem;
  }

  .cta-band .section-lede {
    margin-bottom: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .cta-band-actions .cta-primary,
  .cta-band-actions .btn-glass {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .site-footer {
    padding: 1.15rem 0 calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1.1rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/*, FAQ-Bot (schwebend, ohne Server), inkl. Mobile / Safe-Area */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#faq-bot-root {
  position: relative;
  z-index: 55;
}

.faq-bot-root--open .faq-bot-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.92);
}

.faq-bot-toggle {
  position: fixed;
  z-index: 56;
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.faq-bot-toggle-glow {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(234, 255, 0, 0.35) 0%, transparent 72%);
  opacity: 0.85;
  pointer-events: none;
}

.faq-bot-toggle-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 50px;
  min-width: 50px;
  padding: 0.5rem 1rem 0.5rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 255, 0, 0.42);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #050508;
  background: var(--grad-cta);
  background-size: 170% auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 4px 20px rgba(234, 255, 0, 0.22),
    0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.faq-bot-toggle:hover .faq-bot-toggle-inner {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.faq-bot-toggle-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  background: rgba(5, 5, 8, 0.12);
}

.faq-bot-scrim {
  position: fixed;
  inset: 0;
  z-index: 54;
  background: rgba(2, 2, 8, 0.58);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.faq-bot-panel {
  position: fixed;
  z-index: 55;
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  left: auto;
  width: min(100vw - 1.5rem, 392px);
  max-height: min(78vh, 540px);
  max-height: min(78dvh, 540px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0 1rem 1rem;
  padding-top: 0.35rem;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(234, 255, 0, 0.14), transparent 55%),
    linear-gradient(165deg, rgba(22, 18, 38, 0.98) 0%, rgba(8, 6, 16, 0.99) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    0 0 0 1px rgba(234, 255, 0, 0.08) inset,
    0 28px 64px rgba(0, 0, 0, 0.55);
}

.faq-bot-panel-accent {
  height: 3px;
  width: 42%;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--neon-yellow), var(--neon-yellow-soft), transparent);
  opacity: 0.85;
  flex-shrink: 0;
}

.faq-bot-panel[hidden] {
  display: none !important;
}

.faq-bot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
  flex-shrink: 0;
}

.faq-bot-head-text {
  min-width: 0;
}

.faq-bot-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 190, 220, 0.75);
}

.faq-bot-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
}

.faq-bot-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(252, 250, 255, 0.88);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-bot-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.faq-bot-intro {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-dim);
  flex-shrink: 0;
}

.faq-bot-log {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0.6rem;
  padding: 0.55rem 0.5rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.faq-bot-msg {
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.52;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-bot-msg--bot p {
  margin: 0 0 0.55rem;
}

.faq-bot-msg--bot p:last-child {
  margin-bottom: 0;
}

.faq-bot-msg--bot .kirbe-faq p,
.faq-bot-msg--bot .winter-faq p {
  margin: 0 0 0.55rem;
}

.faq-bot-msg--bot .kirbe-faq p:last-child,
.faq-bot-msg--bot .winter-faq p:last-child {
  margin-bottom: 0;
}

.faq-bot-msg-lead {
  font-weight: 700;
  color: var(--text);
}

.faq-bot-msg-tight {
  font-size: 0.86rem;
  color: var(--text-dim);
}

.faq-bot-msg-tight a {
  color: var(--neon-yellow);
  font-weight: 700;
}

.faq-bot-msg--user {
  margin-left: 1.5rem;
  background: rgba(234, 255, 0, 0.1);
  border: 1px solid rgba(234, 255, 0, 0.18);
  color: var(--text);
}

.faq-bot-msg--bot {
  margin-right: 0.5rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(234, 255, 0, 0.45);
  color: var(--text-dim);
}

.faq-bot-msg:last-child {
  margin-bottom: 0;
}

.faq-bot-msg--bot strong {
  color: var(--text);
}

.faq-bot-msg--bot a {
  color: var(--neon-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(234, 255, 0, 0.45);
  text-underline-offset: 3px;
}

.faq-bot-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  flex-shrink: 0;
}

.faq-bot-input {
  flex: 1 1 12rem;
  min-width: 0;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}

.faq-bot-input:focus {
  outline: none;
  border-color: rgba(234, 255, 0, 0.35);
}

.faq-bot-send {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #050508;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: var(--grad-cta);
}

.faq-bot-foot {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-dim);
  flex-shrink: 0;
}

.faq-bot-foot a {
  color: var(--neon-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(234, 255, 0, 0.4);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .faq-bot-panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: min(92vh, 720px);
    max-height: min(90dvh, 720px);
    padding: 0.75rem max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
    padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
  }

  .faq-bot-title {
    font-size: 1.22rem;
  }

  .faq-bot-intro {
    font-size: 0.875rem;
  }

  .faq-bot-log {
    max-height: none;
    flex: 1 1 auto;
    min-height: 9rem;
    font-size: 0.9rem;
  }

  .faq-bot-msg {
    font-size: 0.9rem;
  }

  .faq-bot-form {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .faq-bot-send {
    flex: 0 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

@media (max-width: 380px) {
  .faq-bot-form {
    flex-direction: column;
  }

  .faq-bot-send {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* Nach FAQ-Basisstyles: Mobil-Position Hilfe-Button (sonst überschreibt die Basis-Regel) */
@media (max-width: 768px) {
  main {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .faq-bot-toggle {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .faq-bot-toggle-inner {
    min-width: 48px;
    min-height: 48px;
    padding: 0.45rem;
    gap: 0;
  }

  .faq-bot-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-wrap {
    padding-bottom: 0;
  }
}

/* Cookie-Einwilligung (opt-in für optionale Dienste) */

html.has-cookie-banner .faq-bot-toggle {
  bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 9.75rem));
}

@media (max-width: 768px) {
  html.has-cookie-banner .faq-bot-toggle {
    bottom: max(1.15rem, calc(env(safe-area-inset-bottom, 0px) + 10.25rem));
  }
}

.cookie-consent {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(234, 255, 0, 0.22);
  background: linear-gradient(180deg, rgba(8, 9, 14, 0.97), rgba(4, 5, 10, 0.99));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 0 1.05rem;
  max-width: 100%;
  padding-right: max(0.75rem, calc(6.25rem + env(safe-area-inset-right, 0px)));
}

.cookie-consent__text {
  flex: 1 1 16rem;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--neon-yellow);
}

.cookie-consent__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.cookie-consent__desc a {
  color: var(--neon-yellow);
  font-weight: 600;
  text-underline-offset: 3px;
}

.cookie-consent__desc a:hover {
  color: #fdf4ff;
}

.cookie-consent__desc code {
  font-size: 0.82em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-cookie--primary {
  color: #050508;
  border-color: rgba(234, 255, 0, 0.45);
  background: var(--grad-cta);
  background-size: 170% auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 6px 22px rgba(234, 255, 0, 0.18);
}

.btn-cookie--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-cookie--ghost {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-cookie--ghost:hover {
  border-color: rgba(234, 255, 0, 0.35);
  color: var(--neon-yellow);
}

@media (max-width: 520px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .btn-cookie {
    flex: 1 1 auto;
    min-height: 2.75rem;
  }
}
