/* R4X Kompass v2861 · direkt geladener Praxisweg, sichtbare Missionsfelder, Missionsnutzen
   und 13. Mystery-Segment als Abschlussmoment
   Ebene 1: grosses Wheel (Fortschritts-Mandala) + Naechster Schritt + Feldliste.
   Ebene 2: Praxisfeld als nummerierte Checkliste.
   Laedt NACH r4x-cockpit.v1482.css, nutzt dessen Tokens und Basiskomponenten
   (cockpit-card, cockpit-btn, cockpit-pill). Alle Layoutklassen hier: kx-*. */

.kx-page{ padding-top:var(--r4x-space-4); }

.kx-grid{
  display:grid;
  grid-template-columns:440px minmax(0,1fr);
  gap:var(--r4x-space-5);
  align-items:start;
}

/* --- Wheel-Karte --- */
.kx-wheelcard{ position:sticky; top:84px; max-width:100%; box-sizing:border-box; }
.kx-title{ display:flex; align-items:baseline; gap:.24em; }
.kx-wheelhead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
.kx-wheelhead .kx-title{ margin:0; min-width:0; }
.kx-nextlink{
  display:none;
  margin-left:auto;
  padding:4px 0;
  border:0;
  background:transparent;
  color:var(--r4x-gold-soft);
  font:700 11.5px/1.2 var(--r4x-font-body);
  letter-spacing:.04em;
  white-space:nowrap;
  cursor:pointer;
}
.kx-nextlink:hover,.kx-nextlink:focus-visible{
  color:var(--r4x-gold);
  outline:none;
  text-decoration:underline;
  text-underline-offset:3px;
}
.kx-title .cockpit-r4x-brand,
.cockpit-r4x-brand{ color:var(--r4x-gold); font-weight:800; letter-spacing:.04em; }
.kx-title .cockpit-r4x-brand__four,
.cockpit-r4x-brand__four{ color:#fff; }
.kx-wheelwrap{
  position:relative;
  width:min(400px,100%);
  margin:14px auto 0;
}
.kx-wheel{ display:block; width:100%; height:auto; overflow:visible; max-width:100%; }

.kx-center{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:31%; height:31%;
  border-radius:50%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:2px;
  background:radial-gradient(circle at 50% 45%,rgba(18,18,20,.98),rgba(7,7,9,.98));
  border:1px solid rgba(212,175,55,.36);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04),0 14px 28px rgba(0,0,0,.34);
  pointer-events:none;
}
.kx-center strong{
  color:var(--r4x-gold);
  font-size:clamp(22px,7.5vw,30px);
  font-weight:700;
  line-height:1;
  letter-spacing:.01em;
}
.kx-center strong span{
  color:var(--r4x-text-primary);
  font-size:.5em;
  font-weight:700;
}
.kx-center small{
  color:var(--r4x-text-tertiary);
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.kx-wheelnote{
  margin:12px 0 0;
  text-align:center;
  color:var(--r4x-text-tertiary);
  font-size:12.5px;
}

/* --- Segmente --- */
.kx-seg{ cursor:pointer; outline:none; }
.kx-seg__slice{
  fill:rgba(255,255,255,.045);
  stroke:rgba(255,255,255,.13);
  stroke-width:1.25;
  transition:fill .18s ease, stroke .18s ease, filter .18s ease;
}
.kx-seg__track{ fill:rgba(255,255,255,.09); }
.kx-seg__progress{ fill:var(--r4x-gold); }
.kx-seg__icon{
  font-size:24px;
  dominant-baseline:middle;
  pointer-events:none;
  opacity:.92;
  fill:currentColor;
  color:var(--r4x-text-primary);
  font-weight:700;
}
.kx-seg__icon--tax,
.kx-seg__icon--basics{
  font-size:26px;
}
.kx-seg__icon--tax{
  color:#fff;
  font-weight:800;
}
.kx-seg__icon--basics{
  color:var(--r4x-success);
  font-weight:800;
}
.kx-seg.is-open .kx-seg__icon{ opacity:.55; }
.kx-seg.is-progress .kx-seg__slice{ fill:rgba(212,175,55,.08); stroke:rgba(212,175,55,.3); }
.kx-seg.is-complete .kx-seg__slice{ fill:rgba(125,210,140,.09); stroke:rgba(125,210,140,.34); }
.kx-seg.is-complete .kx-seg__progress{ fill:var(--r4x-success); }
.kx-seg:hover .kx-seg__slice,
.kx-seg:focus-visible .kx-seg__slice{
  fill:rgba(212,175,55,.14);
  stroke:rgba(212,175,55,.6);
  filter:drop-shadow(0 0 11px rgba(212,175,55,.2));
}
.kx-seg.is-active .kx-seg__slice{
  fill:rgba(212,175,55,.19);
  stroke:rgba(212,175,55,.85);
  filter:drop-shadow(0 0 14px rgba(212,175,55,.26));
}

/* Sanfter Puls auf dem empfohlenen Startsegment (nur solange noch nichts erledigt ist) */
@keyframes kx-pulse{
  0%,100%{ fill:rgba(212,175,55,.06); }
  50%{ fill:rgba(212,175,55,.2); }
}
.kx-seg.is-recommended:not(.is-active) .kx-seg__slice{
  animation:kx-pulse 2.4s ease-in-out infinite;
  stroke:rgba(212,175,55,.5);
}

/* Ring schnappt zu, wenn ein Feld komplett wird */
@keyframes kx-snap{
  0%{ opacity:.3; transform:scale(1); }
  55%{ opacity:1; transform:scale(1.05); }
  100%{ opacity:1; transform:scale(1); }
}
.kx-seg.is-just-completed .kx-seg__progress{
  transform-origin:200px 200px;
  animation:kx-snap .7s ease-out 1;
}

@media(prefers-reduced-motion:reduce){
  .kx-seg.is-recommended:not(.is-active) .kx-seg__slice{ animation:none; }
  .kx-seg.is-just-completed .kx-seg__progress{ animation:none; }
}

/* --- Gemeinsame Bausteine --- */
.kx-eyebrow{
  display:block;
  color:var(--r4x-gold-soft);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.kx-bar{
  display:inline-block;
  width:56px; height:5px;
  border-radius:3px;
  background:rgba(255,255,255,.1);
  overflow:hidden;
  flex:0 0 auto;
}
.kx-bar--lg{ width:100%; height:7px; flex:1; }
.kx-bar__fill{
  display:block; height:100%;
  background:var(--r4x-gold);
  border-radius:inherit;
  transition:width .35s ease;
}
.kx-fieldrow.is-complete .kx-bar__fill,
.kx-feld.is-complete .kx-bar__fill{ background:var(--r4x-success); }

/* --- Ebene 1: Naechster Schritt --- */
.kx-main{ display:flex; flex-direction:column; gap:var(--r4x-space-5); min-width:0; }

.kx-next{ display:flex; flex-direction:column; gap:7px; border-color:var(--r4x-gold-border); }
.kx-next__title{
  color:var(--r4x-text-primary);
  font-size:19px;
  font-weight:700;
  line-height:1.3;
}
.kx-next__ctx{ color:var(--r4x-text-secondary); font-size:13px; }
.kx-next__actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.kx-next.is-all-done{ border-color:rgba(125,210,140,.4); }

/* --- Ebene 1: Feldliste --- */
.kx-fieldlist{ display:flex; flex-direction:column; gap:10px; }
.kx-fieldlist__rows{ display:flex; flex-direction:column; gap:7px; }
.kx-fieldrow{
  display:flex; align-items:center; gap:12px;
  width:100%;
  padding:11px 14px;
  border-radius:var(--r4x-radius-md);
  border:1px solid var(--r4x-border-default);
  background:rgba(255,255,255,.02);
  color:var(--r4x-text-primary);
  font:inherit;
  text-align:left;
  text-decoration:none;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
.kx-fieldrow:visited{ color:var(--r4x-text-primary); }
.kx-fieldrow:hover,
.kx-fieldrow:focus-visible{
  border-color:var(--r4x-gold-border);
  background:var(--r4x-gold-bg);
  outline:none;
}
.kx-fieldrow.is-progress{ border-color:rgba(212,175,55,.28); }
.kx-fieldrow.is-complete{ border-color:rgba(125,210,140,.32); }
.kx-fieldrow__icon{ flex:0 0 auto; font-size:16px; width:20px; text-align:center; color:var(--r4x-text-primary); }
.kx-fieldrow__icon--tax{ color:#fff; font-weight:800; }
.kx-fieldrow__icon--basics{ color:var(--r4x-success); font-weight:800; }
.kx-fieldrow__label{ flex:1; min-width:0; font-size:13.5px; font-weight:600; }
.kx-fieldrow__count{
  flex:0 0 auto;
  min-width:92px;
  text-align:right;
  color:var(--r4x-text-secondary);
  font-size:12px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.kx-fieldrow.is-progress .kx-fieldrow__count{ color:var(--r4x-gold); }
.kx-fieldrow.is-complete .kx-fieldrow__count{ color:var(--r4x-success); }

/* --- Ebene 2: Praxisfeld --- */
.kx-back{
  align-self:flex-start;
  display:inline-flex; align-items:center; gap:7px;
  border:0; background:transparent;
  color:var(--r4x-gold);
  font:700 13px/1 var(--r4x-font-body);
  padding:6px 2px;
  cursor:pointer;
}
.kx-back:hover,.kx-back:focus-visible{ color:var(--r4x-gold); outline:none; text-decoration:underline; text-underline-offset:3px; }

.kx-back--bottom{ display:none; margin-top:2px; }

.kx-feld__head{ display:flex; align-items:center; gap:14px; }
.kx-feld__icon{
  flex:0 0 auto;
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  color:var(--r4x-text-primary);
  background:var(--r4x-gold-bg);
  border:1px solid var(--r4x-gold-border);
}
.kx-feld__icon--tax{ color:#fff; font-weight:800; }
.kx-feld__icon--basics{ color:var(--r4x-success); font-weight:800; }
.kx-feld__headtext{ min-width:0; }
.kx-feld__title{ margin:0; color:var(--r4x-text-primary); font-size:22px; line-height:1.2; }
.kx-feld__sub{ margin:3px 0 0; color:var(--r4x-text-secondary); font-size:13px; }

.kx-feld__progress{ display:flex; align-items:center; gap:12px; }
.kx-feld__count{
  flex:0 0 auto;
  color:var(--r4x-gold);
  font-size:13px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
.kx-feld__bulk{
  display:flex;
  justify-content:flex-end;
  margin-top:-4px;
}
.kx-feld__donenote{
  padding:11px 14px;
  border-radius:var(--r4x-radius-md);
  border:1px solid rgba(125,210,140,.35);
  background:rgba(125,210,140,.06);
  color:var(--r4x-text-primary);
  font-size:13px;
}

/* --- Missionen als Checkliste --- */
.kx-missions{ display:flex; flex-direction:column; gap:8px; }

.kx-mission{
  display:flex; gap:12px;
  width:100%;
  border-radius:var(--r4x-radius-md);
  border:1px solid var(--r4x-border-default);
  background:rgba(255,255,255,.02);
  text-align:left;
}
button.kx-mission{
  align-items:center;
  padding:11px 14px;
  color:var(--r4x-text-primary);
  font:inherit;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
button.kx-mission:hover,
button.kx-mission:focus-visible{
  border-color:var(--r4x-gold-border);
  background:var(--r4x-gold-bg);
  outline:none;
}
.kx-mission.is-done{
  border-color:rgba(125,210,140,.28);
  background:rgba(125,210,140,.035);
  opacity:.78;
}
.kx-mission.is-done .kx-mission__label{
  color:var(--r4x-text-secondary);
  text-decoration:line-through;
  text-decoration-color:rgba(125,210,140,.6);
}
.kx-mission.is-current{
  align-items:flex-start;
  padding:14px;
  border-color:var(--r4x-gold-border);
  background:linear-gradient(135deg,rgba(212,175,55,.07),rgba(212,175,55,.02));
}
.kx-mission.is-current.is-done-expanded{
  border-color:rgba(125,210,140,.4);
  background:linear-gradient(135deg,rgba(125,210,140,.07),rgba(125,210,140,.02));
}

.kx-num{
  flex:0 0 auto;
  width:26px; height:26px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.25);
  color:var(--r4x-text-secondary);
  font-size:12.5px;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.kx-mission.is-current .kx-num{ border-color:var(--r4x-gold); color:var(--r4x-gold); }
.kx-num.is-check{
  border-color:rgba(125,210,140,.45);
  background:rgba(125,210,140,.14);
  color:var(--r4x-success);
}

.kx-mission__label{ flex:1; min-width:0; font-size:13.5px; font-weight:600; line-height:1.35; }
.kx-mission__body{ flex:1; min-width:0; display:flex; flex-direction:column; gap:6px; }
.kx-mission__title{ color:var(--r4x-text-primary); font-size:15px; font-weight:700; line-height:1.35; }
.kx-mission__desc{ margin:0; color:var(--r4x-text-secondary); font-size:13px; line-height:1.55; }
.kx-mission__benefit{margin:2px 0 0;padding:9px 11px;border-left:3px solid rgba(212,175,55,.72);border-radius:8px;background:rgba(212,175,55,.07);color:var(--r4x-text-secondary);font-size:12.5px;line-height:1.5}
.kx-mission__benefit strong{color:var(--r4x-text-primary)}
.kx-mission__donewhen{margin:0;color:var(--r4x-text-secondary);font-size:12.5px;line-height:1.5}
.kx-mission__donewhen strong{color:var(--r4x-text-primary)}
.kx-mission__meta{ color:var(--r4x-text-tertiary); font-size:12px; font-weight:600; }
.kx-mission__safety{margin:2px 0 0;padding:10px 12px;border-left:3px solid var(--r4x-gold,#d4af37);border-radius:8px;background:rgba(212,175,55,.09);color:var(--r4x-text-secondary);font-size:12px;line-height:1.55}
.kx-mission__safety strong{color:var(--r4x-text-primary,#181818)}
.kx-mission__outcome{margin:0;color:var(--r4x-text-secondary);font-size:12px;line-height:1.45}
.kx-mission__rowoutcome{display:block;margin-top:3px;color:var(--r4x-text-tertiary);font-size:10px;font-weight:600}
.kx-mission__decision-label{flex-basis:100%;color:var(--r4x-text-tertiary);font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.kx-mission__actions{ display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.kx-next__reason{margin:0;color:var(--r4x-text-secondary);font-size:12.5px;line-height:1.5}
.kx-mission.is-deferred{border-color:rgba(212,175,55,.28);background:rgba(212,175,55,.035)}
.kx-mission.is-blocked{border-color:rgba(255,255,255,.1);background:rgba(255,255,255,.018);opacity:.82}
.kx-mission.is-blocked .kx-num{border-style:dashed}

.kx-btn-subtle{
  background:transparent;
  border-color:transparent;
  color:var(--r4x-text-tertiary);
  box-shadow:none;
}
.kx-btn-subtle:hover{ background:rgba(255,255,255,.05); color:var(--r4x-text-secondary); }

/* --- Responsive --- */
@media(max-width:1180px){
  .kx-grid{ grid-template-columns:400px minmax(0,1fr); }
}
@media(max-width:1040px){
  .kx-grid{ grid-template-columns:1fr; }
  .kx-wheelcard{ position:static; }
  .kx-wheelwrap{ width:min(100%,400px); }
  /* Ebene 2 auf Mobile: das Wheel tritt ab, das Feld ist der Screen */
  .kx-page.is-feld .kx-wheelcol{ display:none; }
}
@media(max-width:760px){
  .kx-wheelwrap{ width:min(100%, calc(100vw - 56px)); }
  .kx-nextlink{ display:inline-flex; align-items:center; }
  .kx-wheelcard{ padding-left:14px; padding-right:14px; }
  .kx-next__title{ font-size:17px; }
  .kx-feld__title{ font-size:20px; }
  .kx-feld__icon{ width:46px; height:46px; font-size:21px; }
  .kx-next__actions .cockpit-btn{ flex:1; justify-content:center; text-align:center; }
  .kx-mission__actions .cockpit-btn{ flex:1; justify-content:center; text-align:center; }
  .kx-back--bottom{ display:inline-flex; margin-top:6px; }
}

/* R4X v2108 · cache marker */

/* ============================================================
   R4X v2127 · Kompass Free-Vorschau und schreibgeschuetzter Stand
   Sichtbar und navigierbar, aber ohne Missionsausfuehrung.
   ============================================================ */
.kx-page.is-preview,
.kx-page.is-readonly{
  --kx-lock-bg:rgba(212,175,55,.065);
  --kx-lock-border:rgba(212,175,55,.28);
}

.kx-wheelcard.is-locked-preview{
  border-color:rgba(212,175,55,.28);
}
.kx-center em{
  display:block;
  margin-top:3px;
  color:var(--r4x-gold-soft);
  font:700 9px/1.15 var(--r4x-font-body);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-style:normal;
  white-space:nowrap;
}
.kx-center.is-preview strong{
  font-size:clamp(26px,7.5vw,34px);
}
.kx-center.is-readonly em{
  color:var(--r4x-text-tertiary);
  letter-spacing:.04em;
}
.kx-seg.is-preview .kx-seg__slice{
  fill:rgba(255,255,255,.038);
  stroke:rgba(212,175,55,.2);
}
.kx-seg.is-preview .kx-seg__track{
  fill:rgba(212,175,55,.16);
}
.kx-seg.is-preview .kx-seg__icon{
  opacity:.82;
}
.kx-seg.is-readonly .kx-seg__slice{
  filter:saturate(.82);
}

.kx-access-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  border-color:var(--kx-lock-border);
  background:
    radial-gradient(circle at 100% 0,rgba(212,175,55,.12),transparent 35%),
    linear-gradient(135deg,rgba(212,175,55,.07),rgba(255,255,255,.022));
}
.kx-access-card__head{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.kx-access-card__head>div{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:0;
}
.kx-access-card__lock{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.32);
  background:rgba(212,175,55,.09);
  font-size:18px;
}
.kx-access-card__desc{
  margin:0;
  color:var(--r4x-text-secondary);
  font-size:13.5px;
  line-height:1.58;
}
.kx-access-card__facts{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.kx-access-card__facts span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:var(--r4x-text-secondary);
  font-size:11.5px;
  font-weight:600;
}
.kx-access-card__actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 14px;
}
.kx-access-card__actions small{
  color:var(--r4x-text-tertiary);
  font-size:11.5px;
}

.kx-readonly-note{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--kx-lock-border);
  border-radius:var(--r4x-radius-md);
  background:var(--kx-lock-bg);
  color:var(--r4x-text-secondary);
  font-size:12.5px;
  line-height:1.45;
}
.kx-readonly-note strong{
  color:var(--r4x-text-primary);
}
.kx-readonly-note__icon{
  font-size:15px;
}
.kx-readonly-note a{
  color:var(--r4x-gold-soft);
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:rgba(212,175,55,.45);
  text-underline-offset:3px;
  white-space:nowrap;
}

.kx-fieldrow.is-preview,
.kx-fieldrow.is-readonly{
  border-color:rgba(212,175,55,.22);
}
.kx-fieldrow__preview-lock,
.kx-mission__rowlock{
  flex:0 0 auto;
  color:var(--r4x-gold-soft);
  font-size:12px;
  opacity:.9;
}
.kx-fieldrow.is-preview .kx-fieldrow__count{
  min-width:76px;
  color:var(--r4x-text-tertiary);
  font-weight:600;
}
.kx-fieldrow.is-readonly .kx-fieldrow__count{
  min-width:42px;
}
.kx-feld__progress.is-preview .kx-bar{
  background:rgba(255,255,255,.07);
}
.kx-feld__progress.is-preview .kx-feld__count{
  color:var(--r4x-text-secondary);
}

.kx-mission.is-locked{
  border-color:rgba(212,175,55,.2);
}
button.kx-mission.is-locked:hover,
button.kx-mission.is-locked:focus-visible{
  border-color:rgba(212,175,55,.45);
  background:rgba(212,175,55,.065);
}
.kx-mission.is-current.is-locked{
  border-color:rgba(212,175,55,.36);
  background:linear-gradient(135deg,rgba(212,175,55,.075),rgba(255,255,255,.018));
}
.kx-mission.is-locked.is-done{
  opacity:.88;
}
.kx-mission__rowlock{
  align-self:center;
  margin-left:auto;
}
.kx-mission__locknote{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  margin-top:2px;
  color:var(--r4x-text-tertiary);
  font-size:11.5px;
  font-weight:600;
  line-height:1.4;
}

/* Zentrale: Free fuehrt zuerst in die Produktvorschau statt in den Code-Dialog. */
body[data-page="zentrale"] .cockpit-kompass-strip.is-preview,
body[data-page="zentrale"] .cockpit-kompass-strip.is-readonly{
  border-color:rgba(212,175,55,.38);
}
body[data-page="zentrale"] .cockpit-kompass-strip.is-preview .cockpit-kompass-strip__ring{
  background:
    radial-gradient(circle at center,rgba(17,17,22,.98) 0 57%,transparent 58%),
    conic-gradient(rgba(212,175,55,.38) 100%,rgba(255,255,255,.1) 0);
}
body[data-page="zentrale"] .cockpit-kompass-strip.is-readonly .cockpit-kompass-strip__ring{
  background:
    radial-gradient(circle at center,rgba(17,17,22,.98) 0 57%,transparent 58%),
    conic-gradient(rgba(212,175,55,.58) calc(var(--kompass-pct,0) * 1%),rgba(255,255,255,.1) 0);
}
body[data-page="zentrale"] .cockpit-kompass-strip__ring{
  align-content:center;
  gap:1px;
  line-height:1;
  text-align:center;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
  display:block;
  font-size:11px;
  font-weight:800;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
  display:block;
  max-width:34px;
  color:var(--r4x-text-tertiary);
  font-size:6.5px;
  font-weight:700;
  letter-spacing:.03em;
  line-height:1.05;
  text-transform:uppercase;
  overflow:hidden;
}
body[data-page="zentrale"] .cockpit-kompass-strip.is-preview .cockpit-kompass-strip__cta,
body[data-page="zentrale"] .cockpit-kompass-strip.is-readonly .cockpit-kompass-strip__cta{
  color:var(--r4x-text-primary)!important;
}


body[data-page="zentrale"] .cockpit-kompass-strip{
  gap:12px;
  min-height:58px;
  padding:10px 14px;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ring{
  width:52px;
  height:52px;
  gap:2px;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
  font-size:13px;
  font-weight:800;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
  max-width:38px;
  font-size:7px;
  line-height:1.08;
  letter-spacing:.05em;
}
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    gap:6px 10px;
    min-height:56px;
    padding:9px 11px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:48px;
    height:48px;
    gap:2px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:12px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:34px;
    font-size:6.6px;
    line-height:1.08;
  }
}


@media(max-width:760px){
  .kx-access-card__actions{
    align-items:stretch;
    flex-direction:column;
  }
  .kx-access-card__actions .cockpit-btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }
  .kx-readonly-note{
    grid-template-columns:auto minmax(0,1fr);
  }
  .kx-readonly-note a{
    grid-column:2;
    justify-self:start;
  }
  .kx-fieldrow.is-preview{
    grid-template-columns:auto minmax(0,1fr) auto;
  }
  .kx-fieldrow.is-preview .kx-fieldrow__preview-lock{
    display:none;
  }
  .kx-fieldrow.is-preview .kx-fieldrow__count{
    min-width:68px;
    font-size:10.5px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:10px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:31px;
    font-size:6px;
  }
}

/* R4X v2134 · mobile strip cleanup */


/* R4X v2130 · Nur kleines Wheel in Mein Bereich anpassen */
body[data-page="zentrale"] .cockpit-kompass-strip{
  grid-template-columns:auto minmax(0,1fr) auto;
  grid-template-areas:
    "ring top cta"
    "ring mission cta";
  gap:6px 14px;
  min-height:70px;
  padding:11px 16px;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ring{
  grid-area:ring;
  width:58px;
  height:58px;
  gap:2px;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
  font-size:13px;
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
  max-width:42px;
  font-size:6.8px;
  line-height:1.08;
  letter-spacing:.04em;
}
body[data-page="zentrale"] .cockpit-kompass-strip__top{
  grid-area:top;
  display:block;
  min-width:0;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  line-height:1.35;
}
body[data-page="zentrale"] .cockpit-kompass-strip__mission{
  grid-area:mission;
  min-width:0;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  line-height:1.4;
}
body[data-page="zentrale"] .cockpit-kompass-strip__cta{
  grid-area:cta;
  align-self:center;
  white-space:nowrap;
}
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:auto minmax(0,1fr) auto;
    grid-template-areas:
      "ring top top"
      "ring mission cta";
    gap:5px 10px;
    min-height:74px;
    padding:10px 12px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:54px;
    height:54px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:12px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:39px;
    font-size:6.5px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top,
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    justify-self:end;
    align-self:end;
  }
}
@media(max-width:420px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    min-height:78px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:52px;
    height:52px;
  }
}

/* ============================================================
   R4X v2860 · gefuehrter Praxisweg mit sichtbarem Start und Ziel
   ============================================================ */
.kx-pathpoint circle{
  stroke-width:2;
  vector-effect:non-scaling-stroke;
}
.kx-pathpoint text{
  font:800 10px/1 var(--r4x-font-body);
  letter-spacing:.13em;
}
.kx-pathpoint--start circle{
  fill:var(--r4x-success);
  stroke:rgba(255,255,255,.8);
  filter:drop-shadow(0 0 7px rgba(125,210,140,.48));
}
.kx-pathpoint--start text{ fill:var(--r4x-success); }
.kx-pathpoint--goal circle{
  fill:var(--r4x-gold);
  stroke:rgba(255,255,255,.84);
  filter:drop-shadow(0 0 8px rgba(212,175,55,.5));
}
.kx-pathpoint--goal text{ fill:var(--r4x-gold-soft); }
.kx-route-arrow{
  fill:rgba(212,175,55,.72);
  font:800 24px/1 var(--r4x-font-body);
  pointer-events:none;
}
.kx-routelegend{
  display:grid;
  grid-template-columns:auto minmax(72px,1fr) auto;
  align-items:center;
  gap:9px;
  width:min(300px,86%);
  margin:8px auto 0;
  color:var(--r4x-text-tertiary);
  font-size:9.5px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.kx-routelegend>span:first-child{ color:var(--r4x-success); }
.kx-routelegend>span:last-child{ color:var(--r4x-gold-soft); }
.kx-routelegend__line{
  position:relative;
  display:block;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--r4x-success),rgba(212,175,55,.7));
}
.kx-routelegend__line::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:7px;
  height:7px;
  border-top:2px solid var(--r4x-gold-soft);
  border-right:2px solid var(--r4x-gold-soft);
  transform:translateY(-50%) rotate(45deg);
}
.kx-center.is-complete{
  border-color:rgba(125,210,140,.58);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05),0 0 30px rgba(125,210,140,.14),0 14px 28px rgba(0,0,0,.34);
}
.kx-center.is-complete .kx-center__complete{ color:var(--r4x-success); }
.kx-center.is-complete small{ color:var(--r4x-text-primary); }
.kx-center.is-complete em{
  max-width:106px;
  color:var(--r4x-success);
  white-space:normal;
  text-align:center;
  line-height:1.25;
}

.kx-fieldlist__intro{
  margin:-3px 0 2px;
  color:var(--r4x-text-secondary);
  font-size:12.5px;
  line-height:1.5;
}
.kx-fieldrow{
  position:relative;
}
.kx-fieldrow__step{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:10px;
  background:rgba(255,255,255,.035);
  color:var(--r4x-text-tertiary);
  font-size:10.5px;
  font-weight:800;
  font-variant-numeric:tabular-nums;
  letter-spacing:.04em;
}
.kx-fieldrow.is-path-start{
  border-color:rgba(125,210,140,.42);
  background:linear-gradient(90deg,rgba(125,210,140,.08),rgba(255,255,255,.02));
}
.kx-fieldrow.is-path-start .kx-fieldrow__step{
  border-color:rgba(125,210,140,.45);
  background:rgba(125,210,140,.13);
  color:var(--r4x-success);
}
.kx-fieldrow.is-path-last{
  border-color:rgba(212,175,55,.34);
  background:linear-gradient(90deg,rgba(212,175,55,.075),rgba(255,255,255,.02));
}
.kx-fieldrow.is-path-last .kx-fieldrow__step{
  border-color:rgba(212,175,55,.42);
  background:rgba(212,175,55,.11);
  color:var(--r4x-gold-soft);
}
.kx-fieldrow__label{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}
.kx-fieldrow__milestone{
  display:block;
  font-size:8.5px;
  font-weight:800;
  letter-spacing:.11em;
  line-height:1.2;
  text-transform:uppercase;
}
.kx-fieldrow__milestone.is-start{ color:var(--r4x-success); }
.kx-fieldrow__milestone.is-last{ color:var(--r4x-gold-soft); }
.kx-pathgoal{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-top:4px;
  padding:14px;
  border:1px solid rgba(212,175,55,.4);
  border-radius:var(--r4x-radius-md);
  background:
    radial-gradient(circle at 0 0,rgba(212,175,55,.12),transparent 42%),
    linear-gradient(135deg,rgba(212,175,55,.075),rgba(255,255,255,.018));
}
.kx-pathgoal__marker{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border:1px solid rgba(212,175,55,.55);
  border-radius:50%;
  background:rgba(212,175,55,.12);
  color:var(--r4x-gold);
  font-size:20px;
  font-weight:800;
}
.kx-pathgoal div{ min-width:0; }
.kx-pathgoal small{
  display:block;
  margin-bottom:2px;
  color:var(--r4x-gold-soft);
  font-size:9px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.kx-pathgoal strong{
  display:block;
  color:var(--r4x-text-primary);
  font-size:14px;
  line-height:1.3;
}
.kx-pathgoal p{
  margin:3px 0 0;
  color:var(--r4x-text-secondary);
  font-size:11.5px;
  line-height:1.45;
}

/* --- 13. Segment: kein Praxisfeld, sondern offener nächster Schritt --- */
.kx-mystery{
  outline:none;
  transform-box:fill-box;
  transform-origin:center;
}
.kx-mystery__slice{
  fill:rgba(255,255,255,.018);
  stroke:rgba(255,255,255,.14);
  stroke-width:1.25;
  stroke-dasharray:3 4;
  transition:fill .25s ease,stroke .25s ease,filter .25s ease;
}
.kx-mystery__track{
  fill:rgba(255,255,255,.055);
  opacity:.75;
}
.kx-mystery__question,
.kx-mystery__nexxt{
  dominant-baseline:middle;
  pointer-events:none;
  fill:rgba(255,255,255,.42);
  font-family:var(--r4x-font-body);
  font-weight:800;
}
.kx-mystery__question{ font-size:29px; }
.kx-mystery__nexxt{
  display:none;
  font-size:9px;
  letter-spacing:.12em;
}
.kx-mystery.is-revealed{ cursor:pointer; }
.kx-mystery.is-revealed .kx-mystery__slice{
  fill:rgba(181,188,103,.17);
  stroke:rgba(225,198,91,.72);
  stroke-dasharray:none;
  filter:drop-shadow(0 0 9px rgba(125,210,140,.22)) drop-shadow(0 0 13px rgba(212,175,55,.18));
}
.kx-mystery.is-revealed .kx-mystery__track{
  fill:var(--r4x-gold);
  opacity:.9;
}
.kx-mystery.is-revealed .kx-mystery__question{ display:none; }
.kx-mystery.is-revealed .kx-mystery__nexxt{
  display:block;
  fill:#f2dc84;
}
.kx-mystery.is-revealed:hover .kx-mystery__slice,
.kx-mystery.is-revealed:focus-visible .kx-mystery__slice{
  fill:rgba(181,188,103,.26);
  stroke:#f2dc84;
  filter:drop-shadow(0 0 12px rgba(125,210,140,.32)) drop-shadow(0 0 16px rgba(212,175,55,.28));
}
.kx-completion-sweep{
  fill:none;
  stroke:#f2dc84;
  stroke-width:5;
  stroke-linecap:round;
  stroke-dasharray:1;
  stroke-dashoffset:1;
  opacity:0;
  pointer-events:none;
  filter:drop-shadow(0 0 5px rgba(125,210,140,.78)) drop-shadow(0 0 9px rgba(212,175,55,.72));
}
.kx-wheelwrap.is-celebrating .kx-completion-sweep{
  animation:kx-completion-sweep 1.45s cubic-bezier(.4,0,.2,1) forwards;
}
.kx-wheelwrap.is-celebrating .kx-mystery{
  animation:kx-nexxt-reveal .68s cubic-bezier(.18,.84,.26,1) 1.25s both;
}
.kx-wheelwrap.is-celebrating .kx-center.is-complete{
  animation:kx-completion-center .72s ease 1.5s both;
}
@keyframes kx-completion-sweep{
  0%{ opacity:0; stroke-dashoffset:1; }
  12%{ opacity:1; }
  88%{ opacity:1; }
  100%{ opacity:0; stroke-dashoffset:0; }
}
@keyframes kx-nexxt-reveal{
  0%{ opacity:.2; transform:scale(.82); filter:brightness(.7); }
  65%{ opacity:1; transform:scale(1.045); filter:brightness(1.35); }
  100%{ opacity:1; transform:scale(1); filter:brightness(1); }
}
@keyframes kx-completion-center{
  0%{ box-shadow:inset 0 0 0 1px rgba(255,255,255,.05),0 0 0 rgba(125,210,140,0),0 14px 28px rgba(0,0,0,.34); }
  55%{ box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 0 42px rgba(125,210,140,.28),0 14px 28px rgba(0,0,0,.34); }
  100%{ box-shadow:inset 0 0 0 1px rgba(255,255,255,.05),0 0 30px rgba(125,210,140,.14),0 14px 28px rgba(0,0,0,.34); }
}

/* --- Abschlussbotschaft --- */
.kx-nexxt-dialog{
  position:fixed;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  margin:0;
  width:min(430px,calc(100vw - 32px));
  padding:28px;
  border:1px solid rgba(212,175,55,.48);
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 0,rgba(125,210,140,.13),transparent 42%),
    linear-gradient(145deg,#1b1b20,#111115 72%);
  color:var(--r4x-text-primary);
  box-shadow:0 28px 80px rgba(0,0,0,.68),inset 0 1px 0 rgba(255,255,255,.055);
  text-align:center;
}
.kx-nexxt-dialog::backdrop{
  background:rgba(4,4,7,.76);
  backdrop-filter:blur(5px);
}
.kx-nexxt-dialog__close{
  position:absolute;
  top:10px;
  right:12px;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  padding:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  background:rgba(255,255,255,.035);
  color:var(--r4x-text-secondary);
  font:400 23px/1 var(--r4x-font-body);
  cursor:pointer;
}
.kx-nexxt-dialog__close:hover,
.kx-nexxt-dialog__close:focus-visible{
  border-color:rgba(212,175,55,.55);
  color:#fff;
  outline:none;
}
.kx-nexxt-dialog__mark{
  display:grid;
  place-items:center;
  width:70px;
  height:70px;
  margin:0 auto 16px;
  border:1px solid rgba(212,175,55,.58);
  border-radius:50%;
  background:linear-gradient(145deg,rgba(125,210,140,.15),rgba(212,175,55,.14));
  color:#f2dc84;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  box-shadow:0 0 30px rgba(125,210,140,.12);
}
.kx-nexxt-dialog .kx-eyebrow{ display:block; margin-bottom:7px; color:var(--r4x-success); }
.kx-nexxt-dialog>strong{
  display:block;
  margin-bottom:14px;
  color:#fff;
  font-size:clamp(21px,5vw,27px);
  line-height:1.2;
}
.kx-nexxt-dialog p{
  margin:7px 0;
  color:var(--r4x-text-secondary);
  font-size:14px;
  line-height:1.55;
}
.kx-nexxt-dialog .kx-nexxt-dialog__claim{
  margin:17px 0 20px;
  color:var(--r4x-gold-soft);
  font-weight:800;
  letter-spacing:.02em;
}
.kx-nexxt-dialog .cockpit-btn{ width:100%; justify-content:center; }

@media(max-width:520px){
  .kx-pathpoint text{ font-size:9px; }
  .kx-route-arrow{ font-size:20px; }
  .kx-fieldrow{ gap:8px; padding:10px; }
  .kx-fieldrow__step{ width:27px; height:27px; border-radius:9px; font-size:9.5px; }
  .kx-fieldrow__icon{ width:18px; font-size:15px; }
  .kx-fieldrow__count{ min-width:68px; font-size:10.5px; }
  .kx-fieldrow__milestone{ font-size:7.8px; letter-spacing:.08em; }
  .kx-pathgoal{ padding:12px; }
  .kx-pathgoal__marker{ width:36px; height:36px; }
  .kx-mystery__question{ font-size:25px; }
  .kx-mystery__nexxt{ font-size:8px; }
  .kx-nexxt-dialog{ padding:25px 20px 20px; border-radius:17px; }
}

@media(prefers-reduced-motion:reduce){
  .kx-routelegend__line::after{ transition:none; }
  .kx-wheelwrap.is-celebrating .kx-completion-sweep,
  .kx-wheelwrap.is-celebrating .kx-mystery,
  .kx-wheelwrap.is-celebrating .kx-center.is-complete{ animation:none; }
  .kx-completion-sweep{ display:none; }
}

/* v2637 · Zentrale: kompakte Fortschrittsvorschau wie im frueheren Mein-Bereich-Stand. */
body[data-page="zentrale"] .cockpit-kompass-strip{
  grid-template-columns:54px minmax(0,1fr) auto;
  grid-template-areas:
    "ring top cta"
    "ring mission cta";
  gap:4px 12px;
  min-height:72px;
  padding:9px 13px;
  align-items:center;
}
body[data-page="zentrale"] .cockpit-kompass-strip .cockpit-kompass-strip__ring,
body[data-page="zentrale"] .cockpit-kompass-strip.is-preview .cockpit-kompass-strip__ring,
body[data-page="zentrale"] .cockpit-kompass-strip.is-readonly .cockpit-kompass-strip__ring{
  grid-area:ring;
  width:54px;
  height:54px;
  align-self:center;
  background:
    radial-gradient(circle at center,rgba(17,17,22,.98) 0 57%,transparent 58%),
    conic-gradient(rgba(212,175,55,.72) calc(var(--kompass-pct,0) * 1%),rgba(255,255,255,.1) 0);
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
  font-size:12px;
  line-height:1;
}
body[data-page="zentrale"] .cockpit-kompass-strip__top{
  grid-area:top;
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  min-width:0;
  gap:0;
  font-size:13px;
  line-height:1.25;
}
body[data-page="zentrale"] .cockpit-kompass-strip__meta{
  display:inline;
  width:auto;
  margin:0;
  white-space:normal;
}
body[data-page="zentrale"] .cockpit-kompass-strip__mission{
  grid-area:mission;
  min-width:0;
  font-size:13px;
  line-height:1.3;
}
body[data-page="zentrale"] .cockpit-kompass-strip__cta{
  grid-area:cta;
  align-self:center;
  justify-self:end;
  margin:0;
  white-space:nowrap;
  font-size:12.5px;
}
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:52px minmax(0,1fr);
    grid-template-areas:
      "ring top"
      "ring mission"
      "ring cta";
    gap:3px 10px;
    min-height:82px;
    padding:8px 10px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip .cockpit-kompass-strip__ring,
  body[data-page="zentrale"] .cockpit-kompass-strip.is-preview .cockpit-kompass-strip__ring,
  body[data-page="zentrale"] .cockpit-kompass-strip.is-readonly .cockpit-kompass-strip__ring{
    width:52px;
    height:52px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top,
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    font-size:11.5px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    justify-self:start;
    font-size:11.5px;
  }
}


/* R4X v2131 · Mobile: kleines Wheel deutlich größer, Text kompakter angeordnet */
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:auto minmax(0,1fr) auto;
    grid-template-areas:
      "ring top cta"
      "ring mission mission";
    gap:4px 10px;
    min-height:88px;
    padding:8px 10px;
    align-items:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:80px;
    height:80px;
    gap:2px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:14px;
    line-height:1;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:52px;
    font-size:8px;
    line-height:1.05;
    letter-spacing:.04em;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top{
    grid-area:top;
    min-width:0;
    font-size:12px;
    line-height:1.2;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    grid-area:mission;
    min-width:0;
    font-size:12px;
    line-height:1.24;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    grid-area:cta;
    align-self:start;
    justify-self:end;
    font-size:12px;
    line-height:1.15;
    padding-top:2px;
    white-space:nowrap;
  }
}
@media(max-width:420px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    min-height:84px;
    padding:8px 9px;
    gap:3px 8px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:76px;
    height:76px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:13px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:48px;
    font-size:7.6px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top,
  body[data-page="zentrale"] .cockpit-kompass-strip__mission,
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    font-size:11.5px;
  }
}


/* R4X v2132 · Desktop: kleines Wheel ~50% größer, CTA in letzte Zeile */
@media(min-width:761px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
      "ring top"
      "ring mission"
      "ring cta";
    gap:4px 16px;
    min-height:102px;
    padding:12px 16px;
    align-items:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:88px;
    height:88px;
    gap:2px;
    align-self:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:17px;
    line-height:1;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:58px;
    font-size:8.5px;
    line-height:1.05;
    letter-spacing:.04em;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top{
    grid-area:top;
    min-width:0;
    font-size:14px;
    line-height:1.24;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    grid-area:mission;
    min-width:0;
    font-size:14px;
    line-height:1.28;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    grid-area:cta;
    justify-self:start;
    align-self:start;
    font-size:14px;
    line-height:1.2;
    white-space:nowrap;
  }
}


/* R4X v2133 · Nur Mobile: bessere Zeilenaufteilung ohne Abschneiden */
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:auto minmax(0,1fr) auto;
    grid-template-areas:
      "ring top top"
      "ring mission cta";
    gap:5px 10px;
    min-height:92px;
    padding:9px 10px;
    align-items:start;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:84px;
    height:84px;
    gap:2px;
    align-self:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:14px;
    line-height:1;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:56px;
    font-size:8px;
    line-height:1.04;
    letter-spacing:.035em;
    overflow:visible;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top{
    grid-area:top;
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:0;
    min-width:0;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:12px;
    line-height:1.18;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top strong,
  body[data-page="zentrale"] .cockpit-kompass-strip__name{
    display:inline;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__meta{
    display:block;
    width:100%;
    margin-top:2px;
    white-space:normal;
    line-height:1.2;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    grid-area:mission;
    min-width:0;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:12px;
    line-height:1.24;
    align-self:start;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    grid-area:cta;
    justify-self:end;
    align-self:start;
    font-size:12px;
    line-height:1.15;
    padding-top:1px;
    white-space:nowrap;
  }
}
@media(max-width:420px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    min-height:88px;
    padding:8px 9px;
    gap:4px 8px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:80px;
    height:80px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:13px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:54px;
    font-size:7.8px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top,
  body[data-page="zentrale"] .cockpit-kompass-strip__mission,
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    font-size:11.75px;
  }
}

/* v2637 final cascade: spätere Altregeln dürfen die kompakte Vorschau nicht übersteuern. */
body[data-page="zentrale"] .cockpit-kompass-strip{
  grid-template-columns:54px minmax(0,1fr) auto;
  grid-template-areas:"ring top cta" "ring mission cta";
  gap:4px 12px;
  min-height:72px;
  padding:9px 13px;
  align-items:center;
}
body[data-page="zentrale"] .cockpit-kompass-strip .cockpit-kompass-strip__ring{
  grid-area:ring;
  width:54px;
  height:54px;
  align-self:center;
  background:radial-gradient(circle at center,rgba(17,17,22,.98) 0 57%,transparent 58%),conic-gradient(rgba(212,175,55,.72) calc(var(--kompass-pct,0) * 1%),rgba(255,255,255,.1) 0);
}
body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{font-size:12px;line-height:1}
body[data-page="zentrale"] .cockpit-kompass-strip__top{grid-area:top;display:flex;align-items:baseline;flex-wrap:wrap;min-width:0;gap:0;font-size:13px;line-height:1.25}
body[data-page="zentrale"] .cockpit-kompass-strip__meta{display:inline;width:auto;margin:0;white-space:normal}
body[data-page="zentrale"] .cockpit-kompass-strip__mission{grid-area:mission;min-width:0;font-size:13px;line-height:1.3}
body[data-page="zentrale"] .cockpit-kompass-strip__cta{grid-area:cta;align-self:center;justify-self:end;margin:0;white-space:nowrap;font-size:12.5px}
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{grid-template-columns:52px minmax(0,1fr);grid-template-areas:"ring top" "ring mission" "ring cta";gap:3px 10px;min-height:82px;padding:8px 10px}
  body[data-page="zentrale"] .cockpit-kompass-strip .cockpit-kompass-strip__ring{width:52px;height:52px}
  body[data-page="zentrale"] .cockpit-kompass-strip__top,body[data-page="zentrale"] .cockpit-kompass-strip__mission{font-size:11.5px}
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{justify-self:start;font-size:11.5px}
}


/* R4X v2134 · Nur Mobile: saubere Leseführung, CTA in eigener letzter Zeile */
@media(max-width:760px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
      "ring top"
      "ring mission"
      "ring cta";
    gap:4px 10px;
    min-height:92px;
    padding:9px 10px;
    align-items:start;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:84px;
    height:84px;
    gap:2px;
    align-self:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:14px;
    line-height:1;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:58px;
    font-size:7.6px;
    line-height:1.04;
    letter-spacing:.03em;
    white-space:normal;
    overflow:visible;
    text-align:center;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top{
    grid-area:top;
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:0;
    min-width:0;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:12px;
    line-height:1.18;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top strong,
  body[data-page="zentrale"] .cockpit-kompass-strip__name{
    display:inline;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__meta{
    display:block;
    width:100%;
    margin-top:2px;
    white-space:nowrap;
    overflow:visible;
    text-overflow:clip;
    line-height:1.2;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__mission{
    grid-area:mission;
    min-width:0;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:12px;
    line-height:1.24;
    align-self:start;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    grid-area:cta;
    justify-self:end;
    align-self:start;
    margin-top:1px;
    font-size:12px;
    line-height:1.15;
    white-space:nowrap;
  }
}
@media(max-width:420px){
  body[data-page="zentrale"] .cockpit-kompass-strip{
    min-height:88px;
    padding:8px 9px;
    gap:4px 8px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ring{
    width:80px;
    height:80px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringvalue{
    font-size:13px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__ringlabel{
    max-width:56px;
    font-size:7.3px;
  }
  body[data-page="zentrale"] .cockpit-kompass-strip__top,
  body[data-page="zentrale"] .cockpit-kompass-strip__mission,
  body[data-page="zentrale"] .cockpit-kompass-strip__cta{
    font-size:11.75px;
  }
}
