/* CartaLuna v3.3 · selector funnel + decorative matrix astrolabe on input pages.
   The astrolabe never takes vertical space on phones: the date fields stay in the first view. */

.v33-form-with-star{
  width:min(900px,calc(100vw - 40px));
  margin-left:50%;
  transform:translateX(-50%);
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:34px;
  align-items:center;
  position:relative;
}
.v33-form-fields{min-width:0;position:relative;z-index:2}
.v33-form-star{
  width:300px;
  height:300px;
  display:grid;
  place-items:center;
  position:relative;
  pointer-events:none;
  opacity:.94;
}
.v33-form-star .v33-entry-astrolabe{
  width:100%!important;
  max-width:none!important;
  display:block;
  animation:none!important;
  transform:none!important;
  filter:drop-shadow(0 20px 38px rgba(0,0,0,.22))!important;
}
/* Only tiny accents move; the astrolabe itself stays still. */
.v33-form-star::before,.v33-form-star::after{
  content:"";
  position:absolute;
  width:5px;height:5px;border-radius:50%;
  background:var(--brass);
  box-shadow:0 0 12px rgba(210,169,88,.36);
  opacity:.55;
  animation:v33Particle 8s ease-in-out infinite;
}
.v33-form-star::before{left:17%;top:19%}
.v33-form-star::after{right:13%;bottom:21%;animation-delay:-3.4s;animation-duration:10s}
@keyframes v33Particle{0%,100%{transform:translate3d(0,0,0);opacity:.32}50%{transform:translate3d(3px,-7px,0);opacity:.75}}

/* Keep the input area visually dominant. */
.v33-form-fields .go{box-shadow:0 9px 26px rgba(210,169,88,.13)}

@media(max-width:700px){
  .v33-form-with-star{
    width:100%;
    margin-left:0;
    transform:none;
    display:block;
    position:relative;
    overflow:visible;
  }
  .v33-form-star{
    position:absolute;
    z-index:0;
    width:190px;
    height:190px;
    right:-28px;
    top:-166px;
    opacity:.27;
  }
  .v33-form-fields{position:relative;z-index:2}
}
@media(max-width:400px){
  .v33-form-star{width:176px;height:176px;right:-38px;top:-154px;opacity:.24}
}
@media(prefers-reduced-motion:reduce){.v33-form-star::before,.v33-form-star::after{animation:none!important}}
