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

/* ══════════════════════════════════════════════════════════════
   HOMESCREEN — parallax landscape switcher
   Pixel values from the 402×874 Figma/prototype frame converted
   to responsive units:
     Hills layer:  left=-862px → calc(-862/402*100vw)
                   top=40px    → calc(40/874*100dvh)
                   width=2120px → calc(2120/402*100vw)
     Compass pos:  left=-166px → calc(-166/402*100vw)
                   top=700px   → calc(700/874*100dvh)
                   width=735px → calc(735/402*100vw)
     Transform-origin (% of full-screen element):
       hills  → 50% 68.65%  (600/874)
       compass → 50% 122.1% (1067/874)
══════════════════════════════════════════════════════════════ */

#hs {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #F7BCAD;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.hs-hills {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hs-layer {
  position: absolute;
  left: 50%;
  top: 0;

  width: auto;
  height: 100vh;

  transform: translateX(-50%);

  pointer-events: none;
  user-select: none;
}

#hs-world {
  position: absolute;
  inset: 0;
  will-change: transform;
  pointer-events: none;
  z-index: 5;
  color: rgba(255,255,255,0.94);
}

#hs-compass-pos {
  position: absolute;
  left:  0;
  top:   calc(100dvh - 100dvw/2);
  width: 100%;
  animation: hs-bob 7s ease-in-out infinite;
  pointer-events: none;
}
/*#hs-compass-pos {
  position: absolute;
  left:  calc(-166 / 402 * 100vw);
  top:   calc(700  / 874 * 100dvh);
  width: calc(735  / 402 * 100vw);
  animation: hs-bob 7s ease-in-out infinite;
  pointer-events: none;
}*/
#hs-compass-pos svg { display: block; width: 100%; }

@keyframes hsx-bob {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) { #hs-compass-pos { animation: none; } }

/* Persistent header */
#hs-wordmark {
  position: absolute;
  top:   calc(19  / 874 * 100dvh);
  right: calc(52  / 402 * 100vw);
  width: calc(205 / 402 * 100vw);
  text-align: right;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(9px, 3.2vw, 13px);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: #fff;
  white-space: pre-line;
  z-index: 8;
}

#hs-logo {
  position: absolute;
  top:   calc(21 / 874 * 100dvh);
  right: calc(20 / 402 * 100vw);
  width:  clamp(18px, 6.5vw, 26px);
  height: clamp(18px, 6.5vw, 26px);
  color: #fff;
  z-index: 8;
}

/* Home content */
#hs-home {
  position: absolute;
  inset: 0;
  z-index: 7;
  transition: opacity 0.38s ease;
  pointer-events: none; /* children opt in */
}
#hs-home.hs-gone { opacity: 0; }

/* Diamond pager + label */
#hs-label-row {
  position: absolute;
  top:  calc(140 / 874 * 100dvh);
  left: calc(20  / 402 * 100vw);
  width: calc(362 / 402 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  display: none;
}

#hs-pager {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hs-pdot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.4px rgba(0,0,0,0.92);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s;
}
.hs-pdot.hs-on { background: #000; }
.hs-pdot:nth-child(1) { top: 0;   left: 50%; margin-left: -4.5px; }
.hs-pdot:nth-child(2) { right: 0; top:  50%; margin-top:  -4.5px; }
.hs-pdot:nth-child(3) { bottom:0; left: 50%; margin-left: -4.5px; }
.hs-pdot:nth-child(4) { left: 0;  top:  50%; margin-top:  -4.5px; }

#hs-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 3.2vw, 13px);
  letter-spacing: 0.18em;
  color: #000;
}



/* Headline */
#hs-headline {
  position: absolute;
  top:  calc(282 / 874 * 100dvh);
  left: calc(20  / 402 * 100vw);
  width: calc(362 / 402 * 100vw);
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 9vw, 36px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0;
}
#hs-loc { transition: color 0.2s linear; }

/* CTA */
#hs-cta {
  position: absolute;
  top:  calc(530 / 874 * 100dvh);
  left: 50%;
  transform: translateX(-50%);
  width:  clamp(160px, 54.7vw, 220px);
  height: clamp(40px,  5.8dvh, 51px);
  border: none;
  border-radius: 84px;
  background: #19513c;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 4.2vw, 17px);
  letter-spacing: 0.06em;
  cursor: pointer;
  z-index: 9;
  pointer-events: auto;
  box-shadow: 0 2px 3px rgba(0,0,0,0.28);
  transition: background 0.2s linear, box-shadow 0.2s ease;
}
#hs-cta:hover  { box-shadow: 0 8px 18px -6px rgba(0,0,0,0.35), 0 2px 4px rgba(0,0,0,0.2); }
#hs-cta:active { transform: translateX(-50%) scale(0.97); }

/* Right-edge scroll dots */
#hs-scrolldots {
  position: absolute;
  top:   calc(405 / 874 * 100dvh);
  right: calc(11  / 402 * 100vw);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9;
}

.hs-sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.4px rgba(255,255,255,0.92);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s, transform 0.2s;
}
.hs-sdot.hs-on { background: #fff; transform: scale(1.25); }

/* Footer direction label */
#hs-footer {
  position: absolute;
  top: calc(827 / 878 * 100dvh);
  left: calc(20 / 402 * 100vw);
  width: calc(362 / 402 * 100vw);
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(9px, 3.2vw, 13px);
  color: rgba(0,0,0,0.7);
  text-decoration: underline;
}



:root {
  --ich:  #3872a6;
  --wir:  #c977b0;
  --fact: #4a8d67;
  --act:  #c06240;
  --bg:   #f2f0ef;
  --fg:   #1A1916;
}

html, body { height: 100%; overflow: hidden; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  touch-action: none;
}

/* ── FIXED STAGE ── */
#stage {
  position: fixed;
  inset: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ══════════════════════════════════════════════
   NEEDLE AREA
   — shows only the upper half of the needle
     (tip pointing upward) above the content.
   — The pivot/base sits right at the bottom
     of this area, hidden by overflow: hidden.
══════════════════════════════════════════════ */
/* Compass needle area — hidden; compass lives inside #panel-fact */
#needle-area { display: none; }
#needle-svg  { display: none; }

/* ── SEPARATOR ── */
.sep {
  height: 1px;
  background: rgba(26,25,22,0.1);
  flex-shrink: 0;
  display: none;
}

/* ── DIRECTION BAR ── */
#dir-bar { display: none; }

#dir-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

#dir-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #3872a6;
}

#dir-count {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(26,25,22,0.25);
}

/* ══ PANELS ══ */
#panels {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#panels::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  z-index: 20;
  pointer-events: none;
}

.panel {
  position: absolute;
  inset: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

.panel.active {
  opacity: 1;
  pointer-events: auto;
}

.panel::after {
  content: attr(data-char);
  position: absolute;
  right: -2vw;
  bottom: -3vw;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(100px, 30vw, 240px);
  font-weight: 600;
  line-height: 1;
  color: currentColor;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.panel-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.panel-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(26,25,22,0.35);
  margin-bottom: 12px;
  text-align: center;
}

.panel-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(40px, 12vw, 100px);
  font-weight: 600;
  line-height: 0.87;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: currentColor;
}

.panel-desc {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(26,25,22,0.48);
  font-weight: 300;
  max-width: 320px;
  margin-bottom: 24px;
}

.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid currentColor;
  opacity: 0.55;
}

#panel-ich  { color: var(--ich);  }
#panel-wir  { color: var(--wir);  }
#panel-fact { color: var(--fact); }
#panel-act  { color: var(--act);  }

/* ── NAV DOTS ── */
#dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 300;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.75);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.dot.active {
  background: white;
  border-color: white;
  transform: scale(1.4);
}

/* ── PROGRESS BAR ── */
#progress {
  position: fixed;
  bottom: 0; left: 0;
  height: 2px;
  width: 25%;
  background: #3872a6;
  z-index: 500;
  pointer-events: none;
  transition: background 0.4s;
}

/* ── SCROLL HINT ── */
#hint {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(26,25,22,0.3);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.8s;
}

.hint-line {
  width: 1px;
  height: 28px;
  background: rgba(26,25,22,0.28);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; transform: scaleY(0.4) translateY(-4px); }
  50%       { opacity: 0.7;  transform: scaleY(1) translateY(0); }
}
/* ══════════════════════════════════════════════
   ICH SUBPAGE
══════════════════════════════════════════════ */
#ich-page {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: var(--bg);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
  touch-action: pan-y;
}

/* sticky header */
#ich-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  background: var(--bg);
  border-bottom: 1px solid rgba(26,25,22,0.08);
  flex-shrink: 0;
}

#ich-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(26,25,22,0.5);
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
#ich-back:hover { color: var(--fg); }

#ich-header-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--page-color);
}

/* scrollable content */
#ich-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y; /* allow vertical scroll regardless of body touch-action:none */
}

/* base section */
.ich-section {
  padding: 48px 24px;
  position: relative;
}

.ich-section + .ich-section {
  /* border-top: 1px solid rgba(26,25,22,0.07); */
}

.ich-section a{
  color:#18513C;
}

.ich-section a:hover, .ich-section a:active{
  color:#4B8D67;
}


/* HERO */
.ich-hero {
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--page-color);
  padding: 56px 28px 48px;
  overflow: hidden;
}

.ich-kicker {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.ich-hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(55px, 16vw, 124px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
}

.ich-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 36px;
}

.ich-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ich-scroll-line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  animation: line-pulse 2s ease-in-out infinite;
}

@keyframes line-pulse {
  0%, 100% { transform: scaleX(0.4); opacity: 0.3; }
  50%       { transform: scaleX(1);   opacity: 0.8; }
}

/* MODULE COMMON */
.ich-module { background: var(--bg); }

.ich-module-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--page-color);
  margin-bottom: 10px;
}

.ich-module-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(33px, 10.5vw, 63px);
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1;
}

.ich-module-desc {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(26,25,22,0.7);
  font-weight: 300;
  margin-bottom: 14px;
}

.ich-module-desc-small{
  font-size: 12px;
  line-height: 1.72;
  color: rgba(26,25,22,0.55);
  font-weight: 300;
  margin-top: 28px;
}

/* cards (module 1) */
.ich-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ich-card {
  background: color-mix(in srgb, var(--page-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--page-color) 30%, transparent);
  border-radius: 14px;
  padding: 20px;
}

.ich-card-icon {
  font-size: 20px;
  color: var(--page-color);
  margin-bottom: 10px;
  line-height: 1;
}

.ich-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 7px;
}

.ich-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26,25,22,0.55);
  font-weight: 300;
}

/* value chips (module 2) */
.ich-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.ich-value-chip {
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1.5px solid color-mix(in srgb, var(--page-color) 40%, transparent);
  color: rgba(26,25,22,0.65);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  user-select: none;
}

.ich-value-chip.selected {
  background: var(--page-color);
  color: white;
  border-color: var(--page-color);
}

.ich-values-hint {
  font-size: 12px;
  color: rgba(26,25,22,0.38);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* strength bars (module 3) */
.ich-strength-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

/* ── Interactive strength bar row ── */
.ich-strength-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  user-select: none;
}

.sbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sbar-label {
  font-size: 13px;
  color: rgba(26,25,22,0.65);
  font-weight: 600;
}

.sbar-pct {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--page-color);
  letter-spacing: 0.5px;
  min-width: 34px;
  text-align: right;
  transition: opacity 0.2s;
}

/* Track — full width, acts as the hit area */
.sbar-track {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none; /* prevent scroll interference */
}

/* the dim runway */
.sbar-track::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: rgba(26,25,22,0.08);
  border-radius: 2px;
}

/* the coloured fill */
.sbar-fill {
  position: absolute;
  left: 0;
  height: 4px;
  background: var(--page-color);
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* the draggable thumb — sits at the right edge of the fill */
.sbar-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--page-color);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transform: translateX(-50%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  pointer-events: none;
}

.sbar-track.dragging .sbar-thumb {
  transform: translateX(-50%) scale(1.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

/* subtle pulse on untouched bars to signal interactivity */
.sbar-track.pristine .sbar-thumb {
  animation: sbar-pulse 2.2s ease-in-out infinite;
}

@keyframes sbar-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 0 0px color-mix(in srgb, var(--page-color) 40%, transparent); }
  50%       { box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 0 5px color-mix(in srgb, var(--page-color) 0%, transparent); }
}

/* questions (module 4) */
.ich-questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.ich-question {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ich-q-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--page-color);
  letter-spacing: 1px;
  flex-shrink: 0;
  line-height: 1.72;
  width: 18px;
}

.ich-question p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(26,25,22,0.7);
  font-weight: 300;
}

.ich-question em { font-style: italic; color: var(--fg); }

/* footer CTA */
.ich-footer {
  background: #0d364f;
  padding: 52px 28px 64px;
}

.ich-footer-inner { max-width: 320px; }

.ich-footer-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,237,230,0.35);
  margin-bottom: 10px;
}

.ich-footer-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(39px, 11vw, 61px);
  font-weight: 600;
  color: #F0EDE6;
  line-height: 1.05;
  margin-bottom: 10px;
}

.ich-footer-sub-wrapper{
  text-align: center;
  margin-top: 8vh;
}

.ich-footer-sub {
  font-size: 15px;
  color: rgba(240,237,230,0.45);
  font-weight: 300;
  margin-bottom: 28px;
}

.ich-cta {
  background: var(--page-color);
  color: white;
  border: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ich-cta:hover { opacity: 0.85; }
/* ── shared subpage shell (wir / fact / act) ── */
#wir-page, #fact-page, #act-page {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: var(--bg);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
  touch-action: pan-y;
}

.sub-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  background: var(--bg);
  border-bottom: 1px solid rgba(26,25,22,0.08);
  flex-shrink: 0;
}

.sub-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(26,25,22,0.5);
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.sub-back:hover { color: var(--fg); }

.sub-header-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--page-color);
}

.sub-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.sub-close { cursor: pointer; }
/* ══ ICH COLLAGE SECTION ══ */
.ich-collage-wrap {
  background: #F5F2EC;
  /* tall enough to scroll through */
  min-height: 240vh;
  position: relative;
}

/* sticky inner that keeps the stage centred on screen while user scrolls */
.ich-collage-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  pointer-events: none;
}

.collage-intro {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg);
  text-align: center;
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ich-collage-wrap.revealed .collage-intro { opacity: 1; }

.collage-caption {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,25,22,0.35);
  text-align: center;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}

.ich-collage-wrap.revealed .collage-caption { opacity: 1; }

/* the stage holds all cutout pieces with absolute positioning */
#collage-stage {
  position: relative;
  width: 300px;
  height: 330px;
  flex-shrink: 0;
}

/* ── Cutout piece — flat, no shadow, hard edges ── */
.col-photo {
  position: absolute;
  will-change: transform, opacity;
  overflow: hidden;
}

/* individual sizes + positions */
#cp1 { left: 0;     top: 0;     width: 154px; height: 188px; }
#cp2 { left: 158px; top: 0;     width: 142px; height: 94px;  }
#cp3 { left: 0;     top: 204px; width: 102px; height: 102px; border-radius: 50%; }
#cp4 { left: 158px; top: 108px; width: 142px; height: 118px; border: 3px solid #1A1916; }
#cp5 { left: 66px;  top: 92px;  width: 136px; height: 136px; z-index: 4; }
/* ══ WIR CARD DECK ══ */

#wir-deck-wrap,
#act-deck-wrap,
#fact-deck-wrap,
#kiste-deck-wrap,
#macht-deck-wrap { position: relative; background: #f2f0ef; }

#wir-deck-sticky,
#act-deck-sticky,
#fact-deck-sticky,
#kiste-deck-sticky,
#macht-deck-sticky {
  position: sticky;
  top: 0;
  height: calc(100dvh - 62px);
  padding: 6vh 20px 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  clip-path: inset(0 0 -60px 0);
  justify-content: center;
}

.deck-kicker {
  font-size: clamp(20px, 12vw, 40px);
  font-weight: 600;
  margin:0 24px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

#wir-deck,
#act-deck,
#fact-deck,
#kiste-deck,
#macht-deck { position: relative; flex: 1; overflow: visible; }

/* WRAP — translated by scroll */
.wc-wrap {
  position: absolute;
  left: 0; right: 0; top: 0;
  will-change: transform;
  perspective: 1000px;
}
#wca-wrap { z-index: 4; }
#wcb-wrap { z-index: 3; }
#wcc-wrap { z-index: 2; }
#wcd-wrap { z-index: 1; }
#aca-wrap { z-index: 6; }
#acb-wrap { z-index: 5; }
#fca-wrap { z-index: 5; }
#fcb-wrap { z-index: 4; }
#fcc-wrap { z-index: 3; }
#fcd-wrap { z-index: 2; }
#fce-wrap { z-index: 1; }
#ka-wrap  { z-index: 6; }
#kb-wrap  { z-index: 5; }
#kc-wrap  { z-index: 4; }
#kd-wrap  { z-index: 3; }
#ke-wrap  { z-index: 2; }
#kf-wrap  { z-index: 1; }
#acc-wrap { z-index: 4; }
#acd-wrap { z-index: 3; }
#ace-wrap { z-index: 2; }
#acf-wrap { z-index: 1; }
#mc1-wrap { z-index: 4; }
#mc2-wrap { z-index: 3; }
#mc3-wrap { z-index: 2; }
#mc4-wrap { z-index: 1; }

/* CARD — rotated by click flip */
.wir-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

/* FACE */
.wc-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(255,255,255,0.2), 0 1px 4px rgba(255,255,255,0.07);
}

.wc-illustration {
  padding-top: 5%;
  width: 60%; 
  height: auto;
}

.wc-front { background: white; }

.wc-back {
  transform: rotateY(180deg);
  padding: 32px 24px 28px;
  justify-content: center;
  align-items: left !important;
  text-align: left !important;
  gap: 14px;
}

.wc-front-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.wc-back-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: left;
  width:100%;
}

.wc-back-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(18px, 8vw, 28px);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  text-align: left;
  width:100%;
}

.wc-front-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(20px, 12vw, 40px);
  font-weight: 600;
  color: white;
  line-height: 1.05;
}

.wc-back-text {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,1);
  font-weight: 300;
  text-align: left;
}

.wc-flip-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  margin-top: 18px;
  position: absolute;
  bottom: 48px;
}

.wc-flip-hint-icon {
  font-size: 140%;
}

.wc-illo {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wc-body {
  background: white;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.wc-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #c977b0;
  margin-bottom: 5px;
  display: block;
}

.wc-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(17px, 4.5vw, 22px);
  font-weight: 600;
  color: #1A1916;
  line-height: 1.1;
  margin-bottom: 8px;
}

.wc-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26,25,22,0.55);
  font-weight: 300;
  flex: 1;
}

.wc-btn {
  display: inline-block;
  align-self: flex-end;
  margin-top: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: white;
  text-decoration: none;
  background: #1A1916;
  padding: 9px 18px;
  border-radius: 20px;
  transition: opacity 0.2s;
}
.wc-btn:hover { opacity: 0.75; }

.deck-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #b6a7d1;
  z-index: 10;
  pointer-events: none;
  display: none;
}


.deck-counter-manual{
  position: absolute;
  bottom: 24px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  z-index: 10;
  pointer-events: none;
}

/* ══ GLOSSAR BUBBLE ARENA ══ */
.glossar-arena {
  /* Break out of section padding so rows fill the full viewport width */
  margin-left: -24px;
  margin-right: -24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 24px;
}

.glossar-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  will-change: transform;
}

.glossar-bubble {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  border-radius: 30px;
  border: 1.5px solid color-mix(in srgb, #4a8d67 38%, transparent);
  color: rgba(26,25,22,0.68);
  background: color-mix(in srgb, #4a8d67 9%, white);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Only hide bubbles inside the scrolling arena (where JS reveals them) */
.glossar-arena .glossar-bubble { opacity: 0; }

.glossar-bubble.g-active {
  background: #4a8d67;
  color: white;
  border-color: #4a8d67;
  box-shadow: 0 4px 18px rgba(74,141,103,0.38);
}

/* ── Popup card — positioned via JS near clicked bubble ── */
.glossar-popup {
  position: fixed;
  width: calc(100vw - 48px);
  max-width: 300px;
  background: white;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.07);
  z-index: 3000;
  pointer-events: none;
  opacity: 0;
}

.glossar-popup.gp-visible { pointer-events: auto; }

.glossar-popup-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a8d67;
  margin-bottom: 6px;
  display: none; /*Iva edited: the tag is dynamic and bubbles get "Grundgesetz" after Articles are opened for the forst time -> needs to be fixed" */
}

.glossar-popup-term {
  font-family: 'Fredoka', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 9px;
  line-height: 1.1;
}

.glossar-popup-def {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(26,25,22,0.6);
  font-weight: 300;
}

.glossar-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,25,22,0.07);
  border-radius: 50%;
  cursor: pointer;
  border: none; padding: 0;
  color: rgba(26,25,22,0.45);
  font-size: 13px; line-height: 1;
}

.glossar-backdrop {
  position: fixed; inset: 0;
  z-index: 2999; display: none;
}
.glossar-backdrop.gb-visible { display: block; }
/* ══ SEMICIRCLE CHART (WIR) ══ */
.semicircle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 8px;
}

.semicircle-wrap canvas {
  touch-action: none;
  cursor: pointer;
  max-width: 100%;
}

.semicircle-hint, .radar-hint {
  font-size: 11px;
  letter-spacing: 0.3px;
  color: rgba(26,25,22,0.35);
  text-align: center;
  margin-top: 8px;
}

/* ══ RADAR CHART (FACT) ══ */
.radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 8px;
}
/* ══ ACT OBJECT GALLERY ══ */
.act-gallery-wrap {
  position: relative;
  min-height: 420px;
  margin: 4px -24px 0;   /* break out of section padding */
  overflow: hidden;
  background: #F5F2EC;
}

.act-obj {
  position: absolute;
  cursor: pointer;
  will-change: transform;
  transform-origin: center center;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.act-obj.is-active {
  z-index: 20;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
}

/* ── Info panel that slides in beside the active object ── */
#act-obj-panel {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100vw - 48px);
  max-width: 320px;
  background: white;
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 0 20px 64px rgba(0,0,0,0.18);
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
}

#act-obj-panel.panel-visible {
  pointer-events: auto;
}

#act-obj-panel-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c06240;
  margin-bottom: 8px;
}

#act-obj-panel-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 12px;
}

#act-obj-panel-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(26,25,22,0.6);
  font-weight: 300;
  margin-bottom: 20px;
}

#act-obj-panel-q {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26,25,22,0.75);
  font-style: italic;
  border-left: 2px solid #c06240;
  padding-left: 12px;
  margin-bottom: 18px;
}

#act-obj-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: none;
  border: 1.5px solid rgba(26,25,22,0.12);
  border-radius: 24px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(26,25,22,0.45);
  cursor: pointer;
}

#act-obj-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3099;
  display: none;
}
#act-obj-backdrop.bd-visible { display: block; }

/* ══ FACT NARRATIVE CHAPTERS — scroll-driven full-section animations ═══════

   Each .nc-section is ~250vh tall with a sticky inner (.nc-sticky).
   Scroll progress (0→1) drives GSAP animations for each chapter's elements.
   Design inspired by decriminalizepoverty.org: bold type, moving graphic pieces.

══════════════════════════════════════════════════════════════════════════════ */

.nc-section {
  position: relative;
  height: 240vh;
}

.nc-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Chapter counter pill */
.nc-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: 'Work Sans', sans-serif;
}

/* ── Chapter 1: "Unsere Welt ist nicht neutral" — black bg ── */
#nc1 { background: #1A1916; }
#nc1 .nc-counter { color: white; }

.nc1-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 0.9;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.nc1-block {
  position: absolute;
  will-change: transform, opacity;
}

/* ── Chapter 2: "Erwachsene verwalten unsere Jugend" — teal bg ── */
#nc2 { background: #78af77; }
#nc2 .nc-counter { color: rgba(255,255,255,0.5); }

.nc2-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(39px, 11vw, 71px);
  color: white;
  line-height: 1.2;
  letter-spacing: -1.5px;
  text-align: center;
  padding: 0 28px;
  will-change: transform, opacity;
}

.nc2-bar {
  position: absolute;
  background: rgba(255,255,255,0.18);
  will-change: transform, opacity;
}

/* ── Chapter 3: "Politik in der Yukapalme" — cream bg ── */
#nc3 { background: #F5F2EC; }
#nc3 .nc-counter { color: rgba(26,25,22,0.4); }

.nc3-highlight {
  display: inline-block;
  position: relative;
}
.nc3-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  height: 8px;
  background: #6b4ea2;
  border-radius: 2px;
  width: 0%;
  transition: width 0.001s;  /* driven by JS not CSS */
  z-index: -1;
}

.nc3-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(41px, 11vw, 75px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #1A1916;
  text-align: center;
  padding: 0 28px;
  will-change: opacity;
}

.nc3-tag {
  position: absolute;
  background: rgba(182,167,209,0.18);
  border: 1px solid #b6a7d1;
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #6b4ea2;
  box-shadow: 2px 3px 0 rgba(107,78,162,0.10);
  will-change: transform, opacity;
  white-space: nowrap;
}

/* ── Chapter 4: "Raus aus der Kiste" — white bg ── */
#nc4 { background: white; }
#nc4 .nc-counter { color: rgba(26,25,22,0.35); }

.nc4-pre {
  position: absolute;
  top: calc(50% - 90px);
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 5vw, 32px);
  color: rgba(26,25,22,0.5);
  letter-spacing: -0.5px;
  will-change: opacity;
  pointer-events: none;
}

.nc4-letter {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(55px, 16vw, 124px);
  color: #1A1916;
  display: inline-block;
  will-change: transform;
  line-height: 1;
}

.nc4-box {
  position: absolute;
  border: 3px solid #1A1916;
  border-radius: 6px;
  will-change: transform, opacity;
}

.nc4-sub {
  font-size: clamp(13px, 3vw, 17px);
  color: rgba(26,25,22,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  will-change: opacity;
  font-family: 'Work Sans', sans-serif;
}

/* ── Chapter 5: "Macht ist mehr als Unterdrückung" — dark green bg ── */
#nc5 { background: #4a8d67; }
#nc5 .nc-counter { color: rgba(255,255,255,0.3); }

.nc5-center {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(49px, 16.5vw, 110px);
  color: white;
  letter-spacing: -3px;
  will-change: transform, opacity;
  position: relative;
  z-index: 2;
}

.nc5-orbit {
  position: absolute;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 6vw, 20px);
  color: #b6a7d1;
  will-change: transform, opacity;
  white-space: nowrap;
}

.nc5-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  will-change: transform, opacity;
}

.nc5-sub {
  position: absolute;
  bottom: 60px;
  left: 28px;
  right: 28px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  text-align: center;
  will-change: opacity;
}

/* ── NC content sections that follow each animation chapter ── */
.nc-content-section {
  position: relative;
  padding-top: 40px !important;
}

.nc-content-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: 'Work Sans', sans-serif;
}

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.video-card {
  background: color-mix(in srgb, var(--page-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--page-color) 30%, transparent);
  border-radius: 14px;
  overflow: hidden;
}

.video-card-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--page-color);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 14px 18px 10px;
}

.video-link-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 13px 13px;
  text-decoration: none;
}

.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}

.video-link-card:hover .video-play-overlay {
  background: rgba(0,0,0,0.52);
}

.video-play-btn {
  background: rgba(255,255,255,0.95);
  color: #1A1916;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px;
}

.act-situation-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin: 0 -24px;
  padding: 4px 24px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.act-situation-scroll::-webkit-scrollbar { display: none; }

.act-situation-card {
  flex: 0 0 272px;
  background: color-mix(in srgb, var(--page-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--page-color) 30%, transparent);
  border-radius: 14px;
  padding: 20px;
  scroll-snap-align: start;
}

.act-sc-num {
  font-family: 'Work Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--page-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.act-sc-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--page-color) 25%, transparent);
}

.act-sc-situation {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26,25,22,0.75);
  font-style: italic;
  margin-bottom: 14px;
}

.act-sc-row { margin-bottom: 10px; }

.act-sc-label {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--page-color);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 3px;
}

.act-sc-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26,25,22,0.6);
  font-weight: 300;
}

.act-scroll-hint {
  font-size: 11px;
  color: rgba(26,25,22,0.35);
  font-family: 'Work Sans', sans-serif;
  margin-top: 2px;
}

.act-help-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

/* ══ ACT NARRATIV CHAPTERS ════════════════════════════════════ */

#ac1 { background: #822b17; }
#ac1 .ic-counter { color: rgba(255,255,255,0.3); }

#ac2 { background: #F5F2EC; }
#ac2 .ic-counter { color: rgba(26,25,22,0.35); }
.ac2-accent { color: #822b17 !important; }

#ac3 { background: #57165b; }
#ac3 .ic-counter { color: rgba(255,255,255,0.25); }
#ac3-help { background: #57165b; }

#ac4 { background: #822b17; }
#ac4 .ic-counter { color: rgba(255,255,255,0.28); }

#ac5 { background: #F5F2EC; }
#ac5 .ic-counter { color: rgba(26,25,22,0.35); }

/* ══ ICH NARRATIV CHAPTERS ════════════════════════════════════

   Each .ic-section is 240vh tall with a sticky inner (.ic-sticky).
   Same scroll-driven pattern as .nc-section / .nc-sticky in FACT.

══════════════════════════════════════════════════════════════ */

.ic-section {
  position: relative;
  height: 240vh;
}

.ic-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ic-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.35;
  font-family: 'Work Sans', sans-serif;
}

/* ── Chapter 1: KOMFORT ZONE — dark forest green ── */
#ic1 { background: #0d364f; }
#ic1 .ic-counter { color: white; }

.ic1-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(60px, 19.5vw, 138px);
  line-height: 0.88;
  letter-spacing: -3px;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.ic1-small {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 4vw, 26px);
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  will-change: opacity, transform;
  text-align: center;
  margin-top: 10px;
}

.ic1-line {
  position: absolute;
  bottom: 28%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(54,160,166,0.35);
  will-change: transform, opacity;
}

/* ── Chapter 2: HERKUNFT PRÄGT HALTUNG — cream ── */
#ic2 { background: #F5F2EC; }
#ic2 .ic-counter { color: rgba(26,25,22,0.4); }

.ic2-line {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(47px, 14.5vw, 102px);
  line-height: 0.92;
  letter-spacing: -2px;
  color: #1A1916;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.ic2-small {
  font-size: clamp(17px, 4.5vw, 30px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: rgba(26,25,22,0.38) !important;
}

.ic2-accent { color: #0d364f !important; }

.ic2-bar {
  background: rgba(26,25,22,0.10);
  will-change: transform;
}

/* ── Chapter 3: EMOTIONEN ALS KOMPASS — very dark green ── */
#ic3 { background: #0d364f; }
#ic3 .ic-counter { color: rgba(255,255,255,0.3); }

.ic3-center {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(47px, 14vw, 99px);
  color: white;
  letter-spacing: -2px;
  will-change: transform, opacity;
  position: relative;
  z-index: 2;
}

.ic3-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(54,160,166,0.18);
  margin: -130px 0 0 -130px;
  will-change: transform, opacity;
}

.ic3-orbit {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 3.5vw, 20px);
  color: rgba(54,160,166,0.7);
  will-change: transform, opacity;
  white-space: nowrap;
}

.ic3-sub {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  will-change: opacity;
  font-family: 'Work Sans', sans-serif;
}

/* ── Chapter 4: DIE UNSICHTBARE HAUT — white ── */
#ic4 { background: white; }
#ic4 .ic-counter { color: rgba(26,25,22,0.35); }

.ic4-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 7.5vw, 52px);
  line-height: 0.92;
  letter-spacing: -1.5px;
  color: #1A1916;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.ic4-large {
  font-size: clamp(30px, 9vw, 64px) !important;
}

.ic4-accent {
  font-size: clamp(54px, 17vw, 116px) !important;
  letter-spacing: -4px !important;
  color: #0d364f !important;
}

.ic4-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(26,25,22,0.08);
  will-change: transform;
}

.ic4-sub {
  position: absolute;
  bottom: 56px;
  left: 28px; right: 28px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(26,25,22,0.32);
  text-align: center;
  will-change: opacity;
  font-style: italic;
}

/* ── Chapter 5: MEINUNG KEINE EINBAHNSTRASSE — dark green ── */
#ic5 { background: #0d364f; }
#ic5 .ic-counter { color: rgba(255,255,255,0.3); }

.ic5-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(49px, 16vw, 113px);
  line-height: 0.88;
  letter-spacing: -2.5px;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.ic5-small {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 3.5vw, 22px);
  color: rgba(255,255,255,0.38);
  letter-spacing: 1px;
  will-change: opacity;
  text-align: center;
  margin: 4px 0;
}

.ic5-accent { color: #3872a6 !important; }

.ic5-arrow {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(44px, 13vw, 88px);
  font-weight: 600;
  color: rgba(54,160,166,0.18);
  will-change: transform, opacity;
  line-height: 1;
}

.ic5-sub {
  position: absolute;
  bottom: 56px;
  left: 28px; right: 28px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  will-change: opacity;
  font-style: italic;
}

/* ── IC content sections ── */
.ic-content-section {
  position: relative;
  padding-top: 40px !important;
}

.ic-content-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: 'Work Sans', sans-serif;
}

/* ══ WIR NARRATIV CHAPTERS ═══════════════════════════════════
   Reuses .ic-section / .ic-sticky / .ic-counter base styles.
══════════════════════════════════════════════════════════════ */

/* ── Chapter 1: MEIN AKTIVISMUS — dark magenta ── */
#wc1 { background: #57165b; }
#wc1 .ic-counter { color: rgba(255,255,255,0.3); }

.wc1-heart {
  font-size: clamp(44px, 14vw, 96px);
  line-height: 1;
  will-change: transform, opacity;
  display: block;
  text-align: center;
  color: #c977b0;
  margin-bottom: 6px;
}

.wc1-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(53px, 16.5vw, 118px);
  line-height: 0.88;
  letter-spacing: -2.5px;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.wc1-sub {
  position: absolute;
  bottom: 52px;
  left: 28px; right: 28px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  will-change: opacity;
  font-style: italic;
}

/* ── Chapter 2: GEMEINSCHAFT BRAUCHT VERBINDUNGEN — cream ── */
#wc2 { background: #F5F2EC; }
#wc2 .ic-counter { color: rgba(26,25,22,0.35); }

.wc2-accent {
  color: #57165b !important;
}

/* ── Chapter 3: NOT JUST SAD — very dark purple ── */
#wc3 { background: #57165b; }
#wc3 .ic-counter { color: rgba(255,255,255,0.25); }

.wc3-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(60px, 19.5vw, 138px);
  line-height: 0.85;
  letter-spacing: -3px;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.wc3-pink {
  color: #c977b0 !important;
  font-size: clamp(64px, 22vw, 152px) !important;
  letter-spacing: -4px !important;
}

.wc3-line {
  position: absolute;
  bottom: 30%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(232,107,154,0.25);
  will-change: transform;
}

/* ── WC3 Hilfe-Ressourcen: scroll-reveal cards ── */

#wc3-help { background: #57165b; }

.wc3-help-sticky {
  justify-content: flex-start !important;
  padding: 72px 20px 32px;
  gap: 0;
}

.wc3-help-header {
  width: 100%;
  margin-bottom: 20px;
}

.wc3-help-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 6vw, 36px);
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.wc3-help-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.wc3-help-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

.wc3-hc {
  background: #F5E97A;
  border-radius: 5px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  will-change: transform;
  box-shadow: 2px 4px 0 rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.wc3-hc-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.wc3-hc-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 3.2vw, 15px);
  color: #57165b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wc3-hc-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  color: rgba(26,8,32,0.5);
  line-height: 1.4;
}

.wc3-hc-cta {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 700;
  color: #57165b;
  text-decoration: none;
  background: rgba(26,8,32,0.1);
  padding: 6px 11px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.wc3-hc-cta:active {
  background: rgba(26,8,32,0.2);
}

/* ── Chapter 4: ETWAS NICHT TUN — dark magenta ── */
#wc4 { background: #57165b; }
#wc4 .ic-counter { color: rgba(255,255,255,0.28); }

.wc4-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(55px, 17.5vw, 124px);
  line-height: 0.88;
  letter-spacing: -2.5px;
  color: white;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.wc4-dim {
  opacity: 0.22 !important;
  text-decoration: line-through;
  text-decoration-color: rgba(232,107,154,0.5);
}

.wc4-small {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 3.5vw, 22px);
  color: rgba(255,255,255,0.38);
  letter-spacing: 1px;
  will-change: opacity;
  text-align: center;
  margin-top: 8px;
}

.wc4-pause {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: rgba(232,107,154,0.4);
  will-change: height;
}

/* ── Chapter 5: CHILL! — cream ── */
#wc5 { background: #F5F2EC; }
#wc5 .ic-counter { color: rgba(26,25,22,0.35); }

.wc5-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(80px, 26.5vw, 187px);
  line-height: 0.88;
  letter-spacing: -4px;
  color: #1A1916;
  will-change: transform, opacity;
  display: block;
  text-align: center;
}

.wc5-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(14px, 3.5vw, 22px);
  color: rgba(26,25,22,0.38);
  will-change: opacity;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── Sticky notes board (IC1 content) ── */
.ic-notes-board {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ic-notes-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  will-change: opacity, transform;
}

.ic-notes-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  color: rgba(26,25,22,0.38);
  font-weight: 600;
}

.ic-notes-track {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ic-note {
  background: #F5E97A;
  padding: 9px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #822b17;
  border-radius: 3px;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.09);
  line-height: 1.35;
}

.ic-note-intent {
  background: rgba(54,160,166,0.18);
  color: #0d364f;
  border: 1px dashed rgba(14,74,79,0.28);
  box-shadow: none;
}

/* ══ ICH SELBST-CHECK — Slider & Chips ═══════════════════════ */

.ich-self-check {
  margin: 24px 0px;
  padding: 20px 0px;
  border-top: 1px solid rgba(26,25,22,0.08);
  border-bottom: 1px solid rgba(26,25,22,0.08);
}

.ich-self-check--dark {
  border-top-color: rgba(255,255,255,0.08);
}

.ich-self-question {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4b8d67;
  margin-bottom: 24px;
}

.ich-self-check--dark .ich-self-question {
  color: rgba(255,255,255,0.35);
}

/* ── Slider ── */

.ich-slider-wrap { width: 100%; }

.ich-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    #0d364f var(--fill, 50%),
    rgba(14,74,79,0.12) var(--fill, 50%)
  );
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  display: block;
  margin: 8px 0 6px;
}

.ich-slider--light {
  background: linear-gradient(
    to right,
    #3872a6 var(--fill, 50%),
    rgba(54,160,166,0.18) var(--fill, 50%)
  );
}

.ich-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #0d364f;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(14,74,79,0.28);
}

.ich-slider--light::-webkit-slider-thumb {
  background: #3872a6;
  box-shadow: 0 1px 6px rgba(54,160,166,0.35);
}

.ich-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #0d364f;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 6px rgba(14,74,79,0.28);
}

.ich-slider--light::-moz-range-thumb {
  background: #3872a6;
  border: none;
}

.ich-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(26,25,22,0.3);
  font-family: 'Work Sans', sans-serif;
}

/* ── Chips (multi-select) ── */

.ich-chips-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ich-chip-sel {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4b8d67;
  background: transparent;
  border: 1px solid #4b8d67;
  border-radius: 20px;
  padding: 7px 13px;
  cursor: pointer;
  line-height: 1.2;
  text-align: left;
  transition: background 0.14s, color 0.14s, border-color 0.14s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.ich-chip-sel:active { transform: scale(0.96); }

.ich-chip-sel--active {
  background: #4b8d67;
  color: white;
  border-color: #4b8d67;
}

/* ── Fact page chip active override ── */
#fact-body .ich-chip-sel--active {
  background: #4a8d67;
  border-color: #4a8d67;
}

/* ── Kompass SVG (footer) ── */

.ich-kompass-wrap {
  width: 100%;
  margin: 22px 0 4px;
}

#ich-kompass {
  overflow: visible;
}

/* ══ FACT PANEL — Attention Catcher ══════════════════════════ */
.fact-ac {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(30px, 9vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 8px;
  text-align: center;
}

.fact-ac-jungle {
  color: #F5E97A;
  font-size: 1.18em;
  display: inline-block;
  position: relative;
}

.fact-ac-jungle::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: rgba(245,233,122,0.5);
  border-radius: 2px;
}

.fact-ac-facts {
  color: #b6a7d1;
  font-size: 1.22em;
  display: inline-block;
  text-shadow: 0 0 18px rgba(182,167,209,0.6);
}

/* ══ Panel Attention Catchers — hervorgehobene Landschafts-Wörter ══ */

.ich-ac-word {
  color: #3872a6;
  font-size: 1.2em;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 20px rgba(54,160,166,0.55);
}
.ich-ac-word::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: rgba(54,160,166,0.45);
  border-radius: 2px;
}

.wir-ac-word {
  color: #c977b0;
  font-size: 1.2em;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 20px rgba(222,84,179,0.5);
}
.wir-ac-word::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: rgba(222,84,179,0.4);
  border-radius: 2px;
}

.act-ac-word {
  color: #c06240;
  font-size: 1.2em;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 20px rgba(226,133,98,0.5);
}
.act-ac-word::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: rgba(226,133,98,0.4);
  border-radius: 2px;
}

/* ══ NC2 Wut — anger expressed via animation (CSS tremor on bars) ══ */
@keyframes nc2-bar-rage {
  0%   { transform-origin: left center; }
  15%  { scaleX: 1.04; }
  30%  { scaleX: 0.97; }
  50%  { scaleX: 1.02; }
  70%  { scaleX: 0.99; }
  100% { scaleX: 1; }
}

/* ══ FACT Single Flipping Card (Macht deck) ═══════════════════ */

.fact-single-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.fact-single-card-front,
.fact-single-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
}
.fact-single-card-back {
  align-items: left!important;
  text-align: left;
  padding: 32px 24px 28px!important;
  justify-content: center;
}

.fact-single-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fsc-hint {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,1);
  background: rgba(26,25,22,0.35);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.fact-single-card-back {
  transform: rotateY(180deg);
  background: #fff;
  padding: 26px 22px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.fsc-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 600;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
  flex-shrink: 0;
  text-align: left;
}

.fsc-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(0,0,0,1);
  font-weight: 300;
  margin-bottom: 12px;
  text-align: left;
}

.fsc-flip-hint {
  font-size: 11px;
  color: rgba(26,25,22,0.7);
  letter-spacing: 1px;
  margin-top: 14px;
  text-align: center;
  flex-shrink: 0;
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
}

/* ══ GG Icons Grid ═══════════════════════════════════════════ */
.gg-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0 8px;
}

.gg-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, #4a8d67 8%, white);
  border: 1px solid color-mix(in srgb, #4a8d67 22%, transparent);
  border-radius: 12px;
  padding: 12px 6px 10px;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.gg-icon-item:hover  { background: color-mix(in srgb, #4a8d67 16%, white); }
.gg-icon-item:active { background: color-mix(in srgb, #4a8d67 24%, white); }
.gg-icon-item.g-active {
  background: color-mix(in srgb, #4a8d67 20%, white);
  border-color: #4a8d67;
}

.gg-icon {
  font-size: 22px;
  line-height: 1;
}

.gg-label {
  font-size: 9px;
  line-height: 1.35;
  color: rgba(26,25,22,0.55);
  font-family: 'Work Sans', sans-serif;
}

/* ══ Parlament Scroll Animation ══════════════════════════════ */
.parl-scroll-wrap {
  position: relative;
  height: 240px;
  margin: 24px -24px 0;
  background: #1A1916;
  border-radius: 16px;
  overflow: hidden;
}

.parl-scroll-sticky {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 8px;
}

.parl-scroll-kicker {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b6a7d1;
  font-family: 'Work Sans', sans-serif;
}

.parl-scroll-slide {
  display: none;
}

.parl-scroll-slide.active {
  display: block;
}

.parl-slide-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  line-height: 1.1;
}

.parl-slide-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ══ YouTube Embed Card ══════════════════════════════════════ */
.yt-embed-card {
  background: color-mix(in srgb, var(--fact) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--fact) 30%, transparent);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
}

.yt-embed-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fact);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 14px 18px 10px;
}

.yt-embed-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.yt-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══ Macht Cards ═════════════════════════════════════════════ */
.macht-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.macht-card {
  background: color-mix(in srgb, #19513c 8%, white);
  border: 1px solid color-mix(in srgb, #19513c 22%, transparent);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.macht-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 2px;
}

.macht-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 5px;
}

.macht-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26,25,22,0.55);
  font-weight: 300;
}

/* ══ Eisberg Visualization ═══════════════════════════════════ */
.eisberg-wrap {
  width: 100%;
  margin: 22px 0 4px;
}

#fact-eisberg {
  overflow: visible;
}

.fact-footer {
  background: #19513c;
}

.fact-footer .ich-footer-label,
.fact-footer .ich-footer-title,
.fact-footer .ich-footer-sub {
  color: rgba(240,237,230,0.85);
}

.fact-footer .ich-footer-label { color: rgba(240,237,230,0.7); }
.fact-footer .ich-footer-sub   { color: rgba(240,237,230,0.7); }

.fact-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 12px 22px;
  background: rgba(74,141,103,0.15);
  border: 1px solid rgba(74,141,103,0.35);
  border-radius: 50px;
  color: #def1de;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.fact-share-btn:hover { background: rgba(74,141,103,0.25); }
.fact-share-btn:active { background: rgba(74,141,103,0.35); }

/* ── Wir footer (Stadtlandschaft — dark night) ── */
.wir-footer {
  background: #57165b;
}
.wir-footer .ich-footer-label,
.wir-footer .ich-footer-title,
.wir-footer .ich-footer-sub {
  color: rgba(240,237,230,0.85);
}
.wir-footer .ich-footer-label { color: rgba(240,237,230,0.4); }
.wir-footer .ich-footer-sub   { color: rgba(240,237,230,0.45); }

/* ── Act footer (Berge — dark mountain dusk) ── */
.act-footer {
  background: #822b17;
}
.act-footer .ich-footer-label,
.act-footer .ich-footer-title,
.act-footer .ich-footer-sub {
  color: rgba(240,237,230,0.85);
}
.act-footer .ich-footer-label { color: rgba(240,237,230,0.4); }
.act-footer .ich-footer-sub   { color: rgba(240,237,230,0.45); }

/* ── Fact page slider — teal override ── */
#fact-body .ich-slider {
  background: linear-gradient(
    to right,
    #4a8d67 var(--fill, 50%),
    rgba(74,141,103,0.14) var(--fill, 50%)
  );
}

#fact-body .ich-slider::-webkit-slider-thumb {
  background: #4a8d67;
  box-shadow: 0 1px 6px rgba(74,141,103,0.35);
}

#fact-body .ich-slider::-moz-range-thumb {
  background: #4a8d67;
  box-shadow: 0 1px 6px rgba(74,141,103,0.35);
}

#fact-body .ich-slider-labels {
  color: rgba(240,237,230,0.35);
}

/* ══ Share Modal ═════════════════════════════════════════════ */
#share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

#share-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #19513c;
  border-radius: 24px 24px 0 0;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#share-modal-hint {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 8px 16px;
  background: rgba(74,141,103,0.1);
  border-radius: 50px;
  border: 1px solid rgba(74,141,103,0.25);
}

#share-modal-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

#share-modal-close {
  background: rgba(240,237,230,0.08);
  border: 1px solid rgba(240,237,230,0.15);
  color: rgba(240,237,230,0.6);
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
}

/* ══════════════════════════════════════════════
   FACT PANEL — exact Figma geometry
══════════════════════════════════════════════ */

#panel-fact {
  background: #f7bcad;
  overflow: hidden;
}

#panel-fact::after { display: none; }

/* ── Landscape image layers ───────────────────
   Figma: each layer is 1787×1787px at x=−685, y=63
   in a 402×874 frame.
   width  = 1787/402 × 100vw = 444.5vw
   left   = −685/402 × 100vw = −170.4vw
   top    =   63/874 × 100dvh =  7.21dvh          */
.pf-layer {
  position: absolute;
  width: calc(1787 / 402 * 100vw);   /* 444.5vw */
  height: calc(1787 / 402 * 100vw);  /* square  */
  left: calc(-685 / 402 * 100vw);    /* −170.4vw */
  top: calc(63 / 874 * 100dvh);      /* 7.21dvh  */
  pointer-events: none;
  display: block;
}

#pf-bg  { z-index: 1; }
#pf-mid { z-index: 2; }
#pf-fg  { z-index: 4; }

/* ── Compass ring disc ────────────────────────
   Figma: 1769×1769px at x=−676, y=72.
   Ring centre = (208.5, 956.5) in screen coords
               = 9.44dvh below viewport bottom.
   width  = 1769/402 × 100vw = 440.1vw
   top    =   72/874 × 100dvh =  8.24dvh
   (left: 50%; transform: translateX(−50%) centres it) */
#pf-ring {
  position: absolute;
  width: calc(1769 / 402 * 100vw);   /* 440.1vw */
  height: calc(1769 / 402 * 100vw);  /* square  */
  left: 50%;
  transform: translateX(-50%);
  top: calc(72 / 874 * 100dvh);      /* 8.24dvh */
  border-radius: 50%;
  background: white;
  z-index: 3;
  pointer-events: none;
}

/* ── Compass needle ───────────────────────────
   Positioned so its base sits at the ring arc.
   In Figma the needle base (inner element top) is
   at screen y ≈ 589 = 67.4dvh from top = 32.6dvh
   from bottom. Width derived from visible ~8vw.    */
#pf-needle {
  position: absolute;
  width: 8vw;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  /* bottom of SVG at ring arc centre-top */
  bottom: 32dvh;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

/* ── WALD label ── */
.pf-wald {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.pf-wald-icon { width: 26px; height: 26px; }

.pf-wald span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: white;
  text-transform: uppercase;
}

/* ── Content overrides for FACT panel ── */
#panel-fact .panel-content { z-index: 10; position: relative; }

#panel-fact .panel-eyebrow {
  color: rgba(255,255,255,0.65);
}

#panel-fact .fact-ac {
  color: white;
  font-size: clamp(28px, 8.5vw, 54px);
}

#panel-fact .fact-ac-jungle,
#panel-fact .fact-ac-facts {
  color: #f15b47;
  font-size: 1em;
  text-shadow: none;
}

#panel-fact .fact-ac-jungle::after { display: none; }

/* CTA button */
.pf-cta {
  margin-top: 32px;
  background: #f15b47;
  color: white;
  border: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 15px 42px;
  border-radius: 84px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pf-cta:hover  { opacity: 0.87; }
.pf-cta:active { opacity: 0.75; }

/* ── Numbered labels (01 · Normen etc.) und wiederholende Überschriften ausblenden ── */
.nc-content-label,
.ic-content-label {
  display: none;
}

.ich-module-title {
  display: none;
}

/* ══════════════════════════════════════════════
   COMING SOON PAGE — "Bald verfügbar"
   --deep and --accent set per-section in JS.
══════════════════════════════════════════════ */
#coming-soon-page {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: var(--deep, #0D364F);
  color: #fff;
  z-index: 3000;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
  touch-action: pan-y;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.con-watermark {
  position: absolute;
  width: 560px;
  max-width: 140vw;
  left: 50%;
  top: 47%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.12);
  animation: con-spin 64s linear infinite;
  pointer-events: none;
}
@keyframes con-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .con-watermark { animation: none; } }

.con-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.con-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.con-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 0.96;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.con-body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 286px;
  margin: 0 auto 28px;
}

.con-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent, #AF7A18);
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.con-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: con-pulse 1.6s ease-in-out infinite;
}
@keyframes con-pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }

.con-back {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
}
.con-back:hover { background: rgba(255,255,255,0.32); transform: translateX(-2px); }
