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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-mid: #888;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  cursor: none;
}

a,
button,
input,
textarea,
select,
.logo-letter,
.form-submit {
  cursor: none !important;
}

/* ─────────────────────────────────────────────
   GLOBAL CLICK BLOCKER
───────────────────────────────────────────── */
.click-blocker {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.click-blocker.is-active {
  display: block;
}

/* ─────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────── */
/* Dot: immer auf echter Mausposition */
#cursor-dot-el {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 20000;
  color: var(--white);
  mix-blend-mode: difference;
  will-change: transform;
}

#custom-cursor {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 19999;
  color: var(--white);
  mix-blend-mode: difference;
  will-change: transform;
}

#cursorFill {
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  /* Start at 12 o'clock */
  overflow: visible;
}

#cursorProgress {
  /* Circumference: 2 * PI * 40 = 251.327 */
  stroke-dasharray: 251.4;
  stroke-dashoffset: 251.4;
  /* Set to empty state initially */
}

/* ─────────────────────────────────────────────
   NAV OVERLAY
───────────────────────────────────────────── */
#navOverlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   LOADER
───────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
  pointer-events: none;
}

.loader__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
}

.loader__logo {
  height: 32px;
  width: auto;
  filter: invert(1);
  /* weißes SVG → schwarz auf weißem Hintergrund */
}

.loader__percent {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--black);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

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

/* ─────────────────────────────────────────────
   LOGO CENTER
───────────────────────────────────────────── */
.logo-center {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  mix-blend-mode: difference;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}

.logo-center__img {
  height: 25px;
  width: auto;
  display: block;
}

.logo-center__img--mobile {
  display: none;
}

.logo-center__desktop {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.logo-letter {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.15;
  will-change: opacity;
  cursor: pointer !important;
  transition: transform 0.2s;
  /* GSAP steuert opacity */
}

.logo-letter:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}

/* ─────────────────────────────────────────────
   SITE NAV
───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 1.8rem;
  left: 3rem;
  right: 3rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: var(--white);
  pointer-events: none;
}

.site-nav__link {
  pointer-events: auto;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.site-nav__link:hover {
  opacity: 1;
}

/* ═════════════════════════════════════════════
   TEIL 1 – HORIZONTALER SCROLL
═════════════════════════════════════════════ */
/* Beide h-scroll Sektionen (oben + unten) */
#h-scroll,
#h-scroll-2 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#h-track,
#h-track-2 {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  will-change: transform;
}

.h-panel {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.h-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intro-Video (Rohbau) schwarz/weiß */
#h-track>.h-panel:first-child video {
  filter: grayscale(1);
}

/* Hero Logo */
.hero-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

.hero-logo__img {
  height: clamp(22px, 2.5vw, 36px);
  width: auto;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Hero Intro Text — centered */
.hero-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  will-change: opacity, transform;
}

.hero-intro__inner {
  text-align: center;
  padding-top: 6rem;
  max-width: min(75ch, 90vw);
}

.hero-intro__line {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.85em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}



.hero-intro__line:last-child {
  margin-bottom: 0;
}

.hero-intro__line--lead {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #fff;
  margin-bottom: 1.1em;
}



.hero-intro__line--closing {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.3em;
}


/* ═════════════════════════════════════════════
   TEIL 2 – VIDEO BOX
   initial versteckt · erscheint nach h-scroll
═════════════════════════════════════════════ */
.video-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  transform-origin: top left;
}

.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────────────
   TEXT PANELS
   – hinter dem video-box (z-index: 0)
───────────────────────────────────────────── */
.text-panel {
  position: fixed;
  top: 0;
  width: 50vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  align-items: center;
  background: var(--white);
  opacity: 0;
  /* initial versteckt – wird per JS eingeblendet */
}

.text-panel--left {
  left: 0;
}

.text-panel--right {
  right: 0;
}

.text-panel__inner {
  padding: clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vw, 6rem);
}

.text-panel--right .text-panel__inner {
  padding-left: clamp(4rem, 10vw, 12rem);
  /* Mehr Abstand zum Video auf der linken Seite */
}

.ml--4 {
  margin-left: -4px;
}

.text-panel__heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 2rem;
}

.text-panel__body {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  /* Laufweite leicht erhöht */
  color: var(--gray-mid);
  max-width: 800px;
  margin-bottom: 1.2rem;
}

.text-panel__body:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   SCROLL SPACERS
───────────────────────────────────────────── */
.v-scroll {
  position: relative;
  z-index: 0;
}

.sec {
  height: 50vh;
}

/* ═════════════════════════════════════════════
   KONTAKT
═════════════════════════════════════════════ */
/* Kontakt-Panel: Flex-Column so Footer direkt darunter sitzt */
.h-panel--contact {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
}

.contact {
  position: relative;
  z-index: 10;
  background: var(--white);
  padding: clamp(5rem, 12vh, 9rem) clamp(3rem, 8vw, 8rem);
  width: 100%;
  flex: 1;
  overflow-y: auto;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

.contact__heading {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 2.5rem;
}

.contact__sub {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  line-height: 1.8;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
}

/* ── Formular ── */
.contact__form {
  display: flex;
  flex-direction: column;
  padding-top: 0.4rem;
}

.form-field {
  position: relative;
  margin-bottom: 3rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.55rem 0 0.55rem;
  font-family: var(--font);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300;
  color: var(--black);
  outline: none;
  resize: none;
  transition: border-color 0.3s;
}

.form-field textarea {
  line-height: 1.7;
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-bottom-color: #c0392b;
}

/* Animierte Linie unter dem Feld */
.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}

.form-field:focus-within::after {
  width: 100%;
}

/* Floating Label */
.form-field label {
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: transform 0.3s, color 0.3s;
  transform-origin: left top;
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label,
.form-field textarea:focus+label,
.form-field textarea:not(:placeholder-shown)+label {
  transform: translateY(-1.6rem) scale(0.9);
  color: rgba(0, 0, 0, 0.45);
}

/* Submit */
.form-submit {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.9rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 0.5rem;
  transition: gap 0.3s, opacity 0.3s;
}

.form-submit:hover {
  gap: 1.6rem;
}

.form-submit__arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.form-submit:hover .form-submit__arrow {
  transform: translateX(4px);
}

/* Optional-Hinweis im Label */
.form-optional {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  opacity: 0.65;
}

/* Zeichenzähler */
.form-charcount {
  position: absolute;
  bottom: -1.4rem;
  right: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  opacity: 0.55;
  transition: color 0.2s, opacity 0.2s;
}

.form-charcount.is-ready {
  color: #2a7a2a;
  opacity: 0.85;
}

/* Checkbox */
.form-field--checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  margin-top: -0.5rem;
}

.form-field--checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  background: transparent;
  margin-top: 0.15rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.form-field--checkbox input[type="checkbox"]:checked {
  background: var(--black);
  border-color: var(--black);
}

.form-field--checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.form-field--checkbox input[type="checkbox"].is-invalid {
  border-color: #c0392b;
}

.form-field--checkbox label {
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  pointer-events: auto;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--gray-mid);
  cursor: pointer;
  text-transform: none !important;
}

.form-privacy-link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy-link:hover {
  opacity: 0.6;
}

/* Erfolgsmeldung */
.form-success {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
  padding-top: 0.4rem;
}

.form-send-error {
  font-size: 0.82rem;
  font-weight: 400;
  color: #a05050;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.55);
  padding: 2.2rem 3rem;
}

/* Zeile 1: Nav | Logo | Nav */
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav-left,
.footer__nav-right {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav-right {
  justify-content: flex-end;
}

.footer__nav-left a,
.footer__nav-right a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}

.footer__nav-left a:hover,
.footer__nav-right a:hover {
  color: #fff;
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

/* Zeile 2: Partner Label + Logos */
.footer__partners {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.2rem;
}

.footer__partners-label {
  position: absolute;
  left: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  flex-wrap: wrap;
}

.footer__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Partner Logo Bilder */
.partner-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}



/* ═════════════════════════════════════════════
   TEAM SEKTION
═════════════════════════════════════════════ */
.team-wrapper {
  position: relative;
  z-index: 10;
  height: 100vh;
  width: 100%;
}

.team__stage {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.team__stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  z-index: 15;
  pointer-events: none;
}

.team__crop {
  position: absolute;
  inset: 0;
  will-change: clip-path;
}

.team__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1);
  will-change: transform;
}

.team__logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
  pointer-events: none;
}

#teamLogoImg {
  width: clamp(120px, 16vw, 260px);
  height: auto;
  will-change: transform, opacity;
  display: block;
}

.team__logo-label {
  width: clamp(120px, 16vw, 260px);
  display: block;
  text-align: center;
  /* Ändert die Ausrichtung auf zentriert */
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin: 0 auto;
  /* Optional: Zentriert das Element selbst im übergeordneten Container */
}

.team__names {
  position: absolute;
  bottom: 6vh;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 5rem);
  z-index: 20;
  pointer-events: none;
}

.team__name-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: auto;
  cursor: pointer;
}

.team__name {
  font-size: clamp(0.65rem, 0.85vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease;
}

.team__role {
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════
   TEAM OVERLAY
═══════════════════════════════════════════ */
.team__name-item:hover .team__name {
  color: #fff;
}

.team-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0a;
  transform: scale(0);
  transform-origin: center center;
  border-radius: 12px;
  pointer-events: none;
  display: flex;
  align-items: stretch;
}

.team-overlay__close {
  position: absolute;
  top: clamp(1.5rem, 3vh, 2.5rem);
  right: clamp(1.5rem, 3vw, 3rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: color 0.2s ease;
}

.team-overlay__close:hover {
  color: #fff;
}

.team-overlay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.team-overlay__col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-overlay__col--img {
  overflow: hidden;
  background: var(--black);
}

.team-overlay__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  opacity: 0;
  transform: scale(1.04);
}

.team-overlay__col--text {
  padding: clamp(3rem, 8vw, 8rem);
  display: flex;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.team-overlay__text-inner {
  max-width: 800px;
}

.team-overlay__role-label {
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(12px);
}

.team-overlay__name {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 2.5rem;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(12px);
}

#teamOverlayName[data-name^="Christian"] {
  margin-left: -1px;
}

#teamOverlayName[data-name^="Batu"] {
  margin-left: -3px;
}

#teamOverlayName[data-name^="Valentin"] {
  margin-left: 3px;
}

.team-overlay__bio {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.2em;
  opacity: 0;
  transform: translateY(12px);
}

.team-overlay__bio:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   MOBILE APP  (max-width: 768px)
═══════════════════════════════════════════════════════ */

/* m-app standardmäßig versteckt (Desktop) */
#m-app {
  display: none;
}

@media (max-width: 768px) {

  /* ─── Globals ─────────────────────────────────────── */
  html,
  body {
    cursor: auto;
    overflow: hidden;
    height: 100dvh;
    width: 100vw;
    background: #0a0a0a;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  a,
  button,
  input,
  textarea,
  select,
  .logo-letter,
  .form-submit {
    cursor: auto !important;
  }

  /* Cursor & Desktop-Strukturen komplett ausblenden */
  #custom-cursor,
  #cursor-dot-el,
  #h-scroll,
  #sticky-section,
  .v-scroll,
  #h-scroll-2,
  .site-nav {
    display: none !important;
  }

  /* ─── Logo Center (mobile: top-center B) ──────────── */
  #logoCenter {
    display: block !important;
    position: fixed !important;
    top: max(env(safe-area-inset-top), 1rem) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000;
    width: auto;
    height: auto;
    pointer-events: auto;
  }

  #logoCenter .logo-center__desktop {
    display: none !important;
  }

  #logoCenter .logo-center__img--mobile {
    display: block !important;
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  #logoCenter:active .logo-center__img--mobile {
    transform: scale(0.88);
  }

  /* ─── m-app Root: Snap-Container ──────────────────── */
  #m-app {
    display: block;
    position: relative;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    background: #0a0a0a;
  }

  #m-app[aria-hidden="true"] {
    aria-hidden: false;
  }

  /* hint */

  /* ─── m-screen: Vollbild Snap-Section ─────────────── */
  .m-screen {
    position: relative;
    width: 100vw;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    color: #fff;
  }

  .m-screen__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
  }

  .m-screen__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .m-screen__scrim--stories {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.85) 100%);
  }

  .m-screen__scrim--team {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.05) 75%);
  }

  /* ─── HERO ────────────────────────────────────────── */
  .m-screen--hero .m-screen__bg {
    filter: grayscale(1);
  }

  .m-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: max(env(safe-area-inset-top), 4rem) 1.5rem calc(env(safe-area-inset-bottom) + 2.5rem);
    text-align: center;
  }

  .m-hero__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
  }

  .m-hero__logo {
    width: clamp(11rem, 50vw, 18rem);
    height: auto;
    align-self: center;
    margin: auto 0;
    animation: mHeroPulse 4s ease-in-out infinite;
  }

  @keyframes mHeroPulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.04);
      opacity: 0.85;
    }
  }

  .m-hero__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    animation: mHintBounce 2s ease-in-out infinite;
  }

  @keyframes mHintBounce {

    0%,
    100% {
      transform: translateY(0);
      opacity: 0.6;
    }

    50% {
      transform: translateY(4px);
      opacity: 1;
    }
  }

  /* ─── INTRO (Mobile) ────────────────────────────────── */
  .m-screen--intro {
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m-intro__inner {
    text-align: center;
    padding: 2rem;
  }

  .m-intro__line {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5em;
  }

  .m-intro__line:last-child {
    margin-bottom: 0;
  }

  .m-intro__line--lead {
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: #fff;
    margin-bottom: 1.2em;
  }

  /* ─── STORIES ─────────────────────────────────────── */
  .m-screen--stories {
    background: #0a0a0a;
  }

  .m-stories__bars {
    position: absolute;
    top: calc(max(env(safe-area-inset-top), 1rem) + 2.4rem);
    left: 1rem;
    right: 1rem;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    pointer-events: none;
  }

  .m-stories__bar {
    height: 2.5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
  }

  .m-stories__bar>span {
    display: block;
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .m-stories__bar.is-active>span {
    width: 100%;
  }

  .m-stories__bar.is-passed>span {
    width: 100%;
  }

  .m-stories__stage {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .m-stories__stage .video-box {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 0;
  }

  .m-stories__stage .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .m-stories__track {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .m-stories__track::-webkit-scrollbar {
    display: none;
  }

  .m-story {
    flex: 0 0 100%;
    width: 100vw;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.6rem calc(3rem + env(safe-area-inset-bottom));
  }

  .m-story__index {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
  }

  .m-story__title {
    font-weight: 200;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }

  .m-story__body {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 800px;
  }

  /* ─── TEAM ────────────────────────────────────────── */
  .m-team__bg {
    object-position: center top;
    filter: grayscale(1);
  }

  .m-team__card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-radius: 22px 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 70dvh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    /* collapsed default: nur Head + ein bisschen peek */
    transform: translateY(calc(100% - 8rem - env(safe-area-inset-bottom)));
    transition: transform 0.6s cubic-bezier(0.32, 1.4, 0.52, 1);
    will-change: transform;
  }

  .m-team__card.is-expanded {
    transform: translateY(0);
  }

  .m-team__head {
    flex-shrink: 0;
    background: transparent;
    border: 0;
    width: 100%;
    padding: 0.8rem 1.5rem 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    -webkit-tap-highlight-color: transparent;
  }

  .m-team__head-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .m-team__chev {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .m-team__card.is-expanded .m-team__chev {
    transform: rotate(180deg);
  }

  .m-team__heading {
    font-weight: 200;
    font-size: 1.65rem;
    letter-spacing: -0.01em;
  }

  .m-team__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
    /* sanftes Fade-In wenn expanded */
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
  }

  .m-team__card.is-expanded .m-team__list {
    opacity: 1;
  }

  .m-team__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    text-align: center;
  }

  .m-team__item:last-child {
    border-bottom: 0;
  }

  .m-team__item:active {
    background: rgba(255, 255, 255, 0.02);
  }

  .m-team__item>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }

  .m-team__name {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
  }

  .m-team__role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
  }

  /* ─── KONTAKT ─────────────────────────────────────── */
  .m-screen--kontakt {
    height: auto;
    min-height: 100dvh;
    background: #0a0a0a;
    color: #fff;
  }

  .m-kontakt__inner {
    padding: max(env(safe-area-inset-top), 3.5rem) 1.5rem calc(3rem + env(safe-area-inset-bottom));
  }

  .m-kontakt__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.8rem;
  }

  .m-kontakt__heading {
    font-weight: 200;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .m-kontakt__sub {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }

  .m-kontakt__form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .m-form-field {
    position: relative;
  }

  .m-form-field input,
  .m-form-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    padding: 1.4rem 0 0.6rem;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .m-form-field textarea {
    resize: vertical;
    min-height: 6rem;
  }

  .m-form-field input:focus,
  .m-form-field textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.6);
  }

  .m-form-field label {
    position: absolute;
    left: 0;
    top: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .m-form-field input:focus+label,
  .m-form-field input:not(:placeholder-shown)+label,
  .m-form-field textarea:focus+label,
  .m-form-field textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .m-form-field.is-invalid input,
  .m-form-field.is-invalid textarea {
    border-bottom-color: #ff5a5a;
  }

  .m-form-charcount {
    position: absolute;
    right: 0;
    bottom: -1.1rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
  }

  .m-form-charcount.is-ready {
    color: #5cd97c;
  }

  .m-form-checkbox {
    display: flex;
    gap: 0.7rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
  }

  .m-form-checkbox input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    cursor: pointer;
  }

  .m-form-checkbox input:checked {
    background: #fff;
    border-color: #fff;
  }

  .m-form-checkbox input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #0a0a0a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .m-form-checkbox a {
    color: #fff;
    text-decoration: underline;
  }

  .m-form-submit {
    margin-top: 1rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    color: #0a0a0a;
    border: 0;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .m-form-submit:active {
    transform: scale(0.97);
  }

  /* ─── FOOTER (Mobile) ───────────────────────────────── */
  .m-screen--footer {
    height: auto;
    min-height: 100dvh;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(env(safe-area-inset-top) + 2rem) 1.5rem calc(env(safe-area-inset-bottom) + 5rem);
  }

  .m-footer__inner {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }

  .m-footer__brand {
    display: block;
    width: 130px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  .m-footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .m-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .m-footer__partners>span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
  }

  .m-footer__partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    align-items: center;
    justify-items: stretch;
  }

  .m-footer__partners-grid>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Letztes Logo (Gessi, 7tes) zentriert über volle Breite */
  .m-footer__partners-grid>a:nth-child(7) {
    grid-column: 2 / 3;
  }

  .m-footer__partners-grid img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 24px;
    object-fit: contain;
    opacity: 0.35;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
  }

  .m-footer__partners-grid img:active {
    opacity: 1;
  }

  /* ─── BOTTOM TABBAR (entfernt auf Mobile) ────────── */
  .m-tabbar {
    display: none !important;
  }

  .m-tabbar--legacy {
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: max(env(safe-area-inset-bottom), 0.7rem);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 0.45rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  }

  .m-tabbar.is-hidden {
    transform: translateY(calc(100% + 1rem));
    opacity: 0;
    pointer-events: none;
  }

  .m-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: 0;
    padding: 0.55rem 0.3rem;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    font-family: inherit;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .m-tab svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .m-tab.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .m-tab.is-active svg {
    transform: scale(1.08) translateY(-1px);
  }

  .m-tab:active {
    transform: scale(0.94);
  }

  /* ─── Team Overlay (mobile bleibt, leicht angepasst) ─ */
  .team-overlay__grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: 42dvh 1fr;
  }

  .team-overlay__col--img {
    height: 42dvh;
  }

  .team-overlay__img[src*="Batu"] {
    object-position: center 50%;
  }

  .team-overlay__col--text {
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }

  .team-overlay__name {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  /* ─── Loader: vertikales Layout statt nebeneinander ─ */
  #loader {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: max(env(safe-area-inset-top), 3rem) 1.5rem max(env(safe-area-inset-bottom), 3rem);
    justify-items: center;
    text-align: center;
    gap: 2rem;
  }

  .loader__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .loader__logo {
    align-self: center;
    height: 44px;
  }

  .loader__percent {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

}

@media (max-width: 768px) {
  .br-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .br-mobile {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   IMPRESSUM OVERLAY
═══════════════════════════════════════════════════════ */
.impressum-overlay,
.datenschutz-overlay,
.agb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0a;
  transform: scale(0);
  transform-origin: center center;
  border-radius: 12px;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.impressum-overlay__close,
.datenschutz-overlay__close,
.agb-overlay__close {
  position: absolute;
  top: clamp(1.5rem, 3vh, 2.5rem);
  right: clamp(1.5rem, 3vw, 3rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: color 0.2s ease;
}

.impressum-overlay__close:hover,
.datenschutz-overlay__close:hover,
.agb-overlay__close:hover {
  color: #fff;
}

.impressum-overlay__inner,
.datenschutz-overlay__inner,
.agb-overlay__inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(3rem, 8vw, 8rem) 5vw;
}

.impressum-overlay__content,
.datenschutz-overlay__content,
.agb-overlay__content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.impressum-overlay__content h1,
.datenschutz-overlay__content h1,
.agb-overlay__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: #fff;
}

.impressum-overlay__content h2,
.datenschutz-overlay__content h2,
.agb-overlay__content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.impressum-overlay__content h3,
.datenschutz-overlay__content h3,
.agb-overlay__content h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.impressum-overlay__content p,
.datenschutz-overlay__content p,
.agb-overlay__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.impressum-overlay__content a,
.datenschutz-overlay__content a,
.agb-overlay__content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
}

.impressum-overlay__content a:hover,
.datenschutz-overlay__content a:hover,
.agb-overlay__content a:hover {
  opacity: 0.7;
}

.impressum-overlay__content strong,
.datenschutz-overlay__content strong,
.agb-overlay__content strong {
  color: #fff;
  font-weight: 400;
}

.impressum-overlay__content ul,
.datenschutz-overlay__content ul,
.agb-overlay__content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.impressum-overlay__content li,
.datenschutz-overlay__content li,
.agb-overlay__content li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

/* AGB Tabs */
.agb-overlay__tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agb-overlay__tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: inherit;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  cursor: pointer;
  padding: 0 0 1rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.agb-overlay__tab.active {
  color: #fff;
}

.agb-overlay__tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.agb-overlay__tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}

.agb-content-panel {
  display: none;
  animation: agbFadeIn 0.4s ease forwards;
}

.agb-content-panel.active {
  display: block;
}

@keyframes agbFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.agb-stand {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -0.5rem;
  margin-bottom: 2.5rem !important;
}