/* TalentProof — Waitlist page (standalone; loaded only on /waitlist/) */

:root {
  --wl-font: "Inter", system-ui, -apple-system, sans-serif;
  --wl-black: #000000;
  --wl-white: #ffffff;
  --wl-red: #ff2d2d;
  --wl-gold: #f59e0b;
  --wl-green: #22c55e;
  --wl-inset: clamp(40px, 8vw, 120px);
  /* Match `.nav` height in `components.css` (sticky site header) */
  --wl-nav-offset: 56px;
}

/* Keep footer hidden on waitlist for full-bleed flow; show same top nav + search as rest of site */
.lp-page-content:has(.wl-page) .footer {
  display: none !important;
}

.lp-page-content:has(.wl-page) .main {
  padding: 0;
  margin: 0;
  max-width: none;
  min-height: calc(100vh - var(--wl-nav-offset));
  /* Allow vertical scroll inside waitlist shell (base.css .main uses overflow-x: clip) */
  overflow-y: visible;
  overflow-x: clip;
}

/* Brand already in site header — avoid duplicate “TalentProof” lockup */
.lp-page-content:has(.wl-page) .wl-logo {
  display: none;
}

html,
body {
  width: 100%;
  min-height: 100%;
  /* Was overflow:hidden for full-screen slides — that blocked scroll on short viewports / mobile */
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--wl-black);
  color: var(--wl-white);
  font-family: var(--wl-font);
}

/* --- Page shell (below sticky nav: z-index 100 in components.css) --- */
.wl-page {
  position: fixed;
  top: var(--wl-nav-offset);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: var(--wl-black);
  color: var(--wl-white);
  font-family: var(--wl-font);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.wl-prog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 200;
}

.wl-prog-fill {
  height: 100%;
  background: var(--wl-red);
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.7);
  width: 0%;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-prog-fill.gold {
  background: var(--wl-gold);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}

.wl-logo {
  position: fixed;
  top: 24px;
  left: var(--wl-inset);
  z-index: 200;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-red);
}

.wl-step-ctr {
  position: fixed;
  top: 28px;
  right: var(--wl-inset);
  z-index: 200;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: none;
}

.wl-step-ctr.show {
  display: block;
}

.wl-step-ctr b {
  color: var(--wl-white);
}

.wl-track {
  display: flex;
  width: 500vw;
  height: calc(100vh - var(--wl-nav-offset));
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-slide {
  width: 100vw;
  min-height: calc(100vh - var(--wl-nav-offset));
  height: calc(100vh - var(--wl-nav-offset));
  flex-shrink: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-slide > *:not(.wl-glow) {
  position: relative;
  z-index: 1;
}

.wl-glow {
  position: absolute;
  bottom: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 70vh;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 45, 45, 0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: wl-glowB 5s ease-in-out infinite;
}

@keyframes wl-glowB {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

/* --- Slide 0 --- */
@keyframes wl-s0-eyebrowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wl-s0-hlLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wl-s0-pathCardsIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wl-s0-inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 var(--wl-inset);
}

.wl-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: wl-s0-eyebrowIn 0.6s ease forwards 0.2s;
}

.wl-eyebrow-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--wl-red);
}

.wl-s0-hl {
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.wl-s0-hl .g {
  color: rgba(255, 255, 255, 0.13);
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: wl-s0-hlLineIn 0.7s ease forwards 0.35s;
}

.wl-s0-hl .w {
  color: var(--wl-white);
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: wl-s0-hlLineIn 0.7s ease forwards 0.5s;
}

.wl-s0-hl .r {
  color: var(--wl-red);
  text-shadow: 0 0 80px rgba(255, 45, 45, 0.5);
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: wl-s0-hlLineIn 0.7s ease forwards 0.65s;
}

.wl-path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: wl-s0-pathCardsIn 0.8s ease forwards 0.8s;
}

.wl-path-card {
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wl-pc-std {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s ease;
}

.wl-pc-std:hover {
  border-color: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 60px rgba(255, 45, 45, 0.1);
  transform: translateY(-3px);
}

.wl-pc-inv {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.3);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s ease;
}

.wl-pc-inv:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.12);
  transform: translateY(-3px);
}

.wl-pc-inv::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.05), transparent);
  top: -80px;
  animation: wl-sweep 3.5s ease-in-out infinite 1s;
  pointer-events: none;
}

@keyframes wl-sweep {
  0% {
    top: -80px;
  }
  100% {
    top: calc(100% + 80px);
  }
}

.wl-pc-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 5px;
  width: fit-content;
}

.wl-tag-std {
  color: var(--wl-red);
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.22);
}

.wl-tag-inv {
  color: var(--wl-gold);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.wl-pc-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: var(--wl-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wl-pc-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  flex: 1;
}

.wl-pc-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: gap 0.2s;
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  font-family: var(--wl-font);
  text-align: left;
}

.wl-pc-cta.red {
  color: var(--wl-red);
}

.wl-pc-cta.gold {
  color: var(--wl-gold);
}

.wl-path-card:hover .wl-pc-cta {
  gap: 14px;
}

.wl-invite-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wl-invite-input-row {
  display: flex;
  gap: 10px;
}

.wl-invite-field {
  flex: 1;
  padding: 13px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--wl-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  outline: none;
  min-width: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.wl-invite-field::placeholder {
  color: rgba(245, 158, 11, 0.28);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
}

.wl-invite-field:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.wl-invite-activate {
  padding: 13px 20px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-gold);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.wl-invite-activate:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.55);
}

.wl-invite-success {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 16px 18px;
}

.wl-invite-success.show {
  display: flex;
  opacity: 0;
  transform: translateY(12px);
  animation: wl-fadeUp 0.4s ease forwards;
}

.wl-inv-welcome {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.wl-inv-welcome strong {
  color: var(--wl-white);
}

.wl-inv-welcome .wl-gold-txt {
  color: var(--wl-gold);
}

.wl-inv-continue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--wl-gold);
  border: none;
  border-radius: 8px;
  font-family: var(--wl-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.wl-inv-continue:hover {
  background: #f0950a;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
}

/* --- Slide 1 --- */
.wl-s1-inner {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--wl-inset);
}

.wl-s1-hl {
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.wl-s1-hl .g {
  color: rgba(255, 255, 255, 0.13);
}

.wl-s1-hl .w {
  color: var(--wl-white);
}

.wl-s1-hl .r {
  color: var(--wl-red);
  text-shadow: 0 0 80px rgba(255, 45, 45, 0.5);
}

.wl-s1-q-wrap {
  width: 100%;
  text-align: left;
}

.wl-s1-question {
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 22px;
  min-height: 60px;
}

.wl-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--wl-red);
  vertical-align: middle;
  margin-left: 2px;
  animation: wl-blink 0.75s step-end infinite;
}

@keyframes wl-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.wl-s1-textarea {
  width: 100%;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-family: var(--wl-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--wl-white);
  line-height: 1.65;
  resize: none;
  height: 120px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.wl-s1-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.wl-s1-textarea:focus {
  border-color: rgba(255, 45, 45, 0.45);
  box-shadow: 0 0 32px rgba(255, 45, 45, 0.09);
}

.wl-s1-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 12px;
}

.wl-s1-hint {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

.wl-s1-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wl-s1-count {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  margin: 0;
}

.wl-inline-next-btn,
.wl-s1-next-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: var(--wl-red);
  border: none;
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wl-white);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.wl-inline-next-btn:hover,
.wl-s1-next-btn:hover {
  background: #ff1a1a;
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.35);
}

.wl-inline-next-btn:focus-visible,
.wl-s1-next-btn:focus-visible {
  outline: 2px solid rgba(255, 45, 45, 0.8);
  outline-offset: 2px;
}

.wl-s2-footer {
  margin-top: 10px;
  padding-top: 6px;
}

.wl-s2-next-btn {
  width: 100%;
  max-width: 100%;
}

.wl-s3-footer {
  margin-top: 12px;
  padding-top: 4px;
  padding-bottom: 20px;
}

.wl-s3-next-btn {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 520px) {
  .wl-s1-footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wl-s1-next-btn {
    width: 100%;
  }
}

@keyframes wl-s1-hlIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wl-s1-qwrapIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#wl-s1:not(.wl-s1-animate) .wl-s1-hl {
  opacity: 0;
  transform: translateY(24px);
}

#wl-s1:not(.wl-s1-animate) .wl-s1-q-wrap {
  opacity: 0;
  transform: translateY(16px);
}

#wl-s1.wl-s1-animate .wl-s1-hl {
  animation: wl-s1-hlIn 0.7s ease forwards;
}

#wl-s1.wl-s1-animate .wl-s1-q-wrap {
  animation: wl-s1-qwrapIn 0.6s ease forwards 0.4s;
}

/* --- Slide 2 --- */
.wl-s2-inner {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 0 var(--wl-inset);
}

.wl-s2-left {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.wl-s2-hl {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wl-s2-hl em {
  font-style: normal;
  color: var(--wl-red);
  text-shadow: 0 0 40px rgba(255, 45, 45, 0.3);
}

.wl-s2-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 300px;
}

.wl-college-banner {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  display: none;
}

.wl-college-banner.show {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: wl-fadeUp 0.4s ease forwards;
}

.wl-college-banner.partner {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: rgba(255, 255, 255, 0.75);
}

.wl-college-banner.non-partner {
  background: rgba(255, 45, 45, 0.06);
  border: 1px solid rgba(255, 45, 45, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.wl-college-banner strong {
  color: var(--wl-white);
}

.wl-college-banner .wl-check-icon {
  color: var(--wl-green);
}

.wl-s2-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
}

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

.wl-fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wl-fg.full {
  grid-column: 1 / -1;
}

.wl-flabel {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.wl-fi {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--wl-white);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.wl-fi::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.wl-fi:focus {
  border-color: rgba(255, 45, 45, 0.45);
  box-shadow: 0 0 18px rgba(255, 45, 45, 0.08);
}

.wl-otp-row {
  display: flex;
  gap: 10px;
}

.wl-otp-row .wl-fi {
  flex: 1;
}

.wl-otp-btn {
  padding: 13px 18px;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.3);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-red);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.wl-otp-btn:not(.sent):hover {
  background: rgba(255, 45, 45, 0.18);
  border-color: rgba(255, 45, 45, 0.5);
}

.wl-otp-btn.sent {
  color: var(--wl-green);
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.28);
}

.wl-sem-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.wl-sem-btn {
  padding: 10px 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  font-family: var(--wl-font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.wl-sem-btn:hover {
  border-color: rgba(255, 45, 45, 0.35);
  color: var(--wl-white);
}

.wl-sem-btn.on {
  background: rgba(255, 45, 45, 0.14);
  border-color: rgba(255, 45, 45, 0.5);
  color: var(--wl-red);
}

/* --- Slide 3 --- */
.wl-s3-inner {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 0 var(--wl-inset);
}

.wl-s3-left {
  display: flex;
  flex-direction: column;
}

.wl-s3-hl {
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.wl-s3-hl__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.04em;
}

.wl-s3-hl__row {
  display: block;
}

.wl-s3-hl em {
  font-style: normal;
  color: var(--wl-red);
}

.wl-s3-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
  margin-bottom: 28px;
}

.wl-s3-desc b {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.wl-s3-prompts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.wl-s3-prompt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s, transform 0.4s;
}

.wl-s3-prompt.in {
  opacity: 1;
  transform: translateX(0);
}

.wl-prompt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wl-red);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 8px;
}

.wl-prompt-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  font-style: italic;
}

.wl-s3-note {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-s3-note::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.wl-s3-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-pc {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.5s, box-shadow 0.5s;
}

.wl-pc.lit {
  border-color: rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 60px rgba(255, 45, 45, 0.1);
}

.wl-pc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 45, 0.04), transparent);
  top: -50px;
  animation: wl-pcScan 2.5s ease-in-out infinite 1s;
  pointer-events: none;
}

.wl-pc > * {
  position: relative;
  z-index: 1;
}

@keyframes wl-pcScan {
  0% {
    top: -50px;
  }
  100% {
    top: calc(100% + 50px);
  }
}

.wl-pc-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wl-pc-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.4s;
}

.wl-pc.lit .wl-pc-av {
  border-color: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.2);
  color: var(--wl-white);
}

.wl-pc-meta {
  flex: 1;
  min-width: 0;
}

.wl-pc-nm {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
}

.wl-pc-cl {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.wl-pc-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wl-red);
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: 4px;
  padding: 4px 9px;
  flex-shrink: 0;
}

.wl-pc-ps {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.wl-pc-ps-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.wl-pc-ps-val {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  min-width: 0;
  text-align: left;
}

.wl-pc-ps-val #wl-ps {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.wl-ps-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background 0.3s;
}

.wl-ps-dot.rec {
  background: var(--wl-red);
  animation: wl-pulse 1s ease-in-out infinite;
}

.wl-ps-dot.done {
  background: var(--wl-green);
}

@keyframes wl-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.wl-pc-sr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-pc-sr-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.wl-pc-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 45, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.28);
  animation: wl-ringB 3s ease-in-out infinite;
}

@keyframes wl-ringB {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(255, 45, 45, 0.08);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.2);
  }
}

.wl-recorder {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.wl-recorder.wl-rec-active {
  border-color: rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 40px rgba(255, 45, 45, 0.1);
}

.wl-rec-preview {
  background: #080808;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}

.wl-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.wl-rec-preview::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px 0 0 0;
  pointer-events: none;
  z-index: 1;
}

.wl-rec-preview::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 3px 0;
  pointer-events: none;
  z-index: 1;
}

.wl-rec-preview-icon {
  font-size: 36px;
  opacity: 0.18;
}

.wl-rec-preview-lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.6;
  max-width: 22em;
  padding: 0 12px;
  box-sizing: border-box;
}

.wl-rec-preview-hint {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}

.wl-rec-preview.active .wl-rec-preview-icon,
.wl-rec-preview.active .wl-rec-preview-lbl,
.wl-rec-preview.active .wl-rec-preview-hint {
  display: none;
}

.wl-rec-preview.active::before,
.wl-rec-preview.active::after {
  opacity: 0.35;
}

.wl-rec-preview.active {
  background:
    radial-gradient(ellipse at center, rgba(255, 45, 45, 0.12) 0%, transparent 70%),
    #080808;
}

.wl-rec-ind {
  position: absolute;
  top: 10px;
  right: 12px;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wl-red);
  opacity: 0;
  transition: opacity 0.3s;
}

.wl-rec-ind[hidden] {
  display: none !important;
}

.wl-rec-ind:not([hidden]) {
  display: flex;
  opacity: 1;
}

.wl-rec-ind-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wl-red);
  animation: wl-pulse 1s ease-in-out infinite;
}

.wl-rec-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.wl-rec-bottom-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wl-rec-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--wl-red);
  border: 1px solid transparent;
  border-radius: 9px;
  box-sizing: border-box;
  font-family: var(--wl-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.wl-rec-btn:not(.on):hover {
  background: #ff1a1a;
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.35);
}

.wl-rec-btn.on {
  background: rgba(255, 45, 45, 0.12);
  border: 1px solid rgba(255, 45, 45, 0.4);
  color: var(--wl-red);
}

.wl-rec-upload {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
  line-height: 1.45;
}

.wl-rec-upload:hover {
  color: rgba(255, 255, 255, 0.75);
}

.wl-rec-timer {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.wl-rec-timer.on {
  color: var(--wl-red);
}

/* --- Slide 4 --- */
.wl-s4-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  padding: 0 var(--wl-inset);
}

.wl-sub-card {
  width: 320px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 45, 45, 0.3);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 0 80px rgba(255, 45, 45, 0.12);
}

#wl-s4:not(.wl-s4-animate) .wl-sub-card {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

#wl-s4.wl-s4-animate .wl-sub-card {
  animation: wl-cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes wl-cardIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wl-sc-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wl-sc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.12);
  border: 2px solid rgba(255, 45, 45, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--wl-red);
}

.wl-sc-nm {
  font-size: 15px;
  font-weight: 800;
  color: var(--wl-white);
  letter-spacing: -0.02em;
}

.wl-sc-cl {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}

.wl-sc-sigs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.wl-sc-sig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

#wl-s4:not(.wl-s4-animate) .wl-sc-sig {
  opacity: 0;
  transform: translateX(-10px);
}

#wl-s4.wl-s4-animate .wl-sc-sig {
  animation: wl-sigIn 0.5s ease forwards;
}

#wl-s4.wl-s4-animate .wl-sc-sig:nth-child(1) {
  animation-delay: 0.9s;
}

#wl-s4.wl-s4-animate .wl-sc-sig:nth-child(2) {
  animation-delay: 1.1s;
}

#wl-s4.wl-s4-animate .wl-sc-sig:nth-child(3) {
  animation-delay: 1.3s;
}

.wl-sc-sig[hidden] {
  display: none !important;
}

@keyframes wl-sigIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wl-sc-sig-nm {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.wl-sc-sig-ok {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 3px;
  padding: 3px 8px;
}

.wl-sc-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-sc-sl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.wl-sc-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 45, 45, 0.5);
  animation: wl-ringB 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.1);
}

.wl-s4-hl {
  font-weight: 800;
  font-size: clamp(1.85rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.96);
}

.wl-s4-hl__phrase {
  display: inline-block;
  white-space: nowrap;
}

#wl-s4:not(.wl-s4-animate) .wl-s4-hl {
  opacity: 0;
  transform: translateY(12px);
}

#wl-s4.wl-s4-animate .wl-s4-hl {
  animation: wl-fadeUp 0.7s ease forwards 1.5s;
}

.wl-s4-hl em {
  font-style: normal;
  color: var(--wl-red);
  text-shadow: 0 0 40px rgba(255, 45, 45, 0.35);
}

@media (max-width: 359px) {
  .wl-s4-hl__phrase {
    white-space: normal;
    text-wrap: balance;
  }
}

.wl-s4-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
  margin-bottom: 20px;
}

#wl-s4:not(.wl-s4-animate) .wl-s4-sub {
  opacity: 0;
  transform: translateY(12px);
}

#wl-s4.wl-s4-animate .wl-s4-sub {
  animation: wl-fadeUp 0.6s ease forwards 1.7s;
}

.wl-s4-callout {
  padding: 18px 22px;
  margin-bottom: 28px;
  background: rgba(255, 45, 45, 0.07);
  border: 1px solid rgba(255, 45, 45, 0.2);
  border-radius: 12px;
}

#wl-s4:not(.wl-s4-animate) .wl-s4-callout {
  opacity: 0;
  transform: translateY(12px);
}

#wl-s4.wl-s4-animate .wl-s4-callout {
  animation: wl-fadeUp 0.6s ease forwards 1.9s;
}

.wl-s4-callout .big {
  font-size: 15px;
  font-weight: 800;
  color: var(--wl-white);
  line-height: 1.4;
  margin-bottom: 6px;
}

.wl-s4-callout .small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.wl-s4-callout .wl-red {
  color: var(--wl-red);
}

.wl-s4-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

#wl-s4:not(.wl-s4-animate) .wl-s4-actions {
  opacity: 0;
  transform: translateY(12px);
}

#wl-s4.wl-s4-animate .wl-s4-actions {
  animation: wl-fadeUp 0.6s ease forwards 2.1s;
}

.wl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--wl-red);
  border: none;
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-white);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.wl-btn-primary:hover {
  background: #ff1a1a;
  box-shadow: 0 0 32px rgba(255, 45, 45, 0.35);
  transform: translateY(-1px);
}

a.wl-btn-primary {
  text-decoration: none;
  color: inherit;
}

.wl-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.wl-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--wl-white);
}

/* --- Nav --- */
.wl-nav-next {
  position: fixed;
  bottom: clamp(28px, 5vh, 52px);
  right: var(--wl-inset);
  /* Above site nav (100) and waitlist chrome so Continue is always clickable */
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--wl-red);
  border: none;
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, opacity 0.4s;
}

.wl-nav-next.show {
  opacity: 1;
  pointer-events: auto;
}

.wl-nav-next.gold-mode {
  background: var(--wl-gold);
  color: #000;
}

.wl-nav-next.gold-mode:hover {
  background: #f0950a;
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.35);
}

.wl-nav-next:not(.gold-mode):hover {
  background: #ff1a1a;
  box-shadow: 0 0 32px rgba(255, 45, 45, 0.35);
  transform: translateY(-1px);
}

.wl-arr {
  transition: transform 0.2s;
}

.wl-nav-next:hover .wl-arr {
  transform: translateX(4px);
}

.wl-nav-back {
  position: fixed;
  bottom: clamp(28px, 5vh, 52px);
  left: var(--wl-inset);
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-family: var(--wl-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: border-color 0.2s, color 0.2s, opacity 0.4s;
}

.wl-nav-back.show {
  opacity: 1;
  pointer-events: auto;
}

.wl-nav-back:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--wl-white);
}

@keyframes wl-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wl-fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .wl-path-cards {
    grid-template-columns: 1fr;
  }

  .wl-s2-inner,
  .wl-s3-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wl-s3-left {
    align-items: center;
    text-align: center;
  }

  .wl-s3-hl__stack {
    align-items: center;
  }

  .wl-s3-desc {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .wl-s3-prompts {
    width: 100%;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .wl-s3-note {
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: left;
  }

  .wl-s3-right {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
