#vivloWelkomOverlay {
  --wo-bg: #07090d;
  --wo-green: #52b82e;
  --wo-orange: #e07d18;
  --wo-gold: #c8906a;
  --wo-gold2: #e8c090;
  --wo-text: #eceae5;
  --wo-sub: #7880a0;
  --wo-dim: #2a2e40;
  background: var(--wo-bg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wo-atmo {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(82,184,46,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 85%, rgba(224,125,24,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 100% 70%, rgba(200,144,106,.05) 0%, transparent 60%);
}
.wo-inner {
  position: relative; z-index: 1;
  height: 100dvh;
  display: flex; flex-direction: column;
  max-width: 480px; margin: 0 auto;
  padding: 0 24px 32px;
  overflow: hidden;
}
.wo-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-bottom: 4px;
}
.wo-skip {
  background: transparent; border: none;
  color: var(--wo-sub); font-size: .82rem;
  cursor: pointer; padding: 6px 2px;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.wo-skip:hover { color: var(--wo-text); }
.wo-step-txt { font-size: .75rem; color: var(--wo-dim); }
.wo-dots {
  display: flex; gap: 6px; justify-content: center;
  padding: 16px 0 0;
}
.wo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wo-dim);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.wo-dot.active { width: 22px; border-radius: 3px; background: var(--wo-green); }
.wo-slides { flex: 1; position: relative; min-height: 0; }
.wo-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 0 8px;
  opacity: 0; pointer-events: none;
  transform: translateX(48px);
  transition: opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1);
}
.wo-slide.active  { opacity: 1; pointer-events: all; transform: translateX(0); }
.wo-slide.exit    { opacity: 0; pointer-events: none; transform: translateX(-48px); }
.wo-logo {
  display: inline-flex; align-items: center; gap: 1px;
  background: linear-gradient(135deg, rgba(82,184,46,.1), rgba(200,144,106,.08));
  border: 1.5px solid rgba(82,184,46,.22);
  border-radius: 18px; padding: 10px 22px; margin-bottom: 28px;
}
.wo-logo-viv { font-size: 1.55rem; font-weight: 900; color: var(--wo-green); letter-spacing: -.04em; }
.wo-logo-lo  { font-size: 1.55rem; font-weight: 900; color: var(--wo-orange); letter-spacing: -.04em; }
.wo-emoji {
  font-size: 3.6rem; margin-bottom: 18px;
  animation: wo-float 3.2s ease-in-out infinite;
  display: block; line-height: 1;
}
@keyframes wo-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  40%     { transform: translateY(-9px) rotate(-2deg); }
  70%     { transform: translateY(-5px) rotate(1deg); }
}
.wo-title {
  font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  font-size: 1.85rem; font-weight: 800;
  color: var(--wo-text); text-align: center;
  letter-spacing: -.04em; line-height: 1.2; margin: 0 0 11px;
}
.wo-title .g { color: var(--wo-green); }
.wo-title .o { color: var(--wo-orange); }
.wo-title .a { color: var(--wo-gold2); }
.wo-sub {
  font-size: .93rem; color: var(--wo-sub);
  text-align: center; line-height: 1.65;
  margin: 0 0 28px; max-width: 340px;
}
.wo-features { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.wo-feat {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 13px 15px;
  opacity: 0; transform: translateX(-16px);
  transition: opacity .4s ease, transform .4s ease;
}
.wo-slide.active .wo-feat { opacity: 1; transform: translateX(0); }
.wo-slide.active .wo-feat:nth-child(1) { transition-delay: .06s; }
.wo-slide.active .wo-feat:nth-child(2) { transition-delay: .13s; }
.wo-slide.active .wo-feat:nth-child(3) { transition-delay: .20s; }
.wo-feat-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.wo-ic-g { background: rgba(82,184,46,.12); }
.wo-ic-o { background: rgba(224,125,24,.12); }
.wo-ic-a { background: rgba(200,144,106,.12); }
.wo-feat-text strong {
  display: block; font-size: .88rem; font-weight: 700;
  color: var(--wo-text); margin-bottom: 2px;
}
.wo-feat-text span { font-size: .77rem; color: var(--wo-sub); line-height: 1.4; }
.wo-cta-wrap { width: 100%; margin-top: auto; padding-top: 20px; }
.wo-btn {
  width: 100%; padding: 16px 20px;
  background: linear-gradient(135deg, #2a8a3a, var(--wo-green));
  border: none; border-radius: 14px;
  color: #fff; font-size: 1rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; letter-spacing: -.01em;
  box-shadow: 0 8px 24px rgba(82,184,46,.25), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .18s, box-shadow .18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(82,184,46,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.wo-btn:active { transform: translateY(0); }
.wo-btn-ghost {
  width: 100%; padding: 13px 20px; margin-top: 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; color: var(--wo-sub);
  font-size: .9rem; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: color .2s, border-color .2s;
}
.wo-btn-ghost:hover { color: var(--wo-text); border-color: rgba(255,255,255,.18); }
.wo-name-display {
  font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--wo-green); text-align: center;
  letter-spacing: -.04em; margin-bottom: 6px;
  min-height: 2.6rem;
}
.wo-checklist { display: flex; flex-direction: column; gap: 9px; width: 100%; }
.wo-check {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(82,184,46,.05);
  border: 1px solid rgba(82,184,46,.15);
  border-radius: 12px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.wo-slide.active .wo-check { opacity: 1; transform: translateY(0); }
.wo-slide.active .wo-check:nth-child(1) { transition-delay: .05s; }
.wo-slide.active .wo-check:nth-child(2) { transition-delay: .12s; }
.wo-slide.active .wo-check:nth-child(3) { transition-delay: .19s; }
.wo-slide.active .wo-check:nth-child(4) { transition-delay: .26s; }
.wo-check-icon { font-size: 1.2rem; flex-shrink: 0; }
.wo-check-txt { font-size: .87rem; color: var(--wo-text); font-weight: 500; }
.wo-check-sub { font-size: .75rem; color: var(--wo-sub); }
