.pricing {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--grey);
  border-top: var(--border-subtle);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: var(--border-subtle);
}

.pricing-note {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-medium);
  font-weight: 300;
  align-self: end;
}

/* ── Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.price-card {
  background: var(--black);
  padding: 3.5rem 3rem;
  position: relative;
  transition: transform var(--t-normal);
}

.price-card.pop {
  background: var(--blue);
  transform: translateY(-8px);
}

/* ── Badge ── */
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-card.pop .price-tier {
  color: rgba(255, 255, 255, 0.6);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.price-custom {
  font-size: 3.5rem;
}

.price-card.pop .price-amount {
  color: var(--black);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.price-card.pop .price-period {
  color: rgba(0, 0, 0, 0.55);
}

.price-desc {
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.45);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.price-card.pop .price-desc {
  color: rgba(0, 0, 0, 0.55);
}

/* ── Feature list ── */
.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.6);
  line-height: 1.5;
  font-weight: 300;
}

.price-card.pop .price-features li {
  color: rgba(0, 0, 0, 0.65);
}

.price-features li::before {
  content: '→';
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.price-card.pop .price-features li::before {
  color: var(--black);
}

/* ── CTA buttons ── */
.price-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: none;
  transition: all var(--t-normal);
}

.price-btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.price-btn.outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.price-btn.solid {
  background: var(--black);
  color: var(--white);
}

.price-btn.solid:hover {
  background: #111;
}
