@charset "UTF-8";
/* "Accuracy that's benchmarked, not claimed" — Figma node 11532:6921.
   Dark section: benchmark stats card + healthcare deployment + accuracy funnel. */
.accuracy_bm {
  background: #14141a;
  padding: 120px 0;
}
.accuracy_bm .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.accuracy_bm {
  /* ---- Top card ---- */
}
.accuracy_bm__top {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px;
  border: 1px solid rgba(231, 231, 234, 0.2);
  border-radius: 16px;
}
.accuracy_bm__intro {
  display: flex;
  align-items: center;
  gap: 32px;
}
.accuracy_bm__head {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accuracy_bm__title {
  margin: 0;
  max-width: 600px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #f7f7f8;
}
.accuracy_bm__desc {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #f7f7f8;
}
.accuracy_bm__wave {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: auto;
}
.accuracy_bm__stats {
  display: flex;
  gap: 24px;
}
.accuracy_bm__stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 12px;
  background: #23232e;
}
.accuracy_bm__stat-value {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #f7f7f8;
}
.accuracy_bm__stat-label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #d0d0d8;
}
.accuracy_bm {
  /* ---- Bottom row ---- */
}
.accuracy_bm__bottom {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
.accuracy_bm__box {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border: 1px solid rgba(231, 231, 234, 0.2);
  border-radius: 16px;
}
.accuracy_bm__box--funnel {
  justify-content: space-between;
}
.accuracy_bm__box-title {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #f7f7f8;
}
.accuracy_bm__ecg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.accuracy_bm {
  /* Healthcare 2x2 stat grid with dividers */
}
.accuracy_bm__hstats {
  display: flex;
  flex-direction: column;
}
.accuracy_bm__hrow {
  display: flex;
  gap: 40px;
}
.accuracy_bm__hstat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}
.accuracy_bm__hstat-value {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #f7f7f8;
}
.accuracy_bm__hstat-label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #757585;
}
.accuracy_bm__hvr {
  flex: 0 0 1px;
  width: 1px;
  border-radius: 4px;
  background: rgba(231, 231, 234, 0.2);
}
.accuracy_bm__hhr {
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: rgba(231, 231, 234, 0.2);
}
.accuracy_bm {
  /* Accuracy funnel (pills widening downward, numbers on the left) */
}
.accuracy_bm__funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 16px 16px 36px;
}
.accuracy_bm__pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 100px;
  background: rgba(97, 78, 250, 0.3);
  border: 1px solid #a59afc;
}
.accuracy_bm__pill:nth-child(1) {
  width: 76%;
}
.accuracy_bm__pill:nth-child(2) {
  width: 84%;
}
.accuracy_bm__pill:nth-child(3) {
  width: 92%;
}
.accuracy_bm__pill:nth-child(4) {
  width: 100%;
}
.accuracy_bm__pill-num {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #f7f7f8;
}
.accuracy_bm__pill-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #d0d0d8;
  text-align: center;
}

/* Tablet / mobile — stack the columns */
@media screen and (max-width: 1100px) {
  .accuracy_bm {
    padding: 64px 0;
  }
  .accuracy_bm__intro {
    flex-direction: column;
    align-items: stretch;
  }
  .accuracy_bm__wave {
    flex: 0 0 auto;
    width: 100%;
  }
  .accuracy_bm__stats {
    flex-wrap: wrap;
  }
  .accuracy_bm__stat {
    flex: 1 1 calc(50% - 12px);
  }
  .accuracy_bm__bottom {
    flex-direction: column;
  }
  .accuracy_bm__pill:nth-child(1), .accuracy_bm__pill:nth-child(2), .accuracy_bm__pill:nth-child(3), .accuracy_bm__pill:nth-child(4) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .accuracy_bm__top {
    padding: 24px;
    gap: 32px;
  }
  .accuracy_bm__title {
    font-size: 28px;
    line-height: 36px;
  }
  .accuracy_bm__intro {
    gap: 24px;
  }
  .accuracy_bm__stat {
    flex: 1 1 100%;
  }
  .accuracy_bm__box {
    padding: 24px;
  }
  .accuracy_bm__box-title {
    font-size: 22px;
    line-height: 30px;
  }
  .accuracy_bm__hrow {
    gap: 16px;
  }
  .accuracy_bm {
    /* keep the number inside the left padding */
  }
  .accuracy_bm__funnel {
    padding: 0 0 0 36px;
  }
  .accuracy_bm__pill-num {
    left: -36px;
  }
}
