/* ── Desktop default (1920x1080) ── */
.who-we-are {
  background: var(--surface-low);
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

.who-we-are > *:not(.who-we-are__bg):not(.who-we-are__overlay) {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.who-we-are__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  pointer-events: none;
}

.who-we-are__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.who-we-are .section__title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.who-we-are__bar {
  height: 3px;
  width: 5rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-container));
  margin: 0.75rem auto 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 2.2s;
}

.who-we-are__text {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 2.6s;
}

.who-we-are__text em {
  font-style: normal;
  color: var(--tertiary);
  font-weight: 600;
  text-decoration: none;
}

.who-we-are__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 3s;
}

.who-we-are__btn {
  display: block;
  width: 350px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: background .2s, transform .25s ease, box-shadow .25s ease;
}

.who-we-are__btn--primary {
  color: #fff;
  background: rgba(77, 142, 255, .25);
  border: 1px solid rgba(77, 142, 255, .4);
  backdrop-filter: blur(10px);
}

.who-we-are__btn--primary:hover {
  background: rgba(77, 142, 255, .4);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(77, 142, 255, .3);
}

.who-we-are__btn--ghost {
  color: #fff;
  background: rgba(60, 215, 255, .15);
  border: 1px solid rgba(60, 215, 255, .3);
  backdrop-filter: blur(10px);
}

.who-we-are__btn--ghost:hover {
  background: rgba(60, 215, 255, .3);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(60, 215, 255, .25);
}

.who-we-are__btn--secondary {
  color: #fff;
  background: rgba(173, 198, 255, .15);
  border: 1px solid rgba(173, 198, 255, .3);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.who-we-are__btn--secondary:hover {
  background: rgba(173, 198, 255, .3);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(173, 198, 255, .25);
}

/* ── Tablet ≤ 768px ── */
@media (max-width: 768px) {
  .who-we-are__text { font-size: 1rem; }
}

/* ── Mobile ≤ 480px ── */
@media (max-width: 480px) {
  .who-we-are__text { font-size: 0.875rem; text-align: center; }
  .who-we-are__buttons { max-width: 100%; }
  .who-we-are__btn { font-size: 0.8125rem; }
}

.who-we-are__title {
  opacity: 0;
  animation: pixelIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

.who-we-are .section__label {
  opacity: 0;
  animation: dropIn 0.8s ease forwards 0.3s;
}

@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pixelIn {
  0% { opacity: 0; filter: blur(8px) brightness(2); }
  30% { opacity: 0.5; filter: blur(4px) brightness(1.5); }
  60% { opacity: 0.8; filter: blur(1px) brightness(1.2); }
  100% { opacity: 1; filter: blur(0px) brightness(1); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
