.about-panorama {
  position: relative;
  width: 100%;
  height: clamp(420px, 48vw, 660px);
  overflow: hidden;
  background: var(--night);
}
.about-panorama img {
  width: 100%;
  height: 100%;
  object-position: center;
}
.about-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 46%);
  pointer-events: none;
}
.about-panorama-card {
  position: absolute;
  left: max(40px, calc((100% - 1240px) / 2));
  bottom: 42px;
  z-index: 1;
  width: min(430px, calc(100% - 80px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(13, 15, 17, 0.68);
  color: white;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.about-panorama-card span {
  display: block;
  margin-bottom: 12px;
  color: #80c8ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-panorama-card strong {
  display: block;
  font-family: Manrope, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.16;
}
.about-panorama-card p {
  margin-top: 14px;
  color: #d8e0e5;
  font-size: 15px;
  line-height: 1.75;
}
.purpose-section {
  background: var(--night);
  color: white;
}
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.purpose-grid article + article {
  border-left: 1px solid #45494b;
  padding-left: 70px;
}
.purpose-grid h2 {
  margin-bottom: 26px;
}
.purpose-grid p:last-child {
  color: #c0c9cf;
  font-size: 18px;
  line-height: 1.9;
}
.purpose-icon {
  display: block;
  color: #49adff;
  font-size: 34px;
  margin-bottom: 28px;
}
.purpose-grid .eyebrow {
  color: #49adff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.values-grid article {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.values-grid i {
  font-size: 24px;
  color: var(--blue);
}
.values-grid h3 {
  margin-block: 25px 18px;
}
.values-grid p {
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 760px) {
  .about-panorama {
    height: auto;
    overflow: visible;
  }
  .about-panorama img {
    height: 320px;
    object-position: center;
  }
  .about-panorama::after {
    display: none;
  }
  .about-panorama-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -48px 20px 0;
    padding: 22px;
  }
  .about-panorama-card strong {
    font-size: 23px;
  }
  .purpose-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .purpose-grid article + article {
    border-left: 0;
    border-top: 1px solid #45494b;
    padding-left: 0;
    padding-top: 40px;
  }
  .purpose-grid p:last-child {
    font-size: 17px;
  }
}
