.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: 11rem;
  padding-bottom: 7rem;
  text-align: center;
}

.about-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  z-index: 1;
}

.about-hero__orb--1 {
  top: -8rem;
  left: -6rem;
  width: 32rem;
  height: 32rem;
  background: rgba(26, 86, 255, 0.25);
}

.about-hero__orb--2 {
  bottom: -4rem;
  right: -4rem;
  width: 28rem;
  height: 28rem;
  background: rgba(41, 182, 246, 0.15);
}

.about-hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 1.5rem + 3.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  max-width: 45rem;
}

.about-hero__lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}


.about-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.about-story__title {
  color: var(--navy);
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-story__paragraph {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-story__paragraph:last-of-type {
  margin-bottom: 0;
}


.about-story__box {
  position: relative;
  border-radius: 1.5rem;
  background: var(--navy);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(10, 25, 48, 0.15);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-story__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-sky), var(--blue-electric));
}

.about-story__box-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.about-story__metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-story__metrics li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.about-story__metrics li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.metric-value {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--blue-sky);
}


.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2.25rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 25, 48, 0.08);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(26, 86, 255, 0.08);
  color: var(--blue-electric);
  margin-bottom: 1.5rem;
}

.value-card__title {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.value-card__copy {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
}


.about-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
  padding-block: 7rem;
}

.about-cta__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-cta__title {
  color: #fff;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.about-cta__copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2.25rem;
  max-width: 34rem;
  line-height: 1.6;
}


@media (max-width: 900px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
