.about {
  padding: 120px 0;
  position: relative;
}

.about-head {
  margin-bottom: 48px;
}

.about-title {
  line-height: 1.3;
}

.about-head-meta {
  min-width: 160px;
}

.about-head-meta-v {
  color: var(--cyan);
}

.ghost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ghost-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #06060f;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  transition:
    transform 0.3s ease,
    border-color 0.2s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ghost-card:hover {
  transform: translateY(-4px);
  border-color: var(--c, var(--line-strong));
}

.ghost-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% -10%,
    var(--c, transparent) 0%,
    transparent 60%
  );
  opacity: 0.12;
  pointer-events: none;
}

.ghost-avatar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 56px;
}

.ghost-sprite {
  width: 56px;
  height: 56px;
  display: block;
  animation: ghost-float 1.8s ease-in-out infinite;
  transform-origin: center bottom;
}

.ghost-name {
  font-family: var(--font-arcade);
  font-size: 12px;
  color: var(--c, var(--ink));
  margin: 0;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.4;
}

.ghost-info {
  flex: 1;
  min-width: 0;
}

.ghost-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.ghost-stat {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: start;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  gap: 8px;
}

.ghost-stat span:first-child {
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ghost-stat span:last-child {
  color: var(--ink);
  text-align: right;
  line-height: 1.4;
}

.ghost-card:nth-child(2) .ghost-sprite {
  animation-delay: 0.2s;
}

.ghost-card:nth-child(3) .ghost-sprite {
  animation-delay: 0.4s;
}

.ghost-card:nth-child(4) .ghost-sprite {
  animation-delay: 0.6s;
}

@keyframes ghost-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
