/* ── SHIMMER BORDER — Business card ── */
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(217,119,6,0.3), 0 8px 32px rgba(0,0,0,0.2), 0 0 20px rgba(217,119,6,0.08); }
  50%       { box-shadow: 0 0 0 1px rgba(217,119,6,0.7), 0 8px 32px rgba(0,0,0,0.2), 0 0 32px rgba(217,119,6,0.18); }
}

@keyframes borderSweep {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

@keyframes innerShine {
  0%   { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(350%) skewX(-20deg); }
}

@keyframes particlePop {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

.shimmer-card {
  animation: borderGlow 2.5s ease-in-out infinite;
  border-color: rgba(217,119,6,0.35);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.3s ease !important;
}

.shimmer-card::before {
  background: linear-gradient(90deg, transparent, rgba(217,119,6,0.35), transparent);
}

.shimmer-card::after {
  background: linear-gradient(180deg, rgba(217,119,6,0.2), transparent, rgba(217,119,6,0.08));
}

/* Effect D — inner shine strip */
.shimmer-card .shine-strip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}
.shimmer-card .shine-strip::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
}

/* On hover — all 4 effects */
.shimmer-card:hover {
  animation: none !important;
  background: rgba(255,255,255,0.13) !important;
}

/* Effect A — amber glow explosion */
.shimmer-card:hover {
  box-shadow:
    0 0 0 1px rgba(217,119,6,0.8),
    0 0 40px 8px rgba(217,119,6,0.35),
    0 0 80px 16px rgba(217,119,6,0.15),
    0 32px 64px rgba(0,0,0,0.5) !important;
}

/* Effect C — border sweep on hover */
.shimmer-card:hover::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,200,80,0.9) 40%,
    rgba(217,119,6,1) 50%,
    rgba(255,200,80,0.9) 60%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: borderSweep 0.8s ease-in-out forwards;
  height: 2px;
  top: -1px;
}

/* Effect D — diagonal inner shine */
.shimmer-card:hover .shine-strip::after {
  animation: innerShine 0.6s ease-out forwards;
}

/* Effect B — particles via JS below */
.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D97706;
  pointer-events: none;
  z-index: 20;
  animation: particlePop 0.6s ease-out forwards;
}

/* Hover override for Business */
.shimmer-card.reveal.in-view:hover {
  transform: rotate(12deg) translateY(0px) translateX(20px) scale(1.1) !important;
  z-index: 10 !important;
}

.price-card.featured {
  background: oklch(28% 0.012 40 / 0.92);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 30px 8px rgba(255, 255, 255, 0.04);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(217,119,6,0.4);
  z-index: 10;
}

.price-plan {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
}

.price-tagline {
  font-size: 12px;
  color: oklch(100% 0 0 / 0.45);
  margin-bottom: 24px;
}

.price-amount {
  margin-bottom: 8px;
}

.price-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: white;
  line-height: 1;
}

.price-per {
  font-size: 13px;
  font-weight: 400;
  color: oklch(100% 0 0 / 0.45);
}

.price-monthly-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: oklch(100% 0 0 / 0.35);
  margin-bottom: 24px;
  min-height: 18px;
}

.price-divider {
  height: 0.5px;
  background: oklch(100% 0 0 / 0.1);
  margin-bottom: 20px;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: oklch(100% 0 0 / 0.6);
}

.price-feature svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--amber-bright); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 1px;
}

.price-card.featured .price-plan { color: white; }
.price-card.featured .price-tagline { color: oklch(100% 0 0 / 0.5); }
.price-card.featured .price-num { color: white; }
.price-card.featured .price-per { color: oklch(100% 0 0 / 0.5); }
.price-card.featured .price-monthly-note { color: oklch(100% 0 0 / 0.4); }
.price-card.featured .price-divider { background: oklch(100% 0 0 / 0.15); }
.price-card.featured .price-feature { color: oklch(100% 0 0 / 0.7); }
.price-card.featured .price-feature svg { stroke: var(--amber-bright); }

.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding: 13px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}

.price-cta.outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}
.price-cta.outline:hover {
  border-color: var(--amber);
  background: oklch(68% 0.18 58 / 0.15);
}

.price-cta.filled {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 16px oklch(68% 0.18 58 / 0.3);
}
.price-cta.filled:hover {
  background: var(--amber-dim);
  box-shadow: 0 6px 24px oklch(68% 0.18 58 / 0.4);
}
