/* Readable stepped selection pipeline — overrides the earlier clipped funnel. */
.selection-funnel {
  padding: .5rem 1rem;
}

.funnel-stage {
  clip-path: none;
  min-height: 94px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 1rem;
  border: 1px solid #3a3832;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 18px #00000017;
}

.funnel-stage .stage-count {
  min-width: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #09090a;
  border: 1px solid #c9a24b99;
  color: var(--gold);
  font: 700 1.35rem var(--serif);
  text-align: center;
  white-space: nowrap;
}

.funnel-stage strong {
  font-size: .9rem;
  line-height: 1.25;
}

.funnel-stage small {
  font-size: .62rem;
  line-height: 1.45;
}

.funnel-stage > i {
  position: static;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #c9a24b66;
  border-radius: 8px;
  font-size: 1.25rem;
}

.stage-one { width: 100%; }
.stage-two { width: calc(100% - 34px); }
.stage-three { width: calc(100% - 68px); }
.stage-four { width: calc(100% - 102px); }

.stage-one,
.stage-two,
.stage-three {
  color: #fff;
}

.stage-four {
  border-color: #ad8737;
  border-left-color: #111;
}

.stage-four .stage-count {
  background: #111;
  color: var(--gold-light);
  border-color: #111;
}

.stage-four > i {
  color: #111;
  border-color: #1118;
}

.funnel-connector {
  position: relative;
  height: 18px;
}

.funnel-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.selection-result {
  margin-top: 1.1rem;
}

@media (max-width: 575.98px) {
  .selection-funnel { padding: .35rem 0; }
  .funnel-stage {
    min-height: 102px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .8rem;
    padding: .85rem;
  }
  .funnel-stage .stage-count {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .funnel-stage > i { display: none; }
  .funnel-stage strong { font-size: .76rem; }
  .funnel-stage small { font-size: .55rem; }
  .stage-two { width: calc(100% - 12px); }
  .stage-three { width: calc(100% - 24px); }
  .stage-four { width: calc(100% - 36px); }
}
