/* About Page Redesign - Premium Dark Lab Theme */

:root {
  --bg-deep-black: #050505;
  --bg-card: #0a0a0a;
  --accent-gold: #c5a059;
  --accent-red: #ff4d4d;
  --accent-green: #00ff9d;
  --text-muted: #888888;
  --border-color: rgba(255, 255, 255, 0.05);
  --font-mono: "Courier New", Courier, monospace;
}

.about-redesign-body {
  background-color: var(--bg-deep-black);
  color: #ffffff;
  font-family: "Vend Sans", sans-serif;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
}

.about-redesign-body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(197, 160, 89, 0.03),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.about-redesign-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Stats Row --- */
.stats-header-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.stat-item-box {
  text-align: left;
}

.stat-label-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.stat-value-large {
  font-size: 2.5rem;
  font-weight: 800;
}

.stat-value-large.red {
  color: var(--accent-red);
}

/* --- Bento Grid Section --- */
.about-bento-section {
  padding: 80px 0;
}

.bento-layout-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 4px;
  /* Industrial look */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.bento-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.05);
}

.card-system-header {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.bento-card h2,
.bento-card h3 {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.bento-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 30px;
}

.btn-initiate {
  background: var(--accent-gold);
  color: #000;
  border: none;
  padding: 12px 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-initiate:hover {
  transform: scale(1.05);
  -webkit-tap-highlight-color: transparent;
}

.right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-stack .bento-card {
  padding: 30px;
}

.right-stack h3 {
  font-size: 1.4rem;
}

/* --- Duty Protocol Section --- */
.protocol-section {
  padding: 100px 0;
}

.protocol-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.protocol-title-group h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 800;
  line-height: 1.1;
}

.protocol-side-text {
  max-width: 400px;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.protocol-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 25px;
  position: relative;
  border-radius: 4px;
}

.protocol-card::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 2px;
}

.protocol-card i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 25px;
  display: block;
}

.protocol-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.protocol-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .stats-header-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .protocol-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .protocol-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .protocol-side-text {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .stats-header-row {
    grid-template-columns: 1fr;
  }

  .protocol-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 5px var(--accent-gold);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-gold);
  }

  100% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 5px var(--accent-gold);
  }
}
