/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Typed.js cursor styling */
.typed-text-container {
  display: inline-block;
  position: relative;
}

.typed-cursor {
  color: #ea580c; /* Orange-600 to match the text */
  animation: blink 1s infinite;
  font-weight: bold;
  display: inline;
  vertical-align: baseline;
  line-height: inherit;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Pricing cards hover effects */
.pricing-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Enhanced featured card styling */
.pricing-card.featured {
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(45deg, #ea580c, #f97316, #ea580c);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-card.featured:hover::before {
  opacity: 0.1;
}

