/* ============================================================================
   KI BUSINESS SUITE — All-in-one Bento-Showcase (Homepage)
   Dunkle Premium-Sektion mit Mini-App-Fenstern der echten Suite-Module.
   Namespace: .ksu-*
   ============================================================================ */

/* --- Lucide icon baseline ------------------------------------------------
   lucide-icons.js injiziert ein <svg viewBox="0 0 24 24"> in <i data-lucide>.
   Ohne eigene Dimension würde es auf 24×24px (viewBox) aufblähen und das
   Layout springen lassen. Default-Mass: 1em, ueberschreibbar pro Container.
   color: inherit stellt sicher, dass die Icon-Farbe stets vom Container
   (z. B. .ksu-card__icon color:#fff) kaskadiert — nie schwarz-auf-dunkel. */
.ksu i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; color: inherit; }
.ksu i[data-lucide] svg { width: 1em; height: 1em; display: block; }

.ksu {
  position: relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(220, 0, 24, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 105%, rgba(220, 0, 24, 0.07), transparent 60%),
    linear-gradient(180deg, #0a0b12 0%, #101221 55%, #0a0b12 100%);
  color: #fff;
}
.ksu .stage__sub { color: rgba(255, 255, 255, 0.62); }
.ksu .stage__eyebrow { color: rgba(255, 255, 255, 0.55); }

/* --- Bento-Grid + Card-Shell entfernt (2026-07) ---------------------------
   #module ist jetzt der KSM-Stage-Flow (siehe Block am Dateiende); .ksu-grid/
   .ksu-card existieren in keinem DOM mehr. Die __head/__icon/__title/__tag/
   __badge-Regeln unten bleiben — die Stages nutzen sie weiter. */

/* --- Card head ----------------------------------------------------------- */
.ksu-card__head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.ksu-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(220, 0, 24, 0.85), rgba(150, 0, 16, 0.9));
  box-shadow: 0 10px 26px rgba(220, 0, 24, 0.35);
  color: #fff;
}
.ksu-card__icon svg { width: 21px; height: 21px; }
.ksu-card--light .ksu-card__icon { box-shadow: 0 10px 24px rgba(220, 0, 24, 0.22); }
.ksu-card__title {
  font-size: clamp(16px, 1.6vw, 18.5px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.ksu-card__tag {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
.ksu-card--light .ksu-card__tag { color: var(--viz-text-2, #475569); }
.ksu-card__badge {
  margin-left: auto;
  flex: 0 0 auto;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(220, 0, 24, 0.45);
  color: #ff8f9b;
  background: rgba(220, 0, 24, 0.12);
  white-space: nowrap;
}
.ksu-card--light .ksu-card__badge { color: #c00015; background: rgba(220, 0, 24, 0.06); }

/* --- Mini app window ------------------------------------------------------ */
.ksu-ui {
  position: relative;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 12, 0.65);
  overflow: hidden;
  font-size: 12px;
  flex: 1 1 auto;
}
.ksu-card--light .ksu-ui {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}
.ksu-ui__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.ksu-card--light .ksu-ui__bar {
  border-bottom-color: rgba(15, 23, 42, 0.07);
  color: var(--viz-text-3, #94a3b8);
}
.ksu-ui__dots { display: flex; gap: 4px; }
.ksu-ui__dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.ksu-card--light .ksu-ui__dots span { background: rgba(15, 23, 42, 0.15); }
.ksu-ui__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
}
.ksu-ui__live::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80;
  animation: ksu-pulse 1.8s ease-in-out infinite;
}
/* light-2026.css's ".ksu-ui__bar, .ksu-ui__bar *{color:var(--le-text-3)!important}" clobbers
   the green status color above on every light-converted card bar (same !important
   specificity, later in source order wins) — leaving the "LIVE" label unreadable gray-on-pink.
   Re-assert a readable, still-green status color with higher specificity so it wins
   regardless of load order. */
.ksu-ui__bar .ksu-ui__live { color: #0c7a40 !important; }
.ksu-ui__body { padding: 12px; display: flex; flex-direction: column; gap: 9px; }

/* --- Shared micro components ---------------------------------------------- */
.ksu-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ksu-card--light .ksu-row {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.06);
}
.ksu-row__main { min-width: 0; flex: 1 1 auto; }
.ksu-row__name {
  font-weight: 650;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ksu-card--light .ksu-row__name { color: var(--viz-text, #0f172a); }
.ksu-row__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ksu-card--light .ksu-row__sub { color: var(--viz-text-3, #94a3b8); }

.ksu-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3.5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
}
.ksu-chip--ok    { background: rgba(74, 222, 128, 0.12); border-color: rgba(74, 222, 128, 0.28); color: #4ade80; }
.ksu-chip--hot   { background: rgba(220, 0, 24, 0.16);  border-color: rgba(220, 0, 24, 0.4);   color: #ff8f9b; }
.ksu-chip--info  { background: rgba(96, 165, 250, 0.12); border-color: rgba(96, 165, 250, 0.3); color: #93c5fd; }
.ksu-card--light .ksu-chip {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--viz-text-2, #475569);
}
.ksu-card--light .ksu-chip--ok  { background: rgba(22, 163, 74, 0.08); border-color: rgba(22, 163, 74, 0.25); color: #15803d; }
.ksu-card--light .ksu-chip--hot { background: rgba(220, 0, 24, 0.07);  border-color: rgba(220, 0, 24, 0.25);  color: #c00015; }
.ksu-chiprow { display: flex; flex-wrap: wrap; gap: 5px; }

/* progress bar */
.ksu-progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.ksu-progress__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dc0018, #ff5d6e);
}
.ksu-progress__fill::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: ksu-shimmer 2.4s ease-in-out infinite;
}

/* pipeline mini columns */
.ksu-pipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.ksu-pipe {
  padding: 9px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ksu-pipe--won { border-color: rgba(74, 222, 128, 0.25); background: rgba(74, 222, 128, 0.06); }
.ksu-pipe__label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ksu-pipe__sum { font-weight: 750; font-size: 13.5px; letter-spacing: -0.01em; }
.ksu-pipe__count { font-size: 10px; color: rgba(255, 255, 255, 0.45); margin-top: 2px; }
.ksu-pipe--won .ksu-pipe__sum { color: #4ade80; }

/* call dock */
.ksu-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 0, 24, 0.18), rgba(220, 0, 24, 0.05));
  border: 1px solid rgba(220, 0, 24, 0.32);
}
.ksu-call__eq { display: flex; align-items: flex-end; gap: 2.5px; height: 18px; flex: 0 0 auto; }
.ksu-call__eq span {
  width: 3px;
  border-radius: 2px;
  background: #ff5d6e;
  animation: ksu-eq 1.1s ease-in-out infinite;
}
.ksu-call__eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ksu-call__eq span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.ksu-call__eq span:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.ksu-call__eq span:nth-child(4) { height: 100%; animation-delay: 0.45s; }
.ksu-call__eq span:nth-child(5) { height: 50%; animation-delay: 0.6s; }
.ksu-quote {
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(220, 0, 24, 0.6);
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
}
.ksu-quote strong {
  display: block;
  font-style: normal;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

/* slot grid (Terminbuchung) */
.ksu-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ksu-slot {
  text-align: center;
  padding: 8px 4px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}
.ksu-slot small {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.ksu-slot--booked {
  border-color: rgba(220, 0, 24, 0.45);
  background: rgba(220, 0, 24, 0.14);
  color: #ff8f9b;
}
.ksu-slot--booked small { color: rgba(255, 143, 155, 0.7); }
.ksu-linkpill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ksu-linkpill svg { flex: 0 0 auto; width: 12px; height: 12px; opacity: 0.6; }
.ksu-linkpill i[data-lucide] { flex: 0 0 auto; }
.ksu-linkpill i[data-lucide] svg { width: 12px; height: 12px; opacity: 0.6; }

/* chat (KI-Assistent) */
.ksu-msg {
  max-width: 92%;
  padding: 9px 12px;
  border-radius: 13px;
  font-size: 11.5px;
  line-height: 1.5;
}
.ksu-msg--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-right-radius: 4px;
}
.ksu-msg--ai {
  align-self: flex-start;
  background: linear-gradient(140deg, rgba(220, 0, 24, 0.16), rgba(220, 0, 24, 0.05));
  border: 1px solid rgba(220, 0, 24, 0.3);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 4px;
}
.ksu-msg--ai strong { color: #ff8f9b; }

/* doc flow (Offerten) */
.ksu-docflow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ksu-doc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.85);
}
.ksu-doc--active { border-color: rgba(220, 0, 24, 0.5); background: rgba(220, 0, 24, 0.13); color: #ff9ca7; }
.ksu-docflow__arrow { color: rgba(255, 255, 255, 0.3); font-size: 12px; }
.ksu-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ksu-plan {
  padding: 9px 8px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ksu-plan--hl { border-color: rgba(220, 0, 24, 0.5); background: rgba(220, 0, 24, 0.1); }
.ksu-plan__name {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ksu-plan__price { font-size: 12.5px; font-weight: 750; margin-top: 3px; }
.ksu-plan--hl .ksu-plan__price { color: #ff8f9b; }

/* portal mini-UI (light) */
.ksu-portal-stat { display: flex; align-items: flex-end; gap: 5px; height: 44px; padding: 2px 2px 0; }
.ksu-portal-stat span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #ff5d6e, #dc0018);
  opacity: 0.85;
  min-height: 15%;
}
.ksu-portal-stat span:nth-child(1) { height: 34%; }
.ksu-portal-stat span:nth-child(2) { height: 48%; }
.ksu-portal-stat span:nth-child(3) { height: 42%; }
.ksu-portal-stat span:nth-child(4) { height: 65%; }
.ksu-portal-stat span:nth-child(5) { height: 78%; }
.ksu-portal-stat span:nth-child(6) { height: 100%; }
.ksu-portal-files { display: flex; flex-direction: column; gap: 6px; }
.ksu-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--viz-text, #0f172a);
}
.ksu-file svg { flex: 0 0 auto; width: 13px; height: 13px; color: #c00015; }
.ksu-file i[data-lucide] { flex: 0 0 auto; }
.ksu-file i[data-lucide] svg { width: 13px; height: 13px; color: #c00015; }
.ksu-file small { margin-left: auto; font-weight: 500; color: var(--viz-text-3, #94a3b8); font-size: 10px; }
.ksu-ui__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
@media (max-width: 520px) { .ksu-ui__cols { grid-template-columns: 1fr; } }
.ksu-ui__col { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.ksu-ui__coltitle {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.ksu-card--light .ksu-ui__coltitle { color: var(--viz-text-3, #94a3b8); }

/* feature bullets under each mini-UI */
.ksu-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ksu-feats li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.ksu-feats li::before { content: "✓"; color: #4ade80; font-size: 10px; }
.ksu-card--light .ksu-feats li {
  color: var(--viz-text-2, #475569);
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
}
.ksu-card--light .ksu-feats li::before { color: #15803d; }

/* --- Integration strip ----------------------------------------------------- */
.ksu-strip {
  margin-top: clamp(18px, 2.4vw, 26px);
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.6vw, 28px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ksu-strip__label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex: 0 0 auto;
}
.ksu-strip__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ksu-strip__note {
  flex: 1 1 100%;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.ksu-strip__note strong { color: rgba(255, 255, 255, 0.85); }

/* --- Stats + CTA ------------------------------------------------------------ */
.ksu-cta {
  margin-top: clamp(30px, 4.5vw, 52px);
  text-align: center;
}
.ksu-cta__stats {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 64px);
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 3vw, 32px);
}
.ksu-cta__stat-val {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(120deg, #fff, #ffb3bc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ksu-cta__stat-label {
  margin-top: 7px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.ksu-cta__title {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 750;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.ksu-cta__title .red { color: #c00015; }
.ksu-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ksu-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.ksu-btn--primary {
  background: linear-gradient(135deg, #ff2c40, #c00015);
  color: #fff;
  box-shadow: 0 16px 44px rgba(220, 0, 24, 0.4);
}
.ksu-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 56px rgba(220, 0, 24, 0.5); }
.ksu-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}
.ksu-btn--ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }
.ksu-disclaimer {
  margin-top: clamp(22px, 3vw, 30px);
  text-align: center;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Animations -------------------------------------------------------------- */
@keyframes ksu-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
@keyframes ksu-shimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
@keyframes ksu-eq {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .ksu-ui__live::before,
  .ksu-progress__fill::after,
  .ksu-call__eq span { animation: none; }
  .ksu-btn { transition: none; }
}

/* ============================================================================
   UPLIFT — Standalone-Seite /ki-suite.html
   Hero, Aurora, Spotlight-Hover, Marquee, Count-up
   ============================================================================ */

/* --- Seiten-Hero -------------------------------------------------------- */
.ksu-hero {
  position: relative;
  min-height: clamp(560px, 82vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07080d;
  color: #fff;
  padding: clamp(120px, 16vh, 180px) 0 clamp(60px, 8vh, 100px);
}
.ksu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 38%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 38%, black 30%, transparent 75%);
  pointer-events: none;
}
.ksu-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
  animation: ksu-drift 14s ease-in-out infinite alternate;
}
.ksu-aurora--1 { width: 560px; height: 560px; top: -180px; left: 8%; background: radial-gradient(circle, rgba(220, 0, 24, 0.4), transparent 65%); }
.ksu-aurora--2 { width: 480px; height: 480px; bottom: -160px; right: 4%; background: radial-gradient(circle, rgba(255, 93, 110, 0.22), transparent 65%); animation-delay: -6s; }
.ksu-aurora--3 { width: 380px; height: 380px; top: 30%; right: 30%; background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 65%); animation-delay: -3s; }
@keyframes ksu-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.12); }
}

.ksu-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 92vw);
  margin-inline: auto;
  text-align: center;
}
.ksu-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(220, 0, 24, 0.4);
  background: linear-gradient(120deg, rgba(220, 0, 24, 0.14), rgba(220, 0, 24, 0.04));
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff9ca7;
  margin-bottom: 26px;
}
.ksu-hero__pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff5d6e;
  box-shadow: 0 0 12px rgba(255, 93, 110, 0.9);
  animation: ksu-pulse 1.8s ease-in-out infinite;
}
.ksu-hero__title {
  font-size: clamp(42px, 7.4vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 22px;
}
.ksu-hero__title .grad {
  background: linear-gradient(115deg, #ff2c40 10%, #ff8291 50%, #ffd3d8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ksu-hero__title .serif { font-family: var(--font-serif, Georgia, serif); font-style: italic; font-weight: 500; }
.ksu-hero__lead {
  max-width: 62ch;
  margin: 0 auto 34px;
  font-size: clamp(15.5px, 1.8vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
}
.ksu-hero__lead strong { color: rgba(255, 255, 255, 0.92); }
.ksu-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Floating Hero-Chips — Live-Momente aus der Suite */
.ksu-hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ksu-fchip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 13px;
  background: rgba(14, 16, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  animation: ksu-float 7s ease-in-out infinite;
}
.ksu-fchip small {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.ksu-fchip__ico {
  width: 26px; height: 26px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(220, 0, 24, 0.18);
  color: #ff8f9b;
}
.ksu-fchip__ico svg { width: 13px; height: 13px; }
.ksu-fchip--1 { top: 24%; left: 6%; animation-delay: 0s; }
.ksu-fchip--2 { top: 58%; left: 3%; animation-delay: -2.3s; }
.ksu-fchip--3 { top: 20%; right: 6%; animation-delay: -4.1s; }
.ksu-fchip--4 { top: 56%; right: 4%; animation-delay: -1.2s; }
@keyframes ksu-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (max-width: 900px) { .ksu-hero__chips { display: none; } }

/* --- Marquee (Modul-Laufband) -------------------------------------------- */
.ksu-marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(44px, 7vh, 72px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.ksu-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ksu-marquee 34s linear infinite;
}
.ksu-marquee:hover .ksu-marquee__track { animation-play-state: paused; }
.ksu-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.ksu-marquee__item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 1.5px;
  background: rgba(220, 0, 24, 0.8);
  transform: rotate(45deg);
}
@keyframes ksu-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Spotlight-/Conic-Hover entfernt (kein .ksu-card im DOM mehr) --------- */

/* --- Sektionshintergrund der Bento-Sektion (mehr Tiefe) -------------------- */
.ksu--deep {
  background:
    radial-gradient(1100px 520px at 88% -6%, rgba(220, 0, 24, 0.13), transparent 60%),
    radial-gradient(800px 480px at -6% 40%, rgba(96, 165, 250, 0.05), transparent 60%),
    radial-gradient(900px 500px at 20% 108%, rgba(220, 0, 24, 0.09), transparent 60%),
    linear-gradient(180deg, #07080d 0%, #0e101c 50%, #090a11 100%);
}

/* --- Count-up Stats -------------------------------------------------------- */
.ksu-cta__stat-val { font-variant-numeric: tabular-nums; }

/* --- Section-Divider (Nahtlinie mit rotem Glow) ---------------------------- */
.ksu-seam {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 0, 24, 0.5), transparent);
}

/* Homepage-inspired hero bridge for /ki-suite and /en/ki-suite */
.ksu-suite-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(220, 0, 24, 0.16), transparent 24%),
    radial-gradient(circle at 78% 36%, rgba(40, 70, 140, 0.08), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(220, 0, 24, 0.05), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f4f2 100%);
}

.ksu-suite-hero::after {
  content: "";
  position: absolute;
  top: 11%;
  right: 4%;
  width: min(640px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(220, 0, 24, 0.14) 0%, rgba(220, 0, 24, 0.06) 34%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.ksu-suite-hero .hero-stage__text {
  max-width: 620px;
}

.ksu-suite-hero .hero-stage__lead {
  max-width: 44rem;
}

.ksu-suite-hero .hero-stage__stats {
  max-width: 540px;
}

.ksu-suite-hero .hero-stage__visual {
  min-width: 0;
}

.ksu-suite-hero .ksu-hero__fit {
  justify-content: flex-start;
  max-width: 44rem;
  margin: 10px 0 26px;
}

.ksu-suite-hero .hero-stage__trust {
  width: fit-content;
  max-width: 100%;
}

.ksu-suite-visual {
  max-width: 640px;
  isolation: isolate;
  filter: drop-shadow(0 26px 68px rgba(220, 0, 24, 0.16));
}

.ksu-suite-visual::before {
  content: "";
  position: absolute;
  inset: 7% 10%;
  border-radius: 34%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 48%, rgba(220, 0, 24, 0.1), transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  pointer-events: none;
  z-index: 0;
}

.ksu-suite-visual__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ksu-suite-visual__ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.9;
}

.ksu-suite-visual__ambient-orb--1 {
  top: 12%;
  left: 17%;
  width: 26%;
  height: 26%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.ksu-suite-visual__ambient-orb--2 {
  right: 12%;
  top: 20%;
  width: 28%;
  height: 28%;
  background: radial-gradient(circle, rgba(220, 0, 24, 0.26), rgba(220, 0, 24, 0));
}

.ksu-suite-visual__ambient-orb--3 {
  left: 26%;
  bottom: 16%;
  width: 32%;
  height: 32%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0));
}

.ksu-suite-hero .sm-chat-trigger--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--viz-text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.ksu-suite-hero .sm-chat-trigger--hero:hover {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(15, 23, 42, 0.96);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.ksu-suite-visual__canvas {
  display: grid;
  place-items: center;
  overflow: visible;
  padding: clamp(16px, 2vw, 24px);
}

.ksu-suite-visual__mesh,
.ksu-suite-visual__plate,
.ksu-suite-visual__hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ksu-suite-visual__mesh {
  inset: 6.5%;
  z-index: 1;
  filter: saturate(1.08) contrast(1.04);
  transition: opacity 0.4s ease;
}

.ksu-suite-visual__mesh canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  filter:
    saturate(1.08)
    contrast(1.02)
    drop-shadow(0 24px 70px rgba(220, 0, 24, 0.22));
}

.ksu-suite-visual__plate {
  z-index: 2;
}

.ksu-suite-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(220, 0, 24, 0.16);
  box-shadow:
    inset 0 0 32px rgba(220, 0, 24, 0.05),
    0 0 34px rgba(220, 0, 24, 0.04);
}

.ksu-suite-visual__ring--outer {
  width: 82%;
  height: 82%;
  animation: ksu-suite-spin 24s linear infinite;
}

.ksu-suite-visual__ring--mid {
  width: 60%;
  height: 60%;
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.14);
  animation: ksu-suite-spin-rev 18s linear infinite;
}

.ksu-suite-visual__ring--inner {
  width: 42%;
  height: 42%;
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.38),
    0 0 40px rgba(255, 255, 255, 0.16);
}

.ksu-suite-visual__scanline {
  position: absolute;
  inset: 18% 11%;
  border-radius: 32%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(220, 0, 24, 0.14) 48%, rgba(255, 255, 255, 0) 100%);
  filter: blur(8px);
  opacity: 0.7;
  animation: ksu-suite-scan 5.6s ease-in-out infinite;
}

.ksu-suite-visual__glint {
  position: absolute;
  inset: 14% 12%;
  border-radius: 34%;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0) 66%);
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: ksu-suite-glint 8.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.ksu-suite-visual__hud {
  z-index: 5;
}

.ksu-suite-visual__hud-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 0, 24, 0.24), rgba(255, 255, 255, 0.68), rgba(220, 0, 24, 0.24), transparent);
  opacity: 0.75;
}

.ksu-suite-visual__hud-line--top {
  top: 18%;
  left: 11%;
  width: 78%;
}

.ksu-suite-visual__hud-line--bottom {
  bottom: 22%;
  left: 16%;
  width: 68%;
}

.ksu-suite-visual__hud-pill {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--viz-text);
  white-space: nowrap;
}

.ksu-suite-visual__hud-pill strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ksu-suite-visual__hud-pill span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.ksu-suite-visual__hud-pill--tl {
  top: 13%;
  left: 9%;
}

.ksu-suite-visual__hud-pill--br {
  right: 10%;
  bottom: 18%;
}

.ksu-suite-visual__status {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 14, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.ksu-suite-visual__status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ksu-suite-visual__status span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.ksu-suite-visual__status strong {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.ksu-suite-hero .ksu-orbit {
  width: min(560px, 88%);
  height: clamp(320px, 38vw, 430px);
  margin: 0;
  position: relative;
  z-index: 4;
}

.ksu-suite-hero .scene3d__float--tl {
  top: 8%;
  left: 1%;
}

.ksu-suite-hero .scene3d__float--tr {
  top: 12%;
  right: 1%;
}

.ksu-suite-hero .scene3d__float--bl {
  bottom: 14%;
  left: 0;
}

.ksu-suite-hero .scene3d__float--br {
  bottom: 6%;
  right: 3%;
}

.ksu-suite-hero .scene3d__float {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ksu-suite-hero .scene3d__float--dark {
  background:
    linear-gradient(160deg, rgba(15, 18, 28, 0.98), rgba(25, 28, 42, 0.88));
  border-color: rgba(255, 255, 255, 0.1);
}

.ksu-suite-hero .scene3d__float--red {
  background: linear-gradient(135deg, #dc0018, #b30014 55%, #70000d);
}

.ksu-suite-hero .ksu-orbit__path {
  border-color: rgba(220, 0, 24, 0.12);
  box-shadow:
    inset 0 0 80px rgba(220, 0, 24, 0.08),
    0 0 30px rgba(220, 0, 24, 0.04);
}

.ksu-suite-hero .ksu-orbit__path--2 {
  border-color: rgba(15, 23, 42, 0.1);
  opacity: 0.8;
}

.ksu-suite-hero .ksu-orbit__core {
  overflow: visible;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 214, 220, 0.88), rgba(255, 214, 220, 0) 34%),
    radial-gradient(circle at 68% 68%, rgba(255, 122, 137, 0.28), rgba(255, 122, 137, 0) 50%),
    linear-gradient(165deg, #ff2d45 0%, #cf001a 56%, #7b000f 100%);
  border-color: rgba(255, 205, 210, 0.56);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 36px 90px rgba(220, 0, 24, 0.42),
    0 0 90px rgba(220, 0, 24, 0.18),
    inset 0 2px 20px rgba(255, 255, 255, 0.3);
}

.ksu-suite-hero .ksu-orbit__core::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background:
    conic-gradient(from 90deg, rgba(220, 0, 24, 0), rgba(220, 0, 24, 0.38), rgba(255, 255, 255, 0), rgba(255, 94, 112, 0.34), rgba(220, 0, 24, 0));
  filter: blur(7px);
  opacity: 0.85;
  animation: ksu-suite-spin 16s linear infinite;
}

.ksu-suite-hero .ksu-orbit__core-k {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.ksu-suite-hero .ksu-orbit__node {
  padding: 9px 14px 9px 10px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(12, 15, 24, 0.84), rgba(17, 20, 31, 0.72));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ksu-suite-hero .ksu-orbit__node small {
  color: rgba(255, 255, 255, 0.48);
}

.ksu-suite-hero .ksu-orbit__nico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    linear-gradient(150deg, rgba(255, 62, 84, 0.98), rgba(154, 0, 17, 0.96));
  box-shadow:
    0 10px 24px rgba(220, 0, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@keyframes ksu-suite-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ksu-suite-spin-rev {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes ksu-suite-scan {
  0%, 100% {
    transform: translateY(-7%);
    opacity: 0.25;
  }
  50% {
    transform: translateY(8%);
    opacity: 0.8;
  }
}

@keyframes ksu-suite-glint {
  0%, 100% {
    transform: translateX(-16%) translateY(0) rotate(0deg);
    opacity: 0.25;
  }
  48% {
    transform: translateX(10%) translateY(-4%) rotate(1deg);
    opacity: 0.5;
  }
  60% {
    transform: translateX(14%) translateY(-5%) rotate(1deg);
    opacity: 0.12;
  }
}

@media (max-width: 1100px) {
  .ksu-suite-hero .ksu-hero__fit {
    justify-content: center;
    margin-inline: auto;
  }

  .ksu-suite-hero .hero-stage__trust {
    margin-inline: auto;
  }

  .ksu-suite-visual__hud-pill--tl {
    left: 12%;
  }

  .ksu-suite-visual__hud-pill--br {
    right: 12%;
  }
}

@media (max-width: 640px) {
  .ksu-suite-hero {
    overflow: hidden;
  }

  .ksu-suite-hero .hero-stage__text {
    max-width: 100%;
  }

  .ksu-suite-hero .hero-stage__title {
    max-width: 8.5ch;
    font-size: clamp(28px, 10.6vw, 40px);
    line-height: 0.94;
    letter-spacing: -0.05em;
  }

  .ksu-suite-hero .hero-stage__lead {
    max-width: 30ch;
    font-size: 14px;
    line-height: 1.56;
  }

  .ksu-suite-hero .ksu-hero__fit {
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 24px;
    gap: 6px;
  }

  .ksu-suite-hero .ksu-hero__fit span {
    padding: 6px 8px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .ksu-suite-hero .hero-stage__ctas-row {
    width: 100%;
  }

  .ksu-suite-hero .hero-stage__ctas-row .btn-pill,
  .ksu-suite-hero .hero-stage__ctas-row .sm-chat-trigger--hero {
    width: 100%;
    justify-content: center;
  }

  .ksu-suite-hero .hero-stage__stats {
    max-width: 100%;
  }

  .ksu-suite-hero .ksu-orbit {
    width: min(420px, 92%);
    height: clamp(280px, 72vw, 360px);
  }

  .ksu-suite-hero::after {
    top: 18%;
    right: -10%;
    width: 86vw;
  }

  .ksu-suite-visual::before {
    inset: 8% 6%;
    border-radius: 30%;
  }

  .ksu-suite-visual__mesh {
    inset: 9%;
  }

  .ksu-suite-visual__hud-line--bottom,
  .ksu-suite-visual__hud-pill--br {
    display: none;
  }

  .ksu-suite-visual__hud-pill--tl {
    top: 10%;
    left: 7%;
    padding: 8px 10px;
  }

  .ksu-suite-visual__hud-pill strong {
    font-size: 14px;
  }

  .ksu-suite-visual__status {
    bottom: 3%;
    width: min(92%, 320px);
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 12px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ksu-aurora, .ksu-fchip, .ksu-hero__pill .dot { animation: none; }
  .ksu-marquee__track { animation: none; transform: none; }
}

/* ============================================================================
   3D-ORBIT — Hero-Herzstück (nur /ki-suite.html)
   Ein zentraler „1 Login"-Kern, um den die 8 Module in Pseudo-3D kreisen.
   Positionen/Tiefe (Scale, Opacity, z-index, Blur) setzt JS pro Frame; die
   ganze Bühne kippt bei Mausbewegung (echte 3D-Perspektive). Reduced-Motion:
   JS friert die Rotation ein, arrangiert die Nodes einmal statisch.
   ============================================================================ */
.ksu-orbit {
  position: relative;
  z-index: 2;
  width: min(760px, 94vw);
  height: clamp(320px, 44vw, 460px);
  margin: clamp(46px, 7vh, 84px) auto 0;
  perspective: 1300px;
  perspective-origin: 50% 45%;
}
.ksu-orbit__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
/* elliptische Bahn-Linie (Struktur hinter den Nodes) */
.ksu-orbit__path {
  position: absolute;
  left: 50%; top: 50%;
  width: 84%; height: 60%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(220, 0, 24, 0.06);
}
.ksu-orbit__path--2 {
  width: 60%; height: 40%;
  border-color: rgba(255, 255, 255, 0.05);
  border-style: dashed;
  animation: ksu-orbit-spin 40s linear infinite;
}
@keyframes ksu-orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* zentraler Kern */
.ksu-orbit__core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 60;
  width: clamp(120px, 17vw, 168px);
  height: clamp(120px, 17vw, 168px);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 3px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 120, 132, 0.55), transparent 62%),
    linear-gradient(160deg, rgba(220, 0, 24, 0.92), rgba(120, 0, 14, 0.94));
  border: 1px solid rgba(255, 150, 160, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(220, 0, 24, 0.5),
    inset 0 2px 18px rgba(255, 255, 255, 0.28);
  color: #fff;
}
.ksu-orbit__core::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 108, 0.4);
  animation: ksu-orbit-halo 3.4s ease-in-out infinite;
}
@keyframes ksu-orbit-halo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.14); opacity: 0.15; }
}
.ksu-orbit__core-k {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ksu-orbit__core-l {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  max-width: 12ch;
  margin-inline: auto;
  line-height: 1.4;
}

/* umkreisende Modul-Nodes (Position via JS) */
.ksu-orbit__node {
  position: absolute;
  left: 50%; top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px 8px 9px;
  border-radius: 13px;
  background: rgba(15, 17, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
.ksu-orbit__node b { font-weight: 650; }
.ksu-orbit__node small {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1px;
}
.ksu-orbit__nico {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(220, 0, 24, 0.9), rgba(150, 0, 16, 0.92));
  color: #fff;
  box-shadow: 0 6px 16px rgba(220, 0, 24, 0.4);
}
.ksu-orbit__nico svg { width: 14px; height: 14px; }
/* Mobile: Labels würden im engen Orbit an den Rändern klippen → Nodes werden
   runde Icon-„Planeten" (die Modulnamen stehen ohnehin unten im Bento-Grid).
   Der Node verliert seine eigene Hülle; die rote nico-Bubble IST der Node. */
@media (max-width: 560px) {
  .ksu-orbit { height: clamp(280px, 74vw, 360px); }
  .ksu-orbit__node {
    padding: 0; gap: 0;
    background: none; border: none; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .ksu-orbit__node > span:last-child { display: none; }
  .ksu-orbit__nico {
    width: 44px; height: 44px; border-radius: 50%;
    box-shadow: 0 10px 26px rgba(220, 0, 24, 0.5), 0 0 0 1px rgba(255, 150, 160, 0.4);
  }
  .ksu-orbit__nico svg { width: 19px; height: 19px; }
  .ksu-orbit__core { width: clamp(104px, 29vw, 130px); height: clamp(104px, 29vw, 130px); }
}

/* --- 3D-Tilt entfernt (kein .ksu-card im DOM mehr) ------------------------- */

@media (prefers-reduced-motion: reduce) {
  .ksu-orbit__path--2, .ksu-orbit__core::before { animation: none; }
  .ksu-orbit__stage { transition: none; }
}

/* ============================================================================
   ERWEITERTE MODULE · E-Mail-Sequenzen, Automationen, Reporting
   ============================================================================ */

/* E-Mail-Sequenz */
.ksu-seq { display: flex; flex-direction: column; gap: 6px; }
.ksu-seq__step {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: 11px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.ksu-seq__step > span {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55);
  font-size: 10px; font-weight: 700;
}
.ksu-seq__step--done > span { background: rgba(74,222,128,0.18); color: #4ade80; }
.ksu-seq__step--active > span { background: rgba(220,0,24,0.22); color: #ff8f9b; box-shadow: 0 0 14px rgba(220,0,24,0.35); }
.ksu-seq__step > div { min-width: 0; }
.ksu-seq__step b { display: block; font-size: 12px; font-weight: 650; color: rgba(255,255,255,0.9); }
.ksu-seq__step small { display: block; font-size: 10px; color: rgba(255,255,255,0.45); }
.ksu-seq__line { height: 10px; width: 2px; background: rgba(255,255,255,0.08); margin-left: 20px; }

/* Automation Flow-Viz */
.ksu-flowviz { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.ksu-flowviz__node {
  padding: 6px 10px; border-radius: 8px; font-size: 10.5px; font-weight: 650;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.ksu-flowviz__node--trigger { background: rgba(220,0,24,0.16); border-color: rgba(220,0,24,0.45); color: #ff9ca7; }
.ksu-flowviz__wire {
  flex: 1 1 16px; height: 2px; min-width: 12px; border-radius: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(220,0,24,0.3), rgba(255,255,255,0.08));
  background-size: 200% 100%;
  animation: ksu-flowwire 2.8s linear infinite;
}
@keyframes ksu-flowwire { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Reporting metrics */
.ksu-report { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ksu-report__metric {
  text-align: center; padding: 10px 8px; border-radius: 11px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.ksu-report__metric small { display: block; font-family: var(--font-mono, ui-monospace, monospace); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ksu-report__metric b { display: block; font-size: 16px; font-weight: 750; margin: 4px 0 2px; }
.ksu-report__trend { font-size: 10px; font-weight: 650; }
.ksu-report__trend--up { color: #4ade80; }

/* ============================================================================
   LEAD-TO-CASH WORKFLOW · Animierter Prozess-Flow
   ============================================================================ */
.ksu-workflow { margin-top: clamp(34px, 5vw, 56px); }
.ksu-workflow__track { position: relative; padding: 10px 0 28px; }
.ksu-workflow__line {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px;
}
.ksu-workflow__line span {
  display: block; height: 100%; width: 16%;
  background: linear-gradient(90deg, #dc0018, #ff5d6e);
  border-radius: inherit;
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ksu-workflow__steps {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1.4vw, 18px);
}
.ksu-workflow__step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; text-align: center;
}
.ksu-workflow__dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(15,17,28,0.9); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 700;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ksu-workflow__step--active .ksu-workflow__dot {
  background: linear-gradient(135deg, #ff2c40, #c00015);
  border-color: rgba(255,150,160,0.55);
  color: #fff; box-shadow: 0 0 18px rgba(220,0,24,0.32);
  transform: scale(1.05);
}
.ksu-workflow__card {
  padding: 12px 10px; border-radius: 13px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}
.ksu-workflow__step:hover .ksu-workflow__card,
.ksu-workflow__step--active .ksu-workflow__card {
  background: rgba(255,255,255,0.07); border-color: rgba(220,0,24,0.35);
  transform: translateY(-2px);
}
.ksu-workflow__card svg {
  width: 22px; height: 22px; color: #ff8f9b; margin-bottom: 6px;
}
.ksu-workflow__card i[data-lucide] { display: inline-flex; line-height: 0; }
.ksu-workflow__card i[data-lucide] svg {
  width: 22px; height: 22px; color: #ff8f9b; margin-bottom: 6px;
}
.ksu-workflow__step--active .ksu-workflow__card i[data-lucide] svg,
.ksu-workflow__step--active .ksu-workflow__card svg { color: #ff2c40; }
.ksu-workflow__card b { display: block; font-size: 12px; color: rgba(255,255,255,0.92); margin-bottom: 2px; }
.ksu-workflow__card small { display: block; font-size: 9.5px; color: rgba(255,255,255,0.45); line-height: 1.4; }
.ksu-workflow__detail { margin-top: 8px; }
.ksu-workflow__panel {
  display: none; padding: clamp(18px, 2.6vw, 28px);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  animation: ksu-fadein 0.4s ease;
}
.ksu-workflow__panel--active { display: block; }
.ksu-workflow__panel h4 {
  margin: 0 0 10px; font-size: clamp(16px, 1.6vw, 19px); font-weight: 700;
  color: #ff8f9b;
}
.ksu-workflow__panel p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.62); }
@keyframes ksu-fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 820px) {
  .ksu-workflow__steps { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .ksu-workflow__line { display: none; }
}
@media (max-width: 480px) {
  .ksu-workflow__steps { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================================
   BRANCHEN-USECASES · Tabs + animierte Orbit-Visualisierung
   ============================================================================ */
.ksu-industries { margin-top: clamp(34px, 5vw, 56px); }
.ksu-industries__tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: clamp(22px, 3vw, 32px);
}
.ksu-industries__tab {
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65); font-size: 12.5px; font-weight: 600;
  transition: all 0.3s ease;
}
.ksu-industries__tab:hover { background: rgba(255,255,255,0.1); color: #fff; }
.ksu-industries__tab--active {
  background: linear-gradient(135deg, #ff2c40, #c00015);
  border-color: rgba(255,150,160,0.45); color: #fff;
  box-shadow: 0 12px 34px rgba(220,0,24,0.32);
}
.ksu-industries__panels { position: relative; }
.ksu-industries__panel {
  display: none; grid-template-columns: 1fr 1.25fr; gap: clamp(24px, 4vw, 48px); align-items: center;
  animation: ksu-fadein 0.45s ease;
}
.ksu-industries__panel--active { display: grid; }
.ksu-industries__visual {
  min-height: 320px; display: grid; place-items: center;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}
.ksu-industries__orbit {
  position: relative; width: 300px; height: 300px;
}
.ksu-industries__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, #ff2c40, #c00015);
  box-shadow: 0 18px 50px rgba(220,0,24,0.45);
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
}
.ksu-industries__node {
  position: absolute; left: 50%; top: 50%;
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: rgba(15,17,28,0.9); border: 1px solid rgba(255,255,255,0.12);
  color: #ff8f9b;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translateX(108px) rotate(calc(var(--i) * -90deg));
  animation: ksu-indorbit 14s linear infinite;
}
.ksu-industries__node svg { width: 24px; height: 24px; }
@keyframes ksu-indorbit {
  from { transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translateX(108px) rotate(calc(var(--i) * -90deg)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg + 360deg)) translateX(108px) rotate(calc(var(--i) * -90deg - 360deg)); }
}
.ksu-industries__content h3 { margin: 0 0 12px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 750; }
.ksu-industries__lead {
  font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 0 0 18px;
}
.ksu-industries__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 14px; }
.ksu-industries__list li {
  position: relative; padding-left: 30px;
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7);
}
.ksu-industries__list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 7px;
  background: linear-gradient(135deg, rgba(220,0,24,0.18), rgba(220,0,24,0.08));
  border: 1px solid rgba(220,0,24,0.22);
}
.ksu-industries__list li::after {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 8px; height: 5px;
  border-left: 2px solid #ff2c40; border-bottom: 2px solid #ff2c40;
  transform: rotate(-45deg);
}
.ksu-industries__list li strong { color: rgba(255,255,255,0.95); }
.ksu-industries__result {
  display: inline-flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(34,197,94,0.05));
  border: 1px solid rgba(74,222,128,0.25);
  box-shadow: 0 8px 24px rgba(74,222,128,0.08);
}
.ksu-industries__result span { font-size: 10px; font-family: var(--font-mono, ui-monospace, monospace); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ksu-industries__result strong { font-size: 14.5px; color: #4ade80; font-weight: 700; }
@media (max-width: 820px) {
  .ksu-industries__panel { grid-template-columns: 1fr; }
  .ksu-industries__visual { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .ksu-industries__node { animation: none; }
}

/* ============================================================================
   KMU / ENTERPRISE SEGMENTE
   ============================================================================ */
.ksu-segments {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.2vw, 24px);
  margin-top: clamp(34px, 5vw, 56px);
}
.ksu-segment {
  padding: clamp(22px, 2.8vw, 32px);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.ksu-segment:hover { transform: translateY(-4px); border-color: rgba(220,0,24,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.ksu-segment__badge {
  display: inline-flex; padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, monospace); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(220,0,24,0.14); border: 1px solid rgba(220,0,24,0.4); color: #ff9ca7;
  margin-bottom: 14px;
}
.ksu-segment h3 { margin: 0 0 10px; font-size: clamp(18px, 1.8vw, 22px); font-weight: 750; line-height: 1.25; }
.ksu-segment p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.ksu-segment__list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.ksu-segment__list li {
  position: relative; padding-left: 20px;
  font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.7);
}
.ksu-segment__list li::before { content: "✓"; position: absolute; left: 0; color: #4ade80; }
.ksu-segment__quote {
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.ksu-segment__quote span { display: block; font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.ksu-segment__quote strong { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.45; }
.ksu-segment__bridge {
  margin-top: clamp(24px, 3vw, 34px); text-align: center;
  padding: 16px; border-radius: 16px;
  background: rgba(220,0,24,0.08); border: 1px solid rgba(220,0,24,0.25);
}
.ksu-segment__bridge span { display: block; font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.ksu-segment__bridge strong { font-size: 14.5px; color: #ff9ca7; }
@media (max-width: 760px) {
  .ksu-segments { grid-template-columns: 1fr; }
}

/* ============================================================================
   SWISS QR & ZAHLUNGEN
   ============================================================================ */
.ksu-qr {
  display: flex; align-items: center; gap: clamp(10px, 1.6vw, 18px);
  padding: 12px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(15,23,42,0.08);
}
.ksu-qr__code {
  flex: 0 0 auto; width: 78px; height: 78px; border-radius: 8px;
  background: #fff; padding: 6px;
  border: 1px solid rgba(15,23,42,0.1);
}
.ksu-qr__code svg { width: 100%; height: 100%; display: block; }
.ksu-qr__info { min-width: 0; }
.ksu-qr__info b { display: block; font-size: 12.5px; color: #0f172a; margin-bottom: 2px; }
.ksu-qr__info span { display: block; font-size: 10.5px; color: #64748b; }
.ksu-qr__amount {
  margin-left: auto; text-align: right;
  font-size: 16px; font-weight: 750; color: #0f172a;
}
.ksu-qr__amount small { display: block; font-size: 9.5px; color: #94a3b8; font-weight: 500; }

/* ============================================================================
   AGENTIC CONTROL · KI-Steuerzentrale
   ============================================================================ */
.ksu-agentic {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: center;
}
.ksu-agentic__visual {
  position: relative; min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  display: grid; place-items: center; overflow: hidden;
}
.ksu-agentic__brain {
  position: relative; width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255,120,132,0.55), transparent 60%),
              linear-gradient(160deg, rgba(220,0,24,0.92), rgba(120,0,14,0.95));
  box-shadow: 0 24px 70px rgba(220,0,24,0.45), inset 0 2px 20px rgba(255,255,255,0.25);
  display: grid; place-items: center;
}
.ksu-agentic__brain svg { width: 52px; height: 52px; color: #fff; }
.ksu-agentic__brain::before {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px solid rgba(255,90,108,0.4);
  animation: ksu-brainhalo 3.2s ease-in-out infinite;
}
@keyframes ksu-brainhalo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 0.12; }
}
.ksu-agentic__orb {
  position: absolute; left: 50%; top: 50%;
  width: 240px; height: 240px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
  transform: translate(-50%, -50%);
}
.ksu-agentic__sat {
  position: absolute; left: 50%; top: 50%;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(15,17,28,0.9); border: 1px solid rgba(255,255,255,0.12);
  color: #ff8f9b;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg)) translateX(120px) rotate(calc(var(--i) * -72deg));
  animation: ksu-agentspin 16s linear infinite;
}
.ksu-agentic__sat svg { width: 20px; height: 20px; }
.ksu-agentic__sat i, .ksu-agentic__brain i { display: inline-flex; }
@keyframes ksu-agentspin {
  from { transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg)) translateX(120px) rotate(calc(var(--i) * -72deg)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg + 360deg)) translateX(120px) rotate(calc(var(--i) * -72deg - 360deg)); }
}
.ksu-agentic__content h3 { margin: 0 0 12px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 750; }
.ksu-agentic__content p { margin: 0 0 18px; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.ksu-agentic__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ksu-agentic__list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.72);
}
.ksu-agentic__list li svg {
  flex: 0 0 auto; width: 18px; height: 18px; color: #ff5d6e; margin-top: 1px;
}
.ksu-agentic__list li i { flex: 0 0 auto; display: inline-flex; margin-top: 1px; color: #ff5d6e; }
@media (max-width: 820px) {
  .ksu-agentic { grid-template-columns: 1fr; }
  .ksu-agentic__visual { min-height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .ksu-agentic__brain::before, .ksu-agentic__sat { animation: none; }
}

/* ============================================================================
   2000+ INTEGRATIONEN · Visualisiertes Ökosystem
   ============================================================================ */
.ksu-integrations {
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 24px;
  background:
    radial-gradient(900px 500px at 10% 20%, rgba(220,0,24,0.08), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
}
.ksu-integrations__head { text-align: center; max-width: 680px; margin: 0 auto 30px; }
.ksu-integrations__head h3 { margin: 0 0 10px; font-size: clamp(22px, 2.6vw, 32px); font-weight: 750; }
.ksu-integrations__head p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.ksu-integrations__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px;
}
.ksu-integrations__tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  min-height: 92px; padding: 12px 8px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  text-align: center; transition: all 0.3s ease;
}
.ksu-integrations__tile:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); border-color: rgba(220,0,24,0.35); }
.ksu-integrations__tile svg { width: 24px; height: 24px; color: #ff8f9b; }
.ksu-integrations__tile span { font-size: 11px; font-weight: 650; color: rgba(255,255,255,0.8); }
.ksu-integrations__tile small { font-size: 9px; color: rgba(255,255,255,0.45); }
.ksu-integrations__count {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; padding: 10px 18px; border-radius: 999px;
  background: rgba(220,0,24,0.12); border: 1px solid rgba(220,0,24,0.35);
  color: #ff9ca7; font-size: 13px; font-weight: 700;
}
.ksu-integrations__count span {
  font-size: 20px; font-weight: 800; color: #fff;
}
.ksu-integrations__tile i[data-lucide] { display: inline-flex; line-height: 0; }
.ksu-integrations__tile i[data-lucide] svg { width: 24px; height: 24px; color: #ff8f9b; }

/* --- Integrationen: Suche + Filter + Aufklappen -------------------------- */
.ksu-integrations__controls {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin: 0 auto 28px; max-width: 720px;
}
.ksu-integrations__search {
  position: relative; width: 100%; max-width: 460px;
}
.ksu-integrations__search i[data-lucide] {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4); display: inline-flex; line-height: 0;
}
.ksu-integrations__search i[data-lucide] svg { width: 16px; height: 16px; }
.ksu-integrations__search input {
  width: 100%; padding: 12px 16px 12px 42px;
  border-radius: 999px; font-size: 14px; font-family: inherit;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; transition: border-color 0.25s ease, background 0.25s ease;
}
.ksu-integrations__search input::placeholder { color: rgba(255,255,255,0.4); }
.ksu-integrations__search input:focus {
  outline: none; border-color: rgba(220,0,24,0.5);
  background: rgba(255,255,255,0.07);
}
.ksu-integrations__filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.ksu-integrations__chip {
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  font-size: 12px; font-weight: 600; font-family: inherit;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); transition: all 0.25s ease;
}
.ksu-integrations__chip:hover { border-color: rgba(220,0,24,0.35); color: #fff; }
.ksu-integrations__chip--active {
  background: rgba(220,0,24,0.18); border-color: rgba(220,0,24,0.45); color: #fff;
}
.ksu-integrations__grid--collapsed {
  max-height: 360px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}
.ksu-integrations__expand { text-align: center; margin-top: 20px; }
.ksu-integrations__empty {
  text-align: center; margin-top: 16px; font-size: 14px;
  color: rgba(255,255,255,0.5); padding: 18px;
}


/* ============================================================================
   BRANCHEN-USECASES (#branchen, .ksu-industries) — Basis-Layout (2026-07-23).
   Die Sektion wurde ohne Komponenten-CSS ausgeliefert: nur Farb-Overrides in
   light-2026.css existierten. Folge: Tabs klebten ohne Abstand aneinander,
   alle 7 Panels lagen sichtbar untereinander, der Orbit hatte keine Geometrie.
   Farben kommen bewusst weiter aus light-2026.css (keine zweite Farbquelle,
   kein !important-Kampf) — hier stehen nur Layout, Geometrie und Motion.
   ========================================================================== */
.ksu-industries { margin-top: clamp(28px, 4vw, 46px); }

.ksu-industries__tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: clamp(20px, 3vw, 30px);
}
.ksu-industries__tab {
  appearance: none; cursor: pointer;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit; font-size: 13px; font-weight: 600; line-height: 1.2;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease, border-color 0.25s ease,
              background 0.25s ease, color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.ksu-industries__tab:hover { transform: translateY(-1px); border-color: rgba(220, 0, 24, 0.3) !important; }
.ksu-industries__tab--active { box-shadow: 0 6px 18px rgba(220, 0, 24, 0.14); }

.ksu-industries__panels { position: relative; }
.ksu-industries__panel { display: none; }
.ksu-industries__panel--active {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 3.5vw, 44px); align-items: center;
  border: 1px solid transparent; border-radius: 24px;
  padding: clamp(22px, 3.5vw, 40px);
  animation: ksuIndIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes ksuIndIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Orbit-Visual: Kern in der Mitte, 4 Icon-Nodes auf einem Ring (via --i) */
.ksu-industries__visual { display: grid; place-items: center; min-width: 0; }
.ksu-industries__orbit {
  position: relative; width: min(280px, 72vw); aspect-ratio: 1;
  --ksu-orb-r: clamp(96px, 26vw, 122px);
}
.ksu-industries__orbit::before {
  content: ""; position: absolute; inset: 9%;
  border: 1.5px dashed rgba(220, 0, 24, 0.22); border-radius: 50%;
  animation: ksuIndSpin 46s linear infinite;
}
@keyframes ksuIndSpin { to { transform: rotate(360deg); } }
.ksu-industries__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 104px; height: 104px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  padding: 8px; font-weight: 800; font-size: 14px; letter-spacing: -0.01em;
  z-index: 2;
}
.ksu-industries__node {
  position: absolute; left: 50%; top: 50%;
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  border: 1px solid transparent;
  transform: translate(-50%, -50%)
             rotate(calc(var(--i, 0) * 90deg + 45deg))
             translate(var(--ksu-orb-r))
             rotate(calc((var(--i, 0) * 90deg + 45deg) * -1));
}
.ksu-industries__node svg { width: 20px; height: 20px; }
.ksu-industries__node i[data-lucide] { display: grid; place-items: center; line-height: 0; }

/* Text-Spalte */
.ksu-industries__content { min-width: 0; }
.ksu-industries__content h3 {
  font-size: clamp(19px, 2.4vw, 25px); font-weight: 750;
  letter-spacing: -0.015em; margin: 0 0 8px;
}
.ksu-industries__lead { font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
.ksu-industries__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ksu-industries__list li { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.6; }
.ksu-industries__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 17px; height: 17px; border-radius: 6px;
  background: rgba(220, 0, 24, 0.08); border: 1px solid rgba(220, 0, 24, 0.22);
}
.ksu-industries__list li::after {
  content: ""; position: absolute; left: 5px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid #dc0018; border-bottom: 2px solid #dc0018;
  transform: rotate(-45deg);
}
.ksu-industries__result {
  margin-top: 18px; padding: 13px 16px; border-radius: 14px;
  background: rgba(220, 0, 24, 0.06); border: 1px solid rgba(220, 0, 24, 0.16);
  display: flex; flex-direction: column; gap: 3px;
}
.ksu-industries__result span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.ksu-industries__result strong { font-size: 14px; letter-spacing: -0.01em; color: #1d1d1f; }

/* Mobile: Tabs als wischbare Leiste, Panel einspaltig, Orbit kompakt */
@media (max-width: 860px) {
  .ksu-industries__panel--active { grid-template-columns: 1fr; gap: 18px; padding: 20px 16px; }
  .ksu-industries__visual { order: -1; }
  .ksu-industries__orbit { width: min(210px, 58vw); --ksu-orb-r: clamp(74px, 22vw, 92px); }
  .ksu-industries__core { width: 82px; height: 82px; font-size: 12.5px; }
  .ksu-industries__node { width: 42px; height: 42px; }
  .ksu-industries__tabs {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; scrollbar-width: none;
    padding: 2px 4px 10px; margin-inline: -4px;
  }
  .ksu-industries__tabs::-webkit-scrollbar { display: none; }
  .ksu-industries__tab { flex: 0 0 auto; scroll-snap-align: start; }
}
@media (prefers-reduced-motion: reduce) {
  .ksu-industries__orbit::before { animation: none; }
  .ksu-industries__panel--active { animation: none; }
  .ksu-industries__tab { transition: none; }
}

/* ============================================================================
   KSM · Editorial Module-Stages — #module als vollbreiter Stage-Flow (2026-07)
   Bento-Grid → alternierende Held-Mockup-Zeilen + Sticky-Rail (>=1100px).
   Die Seite läuft im Light-Theme: light-2026.css lädt NACH dieser Datei und
   zwingt .ksu-ui/.ksu-chip/… per !important auf Weiss — deshalb hier nur
   --le-*-Tokens; wo Alt-Klassen überstylt werden, gewinnen Selektoren mit
   2+ Klassen und !important (Muster wie .ksu-ui__bar .ksu-ui__live oben).
   Motion: sämtliche Pre-Hide-Zustände und Loops liegen unter .ksm-js (JS hat
   initialisiert) UND prefers-reduced-motion: no-preference — ohne JS oder mit
   Reduced-Motion zeigt das HTML statisch die Endzustände.
   ========================================================================== */
.ksm-layout { margin-top: clamp(36px, 5vw, 64px); }
@media (min-width: 1100px) {
  .ksm-layout {
    display: grid;
    grid-template-columns: minmax(150px, 190px) 1fr;
    gap: clamp(28px, 3vw, 52px);
    align-items: start;
  }
}
.ksm-flow { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 112px); }

.ksm-stage { display: grid; align-items: center; gap: clamp(24px, 4vw, 64px); }
@media (min-width: 861px) {
  .ksm-stage { grid-template-columns: 1.12fr 1fr; }
  /* Tiefe: das Mockup dreht LEICHT zum Text hin */
  .ksm-stage__scene { transform: perspective(1400px) rotateY(-4deg); }
  .ksm-stage:nth-of-type(even) .ksm-stage__scene {
    order: 2;
    transform: perspective(1400px) rotateY(4deg);
  }
}

/* Szene: Glas-Bühne, das Mockup ist der Held.
   min-width: 0 — Grid-Kinder dürfen unter die Min-Content-Breite der
   nowrap-Mockup-Chips schrumpfen (sonst Overflow auf 375px). */
.ksm-stage > * { min-width: 0; }
.ksm-stage__scene {
  position: relative;
  border-radius: 24px;
  padding: clamp(12px, 1.8vw, 20px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--le-line);
  box-shadow: var(--le-shadow-lg);
  transition: transform 0.6s var(--le-ease), box-shadow 0.6s ease;
}
.ksm-stage__scene:hover { box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 40px 90px rgba(220, 0, 24, 0.12); }
.ksm-stage__scene .ksu-ui { font-size: 12.5px; }
.ksm-stage__glow {
  position: absolute;
  inset: -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--le-red-soft), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Text-Spalte */
.ksm-stage__copy { min-width: 0; }
.ksm-stage__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ksm-stage__meta .ksu-card__badge { margin-left: 0; }
.ksm-stage__num {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--le-red);
  padding-bottom: 2px;
  border-bottom: 2px solid var(--le-red);
}
.ksm-stage__head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.ksm-stage__title { font-size: clamp(22px, 2.6vw, 32px) !important; letter-spacing: -0.02em; }
.ksm-stage__lead {
  font-size: 15px !important;
  line-height: 1.65 !important;
  max-width: 52ch;
  margin: 0 0 18px !important;
}

/* Bullets: Pill → Checkmark-Liste (schlägt light-2026 ".ksu-feats > *") */
.ksm-stage .ksu-feats { flex-direction: column; align-items: stretch; gap: 10px; }
.ksm-stage .ksu-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  line-height: 1.55;
  color: var(--le-text-2) !important;
}
.ksm-stage .ksu-feats li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--le-red-soft);
  color: var(--le-red) !important;
  font-size: 11px;
}

/* Sticky Progress-Rail (nur >=1100px; mobil ersatzlos weg) */
.ksm-rail { display: none; }
@media (min-width: 1100px) {
  .ksm-rail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: sticky;
    top: clamp(96px, 14vh, 150px);
  }
  .ksm-rail__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--le-text-3);
    transition: color 0.3s ease, background 0.3s ease;
  }
  .ksm-rail__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  .ksm-rail__item:hover { color: var(--le-text); background: var(--le-bg-2); }
  .ksm-rail__item.is-active { color: var(--le-red); }
  .ksm-rail__item.is-active .ksm-rail__dot {
    background: var(--le-red);
    box-shadow: 0 0 0 4px var(--le-red-soft);
  }
}

/* Deko-Elemente der lebenden Mockups — statisch = Endzustand sichtbar */
.ksm-count { font-variant-numeric: tabular-nums; }
.ksm-stage[data-ksm="phone"] .ksu-ui__live { font-variant-numeric: tabular-nums; }
.ksm-pipebar {
  display: block;
  width: var(--w, 100%);
  height: 3px;
  margin-top: 7px;
  border-radius: 2px;
  background: linear-gradient(90deg, #dc0018, #ff5d6e);
  transform-origin: 0 50%;
}
.ksm-typing {
  display: none;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 13px;
  border-bottom-left-radius: 4px;
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
}
.ksm-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--le-text-3); }
.ksm-stage[data-ksm="docs"] .ksu-plan--hl { position: relative; overflow: hidden; }
/* "Abhaken"-Badge an den erledigten Sequenz-Schritten (rein dekorativ) */
.ksm-stage[data-ksm="mail"] .ksu-seq__step--done > span { position: relative; }
.ksm-stage[data-ksm="mail"] .ksu-seq__step--done > span::after {
  content: "✓";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #fff;
  font-size: 7px;
  line-height: 1;
}

/* Mobile: einspaltig, Mockup oben, Glow aus (Performance) */
@media (max-width: 860px) {
  .ksm-stage { grid-template-columns: 1fr; gap: 18px; }
  .ksm-stage__scene { order: -1; }
  .ksm-flow { gap: clamp(44px, 10vw, 64px); }
  .ksm-stage__glow { display: none; }
}

/* ---- Lebende Mockups: Entry-Pre-States, Staffelungen, ruhige Loops -------- */
@media (prefers-reduced-motion: no-preference) {

  /* 01 · Lead-Research: Ergebnis-Karten staggered, Fortschritt füllt sich */
  .ksm-js .ksm-stage[data-ksm="lead"] .ksu-ui__body > .ksu-row {
    transition: opacity 0.7s var(--le-ease), transform 0.7s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="lead"]:not(.is-live) .ksu-ui__body > .ksu-row {
    opacity: 0;
    transform: translateY(14px);
  }
  .ksm-js .ksm-stage[data-ksm="lead"].is-live .ksu-ui__body > .ksu-row:nth-child(2) { transition-delay: 0.15s; }
  .ksm-js .ksm-stage[data-ksm="lead"].is-live .ksu-ui__body > .ksu-row:nth-child(3) { transition-delay: 0.45s; }
  .ksm-js .ksm-stage[data-ksm="lead"] .ksu-progress__fill { transition: width 1.2s var(--le-ease) 0.2s; }
  .ksm-js .ksm-stage[data-ksm="lead"]:not(.is-live) .ksu-progress__fill { width: 0; }

  /* 02 · CRM: Pipeline-Balken füllen sich, "Rückruf fällig" pulst dezent */
  .ksm-js .ksm-stage[data-ksm="crm"] .ksm-pipebar { transition: transform 0.9s var(--le-ease); }
  .ksm-js .ksm-stage[data-ksm="crm"]:not(.is-live) .ksm-pipebar { transform: scaleX(0); }
  .ksm-js .ksm-stage[data-ksm="crm"].is-live .ksu-pipe:nth-child(1) .ksm-pipebar { transition-delay: 0.4s; }
  .ksm-js .ksm-stage[data-ksm="crm"].is-live .ksu-pipe:nth-child(2) .ksm-pipebar { transition-delay: 0.55s; }
  .ksm-js .ksm-stage[data-ksm="crm"].is-live .ksu-pipe:nth-child(3) .ksm-pipebar { transition-delay: 0.7s; }
  .ksm-js .ksm-stage[data-ksm="crm"].is-live .ksu-chip--hot { animation: ksm-pulse-soft 4.5s ease-in-out infinite; }

  /* 03 · Telefonie: Typewriter-Caret, To-do-Chip poppt nach dem Transkript */
  .ksm-type.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    vertical-align: -0.15em;
    background: var(--le-red);
    animation: ksm-caret 1s steps(1) infinite;
  }
  .ksm-js .ksm-stage[data-ksm="phone"] .ksu-chiprow .ksu-chip:nth-child(3) {
    transition: opacity 0.5s var(--le-ease), transform 0.5s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="phone"]:not(.is-done) .ksu-chiprow .ksu-chip:nth-child(3) {
    opacity: 0;
    transform: scale(0.6);
  }

  /* 04 · Terminbuchung: Slots poppen gestaffelt, ein freier Slot pulst "gebucht" */
  .ksm-js .ksm-stage[data-ksm="booking"] .ksu-slot {
    transition: opacity 0.5s var(--le-ease), transform 0.5s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="booking"]:not(.is-live) .ksu-slot { opacity: 0; transform: scale(0.85); }
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slot:nth-child(2) { transition-delay: 0.08s; }
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slot:nth-child(3) { transition-delay: 0.16s; }
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slot:nth-child(4) { transition-delay: 0.24s; }
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slot:nth-child(5) { transition-delay: 0.32s; }
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slot:nth-child(6) { transition-delay: 0.4s; }
  /* Farbwechsel via Inset-Shadow-Tint — light-2026 setzt background !important,
     das eine Keyframe-Animation nicht überstimmen könnte */
  .ksm-js .ksm-stage[data-ksm="booking"].is-live .ksu-slots .ksu-slot:nth-child(4) {
    animation: ksm-slot-book 8s ease-in-out 1.5s infinite;
  }

  /* 05 · E-Mail-Sequenzen: Schritte haken sich nacheinander ab, A/B-Badge wippt */
  .ksm-js .ksm-stage[data-ksm="mail"] .ksu-seq__step > span {
    transition: opacity 0.5s var(--le-ease), transform 0.5s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="mail"]:not(.is-live) .ksu-seq__step > span { opacity: 0; transform: scale(0.5); }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksu-seq__step:nth-child(1) > span { transition-delay: 0.2s; }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksu-seq__step:nth-child(3) > span { transition-delay: 0.9s; }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksu-seq__step:nth-child(5) > span { transition-delay: 1.6s; }
  .ksm-js .ksm-stage[data-ksm="mail"] .ksu-seq__step--done > span::after { transition: transform 0.4s var(--le-ease); }
  .ksm-js .ksm-stage[data-ksm="mail"]:not(.is-live) .ksu-seq__step--done > span::after { transform: scale(0); }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksu-seq__step:nth-child(1) > span::after { transition-delay: 0.5s; }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksu-seq__step:nth-child(3) > span::after { transition-delay: 1.2s; }
  .ksm-js .ksm-stage[data-ksm="mail"].is-live .ksm-stage__meta .ksu-card__badge {
    animation: ksm-badge-rock 5s ease-in-out infinite;
  }

  /* 06 · KI-Assistent: Frage → Tipp-Punkte → Antwort als ruhiger 14s-Loop */
  .ksm-js .ksm-stage[data-ksm="ai"] .ksm-typing { display: inline-flex; opacity: 0; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksu-msg--user { animation: ksm-chat-user 14s ease-in-out infinite; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksm-typing { animation: ksm-chat-typing 14s ease-in-out infinite; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksm-typing span { animation: ksm-typing-dot 1.2s ease-in-out infinite; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksm-typing span:nth-child(2) { animation-delay: 0.15s; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksm-typing span:nth-child(3) { animation-delay: 0.3s; }
  .ksm-js .ksm-stage[data-ksm="ai"].is-live .ksu-msg--ai { animation: ksm-chat-ai 14s ease-in-out infinite; }

  /* 07 · Kundenportal + 11 · Reporting: Balken wachsen von unten */
  .ksm-js .ksm-stage[data-ksm="portal"] .ksu-portal-stat span,
  .ksm-js .ksm-stage[data-ksm="report"] .ksu-portal-stat span {
    transform-origin: 50% 100%;
    transition: transform 0.8s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="portal"]:not(.is-live) .ksu-portal-stat span,
  .ksm-js .ksm-stage[data-ksm="report"]:not(.is-live) .ksu-portal-stat span { transform: scaleY(0); }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(2),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(2) { transition-delay: 0.09s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(3),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(3) { transition-delay: 0.18s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(4),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(4) { transition-delay: 0.27s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(5),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(5) { transition-delay: 0.36s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(6),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(6) { transition-delay: 0.45s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-stat span:nth-child(7),
  .ksm-js .ksm-stage[data-ksm="report"].is-live .ksu-portal-stat span:nth-child(7) { transition-delay: 0.54s; }
  .ksm-js .ksm-stage[data-ksm="portal"].is-live .ksu-portal-files .ksu-file:first-child small {
    color: var(--le-red);
    animation: ksm-pulse-soft 4.5s ease-in-out infinite;
  }

  /* 08 · Offerten: Plan-Karten fächern auf, "Empfohlen" shimmert */
  .ksm-js .ksm-stage[data-ksm="docs"] .ksu-plan {
    transition: opacity 0.7s var(--le-ease), transform 0.7s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="docs"]:not(.is-live) .ksu-plan {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  .ksm-js .ksm-stage[data-ksm="docs"].is-live .ksu-plan:nth-child(1) { transition-delay: 0.15s; }
  .ksm-js .ksm-stage[data-ksm="docs"].is-live .ksu-plan:nth-child(2) { transition-delay: 0.35s; }
  .ksm-js .ksm-stage[data-ksm="docs"].is-live .ksu-plan:nth-child(3) { transition-delay: 0.55s; }
  .ksm-stage[data-ksm="docs"] .ksu-plan--hl::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-130%);
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    pointer-events: none;
  }
  .ksm-js .ksm-stage[data-ksm="docs"].is-live .ksu-plan--hl::after {
    animation: ksm-shimmer-sweep 5s ease-in-out 1.2s infinite;
  }

  /* 09 · Swiss QR: der QR-Code zeichnet sich zellenweise ein, Betrag tickt */
  .ksm-js .ksm-stage[data-ksm="qr"] .ksu-qr__code svg > * { transition: opacity 0.4s ease; }
  .ksm-js .ksm-stage[data-ksm="qr"]:not(.is-live) .ksu-qr__code svg > * { opacity: 0; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(2) { transition-delay: 0.07s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(3) { transition-delay: 0.14s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(4) { transition-delay: 0.21s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(5) { transition-delay: 0.28s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(6) { transition-delay: 0.35s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(7) { transition-delay: 0.42s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(8) { transition-delay: 0.49s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(9) { transition-delay: 0.56s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(10) { transition-delay: 0.63s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(11) { transition-delay: 0.7s; }
  .ksm-js .ksm-stage[data-ksm="qr"].is-live .ksu-qr__code svg > :nth-child(12) { transition-delay: 0.77s; }

  /* 10 · Automationen: Flow-Nodes poppen, "Live"-Chip pulst */
  .ksm-js .ksm-stage[data-ksm="auto"] .ksu-flowviz__node {
    transition: opacity 0.6s var(--le-ease), transform 0.6s var(--le-ease);
  }
  .ksm-js .ksm-stage[data-ksm="auto"]:not(.is-live) .ksu-flowviz__node { opacity: 0; transform: scale(0.8); }
  .ksm-js .ksm-stage[data-ksm="auto"].is-live .ksu-flowviz__node:nth-child(3) { transition-delay: 0.15s; }
  .ksm-js .ksm-stage[data-ksm="auto"].is-live .ksu-flowviz__node:nth-child(5) { transition-delay: 0.3s; }
  .ksm-js .ksm-stage[data-ksm="auto"].is-live .ksu-flowviz__node:nth-child(7) { transition-delay: 0.45s; }
  .ksm-js .ksm-stage[data-ksm="auto"].is-live .ksu-row .ksu-chip--ok { animation: ksm-pulse-soft 4.5s ease-in-out infinite; }
}

/* Mobile + Motion: gleiche Effekte, kleinere Amplituden */
@media (prefers-reduced-motion: no-preference) and (max-width: 860px) {
  .ksm-js .ksm-stage[data-ksm="lead"]:not(.is-live) .ksu-ui__body > .ksu-row { transform: translateY(10px); }
  .ksm-js .ksm-stage[data-ksm="docs"]:not(.is-live) .ksu-plan { transform: translateY(10px) scale(0.95); }
  .ksm-js .ksm-stage[data-ksm="booking"]:not(.is-live) .ksu-slot { transform: scale(0.92); }
}

/* KSM-Keyframes — alle Loops >= 4s, kleine Amplituden (Apple-Ruhe) */
@keyframes ksm-pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@keyframes ksm-badge-rock {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
@keyframes ksm-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes ksm-slot-book {
  0%, 40%, 63%, 100% { box-shadow: none; }
  45%, 58% { box-shadow: inset 0 0 0 999px var(--le-red-soft), 0 0 0 1px rgba(220, 0, 24, 0.35); }
}
@keyframes ksm-shimmer-sweep {
  0% { transform: translateX(-130%); }
  24%, 100% { transform: translateX(130%); }
}
@keyframes ksm-chat-user {
  0% { opacity: 0; transform: translateY(8px); }
  5%, 90% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}
@keyframes ksm-chat-typing {
  0%, 7% { opacity: 0; }
  9%, 26% { opacity: 1; }
  28%, 100% { opacity: 0; }
}
@keyframes ksm-chat-ai {
  0%, 27% { opacity: 0; transform: translateY(8px); }
  32%, 90% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}
@keyframes ksm-typing-dot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .ksm-typing { display: none !important; }
  .ksm-stage__scene { transition: none; }
}

/* ============================================================================
   UHD-APP-FENSTER-POLISH (aus SIP-Branch portiert, ergänzt main's .ksm-*-System)
   Mac-Traffic-Lights, Screen-Glanz, lebendige Mockup-Animationen.
   Selektoren sind .ksu-ui/.ksu-progress/.ksu-pipe etc. — funktionieren auf
   main's HTML (die .ksu-ui bleibt erhalten, nur in .ksm-stage__scene geschachtelt).
   ============================================================================ */

/* Mac-Style Traffic-Lights: echte Fenster-Buttons statt grauer Punkte */
.ksu-ui__dots span:nth-child(1) { background: #ff5f57; }
.ksu-ui__dots span:nth-child(2) { background: #febc2e; }
.ksu-ui__dots span:nth-child(3) { background: #28c840; }
.ksu-card--light .ksu-ui__dots span { border-color: rgba(0, 0, 0, 0.06); opacity: 0.92; }

/* Screen-Glanz: diagonaler Lichtreflex über dem Fenster-Inhalt (Glas-Display) */
.ksu-ui::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%, transparent 100%);
  opacity: 0.7;
}
.ksu-card--light .ksu-ui::after {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.5) 0%, transparent 30%, transparent 100%);
}

/* UHD-Visualisierung-Polish — lebendige Mockup-Bewegung */
.ksu-progress__fill { animation: ksu-progress-grow 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.ksu-progress__fill::after { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent); animation: ksu-shimmer 2.2s ease-in-out infinite; }
@keyframes ksu-progress-grow { 0%, 100% { width: 58%; } 50% { width: 72%; } }

.ksu-pipe--won { animation: ksu-pipe-win 3.2s ease-in-out infinite; }
@keyframes ksu-pipe-win {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
  50% { transform: translateY(-1px); box-shadow: 0 0 18px rgba(74, 222, 128, 0.22); }
}

.ksu-call__eq span { background: linear-gradient(180deg, #ff8f9b, #ff2c40); box-shadow: 0 0 6px rgba(255, 93, 110, 0.35); }
.ksu-call__eq span:nth-child(1) { animation-duration: 0.9s; }
.ksu-call__eq span:nth-child(2) { animation-duration: 1.3s; }
.ksu-call__eq span:nth-child(3) { animation-duration: 1.0s; }
.ksu-call__eq span:nth-child(4) { animation-duration: 1.5s; }
.ksu-call__eq span:nth-child(5) { animation-duration: 1.1s; }

.ksu-seq__line {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.4) 0%, rgba(220, 0, 24, 0.5) 100%);
  background-size: 100% 200%;
  animation: ksu-seq-flow 2.6s ease-in-out infinite;
}
@keyframes ksu-seq-flow { 0% { background-position: 0% 0%; } 100% { background-position: 0% 200%; } }
.ksu-seq__step--active > span { animation: ksu-seq-breath 2s ease-in-out infinite; }
@keyframes ksu-seq-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 0, 24, 0.0); }
  50% { box-shadow: 0 0 0 6px rgba(220, 0, 24, 0.10), 0 0 14px rgba(220, 0, 24, 0.35); }
}

.ksu-slot:not(.ksu-slot--booked) { animation: ksu-slot-pulse 3.4s ease-in-out infinite; }
.ksu-slot:nth-child(odd):not(.ksu-slot--booked) { animation-delay: -1.7s; }
@keyframes ksu-slot-pulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.10); }
  50% { border-color: rgba(220, 0, 24, 0.32); }
}

.ksu-ui__live::before { box-shadow: 0 0 0 0 rgba(220, 0, 24, 0.4); animation: ksu-live-ring 1.8s ease-out infinite; }
@keyframes ksu-live-ring {
  0% { box-shadow: 0 0 0 0 rgba(220, 0, 24, 0.5); }
  100% { box-shadow: 0 0 0 7px rgba(220, 0, 24, 0); }
}

.ksu-doc--active { animation: ksu-doc-active 2.4s ease-in-out infinite; }
@keyframes ksu-doc-active {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 0, 24, 0); }
  50% { box-shadow: 0 0 16px rgba(220, 0, 24, 0.30); }
}

/* UHD-Typografie: Crispness für Retina */
.ksu-card__title, .ksu-hero__title, .stage--ink .stage__title {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ksu-card__title { letter-spacing: -0.012em; }

@media (prefers-reduced-motion: reduce) {
  .ksu-progress__fill, .ksu-pipe--won, .ksu-seq__line, .ksu-seq__step--active > span,
  .ksu-slot:not(.ksu-slot--booked), .ksu-ui__live::before, .ksu-doc--active { animation: none !important; }
  .ksu-call__eq span { animation: none !important; }
  .ksu-progress__fill { width: 62%; }
}

/* ============================================================================
   PRICING — 3 Paket-Cards (Foundation / Suite / Command)
   Namespace: .ksu-pricing / .ksu-tier-*
   ============================================================================ */
.ksu-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); align-items: stretch; margin-top: clamp(28px, 4vw, 48px); }
.ksu-tier {
  position: relative; display: flex; flex-direction: column; padding: clamp(22px, 2.6vw, 30px);
  border-radius: 22px; background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.ksu-tier:hover { transform: translateY(-4px); border-color: rgba(220,0,24,0.38); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.ksu-tier--featured {
  border-color: rgba(220,0,24,0.5);
  background: linear-gradient(160deg, rgba(220,0,24,0.13), rgba(255,255,255,0.02));
  box-shadow: 0 26px 68px rgba(0,0,0,0.45);
}
@media (min-width: 980px) {
  .ksu-tier--featured { transform: translateY(-10px); }
  .ksu-tier--featured:hover { transform: translateY(-14px); }
}
.ksu-tier__flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono, ui-monospace, monospace); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #ff2c40, #c00015); color: #fff; box-shadow: 0 8px 22px rgba(220,0,24,0.5);
  white-space: nowrap;
}
.ksu-tier__step { font-family: var(--font-mono, ui-monospace, monospace); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #ff9ca7; margin-top: 8px; }
.ksu-tier__name { font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin: 4px 0 2px; }
.ksu-tier__size { font-size: 12.5px; color: rgba(255,255,255,0.55); margin: 0 0 12px; }
.ksu-tier__outcome { font-size: 14px; line-height: 1.45; font-weight: 650; color: rgba(255,255,255,0.92); margin: 0 0 16px; }
.ksu-tier__price {
  display: flex; gap: 16px; padding: 16px 0; margin-bottom: 6px;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ksu-tier__price-block { display: flex; flex-direction: column; flex: 1 1 0; min-width: 0; }
.ksu-tier__price-val { font-size: clamp(20px, 2.2vw, 25px); font-weight: 850; letter-spacing: -0.025em; color: #fff; line-height: 1.1; }
.ksu-tier__price-lbl { font-family: var(--font-mono, ui-monospace, monospace); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.48); margin-top: 5px; }
.ksu-tier__section-lbl { font-family: var(--font-mono, ui-monospace, monospace); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 18px 0 11px; }
.ksu-tier__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ksu-tier__list li { position: relative; padding-left: 24px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.76); }
.ksu-tier__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #4ade80; font-weight: 700; font-size: 13px; }
.ksu-tier__cta { margin-top: auto; padding-top: 20px; }
.ksu-tier__cta .ksu-btn { width: 100%; justify-content: center; }
.ksu-pricing__note {
  margin: clamp(20px, 2.6vw, 28px) auto 0; max-width: 820px; padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.6); text-align: center;
}
@media (max-width: 980px) {
  .ksu-pricing { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ============================================================================
   BUSINESS SUITE, EINFACH ERKLAERT
   Editorialer Vergleich nach dem Factsheet-Prinzip: klare Linien statt Cards.
   ============================================================================ */
.ksu-editorial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(760px 440px at 88% 5%, rgba(220, 0, 24, 0.16), transparent 66%),
    radial-gradient(620px 420px at 4% 94%, rgba(255, 255, 255, 0.045), transparent 70%),
    #111214;
  color: #f7f5f2;
}
.ksu-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
#einfach.scene-section {
  min-height: 0 !important;
  padding-block: clamp(78px, 9vw, 132px) !important;
}
.ksu-editorial__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.ksu-editorial__topline span:last-child { color: #ff6b7b; }
.ksu-editorial__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  padding: clamp(34px, 5vw, 68px) 0 clamp(42px, 6vw, 76px);
}
.ksu-editorial__intro h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.98;
  color: #fff;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.ksu-editorial__intro h2 span {
  color: #ef263b;
  font-style: italic;
}
.ksu-editorial__intro p {
  max-width: 42ch;
  margin: 0 0 5px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
}
.ksu-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.ksu-compare__panel {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.018);
}
.ksu-compare__panel + .ksu-compare__panel {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.ksu-compare__panel--suite {
  background:
    linear-gradient(145deg, rgba(220, 0, 24, 0.14), rgba(220, 0, 24, 0.025) 56%),
    rgba(255, 255, 255, 0.02);
}
.ksu-compare__panel--suite::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc0018, #ff5063);
}
.ksu-compare__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding-bottom: 24px;
}
.ksu-compare__index,
.ksu-compare__count {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}
.ksu-compare__panel--suite .ksu-compare__index { color: #ff7c8a; }
.ksu-compare__count {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  text-align: right;
  white-space: nowrap;
}
.ksu-compare__head h3 {
  margin: 5px 0 0;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}
.ksu-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ksu-compare__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.ksu-compare__list li > span {
  padding-top: 3px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.34);
}
.ksu-compare__panel--suite .ksu-compare__list li > span { color: #ff6677; }
.ksu-compare__list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
}
.ksu-compare__list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.54);
}
.ksu-compare__foot,
.ksu-compare__decision {
  min-height: 74px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.ksu-compare__foot {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}
.ksu-compare__decision {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.ksu-compare__decision span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff7c8a;
}
.ksu-compare__decision strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
}
.ksu-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ksu-principles article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 3vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.ksu-principles article + article { border-left: 1px solid rgba(255, 255, 255, 0.22); }
.ksu-principles article > span {
  padding-top: 3px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #f12b40;
}
.ksu-principles h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 730;
  letter-spacing: -0.015em;
  color: #fff;
}
.ksu-principles p {
  margin: 0;
  font-size: 13px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.52);
}

/* ============================================================================
   FINALER CTA
   Dunkle Abschlussflaeche mit Zahlenleiste statt schwebender weisser Card.
   ============================================================================ */
.ksu-closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(820px 420px at 82% 34%, rgba(220, 0, 24, 0.2), transparent 66%),
    linear-gradient(150deg, #090a0c 0%, #141518 58%, #0b0c0f 100%);
}
.ksu-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 54%, rgba(255, 255, 255, 0.035) 54.1% 54.25%, transparent 54.35%),
    linear-gradient(90deg, transparent, rgba(220, 0, 24, 0.12), transparent);
}
#cta.scene-section {
  min-height: 0 !important;
  padding-block: clamp(66px, 8vw, 112px) !important;
}
.ksu-final {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.ksu-final__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.ksu-final__stats > div {
  min-width: 0;
  padding: clamp(18px, 2.3vw, 28px);
}
.ksu-final__stats > div + div { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.ksu-final__value {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: #ff5063;
  font-variant-numeric: tabular-nums;
}
.ksu-final__stats span {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.ksu-final__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}
.ksu-final__copy {
  padding: clamp(34px, 5.5vw, 72px) clamp(24px, 5.5vw, 72px);
}
.ksu-final__eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9.5px;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ff7c8a;
}
.ksu-final__copy h2 {
  margin: 0 0 22px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(46px, 6.4vw, 86px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fff;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.ksu-final__copy h2 span {
  color: #ef263b;
  font-style: italic;
}
.ksu-final__copy p {
  max-width: 54ch;
  margin: 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.62);
}
.ksu-final__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 17px;
  padding: clamp(34px, 4.5vw, 62px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.ksu-final__actions .ksu-btn { justify-content: center; width: 100%; }
.ksu-final__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 680;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ksu-final__link:hover {
  color: #fff;
  border-color: #ff5063;
}
.ksu-final__actions small {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.5px;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 980px) {
  .ksu-editorial__intro,
  .ksu-final__body { grid-template-columns: 1fr; }
  .ksu-editorial__intro { gap: 24px; }
  .ksu-editorial__intro p { max-width: 62ch; }
  .ksu-final__actions {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
}
@media (max-width: 760px) {
  #einfach.scene-section { padding-block: 64px !important; }
  #cta.scene-section { padding-block: 54px !important; }
  .ksu-editorial__topline { align-items: flex-start; font-size: 8.5px; }
  .ksu-editorial__topline span:last-child { text-align: right; }
  .ksu-editorial__intro { padding: 30px 0 38px; }
  .ksu-editorial__intro h2 { font-size: clamp(38px, 11.5vw, 56px); }
  .ksu-compare { grid-template-columns: 1fr; }
  .ksu-compare__panel + .ksu-compare__panel {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }
  .ksu-principles { grid-template-columns: 1fr; }
  .ksu-principles article + article {
    border-top: 0;
    border-left: 0;
  }
  .ksu-final__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ksu-final__stats > div:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
  .ksu-final__stats > div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .ksu-final__copy,
  .ksu-final__actions { padding: 30px 22px; }
  .ksu-final__copy h2 { font-size: clamp(43px, 13vw, 64px); }
}
@media (max-width: 430px) {
  .ksu-editorial__intro h2 { font-size: clamp(34px, 11vw, 44px); }
  .ksu-final__copy h2 { font-size: clamp(38px, 12.2vw, 52px); }
  .ksu-compare__head { flex-direction: column; gap: 10px; }
  .ksu-compare__count { text-align: left; }
  .ksu-compare__panel { padding: 26px 20px; }
  .ksu-final__stats span { font-size: 8px; letter-spacing: 0.1em; }
  .ksu-final__actions .ksu-btn { padding-inline: 18px; }
}

/* ============================================================================
   CLEAN HERO OVERRIDE (2026-07-28)
   Replaces the experimental orbit/HUD composition with a calmer product board.
   ============================================================================ */
.ksu-suite-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 360px at 10% 10%, rgba(220, 0, 24, 0.18), transparent 68%),
    radial-gradient(760px 420px at 92% 14%, rgba(255, 255, 255, 0.07), transparent 72%),
    linear-gradient(180deg, #090b10 0%, #0d1016 46%, #07080d 100%);
}
.ksu-suite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 86%);
  opacity: 0.35;
}
.ksu-suite-hero::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.7;
}
.ksu-suite-hero .hero-stage__inner {
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
}
.ksu-suite-hero .hero-stage__text {
  max-width: min(100%, 620px);
}
.ksu-suite-hero .hero-stage__title,
.ksu-suite-hero .hero-stage__title-line {
  color: #f5f7fb;
  background: none !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}
.ksu-suite-hero .hero-stage__title .accent {
  color: #f01932;
}
.ksu-suite-hero .hero-stage__lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}
.ksu-suite-hero .hero-stage__lead strong {
  color: #fff;
  text-decoration: none;
}
.ksu-suite-hero .hero-stage__pill {
  max-width: min(100%, 460px);
  flex-wrap: wrap;
  row-gap: 6px;
}
.ksu-suite-hero .hero-stage__stats {
  gap: 14px;
}
.ksu-suite-hero .hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.9);
}
.ksu-suite-hero .hero-stat__qual-value,
.ksu-suite-hero .hero-stat__label {
  color: #fff;
}
.ksu-suite-hero .hero-stat__label {
  opacity: 0.72;
}
.ksu-suite-hero .hero-stat__qual-icon {
  color: rgba(255, 255, 255, 0.92);
}
.ksu-suite-hero .hero-stage__ctas {
  max-width: 640px;
}
.ksu-suite-hero .hero-stage__ctas-row {
  gap: 14px;
}
.ksu-suite-hero .hero-stage__trust {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 70px -48px rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ksu-suite-hero .trust-avatars--brand span {
  box-shadow: 0 16px 32px -24px rgba(0, 0, 0, 0.9);
}
.ksu-suite-hero .trust-text strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.ksu-suite-hero .trust-text span {
  color: rgba(255, 255, 255, 0.58);
}
.ksu-suite-hero .hero-stage__visual {
  display: flex;
  justify-content: center;
  max-width: 720px;
}
.ksu-suite-visual {
  position: relative;
  width: min(100%, 680px);
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 38px 92px rgba(0, 0, 0, 0.48));
}
.ksu-suite-visual::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background:
    radial-gradient(170px 170px at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 72%),
    radial-gradient(300px 300px at 50% 50%, rgba(220, 0, 24, 0.18), rgba(220, 0, 24, 0.03) 62%, rgba(220, 0, 24, 0) 82%);
  filter: blur(10px);
  opacity: 0.94;
}
.ksu-suite-visual > * {
  position: relative;
  z-index: 1;
}
.ksu-suite-diagram__frame {
  position: relative;
  padding: clamp(22px, 3.4vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}
.ksu-suite-diagram__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%, transparent 72%, rgba(220, 0, 24, 0.08));
  pointer-events: none;
}
.ksu-suite-diagram__frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.ksu-suite-diagram__header,
.ksu-suite-diagram__core,
.ksu-suite-diagram__grid,
.ksu-suite-diagram__footer {
  position: relative;
  z-index: 1;
}
.ksu-suite-diagram__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ksu-suite-diagram__eyebrow,
.ksu-suite-diagram__badge,
.ksu-suite-diagram__footer span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.ksu-suite-diagram__eyebrow {
  color: rgba(255, 255, 255, 0.64);
}
.ksu-suite-diagram__badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.ksu-suite-diagram__core {
  padding: clamp(22px, 3.1vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(260px 180px at 100% 0%, rgba(220, 0, 24, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.ksu-suite-diagram__core-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: #ff7f8e;
}
.ksu-suite-diagram__core-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5a6c, var(--viz-red, #dc0018));
  box-shadow: 0 0 0 6px rgba(220, 0, 24, 0.12);
}
.ksu-suite-diagram__core strong {
  display: block;
  max-width: 12ch;
  margin-bottom: 12px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #fff;
}
.ksu-suite-diagram__core p {
  max-width: 44ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.7);
}
.ksu-suite-diagram__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.ksu-suite-diagram__metrics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}
.ksu-suite-diagram__metrics strong {
  margin: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
}
.ksu-suite-diagram__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ksu-suite-diagram__module {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  padding: 15px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px -30px rgba(0, 0, 0, 0.92);
}
.ksu-suite-diagram__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 96, 0.95), rgba(220, 0, 24, 0.88));
  color: #fff;
  box-shadow: 0 20px 32px -18px rgba(220, 0, 24, 0.75);
}
.ksu-suite-diagram__icon svg {
  width: 18px;
  height: 18px;
}
.ksu-suite-diagram__module strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #fff;
}
.ksu-suite-diagram__module small {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}
.ksu-suite-diagram__footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ksu-suite-diagram__footer span {
  display: inline-flex;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 980px) {
  .ksu-suite-hero .hero-stage__inner {
    gap: 32px;
  }
  .ksu-suite-hero .hero-stage__visual {
    max-width: 100%;
  }
  .ksu-suite-diagram__core strong {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .ksu-suite-hero .hero-stage__stats {
    grid-template-columns: 1fr;
  }
  .ksu-suite-hero .hero-stage__pill {
    max-width: 100%;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .ksu-suite-hero .hero-stage__ctas-row {
    flex-direction: column;
    align-items: stretch;
  }
  .ksu-suite-hero .hero-stage__ctas-row .btn-pill,
  .ksu-suite-hero .hero-stage__ctas-row .sm-chat-trigger--hero {
    width: 100%;
    justify-content: center;
  }
  .ksu-suite-hero .hero-stage__trust {
    flex-direction: column;
    align-items: flex-start;
  }
  .ksu-suite-diagram__grid,
  .ksu-suite-diagram__footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ksu-suite-visual {
    padding: 8px;
    border-radius: 28px;
  }
  .ksu-suite-visual::before,
  .ksu-suite-diagram__frame {
    border-radius: 27px;
  }
  .ksu-suite-diagram__frame {
    padding: 18px;
  }
  .ksu-suite-diagram__core {
    padding: 18px;
    border-radius: 22px;
  }
  .ksu-suite-diagram__metrics {
    gap: 8px;
  }
  .ksu-suite-diagram__metrics span {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================================
   HERO ORBIT ICONS (2026-07-28)
   Cleaner right-side visual: homepage-inspired animated icon orbits, no text.
   ============================================================================ */
.ksu-suite-visual--orbit {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 44vw, 560px);
  padding: 0;
  isolation: isolate;
}

.ksu-suite-hero i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
}

.ksu-suite-hero i[data-lucide] svg {
  display: block;
  width: 1em;
  height: 1em;
}

.ksu-suite-visual--orbit::before {
  background:
    radial-gradient(320px 320px at 50% 50%, rgba(220, 0, 24, 0.16), rgba(220, 0, 24, 0.05) 44%, rgba(220, 0, 24, 0) 74%),
    radial-gradient(180px 180px at 36% 64%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 74%);
}

.ksu-orbit--icons {
  width: min(560px, 94%);
  height: clamp(340px, 40vw, 470px);
  margin: 0 auto;
  position: relative;
}

.ksu-orbit--icons::before,
.ksu-orbit--icons::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ksu-orbit--icons::before {
  width: 82%;
  height: 82%;
  background: radial-gradient(circle, rgba(220, 0, 24, 0.12) 0%, rgba(220, 0, 24, 0.03) 46%, rgba(220, 0, 24, 0) 76%);
  filter: blur(18px);
  opacity: 0.9;
}

.ksu-orbit--icons::after {
  width: 58%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 44px rgba(220, 0, 24, 0.1);
}

.ksu-orbit--icons .ksu-orbit__stage {
  transform-style: preserve-3d;
}

.ksu-orbit--icons .ksu-orbit__path {
  width: 86%;
  height: 64%;
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 0 76px rgba(220, 0, 24, 0.08),
    0 0 40px rgba(220, 0, 24, 0.05);
}

.ksu-orbit--icons .ksu-orbit__path--2 {
  width: 62%;
  height: 46%;
  border-color: rgba(255, 255, 255, 0.08);
  opacity: 0.92;
}

.ksu-orbit--icons .ksu-orbit__core {
  width: clamp(120px, 16vw, 150px);
  height: clamp(120px, 16vw, 150px);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 214, 220, 0.9), rgba(255, 214, 220, 0) 34%),
    radial-gradient(circle at 66% 66%, rgba(255, 130, 144, 0.28), rgba(255, 130, 144, 0) 48%),
    linear-gradient(165deg, #ff3349 0%, #cf001a 58%, #77000f 100%);
  border-color: rgba(255, 205, 210, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 34px 90px rgba(220, 0, 24, 0.4),
    inset 0 2px 20px rgba(255, 255, 255, 0.28);
}

.ksu-orbit--icons .ksu-orbit__core::before {
  inset: -16px;
  border-color: rgba(255, 120, 134, 0.42);
}

.ksu-orbit__core-icon {
  display: grid;
  place-items: center;
  width: clamp(54px, 7vw, 70px);
  height: clamp(54px, 7vw, 70px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.ksu-orbit__core-icon svg {
  width: clamp(24px, 3vw, 30px);
  height: clamp(24px, 3vw, 30px);
}

.ksu-orbit--icons .ksu-orbit__node {
  width: 68px;
  height: 68px;
  padding: 0;
  gap: 0;
  border: none;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ksu-orbit--icons .ksu-orbit__nico {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ksu-orbit--icons .ksu-orbit__nico svg {
  width: 24px;
  height: 24px;
}

.ksu-orbit--icons .ksu-orbit__node--red .ksu-orbit__nico {
  background: linear-gradient(150deg, rgba(255, 72, 96, 0.98), rgba(220, 0, 24, 0.92));
  color: #fff;
}

.ksu-orbit--icons .ksu-orbit__node--dark .ksu-orbit__nico {
  background: linear-gradient(160deg, rgba(15, 18, 28, 0.98), rgba(25, 28, 42, 0.88));
  color: rgba(255, 255, 255, 0.94);
}

.ksu-orbit--icons .ksu-orbit__node--glass .ksu-orbit__nico {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 760px) {
  .ksu-suite-visual--orbit {
    min-height: clamp(320px, 76vw, 460px);
  }

  .ksu-orbit--icons {
    width: min(520px, 100%);
    height: clamp(300px, 74vw, 420px);
  }
}

@media (max-width: 560px) {
  .ksu-orbit--icons .ksu-orbit__node {
    width: 56px;
    height: 56px;
  }

  .ksu-orbit--icons .ksu-orbit__nico {
    width: 56px;
    height: 56px;
  }

  .ksu-orbit--icons .ksu-orbit__nico svg {
    width: 20px;
    height: 20px;
  }
}

/* Final clean orbit for the hero: inline SVG chips, no text, calmer motion. */
.ksu-suite-orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
  transform: none;
}

.ksu-suite-orbit__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(24px);
}

.ksu-suite-orbit__glow--one {
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, rgba(220, 0, 24, 0.14) 0%, rgba(220, 0, 24, 0.03) 52%, rgba(220, 0, 24, 0) 76%);
}

.ksu-suite-orbit__glow--two {
  width: 34%;
  height: 34%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 76%);
}

.ksu-suite-orbit__ring {
  --orbit-speed: 38s;
  --ring-size: 420px;
  --orbit-radius: calc(var(--ring-size) / 2);
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 28px rgba(220, 0, 24, 0.04),
    0 0 18px rgba(220, 0, 24, 0.03);
  animation: ksuSuiteHeroSpin var(--orbit-speed) linear infinite;
}

.ksu-suite-orbit__ring--outer {
  --ring-size: clamp(270px, 31vw, 410px);
}

.ksu-suite-orbit__ring--mid {
  --orbit-speed: 31s;
  --ring-size: clamp(186px, 22vw, 292px);
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.07);
  opacity: 0.82;
}

.ksu-suite-orbit__ring--reverse {
  animation-direction: reverse;
}

.ksu-suite-orbit__ring--inner {
  --ring-size: clamp(102px, 12vw, 152px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.12),
    0 0 22px rgba(220, 0, 24, 0.05);
  animation: ksuSuiteHeroPulse 10s ease-in-out infinite;
}

.ksu-suite-orbit__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: rotate(var(--angle)) translateY(calc(var(--orbit-radius) * -1));
  transform-origin: center;
}

.ksu-suite-orbit__counter {
  display: block;
  transform: translate(-50%, -50%);
  animation: ksuSuiteHeroSpin var(--orbit-speed) linear infinite reverse;
}

.ksu-suite-orbit__ring--reverse .ksu-suite-orbit__counter {
  animation-direction: normal;
}

.ksu-suite-orbit__chip {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ksu-suite-orbit__chip svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ksu-suite-orbit__chip--red {
  background: linear-gradient(155deg, rgba(255, 74, 98, 0.98), rgba(220, 0, 24, 0.9));
  color: #fff;
}

.ksu-suite-orbit__chip--dark {
  background: linear-gradient(160deg, rgba(14, 17, 26, 0.98), rgba(24, 29, 42, 0.9));
  color: rgba(255, 255, 255, 0.94);
}

.ksu-suite-orbit__chip--glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-color: rgba(255, 255, 255, 0.8);
  color: #111827;
}

.ksu-suite-orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(126px, 14vw, 170px);
  height: clamp(126px, 14vw, 170px);
  transform: translate(-50%, -50%);
}

.ksu-suite-orbit__core-halo {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(220, 0, 24, 0), rgba(220, 0, 24, 0.24), rgba(255, 255, 255, 0.05), rgba(220, 0, 24, 0));
  filter: blur(12px);
  opacity: 0.58;
  animation: ksuSuiteHeroSpin 28s linear infinite;
}

.ksu-suite-orbit__core-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 225, 229, 0.9), rgba(255, 225, 229, 0) 34%),
    radial-gradient(circle at 68% 68%, rgba(255, 120, 140, 0.18), rgba(255, 120, 140, 0) 48%),
    linear-gradient(165deg, #ff3349 0%, #cf001a 58%, #77000f 100%);
  border: 1px solid rgba(255, 210, 216, 0.58);
  box-shadow:
    0 24px 62px rgba(220, 0, 24, 0.28),
    inset 0 2px 16px rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ksu-suite-orbit__core-shell svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes ksuSuiteHeroSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ksuSuiteHeroPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.74;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.015);
    opacity: 0.92;
  }
}

@media (max-width: 760px) {
  .ksu-suite-orbit__chip {
    width: 52px;
    height: 52px;
  }

  .ksu-suite-orbit__chip svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 560px) {
  .ksu-suite-visual::before {
    inset: 16% 10%;
  }

  .ksu-suite-orbit__ring--outer {
    --ring-size: clamp(230px, 66vw, 300px);
  }

  .ksu-suite-orbit__ring--mid {
    --ring-size: clamp(162px, 46vw, 220px);
  }

  .ksu-suite-orbit__ring--inner {
    --ring-size: clamp(92px, 27vw, 120px);
  }

  .ksu-suite-orbit__chip {
    width: 44px;
    height: 44px;
  }

  .ksu-suite-orbit__chip svg {
    width: 17px;
    height: 17px;
  }
}

/* ============================================================================
   PAGEWIDE LUCIDE STABILITY (2026-07-28)
   Die sichtbaren Suite-Bausteine nutzen teilweise verschiedene Icon-Wrapper.
   Diese Fallback-Schicht verhindert leere/verschobene Lucide-Container auf
   der KI-Suite-Seite auch bei gemischten Cache-Staenden.
   ============================================================================ */
.ksu-area__icon i[data-lucide],
.ksu-core__badge i[data-lucide],
.ksu-agentic__sat i[data-lucide],
.ksu-agentic__brain i[data-lucide],
.smc-techcard__ico i[data-lucide],
.smc-techviz__chip i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  color: inherit;
}

.ksu-area__icon i[data-lucide] svg {
  display: block;
  width: 16px;
  height: 16px;
}

.ksu-core__badge i[data-lucide] svg {
  display: block;
  width: 13px;
  height: 13px;
}

.ksu-agentic__sat i[data-lucide] svg {
  display: block;
  width: 20px;
  height: 20px;
}

.ksu-agentic__brain i[data-lucide] svg {
  display: block;
  width: 52px;
  height: 52px;
}

.smc-techcard__ico i[data-lucide] svg {
  display: block;
  width: 25px;
  height: 25px;
}

.smc-techviz__chip i[data-lucide] svg {
  display: block;
  width: 16px;
  height: 16px;
}
