.about {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7rem;
  width: 100%;
  padding: 8.75rem 3.5rem;
  overflow: hidden;
  background: #000;
  color: #e4e6f3;
  font-family: "Satoshi", sans-serif;
}

.about__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(228, 230, 243, 0.8);
}

.about__heading,
.about__location {
  margin: 0;
  color: #e4e6f3;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0.9;
}

.about__heading {
  font-size: 1.75rem;
}

.about__location {
  font-size: 1.625rem;
}

.about__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(3rem, 7.65vw, 9.1875rem);
  width: 100%;
}

.about__copy {
  display: flex;
  flex: 0 1 35.5625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.5rem;
  min-width: 0;
}

.about__intro-text {
  width: 100%;
  margin: 0;
  color: #e4e6f3;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.about__cta {
  margin: 0;
  font-size: 2rem;
  line-height: 1.5;
}

.about__stats {
  display: grid;
  flex: 0 1 48.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  width: 48.25rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
  height: 11.5625rem;
  padding-left: 2.5rem;
  border-left: 2px solid rgba(228, 230, 243, 0.2);
  backdrop-filter: blur(3.3418125rem);
}

.about__stat-value {
  color: #1e83f4;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.about__stat-label {
  color: #9ea2b4;
  font-size: var(--font-size-ui);
  font-weight: 500;
  line-height: normal;
  white-space: normal;
}

@media (max-width: 1439.98px) {
  .about {
    gap: 3.5rem;
    padding: 3.5rem 2.5rem;
  }

  .about__heading,
  .about__location {
    font-size: var(--font-size-medium);
  }

  .about__content {
    flex-direction: column;
    gap: 5rem;
  }

  .about__copy {
    flex-basis: auto;
    width: min(100%, 45rem);
  }

  .about__intro-text {
    font-size: clamp(1.75rem, 3vw, 2rem);
  }

  .about__stats {
    flex-basis: auto;
    width: 100%;
  }

  .about__stat-value {
    font-size: clamp(5rem, 9vw, 6.5rem);
  }
}

@media (max-width: 809.98px) {
  .about {
    padding: 3.5rem 1.25rem;
  }

  .about__header {
    align-items: flex-start;
  }

  .about__heading {
    font-size: var(--font-size-ui);
  }

  .about__location {
    display: none;
  }

  .about__content {
    gap: 4rem;
  }

  .about__copy {
    gap: 2.5rem;
  }

  .about__intro-text {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .about__cta {
    padding-bottom: 0.5rem;
    background-size: 0 0.25rem, 100% 0.25rem;
    font-size: 1.5rem;
  }

  .about__cta:hover,
  .about__cta:focus-visible {
    background-size: 100% 0.25rem, 100% 0.25rem;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__stat {
    gap: 1rem;
    height: auto;
    min-height: 9rem;
    padding-left: 1.5rem;
  }

  .about__stat-value {
    font-size: clamp(4.5rem, 24vw, 6rem);
  }

  .about__stat-label {
    font-size: var(--font-size-body);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__cta {
    transition: none;
  }
}
