.cxp {
  --cxp-primary: #123C45;
  --cxp-secondary: #8FAF9B;
  --cxp-accent: #D89A2B;
  --cxp-accent-hover: #B77D1F;
  --cxp-text: #202426;
  --cxp-muted: #667275;
  --cxp-muted2: #B8C8C3;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cxp-text);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) 0;
  scroll-margin-top: 16px;
}

.cxp__anchor {
  display: block;
  scroll-margin-top: 16px;
}

.cxp__title {
  margin: 0 0 20px;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--cxp-primary);
  text-align: center;
}

.cxp__scroll {
  overflow-x: auto;
  border: 1px solid rgba(18, 60, 69, .14);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 60, 69, .08);
  background: #fff;
}

.cxp__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.cxp__table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--cxp-primary);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  padding: 16px 14px;
  text-align: center;
  white-space: nowrap;
}

.cxp__table thead .cxp__col-item {
  text-align: left;
  min-width: 240px;
}

.cxp__col-item-label {
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .85;
}

.cxp__col-plan-badge {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cxp-accent);
  margin-bottom: 2px;
}

.cxp__col-plan-label {
  display: block;
  font-size: 15px;
}

.cxp__table thead .cxp__col-plan--highlight {
  background: #0C2C35;
  box-shadow: inset 0 -3px 0 var(--cxp-accent);
}

/* Section divider rows */
.cxp__section-row td {
  background: #F3F6F4;
  padding: 14px 16px 10px;
  border-top: 1px solid rgba(18, 60, 69, .12);
  border-bottom: 1px solid rgba(18, 60, 69, .08);
}

.cxp__section-name {
  display: inline-block;
  font-weight: 800;
  color: var(--cxp-primary);
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-right: 10px;
}

.cxp__section-desc {
  color: var(--cxp-muted);
  font-size: 13.5px;
  font-weight: 400;
}

/* Feature rows */
.cxp__feature-row {
  border-bottom: 1px solid rgba(18, 60, 69, .08);
}

.cxp__feature-row:hover {
  background: rgba(143, 175, 155, .08);
}

.cxp__feature-row .cxp__col-item {
  position: relative;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--cxp-text);
  background: #fff;
}

.cxp__feature-row:hover .cxp__col-item {
  background: #F7FAF8;
}

.cxp__item-name {
  vertical-align: middle;
}

.cxp__info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(18, 60, 69, .08);
  color: var(--cxp-primary);
  cursor: pointer;
  vertical-align: middle;
  transition: background .15s, color .15s;
}

.cxp__info-btn:hover,
.cxp__info-btn:focus-visible,
.cxp__info-btn[aria-expanded="true"] {
  background: var(--cxp-primary);
  color: #fff;
  outline: none;
}

.cxp__col-plan {
  text-align: center;
  padding: 12px 10px;
  min-width: 110px;
}

.cxp__col-plan--highlight {
  background: rgba(216, 154, 43, .07);
}

.cxp__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(143, 175, 155, .22);
  color: #0C2C35;
}

.cxp__dash {
  color: var(--cxp-muted2);
  font-weight: 700;
}

.cxp__value-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cxp-primary);
  background: rgba(18, 60, 69, .06);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Explanation popup */
.cxp__popup {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 50;
  isolation: isolate;
  width: 260px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid rgba(18, 60, 69, .16);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(18, 60, 69, .18);
  padding: 14px 16px 12px;
}

.cxp__popup-arrow {
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(18, 60, 69, .16);
  border-top: 1px solid rgba(18, 60, 69, .16);
  transform: rotate(45deg);
}

.cxp__popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 17px;
  line-height: 1;
  color: var(--cxp-muted);
  cursor: pointer;
  padding: 2px 4px;
}

.cxp__popup-close:hover {
  color: var(--cxp-primary);
}

.cxp__popup-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--cxp-text);
  font-weight: 400;
}

@media (max-width: 640px) {
  .cxp__table {
    font-size: 13px;
  }

  .cxp__table thead .cxp__col-item,
  .cxp__feature-row .cxp__col-item {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 6px rgba(18, 60, 69, .08);
  }

  .cxp__col-plan {
    min-width: 92px;
  }
}
