@charset "UTF-8";
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
	Hero — animated whiteboard
	--------------------------
*/
.wb-hero {
  position: relative;
  overflow: hidden;
}
.wb-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  z-index: 4;
}

/* Dot grid */
.wb-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(16, 113, 242, 0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Cursor overlay */
.wb-cursors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.wb-cursor {
  position: absolute;
  display: flex;
  align-items: flex-start;
  z-index: 3;
  opacity: 0;
  will-change: transform, opacity;
}
.wb-cursor svg {
  filter: drop-shadow(0 0 1.5px white) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

.wb-cursor-name {
  display: inline-block;
  padding: 2px 7px 3px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  margin-top: 9px;
  margin-left: -5px;
  line-height: 1.4;
}

/* Individual cursor colours — from moqups brand palette */
.wb-cursor-1 {
  color: #1071f2;
}

.wb-cursor-1 .wb-cursor-name {
  background: #1071f2;
}

.wb-cursor-2 {
  color: #4d9500;
}

.wb-cursor-2 .wb-cursor-name {
  background: #4d9500;
}

.wb-cursor-3 {
  color: #f45f20;
}

.wb-cursor-3 .wb-cursor-name {
  background: #f45f20;
}

.wb-cursor-4 {
  color: #7656f3;
}

.wb-cursor-4 .wb-cursor-name {
  background: #7656f3;
}

/* Cursor positions & animations */
.wb-cursor-1 {
  top: 21%;
  left: 40%;
  animation: wbCursor1 7s linear infinite;
}

.wb-cursor-2 {
  top: 55%;
  left: 30%;
  animation: wbCursor2 7s linear infinite;
}

.wb-cursor-3 {
  top: 53%;
  left: 24%;
  animation: wbCursor3 9s linear infinite;
}

/* .wb-cursor-4 position + animation fully JS-driven */
.wb-cursor-5 {
  top: 0;
  left: 0;
  color: #7c4a1e;
  pointer-events: none;
}

.wb-cursor-5 .wb-cursor-name {
  background: #7c4a1e;
}

/* Prevent OWHeader2 from wrapping — keeps bounding box to a single line */
@media (min-width: 576px) {
  #wb-realtime-text {
    white-space: nowrap;
  }
}
/* wbCursor1 keyframe is written dynamically by JS (wb-cursor1-kf style tag)
   so the translate values use real measured px instead of CSS var fallbacks.
   This rule is the pre-JS fallback only. */
@keyframes wbCursor1 {
  0% {
    transform: translate(0, 0);
  }
  21%, 78% {
    transform: translate(120px, 48px);
  }
  90% {
    transform: translate(26px, 34px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* wbCursor2 keyframe written dynamically by JS — pre-JS fallback */
@keyframes wbCursor2 {
  0%, 100% {
    transform: translate(-80px, 0px);
  }
  20%, 50% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(-80px, 0px);
  }
}
/* Emoji placed by Andy */
.wb-emoji {
  position: absolute;
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
  z-index: 2; /* carry above placed, below cursors */
  animation: wbEmojiPop 7s linear infinite;
  will-change: transform, opacity;
}

/* Placed sticker — no animation, JS controls opacity only */
.wb-emoji-placed {
  position: absolute;
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.08s ease;
}

/* wbEmojiPop keyframe written dynamically by JS (wb-emoji-kf style tag) —
   this is the pre-JS fallback only */
@keyframes wbEmojiPop {
  0%, 48%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  27% {
    opacity: 1;
    transform: scale(1);
  }
}
/* wbCursor3 keyframe written dynamically by JS — this is the pre-JS fallback */
@keyframes wbCursor3 {
  0% {
    transform: translate(70px, 55px);
  }
  20%, 50% {
    transform: translate(0, 0);
  }
  68% {
    transform: translate(75px, 60px);
  }
  100% {
    transform: translate(70px, 55px);
  }
}
/* Text selection highlight (synced with cursor 1) */
.wb-selection {
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
}

/* No position/size fallbacks — all set by JS. Zero width = invisible before JS runs. */
.wb-selection-1 {
  height: 2rem;
  background: rgba(16, 113, 242, 0.25);
  transform-origin: top left;
  animation: wbSelection1 7s linear infinite;
  will-change: transform, opacity;
}

@keyframes wbSelection1 {
  0% {
    opacity: 1;
    transform: scaleX(0);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  21% {
    opacity: 1;
    transform: scaleX(1);
  }
  78% {
    opacity: 1;
    transform: scaleX(1);
  }
  86% {
    opacity: 0;
    transform: scaleX(1);
  }
  92%, 100% {
    opacity: 0;
    transform: scaleX(0);
  }
}
/* Sticky note — square, position + colour + lifecycle driven by JS */
.wb-sticky {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 3px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
}
.wb-sticky p {
  margin: 0;
}

@keyframes wbBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.wb-sticky-text.wb-typing-active::after {
  content: "|";
  animation: wbBlink 0.6s step-end infinite;
  font-weight: 400;
  margin-left: 1px;
}

/* CTA button nudge — animation written by JS in sync with wb-cursor3 */
.wb-cta-btn {
  position: relative;
}

/* Hide cursors & sticky on small screens */
@media (max-width: 991px) {
  .wb-cursors {
    display: none;
  }
}
/*
	Scale marquee duration to match item count (21 items vs 12 on vs-figma) */
.marquee-items,
.marquee-container-opposite .marquee-items {
  animation-duration: 105s;
}

/* Domore card links */
.wb-domore-link {
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wb-domore-link:hover {
  transform: translateY(-2px);
}