/* ============================================================================
   SMT 6.0 — Enterprise Private-AI Landingpage. Vollständig gescopte Klassen
   (.smt6-*), kein globaler Reset. Dark Premium: Glas, Neon-Edges, Grid-Motion,
   Data-Streams, Tilt-Cards. Typo: clamp(), keine festen Text-Höhen, keine
   abgeschnittenen Texte. prefers-reduced-motion vollständig respektiert.
   ============================================================================ */

.smt6 {
  --s6-red: #DC0018;
  --s6-neon: #ff2c40;
  --s6-rose: #ff8f9b;
  --s6-ink: #05060b;
  --s6-ink2: #0b0d18;
  --s6-glass: rgba(255, 255, 255, 0.045);
  --s6-glass2: rgba(255, 255, 255, 0.02);
  --s6-line: rgba(255, 255, 255, 0.09);
  --s6-txt: rgba(255, 255, 255, 0.92);
  --s6-dim: rgba(255, 255, 255, 0.62);
  --s6-faint: rgba(255, 255, 255, 0.42);
  --s6-mono: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  --s6-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  color: var(--s6-txt);
  background:
    radial-gradient(1100px 540px at 85% -10%, rgba(220, 0, 24, 0.12), transparent 62%),
    radial-gradient(800px 480px at -8% 106%, rgba(220, 0, 24, 0.07), transparent 60%),
    linear-gradient(180deg, var(--s6-ink) 0%, var(--s6-ink2) 55%, var(--s6-ink) 100%);
  padding: clamp(64px, 9vw, 128px) 0;
}
.smt6 * { box-sizing: border-box; }
.smt6__inner { width: min(1200px, 92vw); margin-inline: auto; position: relative; z-index: 2; }

/* Animiertes Hintergrund-Grid (eigene Layer-Div, GPU-freundlich via transform) */
.smt6-grid { position: absolute; inset: -60px; pointer-events: none; z-index: 0; }
.smt6-grid::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;
  animation: smt6-gridpan 26s linear infinite;
}
.smt6-grid::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 72% 58% at 50% 36%, transparent 30%, var(--s6-ink) 92%);
}
@keyframes smt6-gridpan { to { transform: translate3d(56px, 56px, 0); } }

/* ── Typo-Bausteine ──────────────────────────────────────────────────────── */
.smt6-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid rgba(220, 0, 24, 0.42);
  background: linear-gradient(120deg, rgba(220, 0, 24, 0.15), rgba(220, 0, 24, 0.04));
  font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--s6-rose);
}
.smt6-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--s6-neon);
  box-shadow: 0 0 12px rgba(255, 44, 64, 0.9);
  animation: smt6-pulse 1.8s ease-in-out infinite;
}
.smt6-h1 {
  font-size: clamp(34px, 5.4vw, 64px); font-weight: 800; letter-spacing: -0.034em;
  line-height: 1.06; margin: 18px 0 16px; text-wrap: balance;
}
.smt6-h2 {
  font-size: clamp(26px, 3.9vw, 48px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin: 14px 0 16px; text-wrap: balance;
}
.smt6-h1 .grad, .smt6-h2 .grad {
  background: linear-gradient(115deg, #ff2c40 8%, #ff8291 52%, #ffd3d8 95%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: smt6-shimmer 7s linear infinite;
}
.smt6-lead {
  max-width: 62ch; font-size: clamp(15px, 1.7vw, 18px); line-height: 1.68;
  color: var(--s6-dim); text-wrap: pretty;
  overflow-wrap: anywhere; word-break: normal; hyphens: auto;
}
.smt6-lead strong { color: var(--s6-txt); }
.smt6-center { text-align: center; }
.smt6-center .smt6-lead { margin-inline: auto; }
.smt6-note {
  margin-top: 18px; padding: 14px 18px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--s6-line);
  font-size: 12.5px; line-height: 1.6; color: var(--s6-faint);
  overflow-wrap: anywhere; hyphens: auto;
}

/* ── Buttons (magnetisch via data-magnetic aus viz.js) ───────────────────── */
.smt6-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.smt6-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: 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 var(--s6-ease), box-shadow 0.3s ease, background 0.3s ease;
}
.smt6-btn--primary {
  background: linear-gradient(135deg, #ff2c40, #b30014);
  color: #fff; box-shadow: 0 16px 44px rgba(220, 0, 24, 0.42);
}
.smt6-btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.smt6-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(220, 0, 24, 0.52); }
.smt6-btn--primary:hover::after { animation: smt6-shine 0.85s var(--s6-ease); }
.smt6-btn--ghost {
  background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.18);
  color: var(--s6-txt); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.smt6-btn--ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); border-color: rgba(220, 0, 24, 0.4); }
.smt6-btn:active { transform: translateY(1px) scale(0.98); }
@keyframes smt6-shine { to { left: 130%; } }

/* ── Scroll-Reveal (JS setzt .in; --i = Stagger-Index) ───────────────────── */
.smt6-r {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--s6-ease), transform 0.78s var(--s6-ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: transform, opacity;
}
.smt6-r.in { opacity: 1; transform: none; }

/* ── Glas-Karte (Basis) — auto-height, nie Text abschneiden ─────────────── */
.smt6-card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 100%; height: auto;
  padding: clamp(20px, 2.4vw, 28px); border-radius: 20px;
  background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  border: 1px solid var(--s6-line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s var(--s6-ease), border-color 0.45s ease, box-shadow 0.45s ease;
}
.smt6-card:hover { border-color: rgba(220, 0, 24, 0.4); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5); }
.smt6-card p, .smt6-card li, .smt6-card div {
  overflow-wrap: anywhere; word-break: normal; hyphens: auto;
}
.smt6-card__ico {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(150deg, rgba(220, 0, 24, 0.92), rgba(140, 0, 15, 0.95));
  color: #fff; box-shadow: 0 10px 26px rgba(220, 0, 24, 0.34);
  transition: transform 0.4s var(--s6-ease), box-shadow 0.4s ease;
}
.smt6-card__ico svg { width: 21px; height: 21px; }
.smt6-card:hover .smt6-card__ico { transform: scale(1.08) rotate(-5deg); box-shadow: 0 12px 30px rgba(220, 0, 24, 0.5); }
.smt6-card__t { font-size: clamp(15.5px, 1.6vw, 18px); font-weight: 750; letter-spacing: -0.012em; line-height: 1.28; margin: 0; }
.smt6-card__p { font-size: 13px; line-height: 1.6; color: var(--s6-dim); margin: 0; }

/* 3D-Hover-Tilt (JS setzt --rx/--ry) */
.smt6-tilt { transform-style: preserve-3d; }
.smt6-tilt:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px); }

/* Animierter Gradient-Rand (Featured-Elemente) */
.smt6-gb { position: relative; border-color: transparent !important; }
.smt6-gb::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(120deg, rgba(220,0,24,0.75), rgba(255,140,155,0.25), rgba(220,0,24,0.05), rgba(220,0,24,0.75));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: smt6-gbflow 7s linear infinite;
  pointer-events: none;
}
@keyframes smt6-gbflow { to { background-position: 300% 0; } }

/* ── Grids: Mobile 1 / Tablet 2 / Desktop 3–5 Spalten ────────────────────── */
.smt6-grid2, .smt6-grid3, .smt6-grid4, .smt6-grid5 {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(12px, 1.6vw, 18px); margin-top: clamp(30px, 4vw, 48px);
  align-items: stretch;
}
@media (min-width: 680px) {
  .smt6-grid2, .smt6-grid3, .smt6-grid4, .smt6-grid5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .smt6-grid3 { grid-template-columns: repeat(3, 1fr); }
  .smt6-grid4 { grid-template-columns: repeat(4, 1fr); }
  .smt6-grid5 { grid-template-columns: repeat(5, 1fr); }
  .smt6-grid2 { grid-template-columns: repeat(2, 1fr); }
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.smt6-hero { padding-top: clamp(120px, 16vh, 176px); }
.smt6-hero__wrap {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
@media (max-width: 980px) { .smt6-hero__wrap { grid-template-columns: 1fr; } }
.smt6-crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--s6-faint); margin-bottom: 16px;
}
.smt6-crumbs a { color: var(--s6-dim); text-decoration: none; transition: color 0.2s; }
.smt6-crumbs a:hover { color: #fff; }
.smt6-crumbs .sep { color: rgba(220, 0, 24, 0.8); }
.smt6-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.smt6-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s var(--s6-ease), border-color 0.3s ease, background 0.3s ease;
  overflow-wrap: anywhere; hyphens: auto;
}
.smt6-badge:hover { transform: translateY(-2px); border-color: rgba(220, 0, 24, 0.4); background: rgba(220, 0, 24, 0.08); }
.smt6-badge svg { width: 14px; height: 14px; color: #4ade80; flex: 0 0 auto; }

/* 3D-GPU-Cluster */
.smt6-cluster {
  position: relative; min-height: clamp(340px, 44vw, 520px);
  perspective: 1100px;
}
.smt6-cluster__stage {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  animation: smt6-orbit 16s ease-in-out infinite alternate;
}
@keyframes smt6-orbit {
  from { transform: rotateY(-7deg) rotateX(4deg); }
  to   { transform: rotateY(7deg) rotateX(-3deg); }
}
.smt6-cluster__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.smt6-cluster__lines path {
  fill: none; stroke: rgba(220, 0, 24, 0.35); stroke-width: 1.5;
}
.smt6-cluster__lines .flow {
  stroke: rgba(255, 93, 110, 0.95); stroke-width: 2;
  stroke-dasharray: 12 130; stroke-linecap: round;
  animation: smt6-stream 3.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 44, 64, 0.8));
}
@keyframes smt6-stream { to { stroke-dashoffset: -284; } }
.smt6-core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 15vw, 168px); aspect-ratio: 1;
  display: grid; place-items: center; text-align: center;
  border-radius: 26px;
  background:
    radial-gradient(90px 90px at 50% 30%, rgba(255, 44, 64, 0.35), transparent 70%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(220, 0, 24, 0.55);
  box-shadow: 0 0 60px rgba(220, 0, 24, 0.35), inset 0 0 30px rgba(220, 0, 24, 0.14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: smt6-corepulse 3.4s ease-in-out infinite;
}
@keyframes smt6-corepulse {
  0%, 100% { box-shadow: 0 0 60px rgba(220, 0, 24, 0.32), inset 0 0 30px rgba(220, 0, 24, 0.12); }
  50%      { box-shadow: 0 0 92px rgba(220, 0, 24, 0.5),  inset 0 0 42px rgba(220, 0, 24, 0.2); }
}
.smt6-core__label { font-family: var(--s6-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--s6-rose); text-transform: uppercase; }
.smt6-core__name { font-size: clamp(19px, 2vw, 24px); font-weight: 850; letter-spacing: -0.02em; margin-top: 4px; }
.smt6-core__sub { font-family: var(--s6-mono); font-size: 8.5px; letter-spacing: 0.14em; color: var(--s6-faint); margin-top: 5px; text-transform: uppercase; }

.smt6-node {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(10, 12, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  animation: smt6-float 7s ease-in-out infinite;
  white-space: nowrap;
}
.smt6-node__chip {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(220, 0, 24, 0.25), rgba(220, 0, 24, 0.08));
  border: 1px solid rgba(220, 0, 24, 0.45); color: var(--s6-rose);
}
.smt6-node__chip svg { width: 15px; height: 15px; }
.smt6-node__name { font-size: 12.5px; font-weight: 750; letter-spacing: -0.01em; }
.smt6-node__tag { display: block; font-family: var(--s6-mono); font-size: 8px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--s6-faint); margin-top: 2px; }
.smt6-node--1 { top: 4%;  left: 6%;  animation-delay: 0s; }
.smt6-node--2 { top: 12%; right: 2%; animation-delay: -1.6s; }
.smt6-node--3 { bottom: 30%; left: 0;  animation-delay: -3.1s; }
.smt6-node--4 { bottom: 6%; right: 8%; animation-delay: -4.4s; }
.smt6-node--5 { bottom: 2%; left: 26%; animation-delay: -2.3s; }
@keyframes smt6-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@media (max-width: 980px) {
  .smt6-cluster { min-height: 380px; margin-top: 8px; }
}
@media (max-width: 560px) {
  .smt6-node { padding: 8px 11px; }
  .smt6-node__name { font-size: 11px; }
  .smt6-node__tag { font-size: 7px; }
  /* Kollisionsfreie Positionen auf schmalen Screens */
  .smt6-node--1 { top: 2%;  left: 2%; }
  .smt6-node--2 { top: 14%; right: 0; }
  .smt6-node--3 { bottom: 36%; left: 0; }
  .smt6-node--4 { bottom: 14%; right: 0; }
  .smt6-node--5 { bottom: 0; left: 4%; }
}

/* ── Stat-Zähler ─────────────────────────────────────────────────────────── */
.smt6-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 22px); margin-top: clamp(28px, 4vw, 44px);
}
@media (min-width: 900px) { .smt6-stats { grid-template-columns: repeat(4, 1fr); } }
.smt6-stat {
  text-align: center; padding: clamp(18px, 2.2vw, 26px) 14px; border-radius: 18px;
  background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  border: 1px solid var(--s6-line);
}
.smt6-stat__v {
  font-size: clamp(26px, 3.4vw, 42px); font-weight: 850; letter-spacing: -0.03em;
  line-height: 1; font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, #fff, #ffb3bc);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.smt6-stat__l {
  margin-top: 9px; font-family: var(--s6-mono); font-size: 9.5px;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--s6-faint);
  line-height: 1.5;
}

/* ── Kontext-Pipeline ────────────────────────────────────────────────────── */
.smt6-pipe {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-top: clamp(30px, 4vw, 48px); counter-reset: pipe;
}
@media (min-width: 1024px) { .smt6-pipe { grid-template-columns: repeat(6, 1fr); gap: 10px; } }
.smt6-pipe__step {
  position: relative; padding: 18px 16px; border-radius: 16px; text-align: center;
  background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  border: 1px solid var(--s6-line);
}
.smt6-pipe__step::before {
  counter-increment: pipe; content: counter(pipe, decimal-leading-zero);
  display: block; font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--s6-rose); margin-bottom: 8px;
}
.smt6-pipe__t { font-size: 13.5px; font-weight: 750; letter-spacing: -0.01em; line-height: 1.3; }
.smt6-pipe__d { font-size: 11.5px; line-height: 1.5; color: var(--s6-dim); margin-top: 5px; overflow-wrap: anywhere; hyphens: auto; }
@media (min-width: 1024px) {
  .smt6-pipe__step:not(:last-child)::after {
    content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
    color: rgba(255, 93, 110, 0.85); font-size: 16px; z-index: 3;
    animation: smt6-nudge 1.6s ease-in-out infinite;
  }
}
@media (max-width: 1023.98px) {
  .smt6-pipe__step:not(:last-child)::after {
    content: "↓"; position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%);
    color: rgba(255, 93, 110, 0.85); font-size: 15px; z-index: 3;
  }
}
@keyframes smt6-nudge { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(3px); } }
.smt6-pipe__step--core {
  border-color: rgba(220, 0, 24, 0.5);
  background: linear-gradient(160deg, rgba(220, 0, 24, 0.15), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 44px rgba(220, 0, 24, 0.18);
}

/* ── Vergleich (2 Panels) ────────────────────────────────────────────────── */
.smt6-vs { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 2vw, 20px); margin-top: clamp(30px, 4vw, 48px); }
@media (min-width: 860px) { .smt6-vs { grid-template-columns: 1fr 1fr; } }
.smt6-vs__panel {
  padding: clamp(22px, 2.8vw, 32px); border-radius: 22px;
  background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  border: 1px solid var(--s6-line);
}
.smt6-vs__panel--smt {
  background: linear-gradient(160deg, rgba(220, 0, 24, 0.13), rgba(255, 255, 255, 0.02));
}
.smt6-vs__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.smt6-vs__name { font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; letter-spacing: -0.015em; }
.smt6-vs__tag {
  font-family: var(--s6-mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--s6-line); color: var(--s6-faint);
}
.smt6-vs__panel--smt .smt6-vs__tag { border-color: rgba(220, 0, 24, 0.5); color: var(--s6-rose); background: rgba(220, 0, 24, 0.12); }
.smt6-vs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.smt6-vs__list li {
  position: relative; padding-left: 26px; font-size: 13.5px; line-height: 1.55;
  color: var(--s6-dim); overflow-wrap: anywhere; hyphens: auto;
}
.smt6-vs__list li::before {
  content: "—"; position: absolute; left: 0; top: 0; color: rgba(255, 255, 255, 0.3);
}
.smt6-vs__panel--smt .smt6-vs__list li { color: rgba(255, 255, 255, 0.8); }
.smt6-vs__panel--smt .smt6-vs__list li::before { content: "✓"; color: #4ade80; }

/* ── Pricing-Pakete ──────────────────────────────────────────────────────── */
.smt6-flag {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--s6-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; color: var(--s6-rose);
  background: rgba(220, 0, 24, 0.16); border: 1px solid rgba(220, 0, 24, 0.42);
}
.smt6-flag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--s6-rose); box-shadow: 0 0 8px rgba(255, 93, 110, 0.8);
}
.smt6-price { font-size: 15px; font-weight: 750; padding: 12px 0; border-block: 1px solid var(--s6-line); }
.smt6-price span {
  display: block; font-family: var(--s6-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--s6-faint); margin-top: 4px;
}
.smt6-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.smt6-list li {
  position: relative; padding-left: 22px; font-size: 12.5px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.72); overflow-wrap: anywhere; hyphens: auto;
}
.smt6-list li::before {
  content: ""; position: absolute; left: 2px; top: 6.5px; width: 8px; height: 8px;
  border-radius: 2.5px; background: #4ade80; opacity: 0.85;
}

/* ── Provider-Karten (Leistungsvergleich) ────────────────────────────────── */
.smt6-prov__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  font-weight: 850; font-size: 17px; letter-spacing: -0.02em; color: #fff;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.smt6-prov__meta {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--s6-line);
  font-family: var(--s6-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--s6-faint); line-height: 1.7;
}

/* ── Vergleichs-Matrix (3 Spalten, mobil gestapelte Karten) ──────────────── */
.smt6-cmp-wrap { margin-top: clamp(30px, 4vw, 48px); }
.smt6-cmp {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--s6-line);
  font-size: 13.5px; text-align: left;
}
.smt6-cmp thead th {
  padding: 18px 20px; font-weight: 750; letter-spacing: -0.01em; color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--s6-line); vertical-align: bottom;
}
.smt6-cmp thead th:nth-child(3) {
  background: linear-gradient(160deg, rgba(220, 0, 24, 0.2), rgba(220, 0, 24, 0.06));
}
.smt6-cmp thead th small {
  display: block; font-family: var(--s6-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--s6-faint); margin-top: 5px;
}
.smt6-cmp thead th:nth-child(3) small { color: var(--s6-rose); }
.smt6-cmp tbody th[scope="row"] {
  padding: 15px 20px; font-weight: 650; color: #fff; width: 21%;
  vertical-align: top; background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-wrap: anywhere; hyphens: auto;
}
.smt6-cmp tbody td {
  padding: 15px 20px; color: var(--s6-dim); line-height: 1.55; vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-wrap: anywhere; word-break: normal; hyphens: auto;
}
.smt6-cmp tbody td:last-child {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(220, 0, 24, 0.05);
  border-left: 1px solid rgba(220, 0, 24, 0.16);
}
.smt6-cmp tbody tr:last-child th, .smt6-cmp tbody tr:last-child td { border-bottom: none; }
.smt6-cmp tbody tr { transition: background 0.25s ease; }
.smt6-cmp tbody tr:hover td { background: rgba(255, 255, 255, 0.03); }
.smt6-cmp tbody tr:hover td:last-child { background: rgba(220, 0, 24, 0.09); }
@media (max-width: 760px) {
  .smt6-cmp, .smt6-cmp thead, .smt6-cmp tbody, .smt6-cmp tr, .smt6-cmp th, .smt6-cmp td { display: block; width: auto; }
  .smt6-cmp { border: none; border-radius: 0; }
  .smt6-cmp thead { display: none; }
  .smt6-cmp tbody tr {
    margin-bottom: 14px; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--s6-line);
    background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  }
  .smt6-cmp tbody th[scope="row"] {
    width: auto; font-size: 15px; padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .smt6-cmp tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .smt6-cmp tbody td::before {
    content: attr(data-label); display: block;
    font-family: var(--s6-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--s6-faint); margin-bottom: 5px;
  }
  .smt6-cmp tbody td:last-child { border-left: none; border-bottom: none; background: rgba(220, 0, 24, 0.07); }
  .smt6-cmp tbody td:last-child::before { color: var(--s6-rose); }
}

/* ── Legal / Trust Bar ───────────────────────────────────────────────────── */
.smt6-legal {
  margin-top: clamp(30px, 4vw, 48px);
  padding: clamp(22px, 3vw, 32px); border-radius: 20px;
  background: linear-gradient(160deg, var(--s6-glass), var(--s6-glass2));
  border: 1px solid var(--s6-line);
  display: flex; flex-direction: column; gap: 18px;
}
.smt6-legal__txt { font-size: 12.5px; line-height: 1.7; color: var(--s6-faint); max-width: 90ch; overflow-wrap: anywhere; hyphens: auto; }

/* ── Reduced Motion ──────────────────────────────────────────────────────── */
@keyframes smt6-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.72); } }
@keyframes smt6-shimmer { to { background-position: 200% center; } }
@media (prefers-reduced-motion: reduce) {
  .smt6-grid::before, .smt6-cluster__stage, .smt6-cluster__lines .flow, .smt6-core,
  .smt6-node, .smt6-eyebrow .dot, .smt6-h1 .grad, .smt6-h2 .grad, .smt6-gb::before,
  .smt6-pipe__step::after, .smt6-btn--primary::after { animation: none !important; }
  .smt6-r { opacity: 1 !important; transform: none !important; transition: none !important; }
  .smt6-tilt:hover { transform: none; }
  .smt6-card, .smt6-btn, .smt6-badge { transition: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   v3 — Modell-Specs · Docs-Tabs · API-Preview · Deploy-Steps · Modell-Matrix
   ════════════════════════════════════════════════════════════════════════ */

/* ── Spec-Sheet (Das Modell im Detail) ──────────────────────────────────── */
.smt6-spec {
  margin-top: clamp(26px, 4vw, 42px);
  border: 1px solid var(--s6-line); border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
  text-align: left;
}
.smt6-spec__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 22px; border-bottom: 1px solid var(--s6-line); background: rgba(255,255,255,0.025);
}
.smt6-spec__title { font-weight: 800; letter-spacing: -0.01em; color: #fff; font-size: 15px; }
.smt6-spec__vers { font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--s6-rose); }
.smt6-spec__grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .smt6-spec__grid { grid-template-columns: 1fr; } }
.smt6-spec__row {
  display: grid; grid-template-columns: 158px 1fr; gap: 14px;
  padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,0.055);
}
.smt6-spec__row dt { font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--s6-faint); padding-top: 2px; }
.smt6-spec__row dd { font-size: 13.5px; line-height: 1.55; color: var(--s6-txt); overflow-wrap: anywhere; hyphens: auto; }
.smt6-spec__row dd strong { color: #fff; }
@media (max-width: 480px) { .smt6-spec__row { grid-template-columns: 1fr; gap: 4px; } }

/* ── Betriebsmodi (Speed vs Deep Context) ───────────────────────────────── */
.smt6-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(22px, 3vw, 34px); }
@media (max-width: 720px) { .smt6-modes { grid-template-columns: 1fr; } }
.smt6-mode {
  border: 1px solid var(--s6-line); border-radius: 18px; padding: 20px;
  background: var(--s6-glass); text-align: left;
}
.smt6-mode--hot { border-color: rgba(220,0,24,0.35); background: linear-gradient(165deg, rgba(220,0,24,0.1), rgba(220,0,24,0.02)); }
.smt6-mode__tag { font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--s6-rose); }
.smt6-mode__t { font-size: 17px; font-weight: 800; color: #fff; margin: 8px 0 6px; letter-spacing: -0.01em; }
.smt6-mode__p { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); }

/* ── Docs-Tabs ──────────────────────────────────────────────────────────── */
.smt6-doctabs { margin-top: clamp(26px, 4vw, 42px); text-align: left; }
.smt6-doctabs__bar {
  display: flex; gap: 6px; flex-wrap: wrap;
  border: 1px solid var(--s6-line); border-radius: 999px; padding: 5px;
  background: rgba(255,255,255,0.03); width: fit-content; max-width: 100%;
}
.smt6-doctabs__btn {
  border: 0; cursor: pointer; border-radius: 999px; padding: 9px 16px;
  font-size: 13px; font-weight: 650; color: var(--s6-dim); background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.smt6-doctabs__btn:hover { color: #fff; }
.smt6-doctabs__btn[aria-selected="true"] { background: linear-gradient(135deg, var(--s6-red), #a00012); color: #fff; }
.smt6-doctabs__panel {
  display: none; margin-top: 16px; border: 1px solid var(--s6-line); border-radius: 20px;
  padding: clamp(18px, 3vw, 28px); background: var(--s6-glass);
}
.smt6-doctabs__panel.is-open { display: block; }
.smt6-doctabs__panel h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.smt6-doctabs__panel p, .smt6-doctabs__panel li { font-size: 13.5px; line-height: 1.65; color: var(--s6-dim); }
.smt6-doctabs__panel ul { margin: 10px 0 0; padding-left: 18px; display: grid; gap: 7px; }
.smt6-doctabs__panel li strong { color: var(--s6-txt); }
.smt6-dsteps { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; counter-reset: ds; }
.smt6-dsteps li { position: relative; padding-left: 40px; font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); counter-increment: ds; }
.smt6-dsteps li::before {
  content: counter(ds); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--s6-mono); font-size: 12px; font-weight: 700; color: var(--s6-rose);
  background: rgba(220,0,24,0.12); border: 1px solid rgba(220,0,24,0.28);
}
.smt6-dsteps li strong { color: #fff; }

/* ── Code-Blöcke (illustrativ) ──────────────────────────────────────────── */
.smt6-code {
  margin-top: 14px; border: 1px solid var(--s6-line); border-radius: 14px; overflow: hidden;
  background: #07080f; text-align: left;
}
.smt6-code__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 14px; border-bottom: 1px solid var(--s6-line); background: rgba(255,255,255,0.03);
  font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--s6-faint);
}
.smt6-code pre {
  margin: 0; padding: 16px; overflow-x: auto; font-family: var(--s6-mono);
  font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.82); tab-size: 2;
}
.smt6-code .c-k { color: var(--s6-rose); }
.smt6-code .c-s { color: #7dd3a8; }
.smt6-code .c-c { color: var(--s6-faint); }

/* ── API-Pills + Coming-soon-Badge ──────────────────────────────────────── */
.smt6-soon {
  display: inline-flex; align-items: center; gap: 7px; margin-left: 10px; vertical-align: middle;
  font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  /* War #ffd166 (helles Gold) — auf dem jetzt fast-weissen Hintergrund (Light-Theme
     kippt die .smt6-Basis auf hell, dieses Badge behält seinen eigenen blassen
     Goldton als Fläche) zu blass (Ratio 1.39). Dunkleres Gold, Fläche unverändert. */
  color: #8a5c00; background: rgba(255,209,102,0.1); border: 1px solid rgba(255,209,102,0.3);
  border-radius: 999px; padding: 5px 11px;
}
.smt6-soon::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ffd166; animation: smt6-pulse 1.8s ease-in-out infinite; }
.smt6-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: clamp(20px, 3vw, 30px); }
.smt6-pill {
  font-size: 12.5px; font-weight: 650; color: var(--s6-txt);
  border: 1px solid var(--s6-line); border-radius: 999px; padding: 8px 15px;
  background: rgba(255,255,255,0.035);
}
.smt6-pill--hot { border-color: rgba(220,0,24,0.35); background: rgba(220,0,24,0.1); color: #fff; }

/* ── Deploy-Steps + Go-Live-Band ────────────────────────────────────────── */
.smt6-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(26px, 4vw, 42px); }
@media (max-width: 860px) { .smt6-steps { grid-template-columns: 1fr; } }
.smt6-step {
  position: relative; border: 1px solid var(--s6-line); border-radius: 20px; padding: 24px 20px 20px;
  background: var(--s6-glass); text-align: left;
}
.smt6-step__num {
  position: absolute; top: -14px; left: 18px;
  font-family: var(--s6-mono); font-size: 12px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--s6-red), #a00012); border-radius: 10px; padding: 5px 11px;
  box-shadow: 0 8px 20px rgba(220,0,24,0.35);
}
.smt6-step__t { font-size: 16px; font-weight: 800; color: #fff; margin: 4px 0 7px; letter-spacing: -0.01em; }
.smt6-step__p { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); }
.smt6-band {
  margin-top: clamp(24px, 4vw, 38px); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.smt6-band__item {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(220,0,24,0.3); border-radius: 999px; padding: 11px 18px;
  background: linear-gradient(160deg, rgba(220,0,24,0.12), rgba(220,0,24,0.03));
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.smt6-band__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--s6-neon); box-shadow: 0 0 10px var(--s6-neon); animation: smt6-pulse 1.8s ease-in-out infinite; }

/* ── Modell-Matrix (alle Anbieter) — horizontal scrollbar ───────────────── */
.smt6-mm-wrap {
  margin-top: clamp(30px, 4vw, 48px);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--s6-line); border-radius: 20px;
}
.smt6-mm {
  width: 100%; min-width: 1080px; border-collapse: separate; border-spacing: 0;
  font-size: 12.5px; text-align: left;
}
.smt6-mm thead th {
  padding: 14px 14px; font-weight: 750; color: #fff; font-size: 12.5px; letter-spacing: -0.01em;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--s6-line);
  position: sticky; top: 0; white-space: nowrap;
}
.smt6-mm thead th:first-child { min-width: 230px; }
.smt6-mm thead th.is-smt { background: linear-gradient(160deg, rgba(220,0,24,0.22), rgba(220,0,24,0.07)); color: #fff; }
.smt6-mm tbody th[scope="row"] {
  padding: 12px 14px; font-weight: 650; color: var(--s6-txt); font-size: 12.5px;
  background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow-wrap: anywhere; hyphens: auto;
}
.smt6-mm tbody td {
  padding: 12px 14px; color: var(--s6-dim); border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap; text-align: center;
}
.smt6-mm tbody td.is-smt { background: rgba(220,0,24,0.06); border-left: 1px solid rgba(220,0,24,0.16); border-right: 1px solid rgba(220,0,24,0.16); color: #fff; font-weight: 650; }
.smt6-mm tbody tr:last-child th, .smt6-mm tbody tr:last-child td { border-bottom: none; }
/* Mint/Gold-Indikatoren waren fuer den dunklen Grund gedacht; die Matrix sitzt
   im Light-Theme jetzt auf Weiss bzw. dem rosa is-smt-Tint (rgba(220,0,24,.08)
   auf Weiss) — beide Originaltoene fielen unter Ratio 3.0. Dunklere Varianten. */
.smt6-mm .y { color: #178a57; font-weight: 800; }
.smt6-mm .p { color: #8a5700; }
.smt6-mm .n { color: rgba(255,255,255,0.28); }
.smt6-mm-hint { display: none; margin-top: 12px; font-family: var(--s6-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--s6-faint); text-align: center; }
@media (max-width: 1140px) { .smt6-mm-hint { display: block; } }
.smt6-mm-legend { margin-top: 14px; font-size: 11.5px; line-height: 1.7; color: var(--s6-faint); text-align: left; }

/* ════════════════════════════════════════════════════════════════════════
   v4 — Future-Layer: Scroll-Progress · Hero-Aurora + Partikel-Canvas ·
   Hero-Parallax · Capability-Marquee · Holographic-Waitlist. Alles GPU-freundlich
   (transform/opacity), vollständig prefers-reduced-motion-sicher.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Scroll-Progress (fixe Neon-Linie, JS setzt --smt6-scroll: 0..1) ─────── */
.smt6-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 70; transform-origin: 0 50%;
  transform: scaleX(var(--smt6-scroll, 0));
  background: linear-gradient(90deg, #DC0018, #ff2c40 55%, #ff8f9b);
  box-shadow: 0 0 14px rgba(255, 44, 64, 0.7), 0 0 3px rgba(255, 44, 64, 0.9);
  pointer-events: none;
}

/* ── Hero-Aurora (driftende Glut hinter dem Hero) ────────────────────────── */
.smt6-aurora {
  position: absolute; inset: -18% -12% 30% -12%; z-index: 0; pointer-events: none;
  filter: blur(64px); opacity: 0.55; will-change: transform;
  background:
    radial-gradient(42% 60% at 28% 42%, rgba(220, 0, 24, 0.30), transparent 70%),
    radial-gradient(38% 52% at 72% 30%, rgba(255, 44, 64, 0.20), transparent 70%),
    radial-gradient(30% 40% at 55% 72%, rgba(120, 40, 220, 0.12), transparent 72%);
  animation: smt6-aurora 20s ease-in-out infinite alternate;
}
@keyframes smt6-aurora {
  from { transform: translate3d(-3%, 0, 0) scale(1); }
  to   { transform: translate3d(4%, 2%, 0) scale(1.14); }
}

/* ── Hero-Partikel-Canvas (JS-Netzwerk; liegt über Aurora, unter Inhalt) ─── */
.smt6-hero__fx {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  pointer-events: none; opacity: 0.62;
  -webkit-mask: radial-gradient(120% 90% at 50% 30%, #000 55%, transparent 100%);
  mask: radial-gradient(120% 90% at 50% 30%, #000 55%, transparent 100%);
}

/* ── Hero-Parallax: Cluster reagiert 3D auf Zeiger (JS setzt --px/--py) ──── */
.smt6-cluster { --px: 0; --py: 0; }
.smt6-cluster__stage { transition: transform 0.5s var(--s6-ease); }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .smt6-cluster__stage {
    transform:
      rotateY(calc(7deg + var(--px) * 9deg))
      rotateX(calc(-3deg + var(--py) * -7deg));
    animation-play-state: paused;
  }
  .smt6-hero:hover .smt6-cluster__stage { transition: transform 0.12s linear; }
}

/* ── Capability-Marquee (nahtloser Ticker, full-bleed) ──────────────────── */
.smt6-marquee {
  position: relative; z-index: 2; overflow: hidden; padding: 16px 0;
  border-block: 1px solid var(--s6-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008));
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.smt6-marquee__track {
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
  padding-left: 12px; will-change: transform;
  animation: smt6-marq 38s linear infinite;
}
.smt6-marquee:hover .smt6-marquee__track { animation-play-state: paused; }
@keyframes smt6-marq { to { transform: translateX(-50%); } }
.smt6-marq__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--s6-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--s6-dim); padding: 6px 4px;
}
.smt6-marq__item b { color: var(--s6-txt); font-weight: 700; letter-spacing: -0.01em; }
.smt6-marq__item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--s6-neon); box-shadow: 0 0 10px rgba(255, 44, 64, 0.85); flex: 0 0 auto;
}

/* ── Holographic-Waitlist ───────────────────────────────────────────────── */
.smt6-wait {
  position: relative; max-width: 720px; margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 26px; text-align: left; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(220, 0, 24, 0.14), transparent 60%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}
.smt6-wait__scan {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background: linear-gradient(180deg, transparent, rgba(255, 44, 64, 0.10) 50%, transparent);
  height: 40%; animation: smt6-scan 6.5s var(--s6-ease) infinite;
}
@keyframes smt6-scan { 0% { transform: translateY(-60%); } 100% { transform: translateY(320%); } }
.smt6-wait > * { position: relative; z-index: 1; }
.smt6-wait__head { text-align: center; margin-bottom: clamp(18px, 2.4vw, 26px); }
.smt6-wait__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--s6-rose); padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(220, 0, 24, 0.42);
  background: linear-gradient(120deg, rgba(220, 0, 24, 0.15), rgba(220, 0, 24, 0.04));
}
.smt6-wait__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--s6-neon); box-shadow: 0 0 12px rgba(255, 44, 64, 0.9); animation: smt6-pulse 1.8s ease-in-out infinite; }
.smt6-wait__t { font-size: clamp(19px, 2.3vw, 26px); font-weight: 820; letter-spacing: -0.02em; line-height: 1.18; margin: 0 0 8px; text-wrap: balance; }
.smt6-wait__sub { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); max-width: 52ch; margin: 0 auto; }

.smt6-wait__form { display: flex; flex-direction: column; gap: 14px; }
.smt6-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .smt6-field-row { grid-template-columns: 1fr; } }
.smt6-field { display: flex; flex-direction: column; gap: 7px; }
.smt6-field__l { font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--s6-faint); }
.smt6-field__i {
  width: 100%; font: inherit; font-size: 14px; color: var(--s6-txt);
  padding: 13px 15px; border-radius: 13px;
  background: rgba(5, 6, 11, 0.55); border: 1px solid var(--s6-line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none; appearance: none;
}
.smt6-field__i::placeholder { color: rgba(255, 255, 255, 0.32); }
.smt6-field__i:hover { border-color: rgba(255, 255, 255, 0.22); }
.smt6-field__i:focus {
  outline: none; border-color: rgba(255, 44, 64, 0.6);
  box-shadow: 0 0 0 4px rgba(220, 0, 24, 0.14), 0 0 22px -6px rgba(255, 44, 64, 0.5);
  background: rgba(5, 6, 11, 0.75);
}
select.smt6-field__i {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ff8f9b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; cursor: pointer;
}
select.smt6-field__i option { background: #0b0d18; color: var(--s6-txt); }
.smt6-field__i:user-invalid { border-color: rgba(255, 90, 90, 0.6); }
/* Honeypot — für Menschen unsichtbar, Bots füllen es aus */
.smt6-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.smt6-wait__submit { width: 100%; margin-top: 4px; font-size: 15px; padding: 16px 26px; }
.smt6-wait__submit[aria-busy="true"] { pointer-events: none; opacity: 0.75; }
.smt6-wait__spin {
  width: 17px; height: 17px; border-radius: 50%; display: none;
  border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  animation: smt6-spin 0.7s linear infinite;
}
.smt6-wait__submit[aria-busy="true"] .smt6-wait__spin { display: inline-block; }
.smt6-wait__submit[aria-busy="true"] .smt6-wait__lbl { display: none; }
@keyframes smt6-spin { to { transform: rotate(360deg); } }
.smt6-wait__fine { font-size: 11.5px; line-height: 1.55; color: var(--s6-faint); text-align: center; margin: 2px 0 0; }
.smt6-wait__fine a { color: var(--s6-rose); text-decoration: none; }
.smt6-wait__fine a:hover { text-decoration: underline; }
.smt6-wait__err { display: none; font-size: 12.5px; color: #ff9ba3; text-align: center; margin: 0; }
.smt6-wait.has-error .smt6-wait__err { display: block; }

/* Erfolgs-Zustand (JS toggelt .is-done) */
.smt6-wait__done { display: none; text-align: center; padding: clamp(10px, 2vw, 20px) 0; }
.smt6-wait.is-done .smt6-wait__form { display: none; }
.smt6-wait.is-done .smt6-wait__done { display: block; animation: smt6-pop 0.5s var(--s6-ease); }
@keyframes smt6-pop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.smt6-wait__check { width: 62px; height: 62px; margin-bottom: 12px; }
.smt6-wait__check circle { fill: none; stroke: #34d39a; stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: smt6-draw 0.55s var(--s6-ease) forwards; }
.smt6-wait__check path { fill: none; stroke: #34d39a; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 44; stroke-dashoffset: 44; animation: smt6-draw 0.4s 0.4s var(--s6-ease) forwards; }
@keyframes smt6-draw { to { stroke-dashoffset: 0; } }
.smt6-wait__done h3 { font-size: clamp(18px, 2.1vw, 23px); font-weight: 820; letter-spacing: -0.015em; margin: 0 0 7px; color: #fff; }
.smt6-wait__done p { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); max-width: 46ch; margin: 0 auto; }

/* ── Reduced Motion — v4 ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .smt6-aurora, .smt6-marquee__track, .smt6-wait__scan,
  .smt6-wait__badge .dot, .smt6-wait__spin { animation: none !important; }
  .smt6-hero__fx { display: none; }
  .smt6-progress { transition: none; }
  .smt6-wait__check circle, .smt6-wait__check path { stroke-dashoffset: 0; animation: none; }
}

/* ============================================================================
   SMT STUDIO — Zugangswege-Sektion (Download → Anmelden → Los)
   ============================================================================ */
.smt6-studio {
  margin-top: clamp(30px, 5vw, 52px);
  border: 1px solid var(--s6-line);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px) clamp(22px, 4vw, 40px);
  /* Opake dunkle Basis zuunterst, damit nie der helle Body durchscheint. */
  background:
    radial-gradient(120% 140% at 50% -10%, rgba(220, 0, 24, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #0f1115;
  position: relative;
  overflow: hidden;
}
.smt6-studio__head { text-align: center; max-width: 720px; margin-inline: auto; }
.smt6-studio__t {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 8px;
  line-height: 1.05;
}
/* Panel bleibt IMMER dunkel (#0f1115-Basis, siehe .smt6-studio oben) — darum
   hier fest der urspruengliche dunkel-Theme-Tonwert statt var(--s6-dim), das
   sitegweit vom Light-Theme auf dunkel umdefiniert wird (sonst dunkler Text
   auf dunklem Grund, Ratio 1.07). */
.smt6-studio__sub { color: rgba(255, 255, 255, 0.62); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; }
.smt6-studio .smt6-steps { margin-top: clamp(22px, 3vw, 34px); }
.smt6-studio__cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
}
.smt6-studio__note {
  font-size: 12.5px; letter-spacing: 0.02em;
  /* Wie .smt6-studio__sub: Panel bleibt dunkel, darum fester Tonwert statt
     var(--s6-faint) (Ratio war 1.05 auf dem dunklen Panel-Grund). */
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none; font-family: var(--s6-mono, monospace);
}
.smt6-studio__note:hover { color: rgba(255, 255, 255, 0.62); }

/* ============================================================================
   LIGHT-THEME KONTRAST-FIXES — Komponenten, die absichtlich dunkel bleiben
   (GPU-Cluster-Visualisierung, Code-Mockup, Studio-Panel) sowie Akzentfarben,
   die fuer den dunklen Grund gedacht waren und jetzt auf hellem Grund sitzen.
   Aendert NUR Text-/Icon-Farben, nie Hintergruende.
   --------------------------------------------------------------------------
   Grund fuer die hohe Spezifitaet unten: light-2026.css hat einen Catch-All
   "<Karten-Klasse> :not(svg):not(path) { color: var(--le-text-2) !important }"
   (Spezifitaet 0,1,2 — zwei :not()-Pseudoklassen mit Typ-Argument zaehlen wie
   Typselektoren). Das schlaegt sowohl die urspruenglichen smt6.css-Regeln
   (0,1,0) als auch bereits vorhandene site-weite Fix-Versuche in light-2026.css
   selbst (z. B. ".smt6-card__ico { color:#fff !important }", ebenfalls 0,1,0).
   Die Regeln hier kombinieren zwei Klassen (0,2,0+) + !important, um in jedem
   Fall zu gewinnen — per explain.mjs gegen jede betroffene Regel verifiziert.
   ============================================================================ */

/* 1) GPU-Cluster-Hero (#top): Node-Karten bleiben dunkel (rgba(10,12,24,.78)).
      Catch-All ".smt6-cluster__stage :not(svg):not(path)" zwang Name/Tag auf
      var(--le-text-2) (#6e6e73) → Ratio 1.99 auf dunklem Node-Grund. */
.smt6-cluster__stage .smt6-node__name { color: rgba(255, 255, 255, 0.92) !important; }
.smt6-cluster__stage .smt6-node__tag { color: rgba(255, 255, 255, 0.62) !important; }

/* 2) Docs-Tabs (#docs): aktiver Tab hat eigenes rotes Gradient-Tile (aria-
      selected="true"). Catch-All ".smt6-doctabs :not(svg):not(path)" gewann
      gegen "[aria-selected='true']{color:#fff}" → Ratio 1.02 auf Rot. */
.smt6-doctabs__bar .smt6-doctabs__btn[aria-selected="true"] { color: #fff !important; }

/* 2b) Deploy-Steps (#deploy): Schritt-Nummer sitzt auf eigenem roten Gradient-
       Tile. Catch-All ".smt6-step :not(svg):not(path)" gewann gegen die
       bereits vorhandene ".smt6-step__num{color:#fff}"-Regel → Ratio 1.02. */
.smt6-steps .smt6-step__num { color: #fff !important; }

/* 3) Code-Block-Toolbar (#api, u. a.): ".smt6-code" bleibt bewusst dunkel
      (#07080f, Editor-Optik). Zwei Faelle: innerhalb eines Doctabs-Panels
      greift derselbe Catch-All wie oben; frei im API-Abschnitt nur noch
      var(--s6-faint), das site-weit auf dunkel umdefiniert wird (Ratio 1.05
      auf rgb(14,15,22)). Beide Faelle hier gemeinsam abgedeckt. */
.smt6-code .smt6-code__bar,
.smt6-code .smt6-code__bar span { color: rgba(255, 255, 255, 0.62) !important; }

/* 4) SMT-Studio-Panel (#zugang): ".smt6-studio" bleibt bewusst dunkel
      (#0f1115-Basis). ".smt6-wait__badge" wird auch im hellen Waitlist-
      Formular verwendet (dort auf hellem Grund korrekt dunkelrot) — hier
      NUR innerhalb des dunklen Studio-Panels auf den urspruenglichen
      dunkel-Theme-Rosaton zurueckgesetzt (Ratio war 2.93 auf rgb(15,17,21)). */
.smt6-studio .smt6-wait__badge { color: #ff8f9b !important; }

/* 5) Icon-Kacheln (ueberall: #problem/#core/#zugang-Grids): eigenes rotes
      Gradient-Tile, IMMER weiss. Catch-All ".smt6-card :not(svg):not(path)"
      (0,1,2) schlaegt sowohl die smt6.css-Basis (0,1,0) als auch den bereits
      vorhandenen, aber zu schwach spezifizierten Fix in light-2026.css
      (".smt6-card__ico{color:#fff!important}", ebenfalls nur 0,1,0) →
      Icon-Ratio 1.81 auf dem roten Tile. */
.smt6-card .smt6-card__ico,
.smt6-card .smt6-card__ico svg { color: #fff !important; }

/* 6) Breadcrumb / Stat-Label / Feld-Label auf hellem Grund: --s6-dim/--s6-faint
      wurden von "weiss auf dunkel" auf "dunkel auf hell" umgestellt, landen
      dabei aber bei nur 0.45 Alpha (Ratio 2.84 statt >=3.0). Etwas kraeftiger. */
.smt6:not(.smt6--ink) .smt6-crumbs span, .smt6:not(.smt6--ink) .smt6-stat__l,
.smt6:not(.smt6--ink) .smt6-field__l, .smt6:not(.smt6--ink) .smt6-wait__fine,
.smt6:not(.smt6--ink) .smt6-legal__txt, .smt6:not(.smt6--ink) .smt6-mm-hint { color: rgba(29, 29, 31, 0.62) !important; }

/* ============================================================================
   MOBILE-HERO-FIX (2026-07-23): Die 3D-Cluster-Visualisierung rechts im Hero
   bestand aus absolut positionierten Schwebe-Nodes — auf schmalen Screens
   fielen sie uebereinander ("mobile Schrott", User-Meldung). Unter 760px wird
   der Cluster zur sauberen Karte: Core oben ueber volle Breite, die fuenf
   GPU-Nodes als ruhiges 2-Spalten-Grid, Verbindungslinien + Orbit/Float aus.
   ========================================================================== */
@media (max-width: 760px) {
  .smt6-cluster { min-height: 0 !important; perspective: none; margin-top: 26px; }
  .smt6-cluster__stage {
    position: static !important; inset: auto !important;
    transform: none !important; animation: none !important;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .smt6-cluster__lines { display: none; }
  .smt6-core {
    position: static !important; left: auto !important; top: auto !important;
    transform: none !important; animation: none !important;
    grid-column: 1 / -1; width: auto; aspect-ratio: auto;
    padding: 22px 18px; border-radius: 18px;
  }
  .smt6-node, .smt6-node--1, .smt6-node--2, .smt6-node--3, .smt6-node--4, .smt6-node--5 {
    position: static !important; inset: auto !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    animation: none !important; white-space: normal;
    padding: 10px 12px;
  }
  .smt6-node__name { font-size: 12px; }
}

/* ============================================================================
   LIGHT-THEME-FEINSCHLIFF (2026-07-23, User-Feedback "Icons grau/weiss,
   kantige Container"). Drei Dark-Theme-Relikte, die die Umstellung auf hell
   ueberlebt haben. Spezifitaet bewusst (0,3,0)+, damit sie sowohl die eigene
   Basis oben als auch light-2026.css-Blankets unabhaengig von der Ladereihen-
   folge schlagen.
   ========================================================================== */

/* 1) Hero-GPU-Nodes: dunkle Navy-Karten mit grauen Chip-Icons auf heller
      Seite → helle Glas-Karten, roter Chip, dunkle Schrift. */
.smt6 .smt6-cluster__stage .smt6-node {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12) !important;
}
.smt6 .smt6-node .smt6-node__chip,
.smt6 .smt6-node .smt6-node__chip svg { color: #DC0018 !important; }
.smt6 .smt6-cluster__stage .smt6-node__name { color: #1d1d1f !important; }
.smt6 .smt6-cluster__stage .smt6-node__tag { color: rgba(29, 29, 31, 0.55) !important; }

/* 2) Provider-Logo-Kacheln: weisser Buchstabe auf 14%-Weiss = unsichtbar
      → rotes Gradient-Tile wie alle Icon-Kacheln der Site. */
.smt6 .smt6-prov__logo {
  background: linear-gradient(135deg, #ff2030 0%, #DC0018 55%, #b30014 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(220, 0, 24, 0.25) !important;
}

/* 3) Vergleichstabellen: die grauen Zeilenkopf-Rechtecke (th[scope=row] mit
      --le-bg-2-Flaeche) wirkten als "kantige Container" → Flaeche weg,
      stattdessen Gewicht ueber Typo; sanfte Zebra-Streifen fuer Lesbarkeit. */
.smt6 .smt6-cmp tbody th[scope="row"],
.smt6 .smt6-mm tbody th[scope="row"] {
  background: transparent !important;
  font-weight: 700;
}
.smt6 .smt6-cmp tbody tr:nth-child(even) td,
.smt6 .smt6-cmp tbody tr:nth-child(even) th[scope="row"],
.smt6 .smt6-mm tbody tr:nth-child(even) td,
.smt6 .smt6-mm tbody tr:nth-child(even) th[scope="row"] {
  background: rgba(15, 23, 42, 0.02) !important;
}
.smt6 .smt6-cmp td.is-smt, .smt6 .smt6-mm td.is-smt {
  background: rgba(220, 0, 24, 0.045) !important;
}

/* 4) Karten-Icon-Tiles: light-2026-Blanket [class*="card"] plaettete den
      roten Glow auf --le-shadow-sm → Tiefe zurueckgeben. */
.smt6 .smt6-card .smt6-card__ico {
  box-shadow: 0 10px 26px rgba(220, 0, 24, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ── SMT-Marken-Lockup (Swiss Modern Technologies, #smt-marke/#smt-brand) ── */
.smt6-brand__lock {
  display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(12px, 2.4vw, 22px); flex-wrap: wrap;
  margin: clamp(22px, 3vw, 32px) 0 clamp(18px, 2.4vw, 26px);
}
.smt6-brand__letter { display: grid; justify-items: center; }
.smt6-brand__glyph {
  width: clamp(64px, 9vw, 96px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 24px;
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 850; letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ff2030 0%, #DC0018 55%, #b30014 100%);
  box-shadow: 0 18px 40px rgba(220, 0, 24, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.smt6-brand__word {
  margin-top: 10px;
  font-family: var(--s6-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
}

/* ============================================================================
   v13 — STRUKTUR-UMBAU (21 → 11 Sektionen, 2026-07-23)
   Rhythmus statt Leerraum · drei Ink-Kapitelmarken · Hairline-Listen statt
   Kartenhalde · Sticky-Splits · Zeitachse · Ausbaustufen-Leiter · Snap-Rails
   (nur Agenten-Lane, GPU-Leiter, Kontext-Pipeline). Alles token-basiert,
   prefers-reduced-motion bleibt vollständig respektiert (keine neuen
   Animationen in diesem Block).
   SVG-Textregel: kein <text> im SVG unter 11px effektiver Anzeigegrösse auf
   390px — Labels dieser Seite sind durchgehend HTML.
   ============================================================================ */

/* Rhythmus: kompakteres Grund-Padding + Modifier */
.smt6 { padding: clamp(48px, 6vw, 88px) 0; }
.smt6--tight { padding-block: clamp(36px, 4.5vw, 56px); }
.smt6--air { padding-block: clamp(72px, 8vw, 112px); }
.smt6-hero { padding-top: clamp(120px, 16vh, 176px); }

/* Sticky-Voraussetzung: overflow-x clip statt hidden (hidden killt sticky).
   Hero behält hidden (Aurora/Canvas ragen sonst vertikal heraus). */
.smt6 { overflow-x: clip; overflow-y: visible; }
.smt6-hero { overflow: hidden; }
.smt6-grid { inset: 0; }

/* Heller Wechselgrund für #einsatz / #leistung-preis / #vergleich */
.smt6.smt6--alt { background: var(--le-bg-2, #f5f5f7); }

/* ── Ink-Kapitelmarken (#problem, #agenten, #abschluss) ─────────────────── */
.smt6.smt6--ink {
  background: #0f1115;
  background-image: radial-gradient(60% 90% at 20% 0%, rgba(220, 0, 24, 0.12), transparent 70%);
  --s6-txt: #fff;
  --s6-dim: rgba(255, 255, 255, 0.72);
  --s6-faint: rgba(255, 255, 255, 0.58); /* Light-Wert .45 wäre <3:1 auf #0f1115 */
  --s6-rose: #ff8f9b;                    /* #c00015 wäre <3:1 auf #0f1115 */
  --s6-line: rgba(255, 255, 255, 0.14);
  --s6-glass: rgba(255, 255, 255, 0.05);
  --s6-glass2: rgba(255, 255, 255, 0.02);
  color: #f5f5f7;
}
.smt6.smt6--ink .smt6-h2 { color: #fff; }
.smt6.smt6--ink .smt6-h2 .grad {
  /* background-image (NICHT background-Kurzform): die Kurzform setzt
     background-clip auf border-box zurueck -> Gradient-Text wurde zum
     roten Kasten mit unsichtbarer Schrift. */
  background-image: linear-gradient(115deg, #ff5d6e 8%, #ff8f9b 52%, #ffd3d8 95%) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.smt6.smt6--ink .smt6-lead { color: rgba(255, 255, 255, 0.72); }
.smt6.smt6--ink .smt6-lead strong { color: #fff; }
.smt6.smt6--ink .smt6-note,
.smt6.smt6--ink .smt6-stat__l,
.smt6.smt6--ink .smt6-legal__txt { color: rgba(255, 255, 255, 0.72) !important; }
.smt6.smt6--ink .smt6-note { border-top-color: rgba(255, 255, 255, 0.16); }
.smt6.smt6--ink .smt6-stat__v {
  background: linear-gradient(120deg, #fff, #ffb3bc) !important;
  color: #fff !important;
}
.smt6.smt6--ink .smt6-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}
.smt6.smt6--ink .smt6-eyebrow { color: #ff8f9b; border-color: rgba(255, 143, 155, 0.4); }
.smt6.smt6--ink .smt6-grid::after { background: radial-gradient(ellipse 72% 58% at 50% 36%, transparent 30%, #0f1115 92%); }

/* Ghost-Buttons: im Light-Theme sichtbar (ersetzt weiss-auf-weiss), auf Ink hell */
.smt6 .smt6-btn--ghost {
  background: var(--le-card, #fff);
  border: 1px solid var(--le-line, rgba(0, 0, 0, 0.1));
  color: var(--le-text, #1d1d1f);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.smt6 .smt6-btn--ghost:hover {
  background: var(--le-red-soft, rgba(220, 0, 24, 0.08));
  border-color: rgba(220, 0, 24, 0.4);
  transform: translateY(-2px);
}
.smt6.smt6--ink .smt6-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* Textlink (Hero + Abschluss) */
.smt6-textlink {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 0 8px;
  font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--le-text, #1d1d1f); text-decoration: none;
}
.smt6-textlink:hover { color: var(--le-red, #DC0018); }
.smt6.smt6--ink .smt6-textlink { color: #fff; }
.smt6.smt6--ink .smt6-textlink:hover { color: #ff8f9b; }

/* Badge-Fussnote im Hero */
.smt6-badges__fine { margin-top: 10px; font-size: 12px; color: var(--le-text-3, #6e6e73); }

/* ── Ankerleiste (ersetzt #core) ────────────────────────────────────────── */
.smt6-anchorbar {
  display: flex; gap: 0; justify-content: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 16px;
  border-block: 1px solid var(--le-line, rgba(0, 0, 0, 0.08));
  background: var(--le-bg, #fff);
  scroll-margin-top: 96px;
}
.smt6-anchorbar::-webkit-scrollbar { display: none; }
.smt6-anchorbar a {
  flex: 0 0 auto; display: inline-flex; align-items: center;
  min-height: 48px; padding: 0 16px;
  font-size: 13px; font-weight: 650;
  color: var(--le-text-2, #555); text-decoration: none;
  border-left: 1px solid var(--le-line, rgba(0, 0, 0, 0.08));
}
.smt6-anchorbar a:first-child { border-left: 0; }
.smt6-anchorbar a:hover { color: var(--le-red, #DC0018); }
@media (max-width: 640px) { .smt6-anchorbar { justify-content: flex-start; } }

/* Unsichtbare Ankerpunkte (Alt-IDs bleiben verlinkbar) */
.smt6-anchor { display: block; height: 0; scroll-margin-top: 96px; }
section[id], .smt6-anchorbar[id] { scroll-margin-top: 84px; }

/* ── Split mit Sticky-Kopf (5/7 bzw. 7/5) ───────────────────────────────── */
.smt6-split { display: grid; gap: clamp(24px, 4vw, 56px); text-align: left; }
@media (min-width: 1024px) {
  .smt6-split { grid-template-columns: 5fr 7fr; }
  .smt6-split--rev { grid-template-columns: 7fr 5fr; }
  .smt6-split__aside { position: sticky; top: 96px; align-self: start; }
}
@media (max-width: 1023.98px) { .smt6-split__aside { position: static; } }

/* ── Hairline-Listen (ersetzen Glaskartenraster) ────────────────────────── */
.smt6-hair { text-align: left; }
.smt6-hair__h {
  font-family: var(--s6-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  margin: clamp(26px, 3.4vw, 40px) 0 6px;
}
.smt6-hair__h:first-child { margin-top: 0; }
.smt6-hair__row { display: grid; gap: 4px; padding: 14px 0; border-top: 1px solid var(--s6-line); }
.smt6-hair__t { font-size: 15px; font-weight: 750; color: var(--s6-txt); }
.smt6-hair__p { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); margin: 0; }

/* Trust-Block (#sicherheit, sichtbare Prozessaussagen — nie in <details>) */
.smt6-trust { list-style: none; margin: clamp(18px, 2.4vw, 26px) 0 0; padding: 0; display: grid; gap: 9px; text-align: left; }
.smt6-trust li { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); padding-left: 20px; position: relative; }
.smt6-trust li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 2.5px; background: #178a57; }
.smt6-trust li strong { color: var(--s6-txt); }
.smt6-trust a { color: var(--le-red, #DC0018); text-decoration: underline; display: inline-block; padding: 2px; }

/* Zonendiagramm (#sicherheit): gestrichelt = optionale Zusatzleistung */
.smt6-zone {
  margin-top: clamp(20px, 3vw, 30px); text-align: left;
  border: 1.5px dashed rgba(220, 0, 24, 0.5); border-radius: 20px; padding: 14px;
}
.smt6-zone__label {
  font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #c00015; margin-bottom: 8px;
}
.smt6-zone__solid { border: 1px solid var(--s6-line); border-radius: 14px; padding: 12px; background: var(--le-card, #fff); }
.smt6-zone__inner {
  margin-top: 4px; border: 1px solid rgba(220, 0, 24, 0.25); border-radius: 10px;
  padding: 10px 12px; background: var(--le-red-soft, rgba(220, 0, 24, 0.06));
  font-size: 12.5px; font-weight: 650; color: var(--s6-txt);
}

/* ── Fussnoten als Hairline statt grauer Box ────────────────────────────── */
.smt6 .smt6-note {
  background: none; border: 0; border-top: 1px solid var(--s6-line); border-radius: 0;
  padding: 12px 0 0; margin-top: clamp(20px, 3vw, 32px);
  max-width: 74ch; text-align: left;
  font-size: 12.5px; line-height: 1.65;
}
.smt6-center .smt6-note { margin-inline: auto; }

/* ── Akkordeons (Betriebsmodelle, Direktvergleich) ──────────────────────── */
.smt6-acc, .smt6-mmacc { text-align: left; margin-top: clamp(22px, 3vw, 34px); }
.smt6-acc > summary, .smt6-mmacc > summary {
  display: flex; align-items: center; gap: 10px; min-height: 48px;
  padding: 12px 0; border-top: 1px solid var(--s6-line);
  cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 750; color: var(--s6-txt);
}
.smt6-acc > summary::-webkit-details-marker,
.smt6-mmacc > summary::-webkit-details-marker { display: none; }
.smt6-acc > summary::after, .smt6-mmacc > summary::after {
  content: "+"; margin-left: auto; font-size: 22px; font-weight: 400; color: var(--s6-dim);
}
.smt6-acc[open] > summary::after, .smt6-mmacc[open] > summary::after { content: "–"; }

/* ── Problem-Sektion: grosse Ziffernzeilen + Antwort-Anker ──────────────── */
.smt6-numrows { list-style: none; margin: 0; padding: 0; text-align: left; }
.smt6-numrows li {
  display: grid; grid-template-columns: minmax(64px, auto) 1fr; gap: 8px 20px;
  align-items: start; padding: clamp(18px, 2.6vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.smt6-numrows .num {
  font-size: clamp(44px, 6vw, 78px); font-weight: 800; line-height: 0.9;
  color: rgba(255, 255, 255, 0.14); font-variant-numeric: tabular-nums;
}
.smt6-numrows h3 { font-size: 16.5px; font-weight: 750; color: #fff; margin: 0 0 6px; }
.smt6-numrows p { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }
@media (max-width: 640px) {
  .smt6-numrows li { grid-template-columns: 48px 1fr; }
  .smt6-numrows .num { font-size: 34px; }
}
.smt6-ans { margin-top: clamp(20px, 3vw, 30px); display: grid; text-align: left; }
.smt6-ans__h {
  font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 4px;
}
.smt6-ans a { display: block; padding: 12px 2px; border-top: 1px solid rgba(255, 255, 255, 0.12); text-decoration: none; }
.smt6-ans a b { display: block; font-size: 14px; font-weight: 750; color: #fff; }
.smt6-ans a span { display: block; font-size: 12.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); margin-top: 3px; }
.smt6-ans a:hover b { color: #ff8f9b; }
@media (max-width: 640px) { .smt6-ans { grid-template-columns: 1fr 1fr; gap: 0 14px; } .smt6-ans__h { grid-column: 1 / -1; } }

/* ── Einsatz: zweizeilige Chips + CTA-Band ──────────────────────────────── */
.smt6-chips2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: clamp(26px, 4vw, 42px); text-align: left;
}
@media (min-width: 1024px) { .smt6-chips2 > :nth-child(even) { transform: translateY(10px); } }
@media (max-width: 1023.98px) { .smt6-chips2 { grid-template-columns: repeat(2, 1fr); } }
.smt6-chip2 { border: 1px solid var(--s6-line); border-radius: 16px; padding: 14px 16px; background: var(--le-card, #fff); }
.smt6-chip2__t { font-size: 14px; font-weight: 750; color: var(--s6-txt); }
.smt6-chip2__p { font-size: 12.5px; line-height: 1.55; color: var(--le-text-2, #555); margin: 4px 0 0; }
.smt6-ctaband {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
  padding: 20px 0; margin-top: clamp(28px, 4vw, 44px);
  border-block: 1px solid var(--s6-line);
}

/* ── Agenten (ink): Zahlenband gross + Kontroll-Lane ────────────────────── */
.smt6--ink .smt6-stats--band { grid-template-columns: repeat(4, 1fr); }
.smt6--ink .smt6-stats--band .smt6-stat { background: none; border: 0; border-left: 1px solid rgba(255, 255, 255, 0.14); border-radius: 0; text-align: left; padding: 6px 0 6px 18px; }
.smt6--ink .smt6-stats--band .smt6-stat__v { font-size: clamp(30px, 5.4vw, 72px); }
@media (max-width: 899.98px) { .smt6--ink .smt6-stats--band { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.smt6-lane { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 22px); margin-top: clamp(24px, 3.4vw, 40px); text-align: left; position: relative; }
.smt6-lane::before { content: ""; position: absolute; left: 2%; right: 2%; top: -14px; height: 1px; background: linear-gradient(90deg, #DC0018, rgba(220, 0, 24, 0.1)); }
.smt6-lane__step { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 18px 16px 16px; background: rgba(255, 255, 255, 0.04); }
.smt6-lane__num { font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #ff8f9b; }
.smt6-lane__t { font-size: 15px; font-weight: 750; color: #fff; margin: 7px 0 6px; }
.smt6-lane__p { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ── Onboarding: Zeitachse statt drei Boxen ─────────────────────────────── */
.smt6-tl { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(26px, 4vw, 42px); text-align: left; }
.smt6-tl::before { content: ""; position: absolute; top: 17px; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, var(--le-red, #DC0018), rgba(220, 0, 24, 0.12)); }
.smt6-tl__step { position: relative; }
.smt6-tl__num {
  position: relative; z-index: 1; display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2c40, #b30014); color: #fff !important;
  font-family: var(--s6-mono); font-size: 12px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(220, 0, 24, 0.3); margin-bottom: 10px;
}
.smt6-tl .smt6-step__t { color: var(--le-text, #1d1d1f); }
.smt6-tl .smt6-step__p { color: var(--le-text-2, #555); }
@media (max-width: 760px) {
  .smt6-tl { grid-template-columns: 1fr; }
  .smt6-tl::before { top: 0; bottom: 0; left: 17px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, var(--le-red, #DC0018), rgba(220, 0, 24, 0.12)); }
  .smt6-tl__step { padding-left: 52px; }
  .smt6-tl__num { position: absolute; left: 0; top: 0; margin-bottom: 0; }
}

/* ── Leistung & Preis: Ausbaustufen-Leiter (dekorative Staffelung — keine
      Achse, keine Skala, keine Zahl; alle Balken gleich breit) ───────────── */
.smt6-ladder__head {
  font-family: var(--s6-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  margin-top: clamp(26px, 4vw, 42px); text-align: left;
}
.smt6-ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: end; margin-top: 12px; text-align: left; }
.smt6-ladder__stage { display: flex; flex-direction: column; gap: 8px; }
.smt6-ladder__bar {
  width: 100%; height: calc(48px + var(--step, 0) * 8px);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(220, 0, 24, 0.85), rgba(220, 0, 24, 0.2));
}
.smt6-ladder__t { font-size: 15.5px; font-weight: 800; color: var(--le-text, #1d1d1f); margin: 0; }
.smt6-ladder__p { font-size: 12.5px; line-height: 1.55; color: var(--le-text-2, #555); margin: 0; }
@media (max-width: 1023.98px) and (min-width: 761px) { .smt6-ladder { grid-template-columns: repeat(2, 1fr); align-items: start; } }
.smt6-setup__cta { margin-top: auto; }
.smt6-card .smt6-setup__cta { margin-top: 16px; }
.smt6-inkband {
  margin-top: clamp(28px, 4vw, 44px); border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  background: radial-gradient(80% 140% at 12% 0%, rgba(220, 0, 24, 0.18), transparent 60%), #0f1115;
  color: #fff; text-align: left;
}
.smt6-inkband p { margin: 0; font-size: 15px; font-weight: 750; color: #fff; }
.smt6-inkband small { display: block; font-weight: 500; font-size: 12px; color: rgba(255, 255, 255, 0.62); margin-top: 3px; }

/* ── Technik: Modi gestapelt in der Sticky-Spalte, Spec einspaltig ──────── */
.smt6-modes--stack { grid-template-columns: 1fr; }
.smt6-spec__grid--one { grid-template-columns: 1fr; }

/* ── Vergleich: Anbieter-Namensleiste ───────────────────────────────────── */
.smt6-provstrip { margin-top: clamp(24px, 3.4vw, 40px); text-align: left; }
.smt6-provrow { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 13px 0; border-top: 1px solid var(--s6-line); }
.smt6-provrow b { display: block; font-size: 14.5px; font-weight: 750; color: var(--s6-txt); }
.smt6-provrow span { display: block; font-size: 13px; line-height: 1.55; color: var(--le-text-2, #555); margin-top: 2px; }
.smt6-provrow__meta {
  display: block; font-style: normal; margin-top: 5px;
  font-family: var(--s6-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  overflow-wrap: normal; hyphens: none;
}
.smt6-provrow__meta--collective { padding: 12px 0 0; border-top: 1px solid var(--s6-line); margin-top: 8px; }

/* Direktvergleich-Matrix: schmaler + erste Spalte sticky (mobil wischbar) */
.smt6-mmacc .smt6-mm-wrap { margin-top: 10px; }
.smt6-mm { min-width: 820px; }
.smt6-mm thead th:first-child,
.smt6 .smt6-mm tbody th[scope="row"] {
  position: sticky; left: 0; z-index: 2;
  background: var(--le-card, #fff) !important;
}
.smt6-mm-legend { text-align: left; font-size: 12.5px; line-height: 1.65; color: var(--le-text-2, #555) !important; margin-top: 14px; }
.smt6-mm-legend strong { color: var(--le-text, #1d1d1f) !important; }

/* ── API: linksbündige Pills, CTA über der Warteliste ───────────────────── */
.smt6-pills--left { justify-content: flex-start; }
.smt6-apiaside { display: flex; justify-content: center; margin-top: clamp(8px, 2vw, 20px); }
.smt6-split .smt6-wait { margin-top: 18px; max-width: none; }
.smt6-split .smt6-code { max-width: none; }

/* ── Abschluss: Rechtsblock hinter Hairline ─────────────────────────────── */
.smt6-endlegal {
  margin-top: clamp(32px, 5vw, 56px); padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid; gap: 18px; justify-items: center;
}
.smt6-endlegal .smt6-legal__txt { max-width: 90ch; }
.smt6--last { padding-bottom: calc(clamp(48px, 6vw, 88px) + 58px + env(safe-area-inset-bottom)); }

/* ── Code-Blöcke ohne horizontale Scroll-Falle ──────────────────────────── */
.smt6-code pre { white-space: pre-wrap; overflow-wrap: anywhere; overflow-x: visible; }
@media (max-width: 640px) { .smt6-code pre { font-size: 11px; } }

/* ── Mobile: Rhythmus, Lesbarkeit, genau DREI Snap-Rails ────────────────── */
@media (max-width: 900px) {
  .smt6-card, .smt6-badge, .smt6-btn { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .smt6-stat__l { font-size: 11px; letter-spacing: 0.06em; text-transform: none; }
  .smt6-prov__meta, .smt6-provrow__meta { overflow-wrap: normal; hyphens: none; }
}
@media (max-width: 760px) {
  /* Rail 1: Agenten-Lane · Rail 2: GPU-Leiter · Rail 3: Kontext-Pipeline */
  .smt6-lane, .smt6-ladder, .smt6-pipe {
    display: flex; flex-wrap: nowrap; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 6px;
  }
  .smt6-lane::-webkit-scrollbar, .smt6-ladder::-webkit-scrollbar, .smt6-pipe::-webkit-scrollbar { display: none; }
  .smt6-lane > *, .smt6-ladder > *, .smt6-pipe__step { flex: 0 0 auto; scroll-snap-align: start; }
  .smt6-lane > * { flex-basis: 78%; }
  .smt6-ladder > * { flex-basis: 62%; }
  .smt6-pipe__step { flex-basis: 74%; }
  .smt6-lane::before { display: none; }
  .smt6-pipe__step:not(:last-child)::after {
    content: "→"; left: auto; right: -11px; top: 50%; bottom: auto;
    transform: translateY(-50%);
  }
}
@media (max-width: 640px) {
  .smt6-hero { padding-top: 76px; }
  .smt6-crumbs { display: none; }
  .smt6-hero .smt6-r { opacity: 1 !important; transform: none !important; transition: none !important; }
  .smt6-actions .smt6-btn { width: 100%; min-height: 46px; }
  .smt6-inkband { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .smt6-grid::before, .smt6-grid::after { animation: none !important; }
  .smt6-chips2 > :nth-child(even) { transform: none; }
}

/* ============================================================================
   LUCIDE-ICONS (self-hosted via /assets/js/lucide-icons.js)
   lucide-icons.js injiziert <svg viewBox="0 0 24 24"> in <i data-lucide>.
   Diese Basis-Regel steuert die <i>-Box, damit Icons nicht auf 24px
   aufblähen. Die bestehenden Container-Regeln (.smt6-badge svg etc.)
   greifen automatisch weiter, weil sie das injizierte svg adressieren.
   ============================================================================ */
.smt6 i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; color: inherit; flex: 0 0 auto; }
.smt6 i[data-lucide] svg { width: 1em; height: 1em; display: block; }
.smt6-badge i[data-lucide] { width: 14px; height: 14px; }
.smt6-node__chip i[data-lucide] { width: 15px; height: 15px; }
.smt6-card__ico i[data-lucide] { width: 21px; height: 21px; }

/* ============================================================================
   v13 — STRUKTUR-UMBAU (21 → 11 Sektionen, 2026-07-23)
   Rhythmus statt Leerraum · drei Ink-Kapitelmarken · Hairline-Listen statt
   Kartenhalde · Sticky-Splits · Zeitachse · Ausbaustufen-Leiter · Snap-Rails
   (nur Agenten-Lane, GPU-Leiter, Kontext-Pipeline). Alles token-basiert,
   prefers-reduced-motion bleibt vollständig respektiert (keine neuen
   Animationen in diesem Block).
   SVG-Textregel: kein <text> im SVG unter 11px effektiver Anzeigegrösse auf
   390px — Labels dieser Seite sind durchgehend HTML.
   ============================================================================ */

/* Rhythmus: kompakteres Grund-Padding + Modifier */
.smt6 { padding: clamp(48px, 6vw, 88px) 0; }
.smt6--tight { padding-block: clamp(36px, 4.5vw, 56px); }
.smt6--air { padding-block: clamp(72px, 8vw, 112px); }
.smt6-hero { padding-top: clamp(120px, 16vh, 176px); }

/* Sticky-Voraussetzung: overflow-x clip statt hidden (hidden killt sticky).
   Hero behält hidden (Aurora/Canvas ragen sonst vertikal heraus). */
.smt6 { overflow-x: clip; overflow-y: visible; }
.smt6-hero { overflow: hidden; }
.smt6-grid { inset: 0; }

/* Heller Wechselgrund für #einsatz / #leistung-preis / #vergleich */
.smt6.smt6--alt { background: var(--le-bg-2, #f5f5f7); }

/* ── Ink-Kapitelmarken (#problem, #agenten, #abschluss) ─────────────────── */
.smt6.smt6--ink {
  background: #0f1115;
  background-image: radial-gradient(60% 90% at 20% 0%, rgba(220, 0, 24, 0.12), transparent 70%);
  --s6-txt: #fff;
  --s6-dim: rgba(255, 255, 255, 0.72);
  --s6-faint: rgba(255, 255, 255, 0.58); /* Light-Wert .45 wäre <3:1 auf #0f1115 */
  --s6-rose: #ff8f9b;                    /* #c00015 wäre <3:1 auf #0f1115 */
  --s6-line: rgba(255, 255, 255, 0.14);
  --s6-glass: rgba(255, 255, 255, 0.05);
  --s6-glass2: rgba(255, 255, 255, 0.02);
  color: #f5f5f7;
}
.smt6.smt6--ink .smt6-h2 { color: #fff; }
.smt6.smt6--ink .smt6-h2 .grad {
  /* background-image (NICHT background-Kurzform): die Kurzform setzt
     background-clip auf border-box zurueck -> Gradient-Text wurde zum
     roten Kasten mit unsichtbarer Schrift. */
  background-image: linear-gradient(115deg, #ff5d6e 8%, #ff8f9b 52%, #ffd3d8 95%) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.smt6.smt6--ink .smt6-lead { color: rgba(255, 255, 255, 0.72); }
.smt6.smt6--ink .smt6-lead strong { color: #fff; }
.smt6.smt6--ink .smt6-note,
.smt6.smt6--ink .smt6-stat__l,
.smt6.smt6--ink .smt6-legal__txt { color: rgba(255, 255, 255, 0.72) !important; }
.smt6.smt6--ink .smt6-note { border-top-color: rgba(255, 255, 255, 0.16); }
.smt6.smt6--ink .smt6-stat__v {
  background: linear-gradient(120deg, #fff, #ffb3bc) !important;
  color: #fff !important;
}
.smt6.smt6--ink .smt6-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}
.smt6.smt6--ink .smt6-eyebrow { color: #ff8f9b; border-color: rgba(255, 143, 155, 0.4); }
.smt6.smt6--ink .smt6-grid::after { background: radial-gradient(ellipse 72% 58% at 50% 36%, transparent 30%, #0f1115 92%); }

/* Ghost-Buttons: im Light-Theme sichtbar (ersetzt weiss-auf-weiss), auf Ink hell */
.smt6 .smt6-btn--ghost {
  background: var(--le-card, #fff);
  border: 1px solid var(--le-line, rgba(0, 0, 0, 0.1));
  color: var(--le-text, #1d1d1f);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.smt6 .smt6-btn--ghost:hover {
  background: var(--le-red-soft, rgba(220, 0, 24, 0.08));
  border-color: rgba(220, 0, 24, 0.4);
  transform: translateY(-2px);
}
.smt6.smt6--ink .smt6-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* Textlink (Hero + Abschluss) */
.smt6-textlink {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 0 8px;
  font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--le-text, #1d1d1f); text-decoration: none;
}
.smt6-textlink:hover { color: var(--le-red, #DC0018); }
.smt6.smt6--ink .smt6-textlink { color: #fff; }
.smt6.smt6--ink .smt6-textlink:hover { color: #ff8f9b; }

/* Badge-Fussnote im Hero */
.smt6-badges__fine { margin-top: 10px; font-size: 12px; color: var(--le-text-3, #6e6e73); }

/* ── Ankerleiste (ersetzt #core) ────────────────────────────────────────── */
.smt6-anchorbar {
  display: flex; gap: 0; justify-content: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 16px;
  border-block: 1px solid var(--le-line, rgba(0, 0, 0, 0.08));
  background: var(--le-bg, #fff);
  scroll-margin-top: 96px;
}
.smt6-anchorbar::-webkit-scrollbar { display: none; }
.smt6-anchorbar a {
  flex: 0 0 auto; display: inline-flex; align-items: center;
  min-height: 48px; padding: 0 16px;
  font-size: 13px; font-weight: 650;
  color: var(--le-text-2, #555); text-decoration: none;
  border-left: 1px solid var(--le-line, rgba(0, 0, 0, 0.08));
}
.smt6-anchorbar a:first-child { border-left: 0; }
.smt6-anchorbar a:hover { color: var(--le-red, #DC0018); }
@media (max-width: 640px) { .smt6-anchorbar { justify-content: flex-start; } }

/* Unsichtbare Ankerpunkte (Alt-IDs bleiben verlinkbar) */
.smt6-anchor { display: block; height: 0; scroll-margin-top: 96px; }
section[id], .smt6-anchorbar[id] { scroll-margin-top: 84px; }

/* ── Split mit Sticky-Kopf (5/7 bzw. 7/5) ───────────────────────────────── */
.smt6-split { display: grid; gap: clamp(24px, 4vw, 56px); text-align: left; }
@media (min-width: 1024px) {
  .smt6-split { grid-template-columns: 5fr 7fr; }
  .smt6-split--rev { grid-template-columns: 7fr 5fr; }
  .smt6-split__aside { position: sticky; top: 96px; align-self: start; }
}
@media (max-width: 1023.98px) { .smt6-split__aside { position: static; } }

/* ── Hairline-Listen (ersetzen Glaskartenraster) ────────────────────────── */
.smt6-hair { text-align: left; }
.smt6-hair__h {
  font-family: var(--s6-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  margin: clamp(26px, 3.4vw, 40px) 0 6px;
}
.smt6-hair__h:first-child { margin-top: 0; }
.smt6-hair__row { display: grid; gap: 4px; padding: 14px 0; border-top: 1px solid var(--s6-line); }
.smt6-hair__t { font-size: 15px; font-weight: 750; color: var(--s6-txt); }
.smt6-hair__p { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); margin: 0; }

/* Trust-Block (#sicherheit, sichtbare Prozessaussagen — nie in <details>) */
.smt6-trust { list-style: none; margin: clamp(18px, 2.4vw, 26px) 0 0; padding: 0; display: grid; gap: 9px; text-align: left; }
.smt6-trust li { font-size: 13.5px; line-height: 1.6; color: var(--s6-dim); padding-left: 20px; position: relative; }
.smt6-trust li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 2.5px; background: #178a57; }
.smt6-trust li strong { color: var(--s6-txt); }
.smt6-trust a { color: var(--le-red, #DC0018); text-decoration: underline; display: inline-block; padding: 2px; }

/* Zonendiagramm (#sicherheit): gestrichelt = optionale Zusatzleistung */
.smt6-zone {
  margin-top: clamp(20px, 3vw, 30px); text-align: left;
  border: 1.5px dashed rgba(220, 0, 24, 0.5); border-radius: 20px; padding: 14px;
}
.smt6-zone__label {
  font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #c00015; margin-bottom: 8px;
}
.smt6-zone__solid { border: 1px solid var(--s6-line); border-radius: 14px; padding: 12px; background: var(--le-card, #fff); }
.smt6-zone__inner {
  margin-top: 4px; border: 1px solid rgba(220, 0, 24, 0.25); border-radius: 10px;
  padding: 10px 12px; background: var(--le-red-soft, rgba(220, 0, 24, 0.06));
  font-size: 12.5px; font-weight: 650; color: var(--s6-txt);
}

/* ── Fussnoten als Hairline statt grauer Box ────────────────────────────── */
.smt6 .smt6-note {
  background: none; border: 0; border-top: 1px solid var(--s6-line); border-radius: 0;
  padding: 12px 0 0; margin-top: clamp(20px, 3vw, 32px);
  max-width: 74ch; text-align: left;
  font-size: 12.5px; line-height: 1.65;
}
.smt6-center .smt6-note { margin-inline: auto; }

/* ── Akkordeons (Betriebsmodelle, Direktvergleich) ──────────────────────── */
.smt6-acc, .smt6-mmacc { text-align: left; margin-top: clamp(22px, 3vw, 34px); }
.smt6-acc > summary, .smt6-mmacc > summary {
  display: flex; align-items: center; gap: 10px; min-height: 48px;
  padding: 12px 0; border-top: 1px solid var(--s6-line);
  cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 750; color: var(--s6-txt);
}
.smt6-acc > summary::-webkit-details-marker,
.smt6-mmacc > summary::-webkit-details-marker { display: none; }
.smt6-acc > summary::after, .smt6-mmacc > summary::after {
  content: "+"; margin-left: auto; font-size: 22px; font-weight: 400; color: var(--s6-dim);
}
.smt6-acc[open] > summary::after, .smt6-mmacc[open] > summary::after { content: "–"; }

/* ── Problem-Sektion: grosse Ziffernzeilen + Antwort-Anker ──────────────── */
.smt6-numrows { list-style: none; margin: 0; padding: 0; text-align: left; }
.smt6-numrows li {
  display: grid; grid-template-columns: minmax(64px, auto) 1fr; gap: 8px 20px;
  align-items: start; padding: clamp(18px, 2.6vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.smt6-numrows .num {
  font-size: clamp(44px, 6vw, 78px); font-weight: 800; line-height: 0.9;
  color: rgba(255, 255, 255, 0.14); font-variant-numeric: tabular-nums;
}
.smt6-numrows h3 { font-size: 16.5px; font-weight: 750; color: #fff; margin: 0 0 6px; }
.smt6-numrows p { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }
@media (max-width: 640px) {
  .smt6-numrows li { grid-template-columns: 48px 1fr; }
  .smt6-numrows .num { font-size: 34px; }
}
.smt6-ans { margin-top: clamp(20px, 3vw, 30px); display: grid; text-align: left; }
.smt6-ans__h {
  font-family: var(--s6-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 4px;
}
.smt6-ans a { display: block; padding: 12px 2px; border-top: 1px solid rgba(255, 255, 255, 0.12); text-decoration: none; }
.smt6-ans a b { display: block; font-size: 14px; font-weight: 750; color: #fff; }
.smt6-ans a span { display: block; font-size: 12.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); margin-top: 3px; }
.smt6-ans a:hover b { color: #ff8f9b; }
@media (max-width: 640px) { .smt6-ans { grid-template-columns: 1fr 1fr; gap: 0 14px; } .smt6-ans__h { grid-column: 1 / -1; } }

/* ── Einsatz: zweizeilige Chips + CTA-Band ──────────────────────────────── */
.smt6-chips2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: clamp(26px, 4vw, 42px); text-align: left;
}
@media (min-width: 1024px) { .smt6-chips2 > :nth-child(even) { transform: translateY(10px); } }
@media (max-width: 1023.98px) { .smt6-chips2 { grid-template-columns: repeat(2, 1fr); } }
.smt6-chip2 { border: 1px solid var(--s6-line); border-radius: 16px; padding: 14px 16px; background: var(--le-card, #fff); }
.smt6-chip2__t { font-size: 14px; font-weight: 750; color: var(--s6-txt); }
.smt6-chip2__p { font-size: 12.5px; line-height: 1.55; color: var(--le-text-2, #555); margin: 4px 0 0; }
.smt6-ctaband {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
  padding: 20px 0; margin-top: clamp(28px, 4vw, 44px);
  border-block: 1px solid var(--s6-line);
}

/* ── Agenten (ink): Zahlenband gross + Kontroll-Lane ────────────────────── */
.smt6--ink .smt6-stats--band { grid-template-columns: repeat(4, 1fr); }
.smt6--ink .smt6-stats--band .smt6-stat { background: none; border: 0; border-left: 1px solid rgba(255, 255, 255, 0.14); border-radius: 0; text-align: left; padding: 6px 0 6px 18px; }
.smt6--ink .smt6-stats--band .smt6-stat__v { font-size: clamp(30px, 5.4vw, 72px); }
@media (max-width: 899.98px) { .smt6--ink .smt6-stats--band { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.smt6-lane { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 22px); margin-top: clamp(24px, 3.4vw, 40px); text-align: left; position: relative; }
.smt6-lane::before { content: ""; position: absolute; left: 2%; right: 2%; top: -14px; height: 1px; background: linear-gradient(90deg, #DC0018, rgba(220, 0, 24, 0.1)); }
.smt6-lane__step { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 18px 16px 16px; background: rgba(255, 255, 255, 0.04); }
.smt6-lane__num { font-family: var(--s6-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #ff8f9b; }
.smt6-lane__t { font-size: 15px; font-weight: 750; color: #fff; margin: 7px 0 6px; }
.smt6-lane__p { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ── Onboarding: Zeitachse statt drei Boxen ─────────────────────────────── */
.smt6-tl { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(26px, 4vw, 42px); text-align: left; }
.smt6-tl::before { content: ""; position: absolute; top: 17px; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, var(--le-red, #DC0018), rgba(220, 0, 24, 0.12)); }
.smt6-tl__step { position: relative; }
.smt6-tl__num {
  position: relative; z-index: 1; display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2c40, #b30014); color: #fff !important;
  font-family: var(--s6-mono); font-size: 12px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(220, 0, 24, 0.3); margin-bottom: 10px;
}
.smt6-tl .smt6-step__t { color: var(--le-text, #1d1d1f); }
.smt6-tl .smt6-step__p { color: var(--le-text-2, #555); }
@media (max-width: 760px) {
  .smt6-tl { grid-template-columns: 1fr; }
  .smt6-tl::before { top: 0; bottom: 0; left: 17px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, var(--le-red, #DC0018), rgba(220, 0, 24, 0.12)); }
  .smt6-tl__step { padding-left: 52px; }
  .smt6-tl__num { position: absolute; left: 0; top: 0; margin-bottom: 0; }
}

/* ── Leistung & Preis: Ausbaustufen-Leiter (dekorative Staffelung — keine
      Achse, keine Skala, keine Zahl; alle Balken gleich breit) ───────────── */
.smt6-ladder__head {
  font-family: var(--s6-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  margin-top: clamp(26px, 4vw, 42px); text-align: left;
}
.smt6-ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: end; margin-top: 12px; text-align: left; }
.smt6-ladder__stage { display: flex; flex-direction: column; gap: 8px; }
.smt6-ladder__bar {
  width: 100%; height: calc(48px + var(--step, 0) * 8px);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(220, 0, 24, 0.85), rgba(220, 0, 24, 0.2));
}
.smt6-ladder__t { font-size: 15.5px; font-weight: 800; color: var(--le-text, #1d1d1f); margin: 0; }
.smt6-ladder__p { font-size: 12.5px; line-height: 1.55; color: var(--le-text-2, #555); margin: 0; }
@media (max-width: 1023.98px) and (min-width: 761px) { .smt6-ladder { grid-template-columns: repeat(2, 1fr); align-items: start; } }
.smt6-setup__cta { margin-top: auto; }
.smt6-card .smt6-setup__cta { margin-top: 16px; }
.smt6-inkband {
  margin-top: clamp(28px, 4vw, 44px); border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  background: radial-gradient(80% 140% at 12% 0%, rgba(220, 0, 24, 0.18), transparent 60%), #0f1115;
  color: #fff; text-align: left;
}
.smt6-inkband p { margin: 0; font-size: 15px; font-weight: 750; color: #fff; }
.smt6-inkband small { display: block; font-weight: 500; font-size: 12px; color: rgba(255, 255, 255, 0.62); margin-top: 3px; }

/* ── Technik: Modi gestapelt in der Sticky-Spalte, Spec einspaltig ──────── */
.smt6-modes--stack { grid-template-columns: 1fr; }
.smt6-spec__grid--one { grid-template-columns: 1fr; }

/* ── Vergleich: Anbieter-Namensleiste ───────────────────────────────────── */
.smt6-provstrip { margin-top: clamp(24px, 3.4vw, 40px); text-align: left; }
.smt6-provrow { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 13px 0; border-top: 1px solid var(--s6-line); }
.smt6-provrow b { display: block; font-size: 14.5px; font-weight: 750; color: var(--s6-txt); }
.smt6-provrow span { display: block; font-size: 13px; line-height: 1.55; color: var(--le-text-2, #555); margin-top: 2px; }
.smt6-provrow__meta {
  display: block; font-style: normal; margin-top: 5px;
  font-family: var(--s6-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--le-text-3, #6e6e73);
  overflow-wrap: normal; hyphens: none;
}
.smt6-provrow__meta--collective { padding: 12px 0 0; border-top: 1px solid var(--s6-line); margin-top: 8px; }

/* Direktvergleich-Matrix: schmaler + erste Spalte sticky (mobil wischbar) */
.smt6-mmacc .smt6-mm-wrap { margin-top: 10px; }
.smt6-mm { min-width: 820px; }
.smt6-mm thead th:first-child,
.smt6 .smt6-mm tbody th[scope="row"] {
  position: sticky; left: 0; z-index: 2;
  background: var(--le-card, #fff) !important;
}
.smt6-mm-legend { text-align: left; font-size: 12.5px; line-height: 1.65; color: var(--le-text-2, #555) !important; margin-top: 14px; }
.smt6-mm-legend strong { color: var(--le-text, #1d1d1f) !important; }

/* ── API: linksbündige Pills, CTA über der Warteliste ───────────────────── */
.smt6-pills--left { justify-content: flex-start; }
.smt6-apiaside { display: flex; justify-content: center; margin-top: clamp(8px, 2vw, 20px); }
.smt6-split .smt6-wait { margin-top: 18px; max-width: none; }
.smt6-split .smt6-code { max-width: none; }

/* ── Abschluss: Rechtsblock hinter Hairline ─────────────────────────────── */
.smt6-endlegal {
  margin-top: clamp(32px, 5vw, 56px); padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid; gap: 18px; justify-items: center;
}
.smt6-endlegal .smt6-legal__txt { max-width: 90ch; }
.smt6--last { padding-bottom: calc(clamp(48px, 6vw, 88px) + 58px + env(safe-area-inset-bottom)); }

/* ── Code-Blöcke ohne horizontale Scroll-Falle ──────────────────────────── */
.smt6-code pre { white-space: pre-wrap; overflow-wrap: anywhere; overflow-x: visible; }
@media (max-width: 640px) { .smt6-code pre { font-size: 11px; } }

/* ── Mobile: Rhythmus, Lesbarkeit, genau DREI Snap-Rails ────────────────── */
@media (max-width: 900px) {
  .smt6-card, .smt6-badge, .smt6-btn { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .smt6-stat__l { font-size: 11px; letter-spacing: 0.06em; text-transform: none; }
  .smt6-prov__meta, .smt6-provrow__meta { overflow-wrap: normal; hyphens: none; }
}
@media (max-width: 760px) {
  /* Rail 1: Agenten-Lane · Rail 2: GPU-Leiter · Rail 3: Kontext-Pipeline */
  .smt6-lane, .smt6-ladder, .smt6-pipe {
    display: flex; flex-wrap: nowrap; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 6px;
  }
  .smt6-lane::-webkit-scrollbar, .smt6-ladder::-webkit-scrollbar, .smt6-pipe::-webkit-scrollbar { display: none; }
  .smt6-lane > *, .smt6-ladder > *, .smt6-pipe__step { flex: 0 0 auto; scroll-snap-align: start; }
  .smt6-lane > * { flex-basis: 78%; }
  .smt6-ladder > * { flex-basis: 62%; }
  .smt6-pipe__step { flex-basis: 74%; }
  .smt6-lane::before { display: none; }
  .smt6-pipe__step:not(:last-child)::after {
    content: "→"; left: auto; right: -11px; top: 50%; bottom: auto;
    transform: translateY(-50%);
  }
}
@media (max-width: 640px) {
  .smt6-hero { padding-top: 76px; }
  .smt6-crumbs { display: none; }
  .smt6-hero .smt6-r { opacity: 1 !important; transform: none !important; transition: none !important; }
  .smt6-actions .smt6-btn { width: 100%; min-height: 46px; }
  .smt6-inkband { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .smt6-grid::before, .smt6-grid::after { animation: none !important; }
  .smt6-chips2 > :nth-child(even) { transform: none; }
}

/* ============================================================================
   LUCIDE-ICONS (self-hosted via /assets/js/lucide-icons.js)
   lucide-icons.js injiziert <svg viewBox="0 0 24 24"> in <i data-lucide>.
   Diese Basis-Regel steuert die <i>-Box, damit Icons nicht auf 24px
   aufblähen. Die bestehenden Container-Regeln (.smt6-badge svg etc.)
   greifen automatisch weiter, weil sie das injizierte svg adressieren.
   ============================================================================ */
.smt6 i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; color: inherit; flex: 0 0 auto; }
.smt6 i[data-lucide] svg { width: 1em; height: 1em; display: block; }
.smt6-badge i[data-lucide] { width: 14px; height: 14px; }
.smt6-node__chip i[data-lucide] { width: 15px; height: 15px; }
.smt6-card__ico i[data-lucide] { width: 21px; height: 21px; }
