.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 219, 0.15);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.pill-tag .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00C9DB;
}
.pill-tag .pill-text {
  font-size: 12px;
  font-weight: 600;
  color: #00C9DB;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.grid-overlay {
  position: relative;
}
.grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    linear-gradient(#00C9DB 1px, transparent 1px),
    linear-gradient(90deg, #00C9DB 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
.grid-overlay > .row_col_wrap_12,
.grid-overlay > .col {
  position: relative;
  z-index: 2;
}

.stat-strip {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #1A2540;
}
.stat-strip .stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #D4845A;
}
.stat-strip .stat-label {
  font-size: 12px;
  color: #8B95A8;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
@media (max-width: 690px) {
  .stat-strip {
    gap: 24px;
    flex-wrap: wrap;
  }
  .stat-strip .stat-value {
    font-size: 20px;
  }
}

/* Stat card grid (left column) */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.stat-card {
  padding: 16px;
  border-radius: 10px;
  background: #141C2E;
  border: 1px solid #1A2540;
}
.stat-card .sc-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #D4845A;
}
.stat-card .sc-label {
  font-size: 13px;
  font-weight: 500;
  color: #E8ECF4;
  margin-top: 4px;
}
.stat-card .sc-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #8B95A8;
  margin-top: 2px;
}

/* Data table (right column) */
.spec-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1A2540;
  margin-bottom: 20px;
}
.spec-table .spec-header {
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(212,132,90,0.13), #141C2E);
  border-bottom: 1px solid #1A2540;
}
.spec-table .spec-header.teal {
  background: linear-gradient(135deg, rgba(0,201,219,0.15), #141C2E);
}
.spec-table .spec-header h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  color: #E8ECF4;
}
.spec-table .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #1A2540;
}
.spec-table .spec-row:last-child {
  border-bottom: none;
}
.spec-table .spec-row:nth-child(even) {
  background: #141C2E;
}
.spec-table .spec-label {
  font-size: 14px;
  color: #E8ECF4;
}
.spec-table .spec-value {
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  color: #D4845A;
  font-weight: 500;
}
.spec-table.three-col .spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.spec-table.three-col .spec-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 24px;
  border-bottom: 1px solid #1A2540;
  background: #141C2E;
}
.spec-table.three-col .spec-header-row span {
  font-size: 12px;
  color: #8B95A8;
  font-weight: 600;
}
.spec-table.three-col .spec-header-row span:nth-child(2),
.spec-table.three-col .spec-header-row span:nth-child(3) {
  text-align: center;
}
.spec-table.three-col .spec-value-sintered {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  color: #8B95A8;
  text-align: center;
}
.spec-table.three-col .spec-value-hiped {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  color: #D4845A;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 690px) {
  .stat-grid { grid-template-columns: 1fr; }
}