/* About section — video background + text overlay */

.about {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
  pointer-events: none;
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-8) var(--space-5);
  text-align: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-5);
  background: var(--gradient-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__story {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .about__video { display: none; }
}
