/* Pentavox home — loaded as pentavox-home.css (after pentavox-verify-inline in PHP).
   Global layout/theme live in pentavox-verify.php; this file owns ALL home UI. */

/* ── Kadence / WP theme resets (prevents giant SVGs + color bleed) ── */
.pvx-home svg {
  display: block;
  flex-shrink: 0;
}

.pvx-home .pvx-home-value-icon svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
}

.pvx-home .pvx-home-feature-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

.pvx-home .pvx-home-btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex-shrink: 0;
}

.pvx-home .pvx-home-player-play svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

.pvx-home a.pvx-home-btn,
.pvx-home a.pvx-home-btn:hover {
  text-decoration: none !important;
}

/* Hide WordPress page title on home only */
body.pvx-has-home .entry-header,
body.pvx-has-home .page-header,
body.pvx-has-home header.entry-header,
body.pvx-has-home .wp-block-post-title,
body.pvx-has-home h1.entry-title,
body.pvx-has-home .ast-single-entry-banner,
body.pvx-has-home .page-title {
  display: none !important;
}

/* Break out of Kadence inner box — full viewport width */
body.pvx-has-home .site-content,
body.pvx-has-home .content-area,
body.pvx-has-home #primary,
body.pvx-has-home .content-wrap,
body.pvx-has-home .content-bg,
body.pvx-has-home .site-main,
body.pvx-has-home .content-container,
body.pvx-has-home .site-container,
body.pvx-has-home .entry-content-wrap,
body.pvx-has-home .entry.content-wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.pvx-has-home .site-content,
body.pvx-has-home .content-area,
body.pvx-has-home .entry-content {
  padding-top: 0;
  margin-top: 0;
}

body.pvx-has-home .entry-content > .pvx-home {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.pvx-home {
  --pvx-bg: #08080f;
  --pvx-surface: #111827;
  --pvx-surface-2: #0e0e16;
  --pvx-border: rgba(255, 255, 255, 0.08);
  --pvx-text: #f8fafc;
  --pvx-muted: #94a3b8;
  --pvx-accent: #7c3aed;
  --pvx-accent2: #6366f1;
  --pvx-glow: rgba(124, 58, 237, 0.4);
  --pvx-pad-x: var(--pvx-site-edge, clamp(16px, 3vw, 48px));
  --pvx-pad-y: clamp(48px, 5vw, 80px);
  --pvx-rail: var(--pvx-site-rail, min(1920px, calc(100vw - 32px)));
  color: var(--pvx-text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.pvx-home h1,
.pvx-home h2,
.pvx-home h3,
.pvx-home .pvx-home-btn {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.pvx-home-inner {
  width: 100%;
  max-width: var(--pvx-rail);
  margin: 0 auto;
  padding-left: var(--pvx-pad-x);
  padding-right: var(--pvx-pad-x);
  box-sizing: border-box;
}

.pvx-home-hero-copy,
.pvx-home-visual {
  min-width: 0;
}

/* Break out removed — global layout handles full width */
.pvx-home * {
  box-sizing: border-box;
}

.pvx-home-hero {
  position: relative;
  overflow: hidden;
  padding: var(--pvx-pad-y) 0;
  margin-bottom: 0;
  background:
    radial-gradient(ellipse 72% 52% at 85% 18%, rgba(124, 58, 237, 0.24), transparent 55%),
    radial-gradient(ellipse 52% 42% at 8% 82%, rgba(99, 102, 241, 0.16), transparent 50%),
    linear-gradient(165deg, #08080f 0%, #10101a 50%, #0c0c14 100%);
  border: none;
  border-bottom: 1px solid var(--pvx-border);
  box-shadow: none;
}

.pvx-home-hero::before,
.pvx-home-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pvx-home-hero::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: var(--pvx-glow);
  opacity: 0.55;
  animation: pvx-float 8s ease-in-out infinite;
}

.pvx-home-hero::after {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: -40px;
  background: rgba(168, 85, 247, 0.35);
  animation: pvx-float 10s ease-in-out infinite reverse;
}

@keyframes pvx-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.05); }
}

.pvx-home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  width: 100%;
  max-width: var(--pvx-rail);
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: var(--pvx-pad-x);
  padding-right: var(--pvx-pad-x);
}

.pvx-home-trust-full {
  display: none;
}

.pvx-home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pvx-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd6fe;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  margin-bottom: 24px;
}

.pvx-home-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pvx-pulse 2s ease-in-out infinite;
}

@keyframes pvx-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.pvx-home h1 {
  margin: 0 0 24px;
  font-size: clamp(2.625rem, 3.8vw + 1rem, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #fff;
}

.pvx-home h1 span {
  background: linear-gradient(92deg, #818cf8 0%, #a78bfa 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pvx-home-lead {
  margin: 0 0 36px;
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.3125rem);
  color: #9ca3af;
  max-width: none;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pvx-home-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.pvx-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: pointer;
  border: none;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.pvx-home-btn-primary {
  color: #fff !important;
  padding: 12px 20px;
  gap: 8px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.pvx-home-btn-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  color: #fff !important;
}

.pvx-home-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

/* Hero value props — full-width single row */
.pvx-home-values-row {
  grid-column: 1 / -1;
}

.pvx-home-values {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pvx-home-value {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 clamp(10px, 1.6vw, 18px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pvx-home-value:first-child {
  padding-left: 0;
}

.pvx-home-value:last-child {
  border-right: none;
  padding-right: 0;
}

.pvx-home-value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  border-radius: 9px;
  color: #c4b5fd;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.28);
}

.pvx-home-value-icon svg {
  width: 17px;
  height: 17px;
}

.pvx-home-value-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  flex: 1;
  min-height: 36px;
}

.pvx-home-value-copy strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f1f5f9 !important;
  line-height: 1.25;
}

.pvx-home-value-copy span {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #94a3b8 !important;
  letter-spacing: 0;
}

.pvx-home-btn-outline {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 5px 5px 22px;
  gap: 16px;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pvx-home-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  color: #fff !important;
}

.pvx-home-btn-ghost {
  color: #e2e8f0 !important;
  background: var(--pvx-surface);
  border: 1px solid var(--pvx-border);
}

.pvx-home-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff !important;
}

.pvx-home-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

/* Hero image slider — 16:10 ratio */
.pvx-home-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.pvx-home-slider-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pvx-surface);
  border: 1px solid var(--pvx-border);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.pvx-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.pvx-home-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.pvx-home-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pvx-home-slider-frame-demo {
  display: flex;
  align-items: stretch;
  padding: 14px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(30, 27, 75, 0.88));
}

.pvx-home-demo-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  font-family: "Inter", system-ui, sans-serif;
}

.pvx-home-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pvx-home-demo-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

.pvx-home-demo-pill {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c4b5fd;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(124, 58, 237, 0.15);
}

.pvx-home-demo-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pvx-home-demo-score {
  margin: 0;
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.pvx-home-demo-delta {
  margin: 6px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #34d399;
}

.pvx-home-demo-powered {
  margin: 4px 0 0;
  font-size: 0.68rem;
  color: #64748b;
}

.pvx-home-demo-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(124, 58, 237, 0.35);
  border-top-color: #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pvx-home-demo-ring span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.pvx-home-demo-spectrum {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 88px;
  padding: 8px 4px 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pvx-home-demo-spectrum span {
  flex: 1;
  height: var(--h, 30%);
  min-height: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #f472b6, #a855f7 55%, #6366f1);
  opacity: 0.85;
  animation: pvx-demo-bar 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.03s);
}

.pvx-home-demo-spectrum span:nth-child(odd) {
  --i: 1;
}

.pvx-home-demo-spectrum span:nth-child(3n) {
  --i: 2;
}

@keyframes pvx-demo-bar {
  0%, 100% { transform: scaleY(0.88); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; }
}

.pvx-home-demo-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.03em;
}

.pvx-home-demo-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
}

.pvx-home-demo-metrics span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pvx-home-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.pvx-home-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.35s ease, background 0.25s ease;
}

.pvx-home-slider-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.pvx-home-slider-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.pvx-home-section {
  margin-bottom: 0;
  padding-top: var(--pvx-pad-y);
  padding-bottom: var(--pvx-pad-y);
  border-bottom: 1px solid var(--pvx-border);
}

.pvx-home-section-features {
  background: var(--pvx-surface-2);
}

.pvx-home-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.pvx-home-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.025em;
}

.pvx-home-section-head p {
  margin: 0;
  color: var(--pvx-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pvx-home-preview {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0a12 0%, #0e0e18 100%);
  border: none;
  border-radius: 0;
  padding: var(--pvx-pad-y) var(--pvx-pad-x);
  box-shadow: none;
}

.pvx-home-preview .pvx-home-section-head h2 {
  color: #f8fafc;
}

.pvx-home-preview .pvx-home-section-head p {
  color: #94a3b8;
}

.pvx-home-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.pvx-home-player {
  display: flex;
  flex-direction: column;
}

.pvx-home-compare-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pvx-home-compare-before {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.pvx-home-compare-after {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.pvx-home-player-shell {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--pvx-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.pvx-home-player-after .pvx-home-player-shell {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 48px rgba(99, 102, 241, 0.22);
}

.pvx-home-player-viz-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(15, 23, 42, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.pvx-home-player-viz {
  display: block;
  width: 100%;
  height: 132px;
}

.pvx-home-player-viz-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(99, 102, 241, 0.45), transparent 70%);
  transition: opacity 0.15s ease;
}

.pvx-home-player-after .pvx-home-player-viz-glow {
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(168, 85, 247, 0.55), transparent 70%);
}

.pvx-home-player-freq-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
  padding: 0 2px;
}

.pvx-home-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pvx-home-player-play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #475569, #64748b);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pvx-home-player-after .pvx-home-player-play {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
}

.pvx-home-player-play:hover:not(:disabled) {
  transform: scale(1.06);
}

.pvx-home-player-play:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pvx-home-player-play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.pvx-home-player-icon-pause {
  display: none;
}

.pvx-home-player-is-playing .pvx-home-player-icon-play {
  display: none;
}

.pvx-home-player-is-playing .pvx-home-player-icon-pause {
  display: block;
}

.pvx-home-player-seek-wrap {
  flex: 1;
  min-width: 0;
}

.pvx-home-player-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
}

.pvx-home-player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.25);
}

.pvx-home-player-after .pvx-home-player-seek::-webkit-slider-thumb {
  background: #c4b5fd;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.35);
}

.pvx-home-player-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #94a3b8;
}

.pvx-home-player-after .pvx-home-player-seek::-moz-range-thumb {
  background: #c4b5fd;
}

.pvx-home-player-seek:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pvx-home-player-times {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #94a3b8;
}

.pvx-home-player-audio {
  display: none;
}

.pvx-home-player-empty {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
}

.pvx-home-compare-hint {
  text-align: center;
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 24px 0 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.pvx-home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.pvx-home-feature {
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--pvx-border);
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pvx-home-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.12);
}

.pvx-home-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: #a78bfa;
}

.pvx-home-feature-icon svg {
  width: 18px;
  height: 18px;
}

.pvx-home-feature h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.pvx-home-feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--pvx-muted);
  line-height: 1.6;
}

.pvx-home-final {
  text-align: center;
  padding: var(--pvx-pad-y) var(--pvx-pad-x) calc(var(--pvx-pad-y) + 8px);
  border-radius: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.35), transparent 65%),
    linear-gradient(165deg, #1a1040 0%, #2d1b69 45%, #1e1b4b 100%);
  color: #fff;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}

.pvx-home-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
}

.pvx-home-final p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pvx-home-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pvx-home-reveal.pvx-home-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .pvx-home-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pvx-home-hero-copy {
    align-items: center;
  }
  .pvx-home-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .pvx-home-cta {
    justify-content: center;
  }
  .pvx-home-values,
  .pvx-home-values-row {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
  .pvx-home-value {
    padding: 0;
    border-right: none;
  }
  .pvx-home-value-copy {
    min-height: 0;
  }
  .pvx-home-value-copy strong {
    font-size: 0.875rem;
  }
  .pvx-home-value-copy span {
    font-size: 0.8125rem;
  }
  .pvx-home-features {
    grid-template-columns: 1fr;
  }
  .pvx-home-compare {
    grid-template-columns: 1fr;
  }
  .pvx-home-slider {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .pvx-home-hero {
    padding: 40px 20px 32px;
  }
}
