/* Swiss atelier / workshop night — optical pass (shared EN/DE/FR/IT) */

.sf-mark {
  display: block;
  margin-bottom: 18px;
  color: #7BB0FF;
}

.sf-still-band {
  position: relative;
  width: 100%;
  max-height: min(42vh, 420px);
  overflow: hidden;
  background: #080C16;
}

.sf-still-band img {
  display: block;
  width: 100%;
  height: min(42vh, 420px);
  object-fit: cover;
  object-position: center 40%;
}

.sf-still-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 12, 22, 0.15) 0%, rgba(8, 12, 22, 0.55) 55%, rgba(8, 12, 22, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.35), transparent 40%);
}

#applications .sf-still-band {
  margin: 36px 0 8px;
  border-radius: 0;
  max-height: min(36vh, 320px);
}

#applications .sf-still-band img {
  height: min(36vh, 320px);
}

/* Agent flow: numbered stations */
.sf-flow {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.sf-flow-station {
  flex: 1 1 88px;
  min-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 8px 6px 4px;
}

.sf-flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(102, 217, 242, 0.55);
  color: #66D9F2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0E1626;
}

.sf-flow-station--active .sf-flow-num {
  border-color: #4C8BF5;
  color: #F7FBFF;
  background: rgba(76, 139, 245, 0.22);
}

.sf-flow-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D5DEEB;
  max-width: 11ch;
  line-height: 1.35;
}

.sf-flow-station--active .sf-flow-label {
  color: #7BB0FF;
}

.sf-flow-connector {
  flex: 0 0 28px;
  align-self: flex-start;
  margin-top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(102, 217, 242, 0.15), rgba(102, 217, 242, 0.65), rgba(102, 217, 242, 0.15));
  list-style: none;
  padding: 0;
}

/* Pillar / process 2×2 breathing room */
@media (min-width: 761px) {
  .sf-flow-connector {
    flex-basis: clamp(18px, 3vw, 40px);
  }
}

@media (max-width: 760px) {
  .sf-still-band,
  .sf-still-band img,
  #applications .sf-still-band,
  #applications .sf-still-band img {
    max-height: 220px;
    height: 220px;
  }

  .sf-flow {
    gap: 8px 0;
  }

  .sf-flow-station {
    flex: 1 1 42%;
  }

  .sf-flow-connector {
    display: none;
  }

  .sf-mark {
    width: 40px;
    height: 40px;
  }
}
