/* [project]/src/components/waitlist/waitlist.css [app-client] (css) */
.wl-form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.wl-field {
  background: var(--cream-soft);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  gap: 10px;
  padding: 8px;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
}

.wl-field:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px #1e29390f;
}

.wl-email {
  font-family: var(--font-sans), sans-serif;
  color: var(--navy);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 16px;
}

.wl-email::placeholder {
  color: var(--ink-light);
}

.wl-cta {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-mono), monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 11px;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  font-size: 11px;
  transition: background .2s, transform .15s;
  display: inline-flex;
}

.wl-cta:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
}

.wl-cta svg {
  flex-shrink: 0;
}

.wl-rgpd {
  color: var(--ink-muted);
  cursor: pointer;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
}

.wl-rgpd input {
  appearance: none;
  border: 1.5px solid var(--line-strong);
  background: var(--cream-soft);
  cursor: pointer;
  border-radius: 5px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  transition: background .15s, border-color .15s;
  position: relative;
}

.wl-rgpd input:checked {
  background: var(--navy);
  border-color: var(--navy);
}

.wl-rgpd input:checked:after {
  content: "";
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 9px;
  position: absolute;
  top: 1.5px;
  left: 5px;
  transform: rotate(45deg);
}

.wl-rgpd a {
  color: var(--navy);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.wl-err {
  color: #b4452f;
  font-size: 13px;
  font-weight: 500;
}

.wl-invited {
  font-family: var(--font-mono), monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--mint);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 10.5px;
}

.wl-link {
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-underline-offset: 3px;
  background: none;
  border: none;
  align-self: center;
  padding: 4px;
  font-size: 10px;
  text-decoration: underline;
}

.wl-link:hover {
  color: var(--navy);
}

.wl-pending {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.wl-mailicon {
  background: var(--mist);
  width: 58px;
  height: 58px;
  color: var(--navy);
  border-radius: 50%;
  place-items: center;
  margin-bottom: 4px;
  display: grid;
}

.wl-pending h3 {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -.01em;
  font-size: 24px;
  font-weight: 700;
}

.wl-pending-sub {
  color: var(--ink-muted);
  font-size: 15px;
}

.wl-pending-sub strong {
  color: var(--navy);
}

.wl-pending-note {
  color: var(--ink-light);
  max-width: 360px;
  font-size: 13px;
}

.wl-pending .wl-cta {
  justify-content: center;
  margin-top: 8px;
}

.wl-done {
  flex-direction: column;
  gap: 22px;
  display: flex;
}

.wl-pos {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0 4px;
  display: flex;
}

.wl-pos-label {
  color: var(--ink-muted);
  white-space: nowrap;
}

.wl-pos-num {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -.03em;
  font-size: clamp(46px, 9vw, 76px);
  font-weight: 800;
  line-height: .95;
}

.wl-pos-sub {
  color: var(--ink-muted);
}

.wl-reward {
  border: 1px solid var(--line);
  background: var(--cream-soft);
  border-radius: 16px;
  padding: 18px 20px;
}

.wl-reward-top {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.wl-reward-top .mono {
  color: var(--ink-muted);
}

.wl-reward-need {
  color: var(--navy);
  text-align: right;
  font-size: 13px;
  font-weight: 600;
}

.wl-bar {
  background: var(--mist);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.wl-bar span {
  background: var(--mint-deep);
  border-radius: 999px;
  height: 100%;
  transition: width .5s;
  display: block;
}

.wl-reward-lead {
  color: var(--ink-muted);
  margin-top: 10px;
  font-size: 13px;
}

.wl-reward.win {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  align-items: center;
  gap: 16px;
  display: flex;
}

.wl-reward-badge {
  background: var(--mint);
  width: 42px;
  height: 42px;
  color: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  font-size: 20px;
  display: grid;
}

.wl-reward-h {
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.wl-reward-s {
  color: #f2ede2b8;
  font-size: 14px;
}

.wl-stats {
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
  overflow: hidden;
}

.wl-stat {
  background: var(--cream-soft);
  text-align: center;
  padding: 16px 12px;
}

.wl-stat-v {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -.02em;
  font-size: 26px;
  font-weight: 800;
  display: block;
}

.wl-stat-l {
  color: var(--ink-muted);
  margin-top: 4px;
  font-size: 8.5px;
  display: block;
}

.wl-share {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.wl-meta {
  color: var(--ink-muted);
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  display: flex;
}

.wl-meta b {
  font-family: var(--font-display), sans-serif;
  color: var(--navy);
  letter-spacing: -.01em;
  font-size: 15px;
  font-weight: 800;
}

.wl-meta-sep {
  background: var(--line-strong);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

.wl-share-h {
  font-family: var(--font-display), sans-serif;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
}

.wl-share-sub {
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.wl-linkbox {
  background: var(--cream-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  gap: 8px;
  padding: 6px;
  display: flex;
}

.wl-reflink {
  min-width: 0;
  font-family: var(--font-mono), monospace;
  color: var(--navy);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 8px 10px;
  font-size: 13px;
}

.wl-copy {
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 10px;
  transition: background .2s;
}

.wl-copy:hover {
  background: var(--navy-soft);
}

.wl-copy.ok {
  background: var(--mint-deep);
}

.wl-share-btns {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.wl-sbtn {
  text-align: center;
  border: 1px solid var(--line-strong);
  min-width: 88px;
  color: var(--navy);
  font-family: var(--font-mono), monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 10px;
  flex: 1;
  padding: 11px 10px;
  font-size: 10px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.wl-sbtn:hover {
  border-color: var(--navy);
  background: #1e29390d;
}

.wl-demo-ref {
  color: var(--ink-light);
  margin: 16px auto 0;
  display: block;
}

.wl-modal {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
  position: fixed;
  inset: 0;
}

.wl-modal.open {
  display: flex;
}

.wl-modal-scrim {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #141b2585;
  animation: .3s wlFade;
  position: absolute;
  inset: 0;
}

@keyframes wlFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.wl-modal-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  padding: 34px 30px 26px;
  animation: .4s cubic-bezier(.2, .8, .2, 1) wlPop;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 40px 90px -30px #141b258c;
}

@keyframes wlPop {
  from {
    opacity: 0;
    transform: translateY(24px)scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.wl-modal-x {
  border: 1px solid var(--line);
  background: var(--cream-soft);
  cursor: pointer;
  width: 34px;
  height: 34px;
  color: var(--navy);
  border-radius: 50%;
  place-items: center;
  transition: background .2s;
  display: grid;
  position: absolute;
  top: 16px;
  right: 16px;
}

.wl-modal-x:hover {
  background: var(--mist);
}

.wl-modal-head {
  text-align: center;
  margin-bottom: 22px;
}

.wl-modal-symbol {
  background: var(--navy);
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  -webkit-mask: url("/assets/woozoo-symbol.png") center / contain no-repeat;
  mask: url("/assets/woozoo-symbol.png") center / contain no-repeat;
}

.wl-modal-title {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -.01em;
  font-size: 26px;
  font-weight: 700;
}

.wl-modal-sub {
  color: var(--ink-muted);
  margin-top: 6px;
  font-size: 15px;
}

.wl-modal-counter {
  font-family: var(--font-mono), monospace;
  letter-spacing: .08em;
  color: var(--ink-muted);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 14px;
  font-size: 11px;
  display: inline-flex;
}

.wl-modal-counter strong {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
}

.wl-dotlive {
  background: var(--mint-deep);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s infinite wlPulse;
  box-shadow: 0 0 #8fb0a899;
}

@keyframes wlPulse {
  0% {
    box-shadow: 0 0 #8fb0a88c;
  }

  70% {
    box-shadow: 0 0 0 7px #8fb0a800;
  }

  100% {
    box-shadow: 0 0 #8fb0a800;
  }
}

.wl-modal-full {
  text-align: center;
  font-family: var(--font-mono), monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 18px;
  font-size: 10px;
  text-decoration: none;
  display: block;
}

.wl-modal-full:hover {
  color: var(--navy);
}

.wl-pill {
  z-index: 900;
  background: var(--navy);
  min-width: 200px;
  height: 60px;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-sans), sans-serif;
  text-align: left;
  opacity: 0;
  border: none;
  border-radius: 16px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  transition: opacity .5s cubic-bezier(.2, .8, .2, 1), transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .2s;
  display: inline-flex;
  position: fixed;
  bottom: 22px;
  right: 22px;
  transform: translateY(18px)scale(.96);
  box-shadow: 0 18px 40px -16px #141b2599;
}

.wl-pill.in {
  opacity: 1;
  transform: none;
}

.wl-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px #141b25b3;
}

.wl-pill-dot {
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  animation: 2s infinite wlPulse;
  box-shadow: 0 0 #b8cfc999;
}

.wl-pill-text {
  flex-direction: column;
  line-height: 1.15;
  display: flex;
}

.wl-pill-main {
  letter-spacing: -.01em;
  font-size: 14px;
  font-weight: 600;
}

.wl-pill-sub {
  font-family: var(--font-mono), monospace;
  letter-spacing: .04em;
  color: #f2ede2a8;
  margin-top: 2px;
  font-size: 9.5px;
}

.wl-pill-sub strong {
  color: var(--mint);
  font-weight: 600;
}

.wl-pill-arrow {
  opacity: .7;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform .2s;
}

.wl-pill:hover .wl-pill-arrow {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 520px) {
  .wl-pill {
    min-width: 0;
    max-width: calc(100vw - 28px);
    bottom: 14px;
    right: 14px;
  }

  .wl-pill-main {
    white-space: nowrap;
  }

  .wl-pill-sub {
    display: none;
  }

  .wl-field {
    flex-direction: column;
  }

  .wl-cta {
    justify-content: center;
  }

  .wl-modal {
    padding: 16px;
  }

  .wl-modal-card {
    border-radius: 22px;
    max-height: 92vh;
    padding: 28px 20px 22px;
  }

  .wl-stat-v {
    font-size: 22px;
  }

  .wl-sbtn {
    min-width: calc(50% - 4px);
  }
}

/*# sourceMappingURL=src_components_waitlist_waitlist_07o6vly.css.map*/