/**
 * Shared pricing tier cards — .price-card (landing) and .pricing-card (pricing.html).
 * Markup unchanged; visual polish only.
 */
.price-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), rgba(34, 197, 94, 0.35), transparent 85%);
  pointer-events: none;
  opacity: 0.65;
}
.price-card.highlight,
.pricing-card.featured {
  border-color: rgba(129, 140, 248, 0.45);
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.14) 0%, rgba(99, 102, 241, 0.04) 38%, var(--surface, var(--site-surface)) 72%);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.12),
    0 28px 64px rgba(99, 102, 241, 0.16),
    0 12px 32px rgba(0, 0, 0, 0.28);
}
.price-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}
.price-card.highlight:hover,
.pricing-card.featured:hover {
  box-shadow:
    0 0 0 1px rgba(129, 140, 248, 0.28),
    0 32px 72px rgba(99, 102, 241, 0.22),
    0 14px 36px rgba(0, 0, 0, 0.3);
}
@media (min-width: 961px) {
  .pricing-grid .pricing-card.featured,
  .pricing-grid .price-card.highlight {
    transform: translateY(-6px);
  }
  .pricing-grid .pricing-card.featured:hover,
  .pricing-grid .price-card.highlight:hover {
    transform: translateY(-9px);
  }
}
.price-tier,
.pricing-tier-label {
  letter-spacing: 0.08em;
}
/* Landing .price-val follows .sec-h2 in landing.html — gradient only on pricing.html */
.pricing-card .price {
  font-family: var(--brand-font, var(--site-brand-font, inherit));
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #f8fafc 0%, #c7d2fe 55%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card.featured .price {
  background: linear-gradient(135deg, #fff 0%, #e0e7ff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.pricing-card .price .sub {
  -webkit-text-fill-color: var(--muted, var(--site-muted));
  background: none;
  font-family: var(--font, var(--site-font, inherit));
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0;
}
.price-tagline,
.pricing-tagline {
  font-style: normal;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}
.price-features,
.pricing-features {
  gap: 10px;
  padding-top: 4px;
}
.price-features li,
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0;
}
.price-features li::before,
.pricing-features li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2322c55e' d='M4.2 9.2 1.4 6.4l1-1 1.8 1.8L9.6 2.6l1 1z'/%3E%3C/svg%3E") center / 10px no-repeat;
  border: 1px solid rgba(34, 197, 94, 0.28);
}
.price-features-lead::before,
.pricing-features-lead::before {
  background: rgba(99, 102, 241, 0.14);
  border-color: rgba(129, 140, 248, 0.35);
  content: "+";
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  background-image: none;
}
.price-badge,
.pricing-badge {
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}
.price-btn,
.pricing-card-foot .site-button,
.pricing-card-foot .site-button-secondary {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.price-btn.hl,
.pricing-card.featured .site-button {
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}
