/* Gated Content Obfuscation Styles (initial stub) */
.gated-content-obfuscated {
  filter: blur(6px) grayscale(0.2);
  pointer-events: none;
  user-select: none;
  position: relative;
  transition: filter 0.3s;
}

main#primary:has(.gated-content-block) > *:not(.gated-content-block) {
  pointer-events: none;
  user-select: none;
  filter: blur(10px) grayscale(0.2);
}

.gated-content-block {
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 7rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gated-content-leadform {
  width: 100%;
  max-width: 45rem;
  max-height: 100%;
  height: auto;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 6px;
}

.gated-content-unlocked {
  filter: none !important;
  pointer-events: auto;
  user-select: auto;
}
