:root {
  --bg: #050505;
  --bg2: #0c0c0d;
  --ink: #f4f4f2;
  --mute: #8a8a8a;
  --line: rgba(255,255,255,.12);
  --line2: rgba(255,255,255,.22);
  --orange: #ff5a1f;
  --up: #3dff8f;
  --down: #ff3d5a;
  --r: 6px;
  --gut: 16px;
  --font: "Archivo", system-ui, sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.4; overflow-x: hidden; }
body::after { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .055; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
a { color: inherit; text-decoration: none; }
h1, h2 { margin: 0; font-weight: 700; letter-spacing: -.02em; }
.label { font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--mute); margin: 0; }
.mark { font-family: var(--cond); font-weight: 700; font-size: 28px; letter-spacing: .04em; line-height: 1; }
.bang { color: var(--orange); display: inline-block; margin-right: .02em; animation: bang 3.2s ease-in-out infinite; transform-origin: 50% 90%; }
@keyframes bang { 0%,86%,100% { transform: none; } 90% { transform: rotate(-12deg) scaleY(1.12); } 94% { transform: rotate(8deg); } }
.giant { font-family: var(--cond); font-weight: 700; font-size: clamp(120px, 22vw, 300px); line-height: .8; letter-spacing: -.02em; margin-bottom: 10px; text-shadow: 0 0 80px rgba(255,90,31,.25); }
.giant .bang { text-shadow: 0 0 60px rgba(255,90,31,.7); }
.note { color: var(--mute); font-size: 13px; margin: 18px 0 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: var(--r); background: var(--orange); color: #050505; font-family: var(--cond); font-weight: 700; font-size: 16px; letter-spacing: .12em; text-transform: uppercase; border: 0; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255,90,31,.35); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line2); }
.btn.ghost:hover { box-shadow: none; border-color: var(--ink); }
.btn.small { height: 36px; padding: 0 16px; font-size: 14px; }

/* top */
.top { position: fixed; inset: 0 0 auto 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px var(--gut); background: linear-gradient(rgba(5,5,5,.85), rgba(5,5,5,0)); backdrop-filter: blur(6px); }
.live { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: .04em; text-transform: uppercase; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 0 rgba(61,255,143,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(61,255,143,.6);} 70% { box-shadow: 0 0 0 10px rgba(61,255,143,0);} 100% { box-shadow: 0 0 0 0 rgba(61,255,143,0);} }

/* video backgrounds */
.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(1.1) contrast(1.05); }
.bg.dim { opacity: .35; }

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,5,5,.35) 0%, rgba(5,5,5,.15) 40%, rgba(5,5,5,.92) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 120px var(--gut) 56px; }
.hero h1 { font-size: clamp(38px, 6.4vw, 84px); line-height: .95; max-width: 15ch; margin: 14px 0 34px; }
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.6em) rotate(1deg); animation: word .7s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes word { to { opacity: 1; transform: none; } }
.hero-live { display: grid; grid-template-columns: repeat(3, auto); gap: 24px 40px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.hl strong { display: block; font-family: var(--mono); font-weight: 700; font-size: clamp(24px, 4vw, 40px); margin-top: 4px; letter-spacing: -.02em; }
#lead-chain { color: var(--orange); }
.cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* rail */
.rail { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--bg2); }
.rail-track { display: flex; width: max-content; animation: rail 60s linear infinite; }
.rail:hover .rail-track { animation-play-state: paused; }
.rail-item { display: flex; align-items: center; gap: 10px; padding: 12px 22px; border-right: 1px solid var(--line); font-family: var(--mono); font-size: 12px; white-space: nowrap; }
.rail-item b { font-family: var(--cond); font-size: 15px; letter-spacing: .08em; }
.up { color: var(--up); } .down { color: var(--down); }
@keyframes rail { to { transform: translateX(-50%); } }

/* sections */
.sec { position: relative; max-width: 1240px; margin: 0 auto; padding: 72px var(--gut); }
.sec-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.sec-head h2 { font-family: var(--cond); font-weight: 700; font-size: clamp(38px, 6vw, 64px); letter-spacing: .1em; line-height: 1; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* flow */
.bubbles { position: relative; height: 440px; border: 1px solid var(--line); border-radius: var(--r); background: radial-gradient(ellipse at 50% 55%, rgba(255,90,31,.10), transparent 60%), var(--bg2); overflow: hidden; margin-bottom: 14px; }
.bubbles canvas { width: 100%; height: 100%; cursor: crosshair; }
.chart { border: 1px solid var(--line); border-radius: var(--r); padding: 14px; background: var(--bg2); }
.chart-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.chart-wrap { position: relative; height: 260px; }
.chart-wrap canvas { width: 100%; height: 100%; }
canvas { display: block; }
.tip { position: absolute; z-index: 3; pointer-events: none; min-width: 150px; padding: 10px 12px; border: 1px solid var(--line2); border-radius: 4px; background: rgba(5,5,5,.94); font-family: var(--mono); font-size: 11px; line-height: 1.6; box-shadow: 0 10px 30px rgba(0,0,0,.6); }
.tip b { font-family: var(--cond); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }

/* ads */
.ad { max-width: 1240px; margin: 0 auto; padding: 0 var(--gut); }
.ad-box { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 90px; border: 1px dashed var(--line2); border-radius: var(--r); padding: 14px 18px; color: var(--mute); font-size: 13px; }
.ad-box .label { color: var(--orange); }
.ad iframe { display: block; width: 100%; max-width: 728px; height: 90px; margin: 0 auto; border: 0; }

/* wall */
.wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.card { position: relative; display: block; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg2); overflow: hidden; transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s; isolation: isolate; }
.card:hover { transform: translateY(-4px) scale(1.01); border-color: var(--line2); box-shadow: 0 20px 50px rgba(0,0,0,.6); z-index: 2; }
.card.flash { animation: flash .9s ease; }
@keyframes flash { 0% { box-shadow: inset 0 0 0 1px var(--orange), 0 0 30px rgba(255,90,31,.5);} 100% { box-shadow: none;} }
.card canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.card .c { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; padding: 12px; background: linear-gradient(180deg, rgba(12,12,13,.2), rgba(12,12,13,.0) 40%, rgba(12,12,13,.85) 100%); }
.card .h { display: flex; align-items: center; gap: 8px; }
.card .av { width: 26px; height: 26px; border-radius: 50%; background: #1a1a1a; object-fit: cover; flex: none; }
.card .sym { font-family: var(--cond); font-weight: 700; font-size: 18px; letter-spacing: .06em; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card .ch { margin-left: auto; font-family: var(--cond); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); border: 1px solid var(--line); padding: 2px 6px; border-radius: 3px; }
.card .tr { font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .1em; padding: 1px 6px; border-radius: 3px; border: 1px solid currentColor; background: rgba(5,5,5,.7); }
.tr.g { color: var(--up); } .tr.y { color: #ffcc33; } .tr.r { color: var(--down); } .tr.n { color: var(--mute); }
.card .big { font-family: var(--mono); font-weight: 700; font-size: 30px; letter-spacing: -.02em; line-height: 1; margin-top: auto; }
.card .big small { font-size: 12px; color: var(--mute); font-weight: 500; letter-spacing: 0; }
.card .sts { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.card .st { font-family: var(--cond); font-size: 11px; letter-spacing: .08em; padding: 2px 5px; border-radius: 3px; background: rgba(255,255,255,.06); color: #cfcfcf; }
.card .st.y { color: #ffcc33; background: rgba(255,204,51,.1); } .card .st.r { color: var(--down); background: rgba(255,61,90,.12); }
.card .m { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; margin-top: 8px; font-family: var(--mono); font-size: 11px; color: var(--mute); }
.card .m b { color: var(--ink); font-weight: 500; }
.card .bs { grid-column: 1 / -1; height: 3px; background: rgba(255,61,90,.5); border-radius: 2px; overflow: hidden; margin-top: 4px; }
.card .bs i { display: block; height: 100%; background: var(--up); }
.card.video .c { min-height: 200px; justify-content: flex-end; }
.card.video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.card.video h3 { margin: 0 0 6px; font-family: var(--cond); font-size: 24px; letter-spacing: .06em; line-height: 1.05; }
.card.video p { margin: 0; font-size: 13px; color: #d0d0d0; }
.card.video .btn { margin-top: 10px; align-self: flex-start; }
.skeleton { height: 200px; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(90deg, #0c0c0d 25%, #141415 50%, #0c0c0d 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

@media (max-width: 719px) {
  .card .big { font-size: 24px; }
  .card .ch { display: none; }
  .card .c { padding: 10px; }
  .card .m { grid-template-columns: 1fr; }
}

/* check */
.check { max-width: none; padding: 0; overflow: hidden; isolation: isolate; }
.check-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 72px var(--gut); }
.check-form { display: flex; gap: 10px; flex-wrap: wrap; }
input[type=text], input[type=email] { flex: 1 1 260px; height: 46px; padding: 0 14px; border-radius: var(--r); border: 1px solid var(--line2); background: rgba(5,5,5,.7); color: var(--ink); font-family: var(--mono); font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,31,.2); }
.check-result { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(12,12,13,.92); padding: 18px; display: grid; grid-template-columns: 1fr; gap: 22px; }
.meter { display: flex; align-items: center; gap: 18px; }
.ring { position: relative; width: 120px; height: 120px; flex: none; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring .bgc { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 10; }
.ring .fg { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.3s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 0 8px currentColor); }
.ring .val { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ring .val strong { display: block; font-family: var(--mono); font-size: 34px; line-height: 1; }
.ring .val span { font-family: var(--cond); font-size: 11px; letter-spacing: .14em; color: var(--mute); }
.GREEN { color: var(--up); } .YELLOW { color: #ffcc33; } .RED { color: var(--down); }
.meter .v { font-family: var(--cond); font-weight: 700; font-size: 44px; letter-spacing: .1em; line-height: 1; }
.meter .tk { font-family: var(--mono); font-size: 12px; color: var(--mute); margin-top: 8px; line-height: 1.6; }
.groups { display: grid; gap: 16px; }
.group h4 { margin: 0 0 8px; font-family: var(--cond); font-size: 18px; letter-spacing: .14em; display: flex; align-items: center; gap: 10px; }
.group h4 i { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: 0; padding: 2px 6px; border-radius: 3px; border: 1px solid currentColor; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 4px; animation: word .5s both; }
.checks li::before { content: "●"; flex: none; }
.checks li.ok::before { color: var(--up); } .checks li.warn::before { color: #ffcc33; } .checks li.bad::before { color: var(--down); }
.holders { border: 1px solid var(--line); border-radius: 4px; padding: 10px; }
.holders canvas { width: 100%; height: 220px; }
.holders .label { margin-bottom: 6px; }
.check-result .err { color: var(--mute); margin: 0; }

/* pro */
.pro { max-width: none; padding: 0; overflow: hidden; isolation: isolate; min-height: 80svh; display: flex; align-items: center; }
.pro::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.6) 60%, rgba(5,5,5,.2) 100%); }
.pro-inner { position: relative; z-index: 1; max-width: 1240px; width: 100%; margin: 0 auto; padding: 72px var(--gut); }
.pro h2 { font-size: clamp(34px, 6vw, 72px); line-height: 1; max-width: 12ch; margin: 12px 0 22px; }
.pro-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; max-width: 520px; }
.pro-list li { padding-left: 18px; position: relative; color: #d8d8d8; }
.pro-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--orange); border-radius: 2px; }
.pro-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; }
.pro-form input { background: rgba(5,5,5,.8); }

/* footer */
.foot { max-width: 1240px; margin: 0 auto; padding: 40px var(--gut) 60px; display: grid; gap: 10px; color: var(--mute); font-size: 13px; border-top: 1px solid var(--line); }
.foot p { margin: 0; }
.foot nav a:hover { color: var(--ink); }

@media (min-width: 720px) {
  :root { --gut: 32px; }
  .bubbles { height: 520px; }
  .groups { grid-template-columns: 1fr 1fr; }
  .groups .holders { grid-column: 1 / -1; }
  .wall { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1060px) {
  .wall { grid-template-columns: repeat(4, 1fr); }
  .card .c { min-height: 230px; }
}
@media (prefers-reduced-motion: reduce) {
  .rail-track, .dot, .bang { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 .w { animation: none; opacity: 1; transform: none; }
}

/* ================= DASHBOARD ================= */
body.dash { --barH: 64px; --railH: 40px; }
.ambient { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: .16; filter: blur(2px) saturate(1.2); }
body.dash::before { content: ""; position: fixed; inset: 0; z-index: -1; background: radial-gradient(ellipse at 30% 0%, rgba(255,90,31,.10), transparent 55%), linear-gradient(rgba(5,5,5,.55), rgba(5,5,5,.9)); }

.bar { position: sticky; top: 0; z-index: 40; height: var(--barH); display: flex; align-items: center; gap: 18px; padding: 0 var(--gut); background: rgba(5,5,5,.82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.bar .mark { font-size: 34px; }
.kpis { flex: 1; display: flex; gap: 28px; min-width: 0; overflow: hidden; }
.kpi { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.kpi strong { font-family: var(--mono); font-size: 18px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#lead-chain { color: var(--orange); }
#hot-mover { color: var(--up); }
.bar .live { white-space: nowrap; }
.dash .rail { position: sticky; top: var(--barH); z-index: 39; }
.dash .rail-item { padding: 10px 20px; }

.grid { display: grid; gap: 10px; padding: 10px; }
.panel { position: relative; display: flex; flex-direction: column; gap: 10px; min-width: 0; min-height: 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: rgba(10,10,11,.78); backdrop-filter: blur(6px); }
.ph { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ph h2 { font-family: var(--cond); font-size: 26px; letter-spacing: .14em; line-height: 1; }
.ph .label { font-size: 11px; }

.dash .bubbles { flex: 1 1 auto; min-height: 280px; height: auto; margin: 0; border-radius: 6px; }
.dash .chart { padding: 10px; border-radius: 6px; }
.dash .chart-wrap { height: 170px; }
.dash .note { margin: 0; font-size: 11px; line-height: 1.5; }

.dash .wall { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.dash .card .c { min-height: 190px; }
.dash .ad { max-width: none; padding: 0; }
.dash .ad-box { min-height: 0; padding: 10px 12px; font-size: 12px; }
.dash .ad-box .btn { height: 30px; }

.dash .check-form input { height: 42px; }
.dash .check-form .btn { height: 42px; }
.check-empty { position: relative; min-height: 220px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); display: flex; align-items: flex-end; }
.check-empty video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.check-empty div { position: relative; padding: 16px; background: linear-gradient(transparent, rgba(5,5,5,.92) 40%); display: grid; gap: 6px; }
.check-empty strong { font-family: var(--cond); font-size: 26px; letter-spacing: .06em; }
.check-empty span { color: #cfcfcf; font-size: 14px; }
.dash .check-result { margin: 0; padding: 14px; gap: 16px; background: rgba(12,12,13,.9); }
.dash .groups { grid-template-columns: 1fr; }
.dash .ring { width: 96px; height: 96px; }
.dash .ring .val strong { font-size: 28px; }
.dash .meter .v { font-size: 34px; }
.dash .foot { max-width: none; margin: auto 0 0; padding: 10px 0 0; font-size: 11px; display: block; border-top: 1px solid var(--line); }
.dash .foot a { text-decoration: underline; }

.tabs { display: none; }

/* PRO-Blatt */
.sheet { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 16px; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); animation: fade .25s ease; }
.sheet[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } }
.sheet-card { position: relative; width: min(560px, 100%); border: 1px solid var(--line2); border-radius: 10px; overflow: hidden; isolation: isolate; animation: rise .35s cubic-bezier(.2,.8,.2,1); }
@keyframes rise { from { transform: translateY(24px) scale(.98); opacity: 0; } }
.sheet-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.sheet-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,5,5,.95), rgba(5,5,5,.7)); }
.sheet-body { padding: 28px 24px; }
.sheet h2 { font-size: clamp(30px, 6vw, 44px); line-height: 1; margin: 10px 0 18px; }
.sheet .x { position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line2); background: rgba(5,5,5,.6); color: var(--ink); font-size: 22px; cursor: pointer; }

/* Desktop: alles auf einem Bildschirm */
@media (min-width: 1100px) {
  .grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr) minmax(0, 1fr); height: calc(100vh - var(--barH) - var(--railH)); height: calc(100dvh - var(--barH) - var(--railH)); }
  .panel { overflow: hidden; }
  .p-run, .p-check { overflow-y: auto; scrollbar-width: thin; scrollbar-color: #333 transparent; }
  .p-run .ph, .p-check .ph { position: sticky; top: -12px; z-index: 3; margin: -12px -12px 0; padding: 12px; background: rgba(10,10,11,.95); }
}
@media (min-width: 1500px) {
  .dash .wall { grid-template-columns: repeat(3, 1fr); }
}

/* Handy + Tablet: ein Bereich, Reiter unten */
@media (max-width: 1099px) {
  body.dash { --barH: 56px; padding-bottom: 72px; }
  .bar { gap: 12px; }
  .bar .mark { font-size: 28px; }
  .kpis { gap: 16px; }
  .kpi strong { font-size: 15px; }
  .bar .live, .bar > .btn { display: none; }
  .grid { padding: 8px; }
  .panel { display: none; }
  body[data-tab="flow"] .p-flow, body[data-tab="runners"] .p-run, body[data-tab="check"] .p-check { display: flex; }
  .dash .bubbles { flex: none; height: 62vh; }
  .tabs { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 6px; background: rgba(5,5,5,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
  .tabs button { height: 44px; border-radius: 6px; border: 1px solid var(--line); background: transparent; color: var(--mute); font-family: var(--cond); font-weight: 700; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
  .tabs button.on { color: #050505; background: var(--ink); border-color: var(--ink); }
  .tabs button[data-pro] { color: var(--orange); border-color: rgba(255,90,31,.5); }
}
@media (max-width: 560px) {
  .hide-s { display: none; }
  .kpi .label { font-size: 9px; letter-spacing: .1em; }
}
@media (min-width: 720px) and (max-width: 1099px) {
  .dash .wall { grid-template-columns: repeat(3, 1fr); }
  .dash .groups { grid-template-columns: 1fr 1fr; }
}

/* Eigene Analysen */
.card .st.g { color: var(--up); background: rgba(61,255,143,.12); }
.exit-group .xb { margin-bottom: 8px; animation: word .5s both; }
.xl { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; margin-bottom: 4px; }
.xl b { font-family: var(--mono); }
.xt { height: 10px; border-radius: 3px; background: rgba(255,255,255,.06); overflow: hidden; }
.xt i { display: block; height: 100%; width: var(--w); border-radius: 3px; animation: grow 1s cubic-bezier(.2,.8,.2,1) both; box-shadow: 0 0 12px currentColor; }
@keyframes grow { from { width: 100%; } }

/* RADAR */
.radar { border: 1px solid rgba(255,90,31,.35); border-radius: 6px; padding: 10px; background: linear-gradient(180deg, rgba(255,90,31,.08), rgba(255,90,31,.02)); }
.radar-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.radar-head h3 { margin: 0; font-family: var(--cond); font-size: 18px; letter-spacing: .16em; }
.rdot { width: 10px; height: 10px; border-radius: 50%; background: var(--mute); }
.radar.on .rdot { background: var(--orange); box-shadow: 0 0 0 0 rgba(255,90,31,.7); animation: rping 1.4s infinite; }
@keyframes rping { 70% { box-shadow: 0 0 0 12px rgba(255,90,31,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,31,0); } }
.radar-list { display: grid; gap: 6px; }
.radar-empty { margin: 0; color: var(--mute); font-size: 13px; }
.ra { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 8px 10px; border-radius: 4px; border: 1px solid var(--line); background: rgba(5,5,5,.55); color: var(--ink); font: inherit; font-size: 13px; cursor: pointer; transition: border-color .2s, transform .2s; }
.ra:hover { border-color: var(--line2); transform: translateX(2px); }
.ra .rt { font-family: var(--cond); font-weight: 700; font-size: 12px; letter-spacing: .12em; padding: 2px 6px; border-radius: 3px; }
.ra.dev .rt { background: var(--orange); color: #050505; }
.ra.wave .rt { background: rgba(90,169,255,.18); color: #5aa9ff; }
.ra .rm { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ra .ra-t { font-family: var(--mono); font-size: 11px; color: var(--mute); }
.ra.new { animation: rnew 1.6s ease; }
@keyframes rnew { 0% { background: rgba(255,90,31,.45); transform: scale(1.02); } 100% { background: rgba(5,5,5,.55); } }
@media (max-width: 560px) { .ra .rm { white-space: normal; } }
.ra.farm .rt { background: rgba(255,61,90,.18); color: var(--down); }

/* Live-Kauf/Verkauf 5 min */
.card .flow5 { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-family: var(--mono); font-size: 11px; color: var(--mute); }
.card .flow5[hidden] { display: none; }
.card .fb { flex: 1; display: flex; height: 6px; border-radius: 3px; overflow: hidden; background: rgba(255,255,255,.06); }
.card .fbuy { background: var(--up); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.card .fsell { background: var(--down); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.card .ft b { font-weight: 700; }
