:root {
  --blue: #032B8E;
  --lime: #B8F47D;
  --black: #0E1116;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--blue);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- A11y utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--lime);
  color: var(--black);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ---------- Fixed nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.nav[data-scrolled="true"],
.nav[data-open="true"] {
  background: rgba(3, 43, 142, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(4, 20, 64, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.wordmark-logo {
  height: 23px;
  width: auto;
  max-width: 180px;
  display: block;
}

.wordmark .ai {
  /* visual nod to leadingAi casing */
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.nav-menu a {
  transition: color 0.15s ease;
}

.nav-menu a:hover {
  color: var(--lime);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.nav[data-open="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav[data-open="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav[data-open="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  border: 0;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  padding: 10px 18px;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.btn-primary:hover {
  background: #a8e76a;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.btn-primary.btn-lg {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 18.5px 30px;
  font-size: 16px;
  font-weight: 600;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--blue);
}

/* ---------- Hero (Variation B — Structured Grid) ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(3, 43, 142, 0.54) 0%, rgba(3, 43, 142, 0.76) 32%, rgba(3, 43, 142, 0.93) 66%, rgba(3, 43, 142, 1) 100%),
    linear-gradient(90deg, rgba(4, 17, 54, 0.68) 0%, rgba(4, 17, 54, 0.28) 38%, rgba(3, 43, 142, 0.12) 100%),
    radial-gradient(circle at 82% 18%, rgba(184, 244, 125, 0.15) 0%, rgba(184, 244, 125, 0) 28%),
    url("../assets/images/hero/hero3.webp") 42% top / cover no-repeat,
    var(--blue);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 164px 40px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 24px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--lime);
}

.h1 {
  font-weight: 900;
  font-size: clamp(56px, 6.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--white);
  margin: 0;
}

.h1 .lime,
.lime {
  color: var(--lime);
}

.tage-h2 .lime {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  position: relative;
  padding: 0 2px;
}

.tage-h2 .lime::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -6px;
  top: 18%;
  bottom: 10%;
  background: var(--lime);
  transform: skew(-6deg);
  z-index: -1;
}

.sub {
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 40ch;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Right column: 01/02/03 numeral stack ---------- */
.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

.numerals {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-bottom: 56px;
}

/* Lime "Jeder Tag einzeln buchbar" sticker */
.num-stamp {
  position: absolute;
  bottom: 8px;
  right: 0;
  background: var(--lime);
  color: var(--black);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px 10px;
  border: 1.5px solid var(--black);
  transform: rotate(-3deg);
  transform-origin: center center;
  white-space: nowrap;
  box-shadow: 3px 3px 0 0 var(--black);
  user-select: none;
}

.num-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  /* a-Tag-Defaults aufheben */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: border-top-color 0.4s ease;
}

/* Subtiler Lime-Gradient als Hintergrund-Tint, der bei Hover reinkommt */
.num-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(184, 244, 125, 0) 30%,
    rgba(184, 244, 125, 0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* "Details →"-Pille — sitzt auf der oberen Linie wie ein Tab,
   damit sie sich nicht mit der Datums-Numerale überlagert */
.num-row::after {
  content: "Details →";
  position: absolute;
  right: 0;
  top: -12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--blue);
  border: 1px solid rgba(184, 244, 125, 0.6);
  padding: 6px 11px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.32s ease, transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  pointer-events: none;
  z-index: 3;
}

/* Kinder über den Hover-Tint legen */
.num-row > * {
  position: relative;
  z-index: 1;
}

.num-row:hover,
.num-row:focus-visible {
  border-top-color: rgba(184, 244, 125, 0.55);
  outline: none;
}

.num-row:hover::before,
.num-row:focus-visible::before {
  opacity: 1;
}

.num-row:hover::after,
.num-row:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

/* Number-Lift bei Hover */
.num-row .num {
  line-height: 0.82;
  margin-bottom: -0.08em;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1), color 0.4s ease;
}

.num-row:hover .num,
.num-row:focus-visible .num {
  transform: translateX(-6px);
}

/* Letzte Row hat zusätzlich Bottom-Border, der bei Hover auch lime wird */
.num-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.4s ease;
}

.num-row:last-child:hover,
.num-row:last-child:focus-visible {
  border-bottom-color: rgba(184, 244, 125, 0.55);
}

/* Reduced motion: alle Effekte instant statt animiert */
@media (prefers-reduced-motion: reduce) {
  .num-row,
  .num-row::before,
  .num-row::after,
  .num-row .num {
    transition: none !important;
  }
  .num-row::after {
    transform: translateX(0) !important;
  }
  .num-row:not(:hover)::after {
    opacity: 0;
  }
  .num-row:hover .num {
    transform: none !important;
  }
}

.num-label {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  flex: 1;
}

.num-label .sub-label {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  margin-top: 8px;
  text-transform: none;
  line-height: 1.15;
}

.num {
  font-weight: 900;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--white);
}

.num-row:nth-child(2) .num {
  color: var(--lime);
}

/* ---------- Hero bottom bar — chip above, line + proof below ---------- */
.hero-bottom {
  grid-column: 1 / -1;
  margin: 0 -40px 0;
  padding: 16px 40px 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-bottom .proof-line {
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--lime);
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 999px;
  align-self: flex-start;
}

.chip--highlight {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(184, 244, 125, 0.1);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.proof-line {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.proof-line .sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* subtle editorial tick column on the left edge — quiet, unobtrusive */
.hero::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

/* ---------- §2 Der Konjunktiv-Reframe (Ausgestrichen) ---------- */
.reframe {
  background: #FBFAF7;
  color: var(--black);
  padding: 176px 40px 140px;
  --pen: #032B8E;
}

.reframe-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.reframe-eyebrow {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--pen);
  margin: 0 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.reframe-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--pen);
}

.reframe-h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 88px;
  max-width: 18ch;
}

.reframe-h1 .struck {
  position: relative;
  display: inline-block;
  color: rgba(14, 17, 22, 0.38);
}

.reframe-h1 .struck::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 52%;
  height: 3px;
  background: var(--pen);
  transform: translateY(-50%) rotate(-1.2deg);
  border-radius: 2px;
}

.reframe-h1 .kept {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  z-index: 0;
}

.reframe-h1 .kept::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -6px;
  top: 18%;
  bottom: 8%;
  background: var(--lime);
  transform: skew(-6deg);
  z-index: -1;
}

.reframe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: flex-start;
}

.reframe-col-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pen);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reframe-col-label .tick {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--pen);
}

.reframe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reframe-list-bad li {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  color: rgba(14, 17, 22, 0.55);
  position: relative;
  display: inline-block;
  padding: 2px 2px;
  max-width: fit-content;
}

.reframe-list-bad li::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 2px;
  background: var(--pen);
  border-radius: 1px;
  transform: translateY(-50%) rotate(-0.8deg);
}

.reframe-list-bad li:nth-child(1)::after {
  transform: translateY(-50%) rotate(-1.1deg);
}

.reframe-list-bad li:nth-child(2)::after {
  transform: translateY(-50%) rotate(0.6deg);
}

.reframe-list-bad li:nth-child(3)::after {
  transform: translateY(-50%) rotate(-0.4deg);
}

.reframe-list-bad li:nth-child(4)::after {
  transform: translateY(-50%) rotate(0.9deg);
}

.reframe-list-bad li:nth-child(5)::after {
  transform: translateY(-50%) rotate(-1.3deg);
}

.reframe-list-good {
  padding-left: 44px;
  position: relative;
}

.reframe-list-good li {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  color: var(--black);
  position: relative;
}

.reframe-list-good li::before {
  content: "→";
  position: absolute;
  left: -44px;
  top: 1px;
  color: var(--pen);
  font-weight: 700;
  font-size: 20px;
}

.reframe-list-good li em {
  font-style: normal;
  background: var(--lime);
  padding: 0 4px;
}

.reframe-signoff {
  margin: 28px 0 0 44px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--pen);
  transform: rotate(-1deg);
  display: inline-block;
}

.reframe-kicker {
  margin: 112px 0 0;
  padding-top: 40px;
  border-top: 1px solid #E5E3DC;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: #374151;
}

.reframe-kicker b {
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--black);
  background: var(--lime);
  padding: 0 6px;
}

@media (max-width: 960px) {
  .reframe {
    padding: 88px 24px 96px;
  }

  .reframe-h1 {
    font-size: 56px;
    margin-bottom: 64px;
  }

  .reframe-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .reframe-list-bad li,
  .reframe-list-good li {
    font-size: 19px;
  }

  .reframe-list-bad li {
    text-decoration: line-through;
    text-decoration-color: var(--pen);
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
  }

  .reframe-list-bad li::after {
    content: none;
  }

  .reframe-kicker {
    font-size: 20px;
    margin-top: 80px;
  }

  .reframe-kicker b {
    display: block;
    margin-top: 10px;
  }
}

/* ---------- §3 Die drei Prinzipien ---------- */
.principles {
  background: #F5F1E8;
  color: var(--black);
  padding: 104px 40px 120px;
  border-top: 1px solid #E3DDCE;
}

.principles-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.principles-head {
  margin-bottom: 72px;
  text-align: center;
}

.principles-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.principles-eyebrow::before,
.principles-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.principles-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0;
  text-align: center;
  max-width: 18ch;
  margin-inline: auto;
}

.principles-h2 em {
  font-style: normal;
  color: var(--blue);
}

.principle {
  display: grid;
  grid-template-columns: minmax(180px, 18%) 1fr;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid #E3DDCE;
  align-items: flex-start;
}

.principle:first-of-type {
  border-top: 1px solid #E3DDCE;
}

.principle:last-of-type {
  padding-bottom: 0;
}

.principle-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 112px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.principle-body {
  padding-top: 12px;
}

.principle-h {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 20px;
  max-width: 28ch;
}

.principle-p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  max-width: 64ch;
}

@media (max-width: 960px) {
  .principles {
    padding: 72px 24px 80px;
  }

  .principles-head {
    margin-bottom: 40px;
  }

  .principles-h2 {
    font-size: 36px;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }

  .principle-num {
    font-size: 80px;
  }

  .principle-body {
    padding-top: 0;
  }

  .principle-h {
    font-size: 26px;
  }

  .principle-p {
    font-size: 17px;
  }
}

/* ---------- §4 Die drei Modi (Ticket stubs) ---------- */
.modi {
  background: #FBFAF7;
  color: var(--black);
  padding: 128px 40px 144px;
  border-top: 1px solid #E5E3DC;
}

.modi-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.modi-head {
  max-width: 900px;
  margin: 0 0 80px;
}

.modi-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.modi-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.modi-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 24px;
  max-width: 20ch;
}

.modi-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #374151;
  max-width: 720px;
  margin: 0;
}

.modi-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket {
  display: grid;
  grid-template-columns: 14px 1.9fr 28px 1fr;
  background: #ffffff;
  border-radius: 2px;
  box-shadow:
    0 1px 0 #E5E3DC,
    0 22px 36px -28px rgba(14, 17, 22, 0.14);
  overflow: hidden;
  min-height: 188px;
  position: relative;
}

.ticket-bar {
  background: var(--armband);
}

.ticket-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  padding: 36px 44px;
  align-items: center;
}

.ticket-modecol {
  display: flex;
  flex-direction: column;
}

.ticket-armband {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--armband);
  margin: 0 0 12px;
}

.ticket-armband::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--armband);
  display: inline-block;
}

.ticket-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 46px;
  letter-spacing: -0.028em;
  line-height: 0.95;
  color: var(--black);
  margin: 0;
  text-transform: uppercase;
}

.ticket-motto {
  font-family: 'Work Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: #374151;
  margin: 12px 0 0;
}

.ticket-copy {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  max-width: 46ch;
}

/* Perforation: dashed vertical line flanked by two half-circle notches
   to read as a physical tear edge. Notches sit ON the outer edges of
   the ticket (top and bottom), not inside, and are punched in the
   page background color so they visually "bite" out of the card. */
.ticket-perf {
  position: relative;
  background:
    repeating-linear-gradient(180deg,
      #C9C3B2 0 5px, transparent 5px 11px);
  background-position: center;
  background-size: 1px 100%;
  background-repeat: no-repeat;
}

.ticket-perf::before,
.ticket-perf::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper, #FBFAF7);
  box-shadow: inset 0 0 0 1px #E5E3DC;
}

.ticket-perf::before {
  top: -11px;
}

.ticket-perf::after {
  bottom: -11px;
}

.ticket-stub {
  background: #ffffff;
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ticket-stub-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticket-stub-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E3DC;
  max-width: 40px;
}

.ticket-stub-text {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: #374151;
  margin: 0;
}

.ticket-stub-serial {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #9A958A;
  margin: 16px 0 0;
}

@media (max-width: 960px) {
  .modi {
    padding: 72px 24px 88px;
  }

  .modi-head {
    margin-bottom: 48px;
  }

  .modi-h2 {
    font-size: 36px;
  }

  .modi-sub {
    font-size: 17px;
  }

  .ticket {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ticket-bar {
    height: 8px;
  }

  .ticket-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px 8px;
  }

  .ticket-name {
    font-size: 36px;
  }

  .ticket-copy {
    font-size: 15.5px;
  }

  .ticket-perf {
    height: 1px;
    background:
      repeating-linear-gradient(90deg,
        #C9C3B2 0 5px, transparent 5px 11px);
    background-position: center;
    background-size: 100% 1px;
    background-repeat: no-repeat;
  }

  .ticket-perf::before {
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
  }

  .ticket-perf::after {
    top: 50%;
    left: auto;
    right: -11px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .ticket-stub {
    padding: 28px 24px 32px;
    gap: 14px;
  }

  .ticket-stub-serial {
    margin-top: 6px;
  }
}

/* ---------- §5 Die drei Tage (Curatorial program) ---------- */
.tage {
  background: #F5F1E8;
  color: var(--black);
  padding: 128px 40px 144px;
  border-top: 1px solid #E3DDCE;
}

.tage-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.tage-head {
  max-width: 900px;
  margin: 0 0 88px;
}

.tage-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.tage-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.tage-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--black);
  margin: 0 0 24px;
}

.tage-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #374151;
  max-width: 640px;
  margin: 0;
}

.tage-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.tag-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: #ffffff;
  border: 1px solid #E3DDCE;
  min-height: 600px;
}

.tag-card.is-reverse {
  direction: rtl;
}

.tag-card.is-reverse>* {
  direction: ltr;
}

.tag-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  border-right: 1px solid #E3DDCE;
  color: #ffffff;
}

.tag-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      rgba(0, 0, 0, 0.15) 70%,
      rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.tag-banner>* {
  position: relative;
  z-index: 1;
}

.tag-card.is-reverse .tag-banner {
  border-right: none;
  border-left: 1px solid #E3DDCE;
}

.tag-banner-date {
  padding: 28px 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tag-banner-num {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.tag-banner-num span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 156px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--lime);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  font-variant-numeric: tabular-nums;
}

.tag-banner-label {
  padding: 18px 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tag-content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 64px 64px 48px;
  gap: 40px;
}

.tag-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-focus-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

.tag-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--black);
}

.tag-audience {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
  max-width: 64ch;
}

.tag-middle {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.tag-essence-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tag-essence {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

.tag-essence-line {
  display: block;
  margin: 0 0 14px;
}

.tag-essence-line:last-child {
  margin-bottom: 0;
}

.tag-essence-highlight {
  font-weight: 600;
  color: var(--black);
  background: var(--lime);
  padding: 0 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.tag-cluster-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}

.tag-cluster-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-cluster-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid #EFECE2;
}

.tag-cluster-list li:last-child {
  border-bottom: none;
}

.tag-cluster-list li .idx {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #9A958A;
  min-width: 20px;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
  padding-top: 2px;
}

.tag-cluster-list li .bs-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tag-cluster-list li .bs-title {
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.tag-cluster-list li .bs-sub {
  font-weight: 400;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.tag-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid #E3DDCE;
  padding-top: 32px;
}

.tag-deliverable {
  background: var(--blue);
  color: #ffffff;
  padding: 14px 22px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
}

.tag-ctas {
  display: flex;
  gap: 10px;
}

.tag-cta-primary,
.tag-cta-ghost {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 22px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.tag-cta-primary {
  background: var(--lime);
  color: var(--black);
}

.tag-cta-primary:hover {
  background: #A8E66D;
}

.tag-cta-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 15px 22px;
}

.tag-cta-ghost:hover {
  background: var(--black);
  color: #ffffff;
}

.program-afterwork {
  margin-top: 116px;
}

.program-afterwork-kicker {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.program-afterwork-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.afterwork-slim {
  font-family: 'Work Sans', sans-serif;
}

.afterwork-slim {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 28px 190px;
  gap: 0;
  align-items: stretch;
  background: var(--blue);
  color: #ffffff;
  min-height: 248px;
}

.afterwork-slim-time {
  padding: 34px 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.afterwork-slim-time span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.afterwork-slim-time strong {
  font-weight: 900;
  font-size: 44px;
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--lime);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

.afterwork-slim-copy {
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.afterwork-variant-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 10px;
}

.afterwork-title {
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}

.afterwork-copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 10px 0 0;
  max-width: 70ch;
}

.afterwork-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.afterwork-icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px 6px 8px;
  border: 1px solid rgba(184, 244, 125, 0.34);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.afterwork-icons svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.afterwork-perf {
  position: relative;
  z-index: 1;
  background:
    repeating-linear-gradient(180deg,
      rgba(3, 43, 142, 0.68) 0 6px, transparent 6px 12px),
    linear-gradient(90deg, var(--blue) 0 50%, var(--lime) 50% 100%);
  background-position: center, center;
  background-size: 2px 100%, 100% 100%;
  background-repeat: no-repeat;
}

.afterwork-perf::before,
.afterwork-perf::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F1E8;
  box-shadow: inset 0 0 0 1px var(--blue);
  transform: translateX(-50%);
  z-index: 2;
}

.afterwork-perf::before {
  top: -14px;
  clip-path: inset(50% 0 0 0);
}

.afterwork-perf::after {
  bottom: -14px;
  clip-path: inset(0 0 50% 0);
}

.afterwork-plus {
  position: relative;
  margin: 0;
  padding: 28px 20px;
  align-self: stretch;
  background: var(--lime);
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.afterwork-plus strong {
  font-weight: 900;
  font-size: 64px;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.afterwork-plus span {
  font-weight: 800;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}

@media (max-width: 1080px) {
  .tag-card {
    grid-template-columns: 300px 1fr;
  }

  .tag-banner-num span {
    font-size: 128px;
  }

  .tag-title {
    font-size: 58px;
  }

  .tag-content {
    padding: 40px 40px 32px;
  }

  .tag-middle {
    gap: 36px;
  }

  .afterwork-slim {
    grid-template-columns: 140px minmax(0, 1fr) 28px 170px;
  }

  .afterwork-plus {
    padding: 20px 16px;
  }
}

@media (max-width: 860px) {
  .tage {
    padding: 80px 24px 96px;
  }

  .tage-head {
    margin-bottom: 48px;
  }

  .tage-h2 {
    font-size: 40px;
  }

  .tage-sub {
    font-size: 17px;
  }

  .tag-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tag-card.is-reverse {
    direction: ltr;
  }

  .tag-banner {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid #E3DDCE;
    flex-direction: column;
    min-height: 220px;
    padding: 0;
  }

  .tag-banner-date,
  .tag-banner-label {
    writing-mode: horizontal-tb;
    padding: 10px 14px;
    position: absolute;
    z-index: 2;
    border: none;
    font-size: 10.5px;
    border-radius: 2px;
  }

  .tag-banner-date {
    top: 16px;
    left: 16px;
    right: auto;
  }

  .tag-banner-label {
    bottom: 16px;
    right: 16px;
    left: auto;
    top: auto;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .tag-banner-num {
    padding: 48px 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .tag-banner-num span {
    font-size: 124px;
  }

  .tag-content {
    padding: 32px 24px;
    gap: 24px;
  }

  .tag-title {
    font-size: 44px;
  }

  .tag-middle {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tag-essence {
    font-size: 17px;
  }

  .tag-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tag-ctas {
    flex-wrap: wrap;
  }

  .tag-ctas .tag-cta-primary,
  .tag-ctas .tag-cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .tage-stack {
    gap: 48px;
  }

  .program-afterwork {
    margin-top: 72px;
  }

  .afterwork-slim {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .afterwork-slim-time {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 24px 24px 18px;
  }

  .afterwork-slim-copy {
    padding: 28px 24px;
    border-top: 0;
  }

  .afterwork-title {
    font-size: 28px;
  }

  .afterwork-copy {
    font-size: 15px;
  }

  .afterwork-plus {
    margin: 0;
    padding: 18px 24px;
    align-items: center;
    border-top: 0;
    border-left: 1px solid var(--blue);
  }

  .afterwork-perf {
    height: 28px;
    background:
      repeating-linear-gradient(90deg,
        rgba(3, 43, 142, 0.68) 0 6px, transparent 6px 12px),
      linear-gradient(180deg, var(--blue) 0 50%, var(--lime) 50% 100%);
    background-position: center, center;
    background-size: 100% 2px, 100% 100%;
    background-repeat: no-repeat;
  }

  .afterwork-perf::before {
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
  }

  .afterwork-perf::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -11px;
    transform: translateY(-50%);
  }
}

/* ---------- §6 Was Sie mitnehmen ---------- */
.mitnehmen {
  background: var(--blue);
  color: #ffffff;
  padding: 112px 40px 120px;
}

.mitnehmen-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.mitnehmen-head {
  text-align: center;
  margin: 0 auto 72px;
  max-width: 820px;
}

.mitnehmen-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mitnehmen-eyebrow::before,
.mitnehmen-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.mitnehmen-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 24px;
}

.mitnehmen-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto;
}

.mitnehmen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mitnehmen-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mitnehmen-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.32);
}

.mitnehmen-item.is-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
}

.mitnehmen-item.is-lime:hover {
  background: #A8E66D;
  border-color: #A8E66D;
}

.mitnehmen-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lime);
  margin: 0;
}

.mitnehmen-item.is-lime .mitnehmen-label {
  color: var(--blue);
}

.mitnehmen-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mitnehmen-item.is-lime .mitnehmen-visual {
  background: rgba(3, 43, 142, 0.08);
  border-color: rgba(3, 43, 142, 0.15);
}

.mitnehmen-visual svg {
  width: 64%;
  height: 64%;
}

.mitnehmen-h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0;
}

.mitnehmen-item.is-lime .mitnehmen-h3 {
  color: var(--black);
}

.mitnehmen-p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.mitnehmen-item.is-lime .mitnehmen-p {
  color: #374151;
}

@media (max-width: 1080px) {
  .mitnehmen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .mitnehmen {
    padding: 72px 24px 88px;
  }

  .mitnehmen-head {
    margin-bottom: 48px;
  }

  .mitnehmen-h2 {
    font-size: 34px;
  }

  .mitnehmen-sub {
    font-size: 17px;
  }

  .mitnehmen-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- §7 Für wen — und für wen nicht ---------- */
.fuer-wen {
  background: var(--blue);
  color: #ffffff;
  padding: 112px 40px 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fuer-wen-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.fuer-wen-head {
  max-width: 820px;
  margin: 0 0 72px;
}

.fuer-wen-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.fuer-wen-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.fuer-wen-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  max-width: 24ch;
  text-wrap: pretty;
}

.fuer-wen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.fuer-wen-col-h {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.fuer-wen-col--yes .fuer-wen-col-h {
  color: #ffffff;
}

.fuer-wen-col--no .fuer-wen-col-h {
  color: rgba(255, 255, 255, 0.55);
}

.fuer-wen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fuer-wen-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.fuer-wen-col--yes li {
  font-weight: 500;
  color: #ffffff;
}

.fuer-wen-col--no li {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.fuer-wen-mark {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  display: inline-block;
  transform: translateY(1px);
}

.fuer-wen-col--yes .fuer-wen-mark {
  color: var(--lime);
}

.fuer-wen-col--no .fuer-wen-mark {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

@media (max-width: 820px) {
  .fuer-wen {
    padding: 72px 24px 88px;
  }

  .fuer-wen-head {
    margin-bottom: 48px;
  }

  .fuer-wen-h2 {
    font-size: 32px;
  }

  .fuer-wen-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------- §8 Die Menschen dahinter ---------- */
.menschen {
  background: #FBFAF7;
  color: var(--black);
  padding: 120px 40px 0;
  border-top: 1px solid #E8E5DC;
}

.menschen-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.menschen-head {
  max-width: 820px;
  margin: 0 0 88px;
}

.menschen-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.menschen-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #6B7280;
  display: inline-block;
}

.menschen-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0;
  max-width: 22ch;
  text-wrap: pretty;
}

/* Block A — Peter Huber editorial */
.huber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.huber-portrait {
  width: 100%;
  aspect-ratio: 4 / 5.45;
  background: #E8E5DC;
  position: relative;
  overflow: hidden;
}

.huber-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.huber-portrait::before {
  content: none;
}

.huber-portrait-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(14, 17, 22, 0.55);
  background: rgba(251, 250, 247, 0.85);
  padding: 6px 10px;
  border: 1px solid rgba(14, 17, 22, 0.1);
}

.huber-body {
  display: flex;
  flex-direction: column;
}

.huber-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin: 0 0 16px;
}

.huber-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 16px;
}

.huber-role {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
  max-width: 520px;
}

.huber-quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.002em;
  color: var(--black);
  margin: 32px 0 0;
  text-wrap: pretty;
}

.huber-signature {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6B7280;
  margin: 12px 0 0;
}

.huber-manifesto {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
  margin: 32px 0 0;
  max-width: 480px;
}

.huber-book {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 500px;
  padding-top: 26px;
  border-top: 1px solid #E6E3DC;
}

.huber-book img {
  width: 96px;
  height: auto;
  display: block;
  box-shadow: 0 18px 34px -24px rgba(14, 17, 22, 0.45);
}

.huber-book-copy {
  min-width: 0;
}

.huber-book-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin: 0 0 8px;
}

.huber-book-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
}

.huber-book-meta {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: #6B7280;
  margin: 8px 0 0;
}

/* Block B — Three developer cards */
.developers {
  margin-bottom: 120px;
}

.developers-header {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
  margin: 0 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.developers-header::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #6B7280;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dev-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dev-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E8E5DC;
  position: relative;
  overflow: hidden;
}

.dev-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.dev-portrait::before {
  content: none;
}

.dev-portrait--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      transparent 0px,
      transparent 10px,
      rgba(3, 43, 142, 0.08) 10px,
      rgba(3, 43, 142, 0.08) 11px);
}

.dev-portrait-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(14, 17, 22, 0.55);
  background: rgba(251, 250, 247, 0.85);
  padding: 5px 8px;
  border: 1px solid rgba(14, 17, 22, 0.1);
}

.dev-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.dev-role {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6B7280;
  margin: -12px 0 0;
}

.dev-bio {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  margin: 0;
}

.dev-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}

.dev-chip {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  background: #E6E3DC;
  color: var(--blue);
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}

/* Block B2 — On-site host (Sabrina) */
.onsite-host {
  margin: 72px auto 32px;
  max-width: 880px;
  padding: 48px 0;
  border-top: 1px solid #E6E3DC;
  border-bottom: 1px solid #E6E3DC;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}

.onsite-host-portrait {
  width: 240px;
  height: 240px;
  background: #E8E5DC;
  position: relative;
  overflow: hidden;
}

.onsite-host-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.onsite-host-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onsite-host-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin: 0 0 4px;
}

.onsite-host-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
  margin: 0;
}

.onsite-host-role {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.onsite-host-bio {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 8px 0 0;
  max-width: 56ch;
}

.onsite-host-bio strong {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .onsite-host {
    grid-template-columns: 1fr;
    padding: 32px 0;
    gap: 20px;
    margin: 56px auto 24px;
  }

  .onsite-host-portrait {
    width: 160px;
    height: 160px;
  }

  .onsite-host-name {
    font-size: 26px;
  }
}

/* Block C — Powered-by strip (breaks out of parent's 40px padding to go edge-to-edge) */
.powered {
  margin: 0 -40px;
  padding: 48px 40px;
  background: #F5F1EA;
  border-top: 1px solid #E8E5DC;
  text-align: center;
}

.powered-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B7280;
  margin: 0 0 22px;
}

.powered-line {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.powered-logos {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.powered-link,
.footer-powered-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.powered-link:hover,
.footer-powered-link:hover {
  opacity: 0.7;
}

.powered-link:focus-visible,
.footer-powered-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}

.powered-wordmark {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.powered-wordmark--small {
  font-size: 14px;
  color: #6B7280;
}

.powered-logo {
  display: inline-block;
  height: 32px;
  width: auto;
}

.powered-logo--small {
  height: 22px;
}

.powered-dot {
  color: #9CA3AF;
  font-weight: 400;
}

@media (max-width: 960px) {
  .menschen {
    padding: 88px 24px 0;
  }

  .menschen-head {
    margin-bottom: 56px;
  }

  .menschen-h2 {
    font-size: 36px;
  }

  .huber {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 88px;
  }

  .huber-name {
    font-size: 32px;
  }

  .huber-quote {
    font-size: 24px;
  }

  .huber-book {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .huber-book img {
    width: 82px;
  }

  .huber-book-title {
    font-size: 16px;
  }

  .developers {
    margin-bottom: 88px;
  }

  .developers-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .powered {
    margin: 0 -24px;
    padding: 40px 24px;
  }

  .powered-line {
    font-size: 18px;
  }
}

/* ---------- §8b Werkzeugkasten — orbiting tool logos (lime) ---------- */
.tools {
  position: relative;
  background: var(--lime);
  padding: 80px 40px;
  overflow: hidden;
  min-height: 380px;
  border-top: 1px solid rgba(14, 17, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
  /* soft halo so the centered text stays legible against rotating logos */
  padding: 24px 32px;
}
.tools-inner::before {
  content: "";
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse at center,
    rgba(184, 244, 125, 0.92) 0%,
    rgba(184, 244, 125, 0.78) 40%,
    rgba(184, 244, 125, 0) 80%);
  z-index: -1;
  pointer-events: none;
}
.tools-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--black);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tools-eyebrow::before,
.tools-eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--black);
}
.tools-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 16px;
}
.tools-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400; font-size: 16px;
  line-height: 1.55;
  color: rgba(14, 17, 22, 0.78);
  margin: 0 auto;
  max-width: 56ch;
}

/* Cloud is a centered stage — rings sit on top of each other and rotate */
.tools-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-origin: center center;
  will-change: transform;
}
/* Three rings — different radii, durations, directions */
.orbit-ring--inner { animation: orbit-cw  60s linear infinite; }
.orbit-ring--mid   { animation: orbit-ccw 90s linear infinite; }
.orbit-ring--outer { animation: orbit-cw 120s linear infinite; }

.orbit-ring--inner .orbit-tile { --orbit-radius: 320px; }
.orbit-ring--mid   .orbit-tile { --orbit-radius: 560px; }
.orbit-ring--outer .orbit-tile { --orbit-radius: 820px; }

.orbit-tile {
  position: absolute;
  top: 0; left: 0;
  width: 96px; height: 96px;
  margin: -48px 0 0 -48px;
  /* Place at angle/radius — then un-rotate so the child's local frame is screen-aligned */
  transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
  transform-origin: center center;
}
/* Counter-rotate ONLY the ring rotation, so logos stay screen-upright */
.orbit-ring--inner .orbit-tile-inner { animation: counter-cw  60s linear infinite; }
.orbit-ring--mid   .orbit-tile-inner { animation: counter-ccw 90s linear infinite; }
.orbit-ring--outer .orbit-tile-inner { animation: counter-cw 120s linear infinite; }

.orbit-tile-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.orbit-tile img {
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
/* Outer ring is biggest & most prominent — inner stays smaller so it doesn't crowd the text */
.orbit-ring--inner .orbit-tile img { width: 40px; height: 40px; opacity: 0.55; }
.orbit-ring--mid   .orbit-tile img { width: 60px; height: 60px; opacity: 0.78; }
.orbit-ring--outer .orbit-tile img { width: 80px; height: 80px; opacity: 0.95; }

@keyframes orbit-cw  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes orbit-ccw { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }
@keyframes counter-cw  { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }
@keyframes counter-ccw { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }

/* Tablet — pull rings inward */
@media (max-width: 1024px) {
  .orbit-ring--inner .orbit-tile { --orbit-radius: 240px; }
  .orbit-ring--mid   .orbit-tile { --orbit-radius: 420px; }
  .orbit-ring--outer .orbit-tile { --orbit-radius: 620px; }
  .orbit-ring--inner .orbit-tile img { width: 32px; height: 32px; }
  .orbit-ring--mid   .orbit-tile img { width: 50px; height: 50px; }
  .orbit-ring--outer .orbit-tile img { width: 64px; height: 64px; }
}

/* Mobile — drop the outer ring, tighten the rest (mid takes the visual lead) */
@media (max-width: 720px) {
  .tools { padding: 64px 24px; min-height: 320px; }
  .tools-h2 { font-size: 28px; }
  .tools-sub { font-size: 15px; }
  .orbit-ring--inner .orbit-tile { --orbit-radius: 180px; }
  .orbit-ring--mid   .orbit-tile { --orbit-radius: 320px; }
  .orbit-ring--outer { display: none; }
  .orbit-tile { width: 72px; height: 72px; margin: -36px 0 0 -36px; }
  .orbit-ring--inner .orbit-tile img { width: 28px; height: 28px; }
  .orbit-ring--mid   .orbit-tile img { width: 56px; height: 56px; }
}

/* Reduced motion — freeze rings */
@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-tile-inner { animation: none !important; }
}

/* ---------- §9 Tabakfabrik Linz ---------- */
.venue {
  background: #0E1116;
  color: #ffffff;
  padding: 140px 40px;
  position: relative;
}

.venue-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.venue-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #151922;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 80px;
}

.venue-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.venue-hero::before {
  content: none;
}

.venue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 17, 22, 0.1) 0%,
      rgba(14, 17, 22, 0.3) 45%,
      rgba(14, 17, 22, 0.92) 100%),
    linear-gradient(90deg,
      rgba(14, 17, 22, 0.7) 0%,
      rgba(14, 17, 22, 0) 55%);
  z-index: 1;
}

.venue-hero-label {
  position: absolute;
  left: 24px;
  top: 24px;
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(14, 17, 22, 0.7);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.venue-hero-credit {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
}

.venue-hero-text {
  position: absolute;
  left: 48px;
  bottom: 48px;
  right: 48px;
  max-width: 900px;
  z-index: 3;
}

.venue-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.venue-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.venue-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  max-width: 900px;
  text-wrap: pretty;
}

.venue-h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.venue-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 24px 0 0;
}

/* Image-text split — factory300 pitch */
.venue-pitch {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.venue-pitch-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #151922;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.venue-pitch-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-pitch-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.venue-pitch-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
  margin: 0 0 4px;
}

.venue-pitch-h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 8px;
  text-wrap: pretty;
}

.venue-pitch-h3 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--lime);
}

.venue-pitch-body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 52ch;
}

.venue-pitch-logo {
  width: auto;
  height: 48px;
  margin-top: 24px;
  opacity: 0.92;
  filter: brightness(0) invert(1); /* erzwingt weiß auf dunklem Hintergrund, falls Logo schwarz/farbig vorliegt */
  align-self: flex-start;
}

.venue-factoids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.venue-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.venue-card-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 24px;
}

.venue-card-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
}

.venue-card-num-suffix {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0;
  margin-left: 2px;
  color: var(--lime);
}

.venue-card-text {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.venue-logistics {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px 18px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow-x: auto;
}

.venue-logistics-item {
  display: inline-block;
  white-space: nowrap;
}

.venue-logistics-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.venue-hotels {
  margin-top: 8px;
  margin-bottom: 56px;
}

.venue-hotels-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
}

.venue-hotels-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.venue-hotel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-hotel:first-child {
  border-top: none;
  padding-top: 4px;
}

.venue-hotel-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.venue-hotel-meta {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  text-align: right;
}

@media (max-width: 720px) {
  .venue-hotel {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .venue-hotel-meta {
    text-align: left;
  }
}

@media (max-width: 960px) {
  .venue {
    padding: 88px 24px 104px;
  }

  .venue-hero {
    aspect-ratio: 4 / 5;
    margin-bottom: 56px;
  }

  .venue-hero-text {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .venue-h2 {
    font-size: 29px;
    line-height: 1.18;
  }

  .venue-sub {
    font-size: 18px;
  }

  .venue-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.88) 100%);
  }

  .venue-hero-credit {
    display: none;
  }

  .venue-pitch {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .venue-pitch-image {
    aspect-ratio: 16 / 10;
  }

  .venue-pitch-h3 {
    font-size: 26px;
  }

  .venue-pitch-body {
    font-size: 15px;
  }

  .venue-pitch-logo {
    height: 40px;
    margin-top: 16px;
  }

  .venue-factoids {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 56px;
  }

  .venue-card {
    padding: 24px;
  }

  .venue-card-num {
    font-size: 52px;
    margin-bottom: 14px;
  }

  .venue-card-num-suffix {
    font-size: 22px;
  }

  .venue-logistics {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .venue-logistics-sep {
    display: none;
  }
}

/* ---------- §10 Investition & Rahmen ---------- */
.invest {
  background: #FBFAF7;
  color: var(--black);
  padding: 128px 40px 144px;
  border-top: 1px solid #E8E5DC;
}

.invest-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.invest-index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 56px;
  border-bottom: 1px solid #D9D5CB;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B7280;
}

.invest-index-num {
  color: var(--black);
  font-weight: 600;
}

.invest-index-right {
  text-align: right;
}

.invest-head {
  max-width: 900px;
  margin: 0 0 40px;
}

.invest-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.invest-h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding: 0 2px;
}

.invest-h2 em::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -6px;
  top: 18%;
  bottom: 10%;
  background: var(--lime);
  transform: skew(-6deg);
  z-index: -1;
}

.invest-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #6B7280;
  margin: 0;
  max-width: 70ch;
}

.invest-discount-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--black);
  color: var(--white);
  margin: 0 0 56px;
  font-family: 'Work Sans', sans-serif;
}

.invest-discount-pill {
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--lime);
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.invest-discount-text {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.invest-discount-text b {
  color: var(--white);
  font-weight: 600;
}

.invest-discount-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  user-select: none;
}

.invest-discount-toggle input {
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}

.invest-discount-toggle input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.invest-discount-toggle input:checked {
  background: var(--lime);
}

.invest-discount-toggle input:checked::after {
  transform: translateX(14px);
  background: var(--black);
}

.invest-rail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  height: 4px;
  margin-bottom: 24px;
}

.invest-rail-step {
  background: #E3DDCE;
}

.invest-rail-step--1 {
  background: var(--black);
}

.invest-rail-step--2 {
  background: #4B5563;
}

.invest-rail-step--3 {
  background: var(--lime);
}

.invest-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
}

.invest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #E5E1D4;
  padding: 32px 28px 28px;
  position: relative;
}

.invest-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}

.invest-card-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B7280;
}

.invest-card-tag {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A958A;
}

.invest-card-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--black);
}

.invest-card-days {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0 0 28px;
  min-height: 42px;
}

.invest-card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.invest-card-price .num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.invest-card-price .unit {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #6B7280;
  text-transform: uppercase;
}

.invest-card-peruse {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #6B7280;
  margin: 10px 0 0;
}

.invest-card-peruse b {
  color: var(--black);
  font-weight: 600;
}

.invest-card-save {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 18px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #3B5A1B;
  background: var(--lime);
  padding: 4px 10px;
  letter-spacing: 0.01em;
  align-self: flex-start;
}

.invest-card-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #EFECE2;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: #6B7280;
}

.invest-card--empf {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.invest-card--empf .invest-card-num {
  color: rgba(255, 255, 255, 0.6);
}

.invest-card--empf .invest-card-tag {
  color: var(--lime);
  font-weight: 700;
}

.invest-card--empf .invest-card-name {
  color: var(--white);
}

.invest-card--empf .invest-card-days {
  color: rgba(255, 255, 255, 0.7);
}

.invest-card--empf .invest-card-price .num {
  color: var(--lime);
}

.invest-card--empf .invest-card-price .unit {
  color: rgba(255, 255, 255, 0.65);
}

.invest-card--empf .invest-card-peruse {
  color: rgba(255, 255, 255, 0.7);
}

.invest-card--empf .invest-card-peruse b {
  color: var(--white);
}

.invest-card--empf .invest-card-foot {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.invest-value {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid #D9D5CB;
  border-bottom: 1px solid #D9D5CB;
  margin-bottom: 40px;
}

.invest-incl-head {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B7280;
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.invest-incl-head::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #6B7280;
}

.invest-incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}

.invest-incl-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invest-incl-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: baseline;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
}

.invest-mark {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--black);
  text-align: left;
  transform: translateY(2px);
}

.invest-mark--star {
  font-weight: 600;
  font-size: 13px;
  color: #B89A3B;
}

.invest-afterwork {
  background: var(--lime);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.invest-afterwork-eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #3B5A1B;
  margin: 0 0 14px;
}

.invest-afterwork-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 12px;
  text-wrap: pretty;
}

.invest-afterwork-body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #1F3A0E;
  margin: 0 0 22px;
}

.invest-afterwork-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 58, 14, 0.22);
}

.invest-afterwork-fact-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #3B5A1B;
  margin: 0 0 4px;
}

.invest-afterwork-fact-value {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

.invest-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 8px;
  font-family: 'Work Sans', sans-serif;
}

.invest-foot>div>b {
  display: block;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--black);
  margin-bottom: 12px;
}

.invest-foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.invest-foot-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #6B7280;
}

.invest-foot-list li::before {
  content: "—";
  color: #9CA3AF;
}

@media (max-width: 1024px) {
  .invest-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .invest-rail {
    display: none;
  }

  .invest-value {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .invest-incl-grid {
    grid-template-columns: 1fr;
  }

  .invest-foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .invest {
    padding: 80px 24px 96px;
  }

  .invest-h2 {
    font-size: 40px;
  }

  .invest-sub {
    font-size: 16px;
  }

  .invest-index {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 40px;
  }

  .invest-index-right {
    text-align: left;
  }

  .invest-discount-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .invest-discount-pill {
    border-right: none;
    padding-right: 0;
  }

  .invest-card-price .num {
    font-size: 44px;
  }

  .invest-afterwork-title {
    font-size: 22px;
  }

  .invest-afterwork-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    padding: 14px 20px;
    gap: 12px;
  }

  .wordmark-logo {
    height: 19px;
    max-width: 149px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 24px;
    font-size: 16px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0s linear 0.18s;
  }

  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav[data-open="true"] .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0s linear 0s;
  }

  .hero {
    background-position: 40% top;
  }

  .hero-grid {
    padding: 144px 20px 40px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-left {
    gap: 40px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-ghost,
  .btn-primary.btn-lg {
    width: 100%;
  }

  .num {
    font-size: clamp(52px, 13vw, 80px);
  }

  /* Sticker rutscht auf Mobile nach links und unter den letzten Tag */
  .num-stamp {
    right: auto;
    left: 0;
    bottom: 4px;
    font-size: 11px;
    padding: 9px 13px 8px;
  }

  .hero-bottom {
    margin: 0 -20px;
    padding: 16px 20px 24px;
  }

  .hero-bottom .proof-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
  }

  .hero-bottom .proof-line .sep {
    display: none;
  }

  .hero-bottom .proof-line .proof-item {
    display: block;
  }
}

/* ---------- §11 Warum wir, warum jetzt ---------- */
.warum {
  background: var(--blue);
  color: var(--white);
  padding: 128px 40px 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.warum-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.warum-head {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 88px;
}

.warum-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.warum-eyebrow::before,
.warum-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.warum-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 auto;
  max-width: 900px;
  text-wrap: pretty;
}

.warum-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 24px auto 0;
  text-wrap: pretty;
}

.warum-proofs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 0;
  margin: 0 0 88px;
  position: relative;
}

.warum-proof {
  padding: 8px 40px;
  position: relative;
}

.warum-proof:nth-child(odd) {
  padding-left: 0;
}

.warum-proof:nth-child(even) {
  padding-right: 0;
}

.warum-proof:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.warum-proof-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  display: block;
  margin: 0 0 24px;
}

.warum-proof-h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.warum-proof-body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.warum-close {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.warum-close-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 20px;
}

.warum-close-body {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .warum-proofs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .warum-proof {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .warum-proof:nth-child(odd),
  .warum-proof:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .warum-proof:first-child {
    padding-top: 0;
    border-top: none;
  }

  .warum-proof:last-child {
    padding-bottom: 0;
  }

  .warum-proof:nth-child(even)::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .warum {
    padding: 80px 24px 96px;
  }

  .warum-h2 {
    font-size: 38px;
  }

  .warum-sub {
    font-size: 16px;
  }

  .warum-proof-num {
    font-size: 64px;
  }

  .warum-close-body {
    font-size: 17px;
  }
}

/* ---------- §12 Häufige Fragen ---------- */
.faq {
  background: #FBFAF7;
  color: var(--black);
  padding: 112px 40px 128px;
  border-top: 1px solid #E8E5DC;
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-head {
  margin: 0 0 48px;
}

.faq-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.faq-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #6B7280;
  display: inline-block;
}

.faq-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
  max-width: 24ch;
  text-wrap: pretty;
}

.faq-list {
  border-top: 1px solid #E6E3DC;
}

.faq-item {
  border-bottom: 1px solid #E6E3DC;
}

.faq-item>summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--black);
  transition: color 0.15s ease;
}

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

.faq-item>summary:hover {
  color: #1F3A0E;
}

/* Icon: + when closed, − when open (two rules, one rotates out) */
.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  justify-self: end;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--lime);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before {
  /* horizontal bar */
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  /* vertical bar */
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open]>summary .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item[open]>summary {
  color: var(--black);
}

.faq-answer {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
  padding: 0 48px 28px 0;
  max-width: 720px;
}

.faq-close {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
  margin: 48px 0 0;
  text-align: left;
}

.faq-close a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 1px;
  transition: color 0.15s ease, background 0.15s ease;
}

.faq-close a:hover {
  background: var(--lime);
}

@media (max-width: 820px) {
  .faq {
    padding: 72px 24px 96px;
  }

  .faq-h2 {
    font-size: 30px;
  }

  .faq-item>summary {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq-answer {
    font-size: 15px;
    padding-right: 0;
  }
}

/* ---------- §13 Anmeldung ---------- */
.anmeld {
  background: var(--blue);
  padding: 96px 40px 112px;
  position: relative;
  overflow: hidden;
}

.anmeld::before {
  /* subtle top lime accent rule */
  content: "";
  display: none;
}

.anmeld-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Entrance header */
.anmeld-entrance {
  color: var(--white);
  margin: 0 0 48px;
}

.anmeld-section-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.anmeld-section-num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.anmeld-h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 820px;
  text-wrap: balance;
}

.anmeld-h2 em {
  font-style: normal;
  color: var(--lime);
}

.anmeld-lede {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 880px;
  margin: 0 0 32px;
  text-wrap: balance;
}

.anmeld-backlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.anmeld-backlink {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 16px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.anmeld-backlink:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.anmeld-backlink-arrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

/* Form card — sits inside blue frame */
.anmeld-form {
  background: #FBFAF7;
  padding: 72px 72px 80px;
  position: relative;
}

.anmeld-form::before {
  /* lime accent bar on left edge of form card */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--lime);
}

.anmeld-form-inner {
  max-width: 880px;
  margin: 0 auto;
}

.anmeld-group {
  margin: 0 0 56px;
  padding: 0;
  border: none;
}

.anmeld-group:last-of-type {
  margin-bottom: 0;
}

.anmeld-group-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E3DC;
}

.anmeld-group-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.anmeld-group-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
}

.anmeld-group-sub {
  flex-basis: 100%;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #6B7280;
  margin: 6px 0 0;
}

/* Cards — day selector */
.anmeld-days {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.anmeld-day {
  display: block;
  position: relative;
  background: var(--white);
  border: 1px solid #E6E3DC;
  padding: 20px 20px 22px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  min-height: 124px;
}

.anmeld-day input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.anmeld-day-check {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #9CA3AF;
  display: inline-block;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.anmeld-day-check::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  transform-origin: center;
}

.anmeld-day-label {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B7280;
  margin: 36px 0 8px;
}

.anmeld-day-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
}

.anmeld-day input:checked~.anmeld-day-check {
  border-color: var(--lime);
  background: var(--lime);
}

.anmeld-day input:checked~.anmeld-day-check::after {
  transform: rotate(45deg) scale(1);
}

.anmeld-day:has(input:checked) {
  border-color: var(--lime);
  background: #EAF6DB;
  box-shadow: inset 0 0 0 1px var(--lime);
}

.anmeld-day:hover {
  border-color: #C9C4B4;
}

/* Modus cards */
.anmeld-modi {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.anmeld-mode {
  display: block;
  position: relative;
  background: var(--white);
  border: 1px solid #E6E3DC;
  padding: 18px 20px 20px 24px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.anmeld-mode::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: var(--mode-color, #9CA3AF);
}

.anmeld-mode input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.anmeld-mode-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.anmeld-mode-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
  color: #6B7280;
  margin: 0;
}

.anmeld-mode:has(input:checked) {
  border-color: var(--lime);
  background: #EAF6DB;
  box-shadow: inset 0 0 0 1px var(--lime);
}

.anmeld-mode:hover {
  border-color: #C9C4B4;
}

.anmeld-mode--explorer {
  --mode-color: #E8781C;
}

.anmeld-mode--insider {
  --mode-color: #1F7A4C;
}

.anmeld-mode--builder {
  --mode-color: #1D4ED8;
}

.anmeld-helper {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: #6B7280;
  margin: 16px 0 0;
}

/* Contact fields */
.anmeld-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-top: 24px;
}

.anmeld-field {
  display: flex;
  flex-direction: column;
}

.anmeld-field--full {
  grid-column: 1 / -1;
}

.anmeld-field label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #374151;
  margin-bottom: 8px;
}

.anmeld-req {
  color: var(--lime);
  font-weight: 700;
  margin-left: 4px;
}

.anmeld-field input[type="text"],
.anmeld-field input[type="email"],
.anmeld-field input[type="tel"] {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #E6E3DC;
  height: 48px;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.15s ease;
}

.anmeld-field input::placeholder {
  color: #9CA3AF;
}

.anmeld-field input:focus {
  border-color: var(--black);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 0;
}

.anmeld-field.is-invalid input {
  border-bottom-color: #A0302A;
}

.anmeld-field.is-invalid label {
  color: #A0302A;
}

.anmeld-consent label.is-invalid {
  color: #A0302A;
}

.anmeld-field-error {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #A0302A;
  margin: 6px 0 0;
}

/* Group 03 — collapsible code */
.anmeld-code-toggle {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  list-style: none;
}

.anmeld-code-toggle::-webkit-details-marker {
  display: none;
}

.anmeld-code-toggle::marker {
  content: "";
}

.anmeld-code-toggle-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}

.anmeld-code-toggle-icon::before,
.anmeld-code-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.anmeld-code-toggle-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.anmeld-code-toggle-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.anmeld-code[open] .anmeld-code-toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.anmeld-code-input {
  margin-top: 18px;
}

.anmeld-code-input input {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 1px solid #E6E3DC;
  height: 48px;
  padding: 0 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
}

.anmeld-code-input input::placeholder {
  letter-spacing: 0.04em;
  text-transform: none;
  color: #9CA3AF;
  font-weight: 400;
}

.anmeld-code-input input:focus {
  border-color: var(--black);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 0;
}

/* Consent + submit */
.anmeld-consent {
  margin: 64px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.anmeld-consent label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
  cursor: pointer;
}

.anmeld-consent-optional {
  color: #6B7280;
}

.anmeld-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #9CA3AF;
  background: var(--white);
  margin: 2px 0 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.anmeld-consent input[type="checkbox"]:checked {
  border-color: var(--lime);
  background: var(--lime);
}

.anmeld-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
}

.anmeld-consent a {
  color: var(--black);
  border-bottom: 1px solid var(--lime);
  text-decoration: none;
}

.anmeld-submit {
  width: 100%;
  height: 64px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--black);
  background: var(--lime);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.anmeld-submit:hover {
  background: #A8E66D;
}

.anmeld-submit:active {
  transform: translateY(1px);
}

.anmeld-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.anmeld-status {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  padding: 20px 24px;
  border-radius: 2px;
  margin-top: 24px;
}

.anmeld-status--success {
  background: #EAF6DB;
  border-left: 4px solid var(--lime);
  color: var(--black);
}

.anmeld-status--error {
  background: #FBEAE9;
  border-left: 4px solid #A0302A;
  color: #7A2420;
}

.anmeld-reassure {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #6B7280;
  margin: 20px 0 0;
  text-align: center;
}

@media (max-width: 820px) {
  .anmeld {
    padding: 64px 20px 80px;
  }

  .anmeld-section-num {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .anmeld-h2 {
    font-size: 36px;
  }

  .anmeld-lede {
    font-size: 16px;
  }

  .anmeld-form {
    padding: 48px 24px 56px;
  }

  .anmeld-days,
  .anmeld-modi {
    grid-template-columns: 1fr;
  }

  .anmeld-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .anmeld-group-title {
    font-size: 20px;
  }
}

/* ---------- §14 Footer ---------- */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 72px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 56px;
}

.footer-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}

.footer-event-lines {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-event-lines span {
  display: block;
}

.footer-edition {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 0;
}

/* Contacts */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer-contact-photo {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.footer-contact-photo img,
.footer-contact-photo svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-contact-text {
  min-width: 0;
}

.footer-contact-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.footer-contact-role-line {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.footer-contact-lines {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-lines a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s ease;
  border-bottom: 1px solid transparent;
  display: inline-block;
  align-self: flex-start;
}

.footer-contact-lines a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

.footer-contact-phone {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Legal links */
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-legal-list a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s ease;
}

.footer-legal-list a:hover {
  color: var(--lime);
}

.footer-social {
  margin-top: 32px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.footer-social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-social-row a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.footer-social-row svg {
  width: 16px;
  height: 16px;
}

/* Light strip */
.footer-strip {
  background: #FBFAF7;
  padding: 32px 40px;
  border-top: 1px solid #E8E5DC;
}

.footer-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-powered-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin: 0;
}

.footer-powered-logo {
  height: 22px;
  width: auto;
  display: block;
}

.footer-powered-logo--small {
  height: 16px;
  opacity: 0.7;
}

.footer-powered-sep {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
}

.footer-copyright {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 820px) {
  .footer {
    padding: 56px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-strip {
    padding: 24px;
  }

  .footer-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ---------- Scroll-Reveal (fly/fade-in) ---------- */
/*
  API:
    data-reveal               -> default: fade + gentle rise (up)
    data-reveal="up"          -> translateY(28px) -> 0
    data-reveal="down"        -> translateY(-22px) -> 0
    data-reveal="left"        -> translateX(-36px) -> 0
    data-reveal="right"       -> translateX(36px) -> 0
    data-reveal="fade"        -> opacity only
    data-reveal="scale"       -> scale(0.96) -> 1, fade
    data-reveal="rise"        -> like up, stärker (46px) — gezielt für Headlines
  Stagger:
    style="--rv-delay:120ms"  -> individuelle Verzögerung
    data-reveal-group         -> Kinder automatisch in 90ms-Schritten
*/
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition:
      opacity 1150ms cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 1150ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--rv-delay, 0ms);
  }

  [data-reveal=""],
  [data-reveal="up"] {
    transform: translate3d(0, 28px, 0);
  }

  [data-reveal="rise"] {
    transform: translate3d(0, 46px, 0);
  }

  [data-reveal="down"] {
    transform: translate3d(0, -22px, 0);
  }

  [data-reveal="left"] {
    transform: translate3d(-36px, 0, 0);
  }

  [data-reveal="right"] {
    transform: translate3d(36px, 0, 0);
  }

  [data-reveal="fade"] {
    transform: none;
  }

  [data-reveal="scale"] {
    transform: scale(0.96);
  }

  [data-reveal].is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Fallback: falls JS aus ist, trotzdem sichtbar */
.no-js [data-reveal],
html:not(.js) [data-reveal] {
  opacity: 1;
  transform: none;
}