/* =========================================================
   Waitlist variations — built on top of .hero-card from styles.css
   ========================================================= */

.wlv-shell {
  background: var(--bg);
  border-radius: 24px;
}

/* size the card to its artboard */
.wlv-shell .hero-card {
  min-height: 0;
  max-height: none;
  height: calc(100% - 64px);
}

/* ---------- shared form ---------- */
.wlv-stepper {
  width: 100%;
  position: relative;
}
.wlv-stepper > * {
  animation: wlv-step-in .42s cubic-bezier(.2,.8,.2,1);
}
@keyframes wlv-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- international phone input ---------- */
.wlv-form-phone { padding: 6px; gap: 8px; }
.wlv-phone {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.wlv-phone-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 14px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
  transition: background .12s;
}
.wlv-phone-flag:hover { background: rgba(0,0,0,.04); }
.wlv-phone-flag-emoji { font-size: 18px; line-height: 1; }
.wlv-phone-dial {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  color: var(--ink-2);
}
.wlv-phone > input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--f-sans);
  min-width: 0;
}
.wlv-phone > input::placeholder { color: var(--ink-3); }

.wlv-phone-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(320px, 92vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(31,26,46,.25);
  padding: 8px;
  z-index: 30;
  animation: wlv-pop-in .18s ease-out;
}
@keyframes wlv-pop-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wlv-phone-search {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  font-size: 13.5px;
  font-family: var(--f-sans);
  color: var(--ink);
  margin-bottom: 6px;
  outline: 0;
}
.wlv-phone-search:focus { border-color: var(--ink); }
.wlv-phone-list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.wlv-phone-opt {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 13.5px;
  color: var(--ink);
  text-align: left;
  transition: background .1s;
}
.wlv-phone-opt:hover { background: var(--bg-tint); }
.wlv-phone-opt.is-on { background: var(--ink); color: var(--bg); }
.wlv-phone-opt-flag { font-size: 16px; line-height: 1; }
.wlv-phone-opt-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wlv-phone-opt-dial {
  font-variant-numeric: tabular-nums;
  color: var(--ink-3);
  font-size: 12.5px;
}
.wlv-phone-opt.is-on .wlv-phone-opt-dial { color: rgba(250,239,210,.65); }
.wlv-phone-empty {
  padding: 14px 10px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
}

/* on mobile: keep input + dropdown working when the form stacks vertically */
@media (max-width: 720px) {
  .wlv-form-phone { padding: 6px; }
  .wlv-phone {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    width: 100%;
  }
  .wlv-phone-flag { padding: 12px 12px 12px 14px; }
  .wlv-phone > input { padding: 12px 14px; }
  .wlv-phone-pop { width: calc(100vw - 80px); max-width: 360px; }
}

.wlv-step { display: flex; flex-direction: column; gap: 12px; }
.wlv-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 4px 2px;
}
.wlv-step-ic {
  font-size: 24px;
  line-height: 1;
  animation: wlv-bounce 1.4s ease-in-out infinite;
}
@keyframes wlv-bounce {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-3px) rotate(6deg); }
}
.wlv-step-h {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.wlv-step-h strong {
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 45%, #B83E8E 70%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.wlv-step-sub {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 2px;
}
.wlv-skip {
  align-self: center;
  margin-top: 4px;
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: 12.5px;
  font-family: var(--f-sans);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.wlv-skip:hover { color: var(--ink); background: rgba(0,0,0,.04); }

/* dark-on-light step header when inside dark card */
.bubble-ai + .wlv-stepper .wlv-step-h,
.hero-card .wlv-stepper .wlv-step-h { color: #fff; }
.hero-card .wlv-stepper .wlv-step-sub { color: rgba(255,255,255,.78); }
.hero-card .wlv-skip { color: rgba(255,255,255,.7); }
.hero-card .wlv-skip:hover { color: #fff; background: rgba(255,255,255,.08); }

/* "done" state */
.wlv-step-done {
  align-items: stretch;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 22px;
  position: relative;
  overflow: visible;
}
.wlv-done-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wlv-done-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--sh-sm);
}
.wlv-done-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px -8px rgba(31,178,149,.55);
  animation: wlv-pop .55s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes wlv-pop {
  0%   { transform: scale(.4); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.wlv-done-text { min-width: 0; }
.wlv-done-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.15;
}
.wlv-done-sub {
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  word-break: break-word;
}
.wlv-done-sub strong { color: var(--ink); font-weight: 600; }

/* confetti */
.wlv-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 22px;
}
.wlv-confetti span {
  position: absolute;
  width: 8px; height: 12px;
  border-radius: 2px;
  top: 8%;
  opacity: 0;
  animation: wlv-confetti 1.6s ease-out forwards;
}
.wlv-confetti span:nth-child(1)  { left: 8%;  background: var(--coral);  animation-delay: 0ms; }
.wlv-confetti span:nth-child(2)  { left: 20%; background: var(--sun);    animation-delay: 80ms; }
.wlv-confetti span:nth-child(3)  { left: 32%; background: var(--mint);   animation-delay: 160ms; }
.wlv-confetti span:nth-child(4)  { left: 44%; background: var(--pink);   animation-delay: 40ms; }
.wlv-confetti span:nth-child(5)  { left: 56%; background: var(--sky);    animation-delay: 120ms; }
.wlv-confetti span:nth-child(6)  { left: 68%; background: var(--coral);  animation-delay: 200ms; }
.wlv-confetti span:nth-child(7)  { left: 80%; background: var(--sun);    animation-delay: 60ms; }
.wlv-confetti span:nth-child(8)  { left: 92%; background: var(--mint);   animation-delay: 140ms; }
.wlv-confetti span:nth-child(9)  { left: 14%; background: var(--pink);   animation-delay: 220ms; }
.wlv-confetti span:nth-child(10) { left: 74%; background: var(--sky);    animation-delay: 100ms; }
@keyframes wlv-confetti {
  0%   { transform: translateY(-20px) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(220px) rotate(540deg); opacity: 0; }
}

/* Position reveal card */
.wlv-pos {
  padding: 22px 20px;
  background: linear-gradient(155deg, #1F1A2E 0%, #4C3A5C 45%, #9C3597 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px -16px rgba(31,26,46,.5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wlv-pos::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255,200,80,.25), transparent 55%);
  pointer-events: none;
  animation: wlv-pos-glow 8s ease-in-out infinite alternate;
}
@keyframes wlv-pos-glow {
  from { transform: translate(0, 0); }
  to   { transform: translate(8%, 4%); }
}
.wlv-pos > * { position: relative; z-index: 1; }
.wlv-pos-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.wlv-pos-num {
  margin-top: 4px;
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.wlv-pos-hash {
  font-size: 32px;
  color: var(--sun);
  margin-right: 4px;
  opacity: .8;
}
.wlv-pos-digits {
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(180deg, #FFE08A, #FFC53D 60%, #FB8855);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.wlv-queue {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.wlv-queue-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  flex-shrink: 0;
  position: relative;
  animation: wlv-queue-pop .4s cubic-bezier(.2,.8,.2,1) both;
  font-size: 0;
}
.wlv-queue-dot.is-you {
  width: 22px;
  height: 22px;
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(255,197,61,.22);
  margin-top: -5px;
  font-family: var(--f-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--ink);
  display: grid;
  place-items: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: wlv-queue-you .5s cubic-bezier(.2,.8,.2,1) both, wlv-pulse 2s ease-in-out 1s infinite;
}
@keyframes wlv-queue-pop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wlv-queue-you {
  from { opacity: 0; transform: scale(.3); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wlv-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,197,61,.22); }
  50%      { box-shadow: 0 0 0 9px rgba(255,197,61,.08); }
}

/* Referral card */
.wlv-ref {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--sh-sm);
}
.wlv-ref-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wlv-ref-bolt {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  animation: wlv-bolt 2s ease-in-out infinite;
}
@keyframes wlv-bolt {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(8deg) scale(1.08); }
}
.wlv-ref-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.wlv-ref-sub {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  margin-top: 2px;
}
.wlv-ref-sub strong {
  color: var(--coral-deep);
  font-weight: 700;
}
.wlv-ref-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 14px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 0;
}
.wlv-ref-url {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.wlv-ref-copy {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}
.wlv-ref-copy:hover { transform: translateY(-1px); }
.wlv-ref-copy.is-copied { background: var(--mint); color: #fff; }

.wlv-ref-shares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wlv-ref-shares-solo { grid-template-columns: 1fr; }
.wlv-ref-share {
  background: var(--coral, #FF5C4D) !important;
  color: #fff !important;
  border-color: transparent !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
}
.wlv-ref-share:hover {
  background: var(--coral-deep, #E84A3C) !important;
  border-color: transparent !important;
  transform: translateY(-1px);
}
.wlv-ref-share svg { stroke: #fff; }
.wlv-ref-share.is-maxed,
.wlv-ref-share[disabled] {
  background: var(--mint, #1FB295) !important;
  cursor: default !important;
  transform: none !important;
}
.wlv-ref-share.is-maxed:hover,
.wlv-ref-share[disabled]:hover {
  background: var(--mint, #1FB295) !important;
  transform: none !important;
}
.wlv-ref-note {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-2);
  margin-top: -2px;
}
.wlv-ref-btn {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--f-sans);
  transition: border-color .15s, background .15s, transform .15s;
}
.wlv-ref-btn:hover { border-color: var(--ink); transform: translateY(-1px); background: var(--bg-tint); }
.wlv-ref-btn span { font-size: 14px; }

.wlv-ref-meter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--mint-tint);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--mint);
}
.wlv-ref-meter strong { color: var(--mint); font-weight: 700; }
.wlv-ref-sep { opacity: .5; }

.wlv-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.35);
}
.wlv-form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--f-sans);
  min-width: 0;
}
.wlv-form input::placeholder { color: var(--ink-3); }
.wlv-form > button {
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.wlv-form > button:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(255,92,77,.5);
}
.wlv-form.is-done > button { background: var(--mint); }

/* white capsule */
.wlv-form-coral {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}
/* cream capsule */
.wlv-form-cream {
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ---------- shared fine print ---------- */
.wlv-fine {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 46ch;
}
.wlv-fine-dark { color: rgba(255,255,255,.7); }

/* ---------- social avatars ---------- */
.wlv-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wlv-avs { display: flex; }
.wlv-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.wlv-av:first-child { margin-left: 0; }
.wlv-av-1 { background: linear-gradient(135deg,#FB8855,#D45F7E); }
.wlv-av-2 { background: linear-gradient(135deg,#6FA8E0,#4C3A5C); }
.wlv-av-3 { background: linear-gradient(135deg,#1FB295,#0F3A33); }
.wlv-av-4 { background: linear-gradient(135deg,#FFC53D,#E89B1F); color: var(--ink); }
.wlv-social-text {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.wlv-social-text strong { color: var(--ink); font-weight: 600; }
.wlv-social-dark .wlv-av { border-color: rgba(20,17,14,.6); }
.wlv-social-dark .wlv-social-text { color: rgba(255,255,255,.75); }
.wlv-social-dark .wlv-social-text strong { color: #fff; }

/* =========================================================
   V1 — inline form inside hero-content
   ========================================================= */
.wlv-inline-form {
  margin-top: 28px;
  max-width: 480px;
}

/* =========================================================
   V2 — floating form below hero-card (prompt-card cousin)
   ========================================================= */
.wlv-float {
  position: relative;
  z-index: 5;
  margin: -48px auto 0;
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 26px 26px 22px;
}
.wlv-float-tag {
  position: absolute; top: -14px; left: 24px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em;
  font-family: var(--f-mono);
  white-space: nowrap;
  line-height: 1;
}
.wlv-float-row { display: flex; }
.wlv-float-row .wlv-form { max-width: none; }
/* The float sits on a white card here, so the default white capsule would
   vanish. Give it the cream surface + a border so the input reads clearly. */
.wllp-hero-host .wlv-float-row .wlv-form-coral {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.25);
}
.wlv-float-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.wlv-meta {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.wlv-meta strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   V3 — centered ticket
   ========================================================= */
.wlv-card-tall { min-height: 700px; }
.wlv-content-center {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
  padding: 64px;
  color: #fff;
}
.wlv-content-center .hero-eyebrow,
.wlv-content-center .hero-h,
.wlv-content-center .hero-sub { text-align: left; }
.wlv-content-center .hero-sub { max-width: none; }
.wlv-content-center .hero-h { font-size: clamp(48px, 5.4vw, 76px); }

.wlv-ticket {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}
.wlv-ticket .wlv-form { max-width: none; box-shadow: none; }
.wlv-ticket-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 0 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.78);
}
.wlv-ticket-meta strong { color: #fff; font-weight: 600; }
.wlv-ticket-sep { opacity: .4; }
.wlv-ticket-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.25);
}

/* =========================================================
   V4 — split: dark hero left + cream form right
   ========================================================= */
.wlv-card-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1fr;
  background: var(--bg);
  overflow: hidden;
}
.wlv-card-split::after { display: none; }

.wlv-split-art {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 540px;
}
.wlv-split-art .hero-photo {
  border-radius: 0;
}
.wlv-split-art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(255,200,80,.15), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 75%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 35%, rgba(0,0,0,0) 60%);
  pointer-events: none;
  z-index: 1;
}
.wlv-split-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 56px;
  color: #fff;
  max-width: 520px;
}
.wlv-split-copy .hero-h { font-size: clamp(40px, 4.6vw, 64px); }
.wlv-split-copy .hero-sub { font-size: 16px; }

.wlv-split-form {
  padding: 56px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.wlv-split-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  align-self: flex-start;
  margin-bottom: 4px;
}
.wlv-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 92, 77, .18);
}
.wlv-split-h {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(36px, 3.8vw, 52px);
  letter-spacing: var(--h-spacing);
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
.wlv-split-h em {
  font-style: italic;
  font-weight: inherit;
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 45%, #B83E8E 70%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wlv-split-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 0 8px;
}
.wlv-split-form .wlv-form {
  background: var(--surface);
  border: 1px solid var(--line);
  max-width: none;
  box-shadow: var(--sh-sm);
}

.wlv-checks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.wlv-checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.wlv-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral-deep);
  display: grid; place-items: center;
}

/* small-screen guards for canvas focus mode */
@media (max-width: 880px) {
  .wlv-card-split { grid-template-columns: 1fr; }
  .wlv-split-art { min-height: 360px; }
  .bubble-user, .bubble-ai { display: none; }
}

/* =========================================================
   WAITLIST LANDING — full page composed around V2
   ========================================================= */

/* ---------- Editorial font upgrade, scoped to this page ---------- */
.is-waitlist-landing {
  --f-head: "Fraunces", "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --f-mono: "Roboto Mono", ui-monospace, monospace;
  --h-italic: italic;
  --h-spacing: -0.022em;
  --h-weight: 500;
  font-family: var(--f-sans);
}
.is-waitlist-landing body,
.is-waitlist-landing .hero-sub,
.is-waitlist-landing .agent-copy p,
.is-waitlist-landing .sec-head p,
.is-waitlist-landing .wlv-social-text,
.is-waitlist-landing .wllp-section-sub,
.is-waitlist-landing .wllp-perk p {
  font-family: var(--f-sans);
  letter-spacing: -0.005em;
}

/* Display headlines: Fraunces with crafted feel */
.is-waitlist-landing .hero-h,
.is-waitlist-landing .wllp-section-h,
.is-waitlist-landing .final h2,
.is-waitlist-landing .sec-head h2,
.is-waitlist-landing .wlv-split-h,
.is-waitlist-landing .agent-copy h3 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-variation-settings: "opsz" 144, "wght" var(--h-weight);
  letter-spacing: var(--h-spacing);
  line-height: 0.98;
}
.is-waitlist-landing .hero-h em,
.is-waitlist-landing .wllp-section-h em,
.is-waitlist-landing .final h2 em,
.is-waitlist-landing .sec-head h2 em,
.is-waitlist-landing .wlv-split-h em {
  font-style: var(--h-italic);
  font-weight: var(--h-weight);
  font-variation-settings: "opsz" 144, "wght" var(--h-weight);
}
.is-waitlist-landing .wllp-final-num,
.is-waitlist-landing .wlv-split-h,
.is-waitlist-landing .agent-copy h3 {
  font-weight: var(--h-weight);
}

/* Tighten sec-head sub */
.is-waitlist-landing .sec-head p { font-family: var(--f-sans); }

/* Refine eyebrows / mono tags */
.is-waitlist-landing .eyebrow,
.is-waitlist-landing .wllp-kicker,
.is-waitlist-landing .wllp-topbar-tag,
.is-waitlist-landing .wlv-meta,
.is-waitlist-landing .wllp-final-cap {
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
}

/* Logo bar at the very top */
.wllp-topbar {
  padding: 32px 0 8px;
}
.wllp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wllp-topbar .logo-lockup { height: 46px; }
.wllp-topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
@media (max-width: 540px) {
  .wllp-topbar-tag { display: none; }
}

/* ---------- 90% stat statement (moved down the page) ---------- */
.wllp-statband {
  padding: 12px 0 28px;
}
.wllp-statband-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
}
.wllp-statband-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(72px, 13vw, 132px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  padding-right: 0.08em;
  background: linear-gradient(120deg, var(--coral, #FF5C4D), #9C3597);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.wllp-statband-text {
  font-family: var(--f-sans);
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-1, #181818);
  margin: 0;
  text-wrap: balance;
  max-width: 30ch;
}
.wllp-statband-text strong { font-weight: 700; }
@media (max-width: 640px) {
  .wllp-statband { padding: 8px 0 22px; }
  .wllp-statband-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .wllp-statband-text { font-size: 20px; max-width: 26ch; }
}

/* Tune V2 when it's living on a real page, not a canvas artboard */
.wllp-hero-host .wlv-shell {
  background: transparent;
  border-radius: 0;
  padding: 24px 0 32px !important;
}
.wllp-hero-host .wlv-shell > .hero-card { height: auto; }
.wllp-hero-host .wlv-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px !important;
  padding-right: 32px !important;
}
@media (max-width: 720px) {
  .wllp-hero-host .wlv-shell {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Divider rail above the steps */
.wllp-rail {
  padding: 80px 0 24px;
  text-align: center;
}
.wllp-rail-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.wllp-rail-line {
  flex: 0 1 120px;
  height: 1px;
  background: var(--line);
}
.wllp-rail .eyebrow {
  color: var(--coral-deep);
  font-weight: 600;
}

/* New section intro for the landing */
.wllp-intro {
  padding: 96px 0 24px;
}
.wllp-intro-inner {
  text-align: center;
}
.wllp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  margin-bottom: 28px;
}
.wllp-kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,92,77,.18);
  animation: wl-dot 1.8s ease-in-out infinite;
}
.wllp-time {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(31,26,46,.45);
}
.wllp-time-num {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sun);
}
.wllp-time-unit {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sun);
  margin-right: 8px;
}
.wllp-time-label {
  font-size: 14px;
  color: rgba(250,239,210,.85);
}

/* Steps wrap: dotted vertical timeline behind the steps */
.wllp-steps-wrap {
  position: relative;
}
.wllp-steps-wrap::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 96px;
  left: 50%;
  transform: translateX(-0.5px);
  width: 1px;
  background-image: linear-gradient(to bottom, var(--ink-3) 50%, transparent 50%);
  background-size: 2px 8px;
  opacity: .25;
  pointer-events: none;
}
@media (max-width: 980px) {
  .wllp-steps-wrap::before { display: none; }
}
.wllp-steps-wrap .hiw-steps-section { padding-top: 32px; padding-bottom: 64px; }
.wllp-steps-wrap .hiw-step { position: relative; }
.wllp-steps-wrap .hiw-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--coral);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--bg);
  z-index: 1;
}
@media (max-width: 980px) {
  .wllp-steps-wrap .hiw-step::before { display: none; }
}

.wllp-section-h {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(44px, 5.4vw, 72px);
  letter-spacing: var(--h-spacing);
  line-height: 0.98;
  margin: 0 0 18px;
  text-align: center;
  color: var(--ink);
  text-wrap: balance;
}
.wllp-section-h em {
  font-style: italic;
  font-weight: inherit;
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 45%, #B83E8E 70%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wllp-section-sub {
  text-align: center;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* Final CTA email row sizing */
.wllp-final-form {
  max-width: 520px;
  margin: 40px auto 0;
}
.wllp-final-form .wlv-form {
  max-width: none;
  background: var(--surface);
  border: 1px solid var(--line);
}
.wllp-final-fine {
  margin: 20px auto 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-align: center;
}
.wllp-final-fine strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   3-STEP FLOW — describe → AI builds → publish
   ========================================================= */
.wllp-flow {
  padding: 24px 0 64px;
  position: relative;
}
.wllp-flow-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.wllp-flow-head .wllp-kicker { margin-bottom: 22px; }
.wllp-flow-head .wllp-section-h { margin-bottom: 18px; }
.wllp-flow-head .wllp-section-sub { margin: 0 auto; }

.wllp-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .wllp-flow-grid { grid-template-columns: 1fr; gap: 20px; } }

.wllp-flow-card {
  position: relative;
  border-radius: 28px;
  padding: 32px 28px 28px;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  box-shadow: 0 30px 70px -28px rgba(20,12,28,.45);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.wllp-flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -28px rgba(20,12,28,.55);
}

/* gradient backgrounds */
.wllp-flow-1 { background: linear-gradient(155deg, #2A0F18 0%, #6E1F2F 30%, #E84A3C 65%, #FFC53D 100%); }
.wllp-flow-2 { background: linear-gradient(155deg, #0E0915 0%, #2A1F45 30%, #6F4FA8 65%, #9C3597 100%); }
.wllp-flow-3 { background: linear-gradient(155deg, #062A24 0%, #0F4A3C 35%, #1FB295 70%, #B8E0CD 100%); }

/* drifting color blobs in bg */
.wllp-flow-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 28px;
}
.wllp-flow-blob {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  mix-blend-mode: screen;
}
.wllp-flow-1 .wllp-flow-blob-a { background: #FFC53D; top: -70px; right: -60px; animation: wllp-blob 14s ease-in-out infinite; }
.wllp-flow-1 .wllp-flow-blob-b { background: #FB8855; bottom: -80px; left: -50px; animation: wllp-blob 16s ease-in-out infinite reverse; }
.wllp-flow-2 .wllp-flow-blob-a { background: #6FA8E0; top: -80px; right: -70px; animation: wllp-blob 14s ease-in-out infinite; }
.wllp-flow-2 .wllp-flow-blob-b { background: #F08DB8; bottom: -70px; left: -60px; animation: wllp-blob 18s ease-in-out infinite reverse; animation-delay: -3s; }
.wllp-flow-3 .wllp-flow-blob-a { background: #6FA8E0; top: -70px; right: -50px; animation: wllp-blob 15s ease-in-out infinite; }
.wllp-flow-3 .wllp-flow-blob-b { background: #FFC53D; bottom: -90px; left: -60px; animation: wllp-blob 17s ease-in-out infinite reverse; animation-delay: -2s; }
@keyframes wllp-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -16px) scale(1.08); }
}

.wllp-flow-card > * { position: relative; z-index: 1; }

.wllp-flow-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.wllp-flow-h {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-style: normal;
  font-variation-settings: "opsz" 144, "wght" var(--h-weight);
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 6px 0 0;
  text-wrap: balance;
}
.wllp-flow-p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 36ch;
}
.wllp-flow-art {
  margin-top: auto;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.35);
}

/* ---- 01 Prompt mock ---- */
.wllp-flow-prompt { position: relative; }
.wllp-prompt-tag-2 {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.wllp-prompt-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.wllp-prompt-body span { display: inline; }
.wllp-prompt-typed { color: var(--coral-deep); font-weight: 500; }
.wllp-prompt-caret {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--coral);
  margin-left: 2px;
  vertical-align: -3px;
  animation: blink 1s steps(1) infinite;
}
.wllp-prompt-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.wllp-prompt-chip {
  font-size: 11.5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--ink-2);
}
.wllp-prompt-send {
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}

/* ---- 02 Build mock ---- */
.wllp-flow-build {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wllp-build-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
  border-top: 1px solid var(--line-2);
}
.wllp-build-row:first-child { border-top: 0; }
.wllp-build-row strong { color: var(--ink); font-weight: 600; }
.wllp-build-row-done .wllp-build-text { color: var(--ink-2); }
.wllp-build-row-active { color: var(--ink); }
.wllp-build-ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--ink-3);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.wllp-build-ic-mint { background: var(--mint-tint); color: var(--mint); }
.wllp-build-ic-coral { background: var(--coral-tint); color: var(--coral-deep); }
.wllp-spinner {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: wllp-spin .9s linear infinite;
}
@keyframes wllp-spin { to { transform: rotate(360deg); } }
.wllp-dots {
  display: inline-flex; gap: 3px; margin-left: 4px;
  vertical-align: middle;
}
.wllp-dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-3);
  animation: wllp-dot 1.2s ease-in-out infinite;
}
.wllp-dots span:nth-child(2) { animation-delay: .15s; }
.wllp-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes wllp-dot {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}
.wllp-build-bar {
  margin-top: 8px;
  height: 4px;
  border-radius: 999px;
  background: var(--bg-tint);
  overflow: hidden;
}
.wllp-build-bar span {
  display: block;
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, #FB8855, #D45F7E, #9C3597);
  border-radius: 999px;
  animation: wllp-bar 3s ease-in-out infinite;
}
@keyframes wllp-bar {
  0% { width: 30%; }
  50% { width: 78%; }
  100% { width: 30%; }
}

/* ---- 03 Browser mock ---- */
.wllp-flow-browser { padding: 0; overflow: hidden; position: relative; }
.wllp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #f4f0e7;
  border-bottom: 1px solid var(--line-2);
}
.wllp-browser-bar > span:nth-child(1),
.wllp-browser-bar > span:nth-child(2),
.wllp-browser-bar > span:nth-child(3) {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.wllp-browser-bar > span:nth-child(1) { background: var(--coral); }
.wllp-browser-bar > span:nth-child(2) { background: var(--sun); }
.wllp-browser-bar > span:nth-child(3) { background: var(--mint); }
.wllp-browser-url {
  flex: 1;
  margin-left: 10px;
  padding: 5px 12px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  text-align: center;
}
.wllp-browser-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wllp-browser-hero { display: flex; flex-direction: column; gap: 4px; }
.wllp-browser-h {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.wllp-browser-sub {
  font-size: 12px;
  color: var(--ink-3);
}
.wllp-browser-thumb {
  height: 86px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 50%),
    linear-gradient(135deg, #FFE08A 0%, #FB8855 60%, #D45F7E 100%);
}
.wllp-browser-cta {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  align-self: flex-start;
}
.wllp-publish-pill {
  position: absolute;
  top: 56px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,.4);
}
.wllp-publish-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: hero-live-pulse 1.8s ease-in-out infinite;
}

/* =========================================================
   PERKS GRID — pre-final-CTA
   ========================================================= */.wllp-perks {
  padding: 56px 0 32px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 197, 61, .08), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.wllp-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .wllp-perks-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 540px) { .wllp-perks-grid { grid-template-columns: 1fr; } }
.wllp-perk {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .2s;
}
.wllp-perk:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 18px 40px -18px rgba(26,26,31,.18);
}
.wllp-perk-ic {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.wllp-perk h4 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.wllp-perk p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   FINAL CTA — overrides on .final
   ========================================================= */
.wllp-final { padding: 84px 0 92px; }
.wllp-final .wllp-kicker { margin-bottom: 14px; }
.wllp-final-watermark {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  opacity: .05;
  pointer-events: none;
  z-index: 0;
  animation: final-mark-spin 30s linear infinite;
}
.wllp-final-watermark svg { width: 100%; height: 100%; }

.wllp-final-stats {
  margin: 48px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-align: center;
}
.wllp-final-stats.wllp-final-stats-solo {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.wllp-final-stats.wllp-final-stats-solo > div { border-left: 0; }
@media (max-width: 600px) {
  .wllp-final-stats { grid-template-columns: 1fr; }
  .wllp-final-stats > div + div { border-left: 0; border-top: 1px solid var(--line); }
}
.wllp-final-stats > div {
  padding: 22px 16px;
  border-left: 1px solid var(--line);
}
.wllp-final-stats > div:first-child { border-left: 0; }
.wllp-final-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.wllp-final-cap {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* hero bubbles: reduce overlap with headline on landing layout */
.wllp-hero-host .bubble-user { top: 36px; right: 36px; }
.wllp-hero-host .bubble-ai   { top: 110px; right: 80px; }
@media (max-width: 1100px) {
  .wllp-hero-host .bubble-user,
  .wllp-hero-host .bubble-ai { display: none; }
}

/* ---------- extra page-level animations ---------- */

/* sweeping shine over the join-waitlist button */
.wllp-root .wlv-form > button {
  position: relative;
  overflow: hidden;
}
.wllp-root .wlv-form > button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-20deg);
  animation: wllp-shine 3.6s ease-in-out infinite;
}
@keyframes wllp-shine {
  0%, 60%  { left: -120%; }
  100% { left: 130%; }
}

/* hero photo: very slow zoom/pan for life */
.wllp-hero-host .hero-photo {
  animation: wllp-hero-drift 22s ease-in-out infinite alternate;
  transform-origin: 30% 40%;
}
@keyframes wllp-hero-drift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.04) translate(-1.5%, -1%); }
}

/* perks rise on hover */
@keyframes wllp-perk-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   MOBILE — full responsive pass for the waitlist landing
   ========================================================= */
@media (max-width: 720px) {
  /* topbar tighter */
  .wllp-topbar { padding: 18px 0 0; }
  .wllp-topbar-inner { gap: 10px; }
  .wllp-topbar .logo-lockup { height: 38px; }

  /* 90% stat bar: stack the parts so the giant 90% doesn't squeeze */
  .wllp-stat-wrap { margin-top: 14px; padding-left: 16px; padding-right: 16px; }
  .wllp-stat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 18px 16px;
    text-align: left;
    border-radius: 22px;
  }
  .wllp-stat-bar .launch-stat-num { font-size: 44px; line-height: 1; }
  .wllp-stat-bar .launch-stat-text { font-size: 14px; }
  .wllp-stat-bar .wllp-stat-cta {
    align-self: stretch;
    text-align: center;
    padding: 10px 14px;
  }
  .wllp-stat-aside { display: block; margin-top: 2px; }

  /* hero */
  .wllp-hero-host .wlv-shell { padding: 22px 16px 24px !important; }
  .wllp-hero-host .hero-card { min-height: auto; max-height: none; border-radius: 24px; }
  .wllp-hero-host .hero-content { padding: 28px 20px 28px; max-width: 100%; }
  .wllp-hero-host .hero-h { font-size: clamp(32px, 8.5vw, 48px) !important; word-break: break-word; }
  .wllp-hero-host .hero-sub { font-size: 15px; }
  .wllp-hero-host .bubble-user,
  .wllp-hero-host .bubble-ai { display: none; }

  /* hero floating form: sits BELOW the card (no overlap with the copy) */
  .wlv-float {
    margin: 12px 0 0;
    padding: 18px 16px 16px;
    border-radius: 22px;
  }
  .wlv-float-tag { top: -12px; left: 16px; font-size: 10px; padding: 5px 12px; }
  .wlv-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 8px;
  }
  .wlv-form input { padding: 14px 14px; font-size: 16px; }
  .wlv-form > button {
    padding: 14px 18px;
    width: 100%;
    justify-content: center;
  }
  .wlv-float-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
    margin-top: 12px;
  }
  .wlv-social-text { font-size: 12.5px; }
  .wlv-meta { font-size: 10.5px; }

  /* 3-step flow */
  .wllp-flow { padding: 32px 0 48px; }
  .wllp-flow-head { margin-bottom: 32px; }
  .wllp-flow-head .wllp-section-h { font-size: clamp(34px, 9vw, 48px); }
  .wllp-flow-card {
    min-height: 0;
    padding: 24px 20px 20px;
    border-radius: 24px;
  }
  .wllp-flow-h { font-size: 22px; }
  .wllp-flow-p { font-size: 14px; }
  .wllp-flow-art { padding: 12px; }
  .wllp-flow-prompt .wllp-prompt-body { font-size: 13.5px; }
  .wllp-prompt-foot { gap: 4px; }
  .wllp-prompt-chip { font-size: 11px; padding: 4px 8px; }

  /* agents section */
  .agents-section { padding: 56px 0; }
  .agents-section .sec-head { margin-bottom: 40px; }
  .agents-section .sec-head h2 { font-size: clamp(36px, 9vw, 56px); }
  .agents-list { gap: 48px; }
  .agent-tile { gap: 24px; }
  .agent-art { padding: 22px; aspect-ratio: 4/3; }
  .mock-card { padding: 14px 16px; }
  .mock-editor { grid-template-columns: 1fr; }
  .mock-sec { grid-template-columns: 1fr; padding: 18px; }

  /* perks */
  .wllp-perks { padding: 40px 0 24px; }
  .wllp-perks-grid { gap: 14px; }
  .wllp-perk { padding: 20px; border-radius: 18px; }

  /* final cta */
  .wllp-final { padding: 72px 0 56px; }
  .wllp-final h2 { font-size: clamp(40px, 11vw, 64px) !important; }
  .wllp-final p { font-size: 16px; }
  .wllp-final-form { margin: 28px auto 0; }
  .wllp-final-stats { margin-top: 36px; }

  /* tweaks panel: full width near bottom */
  .twk-panel { right: 12px !important; bottom: 12px !important; left: 12px !important; width: auto !important; max-width: none !important; }
}

@media (max-width: 420px) {
  .wllp-hero-host .wlv-shell { padding-left: 12px !important; padding-right: 12px !important; }
  .wlv-form input { font-size: 15px; padding: 12px 12px; }
  .wlv-form > button { padding: 12px 14px; font-size: 14px; }
  .wllp-stat-bar .launch-stat-num { font-size: 38px; }
  .wllp-flow-card { padding: 22px 18px 18px; }
  .wllp-flow-h { font-size: 20px; }
  .wllp-step-h { font-size: 15px; }
  .wllp-step-sub { font-size: 12.5px; }

  /* hide a few queue dots so the row fits a narrow phone */
  .wlv-queue-dot:nth-child(1),
  .wlv-queue-dot:nth-child(2),
  .wlv-queue-dot:nth-child(3),
  .wlv-queue-dot:nth-child(19),
  .wlv-queue-dot:nth-child(20),
  .wlv-queue-dot:nth-child(21) { display: none; }
}

/* Done-card responsive: ensure position number + queue + referral all read */
@media (max-width: 720px) {
  .wlv-done-card { gap: 12px; }
  .wlv-done-head { padding: 14px 16px; }
  .wlv-pos { padding: 18px 16px; }
  .wlv-pos-digits { font-size: 48px; }
  .wlv-pos-hash { font-size: 26px; }
  .wlv-queue { gap: 4px; }
  .wlv-queue-dot { width: 10px; height: 10px; }
  .wlv-queue-dot.is-you { width: 18px; height: 18px; font-size: 7px; margin-top: -4px; }

  .wlv-ref { padding: 16px; }
  .wlv-ref-link {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 14px;
  }
  .wlv-ref-url {
    padding: 6px 8px;
    background: var(--surface);
    border-radius: 999px;
    text-align: center;
  }
  .wlv-ref-copy { width: 100%; }
  .wlv-ref-shares { gap: 6px; }
  .wlv-ref-btn { padding: 10px 6px; font-size: 12px; }
}

/* Waitlist landing: strip the footer down to just brand + bottom bar */
.is-waitlist-landing .footer-col,
.is-waitlist-landing .footer-grid h5,
.is-waitlist-landing .footer-top,
.is-waitlist-landing .footer-newsletter {
  display: none !important;
}
.is-waitlist-landing .footer-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: 56px;
  padding-bottom: 8px;
}
.is-waitlist-landing .footer-brand {
  max-width: 480px;
  text-align: center;
}
.is-waitlist-landing .footer-brand p {
  margin-top: 14px;
}
