/* ============================================================
   Recht auf Vergessen — index.html styles
   ============================================================ */
:root { --max: 1240px; }

body {
  background: var(--rv-paper);
  color: var(--rv-ink-600);
  overflow-x: hidden;
}

/* ---------------- BACKDROP : awareness ribbons + ghost heart ---------------- */
.backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.backdrop .ghost-heart {
  position: absolute;
  right: -240px;
  top: -180px;
  width: 1080px;
  opacity: 0.06;
  filter: saturate(0.9);
  transform: rotate(-4deg);
}
.backdrop .ghost-heart.two {
  left: -300px;
  bottom: -260px;
  right: auto;
  top: auto;
  width: 760px;
  opacity: 0.04;
  transform: rotate(8deg);
}
.ribbon {
  position: absolute;
  width: 110px;
  opacity: 0.10;
  color: var(--rv-sun-400);
  animation: float 14s ease-in-out infinite;
}
.ribbon.r2 { opacity: 0.08; color: var(--rv-pink-300); animation-duration: 18s; }
.ribbon.r3 { opacity: 0.07; color: var(--rv-sky-400); animation-duration: 22s; }
.ribbon.r4 { opacity: 0.06; color: var(--rv-sun-500); animation-duration: 16s; }
.ribbon.r5 { opacity: 0.05; color: var(--rv-pink-400); animation-duration: 20s; }
.ribbon.r6 { opacity: 0.07; color: var(--rv-sun-400); animation-duration: 24s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-22px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}

/* ---------------- HEADER ---------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(254, 252, 246, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--rv-dur-base);
}
.header.scrolled { border-bottom-color: var(--rv-border); }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: auto; height: 38px; display: block; object-fit: contain; }
.brand .wm {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand .wm small {
  display: block;
  font-family: var(--rv-font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--rv-ink-300);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--rv-ink-500);
  text-decoration: none;
  transition: color 140ms;
}
.nav-links a:hover { color: var(--rv-ink-600); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--rv-radius-pill);
  background: var(--rv-sun-300);
  color: var(--rv-ink-600);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(252, 198, 82, 0.35);
  transition: transform 140ms var(--rv-ease-out), background 140ms;
}
.header-cta:hover { background: var(--rv-sun-400); transform: translateY(-1px); }
.header-cta:active { background: var(--rv-sun-500); transform: scale(0.98); }
.header-cta .arrow { transition: transform 220ms var(--rv-ease-out); }
.header-cta:hover .arrow { transform: translateX(3px); }

/* ---------------- LAYOUT / SECTIONS ---------------- */
main { position: relative; z-index: 1; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }

.section-head { margin-bottom: 48px; max-width: 760px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rv-pink-400);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--rv-ink-600);
  margin: 0 0 18px;
  max-width: 18ch;
  text-wrap: balance;
}
.section-title .accent { color: var(--rv-sun-400); }
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--rv-ink-500);
  max-width: 60ch;
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
}

/* ---------------- HERO ---------------- */
.hero { padding: 140px 0 60px; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rv-pink-400);
  margin-bottom: 24px;
}
.hero .eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rv-pink-400);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}
h1.hero-title {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--rv-ink-600);
  margin: 0;
  max-width: 14ch;
}
h1.hero-title .accent { color: var(--rv-sun-400); }
h1.hero-title .strike {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
h1.hero-title .strike::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  top: 54%;
  height: 0.18em;
  background: var(--rv-pink-300);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1.5deg);
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--rv-ink-500);
  margin: 32px 0 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero .lede strong {
  font-weight: 800;
  color: var(--rv-ink-600);
  background: linear-gradient(transparent 60%, var(--rv-sun-200) 60%);
  padding: 0 2px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

/* ---------------- BUTTONS ---------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 34px;
  border-radius: var(--rv-radius-pill);
  background: var(--rv-sun-300);
  color: var(--rv-ink-600);
  text-decoration: none;
  box-shadow: var(--rv-shadow-glow-sun);
  transition: all 160ms var(--rv-ease-out);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--rv-sun-400); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(252, 198, 82, 0.55); }
.btn-primary:active { background: var(--rv-sun-500); transform: scale(0.98); }
.btn-primary .arrow { transition: transform 220ms var(--rv-ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 30px;
  border-radius: var(--rv-radius-pill);
  background: transparent;
  color: var(--rv-ink-600);
  text-decoration: none;
  border: 1.5px solid var(--rv-ink-600);
  transition: all 140ms var(--rv-ease-out);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--rv-ink-600); color: var(--rv-paper); }
.btn-secondary.on-dark { color: var(--rv-paper); border-color: var(--rv-paper); }
.btn-secondary.on-dark:hover { background: var(--rv-paper); color: var(--rv-ink-600); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--rv-ink-500);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 140ms, color 140ms;
}
.btn-link:hover { color: var(--rv-ink-600); border-bottom-color: var(--rv-ink-600); }

/* ---------------- COUNTER ---------------- */
.counter-wrap {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 780px;
}
.counter {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-xl);
  padding: 24px 28px 22px;
  box-shadow: var(--rv-shadow-sm);
}
.counter .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rv-ink-300);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.counter .label .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rv-success);
  box-shadow: 0 0 0 0 rgba(47, 158, 106, 0.6);
  animation: livepulse 2.2s ease-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 158, 106, 0.55); }
  80%  { box-shadow: 0 0 0 9px rgba(47, 158, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 158, 106, 0); }
}
.counter .stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.counter .num {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--rv-ink-600);
}
.counter .of { font-size: 15px; font-weight: 600; color: var(--rv-ink-400); }
.counter .of b { color: var(--rv-ink-600); font-variant-numeric: tabular-nums; }
.counter .bar {
  margin-top: 18px;
  height: 12px;
  background: var(--rv-ink-100);
  border-radius: var(--rv-radius-pill);
  overflow: hidden;
  position: relative;
}
.counter .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rv-sun-300), var(--rv-sun-400));
  border-radius: var(--rv-radius-pill);
  box-shadow: inset 0 -2px 0 var(--rv-sun-500);
  transition: width 900ms var(--rv-ease-out);
  position: relative;
}
.counter .fill::after {
  content: "";
  position: absolute;
  right: -2px; top: -3px;
  width: 18px; height: 18px;
  background: var(--rv-sun-300);
  border: 3px solid var(--rv-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--rv-sun-400), 0 4px 10px rgba(252, 198, 82, 0.45);
}
.counter .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 13px;
  color: var(--rv-ink-400);
  font-weight: 500;
}
.counter .meta b { color: var(--rv-ink-600); font-weight: 800; font-variant-numeric: tabular-nums; }
.counter-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}
.counter-aside .big {
  font-family: var(--rv-font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--rv-pink-400);
  font-variant-numeric: tabular-nums;
}
.counter-aside .cap {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rv-ink-400);
  max-width: 14ch;
  line-height: 1.4;
}

/* ---------------- "WARUM" + "FORDERUNGEN" CARD GRIDS ---------------- */
.section-pad { padding: 96px 0; }
.section-pad.tight { padding: 72px 0; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-xl);
  padding: 32px 28px 32px;
  transition: transform 220ms var(--rv-ease-out), box-shadow 220ms;
  position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-md); }
.feature-card .badge {
  width: 56px; height: 56px;
  border-radius: var(--rv-radius-lg);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--rv-ink-600);
}
.feature-card .badge.sun  { background: var(--rv-sun-200); }
.feature-card .badge.pink { background: var(--rv-pink-100); }
.feature-card .badge.sky  { background: var(--rv-sky-100); }
.feature-card h3 {
  font-family: var(--rv-font-body);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.22;
  margin: 0 0 12px;
  max-width: 18ch;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--rv-ink-400);
  margin: 0;
}
.feature-card p b { color: var(--rv-ink-600); font-weight: 700; }
.feature-card .stat-big {
  font-family: var(--rv-font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--rv-ink-600);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.feature-card .stat-big sup {
  font-size: 32px;
  vertical-align: top;
  margin-left: 2px;
  color: var(--rv-sun-400);
}

/* ---------------- PULL QUOTE ---------------- */
.pullquote {
  padding: 96px 0;
  background: var(--rv-paper-tint);
  position: relative;
  overflow: hidden;
}
.pullquote .ghost {
  position: absolute;
  right: -100px;
  top: -80px;
  width: 460px;
  opacity: 0.10;
  pointer-events: none;
}
.pullquote blockquote {
  margin: 0;
  max-width: 920px;
  position: relative;
  z-index: 1;
}
.pullquote .mark {
  font-family: var(--rv-font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--rv-sun-400);
  margin-bottom: -16px;
  display: block;
}
.pullquote p {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--rv-ink-600);
  margin: 0 0 28px;
  text-wrap: balance;
}
.pullquote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rv-ink-400);
}
.pullquote cite b { color: var(--rv-ink-600); }

/* ---------------- STIMMEN / TESTIMONIALS ---------------- */
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story {
  background: var(--rv-ink-500);
  color: var(--rv-paper);
  border-radius: var(--rv-radius-xl);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.story.pink { background: var(--rv-pink-300); color: var(--rv-ink-600); }
.story.sun { background: var(--rv-sun-300); color: var(--rv-ink-600); }
.story .mark-bg {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  opacity: 0.16;
  pointer-events: none;
}
.story.pink .mark-bg, .story.sun .mark-bg { opacity: 0.25; }
.story .quote {
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  z-index: 1;
  position: relative;
  flex: 1;
}
.story .quote b { font-weight: 800; font-style: normal; background: rgba(255,255,255,0.18); padding: 1px 5px; border-radius: 4px; }
.story.pink .quote b, .story.sun .quote b { background: rgba(32,44,57,0.14); }
.story .who { display: flex; gap: 12px; align-items: center; z-index: 1; position: relative; }
.story .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-family: var(--rv-font-display);
  font-weight: 800;
  font-size: 16px;
  flex: none;
}
.story.pink .av, .story.sun .av { background: rgba(32,44,57,0.16); }
.story .name { font-weight: 800; font-size: 15px; line-height: 1.2; }
.story .meta { font-size: 12px; opacity: 0.75; margin-top: 2px; }

/* ---------------- HINTERGRÜNDE / SCIENCE ---------------- */
.science {
  background: var(--rv-ink-600);
  color: var(--rv-paper);
  position: relative;
  overflow: hidden;
}
.science .ghost {
  position: absolute;
  left: -180px;
  bottom: -200px;
  width: 600px;
  opacity: 0.06;
  pointer-events: none;
}
.science .ghost.tr {
  left: auto;
  right: -160px;
  bottom: auto;
  top: -160px;
  width: 460px;
  opacity: 0.05;
}
.science .container { position: relative; z-index: 1; }
.science .section-eyebrow { color: var(--rv-sun-300); }
.science .section-title { color: var(--rv-paper); }
.science .section-lede { color: var(--rv-ink-200); }

.science-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.science-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.science-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.science-point:last-child { border-bottom: none; padding-bottom: 0; }
.science-point .num {
  font-family: var(--rv-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--rv-sun-300);
  font-variant-numeric: tabular-nums;
  min-width: 110px;
}
.science-point .num small { font-size: 22px; color: var(--rv-sun-300); margin-left: 2px; }
.science-point h4 {
  font-family: var(--rv-font-body);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--rv-paper);
}
.science-point p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--rv-ink-200);
  margin: 0;
}

/* EU MAP */
.eu-card {
  background: var(--rv-ink-500);
  border-radius: var(--rv-radius-xl);
  padding: 32px;
  position: relative;
}
.eu-card h4 {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--rv-sun-300);
  margin: 0 0 18px;
}
.eu-card .map { width: 100%; height: auto; display: block; }
.eu-legend {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--rv-ink-200);
}
.eu-legend .row { display: flex; align-items: center; gap: 10px; }
.eu-legend .sw { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.eu-legend .sw.yes { background: var(--rv-sun-300); }
.eu-legend .sw.partial { background: var(--rv-sun-300); opacity: 0.5; }
.eu-legend .sw.no { background: var(--rv-pink-400); }
.eu-legend b { color: var(--rv-paper); font-weight: 700; }

.source-list {
  margin-top: 32px;
  font-size: 12px;
  color: var(--rv-ink-300);
  line-height: 1.7;
}
.source-list b { color: var(--rv-paper); }
.source-list a { color: var(--rv-sun-300); text-decoration: none; }
.source-list a:hover { text-decoration: underline; }

/* ---------------- THEMATISIERUNGEN / PRESS ---------------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.press-card {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-lg);
  padding: 24px 24px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms, box-shadow 220ms;
  position: relative;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--rv-shadow-md); }
.press-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rv-ink-400);
}
.press-card .head .src { color: var(--rv-ink-600); }
.press-card .head .kind {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: var(--rv-radius-pill);
  background: var(--rv-paper-tint);
  letter-spacing: 0.14em;
}
.press-card .head .kind.tv { background: var(--rv-pink-100); color: var(--rv-pink-500); }
.press-card .head .kind.art { background: var(--rv-sky-100); color: var(--rv-sky-500); }
.press-card .head .kind.parl { background: var(--rv-sun-200); color: var(--rv-sun-600); }
.press-card .head .kind.fach { background: var(--rv-ink-100); color: var(--rv-ink-500); }
.press-card h3 {
  font-family: var(--rv-font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.32;
  margin: 0;
  color: var(--rv-ink-600);
  text-wrap: balance;
}
.press-card .foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: var(--rv-ink-400);
  font-weight: 600;
}
.press-card .foot .open {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--rv-ink-600);
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.partner {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-lg);
  padding: 22px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: all 200ms;
}
.partner:hover { box-shadow: var(--rv-shadow-sm); transform: translateY(-2px); }
.partner .logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rv-paper-tint);
  display: grid; place-items: center;
  flex: none;
  color: var(--rv-pink-400);
}
.partner h4 {
  font-family: var(--rv-font-body);
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 5px;
  color: var(--rv-ink-600);
  line-height: 1.25;
}
.partner p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--rv-ink-400);
  margin: 0;
}

/* ---------------- MITMACHEN / SUPPORT ---------------- */
.support {
  background: var(--rv-paper-tint);
  border-radius: var(--rv-radius-2xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.support .ghost-mark {
  position: absolute;
  right: -80px;
  top: -100px;
  width: 380px;
  opacity: 0.10;
  pointer-events: none;
}
.support .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.support-list {
  display: grid;
  gap: 18px;
}
.support-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.support-step .step-n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rv-sun-300);
  color: var(--rv-ink-600);
  display: grid; place-items: center;
  font-family: var(--rv-font-display);
  font-weight: 900;
  font-size: 18px;
  flex: none;
}
.support-step h4 {
  font-family: var(--rv-font-body);
  font-weight: 800;
  font-size: 17px;
  margin: 6px 0 4px;
}
.support-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--rv-ink-400);
  margin: 0;
}
.support-step p a {
  color: var(--rv-ink-600);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--rv-sun-300);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.share-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--rv-radius-pill);
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--rv-ink-600);
  cursor: pointer;
  transition: all 140ms;
}
.share-row button:hover { background: var(--rv-ink-600); color: var(--rv-paper); border-color: var(--rv-ink-600); }
.share-row button.copied { background: var(--rv-success); color: var(--rv-paper); border-color: var(--rv-success); }

/* ---------------- INITIATOREN / FOUNDERS ---------------- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.founders .portrait {
  background: linear-gradient(140deg, var(--rv-pink-100), var(--rv-sun-100));
  border-radius: var(--rv-radius-2xl);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.founders .portrait img {
  width: 70%;
  max-width: 280px;
  opacity: 0.92;
  filter: drop-shadow(0 18px 32px rgba(32,44,57,0.12));
}
.founders .portrait.has-photo {
  background: var(--rv-ink-100);
}
.founders .portrait.has-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  display: block;
}
.founders .portrait .tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--rv-paper-card);
  border-radius: var(--rv-radius-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rv-ink-500);
  box-shadow: var(--rv-shadow-sm);
}
.founders .copy h2 { margin-bottom: 22px; }
.founders .copy p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--rv-ink-500);
  margin: 0 0 16px;
  font-weight: 500;
  max-width: 56ch;
}
.founders .copy .haare-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--rv-pink-400);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 2px solid var(--rv-pink-200);
  transition: all 140ms;
}
.founders .copy .haare-link:hover { color: var(--rv-pink-500); border-bottom-color: var(--rv-pink-400); }

/* ---------------- SOCIAL / FOLLOW ---------------- */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.social-card {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 200ms;
}
.social-card:hover { box-shadow: var(--rv-shadow-md); transform: translateY(-3px); }
.social-card .logo {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  flex: none;
  color: var(--rv-paper);
  font-weight: 900;
}
.social-card .logo.ig { background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.social-card .logo.wa { background: #25d366; }
.social-card .text { flex: 1; }
.social-card h4 {
  font-family: var(--rv-font-body);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 4px;
}
.social-card p {
  font-size: 13px;
  color: var(--rv-ink-400);
  margin: 0;
  font-weight: 500;
}
.social-card .arrow { margin-left: auto; color: var(--rv-ink-300); }

/* ---------------- CONTACT FORM ---------------- */
.contact {
  background: var(--rv-paper-card);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-2xl);
  padding: 56px;
  box-shadow: var(--rv-shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact .ghost {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  opacity: 0.07;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.contact-grid .intro h2 { margin-bottom: 16px; max-width: 14ch; }
.contact-grid .intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--rv-ink-400);
  margin: 0 0 28px;
  font-weight: 500;
}
.contact-channels {
  display: grid;
  gap: 14px;
}
.contact-channel {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: var(--rv-paper-tint);
  border-radius: var(--rv-radius-md);
  text-decoration: none;
  color: var(--rv-ink-600);
  font-size: 14px;
  font-weight: 600;
  transition: all 140ms;
}
.contact-channel:hover { background: var(--rv-sun-100); }
.contact-channel .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--rv-paper-card);
  display: grid; place-items: center;
  color: var(--rv-pink-400);
  flex: none;
}
.contact-channel small {
  display: block;
  font-size: 11px;
  color: var(--rv-ink-400);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Form */
.contact-form {
  display: grid;
  gap: 18px;
}
.form-group { display: grid; gap: 8px; }
.form-group.row { grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .form-group.row { grid-template-columns: 1fr; } }
.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rv-ink-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.form-label .req { color: var(--rv-pink-400); }
.form-label .hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--rv-ink-300);
  font-weight: 600;
}

.form-control {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--rv-paper);
  color: var(--rv-ink-600);
  border: 1.5px solid var(--rv-border);
  border-radius: var(--rv-radius-md);
  transition: border-color 140ms, box-shadow 140ms, background 140ms;
  width: 100%;
}
.form-control::placeholder { color: var(--rv-ink-300); }
.form-control:hover { border-color: var(--rv-border-strong); }
.form-control:focus {
  outline: none;
  border-color: var(--rv-ink-600);
  box-shadow: 0 0 0 3px var(--rv-sun-200);
  background: var(--rv-paper-card);
}
.form-control.error {
  border-color: var(--rv-danger);
  background: rgba(208, 74, 74, 0.04);
}
.form-control.valid {
  border-color: var(--rv-success);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
  line-height: 1.55;
}
.form-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--rv-danger);
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: -2px;
}
.form-error.show { display: flex; }

/* Anliegen chips */
.anliegen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .anliegen-grid { grid-template-columns: 1fr; } }
.anliegen-chip {
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--rv-paper);
  border: 1.5px solid var(--rv-border);
  border-radius: var(--rv-radius-md);
  transition: all 160ms var(--rv-ease-out);
}
.anliegen-chip:hover { border-color: var(--rv-ink-300); transform: translateY(-1px); }
.anliegen-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.anliegen-chip .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--rv-ink-200);
  background: var(--rv-paper-card);
  flex: none;
  position: relative;
  transition: all 140ms;
}
.anliegen-chip .dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rv-ink-600);
  transform: scale(0);
  transition: transform 180ms var(--rv-ease-spring);
}
.anliegen-chip .chip-text { line-height: 1.3; }
.anliegen-chip .chip-text b { font-size: 14.5px; font-weight: 700; color: var(--rv-ink-600); display: block; }
.anliegen-chip .chip-text small { font-size: 12px; color: var(--rv-ink-400); font-weight: 500; }
.anliegen-chip:has(input:checked) {
  border-color: var(--rv-ink-600);
  background: var(--rv-paper-card);
  box-shadow: 0 0 0 1px var(--rv-ink-600), var(--rv-shadow-sm);
}
.anliegen-chip:has(input:checked) .dot { border-color: var(--rv-ink-600); }
.anliegen-chip:has(input:checked) .dot::after { transform: scale(1); }

/* Conditional field reveal */
.conditional {
  display: none;
  animation: slideDown 280ms var(--rv-ease-out);
}
.conditional.show { display: grid; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0);    max-height: 400px; }
}

/* Conditional helper note */
.cond-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--rv-ink-500);
  padding: 12px 14px 12px 14px;
  background: var(--rv-sun-50);
  border-radius: var(--rv-radius-md);
  border-left: 3px solid var(--rv-sun-300);
  display: none;
}
.cond-note.show { display: block; animation: slideDown 280ms var(--rv-ease-out); }
.cond-note b { color: var(--rv-ink-600); }

/* Checkbox */
.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: var(--rv-paper-tint);
  border-radius: var(--rv-radius-md);
  font-size: 13px;
  line-height: 1.5;
  color: var(--rv-ink-500);
  font-weight: 500;
  cursor: pointer;
}
.form-check input { display: none; }
.form-check .box {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--rv-paper-card);
  border: 1.5px solid var(--rv-border-strong);
  margin-top: 1px;
  position: relative;
  transition: all 140ms;
  flex: none;
}
.form-check input:checked + .box {
  background: var(--rv-ink-600);
  border-color: var(--rv-ink-600);
}
.form-check input:checked + .box::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 11px;
  border-right: 2px solid var(--rv-paper);
  border-bottom: 2px solid var(--rv-paper);
  transform: rotate(45deg);
}
.form-check a { color: var(--rv-ink-600); text-decoration: underline; text-decoration-color: var(--rv-sun-300); text-decoration-thickness: 2px; text-underline-offset: 2px; }

/* Submit row */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.form-submit .hint {
  font-size: 12px;
  color: var(--rv-ink-400);
  font-weight: 500;
}

/* Char counter */
.char-counter {
  font-size: 11px;
  color: var(--rv-ink-300);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.char-counter.over { color: var(--rv-danger); }

/* Success state */
.contact-success {
  display: none;
  text-align: center;
  padding: 36px 0 12px;
}
.contact-success.show { display: block; }
.contact-success .heart-pop {
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  animation: heartpop 700ms var(--rv-ease-spring);
}
@keyframes heartpop {
  from { transform: scale(0.3); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  to   { transform: scale(1); opacity: 1; }
}
.contact-success h3 {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--rv-ink-600);
}
.contact-success p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--rv-ink-400);
  max-width: 44ch;
  margin: 0 auto 28px;
}

@media (max-width: 980px) {
  .contact { padding: 40px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------- CLOSING CTA ---------------- */
.closing {
  background: var(--rv-ink-600);
  color: var(--rv-paper);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing .ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  opacity: 0.07;
  pointer-events: none;
}
.closing .container { position: relative; z-index: 1; }
.closing h2 {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.closing h2 .accent { color: var(--rv-sun-300); }
.closing p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--rv-ink-200);
  max-width: 60ch;
  margin: 0 auto 40px;
  font-weight: 500;
}
.closing .url-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 8px 8px 8px 18px;
  background: var(--rv-ink-500);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rv-radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--rv-ink-200);
  text-decoration: none;
}
.closing .url-pill code {
  font-family: var(--rv-font-mono);
  font-size: 13px;
  color: var(--rv-paper);
}
.closing .url-pill .ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rv-sun-300);
  display: grid; place-items: center;
  color: var(--rv-ink-600);
}

/* ---------------- FOOTER ---------------- */
footer.site-footer {
  background: var(--rv-ink-700);
  color: var(--rv-paper);
  padding: 56px 0 28px;
  position: relative;
  z-index: 2;
}
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer .lockup { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
footer .lockup img { width: auto; height: 44px; display: block; object-fit: contain; }
footer .lockup .name {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--rv-paper);
}
footer .lockup .name small {
  display: block;
  font-family: var(--rv-font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--rv-ink-300);
  margin-top: 5px;
}
footer .about { font-size: 14px; line-height: 1.6; color: var(--rv-ink-200); margin: 0; max-width: 36ch; opacity: 0.85; }
footer h4 {
  font-family: var(--rv-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rv-sun-300);
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: var(--rv-paper);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.78;
  transition: opacity 140ms;
}
footer ul a:hover { opacity: 1; color: var(--rv-sun-300); }
footer .colophon {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--rv-ink-300);
  flex-wrap: wrap;
  gap: 12px;
}
footer .colophon .heart {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .cards-3, .press-grid, .stories { grid-template-columns: 1fr 1fr; }
  .partners, .social-grid { grid-template-columns: 1fr; }
  .science-grid, .support .grid, .founders { grid-template-columns: 1fr; gap: 40px; }
  footer .grid { grid-template-columns: 1fr 1fr; }
  footer .grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .header { padding: 12px 20px; }
  .header .brand .wm small { display: none; }
  .nav-links { display: none; }
  .hero { padding: 110px 0 40px; }
  .counter-wrap { grid-template-columns: 1fr; }
  .cards-3, .press-grid, .stories { grid-template-columns: 1fr; }
  .support, .pullquote { padding: 56px 24px; }
  .support { padding: 40px 22px; }
  .section-pad { padding: 64px 0; }
  footer .grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon, .hero .eyebrow .dot, .counter .label .live { animation: none; }
}
