#who-we-are {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.wwa-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 16px;
}

.wwa-subheading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 32px;
}

.wwa-text p {
  font-size: 17px;
  color: var(--text-subtle);
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wwa-text p.visible {
  opacity: 1;
  transform: translateX(0);
}

.wwa-text p:nth-child(1) { transition-delay: 0s; }
.wwa-text p:nth-child(2) { transition-delay: 0.2s; }
.wwa-text p:nth-child(3) { transition-delay: 0.4s; }

.wwa-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wwa-visual svg {
  width: 100%;
  max-width: 400px;
}

@keyframes nodePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes lineFade {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.7; }
}

.node-circle {
  fill: var(--accent-blue);
  filter: drop-shadow(0 0 8px #38BDF8);
  animation: nodePulse 2.5s ease infinite;
}

.node-circle:nth-child(1) { animation-delay: 0s; }
.node-circle:nth-child(2) { animation-delay: 0.4s; }
.node-circle:nth-child(3) { animation-delay: 0.8s; }
.node-circle:nth-child(4) { animation-delay: 1.2s; }
.node-circle:nth-child(5) { animation-delay: 1.6s; }
.node-circle:nth-child(6) { animation-delay: 2.0s; }

.node-line {
  stroke: var(--accent-blue);
  stroke-width: 1;
  animation: lineFade 2.5s ease infinite;
}

.node-line:nth-child(1) { animation-delay: 0s; }
.node-line:nth-child(2) { animation-delay: 0.3s; }
.node-line:nth-child(3) { animation-delay: 0.6s; }
.node-line:nth-child(4) { animation-delay: 0.9s; }
.node-line:nth-child(5) { animation-delay: 1.2s; }

@media (max-width: 768px) {
  #who-we-are {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
}
