.ab-check {
  padding: 120px 0;
}
.ab-check__head {
  max-width: 720px;
}
.ab-check__list {
  margin-top: 54px;
  border-top: 1px solid var(--border);
}
.ab-check__row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(58px, 8vw, 120px) 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(22px, 3.2vw, 40px) 6px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.45s ease;
}
.ab-check__row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ab-check__row:hover {
  padding-left: 22px;
  background: rgba(90, 139, 255, 0.045);
}
.ab-check__row:hover::after {
  transform: scaleX(1);
}
.ab-check__num {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: 1;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  transition: -webkit-text-stroke 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ab-check__row:hover .ab-check__num {
  -webkit-text-stroke: 0;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(-2px);
}
.ab-check__q {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(19px, 2.3vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--fg);
  max-width: 22ch;
}
.ab-check__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.ab-check__row:hover .ab-check__mark {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--grad-brand-ink);
  transform: rotate(-45deg) scale(1.06);
}
.ab-check__foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ab-check__line {
  flex: 1;
  min-width: 300px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.ab-check__line b {
  color: var(--fg);
  font-weight: 600;
}
@media (max-width: 680px) {
  .ab-check__row {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .ab-check__mark {
    display: none;
  }
}
