.pricing-wrap {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
}

.pricing-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.pricing-card:hover { border-color: var(--border-mid); }

/* Pro — red accent top bar */
.pricing-card.featured {
  border-color: var(--border-mid);
  border-top: 2px solid var(--accent);
}
.pricing-card.featured:hover { border-color: var(--border-bright); border-top-color: var(--accent); }

/* Enterprise — blue accent top bar */
.pricing-card.enterprise {
  background: #090c1e;
  border-color: rgba(0, 118, 188, 0.28);
  border-top: 2px solid var(--blue);
}
.pricing-card.enterprise:hover { border-color: rgba(0, 118, 188, 0.45); border-top-color: var(--blue); }

.pricing-tier {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pricing-tier::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-tier    { color: var(--accent); }
.pricing-card.enterprise .pricing-tier  { color: var(--blue); }

/* Badges */
.pricing-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid rgba(224, 32, 47, 0.35);
  padding: 3px 8px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}
.pricing-featured-badge.badge-blue {
  color: var(--blue);
  border-color: rgba(0, 118, 188, 0.35);
  animation: none;
}

/* Price display */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

/* Feature list */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.5;
}
.pricing-feature .check      { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pricing-feature .check-blue { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pricing-feature .cross      { color: var(--muted); flex-shrink: 0; opacity: 0.5; margin-top: 1px; }
.pricing-feature.dim         { color: var(--muted); opacity: 0.6; }

/* Highlighted feature row (analytics) */
.pricing-feature.feature-highlight {
  color: var(--white);
}
.pricing-feature.feature-highlight--blue .check {
  color: var(--blue);
}

/* Sub-line under feature text */
.feature-sub {
  display: block;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 4px;
  opacity: 0.85;
  text-transform: uppercase;
}
.feature-sub--blue {
  color: var(--blue);
}

/* CTA area */
.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-cta-link {
  text-decoration: none;
  justify-content: center;
}

/* Stripe button — Pro (extends btn-primary) */
.btn-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Stripe button — Enterprise (blue, clipped) */
.btn-stripe-ent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn-stripe-ent:hover  { opacity: 0.85; transform: translateY(-1px); }
.btn-stripe-ent:active { transform: none; }

/* Stripe security note */
.stripe-note {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}

/* FAQ note */
.pricing-note {
  text-align: center;
  max-width: 480px;
  margin: 40px auto 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.9;
}
.pricing-note a { color: var(--blue); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .pricing-wrap { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
