/* NEO Market Intelligence — Stats Strip */

.stats-strip {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: stretch;
  background: #0E0E1A;
  border-bottom: 0.5px solid rgba(201,168,76,0.12);
  overflow: hidden;
}

.ss-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: background 0.25s;
  cursor: default;
}

.ss-item:hover {
  background: rgba(201,168,76,0.04);
}

.ss-divider {
  width: 0.5px;
  background: rgba(201,168,76,0.12);
  align-self: stretch;
  flex-shrink: 0;
}

/* Icon */
.ss-icon {
  width: 34px;
  height: 34px;
  color: rgba(201,168,76,0.35);
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.ss-icon svg {
  width: 100%;
  height: 100%;
}

/* Value */
.ss-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 300;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

/* Label */
.ss-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A89F8E;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-strip {
    flex-wrap: wrap;
  }
  .ss-item {
    flex: 1 1 30%;
    min-width: 120px;
    padding: 1.4rem 1rem;
  }
  .ss-divider {
    display: none;
  }
  .stats-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.1) 1px, transparent 1px);
    background-size: 33.33% 50%;
  }
}

@media (max-width: 480px) {
  .ss-item {
    flex: 1 1 45%;
  }
  .stats-strip::after {
    background-size: 50% 50%;
  }
}
