/* ══════════════════════════════════════════════════════════════
   LANDING PAGE: PRICING SHOWCASE — PRICE LOCK VAULT
   
   Most complex section featuring monument-style price display:
   - Price lock vault container with badge animation
   - Pricing card with radial glow effect
   - Price comparison (future vs launch price)
   - Savings highlight with sparkle animation
   - Guarantee seal with scroll-triggered animation
   
   Keyframes included:
   - vs-badge-slide-in (0.6s)
   - vs-pulse-rotate (2s infinite)
   - vs-lock-unlock (0.8s cubic-bezier)
   - vs-scale-in (0.6s)
   - vs-savings-pulse (0.6s cubic-bezier)
   - vs-seal-stamp (0.8s cubic-bezier)
   - vs-sparkle (1.5s infinite)
   
   Depends on:
   - design-system.css (CSS custom properties)
   - animations.css (vs-fade-in keyframe)
   ══════════════════════════════════════════════════════════════ */

#pricing.vs-pricing {
  padding-top: var(--vs-space-xl) !important;
  margin-bottom: var(--vs-space-4xl) !important;
}

/* ═══════════════════════════════════════════════════════════════
   PRICE LOCK VAULT: Monument Container & Badge
   ═══════════════════════════════════════════════════════════════ */

.vs-pricing-monument {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  --pricing-stagger-delay: 0.1s;
}

/* Limited Launch Offer Badge */
.vs-pricing-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,
      rgba(230, 154, 71, 0.95) 0%,
      rgba(212, 165, 116, 0.85) 100%);
  color: var(--vs-void);
  padding: var(--vs-space-sm) var(--vs-space-md);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: var(--vs-space-xs);
  font-size: var(--vs-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow:
    0 8px 24px rgba(230, 154, 71, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  opacity: 0;
}

/* Badge animation triggered by scroll observer */
.vs-pricing-monument.vs-animate-in-view .vs-pricing-badge {
  animation: vs-badge-slide-in 0.6s var(--vs-transition-gentle) forwards;
}

.vs-pricing-badge__icon {
  font-size: 1.2em;
  display: inline-block;
  animation: vs-pulse-rotate 2s ease-in-out infinite 0.2s;
}

.vs-pricing-badge__text {
  display: block;
}

/* Main Pricing Card */
.vs-pricing-card {
  background:
    linear-gradient(165deg,
      rgba(45, 41, 38, 0.95) 0%,
      rgba(33, 30, 27, 0.9) 100%);
  border-radius: var(--vs-radius-xl);
  padding: var(--vs-space-2xl);
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow:
    var(--vs-shadow-lg),
    inset 0 1px 0 rgba(245, 240, 232, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 1;
  /* Visible by default for fallback */
  transition: all var(--vs-transition);
  margin-top: var(--vs-space-lg);
}

/* Card fade-in triggered by scroll observer */
.vs-pricing-monument.vs-animate-in-view .vs-pricing-card {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 5) forwards;
}

.vs-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(230, 154, 71, 0.15),
    inset 0 1px 0 rgba(245, 240, 232, 0.05);
  border-color: rgba(212, 165, 116, 0.25);
}

/* Radial glow effect */
.vs-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 154, 71, 0.12) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.vs-pricing-meta {
  font-size: var(--vs-text-sm);
  color: var(--vs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--vs-space-sm);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-meta {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 1) forwards;
}

.vs-pricing-card h2 {
  margin-bottom: var(--vs-space-sm);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-card h2 {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 2) forwards;
}

.vs-pricing-subtitle {
  opacity: 1;
  /* Visible by default for fallback */
  margin-bottom: var(--vs-space-xl) !important;
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-subtitle {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 3) forwards;
}

.vs-pricing-card>p {
  margin-bottom: var(--vs-space-md);
}

/* ═══════════════════════════════════════════════════════════════
   PRICE SHOWCASE: Lock Icon + Comparison + Savings
   ═══════════════════════════════════════════════════════════════ */

.vs-pricing-showcase {
  position: relative;
  margin: var(--vs-space-2xl) 0;
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-showcase {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 4) forwards;
}

/* Lock Icon Decoration */
.vs-pricing-lock {
  text-align: center;
  margin-bottom: var(--vs-space-lg);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-lock {
  animation: vs-lock-unlock 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--pricing-stagger-delay) * 5) forwards;
}

.vs-pricing-lock__icon {
  font-size: 3rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(230, 154, 71, 0.25));
}

/* Price Comparison Section */
.vs-pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vs-space-lg);
  margin-bottom: var(--vs-space-xl);
  align-items: center;
}

/* Future Price (Strikethrough) */
.vs-pricing-comparison__future {
  display: flex;
  flex-direction: column;
  gap: var(--vs-space-xs);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-comparison__future {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 6) forwards;
}

.vs-pricing-comparison__label {
  font-size: var(--vs-text-xs);
  color: var(--vs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.vs-pricing-comparison__amount {
  font-family: 'Fraunces', serif;
  font-size: var(--vs-text-lg);
  color: var(--vs-text-muted);
  opacity: 0.6;
}

.vs-pricing-comparison__amount--strikethrough {
  position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(230, 154, 71, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Current Launch Price */
.vs-pricing-comparison__current {
  display: flex;
  flex-direction: column;
  gap: var(--vs-space-xs);
  background: linear-gradient(135deg,
      rgba(230, 154, 71, 0.1) 0%,
      rgba(212, 165, 116, 0.05) 100%);
  padding: var(--vs-space-lg);
  border-radius: var(--vs-radius-lg);
  border: 1px solid rgba(230, 154, 71, 0.2);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-comparison__current {
  animation: vs-scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--pricing-stagger-delay) * 7) forwards;
}

.vs-pricing-comparison__current .vs-pricing-comparison__label {
  color: var(--vs-accent);
  opacity: 0.9;
}

/* Price Breakdown */
.vs-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--vs-space-xs);
  font-family: 'Fraunces', serif;
  margin: 0;
}

.vs-pricing-price__amount {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--vs-accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
}

.vs-pricing-price__currency {
  font-size: var(--vs-text-lg);
  font-weight: 600;
  color: var(--vs-accent);
  opacity: 0.85;
}

.vs-pricing-price__period {
  font-size: var(--vs-text-base);
  color: var(--vs-text-muted);
  opacity: 0.7;
  margin-left: var(--vs-space-xs);
  font-family: 'Source Sans 3', sans-serif;
}

/* Savings Highlight */
.vs-pricing-savings {
  background: linear-gradient(135deg,
      rgba(230, 154, 71, 0.15) 0%,
      rgba(212, 165, 116, 0.08) 100%);
  border: 1px solid rgba(230, 154, 71, 0.25);
  border-radius: var(--vs-radius-md);
  padding: var(--vs-space-md) var(--vs-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vs-space-md);
  margin-top: var(--vs-space-lg);
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-savings {
  animation: vs-savings-pulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--pricing-stagger-delay) * 8) forwards;
}

.vs-pricing-savings__icon {
  font-size: 1.5rem;
  display: inline-block;
  animation: vs-sparkle 1.5s ease-in-out infinite;
}

.vs-pricing-savings__text {
  font-size: var(--vs-text-sm);
  font-weight: 600;
  color: var(--vs-accent);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE SEAL: "Lock in your price forever"
   ═══════════════════════════════════════════════════════════════ */

.vs-pricing-guarantee {
  background: rgba(230, 154, 71, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 154, 71, 0.15);
  border-radius: var(--vs-radius-lg);
  padding: var(--vs-space-lg);
  margin: var(--vs-space-xl) 0;
  display: flex;
  gap: var(--vs-space-lg);
  align-items: flex-start;
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-guarantee {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 9) forwards;
}

.vs-pricing-guarantee__seal {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      rgba(230, 154, 71, 0.2) 0%,
      rgba(212, 165, 116, 0.1) 100%);
  border: 1px solid rgba(230, 154, 71, 0.3);
  border-radius: 50%;
  opacity: 1;
  /* Visible by default for fallback */
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-guarantee__seal {
  animation: vs-seal-stamp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--pricing-stagger-delay) * 10) forwards;
}

.vs-pricing-guarantee__seal-icon {
  font-size: 1.5rem;
  display: block;
}

.vs-pricing-guarantee__content {
  flex: 1;
}

.vs-pricing-guarantee__title {
  font-size: var(--vs-text-sm);
  font-weight: 700;
  color: var(--vs-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--vs-space-xs);
}

.vs-pricing-guarantee__text {
  font-size: var(--vs-text-sm);
  color: var(--vs-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.vs-pricing-note {
  font-size: var(--vs-text-sm);
  opacity: 1;
  /* Visible by default for fallback */
  margin-bottom: var(--vs-space-lg) !important;
}

.vs-pricing-monument.vs-animate-in-view .vs-pricing-note {
  animation: vs-fade-in 0.6s var(--vs-transition-gentle) calc(var(--pricing-stagger-delay) * 11) forwards;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATION KEYFRAMES for Price Lock Vault
   ═══════════════════════════════════════════════════════════════ */

@keyframes vs-badge-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes vs-pulse-rotate {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(-8deg) scale(1.05);
  }

  75% {
    transform: rotate(8deg) scale(1.05);
  }
}

@keyframes vs-lock-unlock {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }

  60% {
    transform: rotate(0deg) scale(1.15);
  }

  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes vs-scale-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes vs-savings-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(230, 154, 71, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(230, 154, 71, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(230, 154, 71, 0);
  }
}

@keyframes vs-seal-stamp {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.2) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes vs-sparkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: Pricing Section (moved into main 640px block)
   ═══════════════════════════════════════════════════════════════ */
