@charset "UTF-8";
/* What is Krisp — Figma 13122:541 (About) / 13279:1288 (Careers).
   Video panel is 824x464 beside the proof card and 1280x720 on its own;
   both are 16:9, so the panel is driven by aspect-ratio rather than a
   fixed height. */
.krisp_video {
  background: #ffffff;
  padding: 80px 0;
}
.krisp_video * {
  color: inherit;
}
.krisp_video__row {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-top: 48px;
}
.krisp_video {
  /* ---- Video panel ---- */
}
.krisp_video__panel {
  position: relative;
  display: block;
  flex: 0 0 824px;
  max-width: 824px;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
.krisp_video__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.krisp_video__scrim {
  position: absolute;
  inset: 0;
  display: block;
  background: #14141a;
  opacity: 0.18;
  transition: opacity 0.2s ease;
}
.krisp_video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 72px;
  height: 72px;
  transition: transform 0.2s ease;
}
.krisp_video__play img {
  display: block;
  width: 100%;
  height: 100%;
}
.krisp_video__panel:hover .krisp_video__scrim {
  opacity: 0.28;
}
.krisp_video__panel:hover .krisp_video__play {
  transform: translate(-50%, -50%) scale(1.06);
}
.krisp_video {
  /* Careers runs the panel across the full 1280 track with no proof card. */
}
.krisp_video--wide .krisp_video__panel {
  flex: 1 1 auto;
  max-width: none;
}
.krisp_video {
  /* ---- Proof card ---- */
}
.krisp_video__proof {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #a1a1aa;
  border-radius: 16px;
}
.krisp_video__scale {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.krisp_video__scale_value {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #4a3bbe;
}
.krisp_video__scale_desc, .krisp_video__team_desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.krisp_video__divider {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: #e7e7ea;
}
.krisp_video__team {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.krisp_video__team_title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a22;
}
.krisp_video {
  /* ---- Responsive ---- */
}
@media screen and (max-width: 1280px) {
  .krisp_video__panel {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .krisp_video__proof {
    flex: 0 0 340px;
    max-width: 340px;
  }
}
@media screen and (max-width: 900px) {
  .krisp_video {
    padding: 56px 0;
  }
  .krisp_video__row {
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }
  .krisp_video__panel {
    flex: 1 1 auto;
    width: 100%;
  }
  .krisp_video__proof {
    flex: 1 1 auto;
    max-width: 100%;
    gap: 24px;
  }
  .krisp_video__scale_value {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .krisp_video__panel {
    border-radius: 16px;
  }
  .krisp_video__play {
    width: 56px;
    height: 56px;
  }
  .krisp_video__proof {
    padding: 24px;
  }
}
