.about-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 3rem;
}

.about-shell {
  position: relative;
  width: min(100%, 780px);
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.about-aura {
  position: absolute;
  z-index: 0;
  width: 18rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.about-aura-left {
  top: 1rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(122, 243, 255, 0.22), rgba(122, 243, 255, 0));
  animation: about-aura-float 8s ease-in-out infinite;
}

.about-aura-right {
  right: -4rem;
  bottom: 2rem;
  background: radial-gradient(circle, rgba(246, 168, 255, 0.2), rgba(246, 168, 255, 0));
  animation: about-aura-float 8s ease-in-out -4s infinite;
}

.about-logo,
.about-copy,
.about-actions {
  position: relative;
  z-index: 1;
}

.about-logo {
  width: min(100%, 26rem);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(4, 20, 66, 0.28));
  animation: about-logo-float 5.5s ease-in-out infinite;
}

.about-copy {
  width: min(100%, 42rem);
  display: grid;
  gap: 0.8rem;
  color: rgba(240, 249, 255, 0.94);
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.08rem, 2.3vw, 1.32rem);
  line-height: 1.8;
  text-shadow: 0 10px 28px rgba(2, 12, 44, 0.22);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.about-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  color: #08215b;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(4, 20, 66, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -22%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-24deg);
  animation: about-button-glint 3.1s ease-in-out infinite;
}

.about-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 50px rgba(4, 20, 66, 0.24);
}

.about-button-wb {
  background: linear-gradient(135deg, #7af3ff, #2bb6ff);
}

.about-button-ozon {
  background: linear-gradient(135deg, #f7b2ff, #7af3ff);
}

@keyframes about-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes about-aura-float {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

@keyframes about-button-glint {
  0% {
    transform: translateX(-180%) skewX(-24deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  42%,
  100% {
    transform: translateX(420%) skewX(-24deg);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .about-page {
    padding-inline: 0.9rem;
  }

  .about-logo {
    width: min(100%, 18rem);
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-actions {
    width: 100%;
  }

  .about-button {
    width: min(100%, 22rem);
  }

  .about-aura {
    width: 12rem;
  }
}
