:root {
  --wl-bg: #fbfaf7;
  --wl-band: #f1eee7;
  --wl-surface: #ffffff;
  --wl-ink: #0a1220;
  --wl-copy: #4a5567;
  --wl-muted: #7a8599;
  --wl-line: rgba(10, 18, 32, 0.1);
  --wl-line-strong: rgba(10, 18, 32, 0.16);
  --wl-teal: #1d676c;
  --wl-mint: #1ddbb7;
  --wl-blue: #365d8f;
  --wl-gold: #c68b3a;
}

body {
  background: var(--wl-bg);
}

.wl-hero,
.wl-stats,
.wl-value,
.wl-api,
.wl-features,
.wl-audience,
.wl-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}

.wl-hero {
  padding-top: 132px;
  padding-bottom: 88px;
}

.wl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.wl-crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wl-muted);
}

.wl-crumbs .dash {
  width: 18px;
  height: 1px;
  background: var(--wl-line-strong);
}

.wl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wl-teal);
}

.wl-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wl-mint);
}

.wl-hero__title {
  max-width: 10ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: 6.1rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.wl-hero__title em {
  color: var(--wl-teal);
  font-style: italic;
}

.wl-hero__lede {
  max-width: 45ch;
  margin-top: 28px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--wl-copy);
}

.wl-hero__cta-row,
.wl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.wl-hero__visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 219, 183, 0.18), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(54, 93, 143, 0.18), transparent 28%),
    linear-gradient(135deg, #f4f2ec, #ffffff 62%);
}

.wl-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 82%);
}

.wl-orbit {
  position: absolute;
  inset: 80px;
  border: 1px dashed rgba(29, 103, 108, 0.22);
  border-radius: 50%;
  animation: wlOrbit 18s linear infinite;
}

.wl-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wl-teal);
  box-shadow: 0 0 0 8px rgba(29, 219, 183, 0.12);
}

.wl-orbit span:nth-child(1) { left: 50%; top: -5px; }
.wl-orbit span:nth-child(2) { right: 6%; bottom: 22%; background: var(--wl-gold); }
.wl-orbit span:nth-child(3) { left: 7%; bottom: 24%; background: var(--wl-blue); }

.wl-hero-products {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  --wl-hero-product-pointer-x: 0px;
  --wl-hero-product-pointer-y: 0px;
}

.wl-hero-product {
  position: absolute;
  left: var(--hero-product-left);
  top: var(--hero-product-top);
  width: var(--hero-product-size);
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    translate3d(var(--hero-product-enter-x, 0), var(--hero-product-enter-y, 0), 0)
    rotate(var(--hero-product-rotate, 0deg))
    scale(.68);
  transform-origin: center;
  transition:
    opacity .58s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: 0s;
  will-change: transform, opacity;
}

.wl-hero__visual:hover .wl-hero-product,
.wl-hero__visual:focus-within .wl-hero-product,
.wl-hero__visual.is-products-hot .wl-hero-product {
  opacity: .98;
  pointer-events: auto;
  transform:
    translate(-50%, -50%)
    translate3d(
      calc(var(--wl-hero-product-pointer-x) * var(--hero-product-depth, .8)),
      calc(var(--wl-hero-product-pointer-y) * var(--hero-product-depth, .8)),
      0
    )
    rotate(var(--hero-product-rotate, 0deg))
    scale(1);
  transition-delay: var(--hero-product-delay, 0s);
}

.wl-hero-product__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: wlHeroProductLatency var(--hero-product-duration, 7.8s) ease-in-out infinite;
  animation-delay: var(--hero-product-latency-delay, 0s);
  will-change: transform;
}

.wl-hero-product__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 18px 30px rgba(29, 103, 108, 0.08));
}

.wl-hero-product__asset {
  position: relative;
  z-index: 2;
  width: var(--hero-product-asset-width, 82%);
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 22px 26px rgba(10, 18, 32, 0.2));
}

.wl-hero-product-particles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}

.wl-hero-like-particle {
  position: absolute;
  left: var(--spawn-x, 50%);
  top: var(--spawn-y, 50%);
  width: var(--size, 38px);
  height: var(--size, 38px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--scale, 1));
  pointer-events: none;
  animation: wlHeroLikeBurst var(--dur, 1250ms) cubic-bezier(.18, .9, .2, 1.12) forwards;
  will-change: transform, opacity;
}

.wl-hero-like-particle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wl-mint);
  box-shadow:
    0 14px 26px rgba(29, 103, 108, 0.18),
    inset 0 -1px 0 rgba(7, 16, 31, 0.08);
}

.wl-hero-like-particle img {
  position: absolute;
  inset: 23%;
  width: 54%;
  height: 54%;
  display: block;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 5px 7px rgba(7, 16, 31, 0.14));
}

@keyframes wlHeroLikeBurst {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate3d(0, 10px, 0)
      rotate(var(--rot, 0deg))
      scale(calc(var(--scale, 1) * .66));
  }
  16% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(calc(var(--dx, 0px) * .16), calc(var(--dy, 0px) * .16), 0)
      rotate(var(--rot, 0deg))
      scale(calc(var(--scale, 1) * 1.08));
  }
  68% {
    opacity: .95;
    transform:
      translate(-50%, -50%)
      translate3d(calc(var(--dx, 0px) * .76), calc(var(--dy, 0px) * .76), 0)
      rotate(calc(var(--rot, 0deg) + var(--spin-mid, 12deg)))
      scale(var(--scale, 1));
  }
  100% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate3d(var(--dx, 0px), var(--dy, 0px), 0)
      rotate(calc(var(--rot, 0deg) + var(--spin, 18deg)))
      scale(calc(var(--scale, 1) * .86));
  }
}

.wl-hero-product--car {
  --hero-product-left: 17%;
  --hero-product-top: 60%;
  --hero-product-size: 178px;
  --hero-product-asset-width: 84%;
  --hero-product-enter-x: 84px;
  --hero-product-enter-y: -18px;
  --hero-product-rotate: -6deg;
  --hero-product-depth: .65;
  --hero-product-delay: .02s;
  --hero-product-duration: 7.8s;
  --hero-product-latency-x: 5px;
  --hero-product-latency-y: -9px;
  --hero-product-latency-r: .9deg;
}

.wl-hero-product--moto {
  --hero-product-left: 24%;
  --hero-product-top: 23%;
  --hero-product-size: 162px;
  --hero-product-asset-width: 92%;
  --hero-product-enter-x: 64px;
  --hero-product-enter-y: 72px;
  --hero-product-rotate: 7deg;
  --hero-product-depth: .9;
  --hero-product-delay: .1s;
  --hero-product-duration: 8.6s;
  --hero-product-latency-delay: -2.1s;
  --hero-product-latency-x: -3px;
  --hero-product-latency-y: -7px;
  --hero-product-latency-r: -.6deg;
}

.wl-hero-product--home {
  --hero-product-left: 78%;
  --hero-product-top: 23%;
  --hero-product-size: 172px;
  --hero-product-asset-width: 88%;
  --hero-product-enter-x: -76px;
  --hero-product-enter-y: 72px;
  --hero-product-rotate: -5deg;
  --hero-product-depth: .78;
  --hero-product-delay: .18s;
  --hero-product-duration: 7.4s;
  --hero-product-latency-delay: -1.2s;
  --hero-product-latency-x: -5px;
  --hero-product-latency-y: -8px;
  --hero-product-latency-r: -.9deg;
}

.wl-hero-product--health {
  --hero-product-left: 82%;
  --hero-product-top: 62%;
  --hero-product-size: 166px;
  --hero-product-asset-width: 82%;
  --hero-product-enter-x: -84px;
  --hero-product-enter-y: -26px;
  --hero-product-rotate: 8deg;
  --hero-product-depth: .7;
  --hero-product-delay: .26s;
  --hero-product-duration: 8.2s;
  --hero-product-latency-delay: -3.4s;
  --hero-product-latency-x: 4px;
  --hero-product-latency-y: 7px;
  --hero-product-latency-r: -.7deg;
}

.wl-phone {
  position: relative;
  z-index: 2;
  width: min(360px, 72%);
  min-height: 560px;
  padding: 20px;
  border: 1px solid rgba(10, 18, 32, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(10, 18, 32, 0.16);
  animation: wlPhoneFloat 7s ease-in-out infinite;
}

.wl-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.12);
  transform: translateX(-50%);
}

.wl-phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}

.wl-phone__top img {
  height: 26px;
  width: auto;
}

.wl-phone__top span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wl-muted);
}

.wl-phone__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.wl-phone__tabs span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--wl-muted);
}

.wl-phone__tabs .is-active {
  border-color: rgba(29, 103, 108, 0.2);
  background: rgba(29, 219, 183, 0.12);
  color: var(--wl-teal);
}

.wl-policy,
.wl-opportunity,
.wl-phone__grid article {
  border-radius: 8px;
}

.wl-policy {
  margin-top: 18px;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, 0.12), rgba(255, 255, 255, 0)),
    var(--wl-ink);
}

.wl-policy span,
.wl-opportunity span,
.wl-phone__grid span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.64;
}

.wl-policy strong,
.wl-opportunity strong,
.wl-phone__grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.wl-policy small,
.wl-opportunity small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.4;
}

.wl-policy__bar {
  height: 7px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.wl-policy__bar i {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--wl-mint);
  animation: wlBar 4s ease-in-out infinite;
}

.wl-phone__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.wl-phone__grid article {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--wl-line);
  background: #fbfaf7;
}

.wl-phone__grid strong {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
}

.wl-opportunity {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(29, 103, 108, 0.22);
  background: rgba(29, 219, 183, 0.12);
}

.wl-opportunity small {
  color: var(--wl-copy);
}

.wl-phone__dock {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.wl-phone__dock span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 18, 32, 0.16);
}

.wl-phone__dock .is-active {
  background: var(--wl-teal);
}

.wl-floating {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 16px;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 48px rgba(10, 18, 32, 0.1);
  backdrop-filter: blur(12px);
}

.wl-floating span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  color: var(--wl-muted);
}

.wl-floating strong {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

.wl-floating--doc {
  left: 7%;
  top: 26%;
  animation: wlFloatLeft 6.4s ease-in-out infinite;
}

.wl-floating--pay {
  right: 6%;
  bottom: 21%;
  animation: wlFloatRight 7.2s ease-in-out infinite;
}

.wl-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  border-top: 1px solid var(--wl-line);
  border-bottom: 1px solid var(--wl-line);
  background: transparent;
}

.wl-stat {
  min-width: 0;
  min-height: 212px;
  padding: clamp(44px, 5vw, 60px) clamp(18px, 2.2vw, 30px);
  border-right: 1px solid var(--wl-line);
  background: transparent;
}

.wl-stat:last-child {
  border-right: none;
}

.wl-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(48px, 5.2vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--wl-ink);
}

.wl-stat__unit {
  color: var(--wl-teal);
  font-size: 0.6em;
}

.wl-stat__label {
  display: block;
  max-width: 22ch;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-muted);
}

.wl-value,
.wl-audience {
  background: var(--wl-band);
}

.wl-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.wl-section-head h2,
.wl-api__copy h2,
.wl-cta h2 {
  margin: 22px 0 0;
  font-family: var(--f-display);
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}

.wl-section-head p,
.wl-api__copy p,
.wl-cta p {
  margin: 0;
  max-width: 44ch;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--wl-copy);
}

.wl-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wl-value-card,
.wl-feature,
.wl-audience__grid article {
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.78);
}

.wl-value-card {
  min-height: 390px;
  padding: 28px;
}

.wl-value-card h3,
.wl-feature h3,
.wl-audience__grid h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.wl-value-card p,
.wl-feature p,
.wl-audience__grid p {
  margin-top: 16px;
  color: var(--wl-copy);
  line-height: 1.52;
}

.wl-mini-viz {
  position: relative;
  height: 160px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 18, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
}

.wl-mini-viz svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wl-mini-viz span {
  position: absolute;
  display: block;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 18, 32, 0.06);
}

.wl-mini-viz--policies span:nth-child(1) {
  left: 24px;
  top: 26px;
  width: 70%;
  height: 42px;
  animation: wlMiniOne 4s ease-in-out infinite;
}

.wl-mini-viz--policies span:nth-child(2) {
  left: 46px;
  top: 78px;
  width: 62%;
  height: 42px;
  background: rgba(29, 219, 183, 0.12);
  animation: wlMiniTwo 4.8s ease-in-out infinite;
}

.wl-mini-viz--policies span:nth-child(3) {
  right: 28px;
  bottom: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wl-teal);
  animation: wlPulse 2s ease-in-out infinite;
}

.wl-mini-viz--activity span:nth-child(1) {
  left: 26px;
  top: 28px;
  width: 34px;
  height: 96px;
  background: rgba(29, 103, 108, 0.12);
}

.wl-mini-viz--activity span:nth-child(2) {
  left: 88px;
  top: 54px;
  width: 50%;
  height: 36px;
  animation: wlMiniOne 3.8s ease-in-out infinite;
}

.wl-mini-viz--activity span:nth-child(3) {
  right: 32px;
  top: 86px;
  width: 78px;
  height: 36px;
  background: #0a1220;
  animation: wlMiniTwo 4.4s ease-in-out infinite;
}

.wl-mini-viz--xsell span:nth-child(1) {
  left: 50%;
  top: 28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(29, 219, 183, 0.12);
  animation: wlPulse 2.6s ease-in-out infinite;
}

.wl-mini-viz--xsell span:nth-child(2) {
  left: 30px;
  bottom: 26px;
  width: 92px;
  height: 38px;
}

.wl-mini-viz--xsell span:nth-child(3) {
  right: 30px;
  bottom: 26px;
  width: 92px;
  height: 38px;
  background: #0a1220;
}

.wl-api__panel {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wl-ink);
  color: #ffffff;
}

.wl-api__copy .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.wl-api__copy .eyebrow::before {
  background: var(--wl-mint);
}

.wl-api__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.wl-api__diagram {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

.wl-api__diagram::before,
.wl-api__diagram::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(29, 219, 183, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wl-api__diagram::before {
  width: 250px;
  height: 250px;
}

.wl-api__diagram::after {
  width: 340px;
  height: 340px;
  animation: wlOrbitCentered 20s linear infinite reverse;
}

.wl-api-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(29, 219, 183, 0.34));
}

.wl-api-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 148px;
  min-height: 122px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--wl-ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.wl-api-core img {
  width: 116px;
}

.wl-api-core span,
.wl-api-node {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wl-api-node {
  position: absolute;
  z-index: 5;
  min-width: 96px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  backdrop-filter: blur(8px);
  animation: wlNodeFloat 6s ease-in-out infinite;
}

.wl-api-node--brand { left: 8%; top: 18%; }
.wl-api-node--crm { right: 10%; top: 22%; animation-delay: -.7s; }
.wl-api-node--erp { left: 12%; bottom: 18%; animation-delay: -1.4s; }
.wl-api-node--eiac { right: 11%; bottom: 18%; animation-delay: -2.1s; }

.wl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background: rgba(10, 18, 32, 0.08);
}

.wl-feature {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--wl-bg);
  color: var(--wl-ink);
  transition: color .45s ease;
}

.wl-feature__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(29, 219, 183, 0.16), transparent 30%),
    var(--wl-ink);
  transform: translateY(102%);
  transition: transform .7s cubic-bezier(.2, .85, .25, 1);
}

.wl-feature:hover,
.wl-feature:focus-within {
  color: var(--wl-bg);
}

.wl-feature:hover .wl-feature__bg,
.wl-feature:focus-within .wl-feature__bg {
  transform: translateY(0);
}

.wl-feature__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.wl-feature__num,
.wl-audience__grid span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--wl-muted);
  transition: color .4s ease;
}

.wl-feature__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--wl-ink);
  opacity: .86;
  transition:
    color .4s ease,
    transform .5s cubic-bezier(.2, .85, .25, 1),
    background .4s ease;
}

.wl-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wl-feature:hover .wl-feature__num,
.wl-feature:focus-within .wl-feature__num {
  color: var(--wl-mint);
}

.wl-feature:hover .wl-feature__icon,
.wl-feature:focus-within .wl-feature__icon {
  color: var(--wl-bg);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(-12deg) scale(1.12);
}

.wl-feature:hover p,
.wl-feature:focus-within p {
  color: rgba(255, 255, 255, 0.68);
}

.wl-feature h3 {
  margin-top: 0;
}

.wl-feature p {
  transition: color .4s ease;
}

.wl-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.wl-audience-card {
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.2, .7, .25, 1),
    border-color .45s ease,
    box-shadow .45s ease,
    background .45s ease;
}

.wl-audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 103, 108, 0.18);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 24px 50px rgba(10, 18, 32, 0.07);
}

.wl-card-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--wl-muted);
  transition: color .4s ease;
}

.wl-audience-card:hover .wl-card-num {
  color: var(--wl-teal);
}

.wl-audience-card__viz {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 28px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.06);
  border-radius: 8px;
  background: var(--wl-bg);
  transform: translateZ(0);
}

.wl-audience-card__viz svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.08);
  transform-origin: 50% 50%;
}

.wl-audience-card__viz::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.52), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(29, 219, 183, 0.12), transparent 34%);
  opacity: .75;
  mix-blend-mode: screen;
}

.wl-audience__grid h3 {
  margin-top: auto;
}

.wl-cta__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 56px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 24%, rgba(29, 219, 183, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(54, 93, 143, 0.14), rgba(29, 219, 183, 0.1)),
    var(--wl-ink);
  color: #ffffff;
}

.wl-cta__inner > :not(.wl-cta__icons) {
  position: relative;
  z-index: 2;
}

.wl-cta__inner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 219, 183, 0.8), transparent);
  z-index: 3;
}

.wl-cta__icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wl-cta__like-icon {
  position: absolute;
  width: var(--like-size, 54px);
  height: var(--like-size, 54px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform:
    translate3d(var(--like-enter-x, 0), var(--like-enter-y, 0), 0)
    rotate(var(--like-rot, 0deg))
    scale(.72);
  transition:
    opacity .52s ease,
    transform .86s cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.2));
}

.wl-cta__like-icon img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: .86;
  filter: brightness(0) invert(1);
}

.wl-cta__inner:hover .wl-cta__like-icon,
.wl-cta__inner:focus-within .wl-cta__like-icon {
  opacity: .62;
  transform:
    translate3d(0, 0, 0)
    rotate(var(--like-rot, 0deg))
    scale(1);
  animation: wlCtaLikeFloat 6.8s ease-in-out infinite;
}

.wl-cta__inner:hover .wl-cta__like-icon:nth-child(2n),
.wl-cta__inner:focus-within .wl-cta__like-icon:nth-child(2n) {
  animation-duration: 8s;
}

.wl-cta__inner:hover .wl-cta__like-icon:nth-child(3n),
.wl-cta__inner:focus-within .wl-cta__like-icon:nth-child(3n) {
  animation-delay: -.7s;
}

.wl-cta__like-icon--one {
  top: 7%;
  left: 14%;
  --like-size: 86px;
  --like-enter-x: -54px;
  --like-enter-y: -14px;
  --like-rot: -9deg;
  transition-delay: .02s;
}

.wl-cta__like-icon--two {
  top: 38%;
  left: -2.5%;
  --like-size: 68px;
  --like-enter-x: -44px;
  --like-rot: 12deg;
  transition-delay: .08s;
}

.wl-cta__like-icon--three {
  bottom: 10%;
  left: 58%;
  --like-size: 70px;
  --like-enter-y: 36px;
  --like-rot: 7deg;
  transition-delay: .14s;
}

.wl-cta__like-icon--four {
  top: 7%;
  right: 5%;
  --like-size: 82px;
  --like-enter-x: 54px;
  --like-enter-y: -12px;
  --like-rot: 10deg;
  transition-delay: .04s;
}

.wl-cta__like-icon--five {
  top: 36%;
  right: 3%;
  --like-size: 70px;
  --like-enter-x: 46px;
  --like-rot: -12deg;
  transition-delay: .1s;
}

.wl-cta__like-icon--six {
  bottom: 9%;
  right: 7%;
  --like-size: 82px;
  --like-enter-x: 34px;
  --like-enter-y: 30px;
  --like-rot: -6deg;
  transition-delay: .16s;
}

.wl-cta__like-icon--seven {
  top: 8%;
  left: 47%;
  --like-size: 56px;
  --like-enter-y: -42px;
  --like-rot: 5deg;
  transition-delay: .2s;
}

.wl-cta__like-icon--eight {
  bottom: 11%;
  left: 51%;
  --like-size: 62px;
  --like-enter-y: 42px;
  --like-rot: -11deg;
  transition-delay: .24s;
}

.wl-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.wl-cta__label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wl-mint);
}

.wl-cta h2 {
  max-width: 12ch;
  color: #ffffff;
}

.wl-cta h2.wl-cta__title {
  max-width: 100%;
  font-size: 4.7rem;
  line-height: 0.94;
}

.wl-cta__title span {
  display: block;
  white-space: nowrap;
}

.wl-cta p {
  max-width: 56ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.wl-cta .btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

@keyframes wlOrbit {
  to { transform: rotate(360deg); }
}

@keyframes wlOrbitCentered {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes wlCtaLikeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes wlPhoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes wlHeroProductLatency {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform:
      translate3d(var(--hero-product-latency-x, 4px), var(--hero-product-latency-y, -8px), 0)
      rotate(var(--hero-product-latency-r, .8deg));
  }
}

@keyframes wlFloatLeft {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(10px, -12px, 0) rotate(2deg); }
}

@keyframes wlFloatRight {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
  50% { transform: translate3d(-12px, -10px, 0) rotate(-2deg); }
}

@keyframes wlBar {
  0%, 100% { width: 54%; }
  50% { width: 82%; }
}

@keyframes wlMiniOne {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -6px, 0); }
}

@keyframes wlMiniTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-6px, 7px, 0); }
}

@keyframes wlPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .62; }
}

@keyframes wlNodeFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

@media (max-width: 1180px) {
  .wl-hero__grid,
  .wl-api__panel {
    grid-template-columns: 1fr;
  }

  .wl-hero__copy,
  .wl-api__copy {
    max-width: 780px;
  }

  .wl-hero__visual {
    min-height: 620px;
  }

  .wl-hero-product--car {
    --hero-product-left: 18%;
    --hero-product-top: 58%;
    --hero-product-size: 158px;
  }

  .wl-hero-product--moto {
    --hero-product-left: 24%;
    --hero-product-top: 22%;
    --hero-product-size: 146px;
  }

  .wl-hero-product--home {
    --hero-product-left: 76%;
    --hero-product-top: 22%;
    --hero-product-size: 154px;
  }

  .wl-hero-product--health {
    --hero-product-left: 80%;
    --hero-product-top: 60%;
    --hero-product-size: 148px;
  }

  .wl-stats,
  .wl-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wl-stat:nth-child(2n) {
    border-right: none;
  }

  .wl-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--wl-line);
  }
}

@media (max-width: 860px) {
  .wl-hero {
    padding-top: 116px;
  }

  .wl-hero__title {
    font-size: 4.4rem;
  }

  .wl-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .wl-section-head h2,
  .wl-api__copy h2,
  .wl-cta h2 {
    font-size: 3.25rem;
  }

  .wl-cta h2.wl-cta__title {
    font-size: 2.8rem;
  }

  .wl-cta__like-icon--two,
  .wl-cta__like-icon--five,
  .wl-cta__like-icon--seven,
  .wl-cta__like-icon--eight {
    display: none;
  }

  .wl-value__grid,
  .wl-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wl-hero,
  .wl-stats,
  .wl-value,
  .wl-api,
  .wl-features,
  .wl-audience,
  .wl-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .wl-hero {
    padding-top: 104px;
    text-align: center;
  }

  .wl-crumbs,
  .wl-hero__cta-row,
  .wl-cta__actions {
    justify-content: center;
  }

  .wl-crumbs {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .wl-hero__title {
    max-width: 8.8ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.35rem;
  }

  .wl-hero__lede,
  .wl-section-head,
  .wl-section-head p,
  .wl-api__copy,
  .wl-api__copy p,
  .wl-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .wl-hero__lede,
  .wl-section-head p,
  .wl-api__copy p,
  .wl-cta p {
    font-size: 1rem;
  }

  .wl-hero__visual {
    min-height: 620px;
  }

  .wl-hero-products {
    display: none;
  }

  .wl-phone {
    width: min(300px, 86%);
    min-height: 510px;
    padding: 16px;
  }

  .wl-floating {
    min-width: 118px;
    padding: 12px;
  }

  .wl-floating--doc {
    left: 4%;
    top: 19%;
  }

  .wl-floating--pay {
    right: 4%;
    bottom: 13%;
  }

  .wl-stats,
  .wl-audience__grid {
    grid-template-columns: 1fr;
  }

  .wl-stat {
    min-height: auto;
    border-right: none;
  }

  .wl-stat:nth-child(-n + 3) {
    border-bottom: 1px solid var(--wl-line);
  }

  .wl-section-head {
    text-align: center;
  }

  .wl-section-head h2,
  .wl-api__copy h2,
  .wl-cta h2 {
    font-size: 2.65rem;
  }

  .wl-api__panel {
    min-height: auto;
    padding: 36px 24px;
  }

  .wl-api__diagram {
    min-height: 340px;
  }

  .wl-api__diagram::before {
    width: 190px;
    height: 190px;
  }

  .wl-api__diagram::after {
    width: 270px;
    height: 270px;
  }

  .wl-api-core {
    width: 128px;
  }

  .wl-api-core img {
    width: 100px;
  }

  .wl-api-node {
    min-width: 78px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .wl-value-card,
  .wl-feature,
  .wl-audience__grid article {
    min-height: auto;
  }

  .wl-audience-card__viz {
    margin-top: 22px;
  }

  .wl-cta__inner {
    padding: 36px 24px;
    text-align: center;
  }

  .wl-cta h2 {
    max-width: 10ch;
    margin-left: auto;
    margin-right: auto;
  }

  .wl-cta h2.wl-cta__title {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .wl-cta__like-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wl-orbit,
  .wl-hero-product,
  .wl-hero-product__inner,
  .wl-cta__like-icon,
  .wl-phone,
  .wl-floating,
  .wl-policy__bar i,
  .wl-mini-viz span,
  .wl-api__diagram::after,
  .wl-api-node,
  .wl-audience-card {
    animation: none !important;
    transition: none !important;
  }

  .wl-api-particles animate,
  .wl-api-particles animateMotion,
  .wl-mini-viz animate,
  .wl-mini-viz animateMotion,
  .wl-mini-viz animateTransform,
  .wl-audience-card__viz animate,
  .wl-audience-card__viz animateMotion,
  .wl-audience-card__viz animateTransform {
    display: none;
  }
}

html[data-anim="off"] .wl-orbit,
html[data-anim="off"] .wl-hero-product,
html[data-anim="off"] .wl-hero-product__inner,
html[data-anim="off"] .wl-cta__like-icon,
html[data-anim="off"] .wl-phone,
html[data-anim="off"] .wl-floating,
html[data-anim="off"] .wl-policy__bar i,
html[data-anim="off"] .wl-mini-viz span,
html[data-anim="off"] .wl-api__diagram::after,
html[data-anim="off"] .wl-api-node,
html[data-anim="off"] .wl-audience-card {
  animation: none !important;
  transition: none !important;
}

html[data-anim="off"] .wl-api-particles animate,
html[data-anim="off"] .wl-api-particles animateMotion,
html[data-anim="off"] .wl-mini-viz animate,
html[data-anim="off"] .wl-mini-viz animateMotion,
html[data-anim="off"] .wl-mini-viz animateTransform,
html[data-anim="off"] .wl-audience-card__viz animate,
html[data-anim="off"] .wl-audience-card__viz animateMotion,
html[data-anim="off"] .wl-audience-card__viz animateTransform {
  display: none;
}
