/* acessio · narrative, system order and technical-detail enhancements */

/* ------------------------------------------------------------------
   Hero story: company → digital routes → decision
   ------------------------------------------------------------------ */
.hero__stage.hero-story {
  aspect-ratio: auto;
  min-height: clamp(440px, 36vw, 540px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.94), transparent 30%),
    linear-gradient(135deg, #f1ede8 0%, #e2d9cf 100%);
  border-color: rgba(25,25,28,0.13);
}

.hero__stage.hero-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(25,25,28,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,25,28,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(125% 105% at 50% 46%, #000 52%, transparent 100%);
}

.hero-story__head {
  position: absolute;
  z-index: 6;
  top: clamp(22px, 2.6vw, 38px);
  left: 50%;
  width: min(92%, 820px);
  transform: translateX(-50%);
  text-align: center;
}

.hero-story__foot {
  position: absolute;
  z-index: 6;
  bottom: clamp(14px, 1.8vw, 24px);
  left: 50%;
  width: min(94%, 720px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-story__eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-story__headline {
  max-width: 40ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-story__subline {
  margin: 10px auto 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 20px);
  font-style: italic;
  color: var(--ink-2);
}

.hero-story__note {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-story__control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 0;
  padding: 9px 14px;
  border: 1px solid rgba(25,25,28,0.18);
  border-radius: 999px;
  background: rgba(250,248,245,0.74);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.hero-story__control:hover,
.hero-story__control:focus-visible {
  background: var(--ink);
  color: var(--canvas);
  outline: none;
}

.hero-story__control-mark {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-story__control-mark::before,
.hero-story__control-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 1px;
  height: 5px;
  background: currentColor;
}

.hero-story__control-mark::before { left: 5px; }
.hero-story__control-mark::after { right: 5px; }
.hero-story__control[data-state="paused"] .hero-story__control-mark::before,
.hero-story__control[data-state="ended"] .hero-story__control-mark::before {
  top: 3px;
  left: 5px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  background: transparent;
}
.hero-story__control[data-state="paused"] .hero-story__control-mark::after,
.hero-story__control[data-state="ended"] .hero-story__control-mark::after { display: none; }

.hero-story__canvas {
  /* One linear row: company → found → understood → chosen → result. */
  position: absolute;
  z-index: 2;
  inset: 0 7%;
  display: grid;
  grid-template-columns: 1.05fr 52px 1.15fr 52px 1fr 52px 1.2fr;
  align-items: center;
}

.hero-flow__link {
  width: 52px;
  height: 12px;
  overflow: visible;
}
.hero-flow__link path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-flow__link-base { stroke: rgba(25,25,28,0.14); stroke-width: 1.6; }
.hero-story__path {
  stroke: #a77429;
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  will-change: stroke-dashoffset, opacity;
}

.hero-story__node {
  position: relative;
  z-index: 3;
  will-change: opacity, transform;
}

.hero-story__node {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(25,25,28,0.14);
  border-radius: 14px;
  background: rgba(250,248,245,0.9);
  box-shadow: 0 18px 38px rgba(57,44,31,0.08);
  backdrop-filter: blur(12px);
}

.hero-story__node small,
.hero-story__node strong { display: block; }
.hero-story__node small {
  color: var(--muted);
  font-size: clamp(7px, 0.68vw, 10px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-story__node strong {
  margin-top: 4px;
  font-size: clamp(10px, 0.94vw, 14px);
  line-height: 1.16;
}

.story-icon {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #eee7de;
}
.story-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-icon--dark { background: rgba(255,255,255,0.13); }

.hero-story__num {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(25,25,28,0.18);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.hero-story__node.is-active {
  border-color: rgba(167,116,41,0.55);
  box-shadow: 0 18px 44px rgba(119,79,22,0.13);
}

.hero-flow__node--value {
  min-height: 84px;
  border-color: rgba(255,255,255,0.18);
  background: #19191c;
  color: #f7f5f2;
}
.hero-flow__node--value small { color: rgba(247,245,242,0.62); }

/* "Gefunden" split: suggested in Google AND recommended in AI search */
.hero-flow__split {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  will-change: opacity, transform;
}
.hero-flow__split-label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.hero-flow__split-label i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  place-items: center;
  border: 1px solid rgba(25,25,28,0.22);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}
.hero-flow__mini { min-height: 54px; padding: 8px 10px; gap: 8px; }
.hero-flow__mini .story-icon { width: 26px; height: 26px; }
.hero-flow__mini .story-icon svg { width: 14px; height: 14px; }
.hero-flow__mini small { font-size: clamp(6.5px, 0.6vw, 9px); }
.hero-flow__mini strong { font-size: clamp(9px, 0.85vw, 12.5px); }

/* AI search card carries the gold accent — the differentiator. */
.hero-flow__mini--gold {
  border-color: rgba(185,138,60,0.62);
  box-shadow: 0 0 0 3px rgba(185,138,60,0.12), 0 18px 38px rgba(119,79,22,0.12);
}
.hero-flow__mini--gold .story-icon { background: rgba(185,138,60,0.16); color: #8c641f; }
.hero-flow__mini--gold small { color: #8c641f; }

/* ------------------------------------------------------------------
   Concrete product demos
   ------------------------------------------------------------------ */
.watch--early { padding-top: clamp(30px, 5vw, 72px); }
.watch__intro { max-width: 54ch; margin: 24px auto 0; text-align: left; }

.demo-ui__result--herzberg em {
  display: inline-flex;
  margin-top: 7px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(185,138,60,0.12);
  color: #8c641f;
  font-size: clamp(5px, 0.5vw, 7px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.demo-ui__result--herzberg.is-active {
  border-color: rgba(185,138,60,0.92);
  box-shadow: 0 0 0 3px rgba(185,138,60,0.14), 0 14px 34px rgba(120,78,21,0.2);
}

.demo-ui__tap-dot {
  position: absolute;
  z-index: 7;
  right: 12%;
  top: 52%;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(25,25,28,0.78);
  box-shadow: 0 5px 14px rgba(25,25,28,0.22), 0 0 0 5px rgba(185,138,60,0.16);
}

.demo-ui__site-card {
  position: relative;
  height: 53%;
  overflow: hidden;
  border: 1px solid var(--demo-line);
  border-radius: 11px;
  background: #eee9e3;
  box-shadow: 0 16px 34px rgba(44,35,27,0.09);
}

.demo-ui__site-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.84) contrast(0.96);
}

.demo-ui__site-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 20% 8% 8%;
  background: linear-gradient(transparent, rgba(18,18,20,0.86));
  color: #fff;
}
.demo-ui__site-overlay span,
.demo-ui__site-overlay strong { display: block; }
.demo-ui__site-overlay span {
  margin-bottom: 5px;
  color: rgba(255,255,255,0.7);
  font-size: clamp(5px, 0.5vw, 7px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-ui__site-overlay strong {
  font-family: var(--serif);
  font-size: clamp(14px, 1.45vw, 20px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
}

.demo-ui__site-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 6%;
}
.demo-ui__site-facts span {
  padding: 7px;
  border: 1px solid var(--demo-line);
  border-radius: 7px;
  background: rgba(255,255,255,0.7);
  font-size: clamp(5px, 0.52vw, 7.5px);
  line-height: 1.25;
}

.demo-ui__cta {
  display: flex;
  width: 100%;
  min-height: 36px;
  margin-top: 7%;
  padding: 9px 11px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--demo-ink);
  border-radius: 999px;
  background: var(--demo-ink);
  color: var(--demo-paper);
  font-size: clamp(7px, 0.66vw, 9px);
  font-weight: 700;
}
.demo-ui__cta.is-active { box-shadow: 0 0 0 4px rgba(185,138,60,0.16), 0 10px 24px rgba(25,25,28,0.18); }

.demo-ui__journey-note {
  display: flex;
  margin-top: 12%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--demo-muted);
  font-size: clamp(5px, 0.5vw, 7px);
}
.demo-ui__journey-note i { width: 15px; height: 1px; background: var(--demo-line-strong); }
.demo-ui__journey-note strong { color: var(--demo-ink); }

.demo-ui__display-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10%;
}
.demo-ui__display {
  min-height: 130px;
  padding: 13px 10px;
  border: 1px solid var(--demo-line);
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
  text-align: center;
}
.demo-ui__display-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 13px;
  place-items: center;
  border-radius: 50%;
  background: #ebe4dc;
  font-size: 15px;
}
.demo-ui__display strong,
.demo-ui__display small { display: block; }
.demo-ui__display strong { font-size: clamp(8px, 0.8vw, 11px); }
.demo-ui__display small { margin-top: 4px; color: var(--demo-muted); font-size: clamp(5px, 0.5vw, 7px); }
.demo-ui__display.is-active {
  border-color: var(--demo-ink);
  background: var(--demo-ink);
  color: var(--demo-paper);
  box-shadow: 0 12px 28px rgba(25,25,28,0.16);
}
.demo-ui__display.is-active small { color: rgba(247,245,242,0.65); }

.demo-ui__answer-summary {
  display: grid;
  gap: 6px;
  margin-top: 8%;
}
.demo-ui__answer-summary div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--demo-line);
  font-size: clamp(5px, 0.52vw, 7.5px);
}
.demo-ui__answer-summary span { color: var(--demo-muted); }
.demo-ui__answer-summary strong { max-width: 58%; text-align: right; }

.demo-ui__mini-facts {
  display: flex;
  gap: 5px;
  margin-top: 8%;
}
.demo-ui__mini-facts span {
  flex: 1;
  padding: 7px 4px;
  border: 1px solid var(--demo-line);
  border-radius: 7px;
  color: var(--demo-muted);
  font-size: clamp(5px, 0.5vw, 7px);
  text-align: center;
}

.demo-calendar {
  margin-top: 5%;
  padding: 9px;
  border: 1px solid var(--demo-line);
  border-radius: 10px;
  background: rgba(255,255,255,0.76);
}
.demo-calendar__week,
.demo-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}
.demo-calendar__week { margin-bottom: 6px; }
.demo-calendar__week span {
  color: var(--demo-muted);
  font-size: clamp(4px, 0.42vw, 6px);
  text-align: center;
}
.demo-calendar__grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: clamp(5px, 0.5vw, 7px);
  font-weight: 600;
}
.demo-calendar__grid .is-disabled { color: rgba(113,109,104,0.34); text-decoration: line-through; }
.demo-calendar__grid .is-selected {
  border-color: var(--demo-ink);
  background: var(--demo-ink);
  color: var(--demo-paper);
  box-shadow: 0 4px 10px rgba(25,25,28,0.16);
}
.demo-calendar__grid .is-empty { opacity: 0; }
.demo-calendar__time-label { margin-top: 7%; }
.demo-time-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.demo-time-row button {
  padding: 7px 2px;
  border: 1px solid var(--demo-line);
  border-radius: 7px;
  background: #fff;
  font-size: clamp(5px, 0.52vw, 7.5px);
  font-weight: 700;
}
.demo-time-row button.is-active { background: var(--demo-ink); color: var(--demo-paper); }

/* Fixed sequential system instead of a radial map */
.watch__stage.code-demo--system .code-demo__copy { width: min(35%, 430px); color: #f7f5f2; }
.watch__stage.code-demo--system .code-demo__eyebrow,
.watch__stage.code-demo--system .code-demo__note { color: rgba(247,245,242,0.58); }
.watch__stage.code-demo--system .code-demo__note { border-top-color: rgba(255,255,255,0.16); }
.watch__stage.code-demo--system .code-demo__beat { max-width: 12ch; font-size: clamp(42px, 4.6vw, 68px); }
.watch__stage.code-demo--system .code-demo__visual { inset: 0 2% 0 37%; }
.watch__stage.code-demo--system .code-demo__control {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #f7f5f2;
}
.watch__stage.code-demo--system .code-demo__control:hover,
.watch__stage.code-demo--system .code-demo__control:focus-visible { background: #f7f5f2; color: #19191c; }

.system-sequence {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 17px;
  align-items: center;
}
.system-sequence__lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.system-sequence__lines path { fill: none; stroke-linecap: round; }
.system-sequence__lines marker path { fill: #c69a4b; stroke: none; }
.system-sequence__base { stroke: rgba(255,255,255,0.15); stroke-width: 1.4; }
.system-sequence__lines path[data-demo-line] {
  stroke: #c69a4b;
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  marker-end: url(#system-arrow);
}
.system-sequence__node {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 132px;
  padding: 15px 11px;
  align-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  color: #f7f5f2;
  backdrop-filter: blur(10px);
}
.system-sequence__node span {
  margin-bottom: 16px;
  color: #c69a4b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.system-sequence__node strong { font-size: clamp(9px, 0.82vw, 12px); line-height: 1.15; }
.system-sequence__node small { margin-top: 5px; color: rgba(247,245,242,0.52); font-size: clamp(6px, 0.5vw, 7.5px); line-height: 1.25; }
.system-sequence__node--final { border-color: rgba(198,154,75,0.6); background: #f3eee8; color: #19191c; }
.system-sequence__node--final small { color: #716d68; }

/* ------------------------------------------------------------------
   "Wir stellen vor: Das Acessio-System" — one big journey demo.
   ------------------------------------------------------------------ */
.system-intro { text-align: center; }

/* Premieren-Inszenierung: Marke, Kicker mit Haarlinien, Titel-Reveal pro Wort. */
.system-intro__mark {
  display: block;
  width: clamp(30px, 3vw, 42px);
  aspect-ratio: 1;
  margin: 0 auto clamp(18px, 2.4vw, 26px);
  background: var(--accent);
  -webkit-mask: url("../img/acessio-mark.svg") center / contain no-repeat;
  mask: url("../img/acessio-mark.svg") center / contain no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 900ms var(--ease) 120ms, transform 900ms var(--ease) 120ms;
}
.system-intro__head.is-in .system-intro__mark { opacity: 0.85; transform: none; }
.system-intro__kicker {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.system-intro__kicker::before,
.system-intro__kicker::after {
  content: "";
  width: clamp(30px, 5vw, 72px);
  height: 1px;
}
.system-intro__kicker::before { background: linear-gradient(90deg, transparent, rgba(185, 138, 60, 0.55)); }
.system-intro__kicker::after { background: linear-gradient(90deg, rgba(185, 138, 60, 0.55), transparent); }
.system-intro__title {
  margin: 24px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.system-intro__title .sw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.system-intro__title .sw i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(115%);
  transition: transform 1100ms var(--ease) 150ms;
}
.system-intro__title .sw:nth-child(2) i { transition-delay: 280ms; }
.system-intro__head.is-in .sw i { transform: none; }
.system-intro__lead { max-width: 56ch; margin: 28px auto 0; }
.system-text-explainer__eyebrow { margin: 0 auto; text-align: center; }
.system-articles-cta {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.system-articles-cta p {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 16px);
}
@media (prefers-reduced-motion: reduce) {
  .system-intro__mark,
  .system-intro__title .sw i { opacity: 1; transform: none; transition: none; }
}
.system-demo { margin-top: clamp(40px, 6vw, 72px); text-align: left; }
.system-demo__caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.system-motion-stack {
  display: grid;
  gap: clamp(76px, 10vw, 136px);
  margin-top: clamp(52px, 7vw, 88px);
}
.system-motion-block { text-align: left; }
.system-motion-block__head {
  display: grid;
  grid-template-columns: clamp(54px, 6vw, 86px) 1fr;
  align-items: end;
  gap: clamp(16px, 2.5vw, 34px);
  margin-bottom: clamp(20px, 2.4vw, 32px);
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
}
.system-motion-block__head > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 56px);
  font-style: italic;
  line-height: .8;
}
.system-motion-block__head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.system-motion-block__head h3 {
  max-width: 20ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
  text-wrap: balance;
}

/* The films are followed by the same system as a calm, static text path. */
.system-text-explainer {
  margin-top: clamp(72px, 9vw, 118px);
  padding-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid var(--line);
  text-align: left;
}
.system-text-explainer__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.system-text-explainer__head h3 {
  max-width: 18ch;
  margin: 22px auto 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 76px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  text-wrap: balance;
}
.system-text-explainer__head > p:last-child {
  max-width: 62ch;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
  text-wrap: pretty;
}
.system-linear {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 22px);
  margin: clamp(54px, 7vw, 88px) 0 0;
  padding: 0;
  list-style: none;
}
.system-linear::before {
  content: "";
  position: absolute;
  top: 25px;
  right: calc(100% / 14);
  left: calc(100% / 14);
  height: 1px;
  background: linear-gradient(90deg, rgba(185,138,60,.28), var(--accent) 50%, rgba(185,138,60,.28));
}
.system-linear__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 52px auto auto auto;
  justify-items: center;
  min-width: 0;
  text-align: center;
}
.system-linear__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(185,138,60,.42);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  box-shadow: 0 0 0 8px var(--canvas);
}
.system-linear__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.system-linear__step--final .system-linear__icon {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--canvas);
}
.system-linear__num {
  margin-top: 19px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1;
}
.system-linear strong {
  margin-top: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.system-linear small {
  max-width: 18ch;
  margin-top: 9px;
  color: var(--muted);
  font-size: clamp(10px, .9vw, 12px);
  line-height: 1.45;
}
.system-data-note {
  display: grid;
  grid-template-columns: minmax(180px, .58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(54px, 7vw, 88px);
  padding: clamp(26px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.system-data-note p { margin: 0; }
.system-data-note__label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.system-data-note p:last-child {
  max-width: 66ch;
  color: var(--ink);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}
.system-growth {
  margin-top: clamp(116px, 15vw, 196px);
  padding-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid var(--line);
  text-align: left;
}
.system-growth h2 {
  max-width: 14ch;
  margin-top: 24px;
  font-size: clamp(44px, 6.5vw, 86px);
  text-wrap: balance;
}
.system-growth .lead {
  max-width: 54ch;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .system-motion-stack { gap: 76px; }
  .system-motion-block__head {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }
  .system-motion-block__head h3 { font-size: clamp(29px, 8vw, 40px); }
  .system-demo__caption { font-size: 11px; line-height: 1.5; }
  .system-text-explainer {
    margin-top: 72px;
    padding-top: 38px;
  }
  .system-text-explainer__head { text-align: left; }
  .system-text-explainer__head h3,
  .system-text-explainer__head > p:last-child { margin-left: 0; }
  .system-linear {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
  }
  .system-linear::before {
    top: 26px;
    right: auto;
    bottom: 48px;
    left: 25px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(185,138,60,.28), var(--accent) 50%, rgba(185,138,60,.28));
  }
  .system-linear__step {
    grid-template-columns: 52px 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: start;
    column-gap: 12px;
    min-height: 92px;
    padding-bottom: 30px;
    text-align: left;
  }
  .system-linear__icon {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 7px var(--canvas);
  }
  .system-linear__num {
    grid-row: 1 / 3;
    margin-top: 1px;
    font-size: 15px;
  }
  .system-linear strong {
    margin-top: 0;
    font-size: 24px;
  }
  .system-linear small {
    max-width: none;
    margin-top: 5px;
    font-size: 11px;
  }
  .system-data-note {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }
  .system-growth {
    margin-top: 96px;
    padding-top: 48px;
  }
  .system-growth h2 { font-size: clamp(42px, 12.8vw, 62px); }
  .system-growth .diagram-svg { margin-top: 12px !important; }
}

/* ------------------------------------------------------------------
   Three explanatory chapters — a distinct accent per phase so the
   sequences read as three different steps, not one repeated clip.
   ------------------------------------------------------------------ */
.chapter__num {
  font-style: normal;
  font-weight: 700;
  font-size: 0.6em;
  letter-spacing: 0.05em;
  color: var(--phase-accent, #b98a3c);
  margin-right: 5px;
}
.filmsec--found { --phase-accent: #b98a3c; }
.filmsec--understood { --phase-accent: #8a8681; }
.filmsec--chosen { --phase-accent: #19191c; }
.filmsec--found .filmsec__video { border-color: rgba(185,138,60,0.34); }
.filmsec--understood .filmsec__video { border-color: rgba(25,25,28,0.16); }
.filmsec--chosen .filmsec__video { border-color: rgba(25,25,28,0.30); }
.filmsec__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background: var(--phase-accent, #b98a3c);
  opacity: 0.5;
}

/* What each step includes — three short proof chips per chapter. */
.filmsec__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.filmsec__points li {
  padding: 8px 14px;
  border: 1px solid rgba(25,25,28,0.15);
  border-radius: 999px;
  background: rgba(250,248,245,0.72);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.3;
}
.filmsec__points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--phase-accent, #b98a3c);
  font-weight: 700;
}

/* ------------------------------------------------------------------
   Referenz-Karten: ruhig — kein Auto-Loop, Hover scrollt die Seite
   ------------------------------------------------------------------ */
.project-card .cast img {
  animation: none !important;
  transform: translateY(0);
  transition: transform 6.5s linear;
}
.project-card:hover .cast img,
.project-card:focus-visible .cast img {
  transform: translateY(var(--cast-end, -78%));
}
@media (prefers-reduced-motion: reduce) {
  .project-card .cast img { transition: none; }
}

/* ------------------------------------------------------------------
   Team & office — real people, real place
   ------------------------------------------------------------------ */
.team-visual {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(40px, 6vw, 72px);
}
.team-visual__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--canvas-2);
}
.team-visual__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-visual__item--portrait { aspect-ratio: 3 / 4; }
.team-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 20px 16px;
  background: linear-gradient(transparent, rgba(18,18,20,0.74));
  color: #fff;
}
.team-visual figcaption strong { display: block; font-size: 15px; }
.team-visual figcaption span { display: block; margin-top: 2px; font-size: 12px; color: rgba(255,255,255,0.76); }

.team-carousel { min-height: 100%; }
.team-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 720ms var(--ease);
}
.team-carousel__slide.is-active { opacity: 1; }
.team-carousel__slide img { width: 100%; height: 100%; object-fit: cover; }

.team-carousel__ui {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(18,18,20,0.42);
  backdrop-filter: blur(10px);
}
.team-carousel__arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.team-carousel__arrow:hover,
.team-carousel__arrow:focus-visible { background: rgba(255,255,255,0.18); outline: none; }
.team-carousel__arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.team-carousel__dots { display: flex; gap: 7px; }
.team-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.42);
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.team-carousel__dot.is-active { background: #fff; transform: scale(1.35); }
.team-carousel__dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .team-carousel__slide { transition: none; }
}

/* ------------------------------------------------------------------
   Module icons, collaboration line and technical capacity
   ------------------------------------------------------------------ */
.mods__nav button { display: inline-flex; align-items: center; gap: 8px; }
.mod-tab__icon { display: grid; width: 18px; height: 18px; place-items: center; }
.mod-tab__icon svg,
.capacity-stat__icon svg,
.capacity-spec__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-facts__head { margin-bottom: 64px; }

/* Markt-Erzählung: klassische Suche vs. KI-Suche, Brücke, Abschlusszahl */
.market-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.market-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(250, 248, 245, 0.8);
}
.market-card--gold {
  border-color: rgba(185, 138, 60, 0.5);
  background: linear-gradient(160deg, rgba(250,248,245,0.9) 0%, rgba(238,226,206,0.75) 100%);
  box-shadow: 0 24px 56px rgba(119, 79, 22, 0.1);
}
.market-card__tag {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.market-card--gold .market-card__tag { color: #8c641f; }
.market-card__value {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 92px);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.market-card__value i { font-size: 0.42em; font-style: italic; color: var(--ink-2); }
.market-card__label { margin: 0; color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.35; max-width: 30ch; }
.market-card__body { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 44ch; }
.market-card__src { color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }

.market-bridge {
  max-width: 54ch;
  margin: clamp(36px, 5vw, 64px) auto 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--ink-2);
}
.market-bridge strong { font-weight: 400; color: var(--ink); }

.market-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.market-final__value {
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 96px);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.market-final__value i { font-size: 0.45em; color: var(--ink-2); }
.market-final__label { margin: 0; max-width: 34ch; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

@media (max-width: 860px) {
  .market-duo { grid-template-columns: 1fr; }
  .market-final { flex-direction: column; text-align: center; gap: 12px; }
}

.collab-flow {
  --collab-progress: 0;
  position: relative;
  max-width: 980px;
  margin: clamp(56px, 8vw, 104px) auto 0;
}
.collab-flow__track {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 39px;
  width: 2px;
  overflow: hidden;
  background: rgba(25,25,28,0.11);
}
.collab-flow__track span {
  position: absolute;
  inset: 0;
  background: linear-gradient(#b98a3c, #19191c);
  transform: scaleY(var(--collab-progress));
  transform-origin: top;
  will-change: transform;
}
.collab-step {
  display: grid;
  min-height: 170px;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  opacity: 0.38;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  transform: translateY(12px);
}
.collab-step.is-active { opacity: 1; transform: translateY(0); }
.collab-step__num {
  position: relative;
  z-index: 2;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.collab-step.is-active .collab-step__num { border-color: #b98a3c; color: var(--ink); box-shadow: 0 0 0 7px rgba(185,138,60,0.08); }
.collab-step h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.collab-step .spec__value { max-width: 52ch; margin-top: 14px; }

.capacity-stats {
  display: grid;
  margin-top: clamp(48px, 7vw, 84px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.capacity-stats article {
  display: grid;
  min-height: 210px;
  padding: 30px clamp(16px, 2.4vw, 34px);
  align-content: start;
  border-right: 1px solid var(--line);
}
.capacity-stats article:last-child { border-right: 0; }
.capacity-stat__icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  place-items: center;
}
.capacity-stat__icon svg { width: 25px; height: 25px; }
.capacity-stats strong {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}
.capacity-stats article > span:last-child { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.capacity-specs .spec { position: relative; padding-left: 52px; }
.capacity-spec__icon {
  position: absolute;
  top: 20px;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}
.capacity-spec__icon svg { width: 24px; height: 24px; }

@media (max-width: 1100px) {
  .hero-story__node { min-height: 62px; padding: 9px; }
  .story-icon { width: 27px; height: 27px; }
  .hero-story__node strong { font-size: 10px; }
  .hero-story__node small { font-size: 7px; }
  .hero-story__canvas { grid-template-columns: 1.05fr 30px 1fr 30px 1fr 30px 1fr 30px 1.2fr; }
  .hero-flow__link { width: 30px; }
}

@media (max-width: 760px) {
  .hero__stage.hero-story { min-height: 830px; }
  .hero__stage.hero-story::before { mask-image: none; opacity: 0.55; }
  .hero-story__head {
    position: absolute;
    inset: 28px 22px auto;
    width: auto;
    transform: none;
  }
  .hero-story__eyebrow { margin-bottom: 12px; font-size: 9px; }
  .hero-story__headline { font-size: clamp(27px, 8.2vw, 40px); }
  .hero-story__foot {
    position: absolute;
    inset: auto 22px 22px;
    width: auto;
    transform: none;
  }
  .hero-story__note { display: none; }
  .hero-story__control { margin-top: 0; min-height: 38px; }
  .hero-story__canvas {
    inset: 138px 24px 78px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 4px;
  }
  .hero-story__node { width: 100%; min-height: 74px; padding: 11px 14px; }
  .hero-story__node strong { font-size: 12px; }
  .hero-story__node small { font-size: 8px; }
  .hero-flow__link { transform: rotate(90deg); width: 26px; height: 12px; margin: 6px 0; }
  .hero-flow__split { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero-flow__split-label { grid-column: 1 / -1; }
  .hero-flow__mini { min-height: 64px; }
  .hero-flow__mini strong { font-size: 10.5px; }
  .hero-flow__mini small { font-size: 7.5px; }

  .watch__intro { text-align: left; }
  .demo-ui__display { min-height: 100px; }
  .demo-calendar { padding: 7px; }

  .watch__stage.code-demo--system { min-height: 820px; aspect-ratio: auto; }
  .watch__stage.code-demo--system .code-demo__copy { top: 7%; width: 84%; }
  .watch__stage.code-demo--system .code-demo__beat { font-size: clamp(32px, 9vw, 43px); }
  .watch__stage.code-demo--system .code-demo__visual { inset: 33% 8% 8%; }
  .system-sequence { grid-template-columns: 1fr; gap: 7px; align-content: center; }
  .system-sequence__lines { display: none; }
  .system-sequence__node { min-height: 55px; padding: 9px 13px; grid-template-columns: 28px 1fr; column-gap: 8px; align-items: center; }
  .system-sequence__node span { grid-row: 1 / 3; margin: 0; }
  .system-sequence__node strong { font-size: 9px; }
  .system-sequence__node small { margin-top: 1px; font-size: 6px; }

  .mods__nav button { justify-content: flex-start; }

  .team-visual { grid-template-columns: 1fr; }
  .team-visual__item--portrait { aspect-ratio: 4 / 5; }
  .team-carousel { aspect-ratio: 4 / 3; min-height: 0; }

  .collab-flow__track { left: 29px; }
  .collab-step { min-height: 190px; grid-template-columns: 60px 1fr; gap: 22px; }
  .collab-step__num { width: 60px; height: 60px; }
  .collab-step h3 { font-size: 30px; }

  .capacity-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capacity-stats article { min-height: 180px; border-bottom: 1px solid var(--line); }
  .capacity-stats article:nth-child(2) { border-right: 0; }
  .capacity-stats article:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 400px) {
  .hero__stage.hero-story { min-height: 820px; }
  .hero-story__canvas { top: 150px; }
  .capacity-stats article { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-story__beat,
  .hero-story__node,
  .hero-story__path,
  .collab-step,
  .collab-flow__track span { will-change: auto; transition: none; }
}

/* ------------------------------------------------------------------
   Lebendiger Kreislauf „Beobachten → Verstehen → Verbessern":
   Pfeile wandern nacheinander, Verbessern leuchtet kurz grün,
   das Auge blinzelt am Ende der Runde. 12s-Loop, ruhig & kontrolliert.
   ------------------------------------------------------------------ */
.cycle-arrow { stroke-dasharray: 1; }
.cycle-improve { transition: none; }
.cycle-eye { transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: no-preference) {
  .reveal.is-in .cycle-seg--1 { animation: acSegWin1 12s linear infinite; }
  .reveal.is-in .cycle-seg--2 { animation: acSegWin2 12s linear infinite; }
  .reveal.is-in .cycle-seg--3 { animation: acSegWin3 12s linear infinite; }
  .reveal.is-in .cycle-seg--1 .cycle-arrow { animation: acDraw1 12s linear infinite; }
  .reveal.is-in .cycle-seg--2 .cycle-arrow { animation: acDraw2 12s linear infinite; }
  .reveal.is-in .cycle-seg--3 .cycle-arrow { animation: acDraw3 12s linear infinite; }
  .reveal.is-in .cycle-seg--1 .cycle-tip { animation: acTip1 12s linear infinite; }
  .reveal.is-in .cycle-seg--2 .cycle-tip { animation: acTip2 12s linear infinite; }
  .reveal.is-in .cycle-seg--3 .cycle-tip { animation: acTip3 12s linear infinite; }
  .reveal.is-in .cycle-improve { animation: acImprove 12s linear infinite; }
  .reveal.is-in .cycle-eye { animation: acEyeBlink 12s linear infinite; }
}

@keyframes acSegWin1 { 0%, 24% { opacity: 1; } 29%, 100% { opacity: 0; } }
@keyframes acSegWin2 { 0%, 30% { opacity: 0; } 32%, 54% { opacity: 1; } 59%, 100% { opacity: 0; } }
@keyframes acSegWin3 { 0%, 60% { opacity: 0; } 62%, 84% { opacity: 1; } 89%, 100% { opacity: 0; } }

@keyframes acDraw1 { 0%, 2% { stroke-dashoffset: 1; } 18%, 100% { stroke-dashoffset: 0; } }
@keyframes acDraw2 { 0%, 32% { stroke-dashoffset: 1; } 48%, 100% { stroke-dashoffset: 0; } }
@keyframes acDraw3 { 0%, 62% { stroke-dashoffset: 1; } 78%, 100% { stroke-dashoffset: 0; } }

@keyframes acTip1 { 0%, 16% { opacity: 0; } 19%, 100% { opacity: 1; } }
@keyframes acTip2 { 0%, 46% { opacity: 0; } 49%, 100% { opacity: 1; } }
@keyframes acTip3 { 0%, 76% { opacity: 0; } 79%, 100% { opacity: 1; } }

@keyframes acImprove {
  0%, 48% { fill: #F3F1F0; stroke: #19191C; stroke-opacity: 0.16; }
  53%, 57% { fill: #E7F2E2; stroke: #5C8A57; stroke-opacity: 0.85; }
  63%, 100% { fill: #F3F1F0; stroke: #19191C; stroke-opacity: 0.16; }
}

@keyframes acEyeBlink {
  0%, 86% { transform: scaleY(1); }
  88% { transform: scaleY(0.08); }
  90% { transform: scaleY(1); }
  92% { transform: scaleY(0.08); }
  94%, 100% { transform: scaleY(1); }
}

/* Großzügigerer Rhythmus: Einstieg ins System + „Ihr System lebt". */
.system-intro { padding-top: calc(var(--section-y) * 1.35); }
.system-growth { margin-top: clamp(150px, 19vw, 260px); }

/* Marktrealität: „beide" dezent in Gold unterstrichen. */
.market-bridge__u {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
