/* Proposal Switcher */
.proposal-switcher {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0 16px;
  background: rgba(8,6,10,.92);
  backdrop-filter: blur(16px);
  border-top: 1.5px dashed rgba(196,149,106,.12);
  font-family: "IBM Plex Mono", "SF Mono", monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 44px;
}
.ps-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  color: rgba(237,233,216,.3);
  border-bottom: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.ps-link:hover {
  color: rgba(237,233,216,.7);
  background: rgba(237,233,216,.03);
}
.ps-link.active {
  color: var(--bronze, #C4956A);
  border-bottom-color: currentColor;
  pointer-events: none;
}
@media(max-width:640px){
  .ps-inner { gap: 4px; }
  .ps-link { padding: 0 10px; font-size: 8px; letter-spacing: .1em; }
}
