/* ====================================
   FOUNDER TIER
   ==================================== */

.founder-tier-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.founder-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(245, 158, 11, 0.1));
  border: 2px solid var(--golden);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
  transition: all 0.3s;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.25);
}

.founder-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--golden), #ef4444);
  color: white;
  padding: 0.35rem 1.2rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
}

.founder-card h3 {
  color: var(--golden);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.founder-cta {
  display: block;
  text-decoration: none;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.founder-note {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

/* ====================================
   INELIGIBLE / COMING SOON TIERS
   ==================================== */

.standard-tiers-section {
  margin-top: 3rem;
}

.standard-tiers-section h3 {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.coming-soon-tag {
  background: rgba(107, 114, 128, 0.3);
  color: #9ca3af;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: normal;
}

.tiers-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-grid-3d.ineligible {
  opacity: 0.5;
  pointer-events: none;
}

.pricing-card-3d.disabled {
  position: relative;
}

.ineligible-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 20px;
}

.ineligible-label {
  background: rgba(107, 114, 128, 0.8);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

