/* Wait List front-end styles */
.wl-hero {
  position: relative;
  min-height: 70vh;
  padding: 56px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  background-size: cover;
  background-position: center;
}

.wl-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 30% 20%, rgba(255,255,255,.10), rgba(0,0,0,.85));
}

.wl-shell {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.wl-panel {
  max-width: 520px;
  background: rgba(10,10,10,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff !important;
}

.wl-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.06) !important;
  margin-bottom: 12px;
}

.wl-title {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 700;
}

.wl-copy {
  opacity: .92;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.wl-form {
  margin-top: 14px;
}

.wl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

@media (min-width: 680px){
  .wl-grid { grid-template-columns: 1fr 1fr; }
}

.wl-field label {
  display: block;
  font-size: 13px;
  opacity: .9;
  margin-bottom: 6px;
}

.wl-field input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  outline: none;
}
.wl-field input::placeholder { color: rgba(255,255,255,.6); }
.wl-field input:focus {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.09);
}

.wl-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  background: #fff;
  color: #000;
  transition: transform .08s ease, opacity .2s ease;
}
.wl-btn:hover { opacity: .92; }
.wl-btn:active { transform: translateY(1px); }

.wl-alert {
  border-radius: 12px;
  padding: 10px 12px;
  margin: 12px 0 4px;
  font-size: 14px;
}
.wl-alert-success {
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.35);
}
.wl-alert-error {
  background: rgba(239,68,68,.14);
  border: 1px solid rgba(239,68,68,.35);
}

.wl-privacy {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .75;
  text-align: center;
}

/* Normalize box sizing within wait list UI */
.wl-hero, .wl-hero * { box-sizing: border-box; }

/* Improve form layout + input appearance (themes often override inputs heavily) */
.wl-grid{
  gap: 16px !important;
  column-gap: 16px !important;
  row-gap: 14px !important;
}

.wl-field label{
  font-weight: 600;
  margin-bottom: 8px;
}

.wl-field input{
  display: block;
  height: 46px;
  line-height: 1.2;
  padding: 12px 14px;
  border-radius: 12px;
  appearance: none;
  -webkit-appearance: none;
}

.wl-field input:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
}

/* Dialog / message card */
.wl-dialog{
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0 16px;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08);
}
.wl-dialog-title{
  font-weight: 800;
  margin-bottom: 4px;
}
.wl-dialog-body{
  opacity: .9;
  font-size: 14px;
  line-height: 1.45;
}
.wl-dialog-error{
  border-color: rgba(239,68,68,.45);
  background: rgba(239,68,68,.12);
}

.wl-recaptcha{
  margin: 10px 0 14px;
  display: flex;
  justify-content: center;
}
.wl-recaptcha iframe{
  max-width: 100%;
}
