/* ============================================================
   sections.css — Hero (stack-Layout), Section-spezifische Layouts
   ============================================================ */

/* ─── Hero (Stack: Headline oben full-width, Graph unten kleiner) ─── */
.hero {
  background: var(--ink);
  color: var(--paper-on-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + var(--space-l));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Subtiles Dot-Grid-Pattern hinter dem Hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--rule-ink) 1px, transparent 0);
  background-size: 36px 36px;
  background-position: 0 0;
  opacity: 0.45;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.hero__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-l);
  color: var(--paper-dim);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule-ink);
  padding-bottom: var(--space-m);
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.hero__main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
  flex: 1;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  max-width: 24ch;
}
.hero__headline em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--spot-on-ink);
}

.hero__actions {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 2;
}

/* ─── Hero Graph (Background-Layer rechts, ragt über Padding hinaus) ─── */
.hero__graph {
  position: absolute;
  top: 50%;
  right: clamp(-18rem, -10vw, -5rem);
  transform: translateY(-50%);
  width: clamp(380px, 45vw, 680px);
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.hero__graph svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
/* Re-enable interaction on actual nodes only */
.hero__graph .graph-node-group {
  pointer-events: auto;
}

@media (max-width: 960px) {
  .hero__main { justify-content: flex-start; gap: var(--space-m); }
  .hero__graph {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
    opacity: 0.9;
    margin-top: var(--space-s);
  }
}

/* Graph-Edges: zeichnet sich vom Zentrum aus, Keyframe-Animation (iOS-safe) */
.graph-edge {
  stroke: var(--rule-ink);
  stroke-width: 1.4;
  fill: none;
  opacity: 0;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: graph-draw 1.4s var(--ease-out) 600ms forwards;
}
.graph-edge:nth-child(2) { animation-delay: 680ms; }
.graph-edge:nth-child(3) { animation-delay: 760ms; }
.graph-edge:nth-child(4) { animation-delay: 840ms; }
.graph-edge:nth-child(5) { animation-delay: 920ms; }
.graph-edge:nth-child(6) { animation-delay: 1000ms; }
.graph-edge:nth-child(7) { animation-delay: 1080ms; }
@keyframes graph-draw {
  to {
    opacity: 0.7;
    stroke-dashoffset: 0;
  }
}

.graph-node-group {
  cursor: pointer;
  opacity: 0;
  animation: graph-fade-in 500ms var(--ease-out) forwards;
  animation-delay: 1s;
}
.graph-node-group:nth-of-type(2) { animation-delay: 1.08s; }
.graph-node-group:nth-of-type(3) { animation-delay: 1.16s; }
.graph-node-group:nth-of-type(4) { animation-delay: 1.24s; }
.graph-node-group:nth-of-type(5) { animation-delay: 1.32s; }
.graph-node-group:nth-of-type(6) { animation-delay: 1.40s; }

@keyframes graph-fade-in {
  to { opacity: 1; }
}

.graph-node {
  fill: var(--ink);
  stroke: var(--paper-dim);
  stroke-width: 1.5;
  transition: fill var(--dur-fast), stroke var(--dur-fast), r var(--dur-fast);
}
.graph-node-group:hover .graph-node,
.graph-node-group:focus-visible .graph-node {
  fill: var(--spot);
  stroke: var(--paper-on-ink);
  r: 8;
}
.graph-node-group:focus-visible { outline: none; }

.graph-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  fill: var(--paper-dim);
  pointer-events: none;
  transition: fill var(--dur-fast);
}
.graph-node-group:hover .graph-label,
.graph-node-group:focus-visible .graph-label {
  fill: var(--paper-on-ink);
}

.graph-tooltip {
  position: absolute;
  top: -2.5rem;
  left: 0;
  padding: var(--space-2xs) var(--space-s);
  border: 1px solid var(--rule-ink);
  background: var(--ink-2);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--paper-on-ink);
  max-width: 30ch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.graph-tooltip.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .graph-edge,
  .graph-node-group {
    animation: none;
    opacity: 1;
  }
  .graph-edge {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .graph-tooltip { display: none; }
}


/* ============================================================
   Startseite · Hero-Stage (Scroll-getriebene Animation)
   ============================================================ */
.hero-stage {
  position: relative;
  height: 200vh;
}
.hero-stage__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper-on-ink);
}
.hero-stage .hero__container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.hero-stage .hero__main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  justify-content: center;
}
.hero-stage .hero__content {
  position: relative;
  z-index: 2;
}
/* Graph als Background-Layer hinter der Headline. right: -0.75rem schiebt
   den Graph minimal über das Container-Padding hinaus — gleicht den leeren
   Rechtsraum im SVG-viewBox aus, sodass der sichtbare Graphinhalt bündig
   mit dem "Schreiben"-Button im Nav abschließt. */
.hero-stage .hero__graph {
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
  width: clamp(440px, 50vw, 720px);
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}
.hero-stage .hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 22ch;
}
.hero-stage .hero__headline em {
  font-style: italic;
  color: var(--spot-on-ink);
  font-weight: var(--weight-regular);
}
.hero-stage .hero__lead {
  margin-top: var(--space-s);
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  max-width: 36ch;
}
.hero-stage .hero__cta {
  margin-top: var(--space-m);
  color: var(--spot-on-ink);
}
.hero-stage .hero__cta:hover {
  color: var(--paper-on-ink);
  border-bottom-color: var(--paper-on-ink);
}
.hero-stage .hero__hint {
  margin-top: var(--space-m);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--paper-dim);
  animation: hero-hint-blink 2.4s ease-in-out infinite;
}
@keyframes hero-hint-blink {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.85; }
}

.hero-stage .graph-svg {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
}

/* Override sections.css auto-animation for hero-stage graph elements.
   .hero-stage .graph-edge hat Spezifizität 0,2,0 und steht nach den
   .graph-edge-Regeln → überschreibt animation + opacity ohne !important. */
.hero-stage .graph-edge,
.hero-stage .graph-node-group {
  animation: none;
  opacity: 1;
}

/* Knoten: progressiver Glow via CSS Custom Property --lit (0–1).
   JS setzt --lit per Node aus dem Scroll-Progress. */
.hero-stage .graph-node-group {
  cursor: pointer;
  --lit: 0;
}
.hero-stage .graph-node {
  fill: var(--paper-on-ink);
  stroke: none;
  opacity: calc(0.30 + var(--lit) * 0.55);
  filter:
    drop-shadow(0 0 calc(var(--lit) * 10px) rgba(94, 130, 144, calc(var(--lit) * 0.7)))
    drop-shadow(0 0 calc(var(--lit) * 28px) rgba(94, 130, 144, calc(var(--lit) * 0.3)));
  transition: opacity 0.12s linear, filter 0.12s linear;
}
.hero-stage .graph-node-group[data-hub="1"] .graph-node {
  opacity: calc(0.50 + var(--lit) * 0.35);
}
.hero-stage .graph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--paper-on-ink);
  opacity: calc(0.25 + var(--lit) * 0.60);
  transition: opacity 0.12s linear;
}
.hero-stage .graph-node-group[data-hub="1"] .graph-label {
  opacity: calc(0.45 + var(--lit) * 0.40);
}

/* Edges — Basis (überschreibt stroke-dasharray 400 + animation aus .graph-edge) */
.hero-stage .graph-edge {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  transition: stroke 0.3s ease,
              filter 0.3s ease,
              stroke-width 0.3s ease,
              stroke-dashoffset 80ms linear;
}
/* Ghost: immer sichtbar als dezente Spur in derselben Farbe wie die
   aktiven Edges — konsistente Farbachse, kein Animations-Trigger */
.hero-stage .graph-edge--ghost {
  stroke: var(--spot-on-ink);
  stroke-width: 1;
  opacity: 0.17;
  filter: none;
  transition: none;
}
/* Hub-Edge aktiv: petrol Glow */
.hero-stage .graph-edge[data-active="1"] {
  stroke: var(--spot-on-ink);
  stroke-width: 1.6;
  opacity: 0.66;
  filter:
    drop-shadow(0 0 10px rgba(94, 130, 144, 0.45))
    drop-shadow(0 0 32px rgba(94, 130, 144, 0.18));
}
/* Workflow-Edges: dezentes Orange (leicht gedämpft gegenüber demo-Version) */
.hero-stage .graph-edge[data-flow="1"] {
  stroke: #C9A227;
  stroke-width: 1.8;
  opacity: 0.66;
  filter:
    drop-shadow(0 0 10px rgba(208, 136, 64, 0.45))
    drop-shadow(0 0 34px rgba(208, 136, 64, 0.18));
}

@media (max-width: 900px) {
  /* Hero pinnt auch auf dem Handy: sticky + overflow bleiben aus dem
     Basis-Stil aktiv, die Stage gibt den Scroll-Weg, der inner ist eine
     Bildschirmhöhe hoch. svh statt vh = kleinste Viewporthöhe → der Inhalt
     wird nie von der ein-/ausfahrenden Safari-Toolbar abgeschnitten. */
  .hero-stage { height: 200svh; }
  .hero-stage__inner {
    height: 100svh;
    padding-block: calc(var(--nav-h) + var(--space-s)) var(--space-m);
  }
  .hero-stage .hero__main {
    gap: var(--space-s);
  }
  .hero-stage .hero__graph {
    position: static;
    top: auto;
    right: auto;
    /* Knoten-Geometrie ist um x=200 (statt viewBox-Mitte 187.5) zentriert →
       wirkt leicht nach rechts versetzt. Minimal nach links = optisch mittig. */
    transform: translateX(-3.3%);
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  /* overflow sichtbar: Randlabels (conversion/seo) nicht am SVG-Rand kappen. */
  .hero-stage .graph-svg { max-height: 32svh; overflow: visible; }
  /* Knoten-Bezeichnungen am Handy größer → besser lesbar. */
  .hero-stage .graph-label { font-size: 15px; }
}


/* ─── Section-Backgrounds (kleinere Sektion-Akzente) ─── */
.section--paper-2 {
  background: var(--paper-2);
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(var(--container-padding) - 1px),
                    var(--rule-paper) calc(var(--container-padding) - 1px), var(--rule-paper) var(--container-padding),
                    transparent var(--container-padding));
}

.atmosphere {
  background: var(--ink);
  color: var(--paper-on-ink);
  border-block: 1px solid var(--rule-ink);
}

.wirkung-section {
  background: var(--ink);
  color: var(--paper-on-ink);
}

.wirkung-example {
  margin-block-start: var(--space-2xl);
}
.wirkung-example__label {
  font-size: var(--fs-body-s);
  opacity: 0.5;
  margin-block-end: var(--space-xs);
}
.wirkung-example__title {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  margin-block-end: var(--space-xl);
}
.wirkung-example__divider {
  border: none;
  border-top: 1px solid var(--rule-ink);
  margin-block: var(--space-2xl) 0;
}

/* ─── Haltung Interstitial (Variante B — Statement + Text) ─ */
.haltung-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.haltung-b__statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-on-paper);
}
.haltung-b__statement em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--spot);
}
.haltung-b__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding-top: 0.2em;
}
.haltung-b__body p {
  font-size: var(--fs-body-l);
  color: var(--ink-dim);
  line-height: 1.55;
}
@media (min-width: 769px) {
  .haltung-b__body    { order: 1; }
  .haltung-b__statement { order: 2; }
}
@media (max-width: 768px) {
  .haltung-b { grid-template-columns: 1fr; }
}

/* ─── Page-Hero (innere Seiten) ─────────────────────────── */
.page-hero {
  background: var(--ink);
  color: var(--paper-on-ink);
  padding-top: calc(var(--nav-h) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--rule-ink);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  position: relative;
  z-index: 1;
}
.page-hero__doc {
  position: absolute;
  top: 50%;
  right: clamp(10rem, 25vw, 32rem);
  transform: translateY(-50%) rotate(4deg);
  width: clamp(180px, 22vw, 320px);
  height: auto;
  opacity: 0.14;
  filter: blur(2px);
  pointer-events: none;
  color: var(--paper-on-ink);
  z-index: 0;
}
@media (max-width: 920px) {
  .page-hero__doc { display: none; }
}
.page-hero__meta {
  display: flex;
  gap: var(--space-m);
  flex-wrap: wrap;
  align-items: center;
  color: var(--paper-dim);
  margin-bottom: var(--space-l);
}
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.035em;
  line-height: 1.0;
  text-wrap: balance;
  max-width: 22ch;
}
.page-hero__headline em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--spot-on-ink);
}
.page-hero__lead {
  margin-top: var(--space-l);
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  max-width: 52ch;
  line-height: var(--lh-body);
}
.page-hero__cta {
  margin-top: var(--space-m);
}

/* ─── Page-Hero · Grafik (Browser-Wireframe) ────────────── */
.page-hero__inner--grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--space-l), 5vw, var(--space-2xl));
  align-items: center;
}
.hero-graph {
  width: 100%;
  height: auto;
  color: var(--paper-on-ink);
}
.hero-graph svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 800px) {
  .page-hero__inner--grid { grid-template-columns: 1fr; }
  .hero-graph { max-width: 360px; opacity: 0.7; }
}

/* ─── Über-mich · Porträt-Frame ─────────────────────────── */
.ueber-hero {
  align-items: end;
}
.ueber-portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 0 0 auto;
  aspect-ratio: 857 / 1098;
  background: var(--paper);
  border-top: 3px solid var(--spot-on-ink);
  overflow: hidden;
}
.ueber-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 800px) {
  .ueber-portrait {
    max-width: 280px;
    margin: 0 auto;
  }
}

.hg-a .hg-frame {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 1;
}
.hg-a .hg-rule {
  stroke: var(--rule-ink);
  stroke-width: 0.6;
}
.hg-a .hg-dot {
  fill: var(--paper-dim);
  opacity: 0.5;
}
.hg-a .hg-url {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 0.6;
}
.hg-a .hg-url-text {
  fill: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  opacity: 0.7;
}
.hg-a .hg-headline {
  fill: var(--paper-on-ink);
  opacity: 0.85;
}
.hg-a .hg-body {
  fill: var(--paper-dim);
  opacity: 0.55;
}
.hg-a .hg-card {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 0.6;
}
.hg-a .hg-accent { fill: var(--spot-on-ink); }
.hg-a .hg-scrollbar { fill: var(--rule-ink); }
.hg-a .hg-scrollthumb { fill: var(--spot-on-ink); }
.hg-a .hg-stickynav { fill: var(--ink); }
.hg-a .hg-img-card {
  fill: var(--paper-on-ink);
  opacity: 0.04;
  stroke: var(--rule-ink);
  stroke-width: 0.6;
}
.hg-a .hg-text-display {
  font-family: var(--font-display);
  fill: var(--paper-on-ink);
  font-weight: 600;
}
.hg-a .hg-text-italic {
  font-family: var(--font-display);
  fill: var(--paper-on-ink);
  font-style: italic;
  font-weight: 500;
}
.hg-a .hg-text-mono {
  font-family: var(--font-mono);
  fill: var(--paper-dim);
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hg-a .hg-trend {
  fill: none;
  stroke: var(--spot-on-ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hg-a .hg-trend-area {
  fill: var(--spot-on-ink);
  opacity: 0.10;
  stroke: none;
}
.hg-a .hg-trend-dot { fill: var(--spot-on-ink); }
.hg-a .hg-text-body {
  font-family: var(--font-display);
  fill: var(--paper-dim);
  font-weight: 400;
}
.hg-a .hg-text-button-primary {
  font-family: var(--font-mono);
  fill: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.hg-a .hg-text-button-ghost {
  font-family: var(--font-mono);
  fill: var(--paper-on-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hg-a .hg-text-link {
  font-family: var(--font-mono);
  fill: var(--spot-on-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Service-Item (Leistungs-Hub) ──────────────────────── */
.svc-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-paper);
  margin-top: var(--space-l);
}
.section--dark .svc-items { border-top-color: var(--rule-ink); }

.svc-item {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule-paper);
  align-items: start;
}
.section--dark .svc-item { border-bottom-color: var(--rule-ink); }

.svc-item__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding-top: 0.15em;
}
.svc-item__num { color: var(--ink-dim); }
.section--dark .svc-item__num { color: var(--paper-dim); }

.svc-item__price {
  font-size: var(--fs-body-l);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  color: var(--ink-on-paper);
}
.section--dark .svc-item__price { color: var(--paper-on-ink); }

.svc-item__duration { color: var(--ink-dim); }
.section--dark .svc-item__duration { color: var(--paper-dim); }

.svc-item__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.svc-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.svc-item__lead {
  font-size: var(--fs-body-l);
  color: var(--ink-dim);
  max-width: 54ch;
  line-height: 1.5;
}
.section--dark .svc-item__lead { color: var(--paper-dim); }

.svc-item__includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}
.svc-item__includes li {
  font-size: var(--fs-body-s);
  color: var(--ink-dim);
  padding-left: var(--space-m);
  position: relative;
  line-height: 1.5;
}
.svc-item__includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--spot);
  font-family: var(--font-mono);
}
.section--dark .svc-item__includes li { color: var(--paper-dim); }
.section--dark .svc-item__includes li::before { color: var(--spot-on-ink); }

.svc-item__note {
  font-size: var(--fs-body-s);
  color: var(--ink-dim);
  padding: var(--space-s) var(--space-m);
  border-left: 2px solid var(--rule-paper);
}
.section--dark .svc-item__note {
  color: var(--paper-dim);
  border-left-color: var(--rule-ink);
}

@media (max-width: 768px) {
  .svc-item {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
  .svc-item__aside {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-m);
    align-items: baseline;
  }
}

/* ─── Bereich-A C3-Layout (A2 featured links, A1+A3 rechts) ── */
.c3-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  border: 1px solid var(--rule-paper);
  margin-top: var(--space-xl);
}

.c3-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--paper);
  border-right: 1px solid var(--rule-paper);
  display: flex;
  flex-direction: column;
  padding: clamp(var(--space-l), 4vw, var(--space-2xl));
  gap: var(--space-l);
}
.c3-main__label { color: var(--ink-dim); }
.c3-main__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.c3-main__title em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--spot);
}
.c3-main__lead {
  font-size: var(--fs-body-l);
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 48ch;
}
.c3-main__foot {
  margin-top: auto;
  padding-top: var(--space-l);
  border-top: 1px solid var(--rule-paper);
}

/* Card-Link-Variante: ganze Kachel klickbar, mit Button-CTA */
a.c3-main {
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, border-color 0.25s ease;
}
a.c3-main:hover,
a.c3-main:focus-visible {
  background: var(--paper-2);
}
a.c3-main:focus-visible { outline: 2px solid var(--spot); outline-offset: -2px; }

.c3-main__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-l);
  border: 1.5px solid var(--ink-on-paper);
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--ink-on-paper);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  align-self: flex-start;
}
.c3-main__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
a.c3-main:hover .c3-main__cta,
a.c3-main:focus-visible .c3-main__cta {
  background: var(--spot);
  color: var(--paper-on-ink);
  border-color: var(--spot);
}
a.c3-main:hover .c3-main__cta svg { transform: translateX(4px); }

/* 2-Slot-Variante: A3 entfernt, flank-top spannt nur 1 Row */
.c3-layout--2slot {
  grid-template-rows: auto;
}
.c3-layout--2slot .c3-main { grid-row: 1; }
.c3-layout--2slot .c3-flank-top {
  grid-row: 1;
  border-bottom: none;
}

/* A1 als Card-Link (Petrol-Hintergrund) */
a.c3-flank-top {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: filter 0.25s ease;
}
a.c3-flank-top:hover,
a.c3-flank-top:focus-visible {
  filter: brightness(1.1);
}
a.c3-flank-top:focus-visible {
  outline: 2px solid var(--paper-on-ink);
  outline-offset: -2px;
}
a.c3-flank-top .c3-flank-top__note { transition: color 0.25s ease; }
a.c3-flank-top:hover .c3-flank-top__note,
a.c3-flank-top:focus-visible .c3-flank-top__note {
  color: var(--paper-on-ink);
}

.c3-flank-top {
  grid-column: 2;
  grid-row: 1;
  background: var(--spot);
  color: var(--paper-on-ink);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.c3-flank-top__label { color: rgba(255,255,255,0.55); }
.c3-flank-top__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.015em;
  line-height: 1.2;
  flex: 1;
}
.c3-flank-top__lead {
  font-size: var(--fs-body-s);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.c3-flank-top__note {
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  margin-top: auto;
}

.c3-flank-bottom {
  grid-column: 2;
  grid-row: 2;
  background: var(--paper-2);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.c3-flank-bottom__label { color: var(--ink-dim); }
.c3-flank-bottom__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.c3-flank-bottom__lead {
  font-size: var(--fs-body-s);
  color: var(--ink-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c3-layout { grid-template-columns: 1fr; grid-template-rows: auto; }
  .c3-main { grid-column: 1; grid-row: 1; border-right: none; border-bottom: 1px solid var(--rule-paper); }
  .c3-flank-top { grid-column: 1; grid-row: 2; }
  .c3-flank-bottom { grid-column: 1; grid-row: 3; }
}

/* ─── Outcome-Grid (4 Icon-Karten, dunkel, subgrid-aligned) ── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule-ink);
  margin-top: var(--space-xl);
}

.outcome-card {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: var(--space-m);
  padding: clamp(var(--space-l), 3vw, var(--space-xl));
  border-right: 1px solid var(--rule-ink);
}
.outcome-card:last-child { border-right: none; }

.outcome-card__icon {
  width: 36px;
  height: 36px;
  color: var(--spot-on-ink);
  align-self: start;
}

.outcome-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--paper-on-ink);
  align-self: end;
}

/* Förder-Akzent (Honiggelb) — gezielte Signal-Hervorhebung, vgl. .flag.
   --flag färbt das Icon der Anker-Karte; __figure betont eine Kennzahl im Titel. */
.outcome-card--flag .outcome-card__icon { color: var(--accent-flag); }
.outcome-card__figure { font-style: normal; color: var(--accent-flag); }

.outcome-card__lead {
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  line-height: 1.55;
  align-self: start;
}

@media (max-width: 900px) {
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-card:nth-child(2) { border-right: none; }
  .outcome-card:nth-child(1),
  .outcome-card:nth-child(2) { border-bottom: 1px solid var(--rule-ink); }
}
@media (max-width: 500px) {
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: none; border-bottom: 1px solid var(--rule-ink); }
  .outcome-card:last-child { border-bottom: none; }
}

/* ─── Router-Flow-Diagramm (Schadens-Router, editorial line-art) ──
   Basis = heller Kontext; .section--dark überschreibt. */
.router-flow {
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}
.router-flow svg {
  width: 100%;
  height: auto;
  display: block;
  color: var(--ink-on-paper);
}
.section--dark .router-flow svg { color: var(--paper-on-ink); }
.router-flow .rf-node { fill: none; stroke: currentColor; stroke-width: 1; opacity: 0.55; }
.router-flow .rf-line { fill: none; stroke: currentColor; stroke-width: 1; }
.router-flow .rf-thin { fill: none; stroke: currentColor; stroke-width: 0.8; opacity: 0.6; }
.router-flow .rf-fill { fill: currentColor; }
.router-flow .rf-accent { stroke: var(--spot); }
.section--dark .router-flow .rf-accent { stroke: var(--spot-on-ink); }
.router-flow .rf-cap {
  fill: currentColor;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.router-flow .rf-tag {
  fill: currentColor;
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.85;
}
.router-flow .rf-mini {
  fill: currentColor;
  font-family: var(--font-mono);
  font-size: 11.5px;
  opacity: 0.55;
}

/* Desktop = horizontaler Flow; Handy = vertikal gestapelt (kein Zoomen nötig). */
.router-flow .rf-vert { display: none; }
@media (max-width: 640px) {
  .router-flow { max-width: 380px; }
  .router-flow .rf-horiz { display: none; }
  .router-flow .rf-vert { display: block; }
}

/* ─── Timeline mit Wellenlinie + thematischen Icons (hell) ───── */
.timeline-wave {
  position: relative;
  margin-top: var(--space-xl);
}
.timeline-wave__item {
  display: grid;
  grid-template-columns: 1fr 4rem 200px 4rem 1fr;
  align-items: center;
  min-height: clamp(170px, 17vw, 210px);
  padding-bottom: clamp(var(--space-m), 2vw, var(--space-l));
}

.timeline-wave__dot-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.timeline-wave__icon-col {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.timeline-wave__left,
.timeline-wave__right {
  opacity: 0;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.timeline-wave__left {
  text-align: right;
  padding-right: clamp(var(--space-m), 2vw, var(--space-l));
  transform: translateX(-22px);
}
.timeline-wave__right {
  text-align: left;
  padding-left: clamp(var(--space-m), 2vw, var(--space-l));
  transform: translateX(22px);
}
.timeline-wave__item.is-visible .timeline-wave__left,
.timeline-wave__item.is-visible .timeline-wave__right,
.timeline-wave__item.is-visible .timeline-wave__icon-col {
  opacity: 1;
  transform: none;
}

.timeline-wave__num {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  color: var(--spot);
  display: block;
  margin-bottom: var(--space-s);
}
.timeline-wave__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink-on-paper);
  margin-bottom: var(--space-2xs);
}
.timeline-wave__lead {
  font-size: var(--fs-body-l);
  color: var(--ink-dim);
  line-height: 1.55;
}
.timeline-wave__icon {
  width: 36px;
  height: 36px;
  color: var(--spot);
  flex-shrink: 0;
}

.timeline-wave__svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.timeline-wave__path-bg {
  fill: none;
  stroke: var(--rule-paper);
  stroke-width: 1;
}
.timeline-wave__path-fill {
  fill: none;
  stroke: var(--spot);
  stroke-width: 1.5;
  stroke-linecap: round;
  /* stroke-dasharray + stroke-dashoffset werden via JS gesetzt
     und an die Scroll-Position gekoppelt (siehe js/timeline-wave.js) */
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.timeline-wave__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--spot);
  background: var(--paper-2);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.timeline-wave__item.is-visible .timeline-wave__dot {
  background: var(--spot);
  box-shadow: 0 0 0 6px rgba(40, 70, 81, 0.12);
}
.timeline-wave__item--left  .timeline-wave__dot { transform: translateX(-80px); }
.timeline-wave__item--right .timeline-wave__dot { transform: translateX(80px); }

@media (max-width: 900px) {
  .timeline-wave__svg { display: none; }
  .timeline-wave::before {
    content: '';
    position: absolute;
    left: calc(1.25rem - 0.5px);
    top: 0.75rem;
    bottom: 0.75rem;
    width: 1px;
    background: var(--rule-paper);
  }
  .timeline-wave__item {
    grid-template-columns: 2.5rem 3rem 1fr;
    grid-template-rows: auto;
    align-items: start;
    column-gap: var(--space-xs);
    row-gap: 0;
    min-height: 0;
    padding-bottom: var(--space-l);
  }
  .timeline-wave__empty { display: none; }
  /* Alle drei Spalten auf Row 1 fixieren — verhindert, dass DOM-Reihenfolge
     der items (left/right unterscheiden sich) versehentliche Row-Sprünge auslöst.
     Mittellinien-Anker: Titel-Erstzeile (1rem @ lh 1.2 → Mitte bei ~10px).
     Dot/Icon werden über Container-Höhe per align-items: center mittig dazu
     gesetzt; der Titel-Block bekommt ein kleines padding-top zum Ausgleich. */
  .timeline-wave__dot-col {
    grid-column: 1;
    grid-row: 1;
    min-height: 1.5rem;
    padding-top: 0;
  }
  .timeline-wave__icon-col {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    min-height: 1.5rem;
    padding-top: 0;
  }
  .timeline-wave__left,
  .timeline-wave__right {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-right: 0;
    padding-left: var(--space-s);
    padding-top: 0.15rem;
    transform: translateX(14px);
  }
  .timeline-wave__icon { width: 22px; height: 22px; }
  .timeline-wave__dot { transform: none !important; }
}

/* ─── Scope-List · Was dabei ist (nummerierte Editorial-Liste) ─ */
.scope-list {
  margin-top: var(--space-xl);
}
.scope-list__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-m);
  border-bottom: 2px solid var(--ink-on-paper);
  padding-bottom: var(--space-s);
  margin-bottom: var(--space-l);
}
.scope-list__label {
  color: var(--spot);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
}
.scope-list__count {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  margin-left: auto;
}
.scope-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scope-list__items li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  gap: var(--space-m);
  padding: clamp(var(--space-s), 1.5vw, var(--space-m)) 0;
  border-bottom: 1px solid var(--rule-paper);
}
.scope-list__num {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  color: var(--spot);
}
.scope-list__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: var(--weight-regular);
  letter-spacing: -0.015em;
  color: var(--ink-on-paper);
  line-height: 1.3;
}
.scope-list__separate {
  margin-top: var(--space-l);
  padding: var(--space-m) clamp(var(--space-m), 2vw, var(--space-l));
  background: var(--paper-2);
  border-left: 2px solid var(--rule-paper);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.scope-list__separate-label {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
}
.scope-list__separate-text {
  font-size: var(--fs-body-s);
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0;
}
/* Frist-Signal (Honiggelb): Akzent-Kante + Badge statt grauem Label. */
.scope-list__separate--flag { border-left-color: var(--accent-flag); }
.scope-list__separate--flag .flag { align-self: flex-start; }

/* ─── Scope-Grid · Was dabei ist (Box-Grid mit Icons) ─────── */
.scope-grid {
  margin-top: var(--space-xl);
}
.scope-grid--a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-s);
}
.scope-box {
  background: var(--ink);
  color: var(--paper-on-ink);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  min-height: 160px;
  isolation: isolate;
}
.scope-box__icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--spot-on-ink);
  flex-shrink: 0;
}
.scope-box__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.scope-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  font-weight: var(--weight-medium);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--paper-on-ink);
  margin: 0;
  text-wrap: balance;
}
.scope-box__desc {
  font-family: var(--font-display);
  font-size: var(--fs-body-l);
  line-height: 1.4;
  color: var(--paper-dim);
  margin: 0;
  margin-top: auto;
}
@media (max-width: 900px) {
  .scope-grid--a { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .scope-grid--a { grid-template-columns: 1fr; }
}

/* ─── Fit-Compare · Für wen es passt (Plus/Minus-Vergleich) ──── */
.fit-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: var(--space-xl);
}
.fit-compare__col {
  padding: var(--space-l) clamp(var(--space-m), 2.5vw, var(--space-l)) 0 0;
  border-right: 1px solid var(--rule-paper);
}
.fit-compare__col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: clamp(var(--space-m), 2.5vw, var(--space-l));
}
.fit-compare__head {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--rule-paper);
}
.fit-compare__symbol {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--weight-medium);
  border: 1.5px solid var(--spot);
  color: var(--spot);
  border-radius: 50%;
  line-height: 1;
}
.fit-compare__col--neg .fit-compare__symbol {
  border-color: var(--rule-ink);
  color: var(--ink-dim);
}
.fit-compare__col-label {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  color: var(--ink-on-paper);
  line-height: 1.2;
}
.fit-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.fit-compare__list li {
  font-size: var(--fs-body-l);
  color: var(--ink);
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}
.fit-compare__list li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.72em;
  width: 0.7rem;
  height: 1.5px;
  background: var(--spot);
}
.fit-compare__col--neg .fit-compare__list li { color: var(--ink-dim); }
.fit-compare__col--neg .fit-compare__list li::before { background: var(--rule-ink); }

/* Dark-Kontext überschreibt (Codebase-Konvention: Basis hell, .section--dark dunkel) */
.section--dark .fit-compare__col { border-right-color: var(--rule-ink); }
.section--dark .fit-compare__head { border-bottom-color: var(--rule-ink); }
.section--dark .fit-compare__col-label { color: var(--paper-on-ink); }
.section--dark .fit-compare__list li { color: var(--paper-on-ink); }
.section--dark .fit-compare__list li::before { background: var(--spot-on-ink); }
.section--dark .fit-compare__col--pos .fit-compare__symbol { border-color: var(--spot-on-ink); color: var(--spot-on-ink); }
.section--dark .fit-compare__col--neg .fit-compare__symbol { color: var(--paper-dim); }
.section--dark .fit-compare__col--neg .fit-compare__list li { color: var(--paper-dim); }
.section--dark .fit-compare__col--neg .fit-compare__list li::before { background: var(--rule-paper); }

@media (max-width: 800px) {
  .fit-compare { grid-template-columns: 1fr; }
  .fit-compare__col {
    border-right: none;
    border-bottom: 1px solid var(--rule-paper);
    padding: var(--space-l) 0;
  }
  .section--dark .fit-compare__col { border-bottom-color: var(--rule-ink); }
  .fit-compare__col:last-child {
    border-bottom: none;
    padding-left: 0;
  }
}

/* ─── Next-Steps · Dunkler horizontaler Flow mit Pfeilen ───── */
.next-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(var(--space-xs), 1vw, var(--space-s));
  margin-top: var(--space-xl);
}
.next-steps__step {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: clamp(var(--space-m), 2.5vw, var(--space-l));
  background: var(--ink-2);
  border: 1px solid var(--rule-ink);
}
.next-steps__num {
  color: var(--spot-on-ink);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
}
.next-steps__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.4rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  color: var(--paper-on-ink);
  margin: 0;
  line-height: 1.25;
}
.next-steps__meta {
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  display: block;
  margin-top: calc(-1 * var(--space-xs));
}
.next-steps__lead {
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  line-height: 1.55;
  margin: 0;
}
.next-steps__arrow {
  width: 28px;
  height: 28px;
  color: var(--spot-on-ink);
  align-self: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .next-steps {
    grid-template-columns: 1fr;
    gap: var(--space-s);
  }
  .next-steps__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* Section-Number-Watermark (große Nummer im Hintergrund) */
.section--watermark {
  position: relative;
  overflow: hidden;
}
.section--watermark > .container > .section-head__watermark {
  position: absolute;
  top: calc(-1 * var(--space-xl));
  right: var(--container-padding);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--rule-paper);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.section--watermark.section--dark > .container > .section-head__watermark {
  color: var(--rule-ink);
  opacity: 1;
}
.section--watermark > .container { position: relative; }
.section--watermark > .container > *:not(.section-head__watermark) { position: relative; z-index: 1; }


/* ============================================================
   KI-Unterseite · Scroll-Stage Hero (Sticky-Hero über mehrere Viewport-Höhen)
   ============================================================ */
.scroll-stage {
  position: relative;
  height: 280vh; /* Gesamt-Scroll-Distanz für die Animation */
}
.scroll-stage__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero im Sticky-Container: füllt Höhe, kein Border, Nav-Höhe als Top-Abstand */
.scroll-stage .page-hero {
  width: 100%;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + var(--space-m));
  padding-bottom: var(--space-l);
  border-bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.scroll-stage .page-hero__inner {
  width: 100%;
}

/* Progress-Hinweis (klein, oben rechts) — optional, falls Markup vorhanden */
.stage-progress {
  position: absolute;
  top: var(--space-m);
  right: var(--container-padding);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  color: var(--paper-dim);
  text-transform: uppercase;
  z-index: 10;
}
.stage-progress span { color: var(--spot-on-ink); }


/* ============================================================
   KI-Unterseite · Workflow-Graph (vertikales SVG im Hero)
   ============================================================ */
.workflow-graph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-on-ink);
}
.workflow-graph svg {
  width: auto;
  height: calc(100vh - var(--nav-h) - 5rem);
  max-width: 100%;
  max-height: 900px;
  display: block;
}

/* Knoten */
.wf-node-bg {
  fill: var(--ink);
  stroke: var(--rule-ink);
  stroke-width: 1.4;
  transition: opacity 0.4s ease, stroke 0.4s ease;
}
.wf-node[data-active="0"] .wf-node-bg { opacity: 0.25; }
.wf-node[data-active="1"] .wf-node-bg { opacity: 1; stroke: var(--spot-on-ink); }

.wf-node-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  fill: var(--paper-on-ink);
  text-anchor: middle;
  dominant-baseline: middle;
  transition: opacity 0.4s ease;
}
.wf-node[data-active="0"] .wf-node-label { opacity: 0.3; }
.wf-node[data-active="1"] .wf-node-label { opacity: 1; }

.wf-node-mono {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--spot-on-ink);
  text-anchor: middle;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wf-node[data-active="1"] .wf-node-mono { opacity: 0.85; }

/* Verbindungen (Bezier) */
.wf-edge {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}
/* KI → An Sie bleibt dünn: der „nur was relevant ist"-Pfad ist die Ausnahme,
   nicht der Standard. Alle anderen Edges sind bewusst dicker, damit der
   Unterschied ohne genaues Hinsehen lesbar ist. */
.wf-edge[data-edge="3"] {
  stroke-width: 1.6;
}
.wf-edge[data-active="1"] {
  stroke: var(--spot-on-ink);
}
.wf-edge-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  fill: var(--paper-on-ink);
  opacity: 0.55;
  text-anchor: middle;
}

/* Daten-Paket */
.wf-packet {
  fill: var(--spot-on-ink);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wf-packet[data-visible="1"] { opacity: 1; }

/* KI-Pulse-Ring (visualisiert „denken") */
.wf-pulse {
  fill: none;
  stroke: var(--spot-on-ink);
  stroke-width: 1.5;
  opacity: 0;
}

/* Responsive Scroll-Stage —
   Auf Mobile rendert die Stage als normaler Block (kein sticky, kein 100vh-Clip),
   damit das vertikale Workflow-SVG nicht abgeschnitten wird. Das JS deaktiviert
   gleichzeitig die Scroll-Animation und zeigt alle Knoten statisch. */
@media (max-width: 900px) {
  .scroll-stage { height: auto; }
  .scroll-stage__inner {
    position: static;
    height: auto;
    overflow: visible;
  }
  .scroll-stage .page-hero {
    height: auto;
    padding-bottom: var(--space-2xl);
  }
  .scroll-stage .page-hero__inner--grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .workflow-graph {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .workflow-graph svg {
    height: auto;
    width: 100%;
    max-height: 70vh;
  }
}


/* ============================================================
   KI-Unterseite · Outcome-Grid 3-Karten-Variante
   ============================================================ */
.outcome-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .outcome-grid--3 { grid-template-columns: 1fr; }
  .outcome-grid--3 .outcome-card { border-right: none; border-bottom: 1px solid var(--rule-ink); }
  .outcome-grid--3 .outcome-card:last-child { border-bottom: none; }
}


/* ============================================================
   KI-Unterseite · Ablauf-Vertikal n8n-Style mit Scroll-Reveal
   ============================================================ */
.ablauf-vert {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}
.ablauf-vert svg {
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
}
/* Mobile vs Desktop SVG-Toggle — höhere Specificity damit es `.ablauf-vert svg` schlägt */
.ablauf-vert svg.ablauf-vert__mobile { display: none; }
.ablauf-vert svg.ablauf-vert__desktop { display: block; }
@media (max-width: 720px) {
  .ablauf-vert svg.ablauf-vert__mobile { display: block; max-width: 100%; }
  .ablauf-vert svg.ablauf-vert__desktop { display: none; }
}

/* Knoten */
.ablauf-v-node {
  fill: var(--ink);
  stroke: var(--rule-ink);
  stroke-width: 1.5;
  transition: stroke 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-node {
  stroke: var(--spot-on-ink);
}
.ablauf-v-node--reject {
  stroke-dasharray: 5 4;
  opacity: 0.9;
}

/* Ports */
.ablauf-v-port {
  fill: var(--ink);
  stroke: var(--paper-dim);
  stroke-width: 1.2;
  transition: stroke 0.5s ease;
}
.ablauf-v-port--out {
  fill: var(--paper-dim);
  stroke: none;
  transition: fill 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-port { stroke: var(--spot-on-ink); }
[data-stage][data-active="1"] .ablauf-v-port--out { fill: var(--spot-on-ink); }

/* Edges */
.ablauf-v-edge {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease-out, stroke 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-edge { stroke: var(--spot-on-ink); }
.ablauf-v-edge--reject { stroke-dasharray: none; }
[data-stage][data-active="1"] .ablauf-v-edge--reject {
  stroke: var(--rule-ink);
  opacity: 0.7;
}

/* Text */
.ablauf-v-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--paper-dim);
  text-anchor: end;
  transition: fill 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-num { fill: var(--paper-on-ink); }

.ablauf-v-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  fill: var(--paper-on-ink);
  text-anchor: middle;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-title { opacity: 1; }

.ablauf-v-subtitle {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  fill: var(--paper-dim);
  text-anchor: middle;
  opacity: 0.35;
  transition: opacity 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-subtitle { opacity: 1; }

.ablauf-v-duration {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--spot-on-ink);
  text-anchor: start;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-duration { opacity: 1; }

.ablauf-v-punchline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  fill: var(--paper-dim);
  text-anchor: middle;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-punchline { opacity: 1; }

.ablauf-v-edgelabel {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--paper-dim);
  text-anchor: middle;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
[data-stage][data-active="1"] .ablauf-v-edgelabel { opacity: 1; }


/* ============================================================
   KI-Unterseite · Preisrahmen (Einzel-Box statt 3-Tier-Grid)
   Bewusst anders als websites.html: KI ist zu individuell für
   ein Paket-Raster. Statt drei Karten ein einzelner Block,
   der ehrlich kommuniziert: „Preis nach Gespräch."
   ============================================================ */
/* 2-Spalten-Wrapper: Preisbox links, "Warum kein Festpreis" rechts */
.preise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-l), 4vw, var(--space-2xl));
  align-items: start;
  margin-top: var(--space-xl);
}
@media (max-width: 800px) {
  .preise-layout { grid-template-columns: 1fr; gap: var(--space-l); }
}

.preise-rahmen {
  margin-top: 0;
  margin-inline: 0;
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
  padding-block: clamp(var(--space-l), 4vw, var(--space-xl));
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--space-m), 3vw, var(--space-l));
}

/* Hauptanzeige: große Range + Subline */
.preise-rahmen__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.preise-rahmen__label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot-on-ink);
}

.preise-rahmen__amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  color: var(--paper-on-ink);
}

.preise-rahmen__amount em {
  font-style: italic;
  color: var(--paper-dim);
  font-weight: var(--weight-regular);
}

.preise-rahmen__sub {
  font-family: var(--font-display);
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  max-width: 50ch;
  line-height: var(--lh-body);
}

/* Sekundäre Zeile: „Komplexere Setups: individuell" */
.preise-rahmen__second {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding-top: var(--space-m);
  border-top: 1px solid var(--rule-ink);
}

.preise-rahmen__second-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--paper-dim);
}

.preise-rahmen__second-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--paper-on-ink);
  line-height: 1.2;
}

/* Hinweis-Badge: „Analyse-Gespräch kostenlos" */
.preise-rahmen__note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-s);
  border: 1px solid var(--spot-on-ink);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot-on-ink);
  align-self: flex-start;
  width: max-content;
}

.preise-rahmen__note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spot-on-ink);
  display: inline-block;
}

/* „Warum kein Festpreis"-Liste — kompakt, mono-akzentuiert */
.preise-warum {
  margin-top: 0;
  margin-inline: 0;
  display: grid;
  gap: var(--space-m);
  align-self: start;
}

.preise-warum__head {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--paper-dim);
}

.preise-warum__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-s);
}

.preise-warum__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-m);
  font-family: var(--font-display);
  font-size: var(--fs-body-l);
  color: var(--paper-on-ink);
  line-height: var(--lh-body);
  padding-bottom: var(--space-s);
  border-bottom: 1px solid var(--rule-ink);
}

.preise-warum__list li:last-child { border-bottom: none; padding-bottom: 0; }

.preise-warum__list li::before {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  color: var(--spot-on-ink);
  padding-top: 0.25rem;
}

/* Schluss-Satz unter der Liste — ehrlich, klein */
.preise-coda {
  margin-top: clamp(var(--space-l), 4vw, var(--space-xl));
  max-width: 60ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  text-align: center;
  line-height: var(--lh-body);
}

@media (max-width: 700px) {
  .preise-rahmen__main { gap: var(--space-xs); }
  .preise-warum__list li { grid-template-columns: 1fr; gap: var(--space-3xs); }
  .preise-warum__list li::before { padding-top: 0; }
}


/* ============================================================
   Leistungs-Hub · Self-Routing-Karten
   Drei Wege für die Customer-Journey-Entscheidung — hell.
   ============================================================ */
.routing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-s), 2vw, var(--space-m));
  margin-top: var(--space-xl);
}
.routing-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding: clamp(var(--space-l), 3vw, var(--space-xl));
  background: var(--paper);
  border: 1px solid var(--rule-paper);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.routing-card:hover,
.routing-card:focus-visible {
  border-color: var(--spot);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px -8px rgba(20, 22, 29, 0.18);
}
.routing-card:focus-visible { outline: 2px solid var(--spot); outline-offset: 4px; }
.routing-card__icon {
  width: 32px;
  height: 32px;
  color: var(--spot);
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.routing-card__icon svg { width: 100%; height: 100%; display: block; }
.routing-card:hover .routing-card__icon,
.routing-card:focus-visible .routing-card__icon {
  transform: scale(1.1);
  color: var(--spot-hover, var(--spot));
}
.routing-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink-on-paper);
  margin: 0;
  text-wrap: balance;
}
.routing-card__desc {
  font-size: var(--fs-body-l);
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0;
  margin-top: auto;
}
.routing-card__cue {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot);
}
@media (max-width: 800px) {
  .routing-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Leistungs-Hub · Bereich-B aufgewertete Layout
   Zwei-Spalter: Hauptbeschreibung + Use-Cases mit Mini-Workflow.
   ============================================================ */
.bereich-b-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(var(--space-l), 4vw, var(--space-2xl));
  align-items: center;
  margin-top: var(--space-xl);
}
.bereich-b-main { display: flex; flex-direction: column; gap: var(--space-m); }

/* Button-CTA für dunkle Bereich-B-Sektion */
.bereich-b-main__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-l);
  margin-top: var(--space-s);
  border: 1.5px solid var(--spot-on-ink);
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot-on-ink);
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}
.bereich-b-main__cta:hover,
.bereich-b-main__cta:focus-visible {
  background: var(--spot-on-ink);
  color: var(--ink);
}
.bereich-b-main__cta:focus-visible { outline: 2px solid var(--spot-on-ink); outline-offset: 4px; }
.bereich-b-main__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.bereich-b-main__cta:hover svg { transform: translateX(4px); }
.bereich-b-main__label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot-on-ink);
}
.bereich-b-main__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--paper-on-ink);
  margin: 0;
}
.bereich-b-main__title em {
  font-style: italic;
  color: var(--spot-on-ink);
  font-weight: var(--weight-regular);
}
.bereich-b-main__lead {
  font-size: var(--fs-body-l);
  color: var(--paper-dim);
  line-height: var(--lh-body);
  max-width: 42ch;
  margin: 0;
}
.bereich-b-main__duration {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--paper-dim);
}

.bereich-b-side { display: flex; flex-direction: column; gap: var(--space-l); }
.bereich-b-side__head {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--spot-on-ink);
  padding-bottom: var(--space-s);
  border-bottom: 1px solid var(--rule-ink);
}
.bereich-b-side__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.bereich-b-side__list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: var(--space-s);
  align-items: baseline;
  color: var(--paper-on-ink);
  font-size: var(--fs-body-l);
  line-height: 1.4;
  padding: var(--space-s) 0;
  border-bottom: 1px solid var(--rule-ink);
}
.bereich-b-side__list li:last-child { border-bottom: none; }
.bereich-b-side__list li::before {
  content: "→";
  color: var(--spot-on-ink);
  font-family: var(--font-mono);
}

.bereich-b-side__viz { width: 100%; max-width: 100%; height: auto; display: block; }

/* Screenshot-Teaser statt SVG-Mini-Workflow */
.bereich-b-side__shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}
.bereich-b-side__shot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule-ink);
}
.bereich-b-side__shot figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--paper-dim);
}
.bereich-b-side__viz-node {
  fill: none;
  stroke: var(--rule-ink);
  stroke-width: 1.4;
}
.bereich-b-side__viz-node--end { fill: var(--spot-on-ink); stroke: var(--spot-on-ink); }
.bereich-b-side__viz-label {
  font-family: var(--font-display);
  font-size: 11px;
  fill: var(--paper-on-ink);
  text-anchor: middle;
}
.bereich-b-side__viz-label--end { fill: var(--ink); font-weight: 500; }
.bereich-b-side__viz-edge {
  fill: none;
  stroke: var(--spot-on-ink);
  stroke-width: 1.4;
  stroke-linecap: round;
}
.bereich-b-side__viz-port { fill: var(--spot-on-ink); }
.bereich-b-side__viz-port--in { fill: var(--ink); stroke: var(--paper-dim); stroke-width: 1; }

@media (max-width: 800px) {
  .bereich-b-layout { grid-template-columns: 1fr; gap: var(--space-l); }
}


/* ============================================================
   Leistungs-Hub · Hero-Verzweigungs-Visual
   Fork-Diagramm: "Ihre Lage" → "Web" + "KI". Draw-In auf Load.
   ============================================================ */
.hub-fork { width: 100%; height: auto; display: block; color: var(--paper-on-ink); }
.hub-fork__frame { fill: none; stroke: var(--rule-ink); stroke-width: 1.4; }
.hub-fork__frame--accent { stroke: var(--spot-on-ink); fill: var(--ink); }
.hub-fork__title-mono {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--paper-dim);
  text-anchor: middle;
}
.hub-fork__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  fill: var(--paper-on-ink);
  text-anchor: middle;
}
.hub-fork__sub {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  fill: var(--paper-dim);
  text-anchor: middle;
}
.hub-fork__big {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  fill: var(--paper-on-ink);
  text-anchor: middle;
  letter-spacing: -0.02em;
}

/* Interaktive Link-Boxen am unteren Ende der Verzweigung */
.hub-fork__link { cursor: pointer; }
.hub-fork__frame--btn {
  fill: transparent;
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.hub-fork__link:hover .hub-fork__frame--btn,
.hub-fork__link:focus-visible .hub-fork__frame--btn {
  fill: var(--ink-2);
  stroke: var(--spot-on-ink);
}
.hub-fork__big,
.hub-fork__sub {
  transition: fill 0.25s ease;
}
.hub-fork__link:hover .hub-fork__big,
.hub-fork__link:focus-visible .hub-fork__big {
  fill: var(--spot-on-ink);
}
.hub-fork__link:hover .hub-fork__sub,
.hub-fork__link:focus-visible .hub-fork__sub {
  fill: var(--paper-on-ink);
}
.hub-fork__link:focus-visible { outline: none; }
.hub-fork__link:focus-visible .hub-fork__frame--btn {
  stroke-width: 2;
}
.hub-fork__edge {
  fill: none;
  stroke: var(--spot-on-ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: hubForkDraw 1.4s ease-out 0.3s forwards;
}
.hub-fork__edge--right { animation-delay: 0.45s; }
.hub-fork__port { fill: var(--spot-on-ink); opacity: 0; animation: hubForkFade 0.4s ease-out 1.6s forwards; }
.hub-fork__port--in { fill: var(--ink); stroke: var(--paper-dim); stroke-width: 1; }
@keyframes hubForkDraw { to { stroke-dashoffset: 0; } }
@keyframes hubForkFade { to { opacity: 1; } }


/* (Schritt-Icon ist jetzt in components.css definiert — großer Kreis statt
   kleinem Inline-Icon im Titel.) */


/* ============================================================
   Leistungs-Hub · Anfangen-CTA (finaler Konversions-Button)
   Stronger als link-arrow, konsistent mit c3-main__cta-Pattern.
   ============================================================ */
.anfangen-cta-wrap {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-s);
}
.anfangen-cta-wrap__teaser {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.anfangen-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-m) var(--space-xl);
  border: 1.5px solid var(--ink-on-paper);
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--ink-on-paper);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.anfangen-cta:hover,
.anfangen-cta:focus-visible {
  background: var(--spot);
  border-color: var(--spot);
  color: var(--paper-on-ink);
}
.anfangen-cta:focus-visible { outline: 2px solid var(--spot); outline-offset: 4px; }
.anfangen-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.anfangen-cta:hover svg { transform: translateX(4px); }
.anfangen-cta__addr {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
}

