.product-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
  padding-block: 64px;
  border-top: 1px solid var(--line, #e1e4e8);
}
.product-pricing h2 {
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0;
}
.pricing-intro > p {
  margin-top: 16px;
  color: var(--muted, #505258);
  font-size: 16px;
}
.pricing-free {
  font-size: 17px;
  font-weight: 700;
  color: var(--ui-ink, #101214);
}
.pricing-rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-top: 16px;
}
.pricing-rate strong {
  color: var(--ink, #101214);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.pricing-rate span {
  color: var(--muted, #505258);
  font-size: 15px;
}
.pricing-tiers {
  margin-top: 20px;
  border-block: 1px solid var(--line, #e1e4e8);
}
.pricing-tiers summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.pricing-tiers summary::-webkit-details-marker {
  display: none;
}
.pricing-tiers summary:focus-visible {
  outline: 3px solid var(--ui-focus, #1868db);
  outline-offset: 4px;
  border-radius: 3px;
}
.pricing-tiers summary::after {
  content: "+";
  font-size: 22px;
  color: #1868db;
  font-weight: 400;
  line-height: 1;
}
.pricing-tiers[open] summary::after {
  content: "−";
}
.pricing-tiers[open] {
  padding-bottom: 16px;
}
.product-pricing table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  white-space: normal;
}
.product-pricing caption {
  padding-top: 8px;
  padding-bottom: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.product-pricing th,
.product-pricing td {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line, #e1e4e8);
  background: transparent;
  letter-spacing: normal;
  text-align: left;
}
.product-pricing thead th {
  color: var(--muted, #505258);
  font-size: 13px;
  font-weight: 500;
}
.product-pricing tbody th {
  color: var(--ink, #101214);
  font-size: inherit;
  font-weight: 500;
}
.product-pricing th:last-child,
.product-pricing td:last-child {
  padding-left: 20px;
  text-align: right;
  white-space: nowrap;
}
.product-pricing td {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.product-pricing .pricing-note {
  margin-top: 16px;
  color: var(--muted, #505258);
  font-size: 14px;
  line-height: 1.6;
}
.product-pricing .pricing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  margin-top: 12px;
}
.product-pricing a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #1868db;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1100px) { .product-pricing { width: calc(100% - 64px); } }
@media (max-width: 800px) { .product-pricing { width: calc(100% - 48px); } }
@media (max-width: 700px) {
  .product-pricing {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding-block: 44px;
  }
}
