/* themes/xgate/assets/css/prod-salesgate.css */
/* Scoped Tier 3 CSS for SalesGate product page */

.sales-visual {
  padding: 30px;
  min-height: 540px;
}
.pipeline-scene {
  border-radius: 28px;
  min-height: 392px;
  background:
    linear-gradient(180deg, rgba(7, 12, 28, .38), rgba(7, 12, 28, .88)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  padding: 18px;
}
.pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  height: 100%;
}
.pipe-col {
  border-radius: 20px;
  background: rgba(5, 9, 22, .76);
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 12px;
}
.pipe-col strong {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
  color: #fff;
}
.deal {
  padding: 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 10px;
  color: #fff;
}
.deal span {
  display: block;
  color: var(--muted2);
  font-size: 10px;
  margin-top: 4px;
}
.deal.hot {
  background: linear-gradient(180deg, rgba(255, 154, 82, .22), rgba(255, 102, 0, .10));
  border-color: rgba(255, 102, 0, .22);
}

@media(max-width: 1120px) {
  .pipeline-board {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 880px) {
  .pipeline-board {
    grid-template-columns: 1fr;
  }
}
