/* ========== ABOUT ========== */
.about {
  background: var(--bg-alt);
  padding: 8rem 2rem;
  position: relative;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -5%;
  z-index: 5;
}

.about__bg-text {
  position: absolute;
  top: 10%;
  left: 5%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14vw;
  color: white;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  line-height: 0.8;
  user-select: none;
}

.about__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 42% 58%;
    align-items: center;
  }
}

/* Stats */
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

/* Text */
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__overline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.about__bio {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}

.about__secondary {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.about__action {
  margin-top: 0.5rem;
}
