/**
 * Proxy Grove — Pricing section
 * Grove brand tokens only · does not alter prior sections
 */

.pg-pricing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgb(19 0 154 / 0.055), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 50%, rgb(19 127 21 / 0.04), transparent 50%),
    radial-gradient(ellipse 40% 40% at 100% 85%, rgb(0 0 174 / 0.04), transparent 50%),
    var(--color-surface-body);
}

.pg-pricing__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(19 0 154 / 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgb(19 0 154 / 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 18%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 18%, transparent 78%);
}

.pg-pricing__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.pg-pricing__glow--1 {
  width: 24rem;
  height: 24rem;
  top: 5%;
  right: -7rem;
  background: rgb(19 0 154 / 0.1);
  animation: pg-price-drift 15s ease-in-out infinite;
}

.pg-pricing__glow--2 {
  width: 20rem;
  height: 20rem;
  bottom: 12%;
  left: -6rem;
  background: rgb(19 127 21 / 0.09);
  animation: pg-price-drift 17s ease-in-out infinite reverse;
}

.pg-pricing__inner {
  position: relative;
  z-index: 1;
}

.pg-pricing__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}

.pg-pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-heading);
  background: var(--color-surface-raised);
  border: 1px solid rgb(19 0 154 / 0.12);
  box-shadow: 0 4px 20px rgb(19 0 154 / 0.05);
  margin-bottom: 1rem;
}

.pg-pricing__eyebrow-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--color-button-primary-bg);
  animation: pg-price-pulse 2.2s ease-out infinite;
}

.pg-pricing__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-heading);
}

.pg-pricing__subtitle {
  margin: 0.9rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-body);
}

.pg-pricing__block-title {
  margin: 0 0 1.25rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
  text-align: center;
}

/* —— Billing toggle —— */
.pg-pricing__toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pg-pricing__toggle {
  position: relative;
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 9999px;
  background: var(--color-surface-raised);
  border: 1px solid rgb(19 0 154 / 0.12);
  box-shadow: 0 8px 28px rgb(19 0 154 / 0.06);
}

.pg-pricing__toggle-btn {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-body);
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s ease;
  min-width: 6.5rem;
  text-align: center;
}

.pg-pricing__toggle-btn.is-active {
  color: var(--color-text-heading);
}

.pg-pricing__toggle-btn:focus-visible {
  outline: 2px solid var(--color-text-heading);
  outline-offset: 2px;
}

.pg-pricing__toggle-pill {
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0.3rem;
  width: calc(50% - 0.3rem);
  border-radius: 9999px;
  background: linear-gradient(135deg, rgb(19 0 154 / 0.1), rgb(19 127 21 / 0.12));
  border: 1px solid rgb(19 0 154 / 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.pg-pricing__toggle[data-active="yearly"] .pg-pricing__toggle-pill {
  transform: translateX(100%);
}

.pg-pricing__save {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-button-primary-bg);
  background: rgb(19 127 21 / 0.1);
  border: 1px solid rgb(19 127 21 / 0.18);
  opacity: 0;
  transform: translateY(4px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pg-pricing__save.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* —— Plan cards —— */
.pg-pricing__cards {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pg-pricing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pg-pricing__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.pg-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 1.5rem;
  background: color-mix(in srgb, var(--color-surface-raised) 94%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid transparent;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.pg-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    150deg,
    rgb(19 0 154 / 0.18),
    rgb(255 255 255 / 0.55) 45%,
    rgb(19 127 21 / 0.16)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.pg-price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 24px rgb(19 0 154 / 0.07),
    0 32px 64px rgb(19 0 154 / 0.14);
}

.pg-price-card--popular {
  box-shadow:
    0 0 0 1px rgb(19 127 21 / 0.2),
    0 0 40px rgb(19 127 21 / 0.18),
    var(--shadow-glass);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgb(19 127 21 / 0.08), transparent 60%),
    color-mix(in srgb, var(--color-surface-raised) 96%, transparent);
}

.pg-price-card--popular::before {
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgb(19 127 21 / 0.55),
    rgb(19 0 154 / 0.35) 40%,
    rgb(19 127 21 / 0.5)
  );
}

.pg-price-card--popular:hover {
  box-shadow:
    0 0 0 1px rgb(19 127 21 / 0.28),
    0 0 48px rgb(19 127 21 / 0.25),
    0 32px 64px rgb(19 0 154 / 0.12);
}

.pg-price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--color-button-primary-bg);
  box-shadow: 0 4px 16px rgb(19 127 21 / 0.35);
  animation: pg-price-badge 2.8s ease-in-out infinite;
}

.pg-price-card__name {
  position: relative;
  z-index: 0;
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
}

.pg-price-card__blurb {
  position: relative;
  z-index: 0;
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-body);
  min-height: 2.5em;
}

.pg-price-card__price {
  position: relative;
  z-index: 0;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgb(19 0 154 / 0.08);
}

.pg-price-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-body);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.pg-price-card__amount {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text-heading);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.pg-price-card__amount.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.pg-price-card__period {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-text-body);
  opacity: 0.75;
}

.pg-price-card__features {
  position: relative;
  z-index: 0;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pg-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-body);
}

.pg-price__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.05rem;
  border-radius: 9999px;
  background: rgb(19 127 21 / 0.12);
  color: var(--color-button-primary-bg);
  flex-shrink: 0;
}

.pg-price__check svg {
  width: 0.65rem;
  height: 0.65rem;
}

.pg-price__cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 9999px;
  background: rgb(19 0 154 / 0.06);
  color: rgb(27 27 27 / 0.3);
}

.pg-price__cross svg {
  width: 0.65rem;
  height: 0.65rem;
}

.pg-price-card__cta {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: auto;
  padding: 0.8rem 1.15rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pg-price-card__cta--primary {
  color: var(--color-button-primary-text);
  background: var(--color-button-primary-bg);
  box-shadow: 0 0 22px rgb(19 127 21 / 0.28);
}

.pg-price-card__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(19 127 21 / 0.38);
}

.pg-price-card__cta--secondary {
  color: var(--color-text-heading);
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(19 0 154 / 0.15);
}

.pg-price-card__cta--secondary:hover {
  transform: translateY(-2px);
  border-color: rgb(19 0 154 / 0.28);
  box-shadow: 0 8px 28px rgb(19 0 154 / 0.1);
}

.pg-price-card__cta:focus-visible {
  outline: 2px solid var(--color-text-heading);
  outline-offset: 3px;
}

.pg-price-card__cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.pg-price__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.35);
  transform: scale(0);
  animation: pg-price-ripple 0.55s ease-out forwards;
  pointer-events: none;
}

.pg-price-card__cta--secondary .pg-price__ripple {
  background: rgb(19 0 154 / 0.15);
}

/* —— Comparison —— */
.pg-pricing__compare {
  margin-bottom: 3.5rem;
}

.pg-price-compare__frame {
  position: relative;
  border-radius: 1.5rem;
  padding: 0.35rem;
  background: color-mix(in srgb, var(--color-surface-raised) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.pg-price-compare__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgb(19 0 154 / 0.2),
    rgb(255 255 255 / 0.5) 45%,
    rgb(19 127 21 / 0.18)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.pg-price-compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: calc(1.5rem - 0.35rem);
}

.pg-price-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.pg-price-compare__table th,
.pg-price-compare__table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgb(19 0 154 / 0.07);
  vertical-align: middle;
}

.pg-price-compare__table thead th {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-text-heading);
  background: rgb(19 0 154 / 0.04);
  text-align: center;
}

.pg-price-compare__table thead th:first-child {
  text-align: left;
}

.pg-price-compare__th--popular,
.pg-price-compare__table thead th.pg-price-compare__th--popular {
  background: linear-gradient(180deg, rgb(19 127 21 / 0.12), rgb(19 127 21 / 0.05));
  color: var(--color-button-primary-bg);
}

.pg-price-compare__table tbody th {
  font-weight: 600;
  color: var(--color-text-body);
  text-align: left;
}

.pg-price-compare__table tbody td {
  text-align: center;
}

.pg-price-compare__table tbody tr:hover {
  background: rgb(19 0 154 / 0.03);
}

.pg-price-compare__table tbody tr:last-child th,
.pg-price-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.pg-price-compare__yes .pg-price__check {
  margin: 0 auto;
}

.pg-price-compare__no .pg-price__cross {
  margin: 0 auto;
}

/* —— Payments —— */
.pg-pricing__payments {
  margin-bottom: 2.5rem;
  text-align: center;
}

.pg-pricing__payments-label {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-body);
  opacity: 0.75;
}

.pg-pricing__payments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.pg-pricing__pay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-heading);
  background: var(--color-surface-raised);
  border: 1px solid rgb(19 0 154 / 0.1);
  box-shadow: 0 4px 16px rgb(19 0 154 / 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg-pricing__pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(19 0 154 / 0.08);
}

.pg-pricing__pay svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.pg-pricing__pay--soon {
  opacity: 0.7;
}

.pg-pricing__pay-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-heading);
  background: rgb(19 0 154 / 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
}

.pg-pricing__pay-tag--live {
  color: #0f7a3c;
  background: rgb(19 127 21 / 0.12);
}

/* —— Money back —— */
.pg-pricing__trust {
  margin-bottom: 3rem;
}

.pg-pricing__trust-card {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgb(19 127 21 / 0.08), transparent 60%),
    color-mix(in srgb, var(--color-surface-raised) 94%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.pg-pricing__trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgb(19 127 21 / 0.35),
    rgb(255 255 255 / 0.4) 50%,
    rgb(19 0 154 / 0.2)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pg-pricing__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: rgb(19 127 21 / 0.12);
  color: var(--color-button-primary-bg);
}

.pg-pricing__trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pg-pricing__trust-title {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-pricing__trust-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.pg-pricing__trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-body);
}

/* —— Bottom CTA —— */
.pg-pricing__cta-band {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgb(19 0 154 / 0.06), transparent 60%),
    color-mix(in srgb, var(--color-surface-raised) 94%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.pg-pricing__cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgb(19 0 154 / 0.2),
    rgb(255 255 255 / 0.4) 50%,
    rgb(19 127 21 / 0.18)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pg-pricing__cta-title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-pricing__cta-desc {
  margin: 0.65rem auto 0;
  max-width: 34rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

.pg-pricing__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.pg-pricing__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pg-pricing__btn--primary {
  color: var(--color-button-primary-text);
  background: var(--color-button-primary-bg);
  box-shadow: 0 0 22px rgb(19 127 21 / 0.25);
}

.pg-pricing__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(19 127 21 / 0.35);
}

.pg-pricing__btn--secondary {
  color: var(--color-text-heading);
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(19 0 154 / 0.15);
}

.pg-pricing__btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgb(19 0 154 / 0.28);
  box-shadow: 0 8px 28px rgb(19 0 154 / 0.1);
}

.pg-pricing__btn:focus-visible {
  outline: 2px solid var(--color-text-heading);
  outline-offset: 3px;
}

.pg-pricing__btn svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 479px) {
  .pg-pricing__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pg-pricing__btn {
    width: 100%;
  }
}

@keyframes pg-price-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -12px) scale(1.05); }
}

@keyframes pg-price-pulse {
  0% { box-shadow: 0 0 0 0 rgb(19 127 21 / 0.45); }
  70% { box-shadow: 0 0 0 6px rgb(19 127 21 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(19 127 21 / 0); }
}

@keyframes pg-price-badge {
  0%, 100% { box-shadow: 0 4px 16px rgb(19 127 21 / 0.35); }
  50% { box-shadow: 0 4px 24px rgb(19 127 21 / 0.55); }
}

@keyframes pg-price-ripple {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pg-pricing__glow,
  .pg-pricing__eyebrow-dot,
  .pg-price-card__badge {
    animation: none !important;
  }

  .pg-pricing__toggle-pill {
    transition: none;
  }

  .pg-price-card:hover,
  .pg-price-card__cta:hover,
  .pg-pricing__btn:hover,
  .pg-pricing__pay:hover {
    transform: none;
  }
}
