/*
 * Two approved homepage accents layered over the existing design.
 * No other homepage layout, typography, cards or motion are changed here.
 */

.home-showcase-signal {
  position: absolute;
  top: 50%;
  right: clamp(24px, 3vw, 52px);
  z-index: 4;
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translate(44%, -50%) rotate(90deg);
  transform-origin: center;
  pointer-events: none;
}

.home-showcase-signal span + span::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 16px 3px 0;
  content: "";
  background: var(--primary);
}

@media (min-width: 901px) {
  .home-showcase-hero {
    height: calc(100vh - 79px);
    height: calc(100svh - 79px);
    min-height: 620px;
  }
}

.trust-bar {
  padding: 25px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  background: #09090a !important;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 3fr);
  gap: 32px;
  align-items: center;
}

.trust-bar-label {
  margin: 0 !important;
  text-align: left !important;
}

.trust-bar-logos {
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.trust-bar-logo-box {
  width: min(78px, 8vw) !important;
  height: 27px !important;
}

@media (max-width: 900px) {
  .home-showcase-signal {
    display: none;
  }

  .home-showcase-hero {
    height: calc(100svh - 122px);
    min-height: 560px;
  }

  .trust-bar {
    padding: 18px 0 !important;
  }

  .trust-bar .container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-bar-label {
    text-align: center !important;
    margin-bottom: 0 !important;
    font-size: 0.62rem !important;
  }

  .trust-bar-logos {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
    gap: 12px 10px !important;
  }

  .trust-bar-logo-box {
    width: 62px !important;
    height: 22px !important;
  }
}
