/* R4X Kompass v2127 · Free-Vorschau + schreibgeschuetzter Fortschritt
   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;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
.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:34px;
  text-align:right;
  color:var(--r4x-text-secondary);
  font-size:12px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
.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__meta{ color:var(--r4x-text-tertiary); font-size:12px; font-weight:600; }
.kx-mission__actions{ display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }

.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 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;
  }
}


/* 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;
  }
}
