/* CTA frame — bordered call-to-action panel (vanilla cta-3 port) */

.vr-try-section .container {
  display: flex;
  justify-content: center;
}

.vr-cta-frame {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 48rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border-quiet);
  border-bottom: 1px solid var(--border-quiet);
  background: radial-gradient(
    35% 80% at 25% 0%,
    color-mix(in srgb, var(--text-primary) 8%, transparent),
    transparent
  );
}

.vr-cta-frame__corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text-secondary);
  stroke-width: 1;
  pointer-events: none;
  z-index: 1;
}

.vr-cta-frame__corner--tl {
  top: -0.78rem;
  left: -0.72rem;
}

.vr-cta-frame__corner--tr {
  top: -0.78rem;
  right: -0.72rem;
}

.vr-cta-frame__corner--bl {
  bottom: -0.78rem;
  left: -0.72rem;
}

.vr-cta-frame__corner--br {
  right: -0.72rem;
  bottom: -0.78rem;
}

.vr-cta-frame__rail {
  pointer-events: none;
  position: absolute;
  top: -1.5rem;
  bottom: -1.5rem;
  width: 1px;
  border-left: 1px solid var(--border-quiet);
}

.vr-cta-frame__rail--left {
  left: 0;
}

.vr-cta-frame__rail--right {
  right: 0;
  border-left: none;
  border-right: 1px solid var(--border-quiet);
}

.vr-cta-frame__center-line {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  height: 100%;
  border-left: 1px dashed var(--border-quiet);
  transform: translateX(-50%);
}

.vr-cta-frame__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.vr-cta-frame__content .vr-kicker {
  margin-bottom: 0.25rem;
}

.vr-cta-frame__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
}

.vr-cta-frame__desc {
  margin: 0.35rem auto 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.vr-cta-frame__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vr-cta-frame__actions .btn-primary,
.vr-cta-frame__actions .btn-ghost {
  min-height: 2.5rem;
}

@media (min-width: 640px) {
  .vr-cta-frame {
    padding: 2rem 1.5rem;
    gap: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vr-cta-frame__actions .btn-primary,
  .vr-cta-frame__actions .btn-ghost {
    transition: none;
  }
}
