.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.pricing-card .product-tagline {
  margin-bottom: var(--space-lg);
}

.pricing-tiers {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.pricing-tier {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--bg-glass-border);
}

.pricing-tier:last-child {
  border-bottom: none;
}

.tier-name {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tier-price.free {
  color: var(--color-metronome);
}

.tier-detail {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.pricing-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
