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

/* ================= MARQUEE-BAND ================= */
/* STAR-rotes Marken-Band — das Rot-Statement der Partnerschaft */
.band {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  background: linear-gradient(92deg, var(--star-red), #C10511);
  transform: rotate(-2deg) scale(1.04);
  z-index: 3;
}
.band-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.band-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 18px;
}
.band-item.outline {
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
}

/* ================= EXKLUSIV (Manifest-Reveal) ================= */
#exklusiv { position: relative; background: var(--bg-deep); }
.mani-stage {
  height: 100vh;
  display: grid;
  place-content: center;
  overflow: hidden;
  padding: 0 24px;
}
.mani-lines { display: flex; flex-direction: column; gap: 2vh; }
.mani-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .10;
  will-change: opacity, transform;
}
/* Exklusiv-Punchline in STAR-Rot */
.mani-final {
  font-size: clamp(34px, 9.5vw, 150px);
  background: var(--grad-star);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mani-sub {
  margin-top: 2vh;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--cream);
  opacity: 0;
  max-width: 560px;
}

/* ================= FINALE ================= */
#finale {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 50% 38%, rgba(113, 191, 68, .16), transparent 70%),
    radial-gradient(45% 40% at 50% 78%, rgba(227, 6, 19, .09), transparent 70%),
    var(--bg-deep);
}
.finale-bg {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.finale-star {
  font-size: clamp(340px, 62vw, 900px);
  line-height: 1;
  color: rgba(227, 6, 19, .07);
  user-select: none;
}
.finale-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 14vh 24px;
  text-align: center;
}
.finale-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 10.5vw, 170px);
  line-height: .95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 6px 60px rgba(0, 0, 0, .5);
}
.cta-big {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 26px 58px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  color: var(--bif-ink);
  background: linear-gradient(92deg, var(--bif-green), var(--bif-green-light));
  box-shadow: 0 18px 60px rgba(113, 191, 68, .4);
  will-change: transform;
  transition: box-shadow .3s ease;
}
.cta-big:hover { box-shadow: 0 24px 90px rgba(113, 191, 68, .6); }
.finale-note { font-size: 13px; color: var(--cream); opacity: .5; letter-spacing: .04em; max-width: 640px; }

.burst-layer { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.burst-item { position: absolute; will-change: transform, opacity; filter: drop-shadow(0 10px 16px rgba(0,0,0,.4)); }

/* ================= CUSTOM CURSOR ================= */
.cursor {
  position: fixed;
  left: 0; top: 0;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: var(--bif-green-light);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 999;
  transform: translate(-100px, -100px);
  transition: width .25s ease, height .25s ease, margin .25s ease;
}
.cursor.is-active {
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ================= Responsive / Reduced Motion ================= */
@media (max-width: 760px) {
  .band { padding: 16px 0; }
  .cta-big { padding: 18px 34px; font-size: 16px; }
  .finale-inner { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .band { transform: none; }
  .mani-line { opacity: 1; }
  .mani-sub { opacity: .7; }
  .cursor { display: none; }
}
