:root {
  --vo-orange: #ff6a00;
  --vo-black: #0f0f0f;
  --vo-gray: #1c1c1c;
  --vo-muted: #696661;
  --vo-line: rgba(15, 15, 15, 0.11);
  --vo-ivory: #f8f5f0;
}

html.vo-waitlist-is-checking body {
  visibility: hidden !important;
}

html.vo-waitlist-is-active,
html.vo-waitlist-is-active body {
  overflow: hidden !important;
}

html.vo-waitlist-is-active body > * {
  visibility: hidden !important;
}

html.vo-waitlist-is-active body > #vo-waitlist-gate {
  visibility: visible !important;
}

#vo-waitlist-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  overflow: auto;
  color: var(--vo-black);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 106, 0, 0.14), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 194, 148, 0.23), transparent 30%),
    linear-gradient(145deg, #fff 0%, var(--vo-ivory) 56%, #f1ede7 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

#vo-waitlist-gate::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.55;
  background:
    repeating-radial-gradient(
      ellipse at 76% 44%,
      transparent 0 20px,
      rgba(255, 106, 0, 0.075) 21px 22px,
      transparent 23px 39px
    );
  transform: rotate(-9deg);
}

#vo-waitlist-gate::after {
  content: "";
  position: fixed;
  right: -11vw;
  bottom: -34vh;
  z-index: -1;
  width: min(860px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: var(--vo-black);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 130px rgba(255, 106, 0, 0.16);
}

.vo-waitlist-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.vo-waitlist-nav {
  width: 100%;
  margin-top: 22px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 55px rgba(15, 15, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.vo-waitlist-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vo-black);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.vo-waitlist-logo strong {
  color: var(--vo-orange);
  font-weight: 700;
}

.vo-waitlist-mark {
  height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.vo-waitlist-mark i {
  display: block;
  width: 3px;
  border-radius: 99px;
  background: var(--vo-orange);
}

.vo-waitlist-mark i:nth-child(1),
.vo-waitlist-mark i:nth-child(5) { height: 9px; }
.vo-waitlist-mark i:nth-child(2),
.vo-waitlist-mark i:nth-child(4) { height: 18px; }
.vo-waitlist-mark i:nth-child(3) { height: 24px; }

.vo-waitlist-badge {
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--vo-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vo-waitlist-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
  padding: clamp(62px, 9vh, 124px) 12px clamp(48px, 7vh, 92px);
}

.vo-waitlist-copy {
  max-width: 690px;
}

.vo-waitlist-eyebrow {
  margin: 0 0 22px;
  color: var(--vo-orange);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vo-waitlist-title {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 6.3vw, 94px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.vo-waitlist-title span {
  color: var(--vo-orange);
}

.vo-waitlist-intro {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--vo-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.vo-waitlist-form {
  max-width: 650px;
  margin-top: 34px;
}

.vo-waitlist-control {
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 22px 65px rgba(15, 15, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.vo-waitlist-control:focus-within {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow:
    0 24px 70px rgba(15, 15, 15, 0.11),
    0 0 0 4px rgba(255, 106, 0, 0.09);
}

.vo-waitlist-input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--vo-black);
  background: transparent;
  font: inherit;
  font-size: 16px;
}

.vo-waitlist-input::placeholder {
  color: #92908c;
}

.vo-waitlist-submit {
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--vo-orange);
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.23);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.vo-waitlist-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 106, 0, 0.3);
}

.vo-waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.vo-waitlist-status {
  min-height: 22px;
  margin: 12px 4px 0;
  color: var(--vo-muted);
  font-size: 13px;
  line-height: 1.5;
}

.vo-waitlist-status[data-state="success"] {
  color: #21733d;
  font-weight: 600;
}

.vo-waitlist-status[data-state="error"] {
  color: #a63228;
  font-weight: 600;
}

.vo-waitlist-note {
  margin: 9px 4px 0;
  color: #85817b;
  font-size: 12px;
}

.vo-waitlist-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.vo-waitlist-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.vo-waitlist-orb {
  position: relative;
  width: min(390px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.83);
  border-radius: 42% 58% 56% 44% / 48% 41% 59% 52%;
  background:
    radial-gradient(circle at 34% 25%, #fff 0 10%, rgba(255, 255, 255, 0.86) 28%, rgba(255, 244, 236, 0.74) 62%, rgba(255, 106, 0, 0.22) 100%);
  box-shadow:
    inset -24px -28px 60px rgba(255, 106, 0, 0.11),
    inset 18px 20px 44px rgba(255, 255, 255, 0.9),
    0 40px 90px rgba(15, 15, 15, 0.14);
  animation: vo-orb-float 7s ease-in-out infinite;
}

.vo-waitlist-orb::before,
.vo-waitlist-orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 106, 0, 0.21);
  border-radius: inherit;
  inset: -24px;
}

.vo-waitlist-orb::after {
  inset: -52px;
  opacity: 0.48;
}

.vo-waitlist-wave {
  height: 112px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vo-waitlist-wave i {
  width: 8px;
  height: var(--bar-height);
  border-radius: 99px;
  background: linear-gradient(180deg, #ff8a39, var(--vo-orange));
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.18);
  animation: vo-wave-breathe 2.4s ease-in-out infinite;
  animation-delay: var(--bar-delay);
}

.vo-waitlist-eyes {
  position: absolute;
  top: 59%;
  left: 50%;
  width: 62px;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
}

.vo-waitlist-eyes i {
  width: 11px;
  height: 16px;
  border-radius: 50%;
  background: var(--vo-black);
}

.vo-waitlist-shadow {
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.18);
  filter: blur(13px);
  transform: scaleX(1.08);
  animation: vo-shadow-breathe 7s ease-in-out infinite;
}

.vo-waitlist-footer {
  padding: 20px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #77736d;
  font-size: 12px;
}

.vo-waitlist-footer-links {
  display: inline-flex;
  gap: 18px;
}

.vo-waitlist-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.vo-waitlist-footer a:hover {
  color: var(--vo-orange);
}

@keyframes vo-orb-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes vo-wave-breathe {
  0%,
  100% {
    transform: scaleY(0.84);
    opacity: 0.82;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes vo-shadow-breathe {
  0%,
  100% {
    opacity: 0.75;
    transform: scaleX(1.02);
  }

  50% {
    opacity: 0.5;
    transform: scaleX(0.9);
  }
}

@media (max-width: 920px) {
  #vo-waitlist-gate::after {
    right: -34vw;
    bottom: -25vh;
    width: 96vw;
  }

  .vo-waitlist-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 72px;
  }

  .vo-waitlist-copy {
    max-width: 720px;
  }

  .vo-waitlist-title {
    max-width: 720px;
    font-size: clamp(52px, 10vw, 82px);
  }

  .vo-waitlist-visual {
    min-height: 310px;
  }

  .vo-waitlist-orb {
    width: min(300px, 70vw);
  }
}

@media (max-width: 680px) {
  .vo-waitlist-shell {
    width: min(100% - 28px, 1240px);
  }

  .vo-waitlist-nav {
    margin-top: 14px;
  }

  .vo-waitlist-badge {
    padding: 8px 10px;
    font-size: 9px;
  }

  .vo-waitlist-main {
    display: block;
    padding: 70px 4px 52px;
  }

  .vo-waitlist-title {
    font-size: clamp(43px, 13.5vw, 62px);
    line-height: 1;
  }

  .vo-waitlist-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .vo-waitlist-control {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .vo-waitlist-input {
    min-height: 52px;
  }

  .vo-waitlist-submit {
    width: 100%;
  }

  .vo-waitlist-visual {
    display: none;
  }

  .vo-waitlist-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 4px;
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .vo-waitlist-main {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .vo-waitlist-visual {
    min-height: 340px;
  }

  .vo-waitlist-orb {
    width: min(320px, 48vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vo-waitlist-orb,
  .vo-waitlist-wave i,
  .vo-waitlist-shadow {
    animation: none;
  }

  .vo-waitlist-submit {
    transition: none;
  }
}
  position: absolute;
  bottom: 13px;
  width: 240px;
