/* ⚠ FARBREGEL imopact — nachgezogen 19.08.
   Belegt ist genau eine Grünstufe: #AFC800 (533 Verwendungen im Folien-XML des
   imopact-Teasers; daneben nur Weiß, Schwarz und das Grau #585756). Das früher
   hier benutzte #566f00 war eine Abdunklung von mir und ist gestrichen.

   Daraus die Regel, die für alle imopact-Elemente gilt:
   · Grün als FLÄCHE — dunkler Text darauf (9,4:1)
   · Grün als TEXT — nur auf dunklem Grund (8,8:1 auf Navy)
   · Grün als LINIE — überall, Linien brauchen keinen Lesekontrast
   · Auf hellem Grund NIE grüner Text: #AFC800 auf Weiß ergibt 1,9:1.
     Dort trägt Navy oder das CI-Grau #585756, das Grün bleibt die Linie daneben. */

/* Nachhaltigkeit — zweiter Anlauf (17.08.).
   Der erste Versuch hat die Seite in eine einspaltige Abfolge gestreckt, die
   Marke imopact weggelassen und die Diagramme durch selbst erfundene ersetzt.
   Jetzt gilt: Aufbau und Diagramm-Geometrie kommen aus dem bestehenden Stand
   (Handoff, gespeist aus den imopact-Vorlagen), die Oberfläche aus v4.

   Regel für diese Seite: imopact-Grün ist die einzige Farbe. Sand kommt nicht
   vor, sonst konkurrieren zwei Akzente. */

/* ---------- Zweispaltige Leseflächen: Text links, Grafik rechts --------- */

.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.duo--wide { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; }
.duo__lede { font-size: var(--t-lead); line-height: 1.6; max-width: 46ch; }
.duo__lede + .duo__lede { margin-top: 14px; }

/* Eyebrow mit grüner Oberkante — Zitat aus dem imopact-Layout, hier das
   einzige Ornament der Seite. */
.eyebrow--imo {
  display: inline-block;
  padding-top: 13px;
  border-top: 2px solid var(--imo);
  /* Die grüne Kante trägt die Marke; der Text steht im CI-Grau, weil grüner
     Text auf hellem Grund nicht lesbar ist. */
  color: #585756;
  font-weight: 700;
}

/* Der bestehende Stand setzte diese Überschrift grün auf Hell — das ist bei
   #AFC800 nicht lesbar. Sie steht jetzt in Navy; das Grün darüber liegt als
   Kante im Eyebrow und trägt die Markenzuordnung genauso. */
.h2--imo { color: var(--ink); }

/* ---------- Figuren ----------------------------------------------------- */

.fig { margin: 0; }
.fig--framed { padding-top: 22px; border-top: 1px solid var(--line); }
.fig__hd {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #585756;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 14px;
  position: relative;
}
/* Statt grüner Schrift eine grüne Marke davor: gleiche Zuordnung, lesbar. */
.fig__hd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 7px;
  height: 7px;
  background: var(--imo);
}
.fig__key { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.fig__key span {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted); white-space: nowrap;
}
.fig__key i { width: 11px; height: 11px; display: block; }
.fig__key i.is-now { background: rgba(175,200,0,.18); border: 1px solid rgba(175,200,0,.55); }
.fig__key i.is-next { background: var(--ink); }
.fig__cap { margin-top: 16px; font-size: var(--t-small); line-height: 1.55; color: var(--muted); max-width: 54ch; }
.fig svg { width: 100%; height: auto; display: block; }

/* ---------- imopact-Marke: eigener Abschnitt, nicht nur ein Satz -------- */

.imo {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 128px);
}
.imo__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.imo::after {
  content: "";
  position: absolute; inset: 0;
  /* Nur die linke Hälfte wird abgedunkelt — dort steht der Text. Rechts
     bleibt das Motiv unverfälscht stehen, wie im bestehenden Stand. */
  background: linear-gradient(90deg,
    rgba(11,28,48,.92) 0%,
    rgba(11,28,48,.88) 30%,
    rgba(11,28,48,.55) 52%,
    rgba(11,28,48,.12) 74%,
    rgba(11,28,48,0) 100%);
}
.imo .wrap { position: relative; z-index: 4; }
.imo__logo { height: 40px; width: auto; display: block; margin-bottom: 34px; }
.imo__mission {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.9vw, 41px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: 20ch;
}
.imo__sub { margin-top: 20px; color: rgba(239,239,239,.74); max-width: 54ch; }
.imo__claim {
  margin-top: clamp(32px, 4vw, 52px);
  padding-top: 26px;
  border-top: 1px solid rgba(175,200,0,.45);
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--imo);   /* steht auf der dunklen Bildfläche des Markenblocks */
  max-width: 16ch;
}

/* ---------- Impact-Path: vier Register unter einer Linie ---------------- */

.path { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 44px); margin-top: clamp(30px, 3.4vw, 48px); }
.path__it { padding-top: 18px; border-top: 2px solid var(--ink); }
.path__it:nth-child(2) { border-top-color: rgba(11,28,48,.55); }
.path__it:nth-child(3) { border-top-color: rgba(175, 200, 0, .55); }
.path__it:nth-child(4) { border-top-color: var(--imo); }
.path__nr { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; color: var(--muted); margin-bottom: 10px; }
.path__it h3 { font-size: 18px; line-height: 1.2; margin-bottom: 9px; }
.path__it p { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Querverweis ------------------------------------------------- */

.xref { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: clamp(26px, 4vw, 72px); align-items: start; }
.xref h3 { font-size: clamp(21px, 2.2vw, 30px); line-height: 1.16; }
.xref p { color: var(--muted); max-width: 58ch; }

/* Textlink im Fließtext — es gab bisher nur .btn */
.lnk {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--imo);
  transition: color .2s, border-color .2s;
}
.lnk:hover { color: var(--ink); border-color: var(--ink); }

/* Auf der Navy-Fläche des Markenblocks kehrt sich der Link um */
.imo .lnk { color: var(--imo); border-bottom-color: rgba(175,200,0,.5); }
.imo .lnk:hover { color: #c9dd3a; border-bottom-color: #c9dd3a; }

@media (max-width: 1000px) {
  .duo, .duo--wide, .xref { grid-template-columns: 1fr; }
  .path { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; }
}
@media (max-width: 620px) {
  .path { grid-template-columns: 1fr; }
}

/* Unterzeile im Aufmacher — nur diese Seite führt die Marke schon dort ein */
.ph__sub {
  margin-top: 16px;
  font-size: var(--t-lead);
  color: rgba(239,239,239,.8);
  max-width: 46ch;
}

/* ---------- Ring: Grafik links, Bezeichnungen daneben ------------------- */
/* Keine Farbmarken in der Legende — die Zuordnung läuft über die Prozentzahl
   im Ring. Farbchips waren in dieser Größe nicht auseinanderzuhalten. */

.ring { display: grid; grid-template-columns: minmax(0, 230px) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: center; }
.ring__gfx { width: 100%; height: auto; display: block; }
.ring__key { list-style: none; margin: 0; padding: 0; }
.ring__key li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.ring__key li:first-child { border-top: 1px solid var(--line-hard); }
.ring__key b { font-family: var(--f-display); font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.ring__key span { font-size: var(--t-small); color: var(--muted); }

@media (max-width: 720px) {
  .ring { grid-template-columns: 1fr; }
  .ring__gfx { max-width: 230px; }
}
