.about-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(134, 22, 38, 0.18), transparent 34%),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.035), transparent 30%),
    #000;
  color: var(--white);
}

.about-page .site-header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.about-main {
  position: relative;
  z-index: 10;
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 138px 0 84px;
}

.about-shell {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
    rgba(5, 5, 5, 0.78);
  box-shadow:
    0 44px 150px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.095);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-copy-section {
  padding: 64px 64px 46px;
}

.about-kicker,
.about-section-label {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 790px;
}

.about-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0;
}

.about-copy strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.about-page-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  width: 100%;
  margin-top: 34px;
  text-align: center;
}

.about-page-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 260ms ease,
    transform 260ms var(--ease-cinema),
    letter-spacing 320ms var(--ease-cinema);
}

.about-page-links a:hover {
  color: #fff;
  transform: translateY(-1px);
  letter-spacing: 0.3em;
}

.about-logo-section-page {
  padding: 34px 64px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-logo-belt-page {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.about-logo-belt-page:active {
  cursor: grabbing;
}

.about-logo-track-page {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 10px 2px 18px;
  animation: aboutPageLogoMarquee 36s linear infinite;
  will-change: transform;
}

.about-logo-belt-page:hover .about-logo-track-page {
  animation-play-state: paused;
}

.about-logo-card-page,
.about-stat-card-page {
  flex: 0 0 auto;
  height: 76px;
  display: grid;
  place-items: center;
}

.about-logo-card-page {
  min-width: 126px;
  padding: 0 6px;
}

.about-logo-card-page img {
  display: block;
  max-width: 126px;
  max-height: 54px;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34))
    saturate(1.03);
  opacity: 0.96;
}

.about-stat-card-page {
  min-width: 170px;
  height: 76px;
  padding: 0 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.095),
    0 18px 60px rgba(0, 0, 0, 0.28);
}

.about-stat-card-page span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes aboutPageLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .about-main {
    width: calc(100vw - 28px);
    padding: 108px 0 54px;
  }

  .about-shell {
    border-radius: 18px;
  }

  .about-copy-section {
    padding: 48px 28px 38px;
  }

  .about-logo-section-page {
    padding: 30px 28px 34px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-page-links {
    gap: 20px;
    margin-top: 30px;
  }

  .about-logo-track-page {
    gap: 28px;
  }

  .about-logo-card-page {
    min-width: 106px;
  }

  .about-logo-card-page img {
    max-width: 106px;
    max-height: 46px;
  }

  .about-stat-card-page {
    min-width: 148px;
    height: 68px;
  }
}