/* VotePulse Enterprise — campaign headquarters layer */

/* Hero live activity feed */
.vp-hero-live-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 25;
  overflow: hidden;
}

.vp-live-toast {
  position: absolute;
  right: 0.5rem;
  max-width: 220px;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: vp-toast-in 0.5s ease both, vp-toast-out 0.4s ease 4.2s both;
  font-size: 0.68rem;
}

.vp-live-toast:nth-child(odd) { left: 0.5rem; right: auto; }

.vp-live-toast-title {
  font-weight: 700;
  color: #34d399;
  margin-bottom: 0.15rem;
}

.vp-live-toast-loc {
  color: #fff;
  font-weight: 600;
}

.vp-live-toast-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  margin-top: 0.15rem;
}

@keyframes vp-toast-in {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes vp-toast-out {
  to { opacity: 0; transform: translateY(-8px); }
}

.vp-dash-readiness-block {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.vp-dash-ready-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
}

.vp-dash-ready-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 0.5rem;
}

.vp-dash-ready-pct {
  font-family: ui-monospace, monospace;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.vp-dash-ready-bar {
  flex: 1;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.vp-dash-ready-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #fbbf24, #34d399);
  border-radius: 9999px;
}

.vp-dash-ai-rec h4 {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.5rem 0 0.35rem;
}

.vp-dash-ai-rec ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-dash-ai-rec li {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vp-dash-ai-rec li:last-child { border-bottom: none; }

/* Problem + cost sections */
.vp-problem-section {
  background: linear-gradient(180deg, #0a0505 0%, #000 100%);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.vp-problem-section .vp-campaign-title {
  max-width: 36rem;
}

.vp-cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .vp-cost-grid { grid-template-columns: 1fr; }
}

.vp-cost-col {
  padding: 1.5rem;
  border-radius: 1rem;
}

.vp-cost-col.vp-without {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.vp-cost-col.vp-with {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.vp-cost-col h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.vp-cost-col.vp-without h3 { color: #f87171; }
.vp-cost-col.vp-with h3 { color: #34d399; }

.vp-cost-item {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.75);
}

/* GroundForce phone mockup */
.vp-gf-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .vp-gf-layout { grid-template-columns: 1fr; }
}

.vp-phone-mock {
  margin: 0 auto;
  width: 260px;
  padding: 0.75rem;
  border-radius: 2rem;
  background: #111;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.vp-phone-screen {
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #071a0d, #030805);
  min-height: 420px;
  padding: 1rem 0.85rem;
}

.vp-phone-notch {
  width: 5rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 1rem;
}

.vp-phone-app-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.75rem;
}

.vp-phone-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vp-phone-feature span:first-child {
  color: #34d399;
  font-weight: 700;
}

/* AI morning briefing */
.vp-ai-briefing {
  padding: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.vp-ai-briefing h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.vp-ai-briefing .vp-brief-stat {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  font-weight: 700;
  font-size: 0.8rem;
}

.vp-ai-briefing ul {
  margin: 0.5rem 0;
  padding-left: 1.1rem;
}

.vp-ai-generate-btn {
  margin-top: 1rem;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  background: #059669;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.vp-ai-generate-btn:hover { background: #10b981; }

/* Trust logos */
.vp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 2rem;
}

.vp-trust-logo {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vp-trust-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Interactive demo */
.vp-interactive-demo {
  background: #030806;
}

.vp-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vp-demo-tab {
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.vp-demo-tab.vp-active,
.vp-demo-tab:hover {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

.vp-demo-stage {
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: #050a07;
  min-height: 320px;
  padding: 1.25rem;
}

.vp-demo-sim h4 {
  color: #34d399;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}

.vp-demo-sim textarea,
.vp-demo-sim input {
  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.85rem;
  margin-bottom: 0.75rem;
}

.vp-demo-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  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.75);
  line-height: 1.6;
}

/* Footer enterprise */
.vp-footer-enterprise {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 1.5rem 2rem;
  background: #020403;
}

.vp-footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
}

.vp-footer-col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 0.75rem;
}

.vp-footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0.25rem 0;
  cursor: pointer;
}

.vp-footer-col a:hover { color: #34d399; }

/* Nav CTAs */
#root nav .flex.items-center.gap-3.flex-shrink-0,
#root nav .flex.items-center.gap-3 {
  align-items: center !important;
  gap: 0.5rem !important;
}

.vp-nav-login-btn {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.5rem !important;
  background: transparent !important;
  border: none !important;
  transition: color 0.2s ease !important;
}

.vp-nav-login-btn:hover {
  color: #fff !important;
}

.vp-nav-start-free {
  padding: 0.5rem 1rem !important;
  border-radius: 0.55rem !important;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.22) 0%, rgba(5, 150, 105, 0.18) 100%) !important;
  border: 1px solid rgba(52, 211, 153, 0.45) !important;
  color: #6ee7b7 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.03em !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
}

.vp-nav-start-free:hover {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.32) 0%, rgba(5, 150, 105, 0.26) 100%) !important;
  border-color: rgba(110, 231, 183, 0.6) !important;
  transform: translateY(-1px);
}

.vp-nav-book-demo {
  padding: 0.5rem 1rem !important;
  border-radius: 0.55rem !important;
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%) !important;
  border: 1px solid rgba(248, 113, 113, 0.35) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28) !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.vp-nav-book-demo:hover {
  background: linear-gradient(180deg, #f87171 0%, #ef4444 100%) !important;
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.36) !important;
  transform: translateY(-1px);
}

/* Panel extras */
.vp-panel-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vp-panel-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.vp-panel-cta-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.vp-panel-cta-row button {
  flex: 1;
  min-width: 140px;
  padding: 0.65rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.vp-panel-cta-primary { background: #059669; color: #fff; }
.vp-panel-cta-ghost { background: transparent; border: 1px solid rgba(16, 185, 129, 0.4) !important; color: #34d399; }

.vp-panel-disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
  font-style: italic;
}
