.about-page__intro {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) 1.25rem;
  background:
    radial-gradient(circle at 85% 25%, rgb(247 185 47 / 28%), transparent 18rem),
    linear-gradient(135deg, #fffdfb, #f8edf6);
}

.about-page__intro .container {
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.about-page__eyebrow {
  color: #8c2b7b;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-page__intro .about-page__eyebrow {
  animation: about-intro-enter 500ms ease-out both;
}

.about-page__intro h1 {
  max-width: 13ch;
  margin: 1rem 0;
  color: #32153b;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
  animation: about-intro-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.about-page__intro p {
  max-width: 40rem;
  margin: 0;
  color: #67586d;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  animation: about-intro-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

@keyframes about-intro-enter {
  from {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-timeline {
  padding: clamp(4.5rem, 9vw, 8rem) 1.25rem;
  background: #fff;
}

.about-timeline .container {
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.about-timeline__heading {
  max-width: 42rem;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.about-timeline__heading h2 {
  margin: 0.9rem 0 0;
  color: #32153b;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
  text-wrap: balance;
}

.about-timeline__list {
  position: relative;
  display: grid;
  gap: clamp(4rem, 9vw, 7rem);
  max-width: 66rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.about-timeline__list::before {
  position: absolute;
  top: 3.5rem;
  bottom: 3.5rem;
  left: 50%;
  width: 2px;
  background: linear-gradient(#f7b92f, #a72d8f, #742566);
  content: "";
  transform: translateX(-50%);
}

.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7rem minmax(0, 1fr);
  align-items: center;
  opacity: 0;
  transform: translateY(2rem);
}

.about-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease-out, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-timeline__card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid rgb(116 37 102 / 12%);
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: 0 1.25rem 3.5rem rgb(57 23 67 / 9%);
}

.about-timeline__card::after {
  position: absolute;
  top: 50%;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgb(167 45 143 / 30%), #a72d8f);
  content: "";
  transform: translateY(-50%);
}

.about-timeline__item:nth-child(odd) .about-timeline__card {
  grid-column: 1;
}

.about-timeline__item:nth-child(odd) .about-timeline__card::after {
  right: -3.5rem;
}

.about-timeline__item:nth-child(even) .about-timeline__card {
  grid-column: 3;
}

.about-timeline__item:nth-child(even) .about-timeline__card::after {
  left: -3.5rem;
  background: linear-gradient(90deg, #a72d8f, rgb(167 45 143 / 30%));
}

.about-timeline__marker {
  z-index: 1;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  justify-self: center;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #a72d8f, #6b2160);
  box-shadow: 0 0.7rem 1.6rem rgb(116 37 102 / 24%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
}

.about-timeline__item:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: calc(50% + 3.8rem);
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #f7b92f;
  box-shadow: 0 0.3rem 0.7rem rgb(116 37 102 / 22%);
  content: "";
  transform: translateX(-50%);
}

.about-timeline__brand {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 3.5rem;
  margin-bottom: 1.35rem;
}

.about-timeline__brand img {
  display: block;
  width: auto;
  max-width: 10rem;
  max-height: 3.4rem;
  object-fit: contain;
}

.about-timeline__brand--vida img {
  max-width: 8rem;
}

.about-timeline__card h3 {
  margin: 0 0 0.9rem;
  color: #57205d;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.about-timeline__card p {
  margin: 0;
  color: #66586c;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-timeline__card p + p {
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .about-timeline__list::before {
    top: 2.8rem;
    bottom: 2.8rem;
    left: 1.95rem;
  }

  .about-timeline__item {
    grid-template-columns: 3.9rem minmax(0, 1fr);
  }

  .about-timeline__marker {
    grid-column: 1;
    width: 3.9rem;
    height: 3.9rem;
    border-width: 5px;
    font-size: 0.68rem;
  }

  .about-timeline__item:nth-child(n) .about-timeline__card {
    grid-column: 2;
    grid-row: 1;
  }

  .about-timeline__item:nth-child(n) .about-timeline__card::after {
    display: none;
  }

  .about-timeline__item:not(:last-child)::after {
    top: calc(50% + 3.2rem);
    left: 1.95rem;
  }
}

@media (max-width: 460px) {
  .about-page__intro,
  .about-timeline {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .about-timeline__item {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }

  .about-timeline__list::before {
    left: 1.6rem;
  }

  .about-timeline__marker {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 0.6rem;
  }

  .about-timeline__item:not(:last-child)::after {
    left: 1.6rem;
  }
}

.software-cta {
  padding: 0 1.25rem clamp(4.5rem, 9vw, 7rem);
  background: #fff;
}

.software-cta .container {
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.software-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.75rem, 5vw, 3rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 90% 5%, rgb(247 185 47 / 24%), transparent 13rem),
    linear-gradient(135deg, #742566, #9d2f8b);
  box-shadow: 0 1.5rem 3.5rem rgb(80 22 73 / 22%);
  color: #fff;
}

.software-cta__content span {
  color: #ffe7a6;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.software-cta__content h2 {
  max-width: 35rem;
  margin: 0.7rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.software-cta__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  background: #f7b92f;
  box-shadow: 0 0.8rem 1.5rem rgb(17 5 25 / 18%);
  color: #44203d;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.software-cta__button svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 180ms ease;
}

.software-cta__button:hover {
  background: #fff;
  box-shadow: 0 1rem 1.8rem rgb(17 5 25 / 28%);
  transform: translateY(-0.2rem);
}

.software-cta__button:hover svg {
  transform: translateX(0.2rem);
}

.software-cta__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .software-cta__content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .software-cta {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .software-cta__button {
    width: 100%;
  }
}
