/* Shared kinetic presentation for the home solution stage and the solutions journey. */
.wv-kinetic-home,
.wv-journey {
  --wv-ink: #f7f9ff;
  --wv-muted: #aeb9d4;
  --wv-line: rgba(184, 202, 255, .2);
  --wv-active: #6c8dff;
  --wv-active-soft: rgba(108, 141, 255, .18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--wv-ink);
  background: #070b18;
}

.wv-kinetic-home {
  min-height: 720px;
  padding: clamp(5.5rem, 10vw, 9rem) max(1.25rem, 5vw) 2rem;
  border-radius: 0;
  content-visibility: auto;
  contain: layout paint style;
  contain-intrinsic-size: 720px;
}

.wv-kinetic-home::before,
.wv-journey::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at var(--wv-pointer-x, 76%) var(--wv-pointer-y, 48%), rgba(68, 110, 255, .24), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(65, 221, 255, .12), transparent 30%),
    linear-gradient(135deg, #060914 0%, #0b1328 54%, #07101f 100%);
  content: "";
}

.wv-kinetic-home::after,
.wv-journey::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  background-image: none;
  content: "";
  pointer-events: none;
}

.wv-kinetic-home::after {
  display: none;
}

.wv-kinetic-home__inner {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  width: min(1240px, 100%);
  min-height: 580px;
  margin: 0 auto;
}

.wv-kinetic-home__copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.wv-eyebrow,
.wv-journey__kicker,
.wv-orbit__kicker,
.wv-journey__scene-kicker {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  color: #8fa9ff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wv-eyebrow i {
  color: #65dcff;
}

.wv-kinetic-home h2,
.wv-journey h2 {
  margin: 1.1rem 0 1.25rem;
  color: var(--wv-ink);
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .95;
}

.wv-gradient {
  display: inline-block;
  color: #dfe7ff;
  background: linear-gradient(110deg, #fff 8%, #79a0ff 34%, #65dcff 54%, #ffae59 78%, #fff 95%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wv-gradient-shift 8s linear infinite;
}

.wv-kinetic-home__intro,
.wv-journey__intro {
  max-width: 570px;
  margin: 0;
  color: var(--wv-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.wv-kinetic-home__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: #d8e0f6;
  font-size: .8rem;
  list-style: none;
}

.wv-kinetic-home__trust li::before {
  display: inline-block;
  width: .45rem;
  height: .45rem;
  margin: 0 .45rem .08rem 0;
  border-radius: 50%;
  background: #65dcff;
  box-shadow: 0 0 12px #65dcff;
  content: "";
}

.wv-kinetic-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.wv-button {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  min-height: 2.9rem;
  padding: .75rem 1.05rem;
  border: 1px solid rgba(164, 186, 255, .35);
  border-radius: 999px;
  color: #f7f9ff;
  background: rgba(255, 255, 255, .07);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.wv-button:hover,
.wv-button:focus-visible {
  border-color: #65dcff;
  color: #fff;
  background: rgba(101, 220, 255, .15);
  transform: translateY(-2px);
}

.wv-button--primary {
  border-color: transparent;
  color: #07101f;
  background: linear-gradient(110deg, #a9baff, #65dcff);
}

.wv-button--primary:hover,
.wv-button--primary:focus-visible {
  color: #07101f;
  background: linear-gradient(110deg, #c9d3ff, #8ce9ff);
}

.wv-orbit {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1;
  margin: auto;
}

.wv-orbit::before,
.wv-orbit::after,
.wv-orbit__halo {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.wv-orbit::before {
  inset: 11%;
  border: 1px solid rgba(169, 186, 255, .25);
  box-shadow: 0 0 55px rgba(101, 220, 255, .13), inset 0 0 55px rgba(101, 220, 255, .1);
  animation: wv-spin 24s linear infinite;
}

.wv-orbit::after {
  inset: 25%;
  border: 1px dashed rgba(101, 220, 255, .24);
  animation: wv-spin-reverse 17s linear infinite;
}

.wv-orbit__halo {
  inset: 4%;
  background: radial-gradient(circle, transparent 44%, rgba(108, 141, 255, .09) 58%, transparent 72%);
  animation: wv-breathe 5s ease-in-out infinite;
}

.wv-orbit__ring {
  position: absolute;
  inset: 18%;
  border: 1px solid var(--wv-line);
  border-radius: 50%;
  transform: rotate(-19deg) skewX(-12deg);
}

.wv-orbit__ring--outer {
  inset: 4%;
  border-style: dashed;
  border-color: rgba(101, 220, 255, .16);
  transform: rotate(26deg) skewX(8deg);
  animation: wv-spin-reverse 32s linear infinite;
}

.wv-orbit__sweep {
  position: absolute;
  inset: 9%;
  border: 1px solid transparent;
  border-top-color: rgba(255, 174, 89, .9);
  border-radius: 50%;
  transform: rotate(-28deg) skewX(-8deg);
  animation: wv-spin 8s linear infinite;
}

.wv-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-content: center;
  width: 38%;
  aspect-ratio: 1;
  padding: 1.5rem;
  border: 1px solid rgba(199, 212, 255, .45);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(117, 150, 255, .3), rgba(8, 16, 35, .94) 68%);
  box-shadow: 0 0 0 12px rgba(101, 220, 255, .035), 0 0 45px rgba(101, 220, 255, .24);
  text-align: center;
  transform: translate(-50%, -50%);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.wv-orbit__center.is-switching {
  border-color: var(--wv-active);
  box-shadow: 0 0 0 12px var(--wv-active-soft), 0 0 60px var(--wv-active-soft);
}

.wv-orbit__center.is-switching > * {
  opacity: .25;
  transform: translateY(5px);
}

.wv-orbit__center > * {
  transition: opacity .18s ease, transform .18s ease;
}

.wv-orbit__center strong {
  margin: .35rem 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: -.04em;
}

.wv-orbit__center p {
  margin: 0;
  color: var(--wv-muted);
  font-size: .75rem;
  line-height: 1.4;
}

.wv-orbit__center a {
  margin-top: .7rem;
  color: #8eeaff;
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.wv-orbit__node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: .25rem;
  min-width: 132px;
  padding: .8rem .9rem;
  border: 1px solid rgba(176, 194, 255, .26);
  border-radius: 1rem;
  color: #f8faff;
  background: rgba(9, 18, 40, .78);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-align: left;
  transform: translateZ(0);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.wv-orbit__node:hover,
.wv-orbit__node:focus-visible,
.wv-orbit__node[aria-pressed="true"] {
  border-color: var(--wv-node-color, #65dcff);
  background: rgba(21, 37, 76, .94);
  box-shadow: 0 0 0 4px var(--wv-node-soft, rgba(101, 220, 255, .1)), 0 14px 36px rgba(0, 0, 0, .28);
  outline: none;
  transform: translateY(-3px);
}

.wv-orbit__node small {
  color: var(--wv-node-color, #8fa9ff);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wv-orbit__node strong {
  font-size: .88rem;
}

.wv-orbit__node--plan { top: 4%; left: 10%; --wv-node-color: #6c8dff; --wv-node-soft: rgba(108, 141, 255, .15); }
.wv-orbit__node--buy { top: 44%; right: 0; --wv-node-color: #65dcff; --wv-node-soft: rgba(101, 220, 255, .15); }
.wv-orbit__node--solve { bottom: 5%; left: 12%; --wv-node-color: #ff922e; --wv-node-soft: rgba(255, 146, 46, .15); }

.wv-orbit__node--plan::after,
.wv-orbit__node--buy::after,
.wv-orbit__node--solve::after {
  position: absolute;
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--wv-node-color), transparent);
  content: "";
  opacity: .5;
}

.wv-orbit__node--plan::after { right: -30px; bottom: -54px; transform: rotate(-45deg); }
.wv-orbit__node--buy::after { bottom: -48px; left: -28px; transform: rotate(55deg); }
.wv-orbit__node--solve::after { top: -50px; right: -28px; transform: rotate(45deg); }

.wv-kinetic-home__marquee {
  position: relative;
  width: calc(100% + max(1.25rem, 5vw) * 2);
  margin: 2rem 0 -2rem calc(max(1.25rem, 5vw) * -1);
  overflow: hidden;
  border-top: 1px solid rgba(174, 195, 255, .14);
  border-bottom: 1px solid rgba(174, 195, 255, .14);
  color: #8491b0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wv-kinetic-home__marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  min-width: max-content;
  padding: .85rem 0;
  animation: wv-marquee 28s linear infinite;
}

.wv-kinetic-home__marquee em {
  color: #65dcff;
  font-style: normal;
}

body:has([data-wv-kinetic-home]) {
  background-attachment: scroll;
}

.wv-kinetic-home:not(.is-in-view) .wv-gradient,
.wv-kinetic-home:not(.is-in-view) .wv-orbit::before,
.wv-kinetic-home:not(.is-in-view) .wv-orbit::after,
.wv-kinetic-home:not(.is-in-view) .wv-orbit__halo,
.wv-kinetic-home:not(.is-in-view) .wv-orbit__ring--outer,
.wv-kinetic-home:not(.is-in-view) .wv-orbit__sweep,
.wv-kinetic-home:not(.is-in-view) .wv-kinetic-home__marquee-track,
.wv-journey:not(.is-in-view) .wv-journey__scene::before,
.wv-journey:not(.is-in-view) .wv-journey__orb,
.wv-journey:not(.is-in-view) .wv-journey__beam {
  animation-play-state: paused;
}

/* Vertical journey used inside the solutions landing page. */
.wv-journey {
  min-height: 760px;
  margin: 0;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  border-radius: 1.4rem;
}

.wv-journey__head,
.wv-journey__stage,
.wv-journey__footer {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.wv-journey__head {
  max-width: 760px;
}

.wv-journey h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.wv-journey__stage {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 420px;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.wv-journey__rail {
  position: relative;
  display: grid;
  gap: 3rem;
  align-content: center;
  min-height: 360px;
  padding: 1rem 0;
}

.wv-journey__rail::before,
.wv-journey__progress {
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 21px;
  width: 2px;
  content: "";
}

.wv-journey__rail::before {
  background: rgba(185, 202, 255, .2);
}

.wv-journey__progress {
  bottom: auto;
  height: var(--wv-progress, 0%);
  background: linear-gradient(#6c8dff, #65dcff, #ff922e);
  box-shadow: 0 0 14px rgba(101, 220, 255, .8);
  transition: height .55s cubic-bezier(.22, 1, .36, 1);
}

.wv-journey__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  align-items: center;
  padding: 0;
  border: 0;
  color: #8e9cbb;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color .25s ease, transform .25s ease;
}

.wv-journey__step:hover,
.wv-journey__step:focus-visible,
.wv-journey__step[aria-current="step"] {
  color: #fff;
  outline: none;
  transform: translateX(3px);
}

.wv-journey__step-dot {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 202, 255, .35);
  border-radius: 50%;
  background: #0b1530;
  color: inherit;
  font-size: .7rem;
  font-weight: 850;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.wv-journey__step[aria-current="step"] .wv-journey__step-dot {
  border-color: var(--wv-step-color, #65dcff);
  background: var(--wv-step-color, #65dcff);
  color: #07101f;
  box-shadow: 0 0 0 7px var(--wv-step-soft, rgba(101, 220, 255, .13)), 0 0 26px var(--wv-step-color, #65dcff);
}

.wv-journey__step small {
  display: block;
  margin-bottom: .2rem;
  color: inherit;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wv-journey__step strong {
  display: block;
  font-size: .88rem;
  line-height: 1.2;
}

.wv-journey__scene {
  position: relative;
  min-height: 385px;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(188, 205, 255, .18);
  border-radius: 1.5rem;
  background: linear-gradient(140deg, rgba(27, 43, 83, .84), rgba(10, 19, 42, .75));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
}

.wv-journey__scene::before {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(101, 220, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(101, 220, 255, .08), inset 0 0 50px rgba(101, 220, 255, .06);
  content: "";
  animation: wv-spin-reverse 22s linear infinite;
}

.wv-journey__orb {
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--wv-active) 20%, transparent 68%);
  filter: blur(.2px) drop-shadow(0 0 25px var(--wv-active));
  opacity: .75;
  animation: wv-float 5s ease-in-out infinite;
}

.wv-journey__beam {
  position: absolute;
  top: -40%;
  right: 25%;
  width: 80px;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(101, 220, 255, .12), transparent);
  filter: blur(10px);
  transform: rotate(28deg);
  animation: wv-beam 8s ease-in-out infinite;
}

.wv-journey__scene-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  transition: opacity .22s ease, transform .22s ease;
}

.wv-journey__scene.is-switching .wv-journey__scene-content {
  opacity: .1;
  transform: translateY(8px);
}

.wv-journey__scene-index {
  color: var(--wv-active);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 850;
  letter-spacing: -.09em;
  line-height: .8;
  opacity: .28;
}

.wv-journey__scene h3 {
  max-width: 570px;
  margin: .8rem 0 1rem;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.wv-journey__scene-copy {
  max-width: 560px;
  margin: 0;
  color: #c0cce5;
  line-height: 1.7;
}

.wv-journey__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.wv-journey__facts li {
  padding: .45rem .7rem;
  border: 1px solid rgba(188, 205, 255, .2);
  border-radius: 999px;
  color: #e0e8fa;
  background: rgba(255, 255, 255, .05);
  font-size: .72rem;
}

.wv-journey__scene-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: #8eeaff;
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
}

.wv-journey__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 202, 255, .16);
  color: #aeb9d4;
  font-size: .9rem;
}

.wv-journey__footer p {
  margin: 0;
}

.wv-journey__footer a {
  color: #8eeaff;
  font-weight: 800;
}

.wv-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}

.wv-reveal.wv-reveal--pending {
  opacity: 0;
  transform: translateY(22px);
}

.wv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes wv-gradient-shift { to { background-position: -240% center; } }
@keyframes wv-spin { to { transform: rotate(332deg) skewX(-12deg); } }
@keyframes wv-spin-reverse { to { transform: rotate(-360deg) skewX(8deg); } }
@keyframes wv-breathe { 50% { transform: scale(1.08); opacity: .65; } }
@keyframes wv-float { 50% { transform: translate3d(-12px, -16px, 0) scale(1.08); } }
@keyframes wv-beam { 0%, 100% { opacity: .2; transform: translateX(-80px) rotate(28deg); } 50% { opacity: .8; transform: translateX(180px) rotate(28deg); } }
@keyframes wv-marquee { to { transform: translateX(-50%); } }

@media (max-width: 860px) {
  .wv-kinetic-home__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wv-kinetic-home__copy {
    max-width: 720px;
  }

  .wv-orbit {
    width: min(530px, 92vw);
  }

  .wv-journey__stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wv-journey__rail {
    display: flex;
    min-height: 0;
    gap: .5rem;
    justify-content: space-between;
    padding: 0;
  }

  .wv-journey__rail::before,
  .wv-journey__progress {
    top: 21px;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: auto;
    height: 2px;
  }

  .wv-journey__progress {
    width: var(--wv-progress, 0%);
    height: 2px;
  }

  .wv-journey__step {
    display: block;
    width: 33.333%;
    text-align: center;
  }

  .wv-journey__step-dot {
    margin: 0 auto .55rem;
  }

  .wv-journey__step small,
  .wv-journey__step strong {
    display: block;
    max-width: 120px;
    margin-right: auto;
    margin-left: auto;
  }

  .wv-journey__step strong {
    font-size: .75rem;
  }

  .wv-journey__scene {
    min-height: 400px;
  }
}

@media (max-width: 860px), (pointer: coarse) {
  .wv-orbit::after,
  .wv-orbit__halo,
  .wv-orbit__ring--outer,
  .wv-orbit__sweep {
    animation: none;
  }
}

@media (max-width: 540px) {
  .wv-kinetic-home {
    min-height: 0;
    padding-top: 4.5rem;
  }

  .wv-kinetic-home h2 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .wv-orbit {
    width: 108vw;
    margin-left: -8vw;
  }

  .wv-orbit__node {
    min-width: 110px;
    padding: .65rem;
  }

  .wv-orbit__node--plan { left: 4%; }
  .wv-orbit__node--solve { left: 6%; }
  .wv-orbit__node--buy { right: 2%; }

  .wv-orbit__center {
    width: 43%;
    padding: .75rem;
  }

  .wv-orbit__center p {
    display: none;
  }

  .wv-journey {
    padding: 3.5rem 1rem 2.5rem;
    border-radius: 1rem;
  }

  .wv-journey__step small {
    font-size: .55rem;
    letter-spacing: .04em;
  }

  .wv-journey__step strong {
    font-size: .68rem;
  }

  .wv-journey__scene {
    min-height: 460px;
    padding: 1.4rem;
  }

  .wv-journey__scene h3 {
    font-size: 2.2rem;
  }

  .wv-journey__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wv-gradient,
  .wv-orbit::before,
  .wv-orbit::after,
  .wv-orbit__halo,
  .wv-orbit__ring--outer,
  .wv-orbit__sweep,
  .wv-journey__scene::before,
  .wv-journey__orb,
  .wv-journey__beam,
  .wv-kinetic-home__marquee-track {
    animation: none;
  }

  .wv-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wv-reveal.wv-reveal--pending {
    opacity: 1;
    transform: none;
  }

  .wv-orbit__center,
  .wv-orbit__center > *,
  .wv-journey__scene-content,
  .wv-journey__progress,
  .wv-orbit__node,
  .wv-journey__step {
    transition: none;
  }
}
