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

.command-visual {
  padding: 30px;
  min-height: 540px;
}
.dashboard {
  border-radius: 28px;
  min-height: 392px;
  background: rgba(7, 12, 28, .70);
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
}
.window-top {
  height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.dots {
  display: flex;
  gap: 8px;
}
.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}
.dots span:first-child { background: var(--orange); }
.dots span:nth-child(2) { background: var(--blue); }
.dots span:nth-child(3) { background: var(--purple); }

.dash-body {
  padding: 18px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 14px;
}
.sidebar {
  display: grid;
  gap: 10px;
}
.side-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .075);
}
.side-card strong {
  display: block;
  font-size: 13px;
}
.side-card span {
  display: block;
  color: var(--muted2);
  font-size: 11px;
  margin-top: 4px;
}
.graph-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .075);
}
.graph-bars {
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.bar {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 154, 82, .95), rgba(255, 102, 0, .45));
  box-shadow: 0 0 24px rgba(255, 102, 0, .18);
}
.bar:nth-child(1) { height: 38%; }
.bar:nth-child(2) { height: 62%; }
.bar:nth-child(3) { height: 50%; }
.bar:nth-child(4) { height: 84%; }
.bar:nth-child(5) { height: 72%; }
.bar:nth-child(6) { height: 92%; }

/* Responsive Overrides */
@media(max-width: 880px) {
  .dash-body {
    grid-template-columns: 1fr;
  }
}
