/* ============================================================
   FinanceBot Dashboard, Richtung C "Kinetic"
   Anzeige: Anybody (variabel, wdth + wght)
   Zahlen:  Martian Mono (variabel, wdth + wght)
   ============================================================ */

:root {
  --bg:      #08090b;
  --bg-lift: #0d0f13;
  --ink:     #f4f0e8;
  --ink-2:   #b9b5ac;
  --dim:     #8e8a81;
  --line:    #1c1f24;
  --line-2:  #2a2e35;

  --up:   #b6f24c;
  --down: #ff5f45;
  --fc:   #35e0c4;

  --up-soft:   rgba(182, 242, 76, .13);
  --down-soft: rgba(255, 95, 69, .13);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --pad: clamp(20px, 3.6vw, 64px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Martian Mono", ui-monospace, monospace;
  font-variation-settings: "wdth" 87.5, "wght" 400;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 70vh;
  background:
    radial-gradient(60% 100% at 22% 0%, rgba(53, 224, 196, .07), transparent 70%),
    radial-gradient(50% 90% at 82% 6%, rgba(182, 242, 76, .05), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Korn ------------------------------------------------------ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .13;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 var(--pad) 0;
}

/* Typo-Grundlagen ------------------------------------------- */
h1, h2, h3, .price__num, .big, .stat b, .sym {
  font-family: "Anybody", "Martian Mono", sans-serif;
  font-variation-settings: "wdth" 112, "wght" 700;
  margin: 0;
}

.h2 {
  font-size: clamp(20px, 2vw, 30px);
  font-variation-settings: "wdth" 108, "wght" 620;
  letter-spacing: -.03em;
  line-height: 1.06;
  max-width: 30ch;
}

.h3 {
  font-family: "Martian Mono", monospace;
  font-variation-settings: "wdth" 87.5, "wght" 500;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 18px;
}

.note {
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  font-size: 11.5px;
  line-height: 1.62;
  margin: 14px 0 0;
  max-width: 46ch;
}
.note--tight { margin-top: 10px; max-width: 62ch; }

/* ============================================================
   KOPF
   ============================================================ */
.head {
  display: grid;
  grid-template-columns: 1fr minmax(170px, auto);
  align-items: start;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(30px, 4vw, 62px) 0 38px;
}
.head__main { min-width: 0; }
.head__price { margin-top: clamp(14px, 2vw, 26px); }

.sym {
  font-size: clamp(22px, 1.7vw, 27px);
  font-variation-settings: "wdth" 128, "wght" 800;
  letter-spacing: -.035em;
  line-height: 1;
}
.sym__quote { color: var(--dim); font-variation-settings: "wdth" 128, "wght" 400; }

.sym__meta {
  margin: 12px 0 0;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
.sym__meta i { color: var(--line-2); font-style: normal; padding: 0 4px; }
.sym__meta b { color: var(--ink-2); font-variation-settings: "wdth" 87.5, "wght" 600; }

.price {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 1.8vw, 30px);
  flex-wrap: wrap;
}

.price__num {
  font-size: clamp(74px, 9.4vw, 152px);
  font-variation-settings: "wdth" 118, "wght" 800;
  letter-spacing: -.055em;
  line-height: .78;
  font-variant-numeric: tabular-nums;
  display: block;
}

.price__chg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Martian Mono", monospace;
  font-size: clamp(15px, 1.4vw, 21px);
  font-variation-settings: "wdth" 87.5, "wght" 600;
  letter-spacing: -.02em;
  padding-bottom: clamp(4px, .6vw, 12px);
}
.price__chg[data-dir="up"]   { color: var(--up); }
.price__chg[data-dir="down"] { color: var(--down); }
.price__chg[data-dir="down"] .arrow { transform: rotate(180deg); }

.arrow {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
}

.range { margin-top: 30px; max-width: 660px; }
.range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  margin-bottom: 8px;
}
.range__labels b { color: var(--ink-2); font-variation-settings: "wdth" 87.5, "wght" 600; letter-spacing: 0; }
.range__track {
  position: relative;
  height: 4px;
  background: var(--line);
}
.range__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255,95,69,.35), var(--up));
}
.range__pin {
  position: absolute;
  top: -5px; bottom: -5px;
  left: 0;
  width: 2px;
  background: var(--ink);
}

.head__rail { margin: 0; display: grid; gap: 15px; justify-items: end; text-align: right; }
.head__rail div { display: grid; gap: 3px; }
.head__rail dt {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
.head__rail dd {
  margin: 0;
  font-size: 14px;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
.head__rail .is-warn { color: var(--down); }

/* ============================================================
   REGISTER
   ============================================================ */
.reg {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: clamp(24px, 3vw, 56px);
  border-top: 1px solid var(--line);
  padding: clamp(34px, 3.6vw, 58px) 0;
}
.reg--last { padding-bottom: 44px; }

.reg__rail { position: relative; }
.rail__lbl {
  position: sticky;
  top: 28px;
  max-width: 120px;
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 500;
  line-height: 1.75;
}
.rail__lbl::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fc);
  margin-bottom: 12px;
}

/* ============================================================
   CHART
   ============================================================ */
.chart__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.legend {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.legend li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.sw { width: 16px; height: 2px; display: block; }
.sw--fast { background: var(--ink); }
.sw--slow { background: #6f7a85; }
.sw--med  { background: repeating-linear-gradient(90deg, var(--fc) 0 4px, transparent 4px 7px); height: 2px; }
.sw--b50  { background: rgba(53,224,196,.42); height: 9px; }
.sw--b80  { background: rgba(53,224,196,.16); height: 9px; }

.chart { margin: 0; position: relative; }
.chart__svg { display: block; width: 100%; height: 440px; }
.chart__rsi { display: block; width: 100%; height: 108px; margin-top: 10px; }

.axis {
  position: relative;
  height: 30px;
  border-top: 1px solid var(--line);
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}
.axis span {
  position: absolute;
  top: 9px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.axis span::before {
  content: "";
  position: absolute;
  top: -9px; left: 50%;
  width: 1px; height: 5px;
  background: var(--line-2);
}
.axis span:first-child { transform: none; }
.axis span:first-child::before { left: 0; }
.axis .is-future {
  color: var(--fc);
  font-variation-settings: "wdth" 75, "wght" 500;
  letter-spacing: .12em;
  transform: none;
  padding-left: 8px;
}
.axis .is-future::before { background: var(--fc); left: 0; }

.chart__cap {
  margin: 20px 0 0;
  color: var(--ink-2);
  font-size: 11.5px;
  font-variation-settings: "wdth" 87.5, "wght" 300;
  line-height: 1.62;
  max-width: 68ch;
}

/* Fadenkreuz-Auslesung */
.read {
  position: absolute;
  top: 0; left: 0;
  min-width: 176px;
  background: rgba(8, 9, 11, .93);
  border: 1px solid var(--line-2);
  padding: 11px 13px 12px;
  pointer-events: none;
  z-index: 6;
  transition: transform 90ms linear, opacity 140ms var(--ease);
}
.read__t {
  font-size: 9.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.read__rows { display: grid; gap: 4px; font-size: 11px; }
.read__rows div { display: flex; justify-content: space-between; gap: 22px; }
.read__rows span { color: var(--dim); font-variation-settings: "wdth" 75, "wght" 300; }
.read__rows b { font-variation-settings: "wdth" 87.5, "wght" 600; letter-spacing: -.02em; }
.read__rows .up   b { color: var(--up); }
.read__rows .down b { color: var(--down); }
.read__rows .fcv  b { color: var(--fc); }

/* SVG-Teile */
.zone-band     { transition: fill-opacity 260ms var(--ease); }
.zone-band--near { animation: zonepulse 3.2s var(--ease-io) infinite; }
@keyframes zonepulse {
  0%, 100% { fill-opacity: .07; }
  50%      { fill-opacity: .19; }
}
.zone-mid { stroke-dasharray: 2 5; stroke-width: 1; }
.zone-hair { stroke-width: 1; stroke-opacity: .18; }
.zone-tag {
  font-family: "Martian Mono", monospace;
  font-size: 9px;
  font-variation-settings: "wdth" 75, "wght" 500;
  letter-spacing: .07em;
}
.grid-line { stroke: var(--line); stroke-width: 1; }
.axis-lbl {
  font-family: "Martian Mono", monospace;
  font-size: 9.5px;
  font-variation-settings: "wdth" 75, "wght" 300;
  fill: var(--dim);
  letter-spacing: .04em;
}
.now-line { stroke: var(--fc); stroke-width: 1; stroke-dasharray: 2 3; opacity: .6; }
.now-lbl {
  font-family: "Martian Mono", monospace;
  font-size: 9px;
  font-variation-settings: "wdth" 75, "wght" 600;
  letter-spacing: .18em;
  fill: var(--ink);
}
.now-lbl--fc { fill: var(--fc); }
.band-50, .band-80 { fill: var(--fc); }
.band-80 { opacity: .16; animation: breathe80 11s var(--ease-io) infinite; }
.band-50 { opacity: .31; animation: breathe50 7.5s var(--ease-io) infinite; }
@keyframes breathe80 { 0%,100% { opacity: .11; } 50% { opacity: .21; } }
@keyframes breathe50 { 0%,100% { opacity: .24; } 50% { opacity: .38; } }
.median-path {
  fill: none;
  stroke: var(--fc);
  stroke-width: 2;
  stroke-dasharray: 5 4;
  stroke-linecap: butt;
}
.median-draw { animation: draw 380ms var(--ease) both; }
@keyframes draw { from { stroke-dashoffset: var(--len); } to { stroke-dashoffset: 0; } }
.median-dot { fill: var(--fc); }
.ema-fast { fill: none; stroke: var(--ink); stroke-width: 1.4; opacity: .9; }
.ema-slow { fill: none; stroke: #6f7a85; stroke-width: 1.4; }
.rsi-line { fill: none; stroke: var(--fc); stroke-width: 1.4; }
.rsi-fill { fill: var(--fc); opacity: .07; }
.cross { stroke: var(--ink); stroke-width: 1; stroke-dasharray: 2 3; opacity: .55; }
.cross-dot { fill: none; stroke: var(--ink); stroke-width: 1.2; }
.px-tag { fill: var(--ink); }
.px-tag-txt {
  font-family: "Martian Mono", monospace;
  font-size: 9.5px;
  font-variation-settings: "wdth" 75, "wght" 600;
  fill: var(--bg);
}

/* ============================================================
   MESSWERTE
   ============================================================ */
.meters {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 0;
}
.meter { padding: 0 clamp(20px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.meter:first-child { padding-left: 0; border-left: 0; }
.meter:last-child { padding-right: 0; }

.rsi { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; max-width: 470px; }
.rsi li { display: grid; grid-template-columns: 42px 1fr 52px; align-items: center; gap: 14px; }
.rsi__tf {
  font-size: 11px; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
  letter-spacing: .05em;
}
.rsi__tf.is-primary { color: var(--ink); font-variation-settings: "wdth" 87.5, "wght" 700; }
.rsi__track { position: relative; height: 22px; background: var(--line); overflow: hidden; }
.rsi__track::before, .rsi__track::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line-2);
}
.rsi__track::before { left: 30%; }
.rsi__track::after  { left: 70%; }
.rsi__bar {
  position: absolute; inset: 0 auto 0 0;
  width: 0;
  background: var(--fc);
  opacity: .8;
}
.rsi__bar.is-hot  { background: var(--down); }
.rsi__bar.is-cold { background: #4d90ff; }
.rsi__val {
  text-align: right;
  font-size: 14px;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  letter-spacing: -.03em;
}

.big {
  font-size: clamp(38px, 4vw, 60px);
  font-variation-settings: "wdth" 112, "wght" 750;
  letter-spacing: -.05em;
  line-height: .9;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-variant-numeric: tabular-nums;
}
.big__u {
  font-family: "Martian Mono", monospace;
  font-size: .34em;
  font-variation-settings: "wdth" 87.5, "wght" 400;
  color: var(--dim);
  letter-spacing: 0;
}

.vbar { position: relative; height: 3px; background: var(--line); margin-top: 20px; max-width: 470px; }
.vbar__norm { position: absolute; top: -4px; bottom: -4px; left: 50%; width: 1px; background: var(--line-2); }
.vbar__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0; background: var(--down);
}
.vbar__fill.is-strong { background: var(--up); }

.pair {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin: 0 0 10px;
  max-width: 470px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  letter-spacing: .08em;
}
.pair b {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.03em;
  font-variation-settings: "wdth" 87.5, "wght" 600;
}

/* ============================================================
   TABELLE
   ============================================================ */
.tbl {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-variant-numeric: tabular-nums;
}
.tbl th {
  text-align: left;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
  padding: 0 16px 11px 0;
  border-bottom: 1px solid var(--line-2);
  white-space: nowrap;
}
.tbl td {
  padding: 15px 16px 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-variation-settings: "wdth" 87.5, "wght" 400;
  vertical-align: baseline;
}
.tbl .num { text-align: right; padding-right: 0; }
.tbl th.num { text-align: right; padding-right: 0; }
.tbl tr:last-child td { border-bottom: 0; }

.zname { display: flex; align-items: baseline; gap: 10px; }
.zname i {
  width: 9px; height: 9px; flex: none;
  border-radius: 50%;
  transform: translateY(1px);
}
.z-res i { background: var(--down); }
.z-sup i { background: var(--up); }
.zname b { font-variation-settings: "wdth" 87.5, "wght" 600; }
.zname em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
  margin-top: 3px;
}
.tbl .tests, .tbl th.tests { text-align: left; white-space: nowrap; padding-right: 40px; }
.dots { display: inline-flex; gap: 3px; vertical-align: middle; margin-left: 10px; }
.dots i { width: 2px; height: 9px; background: var(--ink-2); display: block; }
.dist {
  display: inline-flex;
  align-items: baseline;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.dist--res { color: var(--down); }
.dist--sup { color: var(--up); }
/* Richtung als Form, nicht als zweite Farbe */
.dist__d {
  width: 0;
  height: 0;
  flex: none;
  margin-right: 8px;
  transform: translateY(-2px);
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 5px solid currentColor;
}
.dist__d.is-up { border-top: 0; border-bottom: 5px solid currentColor; }
/* nur fuer Vorlesegeraete */
.dist__w {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.tbl tr.is-near td { background: rgba(244, 240, 232, .035); }

/* ============================================================
   TREFFERQUOTE
   ============================================================ */
.acc { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 72px); align-items: start; }
.acc__grid { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 52px); margin-top: 30px; }
.stat { margin: 0; display: grid; gap: 8px; }
.stat b {
  font-size: clamp(34px, 3.6vw, 54px);
  font-variation-settings: "wdth" 112, "wght" 750;
  letter-spacing: -.05em;
  line-height: .9;
  font-variant-numeric: tabular-nums;
}
.stat span {
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
  max-width: 24ch;
}
.acc__chart svg { width: 100%; height: 150px; display: block; }
.err-bar { transition: opacity 200ms var(--ease); }
.err-in  { fill: var(--fc); }
.err-out { fill: var(--down); }
.err-zero { stroke: var(--line-2); stroke-width: 1; }
.err-band { fill: rgba(53, 224, 196, .075); }
.err-edge { stroke: rgba(53, 224, 196, .32); stroke-width: 1; stroke-dasharray: 3 4; }

/* ============================================================
   EREIGNISSE UND HINWEISE
   ============================================================ */
.cols { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 72px); align-items: start; }

.events, .advice { list-style: none; margin: 26px 0 0; padding: 0; }

.events li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-variation-settings: "wdth" 87.5, "wght" 300;
  line-height: 1.55;
}
.events li:last-child { border-bottom: 0; }
.events time {
  color: var(--dim);
  font-size: 11px;
  font-variation-settings: "wdth" 75, "wght" 400;
  letter-spacing: .04em;
}
.events .ev-k {
  display: block;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-variation-settings: "wdth" 75, "wght" 500;
}
.ev--warn .ev-k { color: var(--down); }
.ev--good .ev-k { color: var(--up); }
.ev--flat .ev-k { color: var(--dim); }
.ev--soon .ev-k { color: var(--fc); }

.advice li {
  padding: 0 0 18px 30px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 13px;
  font-variation-settings: "wdth" 87.5, "wght" 300;
  line-height: 1.68;
  color: var(--ink);
  max-width: 62ch;
}
.advice li:last-child { border-bottom: 0; }
.advice li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 14px; height: 1px;
  background: var(--fc);
}

.stopline {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  border-left: 1px solid var(--down);
  padding-left: 16px;
  line-height: 1.6;
}
.stopline b { color: var(--down); font-variation-settings: "wdth" 87.5, "wght" 700; letter-spacing: -.02em; }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 24px 0 44px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}

/* ============================================================
   AUFTRITT
   ============================================================ */
.rise {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 360ms var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   SCHMALER
   ============================================================ */
@media (max-width: 1400px) {
  .meters { grid-template-columns: 1.15fr 1fr; }
  .meter { padding: 0 0 0 clamp(20px, 2.6vw, 44px); border-left: 1px solid var(--line); }
  .meter:nth-child(odd) { padding-left: 0; border-left: 0; }
  .meter:nth-child(n+3) { padding-top: 32px; margin-top: 30px; border-top: 1px solid var(--line); }
}

@media (max-width: 1180px) {
  .reg { grid-template-columns: 1fr; gap: 18px; }
  .rail__lbl { position: static; }
  .rail__lbl br { display: none; }
  .rail__lbl::before { margin-bottom: 8px; }
  .acc, .cols { grid-template-columns: 1fr; }
  .chart__svg { height: 380px; }
}

@media (max-width: 900px) {
  .meter { padding-left: clamp(16px, 3vw, 28px); }
  .chart__svg { height: 320px; }
  .tbl thead th:nth-child(4), .tbl td:nth-child(4) { display: none; }
}

@media (max-width: 640px) {
  .head { grid-template-columns: 1fr; }
  .head__rail { justify-self: start; justify-items: start; text-align: left; }
  .tbl thead th:nth-child(5), .tbl td:nth-child(5) { display: none; }
  .legend { gap: 12px; }
}

/* ============================================================
   RUHE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rise { opacity: 1; transform: none; }
  .band-80 { opacity: .16; }
  .band-50 { opacity: .3; }
  .zone-band--near { fill-opacity: .16; }
}

/* ============================================================
   HINWEISLEISTE IM KOPF
   ============================================================ */
.banner {
  margin: 14px 0 0;
  padding: 5px 0 5px 13px;
  border-left: 2px solid var(--line-2);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 500;
}
.banner--stale { border-left-color: var(--down); color: var(--down); }

/* ============================================================
   LEERSTAND
   ============================================================ */
.none, .none-li {
  margin: 0;
  color: var(--dim);
  font-size: 11.5px;
  letter-spacing: .08em;
  font-variation-settings: "wdth" 87.5, "wght" 300;
  list-style: none;
}
.none-row td {
  color: var(--dim);
  font-size: 11.5px;
  letter-spacing: .08em;
  font-variation-settings: "wdth" 87.5, "wght" 300;
}

/* gemeinsame Richtungsfarben */
.is-up   { color: var(--up); }
.is-down { color: var(--down); }
.is-flat { color: var(--dim); }

/* ============================================================
   MARKTUMFELD
   ============================================================ */
.risk {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  flex-wrap: wrap;
  margin: 0 0 clamp(26px, 3vw, 42px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.risk__k {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.risk__v {
  font-family: "Anybody", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-variation-settings: "wdth" 112, "wght" 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}
.risk.is-risk-on  .risk__v { color: var(--up); }
.risk.is-risk-off .risk__v { color: var(--down); }
.risk__scale { display: inline-flex; align-items: center; gap: 8px; }
.risk__scale i {
  width: 22px; height: 2px;
  background: var(--line-2);
  display: block;
}
.risk__scale i.on { background: var(--ink); height: 4px; }
.risk__fg {
  margin-left: auto;
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.risk__fg--none, .risk--none { color: var(--dim); }

.mkt {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.mkt__col { padding: 0 clamp(20px, 2.4vw, 44px); border-left: 1px solid var(--line); min-width: 0; }
.mkt__col:first-child { padding-left: 0; border-left: 0; }
.mkt__col:last-child  { padding-right: 0; }
.h3--sp { margin-top: 30px; }

.quotes { display: grid; gap: 0; max-width: 460px; }
.q {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.q__k {
  font-size: 10.5px; letter-spacing: .16em; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 500;
}
.q__v {
  font-size: 19px; letter-spacing: -.03em;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  font-variant-numeric: tabular-nums;
}
.q__c {
  font-size: 12px; letter-spacing: -.02em;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  font-variant-numeric: tabular-nums;
}

.brd { margin-top: 24px; max-width: 460px; }
.brd__head {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  margin-bottom: 8px;
}
.brd__track { position: relative; height: 4px; background: var(--down); }
.brd__up { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--up); }

.rel {
  margin: 22px 0 0;
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
.rel b {
  font-size: 15px; letter-spacing: -.03em;
  font-variation-settings: "wdth" 87.5, "wght" 700;
  margin-left: 6px;
}

.lead { margin-top: 22px; display: grid; gap: 12px; max-width: 460px; }
.ll { display: grid; grid-template-columns: 112px 1fr; gap: 14px; align-items: baseline; }
.ll__k {
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}
.ll__row { display: flex; flex-wrap: wrap; gap: 14px; font-size: 11.5px; font-variant-numeric: tabular-nums; }
.ll__i { display: inline-flex; gap: 6px; font-variation-settings: "wdth" 87.5, "wght" 400; }
.ll__i b { color: var(--ink); font-variation-settings: "wdth" 87.5, "wght" 600; letter-spacing: .04em; }

.idx { list-style: none; margin: 0; padding: 0; }
.idx li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.idx__n { color: var(--ink); font-variation-settings: "wdth" 87.5, "wght" 400; }
.idx__p { color: var(--ink-2); font-variation-settings: "wdth" 87.5, "wght" 500; letter-spacing: -.02em; }
.idx__c { font-variation-settings: "wdth" 87.5, "wght" 600; letter-spacing: -.02em; min-width: 62px; text-align: right; }
.idx--sess {
  border-bottom: 1px solid var(--line-2) !important;
  display: block !important;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
  padding-bottom: 10px !important;
}

.fg__v { display: flex; align-items: baseline; gap: 12px; margin: 0; }
.fg__v b {
  font-family: "Anybody", sans-serif;
  font-size: clamp(32px, 3.2vw, 46px);
  font-variation-settings: "wdth" 112, "wght" 750;
  letter-spacing: -.05em;
  line-height: .9;
}
.fg__v span {
  font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.fg__track { position: relative; height: 3px; background: var(--line); margin-top: 18px; }
.fg__pin { position: absolute; top: -5px; bottom: -5px; left: 0; width: 2px; background: var(--ink); }
.fg__ends {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}

/* ============================================================
   NACHRICHTEN
   ============================================================ */
.news { list-style: none; margin: 26px 0 0; padding: 0; }
.news__i {
  display: grid;
  grid-template-columns: 218px 1fr 58px;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0 14px 13px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
}
.news__i:last-child { border-bottom: 0; }
.news__i.is-hi { border-left-color: var(--ink); background: rgba(244, 240, 232, .028); }

.news__meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.news__meta time {
  font-size: 11px; color: var(--dim); letter-spacing: .04em;
  font-variation-settings: "wdth" 75, "wght" 400;
  font-variant-numeric: tabular-nums;
}
.news__src {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2);
  font-variation-settings: "wdth" 75, "wght" 400;
}
.news__tag {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line-2);
  padding: 2px 6px 1px;
  font-variation-settings: "wdth" 75, "wght" 500;
}
.news__tag.tag--own { color: var(--bg); background: var(--ink); border-color: var(--ink); }

.news__body { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; min-width: 0; }
.news__imp {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bg); background: var(--ink-2);
  padding: 2px 6px 1px;
  font-variation-settings: "wdth" 75, "wght" 700;
  flex: none;
}
.news__t {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
.news__t:hover { border-bottom-color: var(--ink); }
.is-hi .news__t { font-variation-settings: "wdth" 87.5, "wght" 600; }
.news__s {
  text-align: right;
  font-size: 12px; letter-spacing: -.02em;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FOREN
   ============================================================ */
.chat { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 68px); align-items: start; margin-top: 26px; }
.chat__delta { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 0; }
.chat__delta b {
  font-family: "Anybody", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-variation-settings: "wdth" 112, "wght" 750;
  letter-spacing: -.05em;
  line-height: .9;
}
.chat__delta span {
  font-size: 11px; letter-spacing: .07em; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
.spike {
  font-size: 9.5px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
  padding: 3px 8px 2px;
  font-variation-settings: "wdth" 75, "wght" 700 !important;
}

.sent { margin-top: 26px; max-width: 460px; }
.sent__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.sent__head span {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.sent__head b {
  font-size: 17px; letter-spacing: -.03em;
  font-variation-settings: "wdth" 87.5, "wght" 700;
  font-variant-numeric: tabular-nums;
}
.sent__track { position: relative; height: 3px; background: var(--line); margin-top: 12px; }
.sent__mid { position: absolute; top: -4px; bottom: -4px; left: 50%; width: 1px; background: var(--line-2); }
.sent__pin { position: absolute; top: -5px; bottom: -5px; left: 50%; width: 2px; background: var(--ink); }
.sent__ends {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}
.tbl--src { margin-top: 30px; }

.posts { list-style: none; margin: 0; padding: 0; }
.posts li {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 7px;
}
.posts li:last-child { border-bottom: 0; margin-bottom: 0; }
.post__meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.post__meta time {
  font-size: 11px; color: var(--dim); letter-spacing: .04em;
  font-variation-settings: "wdth" 75, "wght" 400;
  font-variant-numeric: tabular-nums;
}
.post__src {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2);
  font-variation-settings: "wdth" 75, "wght" 400;
}
.post__score, .post__s {
  font-size: 10.5px; letter-spacing: .06em; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 500;
  font-variant-numeric: tabular-nums;
}
.post__s { margin-left: auto; }
.post__t {
  font-size: 13px; line-height: 1.5; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  font-variation-settings: "wdth" 87.5, "wght" 500;
  justify-self: start;
}
.post__t:hover { border-bottom-color: var(--ink); }
.post__x {
  font-size: 11.5px; line-height: 1.62; color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 300;
  max-width: 62ch;
}

/* ============================================================
   QUELLEN-STATUS
   ============================================================ */
.tbl--status { margin-top: 0; }
.tbl--status td { font-size: 11.5px; padding: 11px 16px 11px 0; }
.st {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-variation-settings: "wdth" 75, "wght" 500;
  white-space: nowrap;
}
.st i { width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--dim); }
.st--ok    { color: var(--ink-2); }
.st--ok i  { background: var(--up); }
.st--empty { color: var(--dim); }
.st--empty i { background: var(--line-2); }
.st--err   { color: var(--down); }
.st--err i { background: var(--down); }
.st--auth  { color: var(--ink-2); }
.st--auth i { background: none; border: 1px solid var(--ink-2); }
.st__d {
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}

/* ============================================================
   RSI-ZUSATZ
   ============================================================ */
.rsi li { grid-template-columns: 42px 1fr 52px 92px; }
.rsi__st {
  font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 500;
}

/* ============================================================
   SCHMALER, NEUE BEREICHE
   ============================================================ */
@media (max-width: 1180px) {
  .mkt, .chat { grid-template-columns: 1fr; }
  .mkt__col { padding: 0; border-left: 0; }
  .mkt__col + .mkt__col { padding-top: 30px; margin-top: 30px; border-top: 1px solid var(--line); }
  .news__i { grid-template-columns: 1fr 52px; }
  .news__meta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .rsi li { grid-template-columns: 42px 1fr 52px; }
  .rsi__st { display: none; }
  .risk__fg { margin-left: 0; }
  .tbl--status td:last-child { display: none; }
}

#zoneFilter { max-width: 74ch; }

/* ============================================================
   AUFKLAPPEN
   Eine Zeile, ein Umschalten. Nichts wird nachgeladen.
   ============================================================ */
li.is-fold, tr.is-fold, div.is-fold { display: none; }

li.fold { display: block; padding: 0; border-bottom: 0; }
.tbl tr.fold td { padding: 0; border-bottom: 0; }
.foldline { margin: 0; }

.more {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 0 2px;
  background: none;
  border: 0;
  color: var(--dim);
  font-family: "Martian Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 75, "wght" 500;
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease);
}
.more::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: none;
  background: var(--line-2);
  transition: background 180ms var(--ease), width 180ms var(--ease);
}
.more:hover, .more:focus-visible { color: var(--ink); outline: 0; }
.more:hover::before, .more:focus-visible::before { background: var(--ink); width: 30px; }
.more[aria-expanded="true"]::before { background: var(--ink-2); }

/* ============================================================
   HINWEISE: BEOBACHTUNG UND SCHLUSS
   ============================================================ */
.adv__o {
  display: block;
  font-family: "Martian Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .01em;
  line-height: 1.6;
  color: var(--ink-2);
  font-variation-settings: "wdth" 75, "wght" 400;
  font-variant-numeric: tabular-nums;
}
.adv__c {
  display: block;
  margin-top: 8px;
  font-family: "Anybody", "Martian Mono", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -.015em;
  color: var(--ink);
  font-variation-settings: "wdth" 104, "wght" 500;
}
.adv__o + .adv__c { margin-top: 8px; }

/* ============================================================
   EREIGNISSE: BENACHRICHTIGT ODER NUR NOTIERT
   ============================================================ */
.ev__h { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.events .ev-k { display: inline-block; margin-bottom: 0; }
.ev__n {
  width: 5px;
  height: 5px;
  flex: none;
  border: 1px solid var(--dim);
  transform: translateY(-1px);
}
.ev__n.is-sent { background: var(--dim); }
#evNote { margin-top: 10px; max-width: 54ch; }

/* ============================================================
   QUELLEN: ZUSAMMENFASSUNG
   ============================================================ */
.srcsum {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
}
.srcsum__n {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-variation-settings: "wdth" 87.5, "wght" 500;
}
#srcBad { margin-top: 12px; max-width: 78ch; }
#srcBad b { color: var(--ink-2); font-variation-settings: "wdth" 87.5, "wght" 400; }
#srcFold { margin-top: 24px; }

/* Aktien: Schlusskurse ohne gelieferte Änderung */
.idx--note {
  display: block !important;
  border-bottom: 0 !important;
  padding: 10px 0 0 !important;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 300;
}
/* Beobachtung ohne Schluss trägt die Zeile allein */
.adv__o--only { font-size: 12.5px; color: var(--ink); font-variation-settings: "wdth" 87.5, "wght" 400; }
/* Zusammengefasste Ereignisse: Anzahl und erstes Vorkommen */
.ev__ct {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 400;
  font-variant-numeric: tabular-nums;
}
/* Datum über der Uhrzeit, sobald das Fenster über Mitternacht läuft */
.ev__d {
  display: block;
  color: var(--ink-2);
  font-variation-settings: "wdth" 75, "wght" 500;
  letter-spacing: .02em;
  margin-bottom: 2px;
}

/* ============================================================
   SIGNAL
   Stufe, Punktwert und Zuversicht bleiben drei Anzeigen.
   Farben sind die der Richtung, halten bleibt neutral.
   ============================================================ */
.reg--sig .reg__body { min-width: 0; }

.sig__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  padding-bottom: clamp(22px, 2.4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.sig__w {
  font-family: "Anybody", "Martian Mono", sans-serif;
  font-size: clamp(38px, 4.4vw, 68px);
  font-variation-settings: "wdth" 112, "wght" 800;
  letter-spacing: -.05em;
  line-height: .92;
  margin: 0;
  color: var(--ink);
}
.sig--up   .sig__w { color: var(--up); }
.sig--down .sig__w { color: var(--down); }

/* fünf Stufen, die geltende markiert */
.sig__scale { display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.sig__scale i { width: 20px; height: 2px; background: var(--line-2); display: block; }
.sig__scale i.on { height: 5px; background: currentColor; }
.sig--up   .sig__scale { color: var(--up); }
.sig--down .sig__scale { color: var(--down); }
.sig--flat .sig__scale { color: var(--ink); }

.sig__meta {
  margin: 14px 0 0;
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.sig__meta b { color: var(--ink-2); font-variation-settings: "wdth" 87.5, "wght" 500; }

.sig__k {
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 500;
}
.sig__v {
  display: block;
  margin-top: 10px;
  font-family: "Anybody", "Martian Mono", sans-serif;
  font-size: clamp(26px, 2.6vw, 40px);
  font-variation-settings: "wdth" 112, "wght" 700;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sig__tr { position: relative; height: 3px; background: var(--line); margin-top: 18px; }
.sig__zero { position: absolute; top: -4px; bottom: -4px; left: 50%; width: 1px; background: var(--line-2); }
.sig__bar { position: absolute; top: 0; bottom: 0; left: 50%; width: 0; background: var(--ink); }
.sig__bar--l { left: 0; }
.sig__bar.is-up   { background: var(--up); }
.sig__bar.is-down { background: var(--down); }
.sig__ends {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
}

/* Was die Einstufung widerlegt, wiegt mehr als die Einstufung */
.inval {
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--ink-2);
  max-width: 78ch;
}
.inval__k {
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 500;
  margin-bottom: 9px;
}
.inval__t {
  display: block;
  font-family: "Anybody", "Martian Mono", sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  font-variation-settings: "wdth" 104, "wght" 500;
  letter-spacing: -.015em;
  line-height: 1.4;
  color: var(--ink);
}
.inval--none { border-left-color: var(--line-2); }
.inval--none .inval__t { color: var(--dim); font-variation-settings: "wdth" 104, "wght" 400; }

/* Einstieg, Ziel, Stop, Chance zu Risiko */
.lv {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(24px, 3.4vw, 64px);
  margin: clamp(22px, 2.4vw, 32px) 0 0;
  padding-bottom: clamp(22px, 2.4vw, 32px);
  border-bottom: 1px solid var(--line);
}
.lv > div { min-width: 96px; }
.lv dt {
  font-size: 9.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim);
  font-variation-settings: "wdth" 87.5, "wght" 400;
}
.lv dd {
  margin: 7px 0 0;
  font-size: 17px;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variation-settings: "wdth" 87.5, "wght" 600;
  font-variant-numeric: tabular-nums;
}
.lv dd.is-none { font-size: 11px; letter-spacing: .08em; color: var(--dim); font-variation-settings: "wdth" 87.5, "wght" 300; }
.lv dd.is-warn { color: var(--down); }

.sig__cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 68px);
  align-items: start;
  margin-top: clamp(26px, 3vw, 38px);
}

/* Bestandteile: Balken von der Nulllinie nach links oder rechts */
.comp { list-style: none; margin: 0; padding: 0; }
.comp li {
  display: grid;
  grid-template-columns: 1fr 68px 200px;
  gap: 18px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.comp li:last-child { border-bottom: 0; }
.comp__n {
  font-size: 11.5px;
  color: var(--ink);
  font-variation-settings: "wdth" 87.5, "wght" 500;
  letter-spacing: .02em;
}
.comp__val {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  color: var(--dim);
  font-variation-settings: "wdth" 75, "wght" 300;
  line-height: 1.45;
}
.comp__c {
  text-align: right;
  font-size: 13px;
  letter-spacing: -.02em;
  font-variation-settings: "wdth" 87.5, "wght" 600;
  font-variant-numeric: tabular-nums;
}
.comp__c.is-up   { color: var(--up); }
.comp__c.is-down { color: var(--down); }
.comp__tr { position: relative; height: 8px; }
.comp__tr::before {
  content: "";
  position: absolute;
  top: -3px; bottom: -3px; left: 50%;
  width: 1px;
  background: var(--dim);
  opacity: .55;
}
.comp__b { position: absolute; top: 1px; bottom: 1px; left: 50%; width: 0; }
.comp__b.is-up   { background: var(--up); opacity: .82; }
.comp__b.is-down { background: var(--down); opacity: .82; right: 50%; left: auto; }

.tbl--act { margin-top: 18px; }
.tbl--act td { padding: 10px 14px 10px 0; font-size: 11.5px; }
.tbl--act .act--on td { background: rgba(244, 240, 232, .035); }
.tbl--act .act__n { font-variation-settings: "wdth" 87.5, "wght" 500; }
/* Die Anmerkung ist ein zweites Ding, nicht die Fortsetzung des Werts */
.comp__note {
  margin-top: 5px;
  padding-left: 9px;
  border-left: 1px solid var(--line-2);
}

@media (max-width: 1180px) {
  .sig__top { grid-template-columns: 1fr 1fr; }
  .sig__id { grid-column: 1 / -1; }
  .sig__cols { grid-template-columns: 1fr; }
  .comp li { grid-template-columns: 1fr 56px 140px; gap: 14px; }
}
@media (max-width: 640px) {
  .sig__top { grid-template-columns: 1fr; }
  .comp li { grid-template-columns: 1fr 52px; }
  .comp__tr { display: none; }
  .lv { gap: 0 28px; }
}
