body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: 0.1px;
}

.plans-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.plans-sub {
  color: #7a8599;
  font-weight: 500;
}

.plan-card {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.085);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  min-height: 300px;

  display: flex;
  flex-direction: column;

  transition: transform 140ms ease,
              box-shadow 140ms ease,
              border-color 140ms ease,
              background 140ms ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}

.plan-card-body {
  padding: 22px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.plan-prefix {
  font-size: 0.85rem;
  color: #6c768a;
  font-weight: 700;
  transform: translateY(-1px);
}

/* Slightly bigger title */
.plan-main {
  font-size: 1.9rem;
  font-weight: 950;
}

.plan-tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #4e5a70;
  font-weight: 600;
  line-height: 1.25rem;
  min-height: 2.5rem;
  margin-bottom: 40px;
}

/* emphasize only "<n> listings" */
.tagline-strong {
  font-weight: 800;
  color: #3f4a5f;
}

.plan-price-wrap {
  position: relative;
  margin-top: auto;
  padding-top: 65px;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 10px;
}

.plan-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.plan-price-left {
  min-width: 0;
}

.plan-sats,
.plan-btc {
  font-weight: 950;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #111827;
}

.plan-btc {
  margin-top: 0;
}

/* FREE plan layout */
.plan-price-row.free-plan {
  justify-content: center;
}

.plan-price-row.free-plan .plan-price-left {
  display: none;
}

.plan-price-row.free-plan .plan-price-right {
  width: 100%;
  text-align: center;
}

.plan-price-right {
  text-align: right;
  white-space: nowrap;
}

.plan-eur {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

/* FREE price styling */
.plan-eur.is-free {
  font-size: 1.25rem;
  font-weight: 950;
  opacity: 1;
  color: #111;
  letter-spacing: -0.01em;
}

.plan-cta {
  margin-top: 12px;
  border: 0;
  border-radius: 14px;

  padding: 12px 14px;

  background:
    linear-gradient(135deg, #2563eb, #4f46e5);

  color: #fff;

  font-weight: 950;
  letter-spacing: -0.01em;

  box-shadow:
    0 12px 22px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

.plan-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 16px 30px rgba(37, 99, 235, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.plan-cta:active {
  transform: translateY(0);
  box-shadow:
    0 8px 16px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plan-hint {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  min-height: 0;
}

.plan-hint:empty {
  display: none;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body.offcanvas-lock {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden !important;
}

.plan-interval-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.plan-interval-badge.monthly {
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.plan-interval-badge.yearly {
  background: rgba(16, 185, 129, 0.10);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.plans-switch-line {
  margin-bottom: 14px;
  color: #7a8599;
  font-size: 0.95rem;
  font-weight: 600;
}

.plans-switch-link {
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
}

.plans-switch-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.plans-view-switcher {
  position: relative;
}

.plans-view {
  width: 100%;
}

.plan-card-grid.row.g-3 {
  align-items: stretch;
}

.plan-card-body {
  position: relative;
  padding: 22px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-interval-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0;
  z-index: 1;
}

.plan-interval-badge.monthly {
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.plan-interval-badge.yearly {
  background: rgba(16, 185, 129, 0.10);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.plan-trial-free-line {
  position: absolute;
  left: 50%;
  top: 65px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: max-content;

  padding: 12px 20px;
  border-radius: 999px;

  background:
    linear-gradient(135deg, #fff1a8 0%, #ffb347 48%, #ff7a1a 100%);

  border: 2px solid rgba(255, 255, 255, 0.72);

  color: #1f0d00;

  font-size: 0.88rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  text-transform: uppercase;

  box-shadow:
    0 12px 26px rgba(255, 122, 26, 0.42),
    0 0 0 5px rgba(255, 179, 71, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transform: translate(-50%, -50%);
}



.plan-trial-free-line::before {
  content: "✦";
  margin-right: 7px;
  font-size: 0.75rem;
}

.plan-trial-subline {
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
}

.plan-price-row.is-first-month-free .plan-btc,
.plan-price-row.is-first-month-free .plan-eur {
  position: relative;
  opacity: 0.62;
}

.plan-price-row.is-first-month-free .plan-btc::after,
.plan-price-row.is-first-month-free .plan-eur::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 3px;
background: #ff1e1e;
  transform: rotate(-7deg);
  transform-origin: center;
  border-radius: 999px;
}

.plans-title-help {
  width: 28px;
  height: 28px;

  border: 0;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  color: #9ca3af;

  padding: 0;
  margin-top: 3px;

  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  font-size: 1.05rem;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.plans-title-help:hover {
  background: rgba(255,255,255,0.12);
  color: #f3f4f6;
  transform: translateY(-1px);
}

.plan-card.is-trial-expandable {
  cursor: pointer;
}

.plan-card.is-trial-expandable .plan-cta {
  cursor: pointer;
}

.plan-trial-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);

  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.plan-card.is-expanded .plan-trial-details {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.plan-trial-details-inner {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.plan-trial-details-title {
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
}

.plan-trial-details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 7px 0;

  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-trial-details-row + .plan-trial-details-row {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.plan-trial-details-row strong {
  color: #111827;
  font-weight: 950;
  text-align: right;
}

.plan-trial-details-note {
  margin-top: 10px;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.4;
}

.plan-expand-cue {
  margin-top: 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: rgba(75, 85, 99, 0.78);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;

  opacity: 0.72;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.plan-expand-cue i {
  font-size: 0.8rem;
  transition: transform 0.18s ease;
}

.plan-card.is-trial-expandable:hover .plan-expand-cue {
  opacity: 1;
  color: #111827;
  transform: translateY(1px);
}

.plan-card.is-expanded .plan-expand-cue i {
  transform: rotate(180deg);
}

.plan-referral-box {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.plan-referral-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-referral-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 11px;
}

.plan-referral-at {
  color: rgba(255,255,255,0.58);
  font-weight: 900;
}

.plan-referral-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.plan-referral-input::placeholder {
  color: rgba(255,255,255,0.38);
}

.plan-referral-hint {
  margin-top: 7px;
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
  line-height: 1.35;
}

.plan-referral-hint.is-error {
  color: #fecaca;
}

.plan-referral-hint.is-success {
  color: #bbf7d0;
}

.plan-referral-apply-btn {
  border: 0;
  border-radius: 10px;
  padding: 7px 11px;
  background: #2563eb;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-referral-apply-btn:hover {
  background: #1d4ed8;
}

.plan-referral-apply-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.plan-referral-reveal-wrap {
  width: 100%;

  margin-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.plan-referral-reveal-btn {
  margin-left: auto;
  margin-right: auto;
}

.plan-referral-reveal-btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;

  padding: 11px 18px;

  background:
    linear-gradient(135deg, #fff176 0%, #ffb703 42%, #ff7a1a 100%);

  color: #241000;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.02em;

  box-shadow:
    0 12px 26px rgba(255, 183, 3, 0.32),
    0 0 0 4px rgba(255, 183, 3, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.plan-referral-reveal-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 16px 34px rgba(255, 183, 3, 0.42),
    0 0 0 5px rgba(255, 183, 3, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.plan-referral-reveal-btn:active {
  transform: translateY(0);
}

.plan-referral-reveal-wrap,
.plan-referral-box {
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    transform 220ms ease,
    margin 220ms ease;
}

.plan-referral-reveal-wrap.is-collapsed,
.plan-referral-box.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.plan-referral-reveal-wrap:not(.is-collapsed) {
  max-height: 70px;
}

.plan-referral-box:not(.is-collapsed) {
  max-height: 190px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
}

#planPayOverlay .idv-pay-box {
  margin-top: 16px;
  margin-bottom: 26px;
}

.plan-referral-optional {
  color: rgba(255,255,255,0.48);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.plan-pay-old-price {
  position: relative;
  display: inline-block;
  margin-right: 10px;

  color: rgba(255,255,255,0.55);
  font-weight: 800;
}

.plan-pay-old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 3px;
  border-radius: 999px;
  background: #ff1e1e;
  transform: rotate(-7deg);
}

.plan-pay-new-price {
  color: #bbf7d0;
  font-weight: 950;
}

.plan-referral-random-btn {
  border: 0;
  border-radius: 10px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-referral-random-btn:hover {
  background: rgba(255,255,255,0.22);
}

.plan-referral-random-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#planPayOverlay #planPayBtcLine {
  font-size: 1.35rem !important;
  font-weight: 950 !important;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

#planPayOverlay .plan-pay-interval {
  font-size: 1rem;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
}

#planPayOverlay #planPayFiatLine {
  margin-top: 0.35rem !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  letter-spacing: -0.01em;
}