/**
 * Pricing page — ambient + checkout (pricing.php).
 */
/* Pricing hero + decorative line (reference layout, Lurking palette) */
.pricing-ambient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12rem;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pricing-ambient svg {
  width: 100%;
  height: 100%;
  opacity: 0.45;
  filter: blur(48px);
}

main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.co-pay-section {
  margin-top: clamp(2rem, 6vw, 3.25rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: min(74rem, 100%);
  margin-left: auto;
  margin-right: auto;
}
.co-pay-section .co-flash {
  max-width: min(56rem, 100%);
  margin-left: auto;
  margin-right: auto;
}
.co-pay-head {
  text-align: left;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}
@media (min-width: 900px) {
  .co-pay-head {
    text-align: center;
  }
}
.co-pay-head__crumb {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.45);
}
.co-pay-crumb-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.co-pay-crumb-link:hover {
  color: rgba(250, 250, 250, 0.75);
}
.co-pay-head__title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--paper);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
  text-transform: lowercase;
}
.co-pay-head__lead {
  margin: 0;
  max-width: 28rem;
  line-height: 1.55;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 240, 242, 0.55);
}
@media (min-width: 900px) {
  .co-pay-head__lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.co-pay-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}
@media (min-width: 980px) {
  .co-pay-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, min(26rem, 46vw));
    gap: 2.25rem 2.75rem;
  }
}
.co-pay-story__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.4);
}
.co-pay-story__h {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--paper);
  text-transform: lowercase;
}
.co-pay-story__blurb {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 240, 242, 0.55);
}
.co-pay-story__feats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.co-pay-story__feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(250, 250, 250, 0.88);
}
.co-pay-story__chk {
  flex-shrink: 0;
  margin-top: 0.08rem;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.75);
}
.co-pay-story__chk svg {
  width: 0.95rem;
  height: 0.95rem;
}
.co-pay-story__aside-hint {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245, 240, 242, 0.38);
}
.co-pay-story__aside-hint em {
  font-style: italic;
}

.co-pay-desk {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.co-pay-card {
  padding: 1rem 1.05rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.co-pay-card__label {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.45);
}
.co-pay-card__label--sentence {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  color: rgba(245, 240, 242, 0.52);
}
.co-pay-products {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.co-pay-pick {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.55rem 0.65rem;
  align-items: start;
  padding: 0.72rem 0.82rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 6, 8, 0.55);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.co-pay-pick:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.co-pay-pick--active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 10px 32px rgba(0, 0, 0, 0.28);
}
.co-pay-pick input {
  margin-top: 0.35rem;
  accent-color: #e5e5e5;
}
.co-pay-pick__main {
  min-width: 0;
}
.co-pay-pick__name {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--paper);
}
.co-pay-pick__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  line-height: 1.42;
  color: rgba(245, 240, 242, 0.48);
}
.co-pay-pick__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(250, 250, 250, 0.9);
  white-space: nowrap;
  align-self: center;
}
.co-pay-pick__tag {
  grid-column: 4;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  padding: 0.18rem 0.35rem;
  align-self: center;
}
@media (max-width: 480px) {
  .co-pay-pick {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.45rem 0.65rem;
  }
  .co-pay-pick__tag {
    grid-column: auto;
    margin-left: auto;
  }
}

.co-pay-preview {
  padding: 0;
  overflow: hidden;
}
.co-pay-preview__bar {
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(250, 250, 250, 0.35),
    rgba(255, 255, 255, 0.06)
  );
  opacity: 0.85;
}
.co-pay-preview__inner {
  padding: 1rem 1.05rem 1.05rem;
}
.co-pay-preview__eyeb {
  margin: 0 0 0.55rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.38);
}
.co-pay-preview__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--paper);
}
.co-pay-change-wrap {
  margin: 0.35rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245, 240, 242, 0.45);
}
.co-pay-change-plan {
  color: rgba(250, 250, 250, 0.88);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.co-pay-change-plan:hover {
  text-decoration: underline;
}
.co-pay-change-hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: rgba(245, 240, 242, 0.35);
}

.co-pay-locked {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%);
}
.co-pay-locked-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.co-pay-locked-eyeb {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.42);
}
.co-pay-locked-badge {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: rgba(235, 235, 237, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.co-pay-locked-inset {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem 0.95rem;
}
@media (max-width: 520px) {
  .co-pay-locked-inset {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .co-pay-locked-price {
    grid-column: 1 / -1;
    text-align: right;
  }
}
.co-pay-locked-ico {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(250, 250, 250, 0.55);
}
.co-pay-locked-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.co-pay-locked-kicker {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.38);
}
.co-pay-locked-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.co-pay-locked-blurb {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(245, 240, 242, 0.45);
}
.co-pay-locked-price {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(250, 250, 250, 0.88);
  white-space: nowrap;
}
.co-pay-locked-foot {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(245, 240, 242, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.co-pay-locked-foot a {
  color: rgba(250, 250, 250, 0.75);
  font-weight: 600;
}
.co-pay-guest-msg--muted {
  color: rgba(245, 240, 242, 0.55);
}

.co-pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.co-pay-method {
  appearance: none;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 3.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(8, 8, 10, 0.85) 100%);
  color: rgba(245, 240, 242, 0.62);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}
.co-pay-method__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
}
.co-pay-method__text {
  line-height: 1.25;
}
.co-pay-method:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(250, 250, 250, 0.88);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 12, 14, 0.92) 100%);
}
.co-pay-method.is-active {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.35);
}
.co-pay-method:active {
  transform: translateY(1px);
}
.co-pay-method__badge {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.55;
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(245, 240, 242, 0.65);
}
.co-pay-method.is-active .co-pay-method__badge {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(250, 250, 250, 0.82);
}

.co-pay-gift {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.co-pay-gift--cash-muted {
  opacity: 0.55;
  pointer-events: none;
}
.co-pay-gift__modes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.co-pay-gift-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.72rem 0.82rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 6, 8, 0.45);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.co-pay-gift-opt:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 14, 0.65);
}
.co-pay-gift-opt.is-checked {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.co-pay-gift-opt input {
  margin-top: 0.28rem;
  accent-color: #e8e8ea;
  flex-shrink: 0;
}
.co-pay-gift-opt__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}
.co-pay-gift-opt__t {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(250, 250, 250, 0.92);
}
.co-pay-gift-opt__d {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(245, 240, 242, 0.42);
}
.co-pay-gift-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.co-pay-gift-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}
.co-pay-gift-field__l {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.42);
}
.co-pay-gift-input,
.co-pay-gift-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.58rem 0.72rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(250, 250, 250, 0.92);
  font-size: 0.82rem;
  font-family: inherit;
  line-height: 1.35;
}
.co-pay-gift-input::placeholder,
.co-pay-gift-textarea::placeholder {
  color: rgba(245, 240, 242, 0.35);
}
.co-pay-gift-input:focus,
.co-pay-gift-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.co-pay-gift-textarea {
  resize: vertical;
  min-height: 3.5rem;
}
.co-pay-gift-cash-hint {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(245, 240, 242, 0.48);
}

.co-pay-sum__h {
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-transform: none;
}
.co-pay-sum__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(245, 240, 242, 0.5);
}
.co-pay-sum__row span:last-child {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(250, 250, 250, 0.86);
}
.co-pay-sum__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
  font-weight: 800;
}
.co-pay-sum__total span:first-child {
  font-size: 0.78rem;
  text-transform: none;
  color: rgba(245, 240, 242, 0.55);
}
.co-pay-sum__total span:last-child {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

#co-flow-stripe form,
.co-pay-flow form {
  margin: 0;
}
.co-pay-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0.82rem 1.1rem;
  border-radius: 0.95rem;
  border: none;
  background: #f5f5f5;
  color: #0a0a0b;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.12s ease;
}
.co-pay-submit:hover:not(:disabled) {
  filter: brightness(1.06);
}
.co-pay-submit:active:not(:disabled) {
  transform: translateY(1px);
}
.co-pay-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.co-pay-submit--invert {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}
.co-pay-submit--invert:hover {
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.2);
}
a.co-pay-submit--invert[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}
.co-pay-cash-copy {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  line-height: 1.48;
  color: rgba(245, 240, 242, 0.52);
}
.co-pay-cash-amt {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.75);
}

.co-pay-secure-wrap {
  margin-top: 0.15rem;
  text-align: center;
}
.co-pay-secure {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.35);
}
.co-pay-guest-msg {
  margin: 1rem 0 0;
  max-width: 30rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(245, 240, 242, 0.55);
}
.co-pay-guest-msg a {
  color: rgba(250, 250, 250, 0.88);
}

.co-flash {
  margin: 0 auto 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.co-flash code {
  font-size: 0.82em;
  padding: 0.06em 0.28em;
  border-radius: 0.3em;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.co-flash--ok { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.35); color: #86efac; }
.co-flash--bad { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(248, 113, 113, 0.38); color: #fecaca; }
.co-flash--info { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: var(--mute); }

/* Post–Stripe Checkout thank-you (native dialog, matches co-panel energy) */
.purchase-thanks-dlg {
  padding: 0;
  border: none;
  background: transparent;
  max-width: calc(100vw - 2rem);
}
.purchase-thanks-dlg::backdrop {
  background: rgba(5, 2, 4, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.purchase-thanks-dlg__panel {
  width: min(22rem, 100%);
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(16, 16, 18, 0.98), rgba(6, 6, 8, 0.99));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
}
.purchase-thanks-dlg__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 242, 0.45);
}
.purchase-thanks-dlg__title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--paper);
}
.purchase-thanks-dlg__product {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.9);
}
.purchase-thanks-dlg__ref-label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a8b90;
}
.purchase-thanks-dlg__ref {
  margin: 0 0 0.75rem;
}
.purchase-thanks-dlg__ref code {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 247, 0.96);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  word-break: break-all;
}
.purchase-thanks-dlg__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--mute);
}
.purchase-thanks-dlg__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 250, 252, 0.95);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease;
}
.purchase-thanks-dlg__copy:hover {
  filter: brightness(1.08);
}
.purchase-thanks-dlg__discord {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
}
.purchase-thanks-dlg__discord.is-ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #86efac;
}
.purchase-thanks-dlg__discord.is-warn {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.28);
  color: #fcd34d;
}
.purchase-thanks-dlg__discord.is-err {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.38);
  color: #fecaca;
}
.purchase-thanks-dlg__close {
  width: 100%;
  margin: 0;
  padding: 0.65rem 1rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.purchase-thanks-dlg__close:hover {
  background: rgba(255, 255, 255, 0.1);
}
