/* ============================================
   VO HOPPERS, FÜR HOPPERS — Design Tokens
   GC-Zürich CI/CD: Navy Blau + Weiss + Gold-Akzent
   ============================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Instrument Serif', 'Big Caslon', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

/* GC-CI/CD Palette — Navy als Hauptfarbe, Gold als Akzent */
:root, [data-theme='light'] {
  --color-navy-deep: #0B1F3F;
  --color-navy: #15396B;
  --color-navy-soft: #1F4F8B;
  --color-gold: #D4A24C;
  --color-gold-warm: #E8B95A;
  --color-gold-deep: #A87E2A;
  --color-white: #FFFFFF;
  --color-cream: #F5F2EA;
  --color-bone: #EAE6DA;

  --color-bg: #F5F2EA;
  --color-surface: #FFFFFF;
  --color-surface-2: #FBF9F2;
  --color-surface-offset: #EAE6DA;
  --color-divider: oklch(from var(--color-navy) l c h / 0.12);
  --color-border: oklch(from var(--color-navy) l c h / 0.18);

  --color-text: #0B1F3F;
  --color-text-muted: #4A5670;
  --color-text-faint: #8993A8;
  --color-text-inverse: #F5F2EA;

  --color-primary: var(--color-navy);
  --color-primary-hover: var(--color-navy-deep);
  --color-accent: var(--color-gold);
  --color-accent-hover: var(--color-gold-warm);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.06), 0 2px 6px oklch(0.2 0.05 250 / 0.04);
  --shadow-md: 0 4px 12px oklch(0.2 0.05 250 / 0.08), 0 8px 24px oklch(0.2 0.05 250 / 0.04);
  --shadow-lg: 0 12px 32px oklch(0.2 0.05 250 / 0.16), 0 20px 60px oklch(0.2 0.05 250 / 0.08);
}

[data-theme='dark'] {
  --color-bg: #0B1F3F;
  --color-surface: #15396B;
  --color-surface-2: #1F4F8B;
  --color-surface-offset: #0E2A52;
  --color-divider: oklch(from var(--color-gold) l c h / 0.18);
  --color-border: oklch(from var(--color-gold) l c h / 0.28);

  --color-text: #F5F2EA;
  --color-text-muted: #B5BFD2;
  --color-text-faint: #6E7A92;
  --color-text-inverse: #0B1F3F;

  --color-primary: var(--color-gold);
  --color-primary-hover: var(--color-gold-warm);
  --color-accent: var(--color-gold-warm);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.5);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.6);
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
}

/* ============================================
   NAV / HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background var(--transition-interactive), backdrop-filter var(--transition-interactive), border-color var(--transition-interactive), color var(--transition-interactive);
  border-bottom: 1px solid transparent;
  /* Default state: over hero (dark navy bg), so use light text */
  color: var(--color-cream);
}
.site-header .brand { color: inherit; }
.site-header .brand svg { color: var(--color-gold); }
.site-header .brand__name em { color: var(--color-gold); }
.site-header .theme-toggle { color: oklch(from var(--color-cream) l c h / 0.8); }
.site-header .theme-toggle:hover { color: var(--color-gold); border-color: oklch(from var(--color-cream) l c h / 0.4); background: oklch(from var(--color-cream) l c h / 0.08); }
.site-header.scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--color-divider);
  color: var(--color-text);
}
.site-header.scrolled .brand svg { color: var(--color-navy); }
.site-header.scrolled .brand__name em { color: var(--color-gold-deep); }
.site-header.scrolled .theme-toggle { color: var(--color-text-muted); }
.site-header.scrolled .theme-toggle:hover { color: var(--color-text); border-color: var(--color-border); background: oklch(from var(--color-text) l c h / 0.04); }
[data-theme='dark'] .site-header.scrolled .brand svg { color: var(--color-gold); }
[data-theme='dark'] .site-header.scrolled .brand__name em { color: var(--color-gold); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 0;
}
.brand svg { color: var(--color-navy); flex-shrink: 0; }
[data-theme='dark'] .brand svg { color: var(--color-gold); }
.brand .crest {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 1px 2px oklch(0% 0 0 / 0.12));
}
.site-header .brand .crest {
  /* Über dem dunklen Hero-Hintergrund: weisses Schild bleibt klar lesbar */
  filter: drop-shadow(0 2px 6px oklch(0% 0 0 / 0.35));
}
.site-header.scrolled .brand .crest {
  filter: drop-shadow(0 1px 2px oklch(0% 0 0 / 0.10));
}
.footer__brand-block .brand .crest {
  height: 44px;
  filter: drop-shadow(0 2px 6px oklch(0% 0 0 / 0.30));
}
.brand__name { font-weight: 400; overflow: hidden; text-overflow: ellipsis; }
.brand__name em { font-style: italic; color: var(--color-gold-deep); }
[data-theme='dark'] .brand__name em { color: var(--color-gold); }
@media (max-width: 540px) {
  .brand__name .full { display: none; }
  .brand { font-size: 0.95rem; gap: var(--space-2); }
  .brand .crest { height: 32px; }
}
@media (max-width: 380px) {
  .brand { font-size: 0.85rem; }
  .brand .crest { height: 28px; }
}
@media (min-width: 541px) {
  .brand__name .short { display: none; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-navy);
  color: var(--color-cream);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--color-gold); color: var(--color-navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
[data-theme='dark'] .nav-cta { background: var(--color-gold); color: var(--color-navy-deep); }
[data-theme='dark'] .nav-cta:hover { background: var(--color-gold-warm); }

.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid transparent;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--color-text); border-color: var(--color-border); background: oklch(from var(--color-text) l c h / 0.04); }
@media (max-width: 540px) {
  .theme-toggle { display: none; }
}

/* Sprachschalter / Language Switcher */
.lang-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  height: 40px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid transparent;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
  flex-shrink: 0;
}
.lang-toggle:hover { color: var(--color-text); border-color: var(--color-border); background: oklch(from var(--color-text) l c h / 0.04); }
.site-header .lang-toggle { color: oklch(from var(--color-cream) l c h / 0.8); }
.site-header .lang-toggle:hover { color: var(--color-gold); border-color: oklch(from var(--color-cream) l c h / 0.4); background: oklch(from var(--color-cream) l c h / 0.08); }
.site-header.scrolled .lang-toggle { color: var(--color-text-muted); }
.site-header.scrolled .lang-toggle:hover { color: var(--color-text); border-color: var(--color-border); background: oklch(from var(--color-text) l c h / 0.04); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  padding-top: clamp(var(--space-24), 12vw, var(--space-32));
  overflow: hidden;
  background: var(--color-navy-deep);
  color: var(--color-cream);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('./assets/pitch_hero_stadium.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.15 0.05 250 / 0.5) 0%, oklch(0.10 0.06 250 / 0.85) 70%, oklch(0.07 0.08 250 / 0.97) 100%),
    radial-gradient(ellipse 80% 50% at 50% 30%, transparent 0%, oklch(0.10 0.05 250 / 0.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  font-weight: 500;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 var(--color-gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(from var(--color-gold) l c h / 0.6); }
  50% { box-shadow: 0 0 0 10px oklch(from var(--color-gold) l c h / 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-8);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--color-gold);
  display: block;
}
.hero__lead {
  max-width: 56ch;
  font-size: clamp(1.125rem, 0.95rem + 0.5vw, 1.4rem);
  line-height: 1.55;
  color: oklch(from var(--color-cream) l c h / 0.92);
  margin-bottom: var(--space-10);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 52px;
}
.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}
.btn--primary:hover {
  background: var(--color-gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px oklch(from var(--color-gold) l c h / 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border-color: oklch(from var(--color-cream) l c h / 0.4);
}
.btn--ghost:hover {
  background: oklch(from var(--color-cream) l c h / 0.1);
  border-color: var(--color-cream);
}
.btn--dark {
  background: var(--color-navy-deep);
  color: var(--color-cream);
}
.btn--dark:hover { background: var(--color-navy); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn .arrow {
  transition: transform var(--transition-interactive);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero counters */
.hero__counters {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-8);
  border-top: 1px solid oklch(from var(--color-cream) l c h / 0.18);
  padding-top: var(--space-8);
  max-width: 1040px;
}
.counter__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
}
.counter__value--text {
  font-size: clamp(1.75rem, 1.1rem + 1.6vw, 2.75rem);
  letter-spacing: 0.01em;
}
.counter__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(from var(--color-cream) l c h / 0.7);
  font-weight: 500;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(from var(--color-cream) l c h / 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--color-gold));
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   SECTION: WARUM JETZT
   ============================================ */
.warum-jetzt {
  background: var(--color-bg);
  color: var(--color-text);
}

/* ============================================
   LIGA-VERGLEICH — Faktenbox SFL-Zahlen
   ============================================ */
.liga-vergleich {
  background: var(--color-cream);
  color: var(--color-text);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme='dark'] .liga-vergleich {
  background: oklch(from var(--color-navy) l c h / 0.4);
}
.liga-vergleich__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (max-width: 880px) {
  .liga-vergleich__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
.liga-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg, 14px);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: 0 1px 2px oklch(from var(--color-navy) l c h / 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.liga-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(from var(--color-navy) l c h / 0.08);
}
[data-theme='dark'] .liga-card {
  background: var(--color-navy-deep);
  border-color: oklch(from var(--color-gold) l c h / 0.22);
}
.liga-card__value {
  font-family: var(--font-display, 'Instrument Serif', serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--color-navy);
  font-weight: 400;
  letter-spacing: -0.02em;
}
[data-theme='dark'] .liga-card__value { color: var(--color-gold); }
.liga-card__value--red { color: #B33A3A; }
[data-theme='dark'] .liga-card__value--red { color: #E27575; }
.liga-card__unit {
  font-size: 0.5em;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-left: 0.25em;
  vertical-align: middle;
}
.liga-card__label {
  font-size: var(--text-xs, 0.78rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  font-weight: 600;
}
[data-theme='dark'] .liga-card__label { color: var(--color-gold); }
.liga-card__note {
  font-size: var(--text-sm, 0.92rem);
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.liga-vergleich__outro {
  max-width: 56rem;
  font-size: var(--text-base, 1.05rem);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-gold);
}
.liga-vergleich__outro strong { color: var(--color-navy); }
[data-theme='dark'] .liga-vergleich__outro strong { color: var(--color-gold); }
.liga-vergleich__source {
  font-size: var(--text-xs, 0.78rem);
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}
.liga-vergleich__source a { color: var(--color-text-muted); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.liga-vergleich__source a:hover { color: var(--color-gold-deep); }
[data-theme='dark'] .liga-vergleich__source a:hover { color: var(--color-gold); }
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
[data-theme='dark'] .section-eyebrow { color: var(--color-gold); }
.section-title {
  font-size: var(--text-2xl);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  color: var(--color-navy);
}
[data-theme='dark'] .section-title em { color: var(--color-gold); }
.section-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.55;
  margin-bottom: var(--space-12);
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.crisis-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.crisis-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.crisis-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.crisis-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.crisis-card__source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  letter-spacing: 0.06em;
}
.crisis-card__source a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.crisis-card__source a:hover { color: var(--color-navy); }
[data-theme='dark'] .crisis-card__source a:hover { color: var(--color-gold); }

/* ============================================
   SECTION: GESCHICHTE — Editorial Timeline
   ============================================ */
.geschichte {
  background: var(--color-navy-deep);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.geschichte::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 20%, oklch(from var(--color-gold) l c h / 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 10% 80%, oklch(from var(--color-navy-soft) l c h / 0.4), transparent 60%);
  pointer-events: none;
}
.geschichte > .container { position: relative; z-index: 1; }
.geschichte .section-eyebrow { color: var(--color-gold); }
.geschichte .section-title { color: var(--color-cream); }
.geschichte .section-title em { color: var(--color-gold); }
.geschichte .section-lead { color: oklch(from var(--color-cream) l c h / 0.75); }

.timeline {
  margin-top: var(--space-20);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, oklch(from var(--color-gold) l c h / 0.5) 10%, oklch(from var(--color-gold) l c h / 0.5) 90%, transparent);
}
@media (min-width: 800px) {
  .timeline::before { left: 50%; }
}
.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-6);
  align-items: flex-start;
  position: relative;
}
@media (min-width: 800px) {
  .timeline__item {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  .timeline__item:nth-child(even) { direction: rtl; }
  .timeline__item:nth-child(even) > * { direction: ltr; }
}
.timeline__marker {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-navy-deep);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.timeline__marker::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}
@media (min-width: 800px) {
  .timeline__marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
}
.timeline__content {
  padding-bottom: var(--space-8);
}
@media (min-width: 800px) {
  .timeline__item:nth-child(odd) .timeline__content { padding-right: var(--space-12); text-align: right; }
  .timeline__item:nth-child(even) .timeline__content { padding-left: var(--space-12); }
}
.timeline__year {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-cream);
  line-height: 1.2;
}
.timeline__desc {
  font-size: var(--text-base);
  color: oklch(from var(--color-cream) l c h / 0.7);
  line-height: 1.6;
  max-width: 38ch;
}
@media (min-width: 800px) {
  .timeline__item:nth-child(odd) .timeline__desc { margin-left: auto; }
}

.history-image {
  margin-top: var(--space-20);
  margin-inline: auto;
  max-width: 720px;
  position: relative;
}
.history-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px oklch(0 0 0 / 0.5);
  border: 1px solid oklch(from var(--color-gold) l c h / 0.2);
}
.history-image__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: oklch(from var(--color-cream) l c h / 0.7);
  margin-top: var(--space-4);
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================
   SECTION: VISION
   ============================================ */
.vision {
  background: var(--color-cream);
  color: var(--color-navy-deep);
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .vision { background: var(--color-navy); color: var(--color-cream); }

.vision__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (min-width: 900px) {
  .vision__layout {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-20);
  }
}
.vision__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vision__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.vision__image-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: oklch(from var(--color-navy-deep) l c h / 0.85);
  color: var(--color-cream);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.vision__pillars {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: flex-start;
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
}
.pillar:first-child { border-top: none; padding-top: 0; }
.pillar__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
[data-theme='dark'] .pillar__num { color: var(--color-gold); }
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.pillar__desc {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.55;
}
[data-theme='dark'] .pillar__desc { color: oklch(from var(--color-cream) l c h / 0.75); }

/* ============================================
   SECTION: MODELL (3 Tiers)
   ============================================ */
.modell {
  background: var(--color-bg);
  color: var(--color-text);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 880px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
}

.tier {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.tier--featured {
  background: var(--color-navy);
  color: var(--color-cream);
  border-color: var(--color-navy);
}
.tier--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  background: var(--color-gold);
  color: var(--color-navy-deep);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 600;
}
.tier__name {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.tier--featured .tier__name { color: var(--color-gold); }
.tier__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.tier__price span {
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.tier--featured .tier__price span { color: oklch(from var(--color-cream) l c h / 0.7); }
.tier__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.tier--featured .tier__sub { color: oklch(from var(--color-cream) l c h / 0.8); }
.tier__features {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: var(--space-3);
  flex-grow: 1;
  margin-bottom: var(--space-8);
}
.tier__features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-text);
}
.tier--featured .tier__features li { color: var(--color-cream); }
.tier__features li::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin-top: 6px;
  position: relative;
}
.tier__cta {
  width: 100%;
  text-align: center;
}

/* ============================================
   SECTION: PRÄZEDENZFÄLLE
   ============================================ */
.praezedenz {
  background: var(--color-surface-2);
  color: var(--color-text);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme='dark'] .praezedenz { background: var(--color-surface-offset); }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 700px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .cases-grid { grid-template-columns: repeat(4, 1fr); } }

.case {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
}
.case__country {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  font-weight: 600;
}
[data-theme='dark'] .case__country { color: var(--color-gold); }
.case__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.15;
  color: var(--color-text);
}
.case__metric {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  color: var(--color-navy);
  line-height: 1;
  margin-block: var(--space-2);
  font-variant-numeric: tabular-nums;
}
[data-theme='dark'] .case__metric { color: var(--color-gold); }
.case__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  flex-grow: 1;
}
.case__source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  margin-top: var(--space-3);
}
.case__source a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.case__source a:hover { color: var(--color-navy); }
[data-theme='dark'] .case__source a:hover { color: var(--color-gold); }

/* ============================================
   SECTION: MANIFEST
   ============================================ */
.manifest {
  background: var(--color-navy-deep);
  color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifest::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, oklch(from var(--color-gold) l c h / 0.1), transparent 70%);
  pointer-events: none;
}
.manifest > .container { position: relative; z-index: 1; }
.manifest__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 0.85rem + 1.4vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 38ch;
  margin-inline: auto;
  margin-bottom: var(--space-12);
  text-wrap: balance;
}
.manifest__quote em {
  color: var(--color-gold);
  font-style: italic;
}
.manifest__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: oklch(from var(--color-cream) l c h / 0.75);
  max-width: 50ch;
  margin-inline: auto;
  margin-top: calc(var(--space-12) * -0.5);
  margin-bottom: 0;
}
.manifest__signers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid oklch(from var(--color-cream) l c h / 0.2);
}
.signer {
  text-align: center;
}
.signer__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-cream);
  margin-bottom: var(--space-1);
}
.signer__role {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(from var(--color-cream) l c h / 0.6);
}

/* ============================================
   SECTION: ANMELDEN (Form)
   ============================================ */
.anmelden {
  background: var(--color-cream);
  color: var(--color-navy-deep);
}
[data-theme='dark'] .anmelden { background: var(--color-bg); color: var(--color-text); }

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-12);
  align-items: start;
}
.signup > * { min-width: 0; }
@media (min-width: 880px) { .signup { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-20); } }

.signup__intro h2 { font-size: var(--text-2xl); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: var(--space-6); }
.signup__intro h2 em { font-style: italic; color: var(--color-navy); }
[data-theme='dark'] .signup__intro h2 em { color: var(--color-gold); }
.signup__intro p { font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.55; max-width: 50ch; }

.signup__progress {
  margin-top: var(--space-12);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.signup__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.signup__progress-label strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  font-weight: 400;
}
[data-theme='dark'] .signup__progress-label strong { color: var(--color-gold); }
.signup__bar {
  height: 8px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}
.signup__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-warm));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

ul.phase-list,
.phase-list {
  list-style: none !important;
  padding: 0 !important;
  margin: var(--space-10) 0 0 !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
ul.phase-list li,
.phase-list li {
  list-style: none !important;
  list-style-type: none !important;
}
.phase-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  min-width: 0;
}
.phase-list__num {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.phase-list__val {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}
.phase-list li[data-state="done"] {
  background: var(--color-surface-offset);
  border-color: var(--color-gold);
}
.phase-list li[data-state="done"] .phase-list__num { color: var(--color-gold-deep); }
.phase-list li[data-state="done"] .phase-list__val::before {
  content: "✓ ";
  color: var(--color-gold-deep);
}
.phase-list li[data-state="active"] {
  background: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
}
.phase-list li[data-state="active"] .phase-list__num { color: var(--color-gold); }
.phase-list li[data-state="active"] .phase-list__val { color: var(--color-cream); }
@media (max-width: 600px) {
  .phase-list { grid-template-columns: repeat(2, 1fr); }
}

.form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}
.form__row {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form__row--two { grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row--two { grid-template-columns: 1fr 1fr; gap: var(--space-4); } }
.form__row--two > div { display: grid; gap: var(--space-2); }
.form label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.form input,
.form select {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  font-family: inherit;
}
.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px oklch(from var(--color-gold) l c h / 0.2);
}
.form .tier-radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
@media (min-width: 600px) { .form .tier-radio { grid-template-columns: repeat(3, 1fr); } }
.form .tier-radio label {
  cursor: pointer;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-interactive);
}
.form .tier-radio label:hover { border-color: var(--color-gold); }
.form .tier-radio input { position: absolute; opacity: 0; pointer-events: none; }
.form .tier-radio input:checked + label,
.form .tier-radio label:has(input:checked) {
  background: var(--color-navy);
  color: var(--color-cream);
  border-color: var(--color-navy);
}
.form__amount-display {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: flex-start;
}
@media (min-width: 600px) {
  .form__amount-display { flex-direction: row; justify-content: space-between; align-items: baseline; gap: var(--space-4); }
}
[data-theme='dark'] .form__amount-display { color: var(--color-gold); }
.form__amount-display strong { font-size: var(--text-xl); font-weight: 400; white-space: nowrap; }
.form__amount-display span { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.form__submit {
  width: 100%;
  margin-top: var(--space-6);
}
.form__legal {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  text-align: center;
  line-height: 1.5;
}
.form__legal a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 2px; }
[data-theme='dark'] .form__legal a { color: var(--color-gold); }

.form__success {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form__success .check {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.form__success h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.form__success p { color: var(--color-text-muted); }

/* ============================================
   SECTION: FAQ
   ============================================ */
.faq {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
}
[data-theme='dark'] .faq { background: var(--color-surface-offset); }
.faq__list {
  margin-top: var(--space-10);
  border-top: 1px solid var(--color-divider);
}
.faq__item {
  border-bottom: 1px solid var(--color-divider);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.faq__q:hover { color: var(--color-navy); }
[data-theme='dark'] .faq__q:hover { color: var(--color-gold); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: transform var(--transition-interactive), background var(--transition-interactive);
}
[data-theme='dark'] .faq__icon { color: var(--color-gold); }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--color-gold); color: var(--color-navy-deep); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease-in-out, padding 360ms ease-in-out;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 70ch;
}
.faq__item.open .faq__a {
  max-height: 600px;
  padding-bottom: var(--space-6);
}
.faq__a a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 3px; }
[data-theme='dark'] .faq__a a { color: var(--color-gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-navy-deep);
  color: oklch(from var(--color-cream) l c h / 0.7);
  padding-block: var(--space-20) var(--space-10);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (min-width: 800px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-12); }
}
.footer__brand-block {
  max-width: 36ch;
}
.footer__brand-block .brand { color: var(--color-cream); margin-bottom: var(--space-4); font-size: var(--text-lg); }
.footer__brand-block .brand svg { color: var(--color-gold); }
.footer__brand-block p { font-size: var(--text-sm); line-height: 1.6; color: oklch(from var(--color-cream) l c h / 0.7); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.footer__col a {
  color: oklch(from var(--color-cream) l c h / 0.7);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__col a:hover { color: var(--color-gold); }
.footer__bottom {
  border-top: 1px solid oklch(from var(--color-cream) l c h / 0.15);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: oklch(from var(--color-cream) l c h / 0.5);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom a:hover { color: var(--color-gold); }
.footer__schlachtruf {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-gold);
  letter-spacing: 0;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 90;
  display: none;
  padding: var(--space-3) var(--space-5);
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 16px 40px oklch(from var(--color-navy-deep) l c h / 0.3);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ============================================
   REVEALS
   ============================================ */
.reveal { opacity: 0; transition: opacity 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; }

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

/* ============================================
   MODELL — PILLAR SECTIONS (Mix-Modell)
   ============================================ */
.pillar-section {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid oklch(from var(--color-navy-deep) l c h / 0.12);
}
[data-theme="dark"] .pillar-section {
  border-top-color: oklch(from var(--color-cream) l c h / 0.12);
}
.pillar-section:first-of-type {
  margin-top: var(--space-10);
  padding-top: 0;
  border-top: none;
}
.pillar-section--invest {
  background: linear-gradient(180deg, transparent 0%, oklch(from var(--color-navy-deep) l c h / 0.04) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-6) var(--space-10);
  margin-top: var(--space-12);
  border-top: none;
}
[data-theme="dark"] .pillar-section--invest {
  background: linear-gradient(180deg, transparent 0%, oklch(from var(--color-cream) l c h / 0.05) 100%);
}
.pillar-section__head {
  max-width: 760px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.pillar-section__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.pillar-section__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-navy-deep);
  margin: 0 0 var(--space-4);
}
[data-theme="dark"] .pillar-section__title {
  color: var(--color-cream);
}
.pillar-section__title em {
  font-style: italic;
  color: var(--color-gold);
}
.pillar-section__lead {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  color: oklch(from var(--color-navy-deep) l c h / 0.78);
  margin: 0;
}
[data-theme="dark"] .pillar-section__lead {
  color: oklch(from var(--color-cream) l c h / 0.8);
}

/* ============================================
   INVESTOR CARDS (Säule 2)
   ============================================ */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
@media (max-width: 900px) {
  .invest-grid { grid-template-columns: 1fr; }
}
.invest-card {
  background: var(--color-cream);
  border: 1px solid oklch(from var(--color-navy-deep) l c h / 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
[data-theme="dark"] .invest-card {
  background: oklch(from var(--color-navy-deep) calc(l + 0.05) c h);
  border-color: oklch(from var(--color-cream) l c h / 0.12);
}
.invest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px oklch(from var(--color-navy-deep) l c h / 0.15);
}
.invest-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.4rem 0.85rem;
  background: oklch(from var(--color-navy-deep) l c h / 0.08);
  color: var(--color-navy-deep);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
[data-theme="dark"] .invest-card__badge {
  background: oklch(from var(--color-cream) l c h / 0.1);
  color: var(--color-cream);
}
.invest-card__badge--gold {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}
[data-theme="dark"] .invest-card__badge--gold {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}
.invest-card__price {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--color-navy-deep);
  line-height: 1;
  margin-bottom: var(--space-1);
}
[data-theme="dark"] .invest-card__price { color: var(--color-cream); }
.invest-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  color: oklch(from var(--color-navy-deep) l c h / 0.6);
}
[data-theme="dark"] .invest-card__price span {
  color: oklch(from var(--color-cream) l c h / 0.6);
}
.invest-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: oklch(from var(--color-navy-deep) l c h / 0.7);
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
}
[data-theme="dark"] .invest-card__sub {
  color: oklch(from var(--color-cream) l c h / 0.7);
}
.invest-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex: 1;
}
.invest-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: oklch(from var(--color-navy-deep) l c h / 0.85);
  padding-left: var(--space-4);
  position: relative;
  margin-bottom: var(--space-3);
}
[data-theme="dark"] .invest-card__features li {
  color: oklch(from var(--color-cream) l c h / 0.85);
}
.invest-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
}

/* ============================================
   FINANZ-FRAME (Zahlen-Tafel)
   ============================================ */
.finanz-frame {
  background: var(--color-navy-deep);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
}
.finanz-frame__head {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  margin-bottom: var(--space-6);
  text-align: center;
  color: var(--color-gold);
  font-weight: 400;
}
.finanz-frame__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (max-width: 900px) {
  .finanz-frame__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
.finanz-frame__cell {
  text-align: center;
  padding: var(--space-3) var(--space-2);
  border-right: 1px solid oklch(from var(--color-cream) l c h / 0.15);
}
.finanz-frame__cell:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .finanz-frame__cell {
    border-right: none;
    border-bottom: 1px solid oklch(from var(--color-cream) l c h / 0.15);
    padding-bottom: var(--space-4);
  }
  .finanz-frame__cell:nth-last-child(-n+2) { border-bottom: none; }
}
.finanz-frame__cell--total .finanz-frame__num {
  color: var(--color-gold);
}
.finanz-frame__num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
  color: var(--color-cream);
}
.finanz-frame__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(from var(--color-cream) l c h / 0.7);
  font-weight: 500;
}
.finanz-frame__note {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  color: oklch(from var(--color-cream) l c h / 0.55);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ============================================
   PALMARES — Trophäen-Übersicht
   ============================================ */
.palmares {
  margin: var(--space-10) 0 var(--space-12);
  background: var(--color-navy-deep);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding-block: 4.5rem 2.5rem;
  padding-inline: var(--space-7);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .palmares { padding-block: 3.5rem 2rem; padding-inline: var(--space-6); }
}
.palmares::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, oklch(from var(--color-gold) calc(l + 0.05) c h) 100%);
}
.palmares__head {
  text-align: center;
  margin-bottom: var(--space-7);
}
.palmares__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.palmares__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: var(--color-cream);
  letter-spacing: -0.01em;
}
.palmares__title em {
  font-style: italic;
  color: var(--color-gold);
}
.palmares__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (max-width: 1000px) {
  .palmares__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (max-width: 560px) {
  .palmares__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.palmares__cell {
  padding: var(--space-4) var(--space-2);
  border-right: 1px solid oklch(from var(--color-cream) l c h / 0.15);
}
.palmares__cell:last-child { border-right: none; }
@media (max-width: 1000px) {
  .palmares__cell {
    border-right: none;
    padding: var(--space-3) 0;
    border-bottom: 1px solid oklch(from var(--color-cream) l c h / 0.12);
  }
  .palmares__cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .palmares__cell:nth-last-child(-n+2) {
    border-bottom: 1px solid oklch(from var(--color-cream) l c h / 0.12);
  }
  .palmares__cell:last-child { border-bottom: none; }
}
.palmares__num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.palmares__type {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.palmares__years {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  line-height: 1.7;
  color: oklch(from var(--color-cream) l c h / 0.7);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.palmares__note {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  color: oklch(from var(--color-cream) l c h / 0.55);
  text-align: center;
  margin: var(--space-5) 0 0;
  letter-spacing: 0.02em;
  font-style: italic;
}
.palmares__note a {
  color: oklch(from var(--color-cream) l c h / 0.75);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--color-gold) l c h / 0.5);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}
.palmares__note a:hover { color: var(--color-gold); }

/* ============================================
   TIMELINE HEAD
   ============================================ */
.timeline-head {
  text-align: center;
  margin: var(--space-12) 0 var(--space-10);
}
.timeline-head__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.timeline-head__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
  color: var(--color-navy-deep);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .timeline-head__title { color: var(--color-cream); }
.timeline-head__title em {
  font-style: italic;
  color: var(--color-gold);
}

/* ========================= UMFRAGE / POLL ========================= */
.umfrage {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}
.umfrage .section-title { margin-bottom: var(--space-4); }
.umfrage .section-lead { max-width: 720px; margin-bottom: var(--space-12); }

.poll {
  background: var(--color-navy);
  color: var(--color-cream);
  border-radius: 6px;
  padding: clamp(1.75rem, 1rem + 2vw, 3rem);
  max-width: 920px;
  box-shadow: 0 24px 60px -32px oklch(from var(--color-navy) l c h / 0.4);
}
.poll__head {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.4rem);
  color: var(--color-gold);
  margin-bottom: var(--space-8);
  letter-spacing: 0.005em;
}
.poll__bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.poll__row {
  display: grid;
  grid-template-columns: 1fr 2.6fr auto;
  align-items: center;
  gap: var(--space-5);
}
.poll__label {
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: oklch(from var(--color-cream) l c h / 0.92);
  line-height: 1.35;
}
.poll__track {
  position: relative;
  height: 14px;
  background: oklch(from var(--color-cream) l c h / 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.poll__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: oklch(from var(--color-cream) l c h / 0.55);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.poll__row--primary .poll__fill {
  background: var(--color-gold);
  box-shadow: 0 0 24px -4px oklch(from var(--color-gold) l c h / 0.6);
}
.poll__row--primary .poll__label {
  color: var(--color-cream);
  font-weight: 500;
}
.poll__row--primary .poll__value {
  color: var(--color-gold);
  font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
}
.poll__value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.9rem + 0.8vw, 1.5rem);
  font-variant-numeric: tabular-nums;
  color: oklch(from var(--color-cream) l c h / 0.85);
  min-width: 4ch;
  text-align: right;
}
.poll.reveal.visible .poll__fill {
  width: var(--pct);
}
.poll__source {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid oklch(from var(--color-cream) l c h / 0.15);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(from var(--color-cream) l c h / 0.6);
}
.poll__source a {
  color: oklch(from var(--color-cream) l c h / 0.85);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--color-gold) l c h / 0.5);
  text-underline-offset: 3px;
}
.poll__source a:hover { color: var(--color-gold); }

@media (max-width: 640px) {
  .poll__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label value"
      "track track";
    gap: var(--space-2) var(--space-4);
  }
  .poll__label { grid-area: label; }
  .poll__value { grid-area: value; }
  .poll__track { grid-area: track; }
}

/* Form success — multi-paragraph layout */
.form__success-lead {
  margin-top: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.5;
}
.form__success-hint {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: oklch(from var(--color-navy) l c h / 0.05);
  border-left: 3px solid var(--color-gold);
  border-radius: 4px;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.form__success-hint a {
  color: var(--color-navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 2px;
}
.form__success-outro {
  margin-top: var(--space-5);
  font-size: var(--text-base);
}

/* ========================= HYPOTHESEN ========================= */
.hypothesen {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}
.hypothesen .section-title { margin-bottom: var(--space-4); }
.hypothesen .section-lead {
  max-width: 720px;
  margin-bottom: var(--space-16);
}
.hypo-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
}
.hypo {
  background: oklch(from var(--color-cream) calc(l + 0.025) c h);
  border: 1px solid oklch(from var(--color-navy) l c h / 0.08);
  border-radius: 8px;
  padding: var(--space-10) var(--space-8) var(--space-10);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.hypo:hover {
  transform: translateY(-2px);
  border-color: oklch(from var(--color-gold) l c h / 0.4);
  box-shadow: 0 18px 40px -28px oklch(from var(--color-navy) l c h / 0.45);
}
.hypo__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 1.4rem + 1.4vw, 2.6rem);
  color: var(--color-gold);
  line-height: 1.15;
  display: block;
  margin-bottom: var(--space-6);
  letter-spacing: 0.005em;
  padding-top: 0.1em;
}
.hypo__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 0.7vw, 1.65rem);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.hypo__desc {
  font-size: var(--text-base);
  line-height: 1.55;
  color: oklch(from var(--color-navy) l c h / 0.78);
  margin: 0;
}
[data-theme='dark'] .hypo {
  background: oklch(from var(--color-navy) calc(l + 0.04) c h);
  border-color: oklch(from var(--color-cream) l c h / 0.12);
}
[data-theme='dark'] .hypo__title { color: var(--color-cream); }
[data-theme='dark'] .hypo__desc { color: oklch(from var(--color-cream) l c h / 0.78); }

/* ========================= ARCHITEKTUR ========================= */
.architektur {
  margin-top: var(--space-12);
  margin-bottom: var(--space-16);
  padding: var(--space-12) var(--space-10);
  background: var(--color-navy-deep);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .architektur { padding: var(--space-10) var(--space-6); }
}
.architektur::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.architektur__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-12); }
.architektur__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.architektur__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.3rem + 1.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 var(--space-5);
  color: var(--color-cream);
}
.architektur__title em {
  color: var(--color-gold);
  font-style: italic;
}
.architektur__lead {
  font-size: var(--text-base);
  line-height: 1.65;
  color: oklch(from var(--color-cream) l c h / 0.78);
  margin: 0;
}

.arch-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 820px;
  margin: 0 auto;
}
.arch-level {
  background: oklch(from var(--color-cream) l c h / 0.04);
  border: 1px solid oklch(from var(--color-cream) l c h / 0.12);
  border-radius: 8px;
  padding: var(--space-7) var(--space-8) var(--space-7) var(--space-9);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5) var(--space-7);
  align-items: start;
}
.arch-level--mid {
  background: oklch(from var(--color-cream) l c h / 0.07);
  border-color: oklch(from var(--color-gold) l c h / 0.35);
}
.arch-level--bottom {
  background: oklch(from var(--color-cream) l c h / 0.04);
}
.arch-level__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 0.8vw, 2rem);
  color: var(--color-gold);
  line-height: 1;
  grid-row: 1 / 3;
}
.arch-level__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.4vw, 1.3rem);
  line-height: 1.3;
  color: var(--color-cream);
  font-weight: 500;
}
.arch-level__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: oklch(from var(--color-cream) l c h / 0.78);
  margin: 0;
  grid-column: 2;
}
.arch-arrow {
  text-align: center;
  font-size: 1.4rem;
  color: oklch(from var(--color-gold) l c h / 0.6);
  line-height: 1;
}

.arch-vertrag {
  margin-top: var(--space-10);
  max-width: 820px;
  margin-inline: auto;
  padding: var(--space-8) var(--space-8);
  background: oklch(from var(--color-gold) l c h / 0.1);
  border: 1px solid oklch(from var(--color-gold) l c h / 0.4);
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
}
.arch-vertrag__icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1;
  padding-top: 0.15em;
}
.arch-vertrag__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 0.5vw, 1.4rem);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.arch-vertrag__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: oklch(from var(--color-cream) l c h / 0.88);
  margin: 0;
}
.arch-vertrag__desc strong { color: var(--color-cream); font-weight: 600; }

.arch-grants {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 820px;
  margin-inline: auto;
}
.arch-grant {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5) var(--space-6);
  background: oklch(from var(--color-cream) l c h / 0.04);
  border: 1px solid oklch(from var(--color-gold) l c h / 0.18);
  border-radius: var(--radius-md, 12px);
}
.arch-grant__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: oklch(from var(--color-gold) l c h / 0.18);
  color: var(--color-gold);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}
.arch-grant p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: oklch(from var(--color-cream) l c h / 0.82);
  margin: 0;
}
.arch-grant p strong {
  display: block;
  color: var(--color-cream);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: var(--text-base);
}

@media (max-width: 540px) {
  .arch-level { grid-template-columns: 1fr; gap: var(--space-3); padding: var(--space-6); }
  .arch-level__num { grid-row: auto; }
  .arch-level__desc { grid-column: 1; }
  .arch-grant { padding: var(--space-4) var(--space-5); gap: var(--space-4); }
  .arch-vertrag { grid-template-columns: 1fr; gap: var(--space-4); padding: var(--space-7) var(--space-6); }
}

/* ============================================
   CLOUDFLARE TURNSTILE
   ============================================ */
.form__turnstile {
  margin: 1.25rem 0 0.5rem;
  display: flex;
  justify-content: center;
  min-height: 65px; /* Reserviert Platz, vermeidet Layout-Shift beim Laden */
}
@media (max-width: 480px) {
  .form__turnstile { min-height: 65px; }
}

/* ============== BEKANNT AUS (Auto-Marquee-Slider) ============== */
.bekannt-aus {
  background: var(--c-cream, #f6f3ec);
  padding: var(--space-10, 40px) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.bekannt-aus__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6, 24px);
}
.bekannt-aus__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}
.bekannt-aus__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Edge-Fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.bekannt-aus__marquee.is-draggable {
  cursor: grab;
  touch-action: pan-y; /* erlaubt vertikales Page-Scroll, blockt horizontale Gesten für uns */
  user-select: none;
  -webkit-user-select: none;
}
.bekannt-aus__marquee.is-dragging {
  cursor: grabbing;
}
.bekannt-aus__marquee.is-dragging .bekannt-aus__track a {
  pointer-events: none; /* während Drag keine Link-Clicks auslösen */
}
.bekannt-aus__marquee.is-draggable img,
.bekannt-aus__marquee.is-draggable a {
  -webkit-user-drag: none;
  user-drag: none;
}
.bekannt-aus__marquee.is-draggable a {
  cursor: pointer;
}
.bekannt-aus__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: bekannt-marquee 36s linear infinite;
  will-change: transform;
}
.bekannt-aus__marquee:hover .bekannt-aus__track,
.bekannt-aus__marquee:focus-within .bekannt-aus__track {
  animation-play-state: paused;
}
.bekannt-aus__track li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.bekannt-aus__track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 220ms ease, transform 220ms ease;
}
.bekannt-aus__track a:hover,
.bekannt-aus__track a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}
.bekannt-aus__track img {
  height: 56px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}
/* Per-Logo Feintuning (Desktop) */
.bekannt-aus__track img[alt="Blick"],
.bekannt-aus__track a[aria-label="Artikel im Blick"] img { height: 54px; }
.bekannt-aus__track img[alt="watson"],
.bekannt-aus__track a[aria-label="Artikel auf watson"] img { height: 46px; }
.bekannt-aus__track img[alt="blue News"],
.bekannt-aus__track a[aria-label="Artikel auf Bluewin / blue News"] img { height: 60px; }
.bekannt-aus__track img[alt="Zürich24"],
.bekannt-aus__track a[aria-label="Artikel auf Zürich24"] img { height: 64px; }
.bekannt-aus__track img[alt="Züriunterland24"],
.bekannt-aus__track a[aria-label="Artikel auf Züriunterland24"] img { height: 58px; }
.bekannt-aus__track img[alt="Goldküste24"],
.bekannt-aus__track a[aria-label="Artikel auf Goldküste24"] img { height: 58px; }

@keyframes bekannt-marquee {
  from { transform: translate3d(0, 0, 0); }
  /* Track enthält 2 identische Sets — bei -50% landet Set 2 exakt am Anfang */
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Tablet */
@media (max-width: 900px) {
  .bekannt-aus__track { gap: 56px; animation-duration: 30s; }
  .bekannt-aus__track img { height: 46px; max-width: 220px; }
  .bekannt-aus__track a[aria-label="Artikel im Blick"] img { height: 44px; }
  .bekannt-aus__track a[aria-label="Artikel auf watson"] img { height: 38px; }
  .bekannt-aus__track a[aria-label="Artikel auf Bluewin / blue News"] img { height: 50px; }
  .bekannt-aus__track a[aria-label="Artikel auf Zürich24"] img { height: 54px; }
  .bekannt-aus__track a[aria-label="Artikel auf Züriunterland24"] img { height: 48px; }
  .bekannt-aus__track a[aria-label="Artikel auf Goldküste24"] img { height: 48px; }
}

/* Mobile */
@media (max-width: 600px) {
  .bekannt-aus { padding: var(--space-8, 32px) 0; }
  .bekannt-aus__marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  }
  .bekannt-aus__track { gap: 44px; animation-duration: 26s; }
  .bekannt-aus__track img { height: 40px; max-width: 180px; }
  .bekannt-aus__track a[aria-label="Artikel im Blick"] img { height: 38px; }
  .bekannt-aus__track a[aria-label="Artikel auf watson"] img { height: 32px; }
  .bekannt-aus__track a[aria-label="Artikel auf Bluewin / blue News"] img { height: 42px; }
  .bekannt-aus__track a[aria-label="Artikel auf Zürich24"] img { height: 46px; }
  .bekannt-aus__track a[aria-label="Artikel auf Züriunterland24"] img { height: 40px; }
  .bekannt-aus__track a[aria-label="Artikel auf Goldküste24"] img { height: 40px; }
}

/* Respektiere User-Präferenz */
@media (prefers-reduced-motion: reduce) {
  .bekannt-aus__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 32px 40px;
  }
  .bekannt-aus__marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
