/* style/infra-style.css */

/* Background Blueprint Grid */
.bg-blueprint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

.infra-header {
  padding: 180px 8% 40px;
  text-align: center;
}

.status-tag {
  background: rgba(0, 255, 170, 0.1);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  border-left: 4px solid var(--accent);
  display: inline-block;
  margin-bottom: 25px;
}

.infra-header h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.infra-header p {
  color: var(--text-dim);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Infrastructure List */
.infra-content {
  padding: 40px 8% 100px;
}

.infra-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.infra-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}

.infra-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  background: rgba(0, 212, 255, 0.03);
}

.infra-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 212, 255, 0.2);
  margin-right: 40px;
  line-height: 1;
}

.infra-text h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #fff;
}

.infra-text p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .infra-item {
    flex-direction: column;
  }
  .infra-number {
    margin-bottom: 20px;
  }
}
