/* VotePulse — premium Learn More product pages */

.vp-feature-panel.vp-product-panel {
  width: min(680px, 100vw);
}

.vp-product-page {
  padding-bottom: 1rem;
}

.vp-pp-hero {
  position: relative;
  padding: 1.5rem 0 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  overflow: hidden;
}

.vp-pp-hero-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: vp-pp-pulse 4s ease-in-out infinite;
}

@keyframes vp-pp-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.vp-pp-hero h2 {
  position: relative;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.vp-pp-outcome {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6ee7b7;
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.vp-pp-sub {
  position: relative;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.5;
}

.vp-pp-section {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vp-pp-section:last-child {
  border-bottom: none;
}

.vp-pp-section h3 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34d399;
  margin: 0 0 0.65rem;
}

.vp-pp-section p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

.vp-pp-problems li {
  color: rgba(252, 165, 165, 0.9);
}

.vp-pp-steps {
  counter-reset: vpstep;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vp-pp-steps li {
  counter-increment: vpstep;
  position: relative;
  padding: 0.45rem 0 0.45rem 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.vp-pp-steps li::before {
  content: counter(vpstep);
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-pp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vp-pp-tag {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #a7f3d0;
  font-weight: 600;
}

.vp-pp-tag.vp-ai {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.vp-pp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.vp-pp-stat {
  padding: 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.vp-pp-stat-val {
  font-family: ui-monospace, monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: #34d399;
}

.vp-pp-stat-lbl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}

.vp-pp-sandbox {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.vp-pp-sandbox textarea {
  width: 100%;
  padding: 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
  resize: vertical;
  min-height: 3rem;
  font-family: inherit;
}

.vp-pp-try-btn {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #059669;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  width: 100%;
}

.vp-pp-try-btn:hover { background: #10b981; }

.vp-pp-sandbox-result {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  display: none;
}

.vp-pp-sandbox-result.vp-show { display: block; animation: vp-fade-up 0.35s ease; }

.vp-pp-workflow {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.vp-pp-wf-step {
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 100px;
  text-align: center;
  line-height: 1.3;
}

.vp-pp-wf-step::after {
  content: '→';
  margin-left: 0.35rem;
  color: rgba(16, 185, 129, 0.5);
}

.vp-pp-wf-step:last-child::after { content: ''; }

.vp-pp-faq details {
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vp-pp-faq summary {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.vp-pp-faq summary::-webkit-details-marker { display: none; }

.vp-pp-faq p {
  padding: 0 0.85rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.vp-pp-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vp-pp-related-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}

.vp-pp-related-btn:hover {
  border-color: rgba(16, 185, 129, 0.45);
  color: #34d399;
}

.vp-panel-footer.vp-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 5;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.vp-pp-disclaimer {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-top: 0.5rem;
}

.vp-panel-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.vp-panel-list li { margin-bottom: 0.35rem; }
