/* Closed loyalty tier shared by /pricing and the insufficient-coins flow. */
.legend-offer-overlay[hidden],
[data-legend-pricing][hidden],
.legend-offer-error[hidden] {
  display: none !important;
}

body.legend-offer-open {
  overflow: hidden;
}

.legend-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 24px;
  background: rgba(3, 6, 13, 0.82);
  backdrop-filter: blur(10px);
}

.legend-offer-dialog {
  position: relative;
  width: min(100%, 720px);
  margin-block: auto;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px 38px 28px;
  color: #fff9e7;
  background:
    radial-gradient(circle at 13% -8%, rgba(255, 215, 112, 0.28), transparent 35%),
    radial-gradient(circle at 92% 18%, rgba(206, 155, 46, 0.2), transparent 30%),
    linear-gradient(145deg, #17213a 0%, #0c1427 58%, #080d1a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 219, 125, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 100px rgba(0, 0, 0, 0.68),
    0 0 72px rgba(230, 176, 52, 0.22);
  animation: legend-dialog-enter 300ms cubic-bezier(0.2, 0, 0, 1) both;
}

.legend-offer-dialog::after {
  position: absolute;
  inset: 9px;
  border-radius: 21px;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 220, 130, 0.1);
}

.legend-offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  padding: 0;
  color: rgba(255, 247, 222, 0.7);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 221, 137, 0.12);
  cursor: pointer;
  transition-property: color, background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.legend-offer-close:hover {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.08);
}

.legend-offer-close:active {
  scale: 0.96;
}

.legend-offer-close:focus-visible,
.legend-offer-primary:focus-visible,
.legend-offer-secondary:focus-visible {
  outline: 2px solid #ffe19a;
  outline-offset: 3px;
}

.legend-offer-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legend-offer-kicker {
  width: fit-content;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffe4a3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 205, 83, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 218, 126, 0.28);
}

.legend-offer-heading {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.legend-offer-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle, rgba(255, 225, 145, 0.2), transparent 68%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 221, 137, 0.14),
    0 18px 38px rgba(0, 0, 0, 0.24);
}

.legend-offer-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter:
    sepia(0.3)
    saturate(1.25)
    drop-shadow(0 0 14px rgba(255, 202, 72, 0.48));
}

.legend-offer-exclusive,
.legend-exclusive-label {
  display: block;
  margin-bottom: 7px;
  color: #f6c95d;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.legend-offer-heading h2 {
  margin: 0;
  color: #fffdf7;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.legend-offer-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 20px;
  font-variant-numeric: tabular-nums;
}

.legend-offer-price strong {
  color: #fffdf7;
  font-size: clamp(31px, 5vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.legend-offer-price span {
  color: #f6c95d;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.legend-offer-yields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
  padding: 13px 10px;
  background: rgba(4, 9, 19, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 221, 137, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legend-offer-yields > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1px 8px;
  padding: 3px 13px;
}

.legend-offer-yields > div + div {
  box-shadow: -1px 0 rgba(255, 224, 150, 0.12);
}

.legend-offer-yields img {
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  object-fit: contain;
}

.legend-offer-yields span {
  min-width: 0;
  color: rgba(255, 249, 231, 0.8);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.legend-offer-yields strong {
  grid-column: 3;
  grid-row: 1 / 3;
  color: #fffdf7;
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.legend-offer-yields small {
  color: rgba(255, 249, 231, 0.54);
  font-size: 10px;
  font-weight: 700;
}

.legend-offer-error {
  margin: 14px 0 -2px;
  color: #ffb8ae;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.legend-offer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 20px;
}

.legend-offer-primary,
.legend-offer-secondary {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition-property: background-color, box-shadow, color, opacity, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.legend-offer-primary {
  color: #2d2104;
  background: linear-gradient(180deg, #ffe291 0%, #e9b83f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 32px rgba(222, 163, 28, 0.28);
}

.legend-offer-primary:hover {
  background: linear-gradient(180deg, #ffebac 0%, #efc454 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 38px rgba(222, 163, 28, 0.34);
}

.legend-offer-secondary {
  color: rgba(255, 249, 231, 0.74);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 224, 150, 0.14);
}

.legend-offer-secondary:hover {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.09);
}

.legend-offer-primary:active,
.legend-offer-secondary:active {
  scale: 0.96;
}

.legend-offer-primary:disabled {
  opacity: 0.64;
  cursor: progress;
}

.legend-offer-consent {
  margin: 14px auto 0;
  max-width: 580px;
  color: rgba(255, 249, 231, 0.48);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  text-wrap: pretty;
}

.legend-offer-consent a {
  color: rgba(255, 230, 169, 0.72);
}

/* Permanent desktop tier: one full-width horizontal card under the public three. */
.page-pricing .legend-pricing-card {
  grid-column: 1 / -1;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 218, 118, 0.22), transparent 27%),
    linear-gradient(130deg, #18233d 0%, #0c1629 54%, #080f1e 100%);
  box-shadow:
    0 0 0 1px rgba(255, 218, 118, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(220, 163, 39, 0.16);
  animation: legend-card-reveal 360ms cubic-bezier(0.2, 0, 0, 1) both;
}

.page-pricing .legend-plan-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.02fr) minmax(350px, 1.28fr) minmax(210px, 0.72fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 24px 28px;
}

.page-pricing .legend-plan-copy {
  min-width: 0;
}

.page-pricing .legend-plan-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-pricing .legend-plan-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255, 220, 128, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 222, 137, 0.13);
}

.page-pricing .legend-plan-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: sepia(0.3) saturate(1.25) drop-shadow(0 0 12px rgba(255, 202, 72, 0.42));
}

.page-pricing .legend-pricing-card .plan-label,
.page-pricing .legend-pricing-card h2,
.page-pricing .legend-pricing-card .plan-generation-model,
.page-pricing .legend-pricing-card .plan-generation-model strong,
.page-pricing .legend-pricing-card .plan-generation-count,
.page-pricing .legend-pricing-card .plan-generations-title {
  color: #fffdf7;
}

.page-pricing .legend-pricing-card .plan-label {
  font-size: 25px;
}

.page-pricing .legend-plan-value {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 12px;
  font-variant-numeric: tabular-nums;
}

.page-pricing .legend-pricing-card .legend-plan-value h2 {
  margin: 0;
  font-size: 36px;
}

.page-pricing .legend-pricing-card .legend-plan-value .plan-coins {
  margin: 0;
  color: #f6c95d;
  font-size: 18px;
}

.page-pricing .legend-pricing-card .plan-description {
  min-height: 0;
  margin-top: 8px;
  color: rgba(255, 249, 231, 0.62);
  line-height: 1.45;
  text-wrap: pretty;
}

.page-pricing .legend-plan-generations {
  margin: 0;
  border: 0;
  background: rgba(4, 9, 19, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 223, 143, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.page-pricing .legend-plan-action {
  min-width: 0;
}

.page-pricing .legend-plan-action p {
  margin: 0 0 12px;
  color: #f6c95d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.page-pricing .legend-checkout-button {
  margin-top: 0;
  border: 0;
  color: #2d2104;
  background: linear-gradient(180deg, #ffe291 0%, #e9b83f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 32px rgba(222, 163, 28, 0.24);
  transition-property: background, box-shadow, transform;
}

.page-pricing .legend-checkout-button:hover {
  background: linear-gradient(180deg, #ffebac 0%, #efc454 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 38px rgba(222, 163, 28, 0.3);
}

.page-pricing .legend-checkout-button:active {
  transform: scale(0.96);
}

@keyframes legend-dialog-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes legend-card-reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Light theme remains premium without turning into a bright yellow billboard. */
html[data-theme="light"] .legend-offer-overlay {
  background: rgba(52, 43, 27, 0.38);
}

html[data-theme="light"] .legend-offer-dialog {
  color: #302713;
  background:
    radial-gradient(circle at 10% -6%, rgba(229, 177, 52, 0.22), transparent 35%),
    linear-gradient(145deg, #fffdf7 0%, #fff9e9 58%, #f7edcf 100%);
  box-shadow:
    0 0 0 1px rgba(157, 112, 13, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 90px rgba(67, 52, 44, 0.28),
    0 0 62px rgba(207, 153, 31, 0.18);
}

html[data-theme="light"] .legend-offer-dialog::after {
  box-shadow: inset 0 0 0 1px rgba(154, 108, 8, 0.09);
}

html[data-theme="light"] .legend-offer-close {
  color: #776b4d;
  background: rgba(91, 65, 12, 0.045);
  box-shadow: 0 0 0 1px rgba(129, 91, 9, 0.11);
}

html[data-theme="light"] .legend-offer-kicker {
  color: #7e5700;
  background: rgba(218, 163, 35, 0.11);
  box-shadow: inset 0 0 0 1px rgba(158, 111, 8, 0.2);
}

html[data-theme="light"] .legend-offer-icon {
  background: rgba(218, 163, 35, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(158, 111, 8, 0.12),
    0 16px 34px rgba(92, 67, 15, 0.1);
}

html[data-theme="light"] .legend-offer-exclusive,
html[data-theme="light"] .legend-exclusive-label,
html[data-theme="light"] .legend-offer-price span {
  color: #9a6900;
}

html[data-theme="light"] .legend-offer-heading h2,
html[data-theme="light"] .legend-offer-price strong,
html[data-theme="light"] .legend-offer-yields strong {
  color: #29251d;
}

html[data-theme="light"] .legend-offer-yields {
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(151, 107, 11, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .legend-offer-yields > div + div {
  box-shadow: -1px 0 rgba(107, 79, 20, 0.12);
}

html[data-theme="light"] .legend-offer-yields span {
  color: #5f5848;
}

html[data-theme="light"] .legend-offer-yields small,
html[data-theme="light"] .legend-offer-consent {
  color: #7b715d;
}

html[data-theme="light"] .legend-offer-consent a {
  color: #765100;
}

html[data-theme="light"] .legend-offer-secondary {
  color: #635a47;
  background: rgba(91, 65, 12, 0.05);
  box-shadow: inset 0 0 0 1px rgba(129, 91, 9, 0.13);
}

html[data-theme="light"] .legend-offer-secondary:hover {
  color: #29251d;
  background: rgba(91, 65, 12, 0.085);
}

html[data-theme="light"] .page-pricing .legend-pricing-card {
  background:
    radial-gradient(circle at 8% 10%, rgba(223, 168, 39, 0.19), transparent 28%),
    linear-gradient(130deg, #fffdf8 0%, #fff9e9 55%, #f6ebca 100%);
  box-shadow:
    0 0 0 1px rgba(151, 107, 11, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 54px rgba(91, 67, 17, 0.12),
    0 0 38px rgba(207, 153, 31, 0.12);
}

html[data-theme="light"] .page-pricing .legend-plan-icon {
  background: rgba(218, 163, 35, 0.07);
  box-shadow: inset 0 0 0 1px rgba(151, 107, 11, 0.11);
}

html[data-theme="light"] .page-pricing .legend-pricing-card .plan-label,
html[data-theme="light"] .page-pricing .legend-pricing-card h2,
html[data-theme="light"] .page-pricing .legend-pricing-card .plan-generation-model,
html[data-theme="light"] .page-pricing .legend-pricing-card .plan-generation-model strong,
html[data-theme="light"] .page-pricing .legend-pricing-card .plan-generation-count,
html[data-theme="light"] .page-pricing .legend-pricing-card .plan-generations-title {
  color: #29251d;
}

html[data-theme="light"] .page-pricing .legend-pricing-card .legend-plan-value .plan-coins,
html[data-theme="light"] .page-pricing .legend-plan-action p {
  color: #936400;
}

html[data-theme="light"] .page-pricing .legend-pricing-card .plan-description {
  color: #6e6655;
}

html[data-theme="light"] .page-pricing .legend-plan-generations {
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(151, 107, 11, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .page-pricing .legend-pricing-card .plan-generation-model + .plan-generation-model {
  border-left-color: rgba(91, 67, 17, 0.14);
}

@media (max-width: 1080px) and (min-width: 781px) {
  .page-pricing .legend-plan-main {
    grid-template-columns: minmax(250px, 0.9fr) minmax(330px, 1.1fr);
  }

  .page-pricing .legend-plan-action {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr minmax(250px, 0.55fr);
    align-items: center;
    gap: 18px;
  }

  .page-pricing .legend-plan-action p {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .legend-offer-overlay {
    align-items: start;
    padding: 14px;
  }

  .legend-offer-dialog {
    width: min(100%, 430px);
    border-radius: 24px;
    padding: 26px 18px 20px;
  }

  .legend-offer-dialog::after {
    inset: 7px;
    border-radius: 18px;
  }

  .legend-offer-close {
    top: 12px;
    right: 12px;
  }

  .legend-offer-kicker {
    margin-bottom: 12px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .legend-offer-heading {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding-right: 24px;
  }

  .legend-offer-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .legend-offer-icon img {
    width: 66px;
    height: 66px;
  }

  .legend-offer-exclusive {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .legend-offer-heading h2 {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .legend-offer-price {
    display: grid;
    gap: 5px;
    margin: 18px 0 14px;
  }

  .legend-offer-price strong {
    font-size: 32px;
  }

  .legend-offer-price span {
    font-size: 21px;
  }

  .legend-offer-yields {
    padding: 10px 6px;
  }

  .legend-offer-yields > div {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    justify-items: center;
    gap: 3px;
    padding: 3px 7px;
    text-align: center;
  }

  .legend-offer-yields img,
  .legend-offer-yields span,
  .legend-offer-yields strong,
  .legend-offer-yields small {
    grid-column: 1;
    grid-row: auto;
  }

  .legend-offer-yields img {
    width: 24px;
    height: 24px;
  }

  .legend-offer-yields span {
    min-height: 22px;
    font-size: 10px;
  }

  .legend-offer-yields strong {
    font-size: 25px;
  }

  .legend-offer-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .legend-offer-primary,
  .legend-offer-secondary {
    min-height: 48px;
  }

  .legend-offer-consent {
    margin-top: 10px;
    font-size: 10px;
  }

  .page-pricing .legend-mobile-package {
    background:
      radial-gradient(circle at 88% 0%, rgba(255, 211, 99, 0.17), transparent 42%),
      linear-gradient(155deg, rgba(28, 35, 53, 0.99), rgba(8, 15, 28, 0.99));
    box-shadow:
      inset 0 0 0 1.5px rgba(235, 184, 58, 0.74),
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 26px rgba(229, 174, 41, 0.18),
      0 18px 42px rgba(0, 0, 0, 0.3);
    animation: legend-card-reveal 360ms cubic-bezier(0.2, 0, 0, 1) both;
  }

  .page-pricing .legend-mobile-package.is-selected {
    background:
      radial-gradient(circle at 82% 0%, rgba(255, 218, 123, 0.27), transparent 46%),
      linear-gradient(155deg, rgba(39, 44, 58, 0.99), rgba(12, 18, 29, 0.99));
    box-shadow:
      inset 0 0 0 2px rgba(255, 207, 81, 0.96),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 32px rgba(229, 174, 41, 0.27),
      0 20px 44px rgba(0, 0, 0, 0.32);
  }

  .page-pricing .legend-mobile-badge {
    color: #2d2104;
    background: linear-gradient(180deg, #ffe291, #e9b83f);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.34),
      0 8px 18px rgba(202, 144, 17, 0.24);
  }

  .page-pricing .legend-package-art {
    filter: sepia(0.3) saturate(1.25) drop-shadow(0 0 9px rgba(255, 202, 72, 0.44));
  }

  .page-pricing .legend-mobile-package .mobile-package-copy span {
    color: #f6c95d;
  }

  .page-pricing .legend-mobile-package .mobile-package-yields {
    background: rgba(4, 9, 19, 0.42);
    box-shadow:
      inset 0 0 0 1px rgba(255, 223, 143, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .page-pricing .legend-mobile-package .mobile-package-radio {
    box-shadow:
      inset 0 0 0 2px rgba(255, 217, 118, 0.78),
      0 0 0 5px rgba(196, 135, 11, 0.08);
  }

  .page-pricing .legend-mobile-package.is-selected .mobile-package-radio span {
    background: #fff8e2;
    box-shadow:
      0 0 0 5px #d8a52c,
      0 0 16px rgba(255, 213, 103, 0.72);
  }

  html[data-theme="light"] .page-pricing .legend-mobile-package,
  html[data-theme="light"] .page-pricing .legend-mobile-package.is-selected {
    background:
      radial-gradient(circle at 86% 0%, rgba(223, 168, 39, 0.16), transparent 44%),
      linear-gradient(145deg, #fffdf8, #fff5d9);
    box-shadow:
      inset 0 0 0 1.5px rgba(169, 118, 7, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 0 24px rgba(207, 153, 31, 0.14),
      0 14px 32px rgba(91, 67, 17, 0.12);
  }

  html[data-theme="light"] .page-pricing .legend-mobile-badge {
    color: #5b3d00;
    background: linear-gradient(180deg, #ffe9a8, #efc45b);
    box-shadow:
      inset 0 0 0 1px rgba(139, 94, 0, 0.14),
      0 8px 18px rgba(202, 144, 17, 0.18);
  }

  html[data-theme="light"] .page-pricing .legend-mobile-package .mobile-package-copy span {
    color: #936400;
  }

  html[data-theme="light"] .page-pricing .legend-mobile-package .mobile-package-yields {
    background: rgba(255, 255, 255, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(151, 107, 11, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .legend-offer-dialog,
  .page-pricing .legend-pricing-card,
  .page-pricing .legend-mobile-package {
    animation-duration: 0.01ms;
  }

  .legend-offer-close,
  .legend-offer-primary,
  .legend-offer-secondary,
  .page-pricing .legend-checkout-button {
    transition-duration: 0.01ms;
  }
}
