/* =========================================================
   WLUSV SIMPLE HERO PATHWAY v3.1
   ========================================================= */

.simple-pathway-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.simple-pathway-panel {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 30px;
  border: 1px solid rgba(168, 206, 232, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(10, 42, 62, 0.77), rgba(3, 17, 28, 0.75)),
    rgba(3, 17, 28, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.simple-pathway-label {
  margin: 0 0 22px;
  color: #a8cee8;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-align: center;
}

.simple-pathway-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.simple-pathway-input,
.simple-pathway-core,
.simple-pathway-output {
  border: 1px solid rgba(168, 206, 232, 0.2);
  background: rgba(168, 206, 232, 0.05);
}

.simple-pathway-input {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 13px 15px;
  border-radius: 13px;
}

.simple-pathway-input img,
.simple-pathway-core-icon img,
.simple-pathway-output img {
  display: block;
  flex: 0 0 auto;
}

.simple-pathway-input strong {
  color: #edf7fc;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.simple-pathway-merge {
  position: relative;
  height: 46px;
}

.simple-pathway-merge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 22px;
  border-left: 1px solid rgba(168, 206, 232, 0.4);
  border-right: 1px solid rgba(168, 206, 232, 0.4);
  border-bottom: 1px solid rgba(168, 206, 232, 0.4);
  border-radius: 0 0 12px 12px;
}

.simple-pathway-merge::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  color: #d8efff;
  font-size: 17px;
  line-height: 1;
}

.simple-pathway-core {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-color: rgba(168, 206, 232, 0.42);
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(119, 167, 204, 0.13), rgba(119, 167, 204, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.simple-pathway-core-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 206, 232, 0.33);
  border-radius: 13px;
  background: rgba(3, 17, 28, 0.36);
}

.simple-pathway-core small,
.simple-pathway-core strong {
  display: block;
}

.simple-pathway-core small {
  color: #8dd6ad;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.simple-pathway-core strong {
  margin-top: 4px;
  color: #edf7fc;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.simple-pathway-core span {
  display: block;
  margin-top: 3px;
  color: #9bb0bf;
  font-size: 10px;
}

.simple-pathway-split {
  position: relative;
  height: 48px;
}

.simple-pathway-split::before {
  content: "";
  position: absolute;
  left: 16.666%;
  right: 16.666%;
  top: 23px;
  height: 1px;
  background: rgba(168, 206, 232, 0.38);
}

.simple-pathway-split::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 24px;
  background: rgba(168, 206, 232, 0.38);
}

.simple-pathway-outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.simple-pathway-output {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 96px;
  padding: 15px 10px 12px;
  border-radius: 13px;
  text-align: center;
}

.simple-pathway-output::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -25px;
  width: 1px;
  height: 24px;
  background: rgba(168, 206, 232, 0.38);
}

.simple-pathway-output img {
  width: 24px;
  height: 24px;
}

.simple-pathway-output strong {
  color: #edf7fc;
  font-size: 11px;
  line-height: 1.3;
}

.simple-pathway-note {
  margin: 18px 0 0;
  color: #8fa8b8;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1050px) {
  .simple-pathway-panel {
    max-width: 720px;
    margin: 8px auto 0;
  }
}

@media (max-width: 620px) {
  .simple-pathway-panel {
    padding: 22px;
  }

  .simple-pathway-inputs {
    grid-template-columns: 1fr;
  }

  .simple-pathway-merge::before {
    display: none;
  }

  .simple-pathway-outputs {
    grid-template-columns: 1fr;
  }

  .simple-pathway-split {
    height: 34px;
  }

  .simple-pathway-split::before {
    display: none;
  }

  .simple-pathway-output::before {
    top: -18px;
    height: 17px;
  }
}
