/* ============================================================
   PRICING CARDS (mini-brief format)
   ============================================================ */
.pricing-card-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
  list-style: none;
}

.pricing-card-row > li {
  list-style: none;
  display: flex;
}

.pricing-card-row__rule {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

.pricing-card-row__rule hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.card-a {
  width: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

html.embed-mode .card-a {
  width: 300px;
  max-width: 100%;
  min-height: 428px;
}

.card-a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.card-a .card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-a .tagline {
  flex: 1;
  min-height: 2.8em;
}

.card-a .ps-footer {
  margin-top: auto;
}

.card-a .product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.card-a .founding-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
}

.card-a .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.card-a .price-main {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.card-a .price-standard {
  font-family: var(--font-heading);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.card-a .price-standard-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
}

.card-a .tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  line-height: 1.4;
}

.card-a .see-deliverables {
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}

.card-a .see-deliverables a {
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-a .see-deliverables a:hover {
  opacity: 0.8;
}

.card-a .svg-btn {
  display: block;
  width: 100%;
}

.card-a .svg-btn svg {
  width: 100%;
  height: auto;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #0B1D36;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.ps-product-tag {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 0 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  text-align: right;
  line-height: 1.25;
  flex: 1 1 6.5rem;
  min-width: 0;
  max-width: 7.75rem;
  text-decoration: none;
}

.ps-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-heading);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
}

/* DAS - green */
.card-a.das {
  --label-color: #22C55E;
}

.card-a.das .card-body {
  background: #1B3D2F;
  background-size: cover;
  background-position: center;
}

.card-a.das .ps-product-tag {
  color: #22C55E;
  max-width: none;
  flex: 1 1 auto;
  font-size: 7px;
  letter-spacing: 0.35px;
}

.card-a.das .product-name {
  color: #22C55E;
}

.card-a.das .see-deliverables a {
  color: #22C55E;
}

.card-a.das .ps-footer {
  background: #152f24;
}

/* Pre-Diligence - purple */
.card-a.predig {
  --label-color: #A78BFA;
}

.card-a.predig .card-body {
  background: #2A1F3D;
}

.card-a.predig .ps-product-tag {
  color: #A78BFA;
}

.card-a.predig .product-name {
  color: #A78BFA;
}

.card-a.predig .see-deliverables a {
  color: #A78BFA;
}

.card-a.predig .ps-footer {
  background: #1f1730;
}

/* R.I.S.K. - red */
.card-a.risk {
  --label-color: #EF4444;
}

.card-a.risk .card-body {
  background: #33201A;
  background-size: cover;
  background-position: center;
}

.card-a.risk .ps-product-tag {
  color: #EF4444;
}

.card-a.risk .product-name {
  color: #EF4444;
}

.card-a.risk .see-deliverables a {
  color: #EF4444;
}

.card-a.risk .ps-footer {
  background: #2a1914;
}

.cta-microcopy {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--teal);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .pricing-card-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .card-a {
    width: 300px;
    max-width: 100%;
  }
}