/* [project]/apps/website/components/Header/Header.module.css [app-client] (css) */
.Header-module__59NmDa__header {
  --nav-text: #0a0f1e;
  --nav-bg: #fff;
  --nav-border: #a1a1a14d;
  --dropdown-bg: #fff;
  --dropdown-border: #0e0d591a;
  --dropdown-shadow: 0px 4px 18px 0px #0000001a;
  --triangle-fill: #fff;
  --triangle-border: #0e0d591a;
  --link-hover: #bb90ff;
  --desc-color: #555;
  --menu-icon: #7d47eb;
  --menu-icon-bg: #7d47eb1a;
  z-index: 100;
  transition: top .3s cubic-bezier(.4, 0, .2, 1);
  position: sticky;
  top: -6rem;
}

.Header-module__59NmDa__header[data-sticky="true"] {
  top: 3rem;
}

.Header-module__59NmDa__header.Header-module__59NmDa__dark {
  --nav-text: #fff;
  --nav-bg: #110d1f;
  --nav-border: #ffffff1f;
  --dropdown-bg: #151126;
  --dropdown-border: #ffffff24;
  --dropdown-shadow: 0px 12px 32px -8px #0000008c;
  --triangle-fill: #151126;
  --triangle-border: #ffffff24;
}

.Header-module__59NmDa__container {
  border: 1px solid var(--nav-border);
  background: var(--nav-bg);
  border-radius: 8px;
  max-width: 80rem;
  margin: .3rem auto 0;
  padding: 16px 40px;
  transition: background-color .24s, color .24s;
  position: relative;
}

.Header-module__59NmDa__inner {
  align-items: center;
  gap: 0;
  display: flex;
}

.Header-module__59NmDa__logo {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.Header-module__59NmDa__nav {
  flex: 1;
  justify-content: center;
  display: flex;
}

.Header-module__59NmDa__navList {
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Header-module__59NmDa__navItem {
  position: relative;
}

.Header-module__59NmDa__dropdownNavItem {
  position: static;
}

.Header-module__59NmDa__dropdownNavItem .Header-module__59NmDa__navTrigger {
  position: relative;
}

.Header-module__59NmDa__dropdownNavItem .Header-module__59NmDa__navTrigger:after {
  content: "";
  height: 18px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.Header-module__59NmDa__navTrigger, .Header-module__59NmDa__navLink {
  color: var(--nav-text);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  font-size: .875rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.Header-module__59NmDa__navTrigger:hover, .Header-module__59NmDa__navLink:hover {
  color: var(--link-hover);
}

.Header-module__59NmDa__chevron {
  color: var(--nav-text);
  flex-shrink: 0;
  margin-top: 1px;
}

.Header-module__59NmDa__dropdown {
  background: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
  width: 620px;
  box-shadow: var(--dropdown-shadow);
  z-index: 200;
  will-change: opacity;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  padding: 15px 10px;
  transition: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.Header-module__59NmDa__header.Header-module__59NmDa__dark .Header-module__59NmDa__dropdown {
  --nav-text: #0a0f1e;
  --desc-color: #555;
  --menu-icon: #7d47eb;
  --menu-icon-bg: #7d47eb1a;
  --dropdown-bg: #fff;
  --dropdown-border: #0e0d591a;
  --dropdown-shadow: 0px 4px 18px 0px #0000001a;
  --triangle-fill: #fff;
  --triangle-border: #0e0d591a;
}

.Header-module__59NmDa__navItem:hover .Header-module__59NmDa__dropdown, .Header-module__59NmDa__navItem:focus-within .Header-module__59NmDa__dropdown, .Header-module__59NmDa__dropdown:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.Header-module__59NmDa__navList:has(.Header-module__59NmDa__navItem:hover) .Header-module__59NmDa__navItem:not(:hover) .Header-module__59NmDa__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.Header-module__59NmDa__trianglePlatform:before, .Header-module__59NmDa__triangleSolutions:before {
  content: "";
  border-left: 11px solid #0000;
  border-right: 11px solid #0000;
  border-bottom: 15px solid var(--triangle-fill);
  z-index: 1;
  width: 0;
  height: 0;
  position: absolute;
  top: -15px;
  left: calc(32% - 11px);
}

.Header-module__59NmDa__trianglePlatform:after, .Header-module__59NmDa__triangleSolutions:after {
  content: "";
  border-left: 12px solid #0000;
  border-right: 12px solid #0000;
  border-bottom: 15px solid var(--triangle-border);
  z-index: 0;
  width: 0;
  height: 0;
  position: absolute;
  top: -16px;
  left: calc(32% - 12px);
}

.Header-module__59NmDa__triangleResources:before {
  content: "";
  border-left: 11px solid #0000;
  border-right: 11px solid #0000;
  border-bottom: 15px solid var(--triangle-fill);
  z-index: 1;
  width: 0;
  height: 0;
  position: absolute;
  top: -15px;
  left: calc(55% - 11px);
}

.Header-module__59NmDa__triangleResources:after {
  content: "";
  border-left: 12px solid #0000;
  border-right: 12px solid #0000;
  border-bottom: 15px solid var(--triangle-border);
  z-index: 0;
  width: 0;
  height: 0;
  position: absolute;
  top: -16px;
  left: calc(55% - 12px);
}

.Header-module__59NmDa__navgrid {
  grid-template-columns: auto auto;
  gap: 0;
  display: grid;
}

.Header-module__59NmDa__platformDropdown, .Header-module__59NmDa__solutionsDropdown, .Header-module__59NmDa__resourcesDropdown {
  padding: 24px 18px;
}

.Header-module__59NmDa__dropdownNavItem .Header-module__59NmDa__dropdown {
  width: auto;
  top: 100%;
  left: 0;
  right: 0;
  transform: none;
}

.Header-module__59NmDa__platformDropdown .Header-module__59NmDa__trianglePlatform:before {
  left: calc(25% - 11px);
}

.Header-module__59NmDa__platformDropdown .Header-module__59NmDa__trianglePlatform:after {
  left: calc(25% - 12px);
}

.Header-module__59NmDa__platformGrid {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 26px;
  width: 100%;
  display: grid;
}

.Header-module__59NmDa__platformColumns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  display: grid;
}

.Header-module__59NmDa__featuredCard {
  background: linear-gradient(#5b2e97 0%, #2a1250 100%);
  border: 1px solid #5b3494;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 6px 20px #16072842;
}

.Header-module__59NmDa__featuredCard:hover {
  box-shadow: 0 10px 26px #1607286b;
}

.Header-module__59NmDa__featuredEyebrow {
  color: #dec4ff;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #ffffff14;
  border: 1px solid #dec4ff47;
  border-radius: 100px;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
}

.Header-module__59NmDa__featuredTitle {
  color: #fff;
  letter-spacing: -.4px;
  margin-top: 18px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.Header-module__59NmDa__featuredDescription {
  color: #ffffffbf;
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

.Header-module__59NmDa__journey {
  background: #ffffff0f;
  border: 1px solid #dec4ff29;
  border-radius: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 14px 12px;
  display: flex;
}

.Header-module__59NmDa__journeyStep {
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  width: 40px;
  min-width: 0;
  display: flex;
}

.Header-module__59NmDa__journeyIcon {
  color: #dec4ff;
  background: #ffffff1a;
  border: 1px solid #dec4ff38;
  border-radius: 999px;
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
}

.Header-module__59NmDa__journeyLabel {
  color: #ffffffb8;
  text-align: center;
  overflow-wrap: break-word;
  font-size: 9px;
  font-weight: 600;
  line-height: 12px;
}

.Header-module__59NmDa__journeyStepFinal {
  background: #fff;
  border-radius: 999px;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: auto;
  padding: 3px 10px 3px 3px;
  box-shadow: 0 2px 8px #16072859;
}

.Header-module__59NmDa__journeyStepFinal .Header-module__59NmDa__journeyIcon {
  color: #7d47eb;
  background: #7d47eb1f;
  border-color: #7d47eb2e;
  width: 22px;
  height: 22px;
}

.Header-module__59NmDa__journeyStepFinal .Header-module__59NmDa__journeyLabel {
  color: #160728;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.Header-module__59NmDa__journeyConnector {
  background: #dec4ff52;
  flex: auto;
  min-width: 4px;
  height: 1px;
  margin-top: 14px;
}

.Header-module__59NmDa__featuredTags {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  display: flex;
}

.Header-module__59NmDa__featuredTag {
  color: #ffffffd9;
  white-space: nowrap;
  background: #ffffff12;
  border: 1px solid #dec4ff2e;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.Header-module__59NmDa__featuredCta {
  color: #fff;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .875rem;
  font-weight: 700;
  display: inline-flex;
}

.Header-module__59NmDa__featuredCtaIcon {
  transition: transform .2s;
}

.Header-module__59NmDa__featuredCard:hover .Header-module__59NmDa__featuredCtaIcon {
  transform: translateX(4px);
}

.Header-module__59NmDa__dropdownFooter {
  border-top: 1px solid var(--dropdown-border);
  background: #f7f8ff;
  border-radius: 0 0 11px 11px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 24px -18px -24px;
  padding: 18px 30px;
  display: flex;
}

.Header-module__59NmDa__dropdownFooterText {
  color: var(--desc-color);
  font-size: .875rem;
}

.Header-module__59NmDa__dropdownFooterCta {
  color: #7d47eb;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.Header-module__59NmDa__dropdownFooterCta:hover .Header-module__59NmDa__featuredCtaIcon {
  transform: translateX(3px);
}

.Header-module__59NmDa__solutionsGrid, .Header-module__59NmDa__resourcesGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}

.Header-module__59NmDa__platformGroup, .Header-module__59NmDa__solutionGroup, .Header-module__59NmDa__resourceGroup {
  border-right: 1px solid var(--dropdown-border);
  min-width: 0;
  padding: 0 20px;
}

.Header-module__59NmDa__platformGroup:last-child, .Header-module__59NmDa__solutionGroup:last-child, .Header-module__59NmDa__resourceGroup:last-child {
  border-right: 0;
}

.Header-module__59NmDa__platformGroupTitle, .Header-module__59NmDa__solutionGroupTitle, .Header-module__59NmDa__resourceGroupTitle {
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--nav-text);
  margin: 0 0 18px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 15px;
}

.Header-module__59NmDa__platformGroupDescription {
  color: var(--desc-color);
  margin: 0;
  font-size: 11px;
  line-height: 15px;
}

.Header-module__59NmDa__platformGroupHeader {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 0 10px 18px;
  display: flex;
}

.Header-module__59NmDa__platformGroupHeader .Header-module__59NmDa__platformGroupTitle {
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.Header-module__59NmDa__platformGroupHeader .Header-module__59NmDa__platformGroupDescription {
  text-align: right;
  opacity: .7;
}

.Header-module__59NmDa__platformGroupLinks, .Header-module__59NmDa__solutionGroupLinks, .Header-module__59NmDa__resourceGroupLinks {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.Header-module__59NmDa__dropdownLink {
  border-radius: 6px;
  align-items: flex-start;
  gap: 10px;
  padding: 8px;
  text-decoration: none;
  transition: none;
  display: flex;
}

.Header-module__59NmDa__platformGroup .Header-module__59NmDa__dropdownLink, .Header-module__59NmDa__solutionGroup .Header-module__59NmDa__dropdownLink, .Header-module__59NmDa__resourceGroup .Header-module__59NmDa__dropdownLink {
  gap: 12px;
  min-width: 0;
  padding: 10px;
}

.Header-module__59NmDa__platformGroup .Header-module__59NmDa__dropdownLink, .Header-module__59NmDa__platformGroup .Header-module__59NmDa__staticItem, .Header-module__59NmDa__solutionGroup .Header-module__59NmDa__dropdownLink, .Header-module__59NmDa__resourceGroup .Header-module__59NmDa__dropdownLink {
  will-change: background-color;
  min-height: 50px;
  transition: none;
  transform: translateZ(0);
}

.Header-module__59NmDa__dropdownLink:hover {
  background: #7644c71f;
}

.Header-module__59NmDa__dropdownIconWrap {
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}

.Header-module__59NmDa__platformIconWrap {
  width: 28px;
  height: 28px;
  color: var(--menu-icon);
  background: var(--menu-icon-bg);
  border-radius: 7px;
  flex: 0 0 28px;
  place-items: center;
  display: grid;
}

.Header-module__59NmDa__dropdownText {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.Header-module__59NmDa__dropdownTitleRow {
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.Header-module__59NmDa__newBadge {
  color: #7d47eb;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #7d47eb1f;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
}

.Header-module__59NmDa__mobileMenu .Header-module__59NmDa__newBadge {
  color: #d3c2ff;
  background: #b9a0ff2e;
}

.Header-module__59NmDa__staticItem {
  cursor: default;
}

.Header-module__59NmDa__dropdownTitle {
  color: var(--nav-text);
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.Header-module__59NmDa__dropdownDesc {
  color: var(--desc-color);
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 16px;
  display: block;
}

.Header-module__59NmDa__comingSoonItem {
  cursor: default;
  opacity: .68;
}

.Header-module__59NmDa__comingSoon {
  color: #6941c6;
  white-space: nowrap;
  background: #6941c61a;
  border-radius: 999px;
  margin-left: auto;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
}

.Header-module__59NmDa__ctaGroup {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
}

.Header-module__59NmDa__burger {
  display: none;
}

.Header-module__59NmDa__mobileMenu {
  --nav-text: #fff;
  --desc-color: #fff;
  --menu-icon: #b9a0ff;
  --menu-icon-bg: transparent;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #0d1028;
  border-top: 1px solid #a1a1be47;
  width: 100%;
  max-height: 0;
  transition: max-height .35s, opacity .2s, visibility 0s .2s;
  position: absolute;
  overflow: hidden;
}

.Header-module__59NmDa__mobileMenuOpen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  scrollbar-width: none;
  max-height: calc(100dvh - 64px);
  transition: max-height .35s, opacity .2s;
  overflow-y: auto;
}

.Header-module__59NmDa__mobileMenuOpen::-webkit-scrollbar {
  display: none;
}

.Header-module__59NmDa__mobileInner {
  flex-direction: column;
  padding: 0 16px 8px;
  display: flex;
}

.Header-module__59NmDa__mobileItem {
  border-bottom: 1px solid #ffffff14;
  padding: 4px 0;
}

.Header-module__59NmDa__dark .Header-module__59NmDa__mobileItem {
  border-bottom-color: #ffffff14;
}

.Header-module__59NmDa__mobileItem:last-child {
  border-bottom: none;
}

.Header-module__59NmDa__mobileTrigger {
  width: 100%;
  color: var(--nav-text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
}

.Header-module__59NmDa__mobileChevron {
  color: var(--nav-text);
  flex-shrink: 0;
  transition: transform .25s;
}

.Header-module__59NmDa__mobileTrigger[data-open="true"] .Header-module__59NmDa__mobileChevron {
  transform: rotate(180deg);
}

.Header-module__59NmDa__mobileNavLink {
  color: var(--nav-text);
  padding: 12px 0;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
  display: block;
}

.Header-module__59NmDa__mobileNavLink:hover {
  color: var(--link-hover);
}

.Header-module__59NmDa__mobileSubWrapper {
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s;
  display: grid;
}

.Header-module__59NmDa__mobileSubWrapperOpen {
  grid-template-rows: 1fr;
}

.Header-module__59NmDa__mobileSubInner {
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  display: flex;
  overflow: hidden;
}

.Header-module__59NmDa__mobileSubLink {
  border-radius: 6px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  text-decoration: none;
  transition: background .15s;
  display: flex;
}

.Header-module__59NmDa__mobileFeaturedLink {
  background: linear-gradient(135deg, #5b2ce659 0%, #2e128159 100%);
  border: 1px solid #b9a0ff47;
  align-items: flex-start;
  margin: 6px 0 2px;
}

.Header-module__59NmDa__mobilePlatformGroup {
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px;
  display: flex;
}

.Header-module__59NmDa__mobilePlatformGroupTitle {
  color: var(--desc-color);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 6px 8px 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 15px;
}

.Header-module__59NmDa__mobilePlatformGroupDescription {
  color: var(--desc-color);
  padding: 0 8px 2px;
  font-size: 11px;
  line-height: 15px;
}

.Header-module__59NmDa__mobileSubLink .Header-module__59NmDa__platformIconWrap {
  flex-basis: 26px;
  width: 26px;
  height: 26px;
}

.Header-module__59NmDa__mobileSubLink .Header-module__59NmDa__comingSoon {
  display: inline-flex;
}

.Header-module__59NmDa__mobileSubLink:hover {
  background: #7644c714;
}

.Header-module__59NmDa__mobileCtas {
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  display: flex;
}

@media (max-width: 78.375rem) {
  .Header-module__59NmDa__nav, .Header-module__59NmDa__ctaGroup {
    display: none;
  }

  .Header-module__59NmDa__burger {
    margin-left: auto;
    display: block;
  }

  .Header-module__59NmDa__container {
    padding: 12px 16px;
  }

  .Header-module__59NmDa__header[data-sticky="true"] {
    top: .3rem;
  }
}

/* [project]/apps/website/components/TopBanner/TopBanner.module.css [app-client] (css) */
.TopBanner-module__JJuGFW__banner {
  z-index: 101;
  color: #fff;
  text-align: center;
  background: linear-gradient(81deg, #7d47eb 36.4%, #9d36e3 103.8%);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 24px;
  font-size: .9375rem;
  line-height: 22px;
  text-decoration: none;
  display: flex;
  position: sticky;
  top: 0;
}

.TopBanner-module__JJuGFW__icon {
  transform-origin: center;
  flex-shrink: 0;
  animation: 2.8s ease-in-out infinite TopBanner-module__JJuGFW__twinkle;
}

.TopBanner-module__JJuGFW__banner:hover .TopBanner-module__JJuGFW__icon {
  animation: .6s ease-in-out TopBanner-module__JJuGFW__pop;
}

@keyframes TopBanner-module__JJuGFW__twinkle {
  0%, 70%, 100% {
    opacity: .9;
    transform: scale(1)rotate(0);
  }

  80% {
    opacity: 1;
    filter: drop-shadow(0 0 5px #fffc);
    transform: scale(1.18)rotate(8deg);
  }

  90% {
    opacity: 1;
    transform: scale(1.05)rotate(-4deg);
  }
}

@keyframes TopBanner-module__JJuGFW__pop {
  0% {
    transform: scale(1)rotate(0);
  }

  40% {
    filter: drop-shadow(0 0 6px #ffffffe6);
    transform: scale(1.25)rotate(15deg);
  }

  70% {
    transform: scale(.98)rotate(-6deg);
  }

  100% {
    transform: scale(1)rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .TopBanner-module__JJuGFW__icon, .TopBanner-module__JJuGFW__banner:hover .TopBanner-module__JJuGFW__icon, .TopBanner-module__JJuGFW__arrow {
    transition: none;
    animation: none;
  }
}

.TopBanner-module__JJuGFW__label {
  font-weight: 700;
}

.TopBanner-module__JJuGFW__text {
  font-weight: 400;
}

.TopBanner-module__JJuGFW__cta {
  text-underline-offset: 3px;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
}

.TopBanner-module__JJuGFW__arrow {
  transition: transform .2s;
}

.TopBanner-module__JJuGFW__banner:hover .TopBanner-module__JJuGFW__arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .TopBanner-module__JJuGFW__banner {
    padding: 10px 16px;
    font-size: .8125rem;
    line-height: 20px;
    position: relative;
  }
}

/* [project]/apps/website/components/Footer/Footer.module.css [app-client] (css) */
.Footer-module__0R7Yoa__footer {
  color: #fff;
  background: linear-gradient(#070722 59.97%, #11112cc7 115.78%), #1f1f39;
}

.Footer-module__0R7Yoa__container {
  width: min(100% - 48px, 90rem);
  margin: 0 auto;
  padding: 64px 0 28px;
}

.Footer-module__0R7Yoa__main {
  grid-template-columns: minmax(220px, 1.5fr) minmax(0, 5.8fr);
  gap: 26px;
  display: grid;
}

.Footer-module__0R7Yoa__brand {
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-right: 26px;
  display: flex;
}

.Footer-module__0R7Yoa__logoLink {
  display: inline-flex;
}

.Footer-module__0R7Yoa__tagline {
  color: #a9a9bc;
  max-width: 190px;
  margin: 18px 0 0;
  font-size: .875rem;
  line-height: 1.55;
}

.Footer-module__0R7Yoa__socialLinks, .Footer-module__0R7Yoa__socialLinksCompact {
  align-items: center;
  display: flex;
}

.Footer-module__0R7Yoa__socialLinks {
  gap: 10px;
  margin-top: 28px;
}

.Footer-module__0R7Yoa__socialLinksCompact {
  justify-content: flex-end;
  gap: 8px;
  padding-left: 20px;
}

.Footer-module__0R7Yoa__socialLink {
  border-radius: 7px;
  transition: opacity .2s;
  display: inline-flex;
}

.Footer-module__0R7Yoa__socialLink:hover {
  opacity: .78;
}

.Footer-module__0R7Yoa__rating {
  color: #aaaabc;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 10px;
  margin-top: 26px;
  font-size: .8125rem;
  display: grid;
}

.Footer-module__0R7Yoa__rating > span:last-child {
  grid-column: 1 / -1;
}

.Footer-module__0R7Yoa__stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 1rem;
}

.Footer-module__0R7Yoa__badges {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.Footer-module__0R7Yoa__badges a, .Footer-module__0R7Yoa__badges img {
  display: block;
}

.Footer-module__0R7Yoa__googleSource {
  color: #fff;
  border: 1px solid #ffffff26;
  border-radius: 10px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 220px;
  margin-top: 28px;
  padding: 12px;
  font-size: .75rem;
  line-height: 1.35;
  text-decoration: none;
  display: grid;
}

.Footer-module__0R7Yoa__columns {
  grid-template-columns: repeat(5, minmax(105px, 1fr)) minmax(165px, 1.35fr);
  min-width: 0;
  display: grid;
}

.Footer-module__0R7Yoa__column {
  min-width: 0;
  padding: 0 22px;
}

.Footer-module__0R7Yoa__columnTitle {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: .875rem;
  font-weight: 800;
}

.Footer-module__0R7Yoa__linkList {
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Footer-module__0R7Yoa__footerLink {
  color: #aaaabc;
  font-size: .875rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__0R7Yoa__footerLink:hover, .Footer-module__0R7Yoa__legalLink:hover {
  color: #fff;
}

.Footer-module__0R7Yoa__bottomBar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
  padding-top: 24px;
  display: grid;
}

.Footer-module__0R7Yoa__copyright {
  color: #9292a8;
  white-space: nowrap;
  margin: 0;
  font-size: .75rem;
}

.Footer-module__0R7Yoa__legalLinks {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  display: flex;
}

.Footer-module__0R7Yoa__legalLink {
  color: #aaaabc;
  font-size: .75rem;
  text-decoration: none;
}

.Footer-module__0R7Yoa__legalLink:not(:last-child):after {
  content: "•";
  color: #77778e;
  margin: 0 18px;
}

@media (max-width: 78rem) {
  .Footer-module__0R7Yoa__main {
    grid-template-columns: 1fr;
  }

  .Footer-module__0R7Yoa__brand {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: start;
    gap: 20px 32px;
    padding-right: 0;
    display: grid;
  }

  .Footer-module__0R7Yoa__tagline, .Footer-module__0R7Yoa__socialLinks, .Footer-module__0R7Yoa__rating, .Footer-module__0R7Yoa__badges, .Footer-module__0R7Yoa__googleSource {
    margin-top: 0;
  }

  .Footer-module__0R7Yoa__tagline {
    grid-column: 1;
  }

  .Footer-module__0R7Yoa__socialLinks {
    grid-area: 1 / 2;
  }

  .Footer-module__0R7Yoa__rating {
    grid-area: 1 / 3;
  }

  .Footer-module__0R7Yoa__badges {
    grid-area: 2 / 2;
  }

  .Footer-module__0R7Yoa__googleSource {
    grid-area: 2 / 3;
  }

  .Footer-module__0R7Yoa__columns {
    margin-top: 28px;
  }
}

@media (max-width: 62rem) {
  .Footer-module__0R7Yoa__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 0;
  }

  .Footer-module__0R7Yoa__bottomBar {
    grid-template-columns: 1fr auto;
  }

  .Footer-module__0R7Yoa__legalLinks {
    grid-area: 1 / 1 / auto / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 44rem) {
  .Footer-module__0R7Yoa__container {
    width: min(100% - 32px, 90rem);
    padding-top: 42px;
  }

  .Footer-module__0R7Yoa__brand {
    gap: 0;
    display: flex;
  }

  .Footer-module__0R7Yoa__tagline, .Footer-module__0R7Yoa__socialLinks, .Footer-module__0R7Yoa__rating, .Footer-module__0R7Yoa__badges, .Footer-module__0R7Yoa__googleSource {
    margin-top: 22px;
  }

  .Footer-module__0R7Yoa__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 0;
  }

  .Footer-module__0R7Yoa__column {
    padding: 0 16px;
  }

  .Footer-module__0R7Yoa__column:nth-child(odd) {
    padding-left: 0;
  }

  .Footer-module__0R7Yoa__bottomBar {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .Footer-module__0R7Yoa__legalLinks {
    grid-area: auto / 1;
  }

  .Footer-module__0R7Yoa__copyright {
    white-space: normal;
  }

  .Footer-module__0R7Yoa__socialLinksCompact {
    justify-content: flex-start;
    padding-left: 0;
  }
}

/* [project]/apps/website/components/CtaComponent/CtaComponent.module.css [app-client] (css) */
@media (max-width: 768px) {
  .CtaComponent-module__GOvVuW__firstcta {
    width: 100%;
  }
}

.CtaComponent-module__GOvVuW__firstcta:hover {
  box-shadow: 0 7px 24px #7d47eb73, 0 7px 16px #7d47eb4d;
}

.CtaComponent-module__GOvVuW__secondcta:hover {
  background-color: #ffffff1a;
}

.CtaComponent-module__GOvVuW__secondarycta:hover {
  box-shadow: 0 7px 25px #fff3;
}

/* [project]/apps/website/components/AnimatedPlatforms/AnimatedPlatform.module.css [app-client] (css) */
.AnimatedPlatform-module__L1P2-a__technologies {
  width: 512px;
  max-width: 512px;
  height: 512px;
  margin: 0 auto;
  position: relative;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons {
  width: inherit;
  max-width: inherit;
  height: inherit;
  transform-origin: center;
  animation: 30s linear infinite AnimatedPlatform-module__L1P2-a__rotate-right;
  position: absolute;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon {
  border-radius: 48px;
  width: 96px;
  height: 96px;
  animation: 30s linear infinite AnimatedPlatform-module__L1P2-a__rotate-left;
  position: absolute;
}

@media only screen and (max-width: 1024px) {
  .AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon {
    width: 64px;
    height: 64px;
  }
}

@media only screen and (max-width: 390px) {
  .AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon {
    width: 44px;
    height: 44px;
  }
}

@media only screen and (max-width: 1024px) {
  .AnimatedPlatform-module__L1P2-a__socialimages {
    width: 64px;
    height: 64px;
  }
}

@media only screen and (max-width: 390px) {
  .AnimatedPlatform-module__L1P2-a__socialimages {
    width: 44px;
    height: 44px;
  }
}

@media only screen and (max-width: 1024px) {
  .AnimatedPlatform-module__L1P2-a__technologies {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 24px;
    animation: none;
    display: grid;
    position: relative;
  }

  .AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon {
    animation: none;
    position: relative;
    top: auto !important;
    left: auto !important;
  }
}

@media only screen and (max-width: 767px) {
  .AnimatedPlatform-module__L1P2-a__technologies {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    animation: none;
    display: flex;
    position: relative;
  }
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:first-of-type {
  top: 208px;
  left: 0;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(2) {
  top: 61px;
  left: 61px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(3) {
  top: 0;
  left: 208px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(4) {
  top: 61px;
  left: 355px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(5) {
  top: 208px;
  left: 416px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(6) {
  top: 355px;
  left: 355px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(7) {
  top: 416px;
  left: 208px;
}

.AnimatedPlatform-module__L1P2-a__technologies .AnimatedPlatform-module__L1P2-a__icons .AnimatedPlatform-module__L1P2-a__icon:nth-of-type(8) {
  top: 355px;
  left: 61px;
}

@keyframes AnimatedPlatform-module__L1P2-a__rotate-right {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes AnimatedPlatform-module__L1P2-a__rotate-left {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* [project]/apps/website/components/HeroWebsiteCapture/HeroWebsiteCapture.module.css [app-client] (css) */
.HeroWebsiteCapture-module__3woPDq__form {
  width: 100%;
  margin-top: 32px;
}

.HeroWebsiteCapture-module__3woPDq__row {
  align-items: flex-start;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

.HeroWebsiteCapture-module__3woPDq__inputRoot {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.HeroWebsiteCapture-module__3woPDq__input {
  color: #fff;
  background: #ffffff1f;
  border: 1.5px solid #ffffff4d;
  border-radius: 14px;
  height: 3.5rem;
  padding-left: 3.125rem;
  font-size: 1.0625rem;
  font-weight: 500;
  transition: border-color .2s, background .2s, box-shadow .2s;
  box-shadow: inset 0 1px #ffffff24, 0 6px 20px #06021473;
}

.HeroWebsiteCapture-module__3woPDq__input::placeholder {
  color: #fff9;
  font-weight: 400;
}

.HeroWebsiteCapture-module__3woPDq__input:hover {
  background: #ffffff26;
  border-color: #ffffff6b;
}

.HeroWebsiteCapture-module__3woPDq__input:focus, .HeroWebsiteCapture-module__3woPDq__input:focus-within {
  background: #ffffff29;
  border-color: #a76aff;
  box-shadow: inset 0 1px #ffffff29, 0 0 0 4px #6931ff4d;
}

.HeroWebsiteCapture-module__3woPDq__input[data-error] {
  background: #ff6b8a1f;
  border-color: #ff6b8a;
}

.HeroWebsiteCapture-module__3woPDq__inputIcon {
  color: #ffffffa6;
  width: 3.125rem;
}

.HeroWebsiteCapture-module__3woPDq__error {
  color: #ffa8bb;
  text-align: left;
  margin-top: 6px;
  font-size: .8125rem;
}

.HeroWebsiteCapture-module__3woPDq__caption {
  color: #fff9;
  text-align: center;
  margin: 14px 0 0;
  font-size: .875rem;
  line-height: 1.4;
}

.HeroWebsiteCapture-module__3woPDq__button {
  border-radius: 14px;
  flex-shrink: 0;
  height: 3.5rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 575px) {
  .HeroWebsiteCapture-module__3woPDq__row {
    max-width: 100%;
  }

  .HeroWebsiteCapture-module__3woPDq__button {
    width: 100%;
  }
}

.heroClean .HeroWebsiteCapture-module__3woPDq__form {
  margin-top: 36px;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__row {
  background: #ffffff0f;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  align-items: center;
  max-width: 32rem;
  padding: 6px;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
  position: relative;
  box-shadow: inset 0 1px #ffffff0f, 0 16px 40px -20px #0009;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__row:hover {
  border-color: #ffffff38;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__row:focus-within {
  background: #ffffff14;
  border-color: #c4b1f7bf;
  box-shadow: 0 0 0 4px #7d47eb47;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__row:has(.HeroWebsiteCapture-module__3woPDq__input[data-error]) {
  border-color: #ff8fa3cc;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input {
  height: 44px;
  box-shadow: none;
  background: none;
  border: 0;
  padding-left: 2.75rem;
  font-size: 1rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input:hover {
  height: 44px;
  box-shadow: none;
  background: none;
  border: 0;
  padding-left: 2.75rem;
  font-size: 1rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input:focus {
  height: 44px;
  box-shadow: none;
  background: none;
  border: 0;
  padding-left: 2.75rem;
  font-size: 1rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input:focus-within {
  height: 44px;
  box-shadow: none;
  background: none;
  border: 0;
  padding-left: 2.75rem;
  font-size: 1rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input[data-error] {
  height: 44px;
  box-shadow: none;
  background: none;
  border: 0;
  padding-left: 2.75rem;
  font-size: 1rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__input::placeholder {
  color: #ffffff80;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__inputIcon {
  color: #ffffff8c;
  width: 2.75rem;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__error {
  margin: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 22px;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__button {
  border-radius: 999px;
  height: 44px;
  padding-inline: 1.25rem;
  font-size: .9375rem;
  font-weight: 500;
}

.heroClean .HeroWebsiteCapture-module__3woPDq__caption {
  color: #ffffff8c;
  margin-top: 16px;
  font-size: .8125rem;
}

@media (max-width: 575px) {
  .heroClean .HeroWebsiteCapture-module__3woPDq__row {
    box-shadow: none;
    background: none;
    border: 0;
    padding: 0;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__row:focus-within {
    box-shadow: none;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__input {
    background: #ffffff0f;
    border: 1px solid #ffffff29;
    border-radius: 999px;
    height: 52px;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__input:hover {
    background: #ffffff0f;
    border: 1px solid #ffffff29;
    border-radius: 999px;
    height: 52px;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__input:focus {
    background: #ffffff0f;
    border: 1px solid #ffffff29;
    border-radius: 999px;
    height: 52px;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__input[data-error] {
    background: #ffffff0f;
    border: 1px solid #ffffff29;
    border-radius: 999px;
    height: 52px;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__input:focus {
    border-color: #c4b1f7bf;
    box-shadow: 0 0 0 4px #7d47eb47;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__button {
    width: 100%;
    height: 52px;
  }

  .heroClean .HeroWebsiteCapture-module__3woPDq__error {
    margin-top: 6px;
    position: static;
  }
}

/* [project]/apps/website/components/CustomBadge/CustomBadge.module.css [app-client] (css) */
.CustomBadge-module__ZXIS5q__badge {
  box-sizing: border-box;
  background: linear-gradient(270deg, #160728 0%, #422070 100%);
  border: 1px solid #411e6e;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 9px 20px;
}

@media (max-width: 390px) {
  .CustomBadge-module__ZXIS5q__badge {
    padding: 7px 10px;
  }
}

.CustomBadge-module__ZXIS5q__content {
  min-width: 0;
}

.CustomBadge-module__ZXIS5q__badgetext {
  color: #dec4ff;
  text-align: center;
  text-wrap: balance;
  min-width: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 390px) {
  .CustomBadge-module__ZXIS5q__badgetext {
    font-size: clamp(11px, 3.15vw, 12px);
    line-height: 16px;
  }
}

.CustomBadge-module__ZXIS5q__arrowSuffix {
  white-space: nowrap;
}

.CustomBadge-module__ZXIS5q__logos {
  flex-shrink: 0;
  align-items: center;
  display: inline-flex;
}

.CustomBadge-module__ZXIS5q__logo {
  box-sizing: border-box;
  background: #ffffff1f;
  border: 1px solid #dec4ff40;
  border-radius: 50%;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 3px;
  display: grid;
}

.CustomBadge-module__ZXIS5q__logo + .CustomBadge-module__ZXIS5q__logo {
  margin-left: -6px;
}

.CustomBadge-module__ZXIS5q__logoImage {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media (max-width: 390px) {
  .CustomBadge-module__ZXIS5q__logo {
    width: 18px;
    height: 18px;
    padding: 2px;
  }

  .CustomBadge-module__ZXIS5q__logo + .CustomBadge-module__ZXIS5q__logo {
    margin-left: -5px;
  }
}

.CustomBadge-module__ZXIS5q__badgeAnimated {
  animation: 3s ease-in-out infinite CustomBadge-module__ZXIS5q__badge-glow;
}

@keyframes CustomBadge-module__ZXIS5q__badge-glow {
  0%, 100% {
    box-shadow: 0 0 #a76aff00;
  }

  50% {
    box-shadow: 0 0 22px #a76aff59;
  }
}

.CustomBadge-module__ZXIS5q__tag {
  color: #fff;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 100px;
  flex-shrink: 0;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 390px) {
  .CustomBadge-module__ZXIS5q__tag {
    padding: 2px 7px;
    font-size: 9px;
  }
}

.CustomBadge-module__ZXIS5q__tagAnimated {
  animation: 2.4s ease-in-out infinite CustomBadge-module__ZXIS5q__tag-pulse;
}

.CustomBadge-module__ZXIS5q__tagAnimated:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(108deg, #0000 20%, #ffffff8c 50%, #0000 80%);
  animation: 3.6s linear infinite CustomBadge-module__ZXIS5q__tag-shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-180%);
}

@keyframes CustomBadge-module__ZXIS5q__tag-pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes CustomBadge-module__ZXIS5q__tag-shimmer {
  0% {
    transform: translateX(-180%);
  }

  45%, 100% {
    transform: translateX(180%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .CustomBadge-module__ZXIS5q__badgeAnimated, .CustomBadge-module__ZXIS5q__tagAnimated, .CustomBadge-module__ZXIS5q__tagAnimated:after {
    animation: none;
  }
}

.heroClean .CustomBadge-module__ZXIS5q__badge {
  background: #ffffff0d;
  border: 1px solid #ffffff1f;
  padding: 6px 14px 6px 7px;
  transition: border-color .2s, background-color .2s;
  box-shadow: inset 0 1px #ffffff0f;
}

.heroClean a:hover .CustomBadge-module__ZXIS5q__badge {
  background: #ffffff14;
  border-color: #c4b1f773;
}

.heroClean .CustomBadge-module__ZXIS5q__badgetext {
  color: #ffffffd1;
  letter-spacing: -.005em;
  font-size: 13.5px;
  font-weight: 500;
}

.heroClean .CustomBadge-module__ZXIS5q__arrowSuffix {
  color: #c4b1f7;
}

.heroClean .CustomBadge-module__ZXIS5q__logo {
  background: #ffffff1a;
  border-color: #ffffff24;
}

@media (max-width: 480px) {
  .heroClean .CustomBadge-module__ZXIS5q__badge {
    padding: 5px 12px 5px 6px;
  }

  .heroClean .CustomBadge-module__ZXIS5q__badgetext {
    font-size: 12px;
    line-height: 16px;
  }
}

/* [project]/apps/website/components/NewHeroSection/NewHeroSection.module.css [app-client] (css) */
.NewHeroSection-module__oIKJ0W__title {
  text-align: center;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
  font-size: 70.313px;
  font-style: normal;
  font-weight: 600;
  line-height: 79.2px;
}

@media (max-width: 1300px) {
  .NewHeroSection-module__oIKJ0W__title {
    font-size: 4.7rem;
    line-height: 4.875rem;
  }
}

@media (max-width: 1025px) {
  .NewHeroSection-module__oIKJ0W__title {
    font-size: 4.5rem;
    line-height: 4.875rem;
  }
}

@media (max-width: 760px) {
  .NewHeroSection-module__oIKJ0W__title {
    letter-spacing: -2px;
    font-size: 3.5rem;
    line-height: 4rem;
  }
}

@media (max-width: 600px) {
  .NewHeroSection-module__oIKJ0W__title {
    letter-spacing: -2px;
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

@media (max-width: 450px) {
  .NewHeroSection-module__oIKJ0W__title {
    letter-spacing: -2px;
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}

@media (max-width: 390px) {
  .NewHeroSection-module__oIKJ0W__title {
    letter-spacing: -2px;
    font-size: 34px;
    line-height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .NewHeroSection-module__oIKJ0W__badgeLink, .NewHeroSection-module__oIKJ0W__badgeLink:hover, .NewHeroSection-module__oIKJ0W__badgeLink:active {
    transition: filter .2s;
    transform: none;
  }
}

.NewHeroSection-module__oIKJ0W__description {
  color: #fff;
  text-align: center;
  letter-spacing: -.2px;
  margin: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 426px) {
  .NewHeroSection-module__oIKJ0W__description {
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.NewHeroSection-module__oIKJ0W__glow {
  pointer-events: none;
}

@media (max-width: 768px) {
  .NewHeroSection-module__oIKJ0W__glow {
    width: 100%;
    height: auto;
  }
}

.NewHeroSection-module__oIKJ0W__badgeLink {
  cursor: pointer;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, filter .2s;
  display: inline-block;
}

.NewHeroSection-module__oIKJ0W__badgeLink:hover {
  filter: brightness(1.25);
  transform: translateY(-2px);
}

.NewHeroSection-module__oIKJ0W__badgeLink:active {
  transform: translateY(0);
}

.NewHeroSection-module__oIKJ0W__badgeLink:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #a76aff;
}

@media (prefers-reduced-motion: reduce) {
  .NewHeroSection-module__oIKJ0W__badgeLink, .NewHeroSection-module__oIKJ0W__badgeLink:hover, .NewHeroSection-module__oIKJ0W__badgeLink:active {
    transition: filter .2s;
    transform: none;
  }
}

.NewHeroSection-module__oIKJ0W__dashboardReserve {
  min-height: 580px;
}

@media (max-width: 768px) {
  .NewHeroSection-module__oIKJ0W__dashboardReserve {
    min-height: 520px;
    margin-top: 120px;
  }
}

.NewHeroSection-module__oIKJ0W__chatReserve {
  min-height: 580px;
}

@media (max-width: 900px) {
  .NewHeroSection-module__oIKJ0W__chatReserve {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .NewHeroSection-module__oIKJ0W__chatReserve {
    min-height: 520px;
  }
}

.NewHeroSection-module__oIKJ0W__heroClean {
  --hero-night: #0b0915;
  --hero-floor: 236px;
  isolation: isolate;
  background: linear-gradient(to top, #fafafc var(--hero-floor), transparent calc(var(--hero-floor)  + 1px)), radial-gradient(56% 44% at 50% 2%, #7d47eb70, transparent 72%), radial-gradient(32% 30% at 88% 20%, #9d36e338, transparent 72%), radial-gradient(30% 30% at 10% 30%, #6033ca33, transparent 72%), var(--hero-night);
  overflow: clip;
  padding-bottom: 0 !important;
}

.NewHeroSection-module__oIKJ0W__heroClean:before {
  content: "";
  inset: 0 0 var(--hero-floor);
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(#ffffff0b 1px, #0000 1px), linear-gradient(90deg, #ffffff0b 1px, #0000 1px);
  background-position: top;
  background-size: 72px 72px;
  position: absolute;
  -webkit-mask-image: radial-gradient(64% 58% at 50% 22%, #000 18%, #0000 78%);
  mask-image: radial-gradient(64% 58% at 50% 22%, #000 18%, #0000 78%);
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__title {
  letter-spacing: -.04em;
  text-wrap: balance;
  font-size: clamp(2.25rem, 1.2rem + 4.4vw, 4.375rem);
  line-height: 1.04;
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__title span {
  color: #c4b1f7;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  -webkit-text-fill-color: currentcolor;
  background: none;
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__description {
  color: #ffffffb8;
  letter-spacing: -.005em;
  text-wrap: balance;
  max-width: 46rem;
  font-size: clamp(1rem, .9rem + .45vw, 1.1875rem);
  line-height: 1.6;
  margin-inline: auto !important;
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__description br {
  display: none;
}

.NewHeroSection-module__oIKJ0W__stageContainer {
  padding-bottom: 12px !important;
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__badgeLink:hover {
  filter: none;
  transform: none;
}

.NewHeroSection-module__oIKJ0W__heroClean .NewHeroSection-module__oIKJ0W__badgeLink:focus-visible {
  outline-color: #c4b1f7;
}

.NewHeroSection-module__oIKJ0W__stage {
  perspective: 1800px;
  position: relative;
}

.NewHeroSection-module__oIKJ0W__stage:before {
  content: "";
  z-index: -1;
  filter: blur(48px);
  pointer-events: none;
  background: radial-gradient(50% 60%, #7d47eb8c, #0000 72%), radial-gradient(40% 50% at 78% 40%, #9d36e34d, #0000 72%);
  position: absolute;
  inset: -10% 6% 36%;
}

.NewHeroSection-module__oIKJ0W__stageInner {
  transform-origin: 50% 0;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .NewHeroSection-module__oIKJ0W__stageInner {
      animation: linear both NewHeroSection-module__oIKJ0W__stage-settle;
      animation-timeline: view();
      animation-range: entry cover 42%;
    }
  }
}

@keyframes NewHeroSection-module__oIKJ0W__stage-settle {
  from {
    transform: rotateX(9deg)scale(.965);
  }

  to {
    transform: none;
  }
}

@media (max-width: 768px) {
  .NewHeroSection-module__oIKJ0W__heroClean {
    --hero-floor: 168px;
  }

  .NewHeroSection-module__oIKJ0W__heroClean:before {
    background-size: 48px 48px;
  }

  .NewHeroSection-module__oIKJ0W__stage:before {
    filter: blur(36px);
    inset: -6% 0 30%;
  }
}

/* [project]/apps/website/components/ProblemSection/ProblemSection.module.css [app-client] (css) */
@keyframes ProblemSection-module__3xKBaa__copySlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ProblemSection-module__3xKBaa__copyCopyAnimate {
    opacity: 1;
    animation: none !important;
  }
}

.ProblemSection-module__3xKBaa__copyCopy {
  opacity: 1;
}

.ProblemSection-module__3xKBaa__copyCopyAnimate {
  animation: .28s ease-out both ProblemSection-module__3xKBaa__copySlideIn;
}

.ProblemSection-module__3xKBaa__hidden {
  display: none !important;
}

.ProblemSection-module__3xKBaa__root {
  padding: 80px 24px;
  overflow-x: hidden;
}

.ProblemSection-module__3xKBaa__card {
  background: #fff;
  border: 1px solid #6931ff1a;
  border-radius: 32px;
  grid-template-columns: .9fr 1.3fr;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px #0000000d, 0 20px 60px #0000000f;
}

.ProblemSection-module__3xKBaa__copySide {
  border-right: 1px solid #6931ff14;
  flex-direction: column;
  justify-content: center;
  padding: 56px 44px;
  display: flex;
}

.ProblemSection-module__3xKBaa__eyebrow {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ff3ead;
  background: #ff3ead0f;
  border: 1px solid #ff3ead2e;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 26px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 800;
  display: inline-flex;
}

.ProblemSection-module__3xKBaa__eyebrowSolution {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7d47eb;
  background: #6931ff12;
  border: 1px solid #6931ff33;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 26px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 800;
  display: inline-flex;
}

.ProblemSection-module__3xKBaa__title {
  color: #0a0f1e;
  letter-spacing: -.04em;
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.ProblemSection-module__3xKBaa__titleGradient {
  background: linear-gradient(90deg, #6931ff 0%, #ff3ead 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.ProblemSection-module__3xKBaa__description {
  color: #555;
  max-width: 480px;
  margin: 24px 0 32px;
  font-size: .9375rem;
  line-height: 1.7;
}

@keyframes ProblemSection-module__3xKBaa__cta-pulse {
  0%, 100% {
    box-shadow: 0 0 #ff3ead00, 0 4px 20px #6931ff40;
  }

  50% {
    box-shadow: 0 0 0 10px #ff3ead1f, 0 8px 32px #6931ff8c;
  }
}

@keyframes ProblemSection-module__3xKBaa__cta-border-spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ProblemSection-module__3xKBaa__cta-shimmer {
  0% {
    opacity: 1;
    transform: translateX(-150%)skewX(-20deg);
  }

  22% {
    opacity: 1;
    transform: translateX(300%)skewX(-20deg);
  }

  23%, 100% {
    opacity: 0;
    transform: translateX(-150%)skewX(-20deg);
  }
}

.ProblemSection-module__3xKBaa__ctaBtnWrap {
  border-radius: 18px;
  padding: 2px;
  transition: transform .18s, box-shadow .18s;
  animation: 2.4s ease-in-out infinite ProblemSection-module__3xKBaa__cta-pulse;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.ProblemSection-module__3xKBaa__ctaBtnWrap:before {
  content: "";
  pointer-events: none;
  background: conic-gradient(#fff 0%, #e879f9 20%, #ff3ead 40%, #fff 55%, #a78bfa 75%, #e879f9 90%, #fff 100%);
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  animation: 3s linear infinite ProblemSection-module__3xKBaa__cta-border-spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.ProblemSection-module__3xKBaa__ctaBtnWrap:hover {
  transform: scale(1.04)translateY(-2px);
  box-shadow: 0 0 0 10px #ff3ead24, 0 10px 36px #6931ff8c;
}

.ProblemSection-module__3xKBaa__ctaBtn {
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform .18s;
  position: relative;
  overflow: hidden;
  font-size: 1rem !important;
  font-weight: 800 !important;
  display: block !important;
}

.ProblemSection-module__3xKBaa__ctaBtn:after {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, #0000 0%, #ffffff52 50%, #0000 100%);
  width: 45%;
  animation: 4.5s ease-in-out 1.2s infinite ProblemSection-module__3xKBaa__cta-shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-150%)skewX(-20deg);
}

.ProblemSection-module__3xKBaa__arrow {
  font-size: 1.125rem;
  line-height: 1;
}

.ProblemSection-module__3xKBaa__ctaRow {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  display: flex;
}

.ProblemSection-module__3xKBaa__resetBtn {
  color: #0e0d5959;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}

.ProblemSection-module__3xKBaa__resetBtn:hover {
  color: #0e0d5999;
}

.ProblemSection-module__3xKBaa__visualSide {
  background: #f8f8ff80;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  display: flex;
}

.ProblemSection-module__3xKBaa__panel {
  background: #fff;
  border: 1px solid #6931ff1a;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 16px #0e0d590a;
}

.ProblemSection-module__3xKBaa__panelHeader {
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  display: flex;
}

.ProblemSection-module__3xKBaa__panelIcon {
  color: #7d47eb;
  background: #6931ff14;
  border-radius: 12px;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  display: grid;
}

.ProblemSection-module__3xKBaa__panelIconProblem {
  color: #ff3ead;
  background: #ff3ead14;
}

.ProblemSection-module__3xKBaa__panelIconSolution {
  color: #21a35b;
  background: #21a35b1a;
}

.ProblemSection-module__3xKBaa__panelLabel {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7d47eb;
  margin-bottom: 3px;
  font-size: .6875rem;
  font-weight: 800;
}

.ProblemSection-module__3xKBaa__panelLabelProblem {
  color: #ff3ead;
}

.ProblemSection-module__3xKBaa__panelLabelSolution {
  color: #21a35b;
}

.ProblemSection-module__3xKBaa__panelTitle {
  color: #0e0d59;
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.ProblemSection-module__3xKBaa__journeyFlow {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 6px;
  display: grid;
}

.ProblemSection-module__3xKBaa__journeyStep {
  background: #fafafa;
  border: 1px solid #6931ff1a;
  border-radius: 14px;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 10px 14px;
  display: flex;
}

.ProblemSection-module__3xKBaa__stepSuccess {
  background: #f8fdf9;
  border-color: #21a35b33;
}

.ProblemSection-module__3xKBaa__stepNum {
  color: #fff;
  background: #6931ff;
  border-radius: 999px;
  flex-shrink: 0;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  font-size: .75rem;
  font-weight: 800;
  display: grid;
}

.ProblemSection-module__3xKBaa__stepNumSuccess {
  background: #21a35b;
}

.ProblemSection-module__3xKBaa__stepIconBox {
  border-radius: 10px;
  flex-shrink: 0;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  display: grid;
}

.ProblemSection-module__3xKBaa__stepTitle {
  color: #0a0f1e;
  margin-bottom: 3px;
  font-size: .8125rem;
  font-weight: 800;
  line-height: 1.3;
}

.ProblemSection-module__3xKBaa__stepSubtitle {
  color: #7d47eb;
  margin-bottom: 4px;
  font-size: .75rem;
  font-weight: 700;
}

.ProblemSection-module__3xKBaa__successText {
  color: #21a35b;
}

.ProblemSection-module__3xKBaa__stepText {
  color: #0e0d5980;
  font-size: .75rem;
  line-height: 1.4;
}

.ProblemSection-module__3xKBaa__journeyArrow {
  color: #7d47eb;
  text-align: center;
  align-self: center;
  padding: 0 2px;
  font-size: 1.125rem;
  font-weight: 700;
}

.ProblemSection-module__3xKBaa__bars {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.ProblemSection-module__3xKBaa__barRow {
  background: #fafafa;
  border: 1px solid #6931ff14;
  border-radius: 12px;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  transition: background .25s, border-color .25s;
  display: grid;
}

.ProblemSection-module__3xKBaa__barRowHighlight {
  background: linear-gradient(90deg, #ffe8f4b3 0%, #fff4fab3 100%);
  border-color: #ff3ead29;
}

.ProblemSection-module__3xKBaa__barLeft {
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.ProblemSection-module__3xKBaa__barIcon {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.ProblemSection-module__3xKBaa__barName {
  color: #0e0d59;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .8125rem;
  font-weight: 700;
  overflow: hidden;
}

.ProblemSection-module__3xKBaa__barTrack {
  background: #0e0d590f;
  border-radius: 999px;
  height: 9px;
  position: relative;
  overflow: hidden;
}

.ProblemSection-module__3xKBaa__barFill {
  border-radius: 999px;
  height: 100%;
  transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.ProblemSection-module__3xKBaa__fillPurple {
  background: linear-gradient(90deg, #6931ff 0%, #7d47eb 100%);
}

.ProblemSection-module__3xKBaa__fillPink {
  background: linear-gradient(90deg, #ff3ead 0%, #e74ab0 100%);
}

.ProblemSection-module__3xKBaa__fillBlue {
  background: linear-gradient(90deg, #4b7dff 0%, #3d6df2 100%);
}

.ProblemSection-module__3xKBaa__fillOrange {
  background: linear-gradient(90deg, #ff9438 0%, #ff7b1c 100%);
}

.ProblemSection-module__3xKBaa__fillCyan {
  background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
}

.ProblemSection-module__3xKBaa__barValue {
  text-align: right;
  color: #0e0d5973;
  font-size: .8125rem;
  font-weight: 800;
}

.ProblemSection-module__3xKBaa__note {
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  display: flex;
}

.ProblemSection-module__3xKBaa__note p {
  color: #0e0d59;
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
}

.ProblemSection-module__3xKBaa__noteProblem {
  background: #ff3ead0a;
  border: 1px solid #ff3ead24;
}

.ProblemSection-module__3xKBaa__noteSolution {
  background: #21a35b0d;
  border: 1px solid #21a35b24;
}

.ProblemSection-module__3xKBaa__noteIconPink {
  color: #ff3ead;
  flex-shrink: 0;
  display: flex;
}

.ProblemSection-module__3xKBaa__noteIconGreen {
  color: #21a35b;
  flex-shrink: 0;
  display: flex;
}

.ProblemSection-module__3xKBaa__curvedArrow {
  pointer-events: none;
  z-index: 3;
  width: 20%;
  position: absolute;
  bottom: 17%;
  left: 25%;
  overflow: visible;
}

@media (max-width: 1280px) {
  .ProblemSection-module__3xKBaa__curvedArrow {
    display: none;
  }
}

@media (max-width: 1200px) {
  .ProblemSection-module__3xKBaa__card {
    grid-template-columns: 1fr;
  }

  .ProblemSection-module__3xKBaa__copySide {
    border-bottom: 1px solid #6931ff14;
    border-right: none;
  }

  .ProblemSection-module__3xKBaa__title {
    max-width: 100%;
  }

  .ProblemSection-module__3xKBaa__curvedArrow {
    display: none;
  }
}

@media (max-width: 1024px) {
  .ProblemSection-module__3xKBaa__journeyFlow {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 6px;
  }

  .ProblemSection-module__3xKBaa__journeyStep {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .ProblemSection-module__3xKBaa__stepNum, .ProblemSection-module__3xKBaa__stepIconBox {
    margin-bottom: 0;
  }

  .ProblemSection-module__3xKBaa__stepTitle, .ProblemSection-module__3xKBaa__stepSubtitle, .ProblemSection-module__3xKBaa__stepText {
    margin-top: 0;
    margin-bottom: 0;
  }

  .ProblemSection-module__3xKBaa__journeyArrow {
    place-self: auto center;
    transform: rotate(90deg);
  }

  .ProblemSection-module__3xKBaa__barRow {
    grid-template-columns: 140px 1fr 44px;
  }
}

@media (max-width: 768px) {
  .ProblemSection-module__3xKBaa__barRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ProblemSection-module__3xKBaa__barValue {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .ProblemSection-module__3xKBaa__root {
    padding: 48px 16px;
  }

  .ProblemSection-module__3xKBaa__card {
    width: 100%;
    min-width: 0;
  }

  .ProblemSection-module__3xKBaa__copySide, .ProblemSection-module__3xKBaa__visualSide {
    min-width: 0;
    padding: 24px 18px;
  }

  .ProblemSection-module__3xKBaa__panel {
    padding: 16px;
  }

  .ProblemSection-module__3xKBaa__title {
    font-size: 1.75rem;
  }

  .ProblemSection-module__3xKBaa__description {
    max-width: 100%;
    font-size: .9rem;
  }

  .ProblemSection-module__3xKBaa__ctaBtnWrap, .ProblemSection-module__3xKBaa__ctaBtn {
    width: 100%;
  }

  .ProblemSection-module__3xKBaa__ctaRow {
    flex-direction: column;
    align-items: flex-start;
  }

  .ProblemSection-module__3xKBaa__journeyStep {
    grid-template-rows: auto auto auto;
    grid-template-columns: 24px 38px 1fr;
    align-items: start;
    gap: 3px 10px;
    display: grid;
  }

  .ProblemSection-module__3xKBaa__stepNum {
    grid-area: 1 / 1 / 4;
    align-self: center;
    margin-bottom: 0;
  }

  .ProblemSection-module__3xKBaa__stepIconBox {
    grid-area: 1 / 2 / 4;
    align-self: center;
    margin-bottom: 0;
  }

  .ProblemSection-module__3xKBaa__stepTitle {
    grid-area: 1 / 3;
  }

  .ProblemSection-module__3xKBaa__stepSubtitle {
    grid-area: 2 / 3;
  }

  .ProblemSection-module__3xKBaa__stepText {
    grid-area: 3 / 3;
    margin-top: 0;
  }
}

@keyframes ProblemSection-module__3xKBaa__clean-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ProblemSection-module__3xKBaa__titleMuted {
  color: #8a8799;
}

.ProblemSection-module__3xKBaa__pillPrimary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 0 18px;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: filter .2s;
  display: inline-flex;
}

.ProblemSection-module__3xKBaa__pillPrimary svg {
  transition: transform .2s;
}

.ProblemSection-module__3xKBaa__pillPrimary:hover {
  filter: brightness(1.07);
}

.ProblemSection-module__3xKBaa__pillPrimary:hover svg {
  transform: translateX(2px);
}

.ProblemSection-module__3xKBaa__pillPrimary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .ProblemSection-module__3xKBaa__resetBtn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .ProblemSection-module__3xKBaa__root {
  padding: 104px 24px;
  overflow-x: visible;
}

.homeClean .ProblemSection-module__3xKBaa__card {
  max-width: 72rem;
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  align-items: center;
  gap: 64px;
  overflow: visible;
}

.homeClean .ProblemSection-module__3xKBaa__copySide {
  border: 0;
  padding: 0;
}

.homeClean .ProblemSection-module__3xKBaa__copyCopyAnimate {
  animation: .3s ease-out both ProblemSection-module__3xKBaa__clean-rise;
}

:is(.homeClean .ProblemSection-module__3xKBaa__eyebrow, .homeClean .ProblemSection-module__3xKBaa__eyebrowSolution) {
  color: #706b88;
  letter-spacing: .12em;
  background: none;
  border: 0;
  border-radius: 0;
  margin-bottom: 16px;
  padding: 0;
  font-size: .75rem;
  font-weight: 600;
}

:is(.homeClean .ProblemSection-module__3xKBaa__eyebrow svg, .homeClean .ProblemSection-module__3xKBaa__eyebrowSolution svg) {
  display: none;
}

.homeClean .ProblemSection-module__3xKBaa__title {
  color: #16151d;
  letter-spacing: -.035em;
  max-width: 460px;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.homeClean .ProblemSection-module__3xKBaa__description {
  color: #55535f;
  max-width: 460px;
  margin: 20px 0 32px;
  font-size: 1rem;
  line-height: 1.65;
}

.homeClean .ProblemSection-module__3xKBaa__resetBtn {
  color: #75737f;
  border-radius: 999px;
  font-family: inherit;
}

.homeClean .ProblemSection-module__3xKBaa__resetBtn:hover {
  color: #16151d;
}

.homeClean .ProblemSection-module__3xKBaa__visualSide {
  background: #fff;
  border: 1px solid #16151d14;
  border-radius: 16px;
  gap: 0;
  padding: 0;
  box-shadow: 0 1px 2px #16151d0a;
}

.homeClean .ProblemSection-module__3xKBaa__panel {
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 28px 32px;
}

.homeClean .ProblemSection-module__3xKBaa__panel + .ProblemSection-module__3xKBaa__panel {
  border-top: 1px solid #16151d0f;
}

.homeClean .ProblemSection-module__3xKBaa__panelHeader {
  margin-bottom: 24px;
}

.homeClean .ProblemSection-module__3xKBaa__panelIcon {
  display: none;
}

:is(.homeClean .ProblemSection-module__3xKBaa__panelLabel, .homeClean .ProblemSection-module__3xKBaa__panelLabelProblem, .homeClean .ProblemSection-module__3xKBaa__panelLabelSolution) {
  color: #706b88;
  letter-spacing: .12em;
  margin-bottom: 6px;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .ProblemSection-module__3xKBaa__panelTitle {
  color: #16151d;
  letter-spacing: -.02em;
  font-size: 1.125rem;
  font-weight: 600;
}

.homeClean .ProblemSection-module__3xKBaa__journeyFlow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  position: relative;
}

.homeClean .ProblemSection-module__3xKBaa__journeyFlow:before {
  content: "";
  background: #16151d1a;
  height: 1px;
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
}

:is(.homeClean .ProblemSection-module__3xKBaa__journeyArrow, .homeClean .ProblemSection-module__3xKBaa__stepNum) {
  display: none;
}

.homeClean .ProblemSection-module__3xKBaa__journeyStep {
  text-align: center;
  background: none;
  border: 0;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.homeClean .ProblemSection-module__3xKBaa__stepIconBox {
  z-index: 1;
  color: #75737f;
  background: #fff;
  border: 1px solid #16151d1a;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  margin: 0 0 14px;
  position: relative;
}

:is(.homeClean .ProblemSection-module__3xKBaa__stepIconBox svg, .homeClean .ProblemSection-module__3xKBaa__stepIconBox img) {
  width: 18px;
  height: 18px;
}

.homeClean .ProblemSection-module__3xKBaa__stepSuccess .ProblemSection-module__3xKBaa__stepIconBox {
  color: #7d47eb;
  background: #f3eeff;
  border-color: #c4b1f7;
}

.homeClean .ProblemSection-module__3xKBaa__stepTitle {
  color: #16151d;
  letter-spacing: -.01em;
  margin: 0 0 4px;
  font-size: .875rem;
  font-weight: 600;
}

.homeClean .ProblemSection-module__3xKBaa__stepSubtitle {
  color: #55535f;
  margin: 0 0 2px;
  font-size: .75rem;
  font-weight: 500;
}

.homeClean .ProblemSection-module__3xKBaa__stepSubtitle.ProblemSection-module__3xKBaa__successText {
  color: #1f9d57;
}

.homeClean .ProblemSection-module__3xKBaa__stepText {
  color: #8a8799;
  margin: 0;
  font-size: .75rem;
  line-height: 1.45;
}

.homeClean .ProblemSection-module__3xKBaa__bars {
  gap: 0;
}

:is(.homeClean .ProblemSection-module__3xKBaa__barRow, .homeClean .ProblemSection-module__3xKBaa__barRowHighlight) {
  background: none;
  border: 0;
  border-top: 1px solid #16151d0f;
  border-radius: 0;
  grid-template-columns: 148px minmax(0, 1fr) 44px;
  gap: 16px;
  padding: 11px 0;
}

.homeClean .ProblemSection-module__3xKBaa__barRow:first-child {
  border-top: 0;
  padding-top: 0;
}

.homeClean .ProblemSection-module__3xKBaa__barLeft {
  gap: 10px;
}

.homeClean .ProblemSection-module__3xKBaa__barIcon {
  color: #75737f;
}

:is(.homeClean .ProblemSection-module__3xKBaa__barIcon svg, .homeClean .ProblemSection-module__3xKBaa__barIcon img) {
  width: 16px;
  height: 16px;
}

.homeClean .ProblemSection-module__3xKBaa__barName {
  color: #16151d;
  font-size: .875rem;
  font-weight: 500;
}

.homeClean .ProblemSection-module__3xKBaa__barTrack {
  background: #16151d0f;
  height: 6px;
}

.homeClean .ProblemSection-module__3xKBaa__barFill {
  transform-origin: 0;
  background: #7d47eb;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1), background-color .4s;
}

.homeClean .ProblemSection-module__3xKBaa__barValue {
  color: #75737f;
  font-variant-numeric: tabular-nums;
  font-size: .8125rem;
  font-weight: 500;
}

.homeClean .ProblemSection-module__3xKBaa__barRowHighlight .ProblemSection-module__3xKBaa__barValue {
  color: #16151d;
  font-weight: 600;
}

:is(.homeClean .ProblemSection-module__3xKBaa__note, .homeClean .ProblemSection-module__3xKBaa__noteProblem, .homeClean .ProblemSection-module__3xKBaa__noteSolution) {
  background: none;
  border: 0;
  border-top: 1px solid #16151d0f;
  border-radius: 0;
  margin-top: 16px;
  padding: 16px 0 0;
}

.homeClean .ProblemSection-module__3xKBaa__note p {
  color: #55535f;
  font-size: .875rem;
}

.homeClean .ProblemSection-module__3xKBaa__noteIconPink {
  color: #d93d42;
}

.homeClean .ProblemSection-module__3xKBaa__noteIconGreen {
  color: #1f9d57;
}

@media (max-width: 1024px) {
  .homeClean .ProblemSection-module__3xKBaa__card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  :is(.homeClean .ProblemSection-module__3xKBaa__title, .homeClean .ProblemSection-module__3xKBaa__description) {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  :is(.homeClean .ProblemSection-module__3xKBaa__barRow, .homeClean .ProblemSection-module__3xKBaa__barRowHighlight) {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "name value"
                         "track track";
    row-gap: 8px;
  }

  .homeClean .ProblemSection-module__3xKBaa__barLeft {
    grid-area: name;
  }

  .homeClean .ProblemSection-module__3xKBaa__barTrack {
    grid-area: track;
  }

  .homeClean .ProblemSection-module__3xKBaa__barValue {
    text-align: right;
    grid-area: value;
  }
}

@media (max-width: 640px) {
  .homeClean .ProblemSection-module__3xKBaa__root {
    padding: 72px 16px;
  }

  :is(.homeClean .ProblemSection-module__3xKBaa__copySide, .homeClean .ProblemSection-module__3xKBaa__visualSide) {
    padding: 0;
  }

  .homeClean .ProblemSection-module__3xKBaa__panel {
    padding: 24px 20px;
  }

  .homeClean .ProblemSection-module__3xKBaa__title {
    font-size: clamp(1.75rem, 7.6vw, 2rem);
  }

  .homeClean .ProblemSection-module__3xKBaa__description {
    font-size: 1rem;
  }

  .homeClean .ProblemSection-module__3xKBaa__ctaRow {
    flex-direction: row;
    align-items: center;
  }

  .homeClean .ProblemSection-module__3xKBaa__journeyFlow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .homeClean .ProblemSection-module__3xKBaa__journeyFlow:before {
    width: 1px;
    height: auto;
    inset: 18px auto 34px 18px;
  }

  .homeClean .ProblemSection-module__3xKBaa__journeyStep {
    text-align: left;
    grid-template-rows: auto auto;
    grid-template-columns: 36px auto minmax(0, 1fr);
    align-items: start;
    gap: 2px 0;
    padding: 0 0 16px;
    display: grid;
  }

  .homeClean .ProblemSection-module__3xKBaa__journeyStep:last-child {
    padding-bottom: 0;
  }

  .homeClean .ProblemSection-module__3xKBaa__stepIconBox {
    grid-area: 1 / 1 / 3;
    align-self: center;
    margin: 0;
  }

  .homeClean .ProblemSection-module__3xKBaa__stepTitle {
    grid-area: 1 / 2 / auto / 4;
    margin: 0 0 0 14px;
  }

  .homeClean .ProblemSection-module__3xKBaa__stepSubtitle {
    white-space: nowrap;
    grid-area: 2 / 2;
    margin: 0 0 0 14px;
  }

  .homeClean .ProblemSection-module__3xKBaa__stepText {
    grid-area: 2 / 3;
    margin: 0;
  }

  .homeClean .ProblemSection-module__3xKBaa__stepText:before {
    content: "·";
    margin: 0 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homeClean .ProblemSection-module__3xKBaa__copyCopyAnimate {
    animation: none;
  }

  .ProblemSection-module__3xKBaa__pillPrimary, .ProblemSection-module__3xKBaa__pillPrimary svg {
    transition: none;
  }

  .homeClean .ProblemSection-module__3xKBaa__barFill {
    transition: none;
  }
}

.ProblemSection-module__3xKBaa__storyBar {
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 28px;
  display: flex;
}

.ProblemSection-module__3xKBaa__storyTabs {
  flex: 1;
  gap: 16px;
  max-width: 420px;
  display: flex;
}

.ProblemSection-module__3xKBaa__storyTab {
  color: #8a8799;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  min-width: 0;
  padding: 0 0 2px;
  font-family: inherit;
  transition: color .2s;
  display: flex;
}

.ProblemSection-module__3xKBaa__storyTab:hover, .ProblemSection-module__3xKBaa__storyTabActive {
  color: #16151d;
}

.ProblemSection-module__3xKBaa__storyTab:focus-visible {
  outline-offset: 4px;
  border-radius: 4px;
  outline: 2px solid #7d47eb;
}

.ProblemSection-module__3xKBaa__storyTabLabel {
  letter-spacing: -.005em;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  display: inline-flex;
}

.ProblemSection-module__3xKBaa__storyTabNum {
  font-variant-numeric: tabular-nums;
  border: 1px solid #16151d24;
  border-radius: 999px;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: .6875rem;
  font-weight: 600;
  transition: background-color .2s, border-color .2s, color .2s;
  display: grid;
}

.ProblemSection-module__3xKBaa__storyTabActive .ProblemSection-module__3xKBaa__storyTabNum {
  color: #fff;
  background: #7d47eb;
  border-color: #0000;
}

.ProblemSection-module__3xKBaa__storyTrack {
  background: #16151d1a;
  border-radius: 999px;
  height: 2px;
  display: block;
  position: relative;
  overflow: hidden;
}

.ProblemSection-module__3xKBaa__storyTrack i {
  transform-origin: 0;
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  position: absolute;
  inset: 0;
}

.ProblemSection-module__3xKBaa__storyPause {
  color: #75737f;
  cursor: pointer;
  background: #fff;
  border: 1px solid #16151d1f;
  border-radius: 999px;
  flex: none;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  transition: color .2s, border-color .2s;
  display: grid;
}

.ProblemSection-module__3xKBaa__storyPause:hover {
  color: #7d47eb;
  border-color: #c4b1f7;
}

.ProblemSection-module__3xKBaa__storyPause:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.ProblemSection-module__3xKBaa__copyStack {
  display: grid;
}

.ProblemSection-module__3xKBaa__copyStack > * {
  grid-area: 1 / 1;
}

.homeClean .ProblemSection-module__3xKBaa__copyStack > .ProblemSection-module__3xKBaa__hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: block !important;
}

:is(.homeClean .ProblemSection-module__3xKBaa__copyStack .ProblemSection-module__3xKBaa__eyebrow, .homeClean .ProblemSection-module__3xKBaa__copyStack .ProblemSection-module__3xKBaa__eyebrowSolution) {
  display: none;
}

.ProblemSection-module__3xKBaa__journeyLine {
  z-index: 0;
  pointer-events: none;
  height: 2px;
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
}

.ProblemSection-module__3xKBaa__journeyLine i {
  width: 100%;
  height: 100%;
  transform: scaleX(var(--journey-fill, 1));
  transform-origin: 0;
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  border-radius: 999px;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__journeyStep {
  opacity: .35;
  transition: opacity .35s;
}

.homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__journeyStep.ProblemSection-module__3xKBaa__stepLit {
  opacity: 1;
}

.homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__stepIconBox {
  transition: border-color .35s, background-color .35s, color .35s, box-shadow .35s;
}

.homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__stepCredited .ProblemSection-module__3xKBaa__stepIconBox {
  color: #7d47eb;
  background: #f3eeff;
  border-color: #c4b1f7;
  box-shadow: 0 0 0 4px #7d47eb1a;
}

.homeClean .ProblemSection-module__3xKBaa__fillLastTouch {
  background: #8a8799;
}

.homeClean .ProblemSection-module__3xKBaa__fillCredited {
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
}

.homeClean .ProblemSection-module__3xKBaa__note {
  transition: opacity .35s, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.homeClean .ProblemSection-module__3xKBaa__noteWaiting {
  opacity: 0;
  transform: translateY(4px);
}

@media (max-width: 640px) {
  .ProblemSection-module__3xKBaa__storyTabs {
    gap: 12px;
  }

  .ProblemSection-module__3xKBaa__storyTabLabel {
    font-size: .75rem;
  }

  .ProblemSection-module__3xKBaa__journeyLine {
    width: 2px;
    height: auto;
    inset: 18px auto 34px 17px;
  }

  .ProblemSection-module__3xKBaa__journeyLine i {
    transform: scaleY(var(--journey-fill, 1));
    transform-origin: top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ProblemSection-module__3xKBaa__journeyLine i {
    transition: none;
  }

  .homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__journeyStep {
    transition: none;
  }

  .homeClean .ProblemSection-module__3xKBaa__storyMode .ProblemSection-module__3xKBaa__stepIconBox {
    transition: none;
  }

  .homeClean .ProblemSection-module__3xKBaa__note {
    transition: none;
  }
}

/* [project]/apps/website/components/ProductScenes/SceneFrame.module.css [app-client] (css) */
.SceneFrame-module__t4buIq__scene {
  --um-primary: #7d47eb;
  --um-primary-600: #6033ca;
  --um-primary-400: #9878ee;
  --um-primary-300: #c4b1f7;
  --um-accent: #f3eeff;
  --um-grad: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  --um-ink: #1b1733;
  --um-ink-2: #524d6b;
  --um-ink-3: #706b88;
  --um-line: #edeaf6;
  --um-line-strong: #e0dcee;
  --um-subtle: #f8f6fe;
  --um-surface: #fff;
  --um-n-bar: #d5c8fa;
  --um-n-track: #f2eefd;
  --um-up: #1fb57a;
  --um-down: #f04747;
  --um-up-ink: #0e7c55;
  --um-down-ink: #c62f2f;
  --um-c-purple: #9878ee;
  --um-c-pink: #ec67a3;
  --um-c-teal: #30bdd2;
  --um-c-orange: #fba15a;
  --um-c-green: #33b884;
  --um-c-blue: #5c94f6;
  --um-radius: 8px;
  --um-ease: cubic-bezier(.22, 1, .36, 1);
  --um-ease-snap: cubic-bezier(.2, .8, .2, 1);
  isolation: isolate;
  color: var(--um-ink);
  letter-spacing: -.011em;
  font-variant-numeric: tabular-nums;
  text-align: left;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  container: scene / inline-size;
}

.SceneFrame-module__t4buIq__window {
  background: var(--um-surface);
  border: 1px solid #1b173314;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px #1b17330a, 0 24px 48px -32px #3d1f8c38;
}

.SceneFrame-module__t4buIq__scene:before {
  content: "";
  z-index: -1;
  filter: blur(36px);
  pointer-events: none;
  background: radial-gradient(55% 50% at 28% 38%, #7d47eb57, #0000 72%), radial-gradient(50% 50% at 76% 72%, #9d36e342, #0000 72%);
  position: absolute;
  inset: 10% -8% -10%;
}

.SceneFrame-module__t4buIq__bar {
  border-bottom: 1px solid var(--um-line);
  background: var(--um-surface);
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 10px 0 16px;
  display: flex;
}

.SceneFrame-module__t4buIq__logo {
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  display: inline-flex;
}

.SceneFrame-module__t4buIq__logo i {
  background: linear-gradient(#9d36e3, #7d47eb);
  border-radius: 2px;
  width: 3.5px;
  display: block;
}

.SceneFrame-module__t4buIq__logo i:first-child {
  opacity: .55;
  height: 7px;
}

.SceneFrame-module__t4buIq__logo i:nth-child(2) {
  opacity: .8;
  height: 10px;
}

.SceneFrame-module__t4buIq__logo i:nth-child(3) {
  height: 14px;
}

.SceneFrame-module__t4buIq__crumbs {
  min-width: 0;
  color: var(--um-ink-3);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  display: flex;
}

.SceneFrame-module__t4buIq__crumbs > span + span:before {
  content: "/";
  color: var(--um-line-strong);
  margin-right: 6px;
}

.SceneFrame-module__t4buIq__crumbCurrent {
  color: var(--um-ink);
  font-weight: 500;
}

.SceneFrame-module__t4buIq__toolbar {
  align-items: center;
  gap: 6px;
  margin-left: auto;
  display: flex;
}

.SceneFrame-module__t4buIq__pause {
  border: 1px solid var(--um-line);
  background: var(--um-surface);
  width: 24px;
  height: 24px;
  color: var(--um-ink-3);
  cursor: pointer;
  border-radius: 999px;
  flex: none;
  place-items: center;
  margin-left: 2px;
  padding: 0;
  transition: color .15s, border-color .15s, background-color .15s;
  display: grid;
}

.SceneFrame-module__t4buIq__pause:hover {
  color: var(--um-primary);
  border-color: var(--um-primary-300);
  background: var(--um-accent);
}

.SceneFrame-module__t4buIq__pause:focus-visible {
  outline: 2px solid var(--um-primary);
  outline-offset: 2px;
}

.SceneFrame-module__t4buIq__body {
  transition: opacity .36s;
  position: relative;
}

.SceneFrame-module__t4buIq__scene[data-rewinding="true"] .SceneFrame-module__t4buIq__body, .SceneFrame-module__t4buIq__scene[data-rewinding="true"] .SceneFrame-module__t4buIq__overlay {
  opacity: 0;
}

.SceneFrame-module__t4buIq__scene[data-rewinding="true"] .SceneFrame-module__t4buIq__body *, .SceneFrame-module__t4buIq__scene[data-rewinding="true"] .SceneFrame-module__t4buIq__overlay * {
  transition: none !important;
  animation: none !important;
}

.SceneFrame-module__t4buIq__overlay {
  transition: opacity .36s;
}

.SceneFrame-module__t4buIq__caption {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.SceneFrame-module__t4buIq__field {
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  height: 26px;
  color: var(--um-ink);
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 12px;
  display: inline-flex;
}

.SceneFrame-module__t4buIq__primaryButton {
  background: var(--um-grad);
  color: #fff;
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  box-shadow: 0 1px 2px #6033ca40;
}

.SceneFrame-module__t4buIq__pill {
  border: 1px solid var(--um-line);
  background: var(--um-subtle);
  height: 20px;
  color: var(--um-ink-2);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 0 7px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.SceneFrame-module__t4buIq__pillAccent {
  background: var(--um-accent);
  color: var(--um-primary-600);
  border-color: #0000;
}

@media (prefers-reduced-motion: reduce) {
  .SceneFrame-module__t4buIq__body, .SceneFrame-module__t4buIq__overlay {
    transition: none;
  }
}

/* [project]/apps/website/components/ProductScenes/PlatformLogo.module.css [app-client] (css) */
.PlatformLogo-module__KoXdfG__logo {
  object-fit: contain;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  flex: none;
  display: inline-block;
}

.PlatformLogo-module__KoXdfG__mono {
  filter: brightness(0);
  opacity: .88;
}

.PlatformLogo-module__KoXdfG__knockout {
  filter: invert();
  -webkit-mask: var(--logo-src) center / contain no-repeat luminance;
  mask: var(--logo-src) center / contain no-repeat luminance;
  transform: scale(1.3);
}

/* [project]/apps/website/components/ProductScenes/AnalyticsScene/AnalyticsScene.module.css [app-client] (css) */
.AnalyticsScene-module__06acSa__body {
  grid-template-columns: minmax(0, 1fr) 232px;
  height: 452px;
  display: grid;
}

.AnalyticsScene-module__06acSa__muted {
  color: var(--um-ink-3);
}

.AnalyticsScene-module__06acSa__off {
  opacity: 0;
}

.AnalyticsScene-module__06acSa__spin {
  animation: .9s linear infinite AnalyticsScene-module__06acSa__spin;
}

@keyframes AnalyticsScene-module__06acSa__spin {
  to {
    rotate: 360deg;
  }
}

.AnalyticsScene-module__06acSa__doneIcon {
  color: var(--um-up);
}

.AnalyticsScene-module__06acSa__placeholder {
  color: var(--um-ink-3);
}

.AnalyticsScene-module__06acSa__caret {
  vertical-align: -2px;
  background: var(--um-primary);
  width: 1.5px;
  height: 13px;
  margin-left: 1px;
  display: inline-block;
}

.AnalyticsScene-module__06acSa__canvas {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.AnalyticsScene-module__06acSa__canvasHead {
  flex: none;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  display: flex;
}

.AnalyticsScene-module__06acSa__titleSlot {
  flex: 1;
  min-width: 0;
  display: grid;
}

.AnalyticsScene-module__06acSa__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  grid-area: 1 / 1;
  font-size: 14px;
  transition: opacity .35s;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__titleDraft {
  color: var(--um-ink-3);
  font-weight: 500;
}

.AnalyticsScene-module__06acSa__titleSaved {
  opacity: 0;
  font-weight: 600;
}

.AnalyticsScene-module__06acSa__saved .AnalyticsScene-module__06acSa__titleDraft {
  opacity: 0;
}

.AnalyticsScene-module__06acSa__saved .AnalyticsScene-module__06acSa__titleSaved {
  opacity: 1;
}

.AnalyticsScene-module__06acSa__saveSlot {
  flex: none;
  justify-items: end;
  display: grid;
}

.AnalyticsScene-module__06acSa__saveSlot > * {
  grid-area: 1 / 1;
  transition: opacity .3s;
}

.AnalyticsScene-module__06acSa__savedLabel {
  background: var(--um-accent);
  height: 28px;
  color: var(--um-primary-600);
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.AnalyticsScene-module__06acSa__grid {
  border-top: 1px solid var(--um-line);
  background: var(--um-line);
  flex: 1;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 0;
  display: grid;
}

.AnalyticsScene-module__06acSa__tile {
  background: var(--um-surface);
  min-width: 0;
  min-height: 0;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__tileLanded {
  animation: AnalyticsScene-module__06acSa__tile-land 1.6s var(--um-ease) both;
}

@keyframes AnalyticsScene-module__06acSa__tile-land {
  0%, 25% {
    background: var(--um-accent);
  }

  100% {
    background: var(--um-surface);
  }
}

.AnalyticsScene-module__06acSa__slot {
  pointer-events: none;
  flex-direction: column;
  gap: 12px;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 16px 18px;
}

.AnalyticsScene-module__06acSa__slot i {
  background: var(--um-n-track);
  border-radius: 6px;
  display: block;
}

.AnalyticsScene-module__06acSa__slot i:first-child {
  width: 44%;
  height: 10px;
}

.AnalyticsScene-module__06acSa__slot i:last-child {
  opacity: .6;
  flex: 1;
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__slot {
  opacity: 0;
}

.AnalyticsScene-module__06acSa__tileBody {
  opacity: 0;
  height: 100%;
  transition: opacity .4s ease .1s, translate .45s var(--um-ease) .1s;
  flex-direction: column;
  gap: 8px;
  display: flex;
  translate: 0 6px;
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__tileBody {
  opacity: 1;
  translate: 0;
}

.AnalyticsScene-module__06acSa__tileHead {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.AnalyticsScene-module__06acSa__tileTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__source {
  color: var(--um-ink-3);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  display: inline-flex;
}

.AnalyticsScene-module__06acSa__sourceDot {
  background: var(--um-primary);
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.AnalyticsScene-module__06acSa__sourceDot[data-tone="product"] {
  background: var(--um-primary-400);
}

.AnalyticsScene-module__06acSa__sourceDot[data-tone="retention"] {
  background: var(--um-primary-300);
}

.AnalyticsScene-module__06acSa__metric {
  align-items: baseline;
  gap: 8px;
  display: flex;
}

.AnalyticsScene-module__06acSa__metricValue {
  letter-spacing: -.02em;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
}

.AnalyticsScene-module__06acSa__metricUnit {
  color: var(--um-ink-3);
  font-size: 12px;
}

.AnalyticsScene-module__06acSa__change {
  color: var(--um-up-ink);
  white-space: nowrap;
  align-items: center;
  gap: 2px;
  font-size: 11.5px;
  display: inline-flex;
}

.AnalyticsScene-module__06acSa__changeIcon {
  color: var(--um-up);
  align-self: center;
}

.AnalyticsScene-module__06acSa__caption, .AnalyticsScene-module__06acSa__note, .AnalyticsScene-module__06acSa__hint {
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.AnalyticsScene-module__06acSa__note, .AnalyticsScene-module__06acSa__hint {
  margin-top: auto;
}

.AnalyticsScene-module__06acSa__hint {
  color: var(--um-ink-2);
}

.AnalyticsScene-module__06acSa__spark {
  clip-path: inset(-3px 100% -3px 0);
  flex: none;
  width: 100%;
  height: 42px;
  display: block;
  overflow: visible;
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__spark {
  clip-path: inset(-3px 0);
  transition: clip-path .9s var(--um-ease) .25s;
}

.AnalyticsScene-module__06acSa__sparkLine {
  fill: none;
  stroke: var(--um-primary);
  stroke-width: 1.75px;
  stroke-linejoin: round;
}

.AnalyticsScene-module__06acSa__sourceRows {
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
  display: flex;
}

.AnalyticsScene-module__06acSa__sourceRow {
  color: var(--um-ink-2);
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.AnalyticsScene-module__06acSa__sourceValue {
  color: var(--um-ink-3);
}

.AnalyticsScene-module__06acSa__mark {
  color: var(--um-ink-3);
  vertical-align: -2px;
  margin-right: 6px;
  display: inline-flex;
}

.AnalyticsScene-module__06acSa__bars {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.AnalyticsScene-module__06acSa__bar {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.AnalyticsScene-module__06acSa__barLine {
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.AnalyticsScene-module__06acSa__barLabel {
  color: var(--um-ink-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__barValue {
  color: var(--um-ink);
}

.AnalyticsScene-module__06acSa__barTrack {
  background: var(--um-n-track);
  border-radius: 2px;
  height: 4px;
}

.AnalyticsScene-module__06acSa__barTrack i {
  background: var(--um-n-bar);
  transform-origin: 0;
  border-radius: 2px;
  height: 100%;
  display: block;
  transform: scaleX(0);
}

.AnalyticsScene-module__06acSa__bar:first-child .AnalyticsScene-module__06acSa__barTrack i {
  background: var(--um-grad);
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__barTrack i {
  transform: scaleX(var(--share));
  transition: transform .6s var(--um-ease) calc(.3s + var(--i) * 70ms);
}

.AnalyticsScene-module__06acSa__curve {
  border-bottom: 1px solid var(--um-line);
  flex: none;
  height: 44px;
  position: relative;
}

.AnalyticsScene-module__06acSa__curve svg {
  clip-path: inset(-3px 100% -3px 0);
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__curve svg {
  clip-path: inset(-3px -3px -3px 0);
  transition: clip-path .8s var(--um-ease) .25s;
}

.AnalyticsScene-module__06acSa__curveLine {
  fill: none;
  stroke: var(--um-primary);
  stroke-width: 1.75px;
  stroke-linecap: round;
}

.AnalyticsScene-module__06acSa__curveDot {
  background: var(--um-primary);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 2px var(--um-surface);
  opacity: 0;
  border-radius: 999px;
  position: absolute;
  top: calc(83% - 3.5px);
  right: -3.5px;
}

.AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__curveDot {
  opacity: 1;
  transition: opacity .3s .95s;
}

.AnalyticsScene-module__06acSa__curveAxis {
  color: var(--um-ink-3);
  justify-content: space-between;
  margin-top: -4px;
  font-size: 11px;
  display: flex;
}

.AnalyticsScene-module__06acSa__panel {
  border-left: 1px solid var(--um-line);
  background: var(--um-subtle);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.AnalyticsScene-module__06acSa__panelHead {
  border-bottom: 1px solid var(--um-line);
  flex: none;
  align-items: center;
  gap: 8px;
  height: 53px;
  padding: 0 14px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
}

.AnalyticsScene-module__06acSa__panelIcon {
  color: var(--um-ink-3);
  margin-left: auto;
}

.AnalyticsScene-module__06acSa__mavenMark {
  background: var(--um-grad);
  color: #fff;
  border-radius: 6px;
  flex: none;
  place-items: center;
  width: 20px;
  height: 20px;
  display: grid;
}

.AnalyticsScene-module__06acSa__thread {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  min-height: 0;
  padding: 14px 12px;
  display: flex;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__greetingTitle {
  color: var(--um-ink);
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
}

.AnalyticsScene-module__06acSa__greetingText {
  color: var(--um-ink-3);
  margin: 2px 0 0;
  font-size: 12px;
}

.AnalyticsScene-module__06acSa__userMessage {
  background: var(--um-accent);
  color: var(--um-ink);
  border-radius: 10px;
  align-self: flex-end;
  margin-left: 14px;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1.45;
}

.AnalyticsScene-module__06acSa__userMessage, .AnalyticsScene-module__06acSa__reply {
  opacity: 0;
  transition: opacity .35s ease, translate .45s var(--um-ease);
  translate: 0 6px;
}

.AnalyticsScene-module__06acSa__reply {
  flex-direction: column;
  gap: 9px;
  transition-delay: .3s;
  display: flex;
}

.AnalyticsScene-module__06acSa__shown {
  opacity: 1;
  translate: 0;
}

.AnalyticsScene-module__06acSa__statusStack {
  display: grid;
}

.AnalyticsScene-module__06acSa__statusLine {
  color: var(--um-ink-2);
  white-space: nowrap;
  grid-area: 1 / 1;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  transition: opacity .3s;
  display: flex;
}

.AnalyticsScene-module__06acSa__statusLine svg {
  color: var(--um-ink-3);
  flex: none;
}

.AnalyticsScene-module__06acSa__statusLine .AnalyticsScene-module__06acSa__doneIcon {
  color: var(--um-up);
}

.AnalyticsScene-module__06acSa__tasks {
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.AnalyticsScene-module__06acSa__task {
  color: var(--um-ink-3);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: color .3s;
  display: flex;
}

.AnalyticsScene-module__06acSa__task[data-state="active"], .AnalyticsScene-module__06acSa__task[data-state="done"] {
  color: var(--um-ink-2);
}

.AnalyticsScene-module__06acSa__taskMark {
  border: 1.5px solid var(--um-n-bar);
  width: 14px;
  height: 14px;
  color: var(--um-primary);
  border-radius: 999px;
  flex: none;
  place-items: center;
  transition: background-color .25s, border-color .25s;
  display: grid;
}

.AnalyticsScene-module__06acSa__task[data-state="active"] .AnalyticsScene-module__06acSa__taskMark {
  border-color: #0000;
}

.AnalyticsScene-module__06acSa__task[data-state="done"] .AnalyticsScene-module__06acSa__taskMark {
  border-color: var(--um-up);
  background: var(--um-up);
  color: #fff;
}

.AnalyticsScene-module__06acSa__composer {
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  flex-direction: column;
  flex: none;
  gap: 4px;
  margin: 0 12px 12px;
  padding: 8px 6px 6px 10px;
  transition: border-color .3s;
  display: flex;
}

.AnalyticsScene-module__06acSa__composerActive {
  border-color: var(--um-primary-300);
}

.AnalyticsScene-module__06acSa__composerText {
  min-height: 54px;
  padding-right: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.AnalyticsScene-module__06acSa__sendButton {
  width: 24px;
  height: 24px;
  color: var(--um-ink-3);
  border-radius: 6px;
  place-items: center;
  transition: background-color .25s, color .25s, opacity .3s;
  display: grid;
}

.AnalyticsScene-module__06acSa__composerSend {
  align-self: flex-end;
}

.AnalyticsScene-module__06acSa__sendReady {
  background: var(--um-grad);
  color: #fff;
}

.AnalyticsScene-module__06acSa__mobilePrompt {
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  align-items: flex-start;
  gap: 8px;
  margin: 0 12px 10px;
  padding: 7px 6px 7px 8px;
  display: none;
}

.AnalyticsScene-module__06acSa__mobilePrompt .AnalyticsScene-module__06acSa__mavenMark {
  margin-top: 1px;
}

.AnalyticsScene-module__06acSa__mobileText {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  min-width: 0;
  height: 36px;
  font-size: 12px;
  line-height: 1.5;
  transition: color .3s;
  display: -webkit-box;
  overflow: hidden;
}

.AnalyticsScene-module__06acSa__promptSent .AnalyticsScene-module__06acSa__mobileText {
  color: var(--um-ink-2);
}

.AnalyticsScene-module__06acSa__statusSlot {
  flex: none;
  place-items: center;
  display: grid;
}

.AnalyticsScene-module__06acSa__statusSlot > * {
  grid-area: 1 / 1;
  transition: opacity .3s;
}

.AnalyticsScene-module__06acSa__statusIcon {
  width: 24px;
  height: 24px;
  color: var(--um-ink-3);
  place-items: center;
  display: grid;
}

@container scene (width <= 640px) {
  .AnalyticsScene-module__06acSa__body {
    grid-template-columns: minmax(0, 1fr) 204px;
  }

  .AnalyticsScene-module__06acSa__secondary {
    display: none;
  }

  .AnalyticsScene-module__06acSa__tile {
    padding: 12px 14px;
  }

  .AnalyticsScene-module__06acSa__tileHead {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2px;
  }

  .AnalyticsScene-module__06acSa__spark {
    height: 48px;
  }
}

@container scene (width <= 520px) {
  .AnalyticsScene-module__06acSa__body {
    grid-template-columns: minmax(0, 1fr);
    height: 456px;
  }

  .AnalyticsScene-module__06acSa__panel, .AnalyticsScene-module__06acSa__date {
    display: none;
  }

  .AnalyticsScene-module__06acSa__canvasHead {
    height: 48px;
    padding: 0 12px;
  }

  .AnalyticsScene-module__06acSa__mobilePrompt {
    display: flex;
  }

  .AnalyticsScene-module__06acSa__barLine {
    gap: 6px;
    font-size: 11.5px;
  }

  .AnalyticsScene-module__06acSa__tile {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .AnalyticsScene-module__06acSa__title, .AnalyticsScene-module__06acSa__saveSlot > *, .AnalyticsScene-module__06acSa__slot, .AnalyticsScene-module__06acSa__tileBody, .AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__spark, .AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__barTrack i, .AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__curve svg, .AnalyticsScene-module__06acSa__tileLanded .AnalyticsScene-module__06acSa__curveDot, .AnalyticsScene-module__06acSa__userMessage, .AnalyticsScene-module__06acSa__reply, .AnalyticsScene-module__06acSa__statusLine, .AnalyticsScene-module__06acSa__task, .AnalyticsScene-module__06acSa__taskMark, .AnalyticsScene-module__06acSa__composer, .AnalyticsScene-module__06acSa__sendButton, .AnalyticsScene-module__06acSa__mobileText, .AnalyticsScene-module__06acSa__statusSlot > * {
    transition: none;
  }

  .AnalyticsScene-module__06acSa__tileLanded, .AnalyticsScene-module__06acSa__spin {
    animation: none;
  }
}

/* [project]/apps/website/components/ProductScenes/AttributionScene/AttributionScene.module.css [app-client] (css) */
.AttributionScene-module__GYgKTq__body {
  --row-h: 38px;
  flex-direction: column;
  gap: 14px;
  min-height: 440px;
  padding: 16px;
  display: flex;
}

.AttributionScene-module__GYgKTq__muted {
  color: var(--um-ink-3);
  flex: none;
}

.AttributionScene-module__GYgKTq__lookback {
  height: 24px;
  font-size: 11.5px;
}

.AttributionScene-module__GYgKTq__controls {
  z-index: 2;
  align-items: flex-end;
  gap: 10px;
  display: flex;
  position: relative;
}

.AttributionScene-module__GYgKTq__control {
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  display: flex;
}

.AttributionScene-module__GYgKTq__label {
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.AttributionScene-module__GYgKTq__goalWrap, .AttributionScene-module__GYgKTq__modelWrap {
  display: inline-flex;
  position: relative;
}

.AttributionScene-module__GYgKTq__goal {
  transition: border-color .35s var(--um-ease);
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__goalActive {
  border-color: var(--um-primary-300);
}

.AttributionScene-module__GYgKTq__deal {
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  opacity: 0;
  width: 290px;
  max-width: calc(100cqw - 32px);
  transition: opacity .35s ease, translate .4s var(--um-ease);
  pointer-events: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 12px;
  display: grid;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  overflow: hidden;
  translate: 0 6px;
  box-shadow: 0 12px 28px -14px #16151d47;
}

.AttributionScene-module__GYgKTq__dealIn {
  opacity: 1;
  translate: 0;
}

.AttributionScene-module__GYgKTq__dealLanded {
  opacity: 0;
  translate: 0 -6px;
}

.AttributionScene-module__GYgKTq__dealText {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.AttributionScene-module__GYgKTq__dealTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
}

.AttributionScene-module__GYgKTq__dealMeta {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.AttributionScene-module__GYgKTq__dealValue {
  font-size: 12.5px;
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__dealProgress {
  background: var(--um-grad);
  transform-origin: 0;
  border-radius: 2px;
  height: 2px;
  position: absolute;
  bottom: 5px;
  left: 12px;
  right: 12px;
  transform: scaleX(0);
}

.AttributionScene-module__GYgKTq__dealIn .AttributionScene-module__GYgKTq__dealProgress {
  transition: transform 1.1s linear .2s;
  transform: scaleX(1);
}

.AttributionScene-module__GYgKTq__segmented {
  border: 1px solid var(--um-line-strong);
  background: var(--um-subtle);
  height: 26px;
  color: var(--um-ink-3);
  border-radius: 6px;
  flex: none;
  gap: 2px;
  padding: 2px;
  font-size: 12px;
  display: inline-flex;
}

.AttributionScene-module__GYgKTq__segmented > span {
  border-radius: 4px;
  align-items: center;
  padding: 0 9px;
  display: inline-flex;
}

.AttributionScene-module__GYgKTq__segmented > .AttributionScene-module__GYgKTq__segmentActive {
  background: var(--um-surface);
  color: var(--um-ink);
  box-shadow: 0 0 0 1px var(--um-line);
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__modelControl {
  margin-left: auto;
}

.AttributionScene-module__GYgKTq__model {
  justify-content: space-between;
  min-width: 128px;
  font-weight: 500;
  transition: border-color .25s, box-shadow .25s;
}

.AttributionScene-module__GYgKTq__modelName {
  text-overflow: ellipsis;
  overflow: hidden;
}

.AttributionScene-module__GYgKTq__modelOpen {
  border-color: var(--um-primary-300);
  box-shadow: 0 0 0 3px var(--um-accent);
}

.AttributionScene-module__GYgKTq__menu {
  --item-h: 26px;
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  opacity: 0;
  width: 192px;
  transition: opacity .2s ease, translate .3s var(--um-ease);
  pointer-events: none;
  flex-direction: column;
  padding: 4px;
  display: flex;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  translate: 0 -4px;
  box-shadow: 0 14px 32px -14px #16151d4d;
}

.AttributionScene-module__GYgKTq__menuOpen {
  opacity: 1;
  translate: 0;
}

.AttributionScene-module__GYgKTq__menuHighlight {
  height: var(--item-h);
  background: var(--um-accent);
  translate: 0 calc(var(--item) * var(--item-h));
  transition: translate .4s var(--um-ease) .2s;
  border-radius: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
}

.AttributionScene-module__GYgKTq__menuCursor {
  color: var(--um-ink);
  filter: drop-shadow(0 1px 1px #ffffffe6);
  position: absolute;
  top: 10px;
  right: 30px;
}

.AttributionScene-module__GYgKTq__menuItem {
  height: var(--item-h);
  color: var(--um-ink-2);
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  font-size: 12.5px;
  transition: color .2s .35s;
  display: flex;
  position: relative;
}

.AttributionScene-module__GYgKTq__menuItemHot {
  color: var(--um-primary-600);
}

.AttributionScene-module__GYgKTq__check {
  color: var(--um-primary);
}

.AttributionScene-module__GYgKTq__tabs {
  border-bottom: 1px solid var(--um-line);
  color: var(--um-ink-3);
  white-space: nowrap;
  gap: 18px;
  font-size: 12.5px;
  display: flex;
}

.AttributionScene-module__GYgKTq__tabs > span {
  padding-bottom: 9px;
}

.AttributionScene-module__GYgKTq__tabs > .AttributionScene-module__GYgKTq__tabActive {
  color: var(--um-primary-600);
  box-shadow: inset 0 -1.5px 0 var(--um-primary);
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__table {
  flex-direction: column;
  display: flex;
}

.AttributionScene-module__GYgKTq__head, .AttributionScene-module__GYgKTq__row, .AttributionScene-module__GYgKTq__total {
  grid-template-columns: minmax(0, 1.5fr) 80px minmax(0, 1.7fr) 44px;
  align-items: center;
  gap: 12px;
  display: grid;
}

.AttributionScene-module__GYgKTq__head {
  border-bottom: 1px solid var(--um-line);
  color: var(--um-ink-3);
  white-space: nowrap;
  padding-bottom: 8px;
  font-size: 11.5px;
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__num {
  text-align: right;
}

.AttributionScene-module__GYgKTq__rows {
  height: calc(var(--row-h) * 6);
  position: relative;
}

.AttributionScene-module__GYgKTq__row {
  height: var(--row-h);
  border-bottom: 1px solid var(--um-line);
  translate: 0 calc(var(--rank) * var(--row-h));
  transition: translate .45s var(--um-ease);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.AttributionScene-module__GYgKTq__channel {
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.AttributionScene-module__GYgKTq__channelIcon {
  color: var(--um-ink-3);
  flex: none;
  transition: color .35s;
}

.AttributionScene-module__GYgKTq__rowFocal .AttributionScene-module__GYgKTq__channelIcon {
  color: var(--um-primary);
}

.AttributionScene-module__GYgKTq__channelName {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  overflow: hidden;
}

.AttributionScene-module__GYgKTq__rowFocal .AttributionScene-module__GYgKTq__channelName {
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__delta {
  max-width: 0;
  color: var(--um-primary-600);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease, max-width .4s var(--um-ease), margin .4s var(--um-ease);
  flex: none;
  margin-left: -8px;
  font-size: 11.5px;
  font-weight: 500;
  overflow: hidden;
}

.AttributionScene-module__GYgKTq__deltaShown {
  opacity: 1;
  max-width: 60px;
  margin-left: 0;
  transition-delay: .3s;
}

.AttributionScene-module__GYgKTq__deals {
  color: var(--um-ink-2);
  font-size: 12.5px;
}

.AttributionScene-module__GYgKTq__valueCell {
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.AttributionScene-module__GYgKTq__track {
  background: var(--um-n-track);
  border-radius: 3px;
  flex: 1;
  min-width: 0;
  height: 6px;
  position: relative;
}

.AttributionScene-module__GYgKTq__bar {
  background: var(--um-n-bar);
  clip-path: inset(0 calc((1 - var(--fill)) * 100%) 0 0 round 3px);
  transition: clip-path .45s var(--um-ease) calc(var(--rank) * 40ms), background-color .35s ease;
  position: absolute;
  inset: 0;
}

.AttributionScene-module__GYgKTq__bar:after {
  content: "";
  background: var(--um-grad);
  opacity: 0;
  transition: opacity .35s;
  position: absolute;
  inset: 0;
}

.AttributionScene-module__GYgKTq__rowFocal .AttributionScene-module__GYgKTq__bar:after {
  opacity: 1;
}

.AttributionScene-module__GYgKTq__tick {
  background: var(--um-ink-3);
  opacity: 0;
  border-radius: 1px;
  width: 1.5px;
  margin-left: -.75px;
  transition: opacity .35s;
  position: absolute;
  top: -3px;
  bottom: -3px;
}

.AttributionScene-module__GYgKTq__tickShown {
  opacity: .7;
  transition-delay: .45s;
}

.AttributionScene-module__GYgKTq__value {
  width: 40px;
  color: var(--um-ink-2);
  text-align: right;
  flex: none;
  font-size: 12.5px;
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__rowFocal .AttributionScene-module__GYgKTq__value {
  color: var(--um-ink);
  font-weight: 600;
}

.AttributionScene-module__GYgKTq__roas {
  color: var(--um-ink-2);
  font-size: 12.5px;
}

.AttributionScene-module__GYgKTq__none {
  color: var(--um-ink-3);
}

.AttributionScene-module__GYgKTq__total {
  height: 36px;
  color: var(--um-ink-2);
  font-size: 12.5px;
  font-weight: 500;
}

.AttributionScene-module__GYgKTq__totalValue {
  color: var(--um-ink);
  text-align: right;
}

.AttributionScene-module__GYgKTq__footer {
  color: var(--um-ink-3);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 11.5px;
  display: flex;
}

.AttributionScene-module__GYgKTq__source {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: inline-flex;
}

.AttributionScene-module__GYgKTq__legend {
  white-space: nowrap;
  opacity: 0;
  align-items: center;
  gap: 6px;
  transition: opacity .3s;
  display: inline-flex;
}

.AttributionScene-module__GYgKTq__legend i {
  background: var(--um-ink-3);
  opacity: .7;
  border-radius: 1px;
  width: 1.5px;
  height: 12px;
  display: block;
}

.AttributionScene-module__GYgKTq__legendShown {
  opacity: 1;
  transition-delay: .45s;
}

@container scene (width <= 520px) {
  .AttributionScene-module__GYgKTq__lookback, .AttributionScene-module__GYgKTq__segmented, .AttributionScene-module__GYgKTq__tabs > span:nth-child(n+4), .AttributionScene-module__GYgKTq__head > span:nth-child(2), .AttributionScene-module__GYgKTq__row > .AttributionScene-module__GYgKTq__deals, .AttributionScene-module__GYgKTq__total > .AttributionScene-module__GYgKTq__deals {
    display: none;
  }

  .AttributionScene-module__GYgKTq__body {
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .AttributionScene-module__GYgKTq__head, .AttributionScene-module__GYgKTq__row, .AttributionScene-module__GYgKTq__total {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .AttributionScene-module__GYgKTq__channel {
    gap: 6px;
  }

  .AttributionScene-module__GYgKTq__channelName {
    font-size: 12px;
  }

  .AttributionScene-module__GYgKTq__delta {
    margin-left: -6px;
  }

  .AttributionScene-module__GYgKTq__deltaShown {
    margin-left: 0;
  }

  .AttributionScene-module__GYgKTq__valueCell {
    gap: 6px;
  }

  .AttributionScene-module__GYgKTq__source {
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .AttributionScene-module__GYgKTq__goal, .AttributionScene-module__GYgKTq__deal, .AttributionScene-module__GYgKTq__dealIn .AttributionScene-module__GYgKTq__dealProgress, .AttributionScene-module__GYgKTq__model, .AttributionScene-module__GYgKTq__menu, .AttributionScene-module__GYgKTq__menuHighlight, .AttributionScene-module__GYgKTq__row, .AttributionScene-module__GYgKTq__channelIcon, .AttributionScene-module__GYgKTq__menuItem, .AttributionScene-module__GYgKTq__delta, .AttributionScene-module__GYgKTq__bar, .AttributionScene-module__GYgKTq__bar:after, .AttributionScene-module__GYgKTq__tick, .AttributionScene-module__GYgKTq__legend {
    transition: none;
  }
}

/* [project]/apps/website/components/ProductScenes/EventsScene/EventsScene.module.css [app-client] (css) */
.EventsScene-module__t3JW3G__body {
  flex-direction: column;
  padding-top: 16px;
  display: flex;
}

.EventsScene-module__t3JW3G__live {
  color: var(--um-ink-2);
  align-items: center;
  gap: 6px;
  margin-right: 4px;
  font-size: 12px;
  display: inline-flex;
}

.EventsScene-module__t3JW3G__live i {
  background: var(--um-up);
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.EventsScene-module__t3JW3G__sources {
  isolation: isolate;
  white-space: nowrap;
  align-items: center;
  gap: 14px;
  height: 20px;
  padding: 0 16px;
  display: flex;
}

.EventsScene-module__t3JW3G__sourcesLabel {
  color: var(--um-ink-3);
  font-size: 12px;
}

.EventsScene-module__t3JW3G__sourceGroup {
  align-items: center;
  gap: 14px;
  display: flex;
}

.EventsScene-module__t3JW3G__sourceGroup + .EventsScene-module__t3JW3G__sourceGroup {
  border-left: 1px solid var(--um-line-strong);
  padding-left: 14px;
}

.EventsScene-module__t3JW3G__source {
  color: var(--um-ink-2);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  transition: color .3s;
  display: inline-flex;
  position: relative;
}

.EventsScene-module__t3JW3G__source:before {
  content: "";
  z-index: -1;
  background: var(--um-accent);
  opacity: 0;
  border-radius: 6px;
  transition: opacity .3s;
  position: absolute;
  inset: -4px -7px;
}

.EventsScene-module__t3JW3G__sourceLit:before {
  opacity: 1;
}

.EventsScene-module__t3JW3G__sourceIcon {
  color: var(--um-primary-400);
  flex: none;
  transition: color .3s;
  display: inline-flex;
}

.EventsScene-module__t3JW3G__sourceLit, .EventsScene-module__t3JW3G__sourceLit .EventsScene-module__t3JW3G__sourceIcon {
  color: var(--um-primary-600);
}

.EventsScene-module__t3JW3G__sourceLit .EventsScene-module__t3JW3G__sourceIcon {
  color: var(--um-primary);
}

.EventsScene-module__t3JW3G__toolbar {
  border-bottom: 1px solid var(--um-line);
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
  height: 40px;
  margin-top: 16px;
  padding: 0 16px;
  display: flex;
}

.EventsScene-module__t3JW3G__tabs {
  min-width: 0;
  color: var(--um-ink-3);
  align-items: stretch;
  gap: 18px;
  font-size: 12.5px;
  display: flex;
}

.EventsScene-module__t3JW3G__tabs > span {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.EventsScene-module__t3JW3G__tabActive {
  color: var(--um-primary-600);
  box-shadow: inset 0 -2px 0 var(--um-primary);
  font-weight: 500;
}

.EventsScene-module__t3JW3G__count {
  color: var(--um-ink-3);
  font-size: 12px;
  font-weight: 400;
}

.EventsScene-module__t3JW3G__identity {
  color: var(--um-ink-2);
  flex: none;
  align-self: center;
}

.EventsScene-module__t3JW3G__table {
  padding: 0 16px;
}

.EventsScene-module__t3JW3G__head, .EventsScene-module__t3JW3G__row {
  grid-template-columns: 68px minmax(0, 1fr) 84px 118px;
  align-items: center;
  gap: 12px;
  display: grid;
}

.EventsScene-module__t3JW3G__head {
  border-bottom: 1px solid var(--um-line);
  height: 34px;
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.EventsScene-module__t3JW3G__stream {
  height: 294px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 calc(100% - 28px), #0003);
  mask-image: linear-gradient(#000 calc(100% - 28px), #0003);
}

.EventsScene-module__t3JW3G__list {
  isolation: isolate;
}

.EventsScene-module__t3JW3G__list[data-push="1"] {
  animation: EventsScene-module__t3JW3G__push-a .45s var(--um-ease);
}

.EventsScene-module__t3JW3G__list[data-push="0"] {
  animation: EventsScene-module__t3JW3G__push-b .45s var(--um-ease);
}

@keyframes EventsScene-module__t3JW3G__push-a {
  from {
    translate: 0 -42px;
  }

  to {
    translate: 0;
  }
}

@keyframes EventsScene-module__t3JW3G__push-b {
  from {
    translate: 0 -42px;
  }

  to {
    translate: 0;
  }
}

.EventsScene-module__t3JW3G__row {
  border-bottom: 1px solid var(--um-line);
  height: 42px;
  position: relative;
}

.EventsScene-module__t3JW3G__row:before {
  content: "";
  z-index: -1;
  background: var(--um-accent);
  opacity: 0;
  transition: opacity .6s;
  position: absolute;
  inset: 0 -16px;
}

.EventsScene-module__t3JW3G__rowNew:before {
  opacity: 1;
}

.EventsScene-module__t3JW3G__time {
  color: var(--um-ink-3);
  font-size: 12px;
}

.EventsScene-module__t3JW3G__event {
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.EventsScene-module__t3JW3G__eventIcon {
  width: 24px;
  height: 24px;
  color: var(--um-primary-400);
  border-radius: 999px;
  flex: none;
  place-items: center;
  display: grid;
}

.EventsScene-module__t3JW3G__rowNew .EventsScene-module__t3JW3G__eventIcon {
  background: var(--um-surface);
  color: var(--um-primary);
  box-shadow: 0 0 0 1px var(--um-primary-300);
}

.EventsScene-module__t3JW3G__eventText {
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
  display: flex;
}

.EventsScene-module__t3JW3G__eventName, .EventsScene-module__t3JW3G__via {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.EventsScene-module__t3JW3G__eventName {
  font-size: 12.5px;
}

.EventsScene-module__t3JW3G__via {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.EventsScene-module__t3JW3G__status {
  color: var(--um-ink-2);
  align-items: center;
  gap: 6px;
  font-size: 12px;
  display: inline-flex;
}

.EventsScene-module__t3JW3G__status i {
  background: var(--um-up);
  border-radius: 999px;
  flex: none;
  width: 6px;
  height: 6px;
}

.EventsScene-module__t3JW3G__url, .EventsScene-module__t3JW3G__urlNone {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.EventsScene-module__t3JW3G__url {
  color: var(--um-ink-2);
}

.EventsScene-module__t3JW3G__urlNone {
  color: var(--um-ink-3);
}

@container scene (width <= 520px) {
  .EventsScene-module__t3JW3G__sources {
    justify-content: space-between;
    gap: 0;
  }

  .EventsScene-module__t3JW3G__sourceGroup {
    flex: 1;
    justify-content: space-around;
  }

  .EventsScene-module__t3JW3G__sourceGroup + .EventsScene-module__t3JW3G__sourceGroup {
    padding-left: 0;
  }

  .EventsScene-module__t3JW3G__sourcesLabel, .EventsScene-module__t3JW3G__sourceLabel, .EventsScene-module__t3JW3G__identity, .EventsScene-module__t3JW3G__tabs > span:not(.EventsScene-module__t3JW3G__tabActive) .EventsScene-module__t3JW3G__count, .EventsScene-module__t3JW3G__head span:first-child, .EventsScene-module__t3JW3G__head span:nth-child(4), .EventsScene-module__t3JW3G__time, .EventsScene-module__t3JW3G__url, .EventsScene-module__t3JW3G__urlNone, .EventsScene-module__t3JW3G__statusLabel {
    display: none;
  }

  .EventsScene-module__t3JW3G__tabs {
    gap: 16px;
  }

  .EventsScene-module__t3JW3G__head, .EventsScene-module__t3JW3G__row {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .EventsScene-module__t3JW3G__head span:nth-child(3) {
    text-align: right;
  }

  .EventsScene-module__t3JW3G__status {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .EventsScene-module__t3JW3G__source, .EventsScene-module__t3JW3G__source:before, .EventsScene-module__t3JW3G__sourceIcon, .EventsScene-module__t3JW3G__row:before {
    transition: none;
  }

  .EventsScene-module__t3JW3G__list[data-push="1"], .EventsScene-module__t3JW3G__list[data-push="0"] {
    animation: none;
  }
}

/* [project]/apps/website/components/ProductScenes/FunnelScene/FunnelScene.module.css [app-client] (css) */
.FunnelScene-module__9yONSa__body {
  flex-direction: column;
  height: 440px;
  display: flex;
}

.FunnelScene-module__9yONSa__fieldIcon {
  color: var(--um-ink-3);
}

.FunnelScene-module__9yONSa__tabs {
  border-bottom: 1px solid var(--um-line);
  flex: none;
  gap: 4px;
  height: 40px;
  padding: 0 10px;
  display: flex;
}

.FunnelScene-module__9yONSa__tab {
  color: var(--um-ink-3);
  white-space: nowrap;
  transition: color .3s var(--um-ease);
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  position: relative;
}

.FunnelScene-module__9yONSa__tab:after {
  content: "";
  background: var(--um-primary);
  height: 1.5px;
  transition: transform .4s var(--um-ease);
  border-radius: 2px;
  position: absolute;
  bottom: -1px;
  left: 6px;
  right: 6px;
  transform: scaleX(0);
}

.FunnelScene-module__9yONSa__tabActive {
  color: var(--um-primary-600);
}

.FunnelScene-module__9yONSa__tabActive:after {
  transform: scaleX(1);
}

.FunnelScene-module__9yONSa__tabLabel {
  border-radius: 6px;
  padding: 4px 6px;
  transition: background-color .25s;
}

.FunnelScene-module__9yONSa__tabHover .FunnelScene-module__9yONSa__tabLabel {
  background: var(--um-n-track);
}

.FunnelScene-module__9yONSa__stats {
  border-bottom: 1px solid var(--um-line);
  flex: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 16px 16px;
  display: grid;
}

.FunnelScene-module__9yONSa__stat {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.FunnelScene-module__9yONSa__statLabel {
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.FunnelScene-module__9yONSa__statValue {
  color: var(--um-ink);
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.FunnelScene-module__9yONSa__dropValue {
  color: var(--um-down-ink);
  font-weight: 600;
}

.FunnelScene-module__9yONSa__statSub {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  overflow: hidden;
}

.FunnelScene-module__9yONSa__dropSub {
  opacity: 0;
  transition: opacity .35s .15s;
}

.FunnelScene-module__9yONSa__dropSubShown {
  opacity: 1;
}

.FunnelScene-module__9yONSa__metric {
  display: inline-grid;
}

.FunnelScene-module__9yONSa__metricValue, .FunnelScene-module__9yONSa__metricEmpty {
  grid-area: 1 / 1;
  transition: opacity .3s;
}

.FunnelScene-module__9yONSa__metricValue {
  opacity: 0;
}

.FunnelScene-module__9yONSa__metricEmpty {
  color: var(--um-line-strong);
}

.FunnelScene-module__9yONSa__metricShown .FunnelScene-module__9yONSa__metricValue {
  opacity: 1;
}

.FunnelScene-module__9yONSa__metricShown .FunnelScene-module__9yONSa__metricEmpty {
  opacity: 0;
}

.FunnelScene-module__9yONSa__panel {
  flex: 1;
  min-height: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.FunnelScene-module__9yONSa__view {
  min-width: 0;
  min-height: 0;
  transition: opacity .4s ease, translate .45s var(--um-ease);
  grid-area: 1 / 1;
}

.FunnelScene-module__9yONSa__viewHidden {
  opacity: 0;
  translate: 0 6px;
}

.FunnelScene-module__9yONSa__chart {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
  padding: 14px 16px;
  display: grid;
  position: relative;
}

.FunnelScene-module__9yONSa__grid {
  border-bottom: 1px solid var(--um-line-strong);
  background: linear-gradient(to bottom, var(--um-line) 1px, transparent 1px) 0 0 / 100% 25%;
  pointer-events: none;
  position: absolute;
  inset: 74px 16px 14px;
}

.FunnelScene-module__9yONSa__col {
  flex-direction: column;
  min-width: 0;
  padding-right: 8px;
  display: flex;
  position: relative;
}

.FunnelScene-module__9yONSa__stepHead {
  gap: 6px;
  height: 50px;
  display: flex;
}

.FunnelScene-module__9yONSa__stepNum {
  width: 10px;
  color: var(--um-ink-3);
  flex: none;
  font-size: 11.5px;
  line-height: 15px;
}

.FunnelScene-module__9yONSa__stepText {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.FunnelScene-module__9yONSa__stepName {
  height: 30px;
  color: var(--um-ink);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 15px;
  display: -webkit-box;
  overflow: hidden;
}

.FunnelScene-module__9yONSa__stepCount {
  color: var(--um-ink-2);
  white-space: nowrap;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  display: flex;
}

.FunnelScene-module__9yONSa__stepRate {
  color: var(--um-ink-3);
  opacity: 0;
  font-size: 11.5px;
  transition: opacity .35s .45s;
}

.FunnelScene-module__9yONSa__stepRateShown {
  opacity: 1;
}

.FunnelScene-module__9yONSa__plot {
  flex: 1;
  margin-top: 10px;
  position: relative;
}

.FunnelScene-module__9yONSa__barSlot {
  width: 52px;
  height: 100%;
  position: relative;
}

.FunnelScene-module__9yONSa__fill, .FunnelScene-module__9yONSa__ghost {
  border-radius: 4px 4px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.FunnelScene-module__9yONSa__fill {
  height: calc(var(--value) * 1%);
  background: var(--um-primary-400);
  transform-origin: bottom;
  min-height: 2px;
  transition: transform .6s var(--um-ease) calc(var(--i) * 70ms), background-color .4s ease;
  transform: scaleY(0);
}

.FunnelScene-module__9yONSa__fillShown {
  transform: scaleY(1);
}

.FunnelScene-module__9yONSa__fill:after, .FunnelScene-module__9yONSa__trackFill:after {
  content: "";
  border-radius: inherit;
  background: var(--um-grad);
  opacity: 0;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.FunnelScene-module__9yONSa__ghost {
  --hatch: var(--um-n-bar);
  height: calc(var(--prev) * 1%);
  background: repeating-linear-gradient(-45deg, var(--hatch) 0 1px, transparent 1px 5px), var(--um-subtle);
  clip-path: inset(100% 0 0);
  transition: clip-path .6s var(--um-ease) calc(var(--i) * 70ms);
}

.FunnelScene-module__9yONSa__ghostShown {
  clip-path: inset(0);
}

.FunnelScene-module__9yONSa__colRecede .FunnelScene-module__9yONSa__fill {
  background: var(--um-n-bar);
}

.FunnelScene-module__9yONSa__colFocus .FunnelScene-module__9yONSa__fill:after {
  opacity: 1;
}

.FunnelScene-module__9yONSa__colFocus .FunnelScene-module__9yONSa__ghost {
  --hatch: var(--um-primary-300);
  background: repeating-linear-gradient(-45deg, var(--hatch) 0 1px, transparent 1px 5px), var(--um-accent);
}

.FunnelScene-module__9yONSa__meta {
  bottom: clamp(0px, calc(var(--mid) * 1% - 16px), calc(100% - 34px));
  opacity: 0;
  transition: opacity .35s ease, translate .4s var(--um-ease);
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  display: flex;
  position: absolute;
  left: 60px;
  translate: -4px;
}

.FunnelScene-module__9yONSa__metaShown {
  opacity: 1;
  transition-delay: calc(var(--i) * 70ms + .2s);
  translate: 0;
}

.FunnelScene-module__9yONSa__metaRate {
  color: var(--um-ink-2);
  white-space: nowrap;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  transition: color .35s;
  display: inline-flex;
}

.FunnelScene-module__9yONSa__metaArrow {
  color: var(--um-ink-3);
  transition: color .35s;
}

.FunnelScene-module__9yONSa__metaLabel {
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.FunnelScene-module__9yONSa__colRecede .FunnelScene-module__9yONSa__metaRate {
  color: var(--um-ink-3);
}

.FunnelScene-module__9yONSa__metaFocus .FunnelScene-module__9yONSa__metaRate, .FunnelScene-module__9yONSa__metaFocus .FunnelScene-module__9yONSa__metaArrow {
  color: var(--um-down-ink);
}

.FunnelScene-module__9yONSa__breakdown {
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 14px 16px 16px;
  display: flex;
}

.FunnelScene-module__9yONSa__bdControls {
  color: var(--um-ink-3);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.FunnelScene-module__9yONSa__avgKey {
  color: var(--um-ink-3);
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 11.5px;
  display: inline-flex;
}

.FunnelScene-module__9yONSa__avgKey i {
  border-left: 1px dashed var(--um-ink-3);
  height: 12px;
  display: block;
}

.FunnelScene-module__9yONSa__bdTable {
  flex-direction: column;
  display: flex;
}

.FunnelScene-module__9yONSa__bdHead, .FunnelScene-module__9yONSa__bdRow {
  grid-template-columns: minmax(0, 1.05fr) 52px minmax(0, 2fr) 58px;
  align-items: center;
  gap: 14px;
  display: grid;
}

.FunnelScene-module__9yONSa__bdHead {
  border-bottom: 1px solid var(--um-line);
  color: var(--um-ink-3);
  white-space: nowrap;
  padding-bottom: 8px;
  font-size: 11.5px;
}

.FunnelScene-module__9yONSa__bdNum {
  text-align: right;
}

.FunnelScene-module__9yONSa__bdRow {
  border-bottom: 1px solid var(--um-line);
  height: 44px;
}

.FunnelScene-module__9yONSa__channel {
  color: var(--um-ink-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  transition: color .35s;
  overflow: hidden;
}

.FunnelScene-module__9yONSa__channelMark {
  color: var(--um-ink-3);
  vertical-align: -2px;
  margin-right: 8px;
  display: inline-flex;
}

.FunnelScene-module__9yONSa__entered, .FunnelScene-module__9yONSa__converted {
  color: var(--um-ink-2);
  font-size: 12.5px;
  transition: color .35s;
}

.FunnelScene-module__9yONSa__bdRowBest .FunnelScene-module__9yONSa__channel, .FunnelScene-module__9yONSa__bdRowBest .FunnelScene-module__9yONSa__converted {
  color: var(--um-ink);
  font-weight: 500;
}

.FunnelScene-module__9yONSa__rateCell {
  align-self: stretch;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.FunnelScene-module__9yONSa__track {
  flex: 1;
  align-self: stretch;
  position: relative;
}

.FunnelScene-module__9yONSa__trackBg, .FunnelScene-module__9yONSa__trackFill {
  border-radius: 999px;
  height: 6px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  left: 0;
}

.FunnelScene-module__9yONSa__trackBg {
  background: var(--um-n-track);
  width: 100%;
}

.FunnelScene-module__9yONSa__trackFill {
  width: calc(var(--w) * 1%);
  background: var(--um-n-bar);
  transform-origin: 0;
  transition: transform .6s var(--um-ease) calc(var(--i) * 70ms + .15s), background-color .4s ease;
  transform: scaleX(0);
}

.FunnelScene-module__9yONSa__trackFillShown {
  transform: scaleX(1);
}

.FunnelScene-module__9yONSa__bdRowBest .FunnelScene-module__9yONSa__trackFill:after {
  opacity: 1;
}

.FunnelScene-module__9yONSa__avgLine {
  top: 0;
  bottom: -1px;
  left: calc(var(--avg) * 1%);
  border-left: 1px dashed var(--um-ink-3);
  opacity: .6;
  position: absolute;
}

.FunnelScene-module__9yONSa__rateValue {
  width: 42px;
  color: var(--um-ink-2);
  text-align: right;
  flex: none;
  font-size: 12.5px;
  transition: color .35s;
}

.FunnelScene-module__9yONSa__bdRowBest .FunnelScene-module__9yONSa__rateValue {
  color: var(--um-primary-600);
  font-weight: 500;
}

.FunnelScene-module__9yONSa__insight {
  color: var(--um-ink-2);
  opacity: 0;
  transition: opacity .35s ease, translate .45s var(--um-ease);
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.45;
  display: flex;
  translate: 0 6px;
}

.FunnelScene-module__9yONSa__insight b {
  color: var(--um-ink);
  font-weight: 500;
}

.FunnelScene-module__9yONSa__insightShown {
  opacity: 1;
  translate: 0;
}

.FunnelScene-module__9yONSa__insightIcon {
  color: var(--um-primary);
  flex: none;
}

@container scene (width <= 520px) {
  .FunnelScene-module__9yONSa__dateField, .FunnelScene-module__9yONSa__tab[data-tab="extra"], .FunnelScene-module__9yONSa__stepNum, .FunnelScene-module__9yONSa__metaArrow, .FunnelScene-module__9yONSa__bdHeadStep, .FunnelScene-module__9yONSa__bdHead > :nth-child(2), .FunnelScene-module__9yONSa__bdHead > :nth-child(4), .FunnelScene-module__9yONSa__entered, .FunnelScene-module__9yONSa__converted {
    display: none;
  }

  .FunnelScene-module__9yONSa__stats {
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .FunnelScene-module__9yONSa__statValue {
    font-size: 16px;
  }

  .FunnelScene-module__9yONSa__statSub {
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 30px;
    line-height: 15px;
    display: -webkit-box;
  }

  .FunnelScene-module__9yONSa__chart {
    padding: 12px;
  }

  .FunnelScene-module__9yONSa__grid {
    inset: 70px 12px 12px;
  }

  .FunnelScene-module__9yONSa__col {
    padding-right: 5px;
  }

  .FunnelScene-module__9yONSa__stepName {
    height: 28px;
    font-size: 11.5px;
    line-height: 14px;
  }

  .FunnelScene-module__9yONSa__stepHead {
    height: 48px;
  }

  .FunnelScene-module__9yONSa__stepCount {
    font-size: 11.5px;
  }

  .FunnelScene-module__9yONSa__stepRate {
    display: none;
  }

  .FunnelScene-module__9yONSa__barSlot {
    width: 26px;
  }

  .FunnelScene-module__9yONSa__meta {
    left: 30px;
  }

  .FunnelScene-module__9yONSa__col:last-child .FunnelScene-module__9yONSa__meta {
    bottom: calc(var(--prev) * 1% + 6px);
    left: 0;
  }

  .FunnelScene-module__9yONSa__metaRate {
    font-size: 11.5px;
  }

  .FunnelScene-module__9yONSa__breakdown {
    padding: 12px 12px 14px;
  }

  .FunnelScene-module__9yONSa__bdHead, .FunnelScene-module__9yONSa__bdRow {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 10px;
  }

  .FunnelScene-module__9yONSa__bdRow {
    height: 40px;
  }

  .FunnelScene-module__9yONSa__bdControls {
    gap: 6px;
  }

  .FunnelScene-module__9yONSa__channel {
    font-size: 12px;
  }

  .FunnelScene-module__9yONSa__rateValue {
    width: 38px;
    font-size: 12px;
  }

  .FunnelScene-module__9yONSa__insight {
    align-items: flex-start;
    font-size: 12px;
  }

  .FunnelScene-module__9yONSa__insightIcon {
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .FunnelScene-module__9yONSa__tab, .FunnelScene-module__9yONSa__tab:after, .FunnelScene-module__9yONSa__tabLabel, .FunnelScene-module__9yONSa__metricValue, .FunnelScene-module__9yONSa__metricEmpty, .FunnelScene-module__9yONSa__dropSub, .FunnelScene-module__9yONSa__stepRate, .FunnelScene-module__9yONSa__view, .FunnelScene-module__9yONSa__fill, .FunnelScene-module__9yONSa__ghost, .FunnelScene-module__9yONSa__meta, .FunnelScene-module__9yONSa__metaRate, .FunnelScene-module__9yONSa__metaArrow, .FunnelScene-module__9yONSa__channel, .FunnelScene-module__9yONSa__entered, .FunnelScene-module__9yONSa__converted, .FunnelScene-module__9yONSa__trackFill, .FunnelScene-module__9yONSa__rateValue, .FunnelScene-module__9yONSa__insight, .FunnelScene-module__9yONSa__fill:after, .FunnelScene-module__9yONSa__trackFill:after {
    transition: none;
  }
}

/* [project]/apps/website/components/ProductScenes/JourneyScene/JourneyScene.module.css [app-client] (css) */
.JourneyScene-module__xYXvMa__body {
  flex-direction: column;
  display: flex;
}

.JourneyScene-module__xYXvMa__swap {
  justify-items: start;
  max-width: 100%;
  display: inline-grid;
}

.JourneyScene-module__xYXvMa__swapFrom, .JourneyScene-module__xYXvMa__swapTo {
  white-space: nowrap;
  min-width: 0;
  transition: opacity .2s ease, translate .35s var(--um-ease);
  grid-area: 1 / 1;
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__swap[data-on="true"] .JourneyScene-module__xYXvMa__swapTo, .JourneyScene-module__xYXvMa__swap[data-on="false"] .JourneyScene-module__xYXvMa__swapFrom {
  transition-delay: .16s;
}

.JourneyScene-module__xYXvMa__swapTo, .JourneyScene-module__xYXvMa__swap[data-on="true"] .JourneyScene-module__xYXvMa__swapFrom {
  opacity: 0;
  translate: 0 4px;
}

.JourneyScene-module__xYXvMa__swap[data-on="true"] .JourneyScene-module__xYXvMa__swapFrom {
  translate: 0 -4px;
}

.JourneyScene-module__xYXvMa__swap[data-on="true"] .JourneyScene-module__xYXvMa__swapTo {
  opacity: 1;
  translate: 0;
}

.JourneyScene-module__xYXvMa__profile {
  align-items: center;
  gap: 12px;
  padding: 18px 16px 16px;
  display: flex;
}

.JourneyScene-module__xYXvMa__avatar {
  background: var(--um-accent);
  width: 32px;
  height: 32px;
  color: var(--um-primary-600);
  border-radius: 999px;
  flex: none;
  place-items: center;
  font-size: 11.5px;
  font-weight: 500;
  display: grid;
}

.JourneyScene-module__xYXvMa__who {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.JourneyScene-module__xYXvMa__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.JourneyScene-module__xYXvMa__email {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__engagement {
  color: var(--um-ink-2);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12px;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__engagement i {
  background: var(--um-up);
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.JourneyScene-module__xYXvMa__stats {
  border-top: 1px solid var(--um-line);
  border-bottom: 1px solid var(--um-line);
  grid-template-columns: 1fr 1fr 1.5fr .9fr;
  gap: 16px;
  padding: 12px 16px;
  display: grid;
}

.JourneyScene-module__xYXvMa__stat {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.JourneyScene-module__xYXvMa__statLabel {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__statValue {
  white-space: nowrap;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__source {
  color: var(--um-ink-3);
  margin-left: 4px;
  font-weight: 400;
}

.JourneyScene-module__xYXvMa__statFocus {
  color: var(--um-primary-600);
  transition: color .35s;
}

.JourneyScene-module__xYXvMa__statValue .JourneyScene-module__xYXvMa__source {
  margin-left: 0;
}

.JourneyScene-module__xYXvMa__panel {
  padding: 16px 16px 14px;
}

.JourneyScene-module__xYXvMa__panelHead {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  height: 22px;
  display: flex;
}

.JourneyScene-module__xYXvMa__panelTitle {
  color: var(--um-ink-2);
  font-size: 12px;
  font-weight: 500;
}

.JourneyScene-module__xYXvMa__resolution {
  min-width: 0;
  max-width: 100%;
  transition: background-color .35s, border-color .35s, color .35s;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__resolutionIcon {
  color: var(--um-ink-3);
  flex: none;
  transition: color .35s;
}

.JourneyScene-module__xYXvMa__resolutionOn .JourneyScene-module__xYXvMa__resolutionIcon {
  color: var(--um-primary);
}

.JourneyScene-module__xYXvMa__timeline {
  isolation: isolate;
  height: 226px;
  margin-top: 14px;
  position: relative;
}

.JourneyScene-module__xYXvMa__link {
  background: repeating-linear-gradient(to bottom, var(--um-primary-400) 0 3px, transparent 3px 7px);
  opacity: 0;
  transform-origin: top;
  width: 1px;
  height: 136px;
  position: absolute;
  top: 15px;
  left: 11.5px;
  transform: scaleY(0);
}

.JourneyScene-module__xYXvMa__isResolved .JourneyScene-module__xYXvMa__link {
  opacity: 1;
  transition: opacity .2s ease .2s, transform .45s var(--um-ease) .2s;
  transform: scaleY(1);
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__link {
  opacity: 0;
  transition: opacity .3s;
}

.JourneyScene-module__xYXvMa__rail {
  width: 24px;
  height: 226px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

.JourneyScene-module__xYXvMa__rail path {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1px;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__railA {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .8s cubic-bezier(.45, 0, .35, 1) .3s;
}

.JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__railB {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .45s cubic-bezier(.45, 0, .35, 1);
}

.JourneyScene-module__xYXvMa__session, .JourneyScene-module__xYXvMa__revenue {
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 10px;
  height: 56px;
  padding-top: 4px;
  display: grid;
  position: relative;
}

.JourneyScene-module__xYXvMa__session:before {
  content: "";
  z-index: -1;
  border-radius: var(--um-radius);
  background: var(--um-n-track);
  opacity: .55;
  transition: opacity .4s;
  position: absolute;
  inset: -4px -10px 2px -8px;
}

.JourneyScene-module__xYXvMa__session[data-index="1"] {
  translate: 0 12px;
}

.JourneyScene-module__xYXvMa__session[data-index="2"] {
  translate: 0 24px;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session {
  transition: translate .45s var(--um-ease);
  translate: 0;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session:before {
  opacity: 0;
}

.JourneyScene-module__xYXvMa__node {
  z-index: 1;
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  width: 22px;
  height: 22px;
  color: var(--um-ink-3);
  border-radius: 999px;
  justify-self: center;
  place-items: center;
  display: grid;
  position: relative;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session .JourneyScene-module__xYXvMa__node {
  border-color: var(--um-primary-300);
  background: var(--um-accent);
  color: var(--um-primary);
  transition: border-color .3s, background-color .3s, color .3s;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session[data-index="0"] .JourneyScene-module__xYXvMa__node {
  transition-delay: .3s;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session[data-index="1"] .JourneyScene-module__xYXvMa__node {
  transition-delay: .7s;
}

.JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session[data-index="2"] .JourneyScene-module__xYXvMa__node {
  transition-delay: 1.1s;
}

.JourneyScene-module__xYXvMa__sessionBody {
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.JourneyScene-module__xYXvMa__sessionHead {
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 22px;
  display: flex;
}

.JourneyScene-module__xYXvMa__device {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__identity {
  color: var(--um-ink-3);
  white-space: nowrap;
  flex: none;
  font-size: 12px;
  transition: color .35s;
}

.JourneyScene-module__xYXvMa__isResolving .JourneyScene-module__xYXvMa__identityResolves {
  color: var(--um-primary-600);
}

.JourneyScene-module__xYXvMa__session[data-index="1"] .JourneyScene-module__xYXvMa__identity, .JourneyScene-module__xYXvMa__session[data-index="1"] .JourneyScene-module__xYXvMa__identity .JourneyScene-module__xYXvMa__swapFrom, .JourneyScene-module__xYXvMa__session[data-index="1"] .JourneyScene-module__xYXvMa__identity .JourneyScene-module__xYXvMa__swapTo {
  transition-delay: 80ms;
}

.JourneyScene-module__xYXvMa__when {
  color: var(--um-ink-3);
  white-space: nowrap;
  flex: none;
  margin-left: auto;
  font-size: 12px;
}

.JourneyScene-module__xYXvMa__steps {
  align-items: center;
  gap: 6px;
  min-width: 0;
  height: 18px;
  font-size: 12px;
  display: flex;
}

.JourneyScene-module__xYXvMa__channel {
  color: var(--um-ink);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 6px;
  transition: color .35s;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__channelMark {
  color: var(--um-ink-3);
  flex: none;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__step {
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__sep {
  color: var(--um-ink-3);
  flex: none;
}

.JourneyScene-module__xYXvMa__page {
  min-width: 0;
  color: var(--um-ink-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__pinned {
  color: var(--um-ink);
  white-space: nowrap;
}

.JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__firstTouch, .JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__firstTouch .JourneyScene-module__xYXvMa__stepSource {
  color: var(--um-primary-600);
  transition-delay: .45s;
}

.JourneyScene-module__xYXvMa__revenue {
  opacity: 0;
  margin-top: 6px;
  translate: 0 6px;
}

.JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__revenue {
  opacity: 1;
  transition: opacity .35s ease .2s, translate .45s var(--um-ease) .2s;
  translate: 0;
}

.JourneyScene-module__xYXvMa__revenueNode {
  background: var(--um-grad);
  color: #fff;
  border: 0;
}

.JourneyScene-module__xYXvMa__revenueTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__revenueTitle strong {
  font-weight: 600;
}

.JourneyScene-module__xYXvMa__via {
  color: var(--um-ink-3);
  flex: none;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  display: inline-flex;
}

.JourneyScene-module__xYXvMa__credit {
  height: 18px;
  color: var(--um-ink-3);
  white-space: nowrap;
  align-items: center;
  font-size: 12px;
  display: flex;
  overflow: hidden;
}

.JourneyScene-module__xYXvMa__creditChannel {
  color: var(--um-primary-600);
  align-items: center;
  gap: 5px;
  margin: 0 4px;
  font-weight: 500;
  display: inline-flex;
}

@container scene (width <= 520px) {
  .JourneyScene-module__xYXvMa__stats {
    grid-template-columns: .95fr 1.1fr .95fr;
    gap: 12px;
  }

  .JourneyScene-module__xYXvMa__statValue {
    font-size: 12.5px;
  }

  .JourneyScene-module__xYXvMa__statViews, .JourneyScene-module__xYXvMa__company, .JourneyScene-module__xYXvMa__revenue .JourneyScene-module__xYXvMa__when, .JourneyScene-module__xYXvMa__stepSource, .JourneyScene-module__xYXvMa__stat .JourneyScene-module__xYXvMa__source, .JourneyScene-module__xYXvMa__panelTitle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .JourneyScene-module__xYXvMa__swapFrom, .JourneyScene-module__xYXvMa__swapTo, .JourneyScene-module__xYXvMa__resolution, .JourneyScene-module__xYXvMa__resolutionIcon, .JourneyScene-module__xYXvMa__isResolved .JourneyScene-module__xYXvMa__link, .JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__link, .JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__railA, .JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__railB, .JourneyScene-module__xYXvMa__session:before, .JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session, .JourneyScene-module__xYXvMa__isMerged .JourneyScene-module__xYXvMa__session .JourneyScene-module__xYXvMa__node, .JourneyScene-module__xYXvMa__statFocus, .JourneyScene-module__xYXvMa__identity, .JourneyScene-module__xYXvMa__channel, .JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__firstTouch, .JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__firstTouch .JourneyScene-module__xYXvMa__stepSource, .JourneyScene-module__xYXvMa__isConverted .JourneyScene-module__xYXvMa__revenue {
    transition: none;
  }
}

/* [project]/apps/website/components/ProductScenes/MavenAiScene/MavenAiScene.module.css [app-client] (css) */
.MavenAiScene-module__rdRN3q__body {
  grid-template-rows: auto minmax(0, 1fr);
  height: 460px;
  display: grid;
}

.MavenAiScene-module__rdRN3q__nav {
  border-bottom: 1px solid var(--um-line);
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 0 12px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__tab {
  height: 28px;
  color: var(--um-ink-2);
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-size: 12.5px;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__tab svg {
  color: var(--um-ink-3);
}

.MavenAiScene-module__rdRN3q__tabActive {
  background: var(--um-accent);
  color: var(--um-primary-600);
  font-weight: 500;
}

.MavenAiScene-module__rdRN3q__tabActive svg {
  color: var(--um-primary);
}

.MavenAiScene-module__rdRN3q__newChat {
  border: 1px solid var(--um-line-strong);
  height: 28px;
  color: var(--um-ink);
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__stage {
  position: relative;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__splash, .MavenAiScene-module__rdRN3q__chat {
  transition: opacity .4s ease, translate .45s var(--um-ease);
  position: absolute;
  inset: 0;
}

.MavenAiScene-module__rdRN3q__splash {
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 0;
  display: flex;
}

.MavenAiScene-module__rdRN3q__inChat .MavenAiScene-module__rdRN3q__splash {
  opacity: 0;
  translate: 0 -6px;
}

.MavenAiScene-module__rdRN3q__mark {
  background: var(--um-grad);
  color: #fff;
  border-radius: 10px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
  box-shadow: 0 8px 18px -10px #7d47ebb3;
}

.MavenAiScene-module__rdRN3q__greeting {
  color: var(--um-ink);
  letter-spacing: -.015em;
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.MavenAiScene-module__rdRN3q__subtitle {
  color: var(--um-ink-3);
  text-align: center;
  margin: 3px 0 0;
  font-size: 12.5px;
}

.MavenAiScene-module__rdRN3q__composer {
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 0 5px 0 12px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__splashComposer {
  max-width: 440px;
  margin-top: 18px;
}

.MavenAiScene-module__rdRN3q__placeholder {
  min-width: 0;
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 12.5px;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__send {
  width: 28px;
  height: 28px;
  color: var(--um-ink-3);
  border-radius: 6px;
  flex: none;
  place-items: center;
  display: grid;
}

.MavenAiScene-module__rdRN3q__suggestHead {
  width: 100%;
  max-width: 440px;
  color: var(--um-ink-3);
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 4px;
  font-size: 11.5px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__refresh {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__suggestions {
  width: 100%;
  max-width: 440px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.MavenAiScene-module__rdRN3q__suggestion {
  border-radius: 6px;
  align-items: flex-start;
  gap: 10px;
  margin: 0 -8px;
  padding: 9px 8px;
  transition: background-color .3s;
  display: flex;
}

.MavenAiScene-module__rdRN3q__suggestion + .MavenAiScene-module__rdRN3q__suggestion {
  box-shadow: inset 0 1px 0 var(--um-line);
}

.MavenAiScene-module__rdRN3q__suggestionPicked, .MavenAiScene-module__rdRN3q__suggestionPicked + .MavenAiScene-module__rdRN3q__suggestion {
  box-shadow: none;
}

.MavenAiScene-module__rdRN3q__suggestionPicked {
  background: var(--um-accent);
}

.MavenAiScene-module__rdRN3q__topicDot {
  background: var(--topic);
  opacity: .75;
  border-radius: 999px;
  flex: none;
  width: 6px;
  height: 6px;
  margin: 6px 0 0 2px;
}

.MavenAiScene-module__rdRN3q__suggestText {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.MavenAiScene-module__rdRN3q__question {
  color: var(--um-ink);
  font-size: 12.5px;
  line-height: 1.4;
}

.MavenAiScene-module__rdRN3q__suggestMeta {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__suggestArrow {
  color: var(--um-ink-3);
  flex: none;
  margin-top: 2px;
}

.MavenAiScene-module__rdRN3q__chat {
  opacity: 0;
  flex-direction: column;
  display: flex;
}

.MavenAiScene-module__rdRN3q__inChat .MavenAiScene-module__rdRN3q__chat {
  opacity: 1;
}

.MavenAiScene-module__rdRN3q__thread {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  min-height: 0;
  padding: 14px 20px 0;
  display: flex;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__userMessage {
  background: var(--um-accent);
  max-width: 82%;
  color: var(--um-ink);
  opacity: 0;
  transition: opacity .35s ease, translate .45s var(--um-ease);
  border-radius: 10px;
  align-self: flex-end;
  padding: 7px 12px;
  font-size: 12.5px;
  translate: 0 6px;
}

.MavenAiScene-module__rdRN3q__inChat .MavenAiScene-module__rdRN3q__userMessage {
  opacity: 1;
  transition-delay: .15s;
  translate: 0;
}

.MavenAiScene-module__rdRN3q__reply {
  opacity: 0;
  transition: opacity .35s ease, translate .45s var(--um-ease);
  gap: 10px;
  display: flex;
  translate: 0 6px;
}

.MavenAiScene-module__rdRN3q__replyShown {
  opacity: 1;
  translate: 0;
}

.MavenAiScene-module__rdRN3q__avatar {
  background: var(--um-grad);
  color: #fff;
  border-radius: 6px;
  flex: none;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 0;
  display: grid;
}

.MavenAiScene-module__rdRN3q__replyBody {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.MavenAiScene-module__rdRN3q__status {
  display: grid;
}

.MavenAiScene-module__rdRN3q__statusLine {
  min-width: 0;
  height: 22px;
  color: var(--um-ink-2);
  white-space: nowrap;
  grid-area: 1 / 1;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  transition: opacity .3s;
  display: flex;
}

.MavenAiScene-module__rdRN3q__statusLine svg {
  color: var(--um-ink-3);
  flex: none;
}

.MavenAiScene-module__rdRN3q__statusLine .MavenAiScene-module__rdRN3q__doneIcon, .MavenAiScene-module__rdRN3q__doneIcon {
  color: var(--um-up);
}

.MavenAiScene-module__rdRN3q__off {
  opacity: 0;
}

.MavenAiScene-module__rdRN3q__sources {
  border-left: 1px solid var(--um-line-strong);
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  margin-left: 6px;
  padding-left: 10px;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__steps {
  transition: grid-template-rows .4s var(--um-ease);
  grid-template-rows: 0fr;
  display: grid;
}

.MavenAiScene-module__rdRN3q__stepsOpen {
  grid-template-rows: 1fr;
}

.MavenAiScene-module__rdRN3q__stepsInner {
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__stepsOpen .MavenAiScene-module__rdRN3q__stepsInner {
  padding: 6px 0 2px;
}

.MavenAiScene-module__rdRN3q__step {
  color: var(--um-ink-2);
  opacity: 0;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: opacity .3s;
  display: flex;
}

.MavenAiScene-module__rdRN3q__stepMark {
  width: 13px;
  height: 13px;
  color: var(--um-n-bar);
  place-items: center;
  transition: color .25s;
  display: grid;
}

.MavenAiScene-module__rdRN3q__stepsOpen .MavenAiScene-module__rdRN3q__step {
  opacity: 1;
  transition-delay: calc(var(--i) * .55s);
}

.MavenAiScene-module__rdRN3q__stepsOpen .MavenAiScene-module__rdRN3q__stepMark {
  color: var(--um-up);
  transition-delay: calc(.45s + var(--i) * .55s);
}

.MavenAiScene-module__rdRN3q__answer {
  color: var(--um-ink);
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.MavenAiScene-module__rdRN3q__answer strong {
  font-weight: 600;
}

.MavenAiScene-module__rdRN3q__answer > span {
  opacity: 0;
}

.MavenAiScene-module__rdRN3q__answerShown > span {
  opacity: 1;
  transition: opacity .3s ease calc(var(--i) * 40ms);
}

.MavenAiScene-module__rdRN3q__chart {
  opacity: 0;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
  transition: opacity .35s;
  display: flex;
}

.MavenAiScene-module__rdRN3q__chartShown {
  opacity: 1;
}

.MavenAiScene-module__rdRN3q__chartHead {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__chartTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__chartPeriod {
  color: var(--um-ink-3);
  font-weight: 400;
}

.MavenAiScene-module__rdRN3q__chartTypes {
  color: var(--um-ink-3);
  flex: none;
  align-items: center;
  gap: 2px;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__chartTypes > svg, .MavenAiScene-module__rdRN3q__chartTypeActive {
  box-sizing: content-box;
  padding: 3px 5px;
}

.MavenAiScene-module__rdRN3q__chartTypeActive {
  background: var(--um-accent);
  color: var(--um-primary-600);
  border-radius: 5px;
  place-items: center;
  display: grid;
}

.MavenAiScene-module__rdRN3q__barRow {
  grid-template-columns: 116px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 12px;
  height: 15px;
  font-size: 12px;
  display: grid;
}

.MavenAiScene-module__rdRN3q__barLabel {
  color: var(--um-ink-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__barMark {
  color: var(--um-ink-3);
  vertical-align: -2px;
  margin-right: 6px;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__barTrack {
  height: 6px;
}

.MavenAiScene-module__rdRN3q__barTrack i {
  background: var(--um-n-bar);
  transform-origin: 0;
  border-radius: 3px;
  height: 100%;
  display: block;
  transform: scaleX(0);
}

.MavenAiScene-module__rdRN3q__barRow:nth-child(2) .MavenAiScene-module__rdRN3q__barTrack i {
  background: var(--um-grad);
}

.MavenAiScene-module__rdRN3q__chartShown .MavenAiScene-module__rdRN3q__barTrack i {
  transform: scaleX(var(--share));
  transition: transform .6s var(--um-ease) calc(.15s + var(--i) * 60ms);
}

.MavenAiScene-module__rdRN3q__barValue {
  color: var(--um-ink);
  text-align: right;
  white-space: nowrap;
}

.MavenAiScene-module__rdRN3q__barCount {
  min-width: 38px;
  color: var(--um-ink-3);
  margin-left: 6px;
  display: inline-block;
}

.MavenAiScene-module__rdRN3q__barRow:nth-child(2) .MavenAiScene-module__rdRN3q__barLabel, .MavenAiScene-module__rdRN3q__barRow:nth-child(2) .MavenAiScene-module__rdRN3q__barValue {
  color: var(--um-ink);
  font-weight: 500;
}

.MavenAiScene-module__rdRN3q__actions {
  opacity: 0;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  transition: opacity .35s;
  display: flex;
}

.MavenAiScene-module__rdRN3q__actionsShown {
  opacity: 1;
}

.MavenAiScene-module__rdRN3q__button {
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  height: 26px;
  color: var(--um-ink);
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color .25s;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__button svg {
  color: var(--um-ink-3);
}

.MavenAiScene-module__rdRN3q__buttonPressed {
  border-color: var(--um-primary-300);
  background: var(--um-accent);
  color: var(--um-primary-600);
}

.MavenAiScene-module__rdRN3q__saveWrap {
  display: inline-flex;
  position: relative;
}

.MavenAiScene-module__rdRN3q__menu {
  z-index: 2;
  border: 1px solid var(--um-line-strong);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  opacity: 0;
  min-width: 176px;
  transition: opacity .2s ease, translate .3s var(--um-ease);
  pointer-events: none;
  flex-direction: column;
  padding: 4px;
  display: flex;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  translate: 0 4px;
  box-shadow: 0 12px 28px -12px #16151d38;
}

.MavenAiScene-module__rdRN3q__menuOpen {
  opacity: 1;
  transition-delay: .3s;
  translate: 0;
}

.MavenAiScene-module__rdRN3q__menuItem {
  height: 28px;
  color: var(--um-ink);
  white-space: nowrap;
  border-radius: 5px;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  font-size: 12px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__menuItem svg {
  color: var(--um-ink-3);
}

.MavenAiScene-module__rdRN3q__menuItemActive {
  background: var(--um-accent);
  color: var(--um-primary-600);
}

.MavenAiScene-module__rdRN3q__menuItemActive svg {
  color: var(--um-primary);
}

.MavenAiScene-module__rdRN3q__added {
  color: var(--um-ink-2);
  white-space: nowrap;
  opacity: 0;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  font-size: 12px;
  transition: opacity .35s;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__addedShown {
  opacity: 1;
}

.MavenAiScene-module__rdRN3q__followUps {
  gap: 8px;
  display: flex;
  overflow: hidden;
}

.MavenAiScene-module__rdRN3q__followUp {
  border: 1px solid var(--um-line);
  height: 26px;
  color: var(--um-ink-2);
  white-space: nowrap;
  opacity: 0;
  border-radius: 999px;
  flex: none;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 8px;
  font-size: 12px;
  transition: opacity .35s;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__followUpsShown .MavenAiScene-module__rdRN3q__followUp {
  opacity: 1;
  transition-delay: calc(.2s + var(--i) * 80ms);
}

.MavenAiScene-module__rdRN3q__followIcon {
  color: var(--um-ink-3);
}

.MavenAiScene-module__rdRN3q__dock {
  flex: none;
  padding: 6px 20px 8px;
}

.MavenAiScene-module__rdRN3q__mcp {
  color: var(--um-ink-3);
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 6px 0 0;
  font-size: 11.5px;
  display: flex;
}

.MavenAiScene-module__rdRN3q__mcpMarks {
  align-items: center;
  gap: 4px;
  margin-right: 2px;
  display: inline-flex;
}

.MavenAiScene-module__rdRN3q__spin {
  animation: .9s linear infinite MavenAiScene-module__rdRN3q__spin;
}

@keyframes MavenAiScene-module__rdRN3q__spin {
  to {
    rotate: 360deg;
  }
}

@container scene (width <= 520px) {
  .MavenAiScene-module__rdRN3q__body {
    height: 512px;
  }

  .MavenAiScene-module__rdRN3q__newChat, .MavenAiScene-module__rdRN3q__sources, .MavenAiScene-module__rdRN3q__buttonText, .MavenAiScene-module__rdRN3q__chartPeriod, .MavenAiScene-module__rdRN3q__followUp:nth-child(2) {
    display: none;
  }

  .MavenAiScene-module__rdRN3q__splash {
    padding: 24px 16px 0;
  }

  .MavenAiScene-module__rdRN3q__thread {
    padding: 14px 16px 0;
  }

  .MavenAiScene-module__rdRN3q__dock {
    padding: 6px 16px 8px;
  }

  .MavenAiScene-module__rdRN3q__barRow {
    grid-template-columns: 106px minmax(0, 1fr) 70px;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .MavenAiScene-module__rdRN3q__splash, .MavenAiScene-module__rdRN3q__chat, .MavenAiScene-module__rdRN3q__suggestion, .MavenAiScene-module__rdRN3q__userMessage, .MavenAiScene-module__rdRN3q__reply, .MavenAiScene-module__rdRN3q__statusLine, .MavenAiScene-module__rdRN3q__steps, .MavenAiScene-module__rdRN3q__step, .MavenAiScene-module__rdRN3q__stepMark, .MavenAiScene-module__rdRN3q__answerShown > span, .MavenAiScene-module__rdRN3q__chart, .MavenAiScene-module__rdRN3q__chartShown .MavenAiScene-module__rdRN3q__barTrack i, .MavenAiScene-module__rdRN3q__actions, .MavenAiScene-module__rdRN3q__button, .MavenAiScene-module__rdRN3q__menu, .MavenAiScene-module__rdRN3q__added, .MavenAiScene-module__rdRN3q__followUp {
    transition: none;
  }

  .MavenAiScene-module__rdRN3q__spin {
    animation: none;
  }
}

/* [project]/apps/website/components/ProductScenes/RetentionScene/RetentionScene.module.css [app-client] (css) */
.RetentionScene-module__yGkH-G__body {
  --rs-row: 38px;
  flex-direction: column;
  gap: 14px;
  min-height: 440px;
  padding: 16px;
  display: flex;
}

.RetentionScene-module__yGkH-G__fieldIcon {
  color: var(--um-ink-3);
}

.RetentionScene-module__yGkH-G__controls {
  z-index: 3;
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}

.RetentionScene-module__yGkH-G__eventArrow {
  color: var(--um-ink-3);
  flex: none;
}

.RetentionScene-module__yGkH-G__segmentWrap {
  margin-left: auto;
  position: relative;
}

.RetentionScene-module__yGkH-G__segmentField {
  transition: border-color .3s, background-color .3s, color .3s;
}

.RetentionScene-module__yGkH-G__segmentIcon {
  color: var(--um-ink-3);
  transition: color .3s;
}

.RetentionScene-module__yGkH-G__segmentOpen {
  border-color: var(--um-ink-3);
}

.RetentionScene-module__yGkH-G__segmentActive {
  border-color: var(--um-primary-300);
  background: var(--um-accent);
  color: var(--um-primary-600);
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__segmentActive .RetentionScene-module__yGkH-G__segmentIcon {
  color: var(--um-primary);
}

.RetentionScene-module__yGkH-G__segmentLabel {
  white-space: nowrap;
}

.RetentionScene-module__yGkH-G__picker {
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  opacity: 0;
  width: 200px;
  transition: opacity .25s ease, translate .35s var(--um-ease);
  pointer-events: none;
  border-radius: 10px;
  flex-direction: column;
  padding: 4px;
  display: flex;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  translate: 0 -4px;
  box-shadow: 0 1px 2px #16151d0a, 0 16px 32px -16px #16151d38;
}

.RetentionScene-module__yGkH-G__pickerOpen {
  opacity: 1;
  translate: 0;
}

.RetentionScene-module__yGkH-G__pickerSearch {
  border-bottom: 1px solid var(--um-line);
  height: 30px;
  color: var(--um-ink-3);
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  padding: 0 8px;
  font-size: 12px;
  display: flex;
}

.RetentionScene-module__yGkH-G__option {
  height: 28px;
  color: var(--um-ink-2);
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 12.5px;
  transition: background-color .2s, color .2s;
  display: flex;
  position: relative;
}

.RetentionScene-module__yGkH-G__optionLabel {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.RetentionScene-module__yGkH-G__pickerOpen .RetentionScene-module__yGkH-G__optionHover {
  background: var(--um-accent);
  color: var(--um-primary-600);
  transition-delay: .45s;
}

.RetentionScene-module__yGkH-G__optionCheck {
  color: var(--um-ink-3);
  margin-left: auto;
}

.RetentionScene-module__yGkH-G__cursor {
  color: var(--um-ink);
  filter: drop-shadow(0 1px 1px #ffffffe6);
  opacity: 0;
  transition: opacity .3s ease, translate .45s var(--um-ease);
  pointer-events: none;
  position: absolute;
  top: 12px;
  right: 22px;
  translate: 6px 6px;
}

.RetentionScene-module__yGkH-G__cursorIn {
  opacity: 1;
  transition-delay: .1s;
  translate: 0;
}

.RetentionScene-module__yGkH-G__summary {
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  display: flex;
}

.RetentionScene-module__yGkH-G__summaryText {
  min-width: 0;
}

.RetentionScene-module__yGkH-G__eyebrow {
  color: var(--um-ink);
  font-size: 13px;
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__caption {
  color: var(--um-ink-3);
  margin-top: 2px;
  font-size: 11.5px;
}

.RetentionScene-module__yGkH-G__delta {
  opacity: 0;
  transition: opacity .35s ease, translate .45s var(--um-ease);
  flex-direction: column;
  flex: none;
  align-items: flex-end;
  gap: 1px;
  display: flex;
  translate: 0 4px;
}

.RetentionScene-module__yGkH-G__deltaShown {
  opacity: 1;
  translate: 0;
}

.RetentionScene-module__yGkH-G__deltaValue {
  color: var(--um-up-ink);
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__deltaNote {
  color: var(--um-ink-3);
  white-space: nowrap;
  font-size: 11.5px;
}

.RetentionScene-module__yGkH-G__table {
  flex-direction: column;
  gap: 1px;
  display: flex;
  position: relative;
}

.RetentionScene-module__yGkH-G__row {
  height: var(--rs-row);
  grid-template-columns: 116px 50px repeat(6, minmax(0, 1fr));
  column-gap: 1px;
  display: grid;
}

.RetentionScene-module__yGkH-G__head {
  border-bottom: 1px solid var(--um-line);
  height: 30px;
  color: var(--um-ink-3);
  margin-bottom: 4px;
  font-size: 11.5px;
}

.RetentionScene-module__yGkH-G__summaryRow {
  margin-bottom: 4px;
}

.RetentionScene-module__yGkH-G__cohortCol, .RetentionScene-module__yGkH-G__usersCol {
  white-space: nowrap;
  align-items: center;
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.RetentionScene-module__yGkH-G__cohortCol {
  color: var(--um-ink-2);
  font-size: 12.5px;
}

.RetentionScene-module__yGkH-G__head .RetentionScene-module__yGkH-G__cohortCol, .RetentionScene-module__yGkH-G__head .RetentionScene-module__yGkH-G__usersCol {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.RetentionScene-module__yGkH-G__summaryRow .RetentionScene-module__yGkH-G__cohortCol {
  color: var(--um-ink);
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__usersCol {
  color: var(--um-ink-3);
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 12px;
}

.RetentionScene-module__yGkH-G__periodHead {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  transition: color .35s;
  display: flex;
}

.RetentionScene-module__yGkH-G__periodFocus {
  color: var(--um-ink);
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__cellWrap {
  min-width: 0;
  display: grid;
  position: relative;
}

.RetentionScene-module__yGkH-G__cell {
  background: var(--um-n-track);
  min-width: 0;
  color: var(--um-ink);
  transition: background-color .5s var(--um-ease) calc(var(--d) * 60ms), box-shadow .25s ease, color .3s ease;
  place-items: center;
  font-size: 12px;
  display: grid;
}

.RetentionScene-module__yGkH-G__cellFilled {
  background: color-mix(in srgb, var(--um-primary) calc(var(--heat-i) * 1%), var(--um-n-track));
}

.RetentionScene-module__yGkH-G__summaryRow .RetentionScene-module__yGkH-G__cell {
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__cellValue {
  opacity: 0;
}

.RetentionScene-module__yGkH-G__cellFilled .RetentionScene-module__yGkH-G__cellValue {
  opacity: 1;
  animation: RetentionScene-module__yGkH-G__value-in .35s ease calc(var(--d) * 60ms) both;
}

@keyframes RetentionScene-module__yGkH-G__value-in {
  from {
    opacity: 0;
    translate: 0 3px;
  }

  to {
    opacity: 1;
    translate: 0;
  }
}

.RetentionScene-module__yGkH-G__cellHover {
  box-shadow: inset 0 0 0 1px var(--um-ink-2);
}

.RetentionScene-module__yGkH-G__cellFocus {
  box-shadow: inset 0 0 0 1.5px var(--um-primary);
  color: var(--um-primary-600);
}

.RetentionScene-module__yGkH-G__summaryRow .RetentionScene-module__yGkH-G__cellFocus {
  font-weight: 600;
}

.RetentionScene-module__yGkH-G__na {
  display: block;
}

.RetentionScene-module__yGkH-G__weekOf {
  white-space: pre;
}

.RetentionScene-module__yGkH-G__tooltip {
  z-index: 4;
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  opacity: 0;
  width: 184px;
  transition: opacity .25s ease, translate .35s var(--um-ease);
  pointer-events: none;
  border-radius: 10px;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px 10px;
  display: flex;
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  translate: -50% 4px;
  box-shadow: 0 1px 2px #16151d0a, 0 16px 32px -16px #16151d38;
}

.RetentionScene-module__yGkH-G__tooltipShown {
  opacity: 1;
  translate: -50%;
}

.RetentionScene-module__yGkH-G__tooltipTitle {
  color: var(--um-ink);
  white-space: nowrap;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 500;
}

.RetentionScene-module__yGkH-G__tooltipRow {
  color: var(--um-ink-3);
  justify-content: space-between;
  gap: 12px;
  font-size: 11.5px;
  display: flex;
}

.RetentionScene-module__yGkH-G__tooltipValue {
  color: var(--um-ink);
}

@container scene (width <= 520px) {
  .RetentionScene-module__yGkH-G__body {
    padding: 12px;
  }

  .RetentionScene-module__yGkH-G__eventField, .RetentionScene-module__yGkH-G__eventArrow, .RetentionScene-module__yGkH-G__caption, .RetentionScene-module__yGkH-G__usersCol, .RetentionScene-module__yGkH-G__weekOf, .RetentionScene-module__yGkH-G__row > :last-child {
    display: none;
  }

  .RetentionScene-module__yGkH-G__row {
    grid-template-columns: 58px repeat(5, minmax(0, 1fr));
  }

  .RetentionScene-module__yGkH-G__summary {
    align-items: flex-start;
  }

  .RetentionScene-module__yGkH-G__cohortCol {
    font-size: 12px;
  }

  .RetentionScene-module__yGkH-G__cell {
    font-size: 11.5px;
  }

  .RetentionScene-module__yGkH-G__tooltip {
    left: auto;
    right: -2px;
    translate: 0 4px;
  }

  .RetentionScene-module__yGkH-G__tooltipShown {
    translate: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .RetentionScene-module__yGkH-G__segmentField, .RetentionScene-module__yGkH-G__segmentIcon, .RetentionScene-module__yGkH-G__picker, .RetentionScene-module__yGkH-G__option, .RetentionScene-module__yGkH-G__cursor, .RetentionScene-module__yGkH-G__delta, .RetentionScene-module__yGkH-G__periodHead, .RetentionScene-module__yGkH-G__cell, .RetentionScene-module__yGkH-G__tooltip {
    transition: none;
  }

  .RetentionScene-module__yGkH-G__cellFilled .RetentionScene-module__yGkH-G__cellValue {
    animation: none;
  }
}

/* [project]/apps/website/components/ProductScenes/SegmentsScene/SegmentsScene.module.css [app-client] (css) */
.SegmentsScene-module__MWXoKq__body {
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 468px;
  display: grid;
}

.SegmentsScene-module__MWXoKq__sidebar {
  border-right: 1px solid var(--um-line);
  background: var(--um-surface);
  flex-direction: column;
  gap: 2px;
  padding: 12px 8px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__navItem {
  height: 28px;
  color: var(--um-ink-2);
  transition: background-color .4s var(--um-ease), color .4s var(--um-ease);
  border-radius: 7px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 12px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__navItem > span:first-child {
  flex: 1;
  min-width: 0;
}

.SegmentsScene-module__MWXoKq__navLabel {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__navActive {
  background: var(--um-n-track);
  color: var(--um-ink);
  font-weight: 500;
}

.SegmentsScene-module__MWXoKq__navCreated {
  background: var(--um-accent);
  color: var(--um-primary-600);
}

.SegmentsScene-module__MWXoKq__navCount {
  color: var(--um-ink-3);
  font-size: 11px;
}

.SegmentsScene-module__MWXoKq__navCreated .SegmentsScene-module__MWXoKq__navCount {
  color: var(--um-primary-600);
}

.SegmentsScene-module__MWXoKq__segmentsHeading {
  color: var(--um-ink-3);
  justify-content: space-between;
  align-items: center;
  margin: 16px 8px 4px;
  font-size: 11.5px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__newSegment {
  opacity: 0;
  transition: grid-template-rows .5s var(--um-ease), opacity .35s ease;
  grid-template-rows: 0fr;
  display: grid;
}

.SegmentsScene-module__MWXoKq__newSegment > * {
  min-height: 0;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__newSegmentShown {
  opacity: 1;
  grid-template-rows: 1fr;
}

.SegmentsScene-module__MWXoKq__main {
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 12px 12px 0;
  display: flex;
}

.SegmentsScene-module__MWXoKq__prompt {
  border: 1px solid var(--um-primary-300);
  border-radius: var(--um-radius);
  background: var(--um-surface);
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 6px 6px 10px;
  transition: border-color .4s, background-color .4s;
  display: flex;
}

.SegmentsScene-module__MWXoKq__promptSent {
  border-color: var(--um-line-strong);
}

.SegmentsScene-module__MWXoKq__promptIcon {
  color: var(--um-primary);
  flex: none;
}

.SegmentsScene-module__MWXoKq__promptText {
  min-width: 0;
  color: var(--um-ink);
  text-wrap: balance;
  flex: 1;
  font-size: 12.5px;
  line-height: 1.35;
}

.SegmentsScene-module__MWXoKq__promptSent .SegmentsScene-module__MWXoKq__promptText {
  color: var(--um-ink-2);
}

.SegmentsScene-module__MWXoKq__placeholder {
  color: var(--um-ink-3);
}

.SegmentsScene-module__MWXoKq__caret {
  background: var(--um-primary);
  vertical-align: -2px;
  width: 1.5px;
  height: 14px;
  margin-left: 1px;
  animation: .9s step-end infinite SegmentsScene-module__MWXoKq__caret-blink;
  display: inline-block;
}

@keyframes SegmentsScene-module__MWXoKq__caret-blink {
  50% {
    opacity: 0;
  }
}

.SegmentsScene-module__MWXoKq__send {
  background: var(--um-primary);
  color: #fff;
  border-radius: 7px;
  flex: none;
  place-items: center;
  width: 26px;
  height: 26px;
  transition: background-color .3s, color .3s;
  display: grid;
}

.SegmentsScene-module__MWXoKq__promptSent .SegmentsScene-module__MWXoKq__send {
  background: var(--um-n-track);
  color: var(--um-ink-3);
}

.SegmentsScene-module__MWXoKq__builder {
  border-radius: var(--um-radius);
  background: var(--um-subtle);
  flex-direction: column;
  padding: 12px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__builderHead {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__matchLine {
  min-width: 0;
  color: var(--um-ink-2);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__status {
  color: var(--um-primary-600);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.SegmentsScene-module__MWXoKq__statusWorking {
  animation: 1.2s ease-in-out infinite SegmentsScene-module__MWXoKq__status-pulse;
}

@keyframes SegmentsScene-module__MWXoKq__status-pulse {
  50% {
    opacity: .45;
  }
}

.SegmentsScene-module__MWXoKq__condition {
  transition: grid-template-rows .45s var(--um-ease);
  grid-template-rows: 0fr;
  display: grid;
}

.SegmentsScene-module__MWXoKq__conditionInner {
  align-items: center;
  gap: 6px;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__conditionShown {
  grid-template-rows: 1fr;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__conditionInner {
  padding-top: 8px;
}

.SegmentsScene-module__MWXoKq__conditionInner > * {
  opacity: 0;
  transition: opacity .3s ease, translate .4s var(--um-ease);
  translate: -8px;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__conditionInner > * {
  opacity: 1;
  translate: 0;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__conditionInner > :nth-child(2) {
  transition-delay: 60ms;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__conditionInner > :nth-child(3) {
  transition-delay: .12s;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__conditionInner > :nth-child(4) {
  transition-delay: .18s;
}

.SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__value {
  animation: SegmentsScene-module__MWXoKq__ai-fill 1.2s var(--um-ease) .2s both;
}

@keyframes SegmentsScene-module__MWXoKq__ai-fill {
  0%, 30% {
    background: var(--um-accent);
    border-color: var(--um-primary-300);
  }

  100% {
    background: var(--um-surface);
    border-color: var(--um-line-strong);
  }
}

.SegmentsScene-module__MWXoKq__joiner {
  width: 38px;
  color: var(--um-ink-3);
  text-align: right;
  flex: none;
  font-size: 12px;
}

.SegmentsScene-module__MWXoKq__fieldIcon {
  color: var(--um-primary-400);
}

.SegmentsScene-module__MWXoKq__value {
  font-weight: 500;
}

.SegmentsScene-module__MWXoKq__builderFooter {
  border-top: 1px solid var(--um-line-strong);
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__nameField {
  flex: 1;
  min-width: 0;
  height: 28px;
}

.SegmentsScene-module__MWXoKq__nameLabel {
  color: var(--um-ink-3);
  flex: none;
  font-size: 11px;
}

.SegmentsScene-module__MWXoKq__nameValue {
  color: var(--um-ink);
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .3s ease, translate .4s var(--um-ease);
  font-weight: 500;
  overflow: hidden;
  translate: 4px;
}

.SegmentsScene-module__MWXoKq__nameValueShown {
  opacity: 1;
  translate: 0;
}

.SegmentsScene-module__MWXoKq__saveWrap {
  flex: none;
  position: relative;
}

.SegmentsScene-module__MWXoKq__save {
  transition: transform .18s var(--um-ease-snap), box-shadow .25s ease, background-color .25s ease, opacity .3s ease;
}

.SegmentsScene-module__MWXoKq__saveIdle {
  opacity: .4;
}

.SegmentsScene-module__MWXoKq__saveDone {
  background: var(--um-n-track);
  color: var(--um-ink-2);
}

.SegmentsScene-module__MWXoKq__savePressed {
  background: var(--um-primary-600);
  transform: scale(.97);
}

.SegmentsScene-module__MWXoKq__cursor {
  color: var(--um-ink);
  filter: drop-shadow(0 1px 1px #ffffffe6);
  opacity: 0;
  transition: opacity .25s ease, translate .6s var(--um-ease);
  pointer-events: none;
  position: absolute;
  bottom: -10px;
  right: 22px;
  translate: 36px 28px;
}

.SegmentsScene-module__MWXoKq__cursorIn {
  opacity: 1;
  translate: 0;
}

.SegmentsScene-module__MWXoKq__result {
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  display: flex;
}

.SegmentsScene-module__MWXoKq__title {
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.SegmentsScene-module__MWXoKq__title strong {
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__stats {
  border-bottom: 1px solid var(--um-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2px 0 10px;
  display: grid;
}

.SegmentsScene-module__MWXoKq__stat {
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__stat:first-child {
  padding-left: 4px;
}

.SegmentsScene-module__MWXoKq__stat + .SegmentsScene-module__MWXoKq__stat {
  border-left: 1px solid var(--um-line);
}

.SegmentsScene-module__MWXoKq__statValue {
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 500;
  transition: color .4s;
}

.SegmentsScene-module__MWXoKq__statsCreated .SegmentsScene-module__MWXoKq__stat:first-child .SegmentsScene-module__MWXoKq__statValue {
  color: var(--um-primary);
  font-weight: 600;
}

.SegmentsScene-module__MWXoKq__statLabel {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.SegmentsScene-module__MWXoKq__rows {
  height: 111px;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__rowWrap {
  max-height: 37px;
  transition: max-height .5s var(--um-ease), opacity .3s ease;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__rowGone {
  opacity: 0;
  max-height: 0;
}

.SegmentsScene-module__MWXoKq__row {
  border-bottom: 1px solid var(--um-line);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 4px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__person {
  flex: 1;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.SegmentsScene-module__MWXoKq__touch {
  width: 112px;
  color: var(--um-ink-3);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__touchLabel {
  color: var(--um-ink-2);
}

.SegmentsScene-module__MWXoKq__avatar {
  background: var(--um-accent);
  width: 22px;
  height: 22px;
  color: var(--um-primary-600);
  border-radius: 999px;
  flex: none;
  place-items: center;
  font-size: 9.5px;
  font-weight: 500;
  display: grid;
}

.SegmentsScene-module__MWXoKq__name {
  white-space: nowrap;
  font-size: 12px;
}

.SegmentsScene-module__MWXoKq__company {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.SegmentsScene-module__MWXoKq__engagement {
  width: 132px;
  color: var(--um-ink-2);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  display: flex;
}

.SegmentsScene-module__MWXoKq__meter {
  gap: 2px;
  display: inline-flex;
}

.SegmentsScene-module__MWXoKq__meter i {
  background: var(--um-line-strong);
  border-radius: 2px;
  width: 9px;
  height: 5px;
  display: block;
}

.SegmentsScene-module__MWXoKq__engagement[data-level="high"] .SegmentsScene-module__MWXoKq__meter i, .SegmentsScene-module__MWXoKq__engagement[data-level="moderate"] .SegmentsScene-module__MWXoKq__meter i:nth-child(-n+2) {
  background: var(--um-up);
}

.SegmentsScene-module__MWXoKq__engagement[data-level="risk"] .SegmentsScene-module__MWXoKq__meter i:first-child {
  background: var(--um-c-orange);
}

.SegmentsScene-module__MWXoKq__toast {
  display: none;
}

@container scene (width <= 520px) {
  .SegmentsScene-module__MWXoKq__body {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .SegmentsScene-module__MWXoKq__sidebar, .SegmentsScene-module__MWXoKq__company, .SegmentsScene-module__MWXoKq__status, .SegmentsScene-module__MWXoKq__touch {
    display: none;
  }

  .SegmentsScene-module__MWXoKq__engagement {
    width: auto;
  }

  .SegmentsScene-module__MWXoKq__conditionInner {
    flex-wrap: wrap;
  }

  .SegmentsScene-module__MWXoKq__joiner {
    width: auto;
  }

  .SegmentsScene-module__MWXoKq__nameLabel {
    display: none;
  }

  .SegmentsScene-module__MWXoKq__toast {
    background: var(--um-ink);
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease, translate .45s var(--um-ease);
    border-radius: 999px;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    position: absolute;
    bottom: 12px;
    right: 12px;
    translate: 0 8px;
    box-shadow: 0 10px 24px -10px #17132b80;
  }

  .SegmentsScene-module__MWXoKq__toastShown {
    opacity: 1;
    translate: 0;
  }

  .SegmentsScene-module__MWXoKq__toastDot {
    background: var(--um-up);
    border-radius: 999px;
    width: 6px;
    height: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .SegmentsScene-module__MWXoKq__newSegment, .SegmentsScene-module__MWXoKq__navItem, .SegmentsScene-module__MWXoKq__statValue, .SegmentsScene-module__MWXoKq__prompt, .SegmentsScene-module__MWXoKq__condition, .SegmentsScene-module__MWXoKq__conditionInner > *, .SegmentsScene-module__MWXoKq__nameValue, .SegmentsScene-module__MWXoKq__stats, .SegmentsScene-module__MWXoKq__rowWrap, .SegmentsScene-module__MWXoKq__cursor, .SegmentsScene-module__MWXoKq__save, .SegmentsScene-module__MWXoKq__toast {
    transition: none;
  }

  .SegmentsScene-module__MWXoKq__conditionShown .SegmentsScene-module__MWXoKq__value, .SegmentsScene-module__MWXoKq__statusWorking, .SegmentsScene-module__MWXoKq__caret {
    animation: none;
  }
}

/* [project]/apps/website/components/ProductScenes/TrustScene/TrustScene.module.css [app-client] (css) */
.TrustScene-module__9hBFza__body {
  --warn: #f59e0b;
  --warn-ink: #a15c07;
  --info: #5c94f6;
  --high-ink: #b4430f;
  flex-direction: column;
  min-height: 440px;
  padding: 16px;
  display: flex;
}

.TrustScene-module__9hBFza__score {
  border-bottom: 1px solid var(--um-line);
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 20px;
  padding-bottom: 16px;
  display: grid;
}

.TrustScene-module__9hBFza__scoreMain {
  align-items: center;
  gap: 16px;
  min-width: 0;
  display: flex;
}

.TrustScene-module__9hBFza__ring {
  --ring: transparent;
  flex: none;
  width: 80px;
  height: 80px;
  position: relative;
}

.TrustScene-module__9hBFza__ring[data-band="warning"] {
  --ring: var(--warn);
}

.TrustScene-module__9hBFza__ring[data-band="healthy"] {
  --ring: var(--um-up);
}

.TrustScene-module__9hBFza__ring svg {
  width: 100%;
  height: 100%;
  display: block;
  rotate: -90deg;
}

.TrustScene-module__9hBFza__ringTrack, .TrustScene-module__9hBFza__ringValue {
  fill: none;
  stroke-width: 7px;
}

.TrustScene-module__9hBFza__ringTrack {
  stroke: var(--um-n-track);
}

.TrustScene-module__9hBFza__ringValue {
  stroke: var(--ring);
  stroke-linecap: round;
  transition: stroke-dashoffset .9s var(--um-ease), stroke .45s ease;
}

.TrustScene-module__9hBFza__ringLabel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.TrustScene-module__9hBFza__ringLabel strong {
  letter-spacing: -.02em;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.TrustScene-module__9hBFza__ringLabel small {
  color: var(--um-ink-3);
  margin-top: 3px;
  font-size: 11px;
}

.TrustScene-module__9hBFza__scoreText {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.TrustScene-module__9hBFza__scoreTitle {
  align-items: center;
  gap: 8px;
  height: 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.TrustScene-module__9hBFza__badge {
  border-radius: 999px;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  font-size: 11.5px;
  font-weight: 500;
  animation: .35s both TrustScene-module__9hBFza__fade-in;
  display: inline-flex;
}

.TrustScene-module__9hBFza__badge[data-state="limited"] {
  color: var(--warn-ink);
  background: #f59e0b1f;
}

.TrustScene-module__9hBFza__badge[data-state="ready"] {
  color: var(--um-up-ink);
  background: #1fb57a1f;
}

.TrustScene-module__9hBFza__swap {
  color: var(--um-ink-3);
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  display: grid;
}

.TrustScene-module__9hBFza__swap > span {
  opacity: 0;
  grid-area: 1 / 1;
  transition: opacity .35s;
}

.TrustScene-module__9hBFza__swap > .TrustScene-module__9hBFza__swapOn {
  opacity: 1;
}

.TrustScene-module__9hBFza__trend {
  color: var(--um-up-ink);
  opacity: 0;
  transition: opacity .3s ease, translate .4s var(--um-ease);
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  translate: 0 4px;
}

.TrustScene-module__9hBFza__trendShown {
  opacity: 1;
  transition-delay: .5s;
  translate: 0;
}

.TrustScene-module__9hBFza__scoreSide {
  border-left: 1px solid var(--um-line);
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-left: 20px;
  display: flex;
}

.TrustScene-module__9hBFza__coverageRow {
  color: var(--um-ink-3);
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.TrustScene-module__9hBFza__coverageValue {
  color: var(--um-ink);
  font-weight: 500;
}

.TrustScene-module__9hBFza__progress {
  background: var(--um-n-track);
  border-radius: 2px;
  height: 4px;
  display: block;
  overflow: hidden;
}

.TrustScene-module__9hBFza__progress i {
  background: var(--um-grad);
  transform-origin: 0;
  height: 100%;
  transition: transform .4s var(--um-ease);
  border-radius: 2px;
  display: block;
}

.TrustScene-module__9hBFza__sideFoot {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.TrustScene-module__9hBFza__lastChecked {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.TrustScene-module__9hBFza__buttonWrap {
  flex: none;
  display: inline-flex;
  position: relative;
}

.TrustScene-module__9hBFza__outlineButton {
  border: 1px solid var(--um-line-strong);
  background: var(--um-surface);
  height: 28px;
  color: var(--um-ink);
  white-space: nowrap;
  border-radius: 6px;
  flex: none;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .25s, background-color .25s;
  display: inline-flex;
}

.TrustScene-module__9hBFza__small {
  height: 24px;
  padding: 0 8px;
  font-size: 11.5px;
}

.TrustScene-module__9hBFza__pressed {
  border-color: var(--um-primary-300);
  background: var(--um-accent);
  color: var(--um-primary-600);
}

.TrustScene-module__9hBFza__refresh {
  color: var(--um-ink-3);
  flex: none;
}

.TrustScene-module__9hBFza__outlineButton[data-loading="true"] .TrustScene-module__9hBFza__refresh {
  color: var(--um-primary);
  animation: 1s linear infinite TrustScene-module__9hBFza__spin;
}

.TrustScene-module__9hBFza__cursor {
  color: var(--um-ink);
  filter: drop-shadow(0 1px 1px #ffffffe6);
  opacity: 0;
  transition: opacity .25s ease, translate .4s var(--um-ease);
  pointer-events: none;
  position: absolute;
  top: 12px;
  left: 11px;
  translate: 6px 6px;
}

.TrustScene-module__9hBFza__cursorIn {
  opacity: 1;
  translate: 0;
}

.TrustScene-module__9hBFza__pillars {
  border-bottom: 1px solid var(--um-line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 14px 0;
  display: grid;
}

.TrustScene-module__9hBFza__pillar {
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  display: flex;
}

.TrustScene-module__9hBFza__pillarLabel {
  min-height: 34px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.TrustScene-module__9hBFza__status {
  color: var(--um-ink-2);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  animation: .3s both TrustScene-module__9hBFza__fade-in;
  display: inline-flex;
}

.TrustScene-module__9hBFza__dot {
  background: var(--um-n-bar);
  border-radius: 999px;
  flex: none;
  width: 6px;
  height: 6px;
}

.TrustScene-module__9hBFza__pillar[data-state="pending"] .TrustScene-module__9hBFza__status {
  color: var(--um-ink-3);
}

.TrustScene-module__9hBFza__pillar[data-state="pending"] .TrustScene-module__9hBFza__dot {
  box-shadow: inset 0 0 0 1.5px var(--um-n-bar);
  background: none;
}

.TrustScene-module__9hBFza__pillar[data-state="ready"] .TrustScene-module__9hBFza__dot, .TrustScene-module__9hBFza__status[data-tone="ready"] .TrustScene-module__9hBFza__dot {
  background: var(--um-up);
}

.TrustScene-module__9hBFza__pillar[data-state="limited"] .TrustScene-module__9hBFza__dot {
  background: var(--warn);
}

.TrustScene-module__9hBFza__pillar[data-state="not_ready"] .TrustScene-module__9hBFza__dot {
  background: var(--um-down);
}

.TrustScene-module__9hBFza__pillar[data-state="not_ready"] .TrustScene-module__9hBFza__status {
  color: var(--um-down-ink);
  font-weight: 500;
}

.TrustScene-module__9hBFza__pillar[data-state="collecting"] .TrustScene-module__9hBFza__dot {
  background: var(--info);
}

.TrustScene-module__9hBFza__fixes {
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  display: flex;
}

.TrustScene-module__9hBFza__fixesHead {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.TrustScene-module__9hBFza__fixesTitle {
  font-size: 13px;
  font-weight: 500;
}

.TrustScene-module__9hBFza__openCount {
  opacity: 0;
  transition: opacity .3s;
}

.TrustScene-module__9hBFza__shown {
  opacity: 1;
}

.TrustScene-module__9hBFza__fixList {
  height: 178px;
  position: relative;
  overflow: hidden;
}

.TrustScene-module__9hBFza__skeleton {
  flex-direction: column;
  gap: 20px;
  padding-top: 14px;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.TrustScene-module__9hBFza__fixListShown .TrustScene-module__9hBFza__skeleton {
  opacity: 0;
}

.TrustScene-module__9hBFza__skeletonRow {
  gap: 10px;
  display: flex;
}

.TrustScene-module__9hBFza__skeletonRow > i {
  background: var(--um-n-track);
  border-radius: 999px;
  flex: none;
  width: 18px;
  height: 18px;
}

.TrustScene-module__9hBFza__skeletonRow > span {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding-top: 3px;
  display: flex;
}

.TrustScene-module__9hBFza__skeletonRow > span i {
  background: var(--um-n-track);
  border-radius: 4px;
  width: 56%;
  height: 7px;
  display: block;
}

.TrustScene-module__9hBFza__skeletonRow > span i + i {
  background: var(--um-subtle);
  width: 82%;
}

.TrustScene-module__9hBFza__issues {
  opacity: 0;
  transition: opacity .4s ease .1s, translate .4s var(--um-ease) .1s;
  translate: 0 6px;
}

.TrustScene-module__9hBFza__fixListShown .TrustScene-module__9hBFza__issues {
  opacity: 1;
  translate: 0;
}

.TrustScene-module__9hBFza__issue {
  border-top: 1px solid var(--um-line);
  padding: 12px 0;
  transition: opacity .4s;
}

.TrustScene-module__9hBFza__issueQueued {
  opacity: .5;
}

.TrustScene-module__9hBFza__issueHead {
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.TrustScene-module__9hBFza__marker {
  width: 18px;
  height: 18px;
  box-shadow: inset 0 0 0 1px var(--um-line-strong);
  color: var(--um-ink-3);
  border-radius: 999px;
  flex: none;
  place-items: center;
  font-size: 11px;
  font-weight: 500;
  animation: .3s both TrustScene-module__9hBFza__fade-in;
  display: grid;
}

.TrustScene-module__9hBFza__markerFocal {
  background: var(--um-accent);
  box-shadow: none;
  color: var(--um-primary-600);
}

.TrustScene-module__9hBFza__markerDone {
  box-shadow: none;
  color: var(--um-up);
  background: none;
}

.TrustScene-module__9hBFza__issueTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  animation: .35s both TrustScene-module__9hBFza__fade-in;
  overflow: hidden;
}

.TrustScene-module__9hBFza__issueMeta {
  flex: none;
  animation: .35s both TrustScene-module__9hBFza__fade-in;
  display: inline-flex;
}

.TrustScene-module__9hBFza__impact {
  color: var(--high-ink);
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 500;
}

.TrustScene-module__9hBFza__collapse {
  opacity: 0;
  transition: grid-template-rows .45s var(--um-ease), opacity .3s ease;
  grid-template-rows: 0fr;
  display: grid;
}

.TrustScene-module__9hBFza__collapse > * {
  min-height: 0;
  overflow: hidden;
}

.TrustScene-module__9hBFza__collapseOpen {
  opacity: 1;
  grid-template-rows: 1fr;
}

.TrustScene-module__9hBFza__detail {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 10px 0 6px 28px;
  display: grid;
}

.TrustScene-module__9hBFza__section {
  color: var(--um-ink-3);
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 500;
  display: block;
}

.TrustScene-module__9hBFza__found p {
  color: var(--um-ink-2);
  margin: 0 0 8px;
  font-size: 12.5px;
  line-height: 1.45;
}

.TrustScene-module__9hBFza__platform {
  color: var(--um-ink);
  vertical-align: bottom;
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  margin: 0 4px;
  display: inline-flex;
}

.TrustScene-module__9hBFza__resolvedLine .TrustScene-module__9hBFza__platform {
  color: var(--um-ink-2);
  margin-left: 0;
}

.TrustScene-module__9hBFza__observation {
  color: var(--um-ink-3);
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  display: inline-flex;
}

.TrustScene-module__9hBFza__observation b {
  font-weight: 500;
}

.TrustScene-module__9hBFza__observationPlatform {
  color: var(--um-ink-3);
  align-items: center;
  gap: 5px;
  margin-left: 1px;
  display: inline-flex;
}

.TrustScene-module__9hBFza__observation[data-tone="bad"] svg, .TrustScene-module__9hBFza__observation[data-tone="bad"] b {
  color: var(--um-down-ink);
}

.TrustScene-module__9hBFza__observation[data-tone="warn"] {
  margin-left: 28px;
}

.TrustScene-module__9hBFza__observation[data-tone="warn"] svg, .TrustScene-module__9hBFza__observation[data-tone="warn"] b {
  color: var(--warn-ink);
}

.TrustScene-module__9hBFza__howTo ol {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.TrustScene-module__9hBFza__howTo li {
  gap: 8px;
  display: flex;
}

.TrustScene-module__9hBFza__step {
  background: var(--um-accent);
  width: 16px;
  height: 16px;
  color: var(--um-primary-600);
  border-radius: 999px;
  flex: none;
  place-items: center;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 500;
  display: grid;
}

.TrustScene-module__9hBFza__stepBody {
  flex-direction: column;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.4;
  display: flex;
}

.TrustScene-module__9hBFza__stepBody small {
  color: var(--um-ink-3);
  font-size: 11.5px;
}

.TrustScene-module__9hBFza__inlineStep {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.TrustScene-module__9hBFza__resolvedLine {
  color: var(--um-ink-3);
  margin: 0;
  padding: 5px 0 0 28px;
  font-size: 12px;
}

.TrustScene-module__9hBFza__summary {
  color: var(--um-ink-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 4px 0 6px 28px;
  font-size: 12px;
  overflow: hidden;
}

@keyframes TrustScene-module__9hBFza__spin {
  to {
    rotate: 360deg;
  }
}

@keyframes TrustScene-module__9hBFza__fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@container scene (width <= 520px) {
  .TrustScene-module__9hBFza__body {
    min-height: 0;
    padding: 14px;
  }

  .TrustScene-module__9hBFza__score {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
  }

  .TrustScene-module__9hBFza__scoreSide {
    border-top: 1px solid var(--um-line);
    border-left: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 16px;
    padding: 12px 0 0;
    display: grid;
  }

  .TrustScene-module__9hBFza__sideFoot {
    display: contents;
  }

  .TrustScene-module__9hBFza__lastChecked {
    display: none;
  }

  .TrustScene-module__9hBFza__scoreSide > .TrustScene-module__9hBFza__sideFoot .TrustScene-module__9hBFza__outlineButton {
    grid-area: 1 / 2 / span 2;
    align-self: center;
  }

  .TrustScene-module__9hBFza__pillars {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 6px 0;
  }

  .TrustScene-module__9hBFza__pillar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    height: 27px;
  }

  .TrustScene-module__9hBFza__pillarLabel {
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 0;
    overflow: hidden;
  }

  .TrustScene-module__9hBFza__fixList {
    height: 164px;
  }

  .TrustScene-module__9hBFza__issueHead {
    align-items: flex-start;
  }

  .TrustScene-module__9hBFza__issueTitle {
    white-space: normal;
    line-height: 1.4;
  }

  .TrustScene-module__9hBFza__issueMeta {
    padding-top: 1px;
  }

  .TrustScene-module__9hBFza__detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .TrustScene-module__9hBFza__found, .TrustScene-module__9hBFza__summary, .TrustScene-module__9hBFza__recheckedNote {
    display: none;
  }

  .TrustScene-module__9hBFza__observation[data-tone="warn"] {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .TrustScene-module__9hBFza__ringValue, .TrustScene-module__9hBFza__swap > span, .TrustScene-module__9hBFza__trend, .TrustScene-module__9hBFza__progress i, .TrustScene-module__9hBFza__outlineButton, .TrustScene-module__9hBFza__cursor, .TrustScene-module__9hBFza__openCount, .TrustScene-module__9hBFza__skeleton, .TrustScene-module__9hBFza__issues, .TrustScene-module__9hBFza__issue, .TrustScene-module__9hBFza__collapse {
    transition: none;
  }

  .TrustScene-module__9hBFza__badge, .TrustScene-module__9hBFza__status, .TrustScene-module__9hBFza__marker, .TrustScene-module__9hBFza__issueTitle, .TrustScene-module__9hBFza__issueMeta, .TrustScene-module__9hBFza__outlineButton[data-loading="true"] .TrustScene-module__9hBFza__refresh {
    animation: none;
  }
}

/* [project]/apps/website/components/FeatureTabsV2/FeatureTabsV2.module.css [app-client] (css) */
@keyframes FeatureTabsV2-module__A7ZUnW__slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .FeatureTabsV2-module__A7ZUnW__header {
    opacity: 1;
    animation: none;
  }
}

.FeatureTabsV2-module__A7ZUnW__root {
  background: #f7f8ff;
  padding: 96px 24px;
}

.FeatureTabsV2-module__A7ZUnW__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.FeatureTabsV2-module__A7ZUnW__header {
  text-align: center;
  margin-bottom: 80px;
  animation: .5s both FeatureTabsV2-module__A7ZUnW__slideUp;
}

.FeatureTabsV2-module__A7ZUnW__eyebrow {
  color: #4c51ff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-size: .8125rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__heading {
  color: #0a0f1e;
  letter-spacing: -1.5px;
  max-width: 860px;
  margin: 0 auto 16px;
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.1;
}

.FeatureTabsV2-module__A7ZUnW__subtext {
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
}

.FeatureTabsV2-module__A7ZUnW__rows {
  flex-direction: column;
  gap: 150px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__featureRow {
  grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  align-items: center;
  gap: 56px;
  display: grid;
}

@media (max-width: 1100px) {
  .FeatureTabsV2-module__A7ZUnW__featureRow {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    gap: 40px;
  }
}

.FeatureTabsV2-module__A7ZUnW__featureRowReverse {
  direction: rtl;
}

.FeatureTabsV2-module__A7ZUnW__featureRowReverse > * {
  direction: ltr;
}

.FeatureTabsV2-module__A7ZUnW__textBlock {
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__rowEyebrow {
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #4c51ff;
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__rowHeading {
  color: #0a0f1e;
  letter-spacing: -.8px;
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.FeatureTabsV2-module__A7ZUnW__rowDesc {
  color: #555;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.FeatureTabsV2-module__A7ZUnW__rowDesc a {
  color: #6931ff;
  font-weight: 500;
  text-decoration: none;
}

.FeatureTabsV2-module__A7ZUnW__rowDesc a:hover {
  text-decoration: underline;
}

.FeatureTabsV2-module__A7ZUnW__learnMore {
  color: #4c51ff;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
}

.FeatureTabsV2-module__A7ZUnW__learnMore:hover {
  gap: 10px;
}

.FeatureTabsV2-module__A7ZUnW__imageBlock {
  width: 100%;
  min-width: 0;
}

.FeatureTabsV2-module__A7ZUnW__imageCard {
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .FeatureTabsV2-module__A7ZUnW__rows {
    gap: 72px;
  }

  .FeatureTabsV2-module__A7ZUnW__featureRow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .FeatureTabsV2-module__A7ZUnW__featureRowReverse {
    direction: ltr;
  }

  .FeatureTabsV2-module__A7ZUnW__imageBlock, .FeatureTabsV2-module__A7ZUnW__featureRowReverse .FeatureTabsV2-module__A7ZUnW__imageBlock {
    order: -1;
  }
}

@media (max-width: 580px) {
  .FeatureTabsV2-module__A7ZUnW__root {
    padding: 72px 16px;
  }

  .FeatureTabsV2-module__A7ZUnW__header {
    margin-bottom: 56px;
  }

  .FeatureTabsV2-module__A7ZUnW__rows {
    gap: 56px;
  }
}

.FeatureTabsV2-module__A7ZUnW__bulletList {
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__bulletItem {
  color: #333;
  align-items: flex-start;
  gap: 9px;
  font-size: .9375rem;
  line-height: 1.5;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__bulletIcon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__ftCard {
  background: #fff;
  border: 1px solid #00000012;
  border-radius: 16px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000a, 0 12px 40px #00000012;
}

.FeatureTabsV2-module__A7ZUnW__ftHeader {
  border-bottom: 1px solid #0000000f;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__ftTitle {
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #888;
  font-size: .78rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__ftBadge {
  color: #6931ff;
  background: #6931ff14;
  border-radius: 5px;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.FeatureTabsV2-module__A7ZUnW__ftBody {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 16px 20px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__ftFooter {
  color: #aaa;
  background: #00000004;
  border-top: 1px solid #0000000d;
  padding: 10px 20px;
  font-size: .7rem;
}

.FeatureTabsV2-module__A7ZUnW__journeyRow {
  background: #00000005;
  border: 1px solid #0000000d;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__journeyFlow {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__journeySource {
  border: 1px solid;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .73rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__journeyArrow {
  color: #bbb;
  font-size: .8rem;
}

.FeatureTabsV2-module__A7ZUnW__journeyStep {
  color: #555;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .73rem;
}

.FeatureTabsV2-module__A7ZUnW__journeyConvert {
  color: #10b981;
  background: #10b98114;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .73rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__journeyMeta {
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 2px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__journeyUsers {
  color: #888;
  font-size: .72rem;
}

.FeatureTabsV2-module__A7ZUnW__journeyLtv {
  font-size: .73rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__funnelRow {
  align-items: center;
  gap: 10px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__funnelLabelCol {
  flex-direction: column;
  flex-shrink: 0;
  width: 100px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__funnelLabel {
  color: #333;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__funnelDrop {
  color: #f87171;
  font-size: .67rem;
}

.FeatureTabsV2-module__A7ZUnW__funnelBarWrap {
  background: #0000000f;
  border-radius: 6px;
  flex: 1;
  height: 10px;
  overflow: hidden;
}

.FeatureTabsV2-module__A7ZUnW__funnelBar {
  transform-origin: 0;
  background: linear-gradient(90deg, #6931ff, #818cf8);
  border-radius: 6px;
  height: 100%;
  animation: .6s ease-out both FeatureTabsV2-module__A7ZUnW__ftBarGrow;
}

@keyframes FeatureTabsV2-module__A7ZUnW__ftBarGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.FeatureTabsV2-module__A7ZUnW__funnelCount {
  color: #333;
  text-align: right;
  flex-shrink: 0;
  width: 40px;
  font-size: .75rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__sparkWrap {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__sparkLabels {
  color: #aaa;
  justify-content: space-between;
  font-size: .67rem;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__sparkPeak {
  color: #6931ff;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__sparkLow {
  color: #bbb;
}

.FeatureTabsV2-module__A7ZUnW__sparkSvg {
  border-bottom: 1px solid #00000012;
  width: 100%;
  height: 60px;
  display: block;
}

.FeatureTabsV2-module__A7ZUnW__sparkXLabels {
  color: #bbb;
  justify-content: space-between;
  font-size: .65rem;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__analyticsStats {
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__analyticsStat {
  background: #00000006;
  border: 1px solid #0000000d;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  padding: 10px 12px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__analyticsVal {
  color: #111;
  font-size: .95rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__analyticsLbl {
  color: #888;
  font-size: .67rem;
}

.FeatureTabsV2-module__A7ZUnW__analyticsTrend {
  margin-top: 2px;
  font-size: .68rem;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__trendGood {
  color: #1fb57a;
}

.FeatureTabsV2-module__A7ZUnW__trendBad {
  color: #f04747;
}

.FeatureTabsV2-module__A7ZUnW__revRow {
  align-items: center;
  gap: 10px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__revName {
  color: #444;
  flex-shrink: 0;
  width: 108px;
  font-size: .75rem;
}

.FeatureTabsV2-module__A7ZUnW__revBarWrap {
  background: #0000000f;
  border-radius: 5px;
  flex: 1;
  height: 8px;
  overflow: hidden;
}

.FeatureTabsV2-module__A7ZUnW__revBar {
  transform-origin: 0;
  border-radius: 5px;
  height: 100%;
  animation: .55s ease-out both FeatureTabsV2-module__A7ZUnW__ftBarGrow;
}

.FeatureTabsV2-module__A7ZUnW__revAmt {
  color: #111;
  text-align: right;
  flex-shrink: 0;
  width: 44px;
  font-size: .75rem;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__revPct {
  color: #888;
  text-align: right;
  flex-shrink: 0;
  width: 28px;
  font-size: .7rem;
}

.FeatureTabsV2-module__A7ZUnW__insightRow {
  border-left: 3px solid;
  border-radius: 8px;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__insightIcon {
  flex-shrink: 0;
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__insightText {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__insightTitle {
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.FeatureTabsV2-module__A7ZUnW__insightDesc {
  color: #666;
  font-size: .71rem;
  line-height: 1.45;
}

.FeatureTabsV2-module__A7ZUnW__liveDotLight {
  background: #10b981;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  animation: 1.6s ease-in-out infinite FeatureTabsV2-module__A7ZUnW__livePulseLight;
  display: inline-block;
}

@keyframes FeatureTabsV2-module__A7ZUnW__livePulseLight {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.FeatureTabsV2-module__A7ZUnW__evRow {
  border: 1px solid #0000;
  border-radius: 7px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__evRowHighlight {
  background: #10b9810d;
  border-color: #10b98126;
}

.FeatureTabsV2-module__A7ZUnW__evDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
}

.FeatureTabsV2-module__A7ZUnW__evType {
  color: #333;
  min-width: 78px;
  font-family: Courier New, monospace;
  font-size: .71rem;
}

.FeatureTabsV2-module__A7ZUnW__evDetail {
  color: #888;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: .71rem;
  overflow: hidden;
}

.FeatureTabsV2-module__A7ZUnW__evTime {
  color: #bbb;
  flex-shrink: 0;
  font-size: .68rem;
}

.FeatureTabsV2-module__A7ZUnW__evSummary {
  color: #888;
  margin-top: 4px;
  padding: 0 2px;
  font-size: .72rem;
}

.FeatureTabsV2-module__A7ZUnW__evCount {
  color: #6931ff;
  font-weight: 700;
}

.FeatureTabsV2-module__A7ZUnW__segRow {
  align-items: center;
  gap: 10px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__segName {
  color: #444;
  flex-shrink: 0;
  width: 108px;
  font-size: .75rem;
}

.FeatureTabsV2-module__A7ZUnW__segBarWrap {
  background: #0000000f;
  border-radius: 5px;
  flex: 1;
  height: 8px;
  overflow: hidden;
}

.FeatureTabsV2-module__A7ZUnW__segBar {
  transform-origin: 0;
  border-radius: 5px;
  height: 100%;
  animation: .55s ease-out both FeatureTabsV2-module__A7ZUnW__ftBarGrow;
}

.FeatureTabsV2-module__A7ZUnW__segUsers {
  color: #333;
  text-align: right;
  flex-shrink: 0;
  width: 36px;
  font-size: .73rem;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__segTrend {
  text-align: right;
  flex-shrink: 0;
  width: 36px;
  font-size: .68rem;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__segTrendUp {
  color: #10b981;
}

.FeatureTabsV2-module__A7ZUnW__segTrendDown {
  color: #f87171;
}

.FeatureTabsV2-module__A7ZUnW__cohortTable {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__cohortHeaderRow, .FeatureTabsV2-module__A7ZUnW__cohortRow {
  gap: 4px;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__cohortMonthLabel {
  color: #888;
  flex-shrink: 0;
  align-items: center;
  width: 32px;
  font-size: .68rem;
  font-weight: 600;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__cohortWeekLabel {
  color: #aaa;
  text-align: center;
  flex: 1;
  padding-bottom: 4px;
  font-size: .65rem;
}

.FeatureTabsV2-module__A7ZUnW__cohortCell {
  aspect-ratio: 1.5;
  border-radius: 6px;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: .67rem;
  font-weight: 700;
  transition: opacity .2s;
  display: flex;
}

.FeatureTabsV2-module__A7ZUnW__clean {
  background: none;
  overflow-x: clip;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__heading {
  color: #16151d;
  letter-spacing: -.035em;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.FeatureTabsV2-module__A7ZUnW__headingMuted {
  color: #8a8799;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__eyebrow, .FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__rowEyebrow {
  color: #706b88;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 600;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__subtext {
  color: #55535f;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__rows {
  gap: 136px;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__textBlock {
  gap: 14px;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__rowHeading {
  color: #16151d;
  letter-spacing: -.03em;
  font-size: clamp(1.5rem, 2.3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.18;
}

.FeatureTabsV2-module__A7ZUnW__clean .FeatureTabsV2-module__A7ZUnW__rowDesc {
  color: #55535f;
  font-size: 1rem;
  line-height: 1.65;
}

.FeatureTabsV2-module__A7ZUnW__exploreLink {
  color: #16151d;
  background: #fff;
  border: 1px solid #16151d1f;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  height: 38px;
  margin-top: 8px;
  padding: 0 16px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s, gap .2s;
  display: inline-flex;
}

.FeatureTabsV2-module__A7ZUnW__exploreLink:hover {
  color: #6033ca;
  border-color: #c4b1f7;
  gap: 9px;
}

.FeatureTabsV2-module__A7ZUnW__exploreLink:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

/* [project]/apps/website/components/HowItWorks/HowItWorks.module.css [app-client] (css) */
@keyframes HowItWorks-module__gjBswG__panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes HowItWorks-module__gjBswG__headerIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .HowItWorks-module__gjBswG__header, .HowItWorks-module__gjBswG__contentPanel, .HowItWorks-module__gjBswG__expertPanel {
    opacity: 1;
    animation: none !important;
  }
}

.HowItWorks-module__gjBswG__root {
  background: #f7f8ff;
  padding: 96px 24px;
}

.HowItWorks-module__gjBswG__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.HowItWorks-module__gjBswG__header {
  text-align: center;
  margin-bottom: 56px;
  animation: .5s both HowItWorks-module__gjBswG__headerIn;
}

.HowItWorks-module__gjBswG__eyebrow {
  color: #504ee4;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-size: .8125rem;
  font-weight: 700;
}

.HowItWorks-module__gjBswG__heading {
  color: #0a0f1e;
  letter-spacing: -1.5px;
  margin: 0;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
}

.HowItWorks-module__gjBswG__stepTrack {
  align-items: flex-start;
  margin-bottom: 28px;
  display: flex;
}

.HowItWorks-module__gjBswG__stepNode {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  width: 96px;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  display: flex;
}

.HowItWorks-module__gjBswG__stepCircle {
  background: #fff;
  border: 2px solid #0e0d5924;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: background .3s, border-color .3s, box-shadow .3s;
  display: flex;
}

.HowItWorks-module__gjBswG__stepCircleActive {
  background: #6931ff;
  border-color: #0000;
  box-shadow: 0 0 0 4px #6931ff24;
}

.HowItWorks-module__gjBswG__stepCircleCompleted {
  background: #504ee4;
  border-color: #0000;
}

.HowItWorks-module__gjBswG__stepNum {
  color: #0e0d5947;
  font-size: .8125rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__stepNumActive {
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
}

.HowItWorks-module__gjBswG__stepLabel {
  color: #0e0d5952;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color .2s;
  display: -webkit-box;
  overflow: hidden;
}

.HowItWorks-module__gjBswG__stepLabelActive {
  color: #0a0f1e;
  font-weight: 700;
}

.HowItWorks-module__gjBswG__stepLabelDone {
  color: #7d47eb;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__connector {
  background: #0e0d5914;
  border-radius: 2px;
  flex: 1;
  height: 2px;
  margin-top: 17px;
  margin-left: 6px;
  margin-right: 6px;
  position: relative;
  overflow: hidden;
}

.HowItWorks-module__gjBswG__connectorFill {
  transform-origin: 0;
  background: #504ee4;
  border-radius: 2px;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.HowItWorks-module__gjBswG__connectorFillActive {
  transform: scaleX(1);
}

.HowItWorks-module__gjBswG__contentPanel {
  background: #6931ff06;
  border: 1px solid #6931ff21;
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
  min-height: 280px;
  padding: 48px 52px;
  animation: .3s ease-out both HowItWorks-module__gjBswG__panelIn;
  display: flex;
}

.HowItWorks-module__gjBswG__contentLeft {
  flex: 1;
  max-width: 500px;
}

.HowItWorks-module__gjBswG__stepBadge {
  background: #6931ff12;
  border: 1px solid #6931ff26;
  border-radius: 100px;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  padding: 4px 12px;
  display: inline-flex;
}

.HowItWorks-module__gjBswG__stepBadgeDot {
  background: #6931ff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.6s ease-in-out infinite HowItWorks-module__gjBswG__dot-pulse;
}

@keyframes HowItWorks-module__gjBswG__dot-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

.HowItWorks-module__gjBswG__stepBadgeText {
  color: #6931ff;
  font-size: .75rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__contentTitle {
  color: #0a0f1e;
  letter-spacing: -.8px;
  margin: 0 0 14px;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
}

.HowItWorks-module__gjBswG__contentDesc {
  color: #555;
  margin: 0 0 32px;
  font-size: .9375rem;
  line-height: 1.72;
}

.HowItWorks-module__gjBswG__navRow {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  display: flex;
}

.HowItWorks-module__gjBswG__navBtnPrev {
  cursor: pointer;
  color: #0e0d5961;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  transition: color .18s;
  display: inline-flex;
}

.HowItWorks-module__gjBswG__navBtnPrev:hover {
  color: #0a0f1e;
}

.HowItWorks-module__gjBswG__navBtnNext {
  cursor: pointer;
  color: #6931ff;
  box-shadow: none;
  background: none;
  border: 2px solid #6931ff;
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  transition: background .18s, color .18s, box-shadow .18s, transform .15s;
  display: inline-flex;
}

.HowItWorks-module__gjBswG__navBtnNext:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #6931ff47;
}

.HowItWorks-module__gjBswG__contentRight {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.HowItWorks-module__gjBswG__miniCard {
  background: #fff;
  border: 1px solid #00000012;
  border-radius: 14px;
  width: 340px;
  font-family: inherit;
  overflow: hidden;
  box-shadow: 0 4px 16px #0000000f, 0 12px 40px #00000014;
}

.HowItWorks-module__gjBswG__miniCardHeader {
  border-bottom: 1px solid #0000000f;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  display: flex;
}

.HowItWorks-module__gjBswG__miniCardTitle {
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .78rem;
  font-weight: 700;
}

.HowItWorks-module__gjBswG__miniCardBadge {
  color: #6931ff;
  background: #6931ff14;
  border-radius: 5px;
  padding: 3px 9px;
  font-size: .72rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__miniCardBody {
  flex-direction: column;
  gap: 13px;
  padding: 14px 18px;
  display: flex;
}

.HowItWorks-module__gjBswG__miniRow {
  align-items: center;
  gap: 12px;
  display: flex;
}

.HowItWorks-module__gjBswG__integImg {
  object-fit: contain;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.HowItWorks-module__gjBswG__miniRowName {
  color: #333;
  flex: 1;
  font-size: .875rem;
}

.HowItWorks-module__gjBswG__statusConnected {
  color: #10b981;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__statusSyncing {
  color: #bbb;
  white-space: nowrap;
  font-size: .75rem;
}

.HowItWorks-module__gjBswG__liveIndicator {
  align-items: center;
  gap: 5px;
  display: flex;
}

.HowItWorks-module__gjBswG__liveDot {
  background: #10b981;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.6s ease-in-out infinite HowItWorks-module__gjBswG__live-pulse;
}

@keyframes HowItWorks-module__gjBswG__live-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.HowItWorks-module__gjBswG__liveText {
  color: #10b981;
  font-size: .65rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__eventRow {
  border-radius: 6px;
  align-items: center;
  gap: 9px;
  margin: 0 -6px;
  padding: 5px 6px;
  display: flex;
}

.HowItWorks-module__gjBswG__eventRowHighlight {
  background: #10b9810f;
}

.HowItWorks-module__gjBswG__eventDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.HowItWorks-module__gjBswG__eventType {
  color: #333;
  flex-shrink: 0;
  min-width: 84px;
  font-family: Courier New, monospace;
  font-size: .75rem;
}

.HowItWorks-module__gjBswG__eventDetail {
  color: #999;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: .73rem;
  overflow: hidden;
}

.HowItWorks-module__gjBswG__eventTime {
  color: #bbb;
  white-space: nowrap;
  text-align: right;
  min-width: 26px;
  font-size: .7rem;
}

.HowItWorks-module__gjBswG__barRow {
  align-items: center;
  gap: 8px;
  display: flex;
}

.HowItWorks-module__gjBswG__barLabel {
  color: #666;
  flex-shrink: 0;
  width: 52px;
  font-size: .78rem;
}

.HowItWorks-module__gjBswG__barTrack {
  background: #0000000f;
  border-radius: 4px;
  flex: 1;
  height: 8px;
  overflow: hidden;
}

.HowItWorks-module__gjBswG__barFill {
  transform-origin: 0;
  border-radius: 4px;
  height: 100%;
  animation: .55s cubic-bezier(.16, 1, .3, 1) both HowItWorks-module__gjBswG__bar-grow;
}

@keyframes HowItWorks-module__gjBswG__bar-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.HowItWorks-module__gjBswG__barValue {
  color: #888;
  text-align: right;
  flex-shrink: 0;
  width: 30px;
  font-size: .78rem;
}

.HowItWorks-module__gjBswG__metricRow {
  border-bottom: 1px solid #0000000d;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  display: flex;
}

.HowItWorks-module__gjBswG__metricRow:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.HowItWorks-module__gjBswG__metricLabel {
  color: #888;
  text-transform: uppercase;
  letter-spacing: .4px;
  flex: 1;
  font-size: .75rem;
  font-weight: 500;
}

.HowItWorks-module__gjBswG__metricValue {
  color: #111;
  font-size: 1.0625rem;
  font-weight: 700;
}

.HowItWorks-module__gjBswG__metricTrend {
  white-space: nowrap;
  border-radius: 5px;
  padding: 3px 7px;
  font-size: .72rem;
  font-weight: 600;
}

.HowItWorks-module__gjBswG__metricTrendPositive {
  color: #10b981;
  background: #10b9811a;
}

.HowItWorks-module__gjBswG__metricTrendNegative {
  color: #f87171;
  background: #f871711a;
}

.HowItWorks-module__gjBswG__expertPanel {
  border-radius: 20px;
  min-height: 280px;
  animation: .4s ease-out both HowItWorks-module__gjBswG__panelIn;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 32px #6931ff33, 0 24px 64px #0000001a;
}

.HowItWorks-module__gjBswG__expertLeft {
  background: #6931ff;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 48px 44px;
  display: flex;
}

.HowItWorks-module__gjBswG__expertBadge {
  color: #ffffffe6;
  letter-spacing: .3px;
  border: 1px solid #ffffff4d;
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.HowItWorks-module__gjBswG__expertTitle {
  color: #fff;
  letter-spacing: -.4px;
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  line-height: 1.25;
}

.HowItWorks-module__gjBswG__expertSubtitle {
  color: #fff;
  margin: 0 0 32px;
  font-size: .9375rem;
  line-height: 1.6;
}

.HowItWorks-module__gjBswG__expertActions {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  display: flex;
}

.HowItWorks-module__gjBswG__expertCta {
  color: #6931ff;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .15s;
  display: inline-flex;
  box-shadow: 0 4px 16px #0000001a;
}

.HowItWorks-module__gjBswG__expertCta:hover {
  background: #ffffffeb;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px #00000026;
}

.HowItWorks-module__gjBswG__signupBtn {
  color: #fff !important;
  background: none !important;
  border-color: #ffffff8c !important;
}

.HowItWorks-module__gjBswG__signupBtn:hover {
  background: #ffffff1f !important;
  border-color: #fffc !important;
}

.HowItWorks-module__gjBswG__replayBtn {
  cursor: pointer;
  color: #fff9;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  transition: color .18s;
}

.HowItWorks-module__gjBswG__replayBtn:hover {
  color: #fff;
}

.HowItWorks-module__gjBswG__expertRight {
  background: #fff;
  flex: 0 0 400px;
  align-items: center;
  padding: 48px 44px;
  display: flex;
}

.HowItWorks-module__gjBswG__expertList {
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.HowItWorks-module__gjBswG__expertItem {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.HowItWorks-module__gjBswG__expertCheck {
  color: #6931ff;
  background: #6931ff1a;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: flex;
}

.HowItWorks-module__gjBswG__expertItemText {
  color: #555;
  font-size: .9375rem;
  line-height: 1.55;
}

.HowItWorks-module__gjBswG__expertItemText strong {
  color: #0a0f1e;
  font-weight: 700;
}

@media (max-width: 960px) {
  .HowItWorks-module__gjBswG__contentPanel {
    flex-direction: column;
    gap: 36px;
    padding: 36px 32px;
  }

  .HowItWorks-module__gjBswG__contentLeft {
    max-width: 100%;
  }

  .HowItWorks-module__gjBswG__contentRight {
    display: none;
  }

  .HowItWorks-module__gjBswG__expertPanel {
    flex-direction: column;
  }

  .HowItWorks-module__gjBswG__expertRight {
    flex: 1;
    width: 100%;
    padding: 32px 36px;
  }
}

@media (max-width: 640px) {
  .HowItWorks-module__gjBswG__root {
    padding: 72px 16px;
  }

  .HowItWorks-module__gjBswG__stepNode {
    width: 64px;
  }

  .HowItWorks-module__gjBswG__stepLabel {
    font-size: .625rem;
  }

  .HowItWorks-module__gjBswG__contentPanel {
    padding: 28px 20px;
  }

  .HowItWorks-module__gjBswG__expertLeft, .HowItWorks-module__gjBswG__expertRight {
    padding: 32px 24px;
  }

  .HowItWorks-module__gjBswG__expertActions {
    flex-direction: column;
    align-items: stretch;
  }

  .HowItWorks-module__gjBswG__expertCta {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .HowItWorks-module__gjBswG__stepNode {
    width: 52px;
  }
}

@keyframes HowItWorks-module__gjBswG__clean-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.HowItWorks-module__gjBswG__headingMuted {
  color: #8a8799;
}

.HowItWorks-module__gjBswG__miniRowKind {
  color: #75737f;
  margin-top: 2px;
  font-size: .8125rem;
  font-weight: 400;
  display: block;
}

.HowItWorks-module__gjBswG__statusDot {
  background: #1f9d57;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.HowItWorks-module__gjBswG__pillSecondary {
  color: #16151d;
  cursor: pointer;
  background: #fff;
  border: 1px solid #16151d1f;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-flex;
}

.HowItWorks-module__gjBswG__pillSecondary:hover {
  color: #6033ca;
  border-color: #c4b1f7;
}

.HowItWorks-module__gjBswG__pillSecondary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .HowItWorks-module__gjBswG__root {
  background: none;
  padding: 104px 24px;
}

.homeClean .HowItWorks-module__gjBswG__header {
  margin-bottom: 48px;
  animation: .45s ease-out both HowItWorks-module__gjBswG__clean-rise;
}

.homeClean .HowItWorks-module__gjBswG__eyebrow {
  color: #706b88;
  letter-spacing: .12em;
  margin-bottom: 16px;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__heading {
  color: #16151d;
  letter-spacing: -.035em;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.homeClean .HowItWorks-module__gjBswG__stepTrack {
  align-items: center;
  margin-bottom: 24px;
}

.homeClean .HowItWorks-module__gjBswG__stepNode {
  border-radius: 999px;
  flex-direction: row;
  gap: 10px;
  width: auto;
  padding: 4px 6px 4px 4px;
}

:is(.homeClean .HowItWorks-module__gjBswG__stepNode:focus-visible, .homeClean .HowItWorks-module__gjBswG__navBtnPrev:focus-visible, .homeClean .HowItWorks-module__gjBswG__navBtnNext:focus-visible, .homeClean .HowItWorks-module__gjBswG__expertCta:focus-visible) {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .HowItWorks-module__gjBswG__stepCircle {
  color: #7d47eb;
  background: #fff;
  border: 1px solid #16151d1f;
  width: 28px;
  height: 28px;
}

.homeClean .HowItWorks-module__gjBswG__stepCircleActive {
  box-shadow: none;
  background: #7d47eb;
  border-color: #7d47eb;
}

.homeClean .HowItWorks-module__gjBswG__stepCircleCompleted {
  background: #fff;
  border-color: #c4b1f7;
}

:is(.homeClean .HowItWorks-module__gjBswG__stepNum, .homeClean .HowItWorks-module__gjBswG__stepNumActive) {
  font-variant-numeric: tabular-nums;
  color: #75737f;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__stepNumActive {
  color: #fff;
}

.homeClean .HowItWorks-module__gjBswG__stepLabel {
  color: #75737f;
  text-align: left;
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.homeClean .HowItWorks-module__gjBswG__stepLabelDone {
  color: #55535f;
}

.homeClean .HowItWorks-module__gjBswG__stepLabelActive {
  color: #16151d;
}

.homeClean .HowItWorks-module__gjBswG__stepNode:hover .HowItWorks-module__gjBswG__stepLabel {
  color: #16151d;
}

.homeClean .HowItWorks-module__gjBswG__connector {
  background: #16151d1a;
  border-radius: 0;
  min-width: 24px;
  height: 1px;
  margin: 0 12px;
}

.homeClean .HowItWorks-module__gjBswG__connectorFill {
  background: #7d47eb;
  border-radius: 0;
}

.homeClean .HowItWorks-module__gjBswG__contentPanel {
  background: #fff;
  border: 1px solid #16151d14;
  border-radius: 16px;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: stretch;
  gap: 0;
  min-height: 372px;
  padding: 0;
  animation: .3s ease-out both HowItWorks-module__gjBswG__clean-rise;
  display: grid;
  overflow: hidden;
  box-shadow: 0 1px 2px #16151d0a;
}

.homeClean .HowItWorks-module__gjBswG__contentLeft {
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 48px;
  display: flex;
}

.homeClean .HowItWorks-module__gjBswG__stepBadge {
  background: none;
  border: 0;
  border-radius: 0;
  margin-bottom: 14px;
  padding: 0;
}

.homeClean .HowItWorks-module__gjBswG__stepBadgeText {
  color: #706b88;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__contentTitle {
  color: #16151d;
  letter-spacing: -.025em;
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.homeClean .HowItWorks-module__gjBswG__contentDesc {
  color: #55535f;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.65;
}

.homeClean .HowItWorks-module__gjBswG__navRow {
  gap: 16px;
}

.homeClean .HowItWorks-module__gjBswG__navBtnPrev {
  color: #75737f;
  border-radius: 999px;
  height: 40px;
}

.homeClean .HowItWorks-module__gjBswG__navBtnPrev:hover {
  color: #16151d;
}

.homeClean .HowItWorks-module__gjBswG__navBtnNext {
  color: #16151d;
  background: #fff;
  border: 1px solid #16151d1f;
  border-radius: 999px;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 500;
  transition: border-color .2s, color .2s;
}

.homeClean .HowItWorks-module__gjBswG__navBtnNext:hover {
  color: #6033ca;
  box-shadow: none;
  border-color: #c4b1f7;
  transform: none;
}

.homeClean .HowItWorks-module__gjBswG__contentRight {
  background: #fafafc;
  border-left: 1px solid #16151d0f;
  flex-shrink: 1;
  padding: 36px 40px;
}

.homeClean .HowItWorks-module__gjBswG__miniCard {
  width: 100%;
  max-width: 460px;
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.homeClean .HowItWorks-module__gjBswG__miniCardHeader {
  border-bottom: 1px solid #16151d14;
  padding: 0 0 14px;
}

.homeClean .HowItWorks-module__gjBswG__miniCardTitle {
  color: #706b88;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__miniCardBadge {
  color: #6033ca;
  background: #f3eeff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__miniCardBody {
  gap: 0;
  padding: 0;
}

:is(.homeClean .HowItWorks-module__gjBswG__miniRow, .homeClean .HowItWorks-module__gjBswG__eventRow, .homeClean .HowItWorks-module__gjBswG__barRow, .homeClean .HowItWorks-module__gjBswG__metricRow) {
  border-bottom: 1px solid #16151d0f;
  border-radius: 0;
  min-height: 64px;
  margin: 0;
  padding: 12px 0;
}

:is(.homeClean .HowItWorks-module__gjBswG__miniRow:last-child, .homeClean .HowItWorks-module__gjBswG__eventRow:last-child, .homeClean .HowItWorks-module__gjBswG__barRow:last-child, .homeClean .HowItWorks-module__gjBswG__metricRow:last-child) {
  border-bottom: 0;
  padding-bottom: 12px;
}

.homeClean .HowItWorks-module__gjBswG__miniRow {
  gap: 14px;
}

.homeClean .HowItWorks-module__gjBswG__integImg {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #16151d14;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 9px;
}

.homeClean .HowItWorks-module__gjBswG__miniRowName {
  color: #16151d;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.3;
}

:is(.homeClean .HowItWorks-module__gjBswG__statusConnected, .homeClean .HowItWorks-module__gjBswG__statusSyncing) {
  color: #55535f;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  font-weight: 500;
  display: inline-flex;
}

.homeClean .HowItWorks-module__gjBswG__liveDot {
  background: #1f9d57;
  animation: none;
}

.homeClean .HowItWorks-module__gjBswG__liveText {
  color: #55535f;
  font-size: .75rem;
  font-weight: 500;
}

.homeClean .HowItWorks-module__gjBswG__eventRow {
  gap: 14px;
}

.homeClean .HowItWorks-module__gjBswG__eventRowHighlight {
  background: none;
}

.homeClean .HowItWorks-module__gjBswG__eventDot {
  background: #c9c7d1;
}

.homeClean .HowItWorks-module__gjBswG__eventRowHighlight .HowItWorks-module__gjBswG__eventDot {
  background: #1f9d57;
}

.homeClean .HowItWorks-module__gjBswG__eventType {
  color: #16151d;
  min-width: 112px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .8125rem;
}

.homeClean .HowItWorks-module__gjBswG__eventRowHighlight .HowItWorks-module__gjBswG__eventType {
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__eventDetail {
  color: #75737f;
  font-size: .8125rem;
}

.homeClean .HowItWorks-module__gjBswG__eventTime {
  color: #8a8799;
  font-variant-numeric: tabular-nums;
  font-size: .75rem;
}

.homeClean .HowItWorks-module__gjBswG__barRow {
  gap: 14px;
}

.homeClean .HowItWorks-module__gjBswG__barLabel {
  color: #16151d;
  width: 64px;
  font-size: .875rem;
  font-weight: 500;
}

.homeClean .HowItWorks-module__gjBswG__barTrack {
  background: #16151d0f;
  border-radius: 999px;
  height: 8px;
}

.homeClean .HowItWorks-module__gjBswG__barFill {
  background: #7d47eb;
  border-radius: 999px;
  animation-duration: .45s;
}

.homeClean .HowItWorks-module__gjBswG__barValue {
  color: #55535f;
  font-variant-numeric: tabular-nums;
  width: 40px;
  font-size: .875rem;
}

.homeClean .HowItWorks-module__gjBswG__metricRow {
  gap: 14px;
}

.homeClean .HowItWorks-module__gjBswG__metricLabel {
  color: #706b88;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__metricValue {
  color: #16151d;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__metricTrend {
  text-align: right;
  background: none;
  min-width: 64px;
  padding: 0;
  font-size: .8125rem;
  font-weight: 500;
}

.homeClean .HowItWorks-module__gjBswG__metricTrendPositive {
  color: #1f9d57;
}

.homeClean .HowItWorks-module__gjBswG__metricTrendNegative {
  color: #d93d42;
}

.homeClean .HowItWorks-module__gjBswG__expertPanel {
  background: #fff;
  border: 1px solid #16151d14;
  border-radius: 16px;
  min-height: 372px;
  animation: .3s ease-out both HowItWorks-module__gjBswG__clean-rise;
  box-shadow: 0 1px 2px #16151d0a;
}

.homeClean .HowItWorks-module__gjBswG__expertLeft {
  background: none;
  padding: 48px;
}

.homeClean .HowItWorks-module__gjBswG__expertBadge {
  color: #706b88;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  margin-bottom: 14px;
  padding: 0;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .HowItWorks-module__gjBswG__expertTitle {
  color: #16151d;
  letter-spacing: -.025em;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.homeClean .HowItWorks-module__gjBswG__expertSubtitle {
  color: #55535f;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.65;
}

.homeClean .HowItWorks-module__gjBswG__expertActions {
  gap: 12px;
}

.homeClean .HowItWorks-module__gjBswG__expertCta {
  color: #fff;
  height: 40px;
  box-shadow: none;
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  border-radius: 999px;
  gap: 8px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 500;
  transition: filter .2s;
}

.homeClean .HowItWorks-module__gjBswG__expertCta:hover {
  box-shadow: none;
  filter: brightness(1.07);
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  transform: none;
}

.homeClean .HowItWorks-module__gjBswG__expertRight {
  background: #fafafc;
  border-left: 1px solid #16151d0f;
  flex: 0 0 440px;
}

.homeClean .HowItWorks-module__gjBswG__expertList {
  gap: 16px;
}

.homeClean .HowItWorks-module__gjBswG__expertCheck {
  color: #7d47eb;
  background: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.homeClean .HowItWorks-module__gjBswG__expertCheck svg {
  width: 14px;
  height: 14px;
}

.homeClean .HowItWorks-module__gjBswG__expertItemText {
  color: #55535f;
  font-size: .9375rem;
  line-height: 1.6;
}

.homeClean .HowItWorks-module__gjBswG__expertItemText strong {
  color: #16151d;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .homeClean .HowItWorks-module__gjBswG__stepTrack {
    align-items: flex-start;
  }

  .homeClean .HowItWorks-module__gjBswG__stepNode {
    border-radius: 8px;
    flex-direction: column;
    gap: 8px;
    width: 112px;
    padding: 0;
  }

  .homeClean .HowItWorks-module__gjBswG__stepLabel {
    text-align: center;
    white-space: normal;
    font-size: .8125rem;
  }

  .homeClean .HowItWorks-module__gjBswG__connector {
    margin: 14px 4px 0;
  }
}

@media (max-width: 960px) {
  :is(.homeClean .HowItWorks-module__gjBswG__contentPanel, .homeClean .HowItWorks-module__gjBswG__expertPanel) {
    min-height: 0;
  }

  .homeClean .HowItWorks-module__gjBswG__contentPanel {
    grid-template-columns: 1fr;
  }

  .homeClean .HowItWorks-module__gjBswG__contentLeft {
    padding: 36px 32px 32px;
  }

  .homeClean .HowItWorks-module__gjBswG__contentRight {
    border-top: 1px solid #16151d0f;
    border-left: 0;
    padding: 24px 32px;
    display: flex;
  }

  .homeClean .HowItWorks-module__gjBswG__miniCard {
    max-width: none;
  }

  .homeClean .HowItWorks-module__gjBswG__expertRight {
    border-top: 1px solid #16151d0f;
    border-left: 0;
    flex: 1;
  }
}

@media (max-width: 640px) {
  .homeClean .HowItWorks-module__gjBswG__root {
    padding: 72px 16px;
  }

  .homeClean .HowItWorks-module__gjBswG__header {
    margin-bottom: 36px;
  }

  .homeClean .HowItWorks-module__gjBswG__stepTrack {
    align-items: center;
  }

  .homeClean .HowItWorks-module__gjBswG__stepNode {
    border-radius: 999px;
    width: auto;
    padding: 4px;
  }

  .homeClean .HowItWorks-module__gjBswG__stepLabel {
    clip: rect(0 0 0 0);
    white-space: nowrap;
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
  }

  .homeClean .HowItWorks-module__gjBswG__connector {
    margin: 0 4px;
  }

  .homeClean .HowItWorks-module__gjBswG__contentLeft {
    padding: 28px 20px 24px;
  }

  .homeClean .HowItWorks-module__gjBswG__contentRight {
    padding: 16px 20px 8px;
  }

  :is(.homeClean .HowItWorks-module__gjBswG__miniRow, .homeClean .HowItWorks-module__gjBswG__eventRow, .homeClean .HowItWorks-module__gjBswG__barRow, .homeClean .HowItWorks-module__gjBswG__metricRow) {
    min-height: 56px;
  }

  .homeClean .HowItWorks-module__gjBswG__eventType {
    min-width: 92px;
  }

  :is(.homeClean .HowItWorks-module__gjBswG__expertLeft, .homeClean .HowItWorks-module__gjBswG__expertRight) {
    padding: 28px 20px;
  }

  .homeClean .HowItWorks-module__gjBswG__expertCta {
    justify-content: center;
  }

  .homeClean .HowItWorks-module__gjBswG__expertActions .HowItWorks-module__gjBswG__pillSecondary {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.homeClean .HowItWorks-module__gjBswG__header, .homeClean .HowItWorks-module__gjBswG__contentPanel, .homeClean .HowItWorks-module__gjBswG__expertPanel, .homeClean .HowItWorks-module__gjBswG__barFill) {
    animation: none;
  }
}

/* [project]/apps/website/components/ComparisonMatrix/ComparisonMatrix.module.css [app-client] (css) */
@keyframes ComparisonMatrix-module__GRZRSG__slide-up {
  from {
    opacity: 0;
    transform: translateY(var(--from-y, 12px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ComparisonMatrix-module__GRZRSG__slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ComparisonMatrix-module__GRZRSG__fadeEyebrow, .ComparisonMatrix-module__GRZRSG__fadeHeading, .ComparisonMatrix-module__GRZRSG__fadeSubtext, .ComparisonMatrix-module__GRZRSG__tableWrap, .ComparisonMatrix-module__GRZRSG__tableRow {
    opacity: 1;
    animation: none;
  }
}

.ComparisonMatrix-module__GRZRSG__fadeEyebrow {
  animation: .45s both ComparisonMatrix-module__GRZRSG__slide-up;
}

.ComparisonMatrix-module__GRZRSG__fadeHeading {
  --from-y: 16px;
  animation: .5s 50ms both ComparisonMatrix-module__GRZRSG__slide-up;
}

.ComparisonMatrix-module__GRZRSG__fadeSubtext {
  animation: .45s .1s both ComparisonMatrix-module__GRZRSG__slide-up;
}

.ComparisonMatrix-module__GRZRSG__root {
  background: #f7f8ff;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.ComparisonMatrix-module__GRZRSG__inner {
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.ComparisonMatrix-module__GRZRSG__eyebrow {
  color: #4c51ff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 16px;
  font-size: .8125rem;
  font-weight: 700;
}

.ComparisonMatrix-module__GRZRSG__heading {
  color: #0a0f1e;
  letter-spacing: -1.5px;
  text-align: center;
  margin: 0 0 16px;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}

.ComparisonMatrix-module__GRZRSG__subtext {
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.65;
}

.ComparisonMatrix-module__GRZRSG__tableWrap {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 20px;
  animation: .55s .15s both ComparisonMatrix-module__GRZRSG__slide-up;
  overflow: hidden;
  box-shadow: 0 2px 16px #0000000d;
}

.ComparisonMatrix-module__GRZRSG__tableHead {
  border-bottom: 1px solid #00000012;
  grid-template-columns: 1fr 1.15fr 1.15fr;
  display: grid;
}

.ComparisonMatrix-module__GRZRSG__headFeature {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0f1e59;
  border-right: 1px solid #0000000f;
  align-items: center;
  padding: 20px 28px;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__headUm {
  background: #4c51ff1a;
  border-top: 3px solid #4c51ff;
  border-left: 1px solid #4c51ff33;
  border-right: 1px solid #4c51ff33;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 24px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__umName {
  color: #1a1f6e;
  letter-spacing: -.01em;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
}

.ComparisonMatrix-module__GRZRSG__umFavicon {
  border-radius: 4px;
  flex-shrink: 0;
}

.ComparisonMatrix-module__GRZRSG__headComp {
  border-right: 1px solid #0000000f;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__compName {
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #0a0f1e59;
  font-size: .8125rem;
  font-weight: 700;
}

.ComparisonMatrix-module__GRZRSG__headLogo {
  object-fit: contain;
  object-position: left center;
  max-width: 100%;
  height: auto;
}

.ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__tableHead, .ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__tableRow, .ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__tableFoot {
  grid-template-columns: 1.6fr 1fr 1fr;
}

.ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__headComp, .ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__headUm {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__cell {
  justify-content: center;
}

.ComparisonMatrix-module__GRZRSG__alignCenter .ComparisonMatrix-module__GRZRSG__footUm {
  align-items: center;
}

.ComparisonMatrix-module__GRZRSG__tableBody {
  flex-direction: column;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__tableRow {
  cursor: default;
  border-bottom: 1px solid #0000000d;
  grid-template-columns: 1fr 1.15fr 1.15fr;
  transition: background .18s;
  animation: .35s both ComparisonMatrix-module__GRZRSG__slide-in-left;
  display: grid;
}

.ComparisonMatrix-module__GRZRSG__tableRow:last-child {
  border-bottom: none;
}

.ComparisonMatrix-module__GRZRSG__tableRow:hover {
  background: #00000004;
}

.ComparisonMatrix-module__GRZRSG__tableRow:hover .ComparisonMatrix-module__GRZRSG__cellUm {
  background: #4c51ff24;
}

.ComparisonMatrix-module__GRZRSG__cellFeature {
  border-right: 1px solid #0000000f;
  align-items: center;
  padding: 18px 28px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__featureName {
  color: #0a0f1e;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.ComparisonMatrix-module__GRZRSG__cell {
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__cellLast {
  border-right: 1px solid #0000000f;
}

.ComparisonMatrix-module__GRZRSG__cellUm {
  background: #4c51ff12;
  border-left: 1px solid #4c51ff33;
  border-right: 1px solid #4c51ff33;
  transition: background .18s;
}

.ComparisonMatrix-module__GRZRSG__cellGap {
  background: #ff5c5c06;
}

.ComparisonMatrix-module__GRZRSG__partialIcon {
  color: #d97706;
  background: #d977061a;
  border: 1px solid #d9770640;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__xIcon {
  color: #dc3545;
  background: #dc35451a;
  border: 1px solid #dc354538;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__checkIcon {
  color: #00a693;
  background: #00a6931a;
  border: 1px solid #00a69340;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__compText {
  color: #0a0f1e85;
  font-size: .875rem;
  line-height: 1.45;
}

.ComparisonMatrix-module__GRZRSG__compText:empty, .ComparisonMatrix-module__GRZRSG__umText:empty {
  display: none;
}

.ComparisonMatrix-module__GRZRSG__umText {
  color: #1a1f6e;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.45;
}

.ComparisonMatrix-module__GRZRSG__tableFoot {
  background: #00000004;
  border-top: 1px solid #00000012;
  grid-template-columns: 1fr 1.15fr 1.15fr;
  display: grid;
}

.ComparisonMatrix-module__GRZRSG__footCell {
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__footText {
  grid-column: 1 / 3;
  justify-content: flex-start;
}

.ComparisonMatrix-module__GRZRSG__footUm {
  background: #4c51ff1a;
  border-left: 1px solid #4c51ff33;
  border-right: 1px solid #4c51ff33;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.ComparisonMatrix-module__GRZRSG__footLabel {
  color: #555;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.ComparisonMatrix-module__GRZRSG__footnote {
  color: #888;
  text-align: center;
  margin: 16px 0 0;
  font-size: .8125rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .ComparisonMatrix-module__GRZRSG__tableHead, .ComparisonMatrix-module__GRZRSG__tableRow, .ComparisonMatrix-module__GRZRSG__tableFoot {
    grid-template-columns: .9fr 1fr 1fr;
  }

  .ComparisonMatrix-module__GRZRSG__cellFeature, .ComparisonMatrix-module__GRZRSG__headFeature, .ComparisonMatrix-module__GRZRSG__footFeature {
    padding-left: 20px;
    padding-right: 16px;
  }

  .ComparisonMatrix-module__GRZRSG__cell, .ComparisonMatrix-module__GRZRSG__headComp, .ComparisonMatrix-module__GRZRSG__headUm, .ComparisonMatrix-module__GRZRSG__footCell {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .ComparisonMatrix-module__GRZRSG__root {
    padding: 72px 16px;
  }

  .ComparisonMatrix-module__GRZRSG__tableWrap {
    border-radius: 14px;
    overflow-x: auto;
  }

  .ComparisonMatrix-module__GRZRSG__tableHead, .ComparisonMatrix-module__GRZRSG__tableRow, .ComparisonMatrix-module__GRZRSG__tableFoot {
    grid-template-columns: 220px 220px 220px;
    min-width: 660px;
  }

  .ComparisonMatrix-module__GRZRSG__cellFeature, .ComparisonMatrix-module__GRZRSG__headFeature {
    padding: 14px 12px;
  }

  .ComparisonMatrix-module__GRZRSG__cell, .ComparisonMatrix-module__GRZRSG__headComp, .ComparisonMatrix-module__GRZRSG__headUm, .ComparisonMatrix-module__GRZRSG__footCell {
    padding: 14px 10px;
  }

  .ComparisonMatrix-module__GRZRSG__featureName, .ComparisonMatrix-module__GRZRSG__traditionalText, .ComparisonMatrix-module__GRZRSG__umText {
    font-size: .75rem;
  }

  .ComparisonMatrix-module__GRZRSG__footCompLabel {
    font-size: .8125rem;
  }
}

.homeClean .ComparisonMatrix-module__GRZRSG__root {
  background: none;
  padding: 104px 24px;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__fadeEyebrow, .homeClean .ComparisonMatrix-module__GRZRSG__fadeHeading, .homeClean .ComparisonMatrix-module__GRZRSG__fadeSubtext, .homeClean .ComparisonMatrix-module__GRZRSG__tableWrap) {
  --from-y: 8px;
  animation-duration: .45s;
  animation-timing-function: ease-out;
}

.homeClean .ComparisonMatrix-module__GRZRSG__eyebrow {
  color: #706b88;
  letter-spacing: .12em;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .ComparisonMatrix-module__GRZRSG__heading {
  color: #16151d;
  letter-spacing: -.035em;
  text-wrap: balance;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.homeClean .ComparisonMatrix-module__GRZRSG__subtext {
  color: #55535f;
  max-width: 680px;
  margin-bottom: 56px;
}

.homeClean .ComparisonMatrix-module__GRZRSG__tableWrap {
  border-color: #16151d14;
  border-radius: 16px;
  box-shadow: 0 1px 2px #16151d0a;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__tableHead, .homeClean .ComparisonMatrix-module__GRZRSG__tableRow, .homeClean .ComparisonMatrix-module__GRZRSG__tableFoot) {
  background: none;
  border: 0;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__headFeature, .homeClean .ComparisonMatrix-module__GRZRSG__headComp, .homeClean .ComparisonMatrix-module__GRZRSG__cellFeature, .homeClean .ComparisonMatrix-module__GRZRSG__cellLast) {
  border-bottom: 1px solid #16151d0f;
  border-right: 1px solid #16151d0f;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__headFeature, .homeClean .ComparisonMatrix-module__GRZRSG__compName) {
  color: #75737f;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 600;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__headUm, .homeClean .ComparisonMatrix-module__GRZRSG__cellUm, .homeClean .ComparisonMatrix-module__GRZRSG__footUm) {
  background: #16151d;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__headUm, .homeClean .ComparisonMatrix-module__GRZRSG__cellUm) {
  border-bottom: 1px solid #ffffff14;
}

.homeClean .ComparisonMatrix-module__GRZRSG__umName {
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
}

.homeClean .ComparisonMatrix-module__GRZRSG__tableRow:hover {
  background: #16151d04;
}

.homeClean .ComparisonMatrix-module__GRZRSG__tableRow:hover .ComparisonMatrix-module__GRZRSG__cellUm {
  background: #1d1c26;
}

.homeClean .ComparisonMatrix-module__GRZRSG__cellGap {
  background: none;
}

.homeClean .ComparisonMatrix-module__GRZRSG__featureName {
  color: #16151d;
  font-weight: 500;
}

.homeClean .ComparisonMatrix-module__GRZRSG__compText {
  color: #75737f;
}

.homeClean .ComparisonMatrix-module__GRZRSG__umText {
  color: #ffffffe6;
  font-weight: 500;
}

:is(.homeClean .ComparisonMatrix-module__GRZRSG__xIcon, .homeClean .ComparisonMatrix-module__GRZRSG__checkIcon) {
  border: 0;
  width: 16px;
  height: 16px;
}

.homeClean .ComparisonMatrix-module__GRZRSG__xIcon {
  color: #b3b0c2;
  background: none;
}

.homeClean .ComparisonMatrix-module__GRZRSG__xIcon svg {
  width: 10px;
  height: 10px;
}

.homeClean .ComparisonMatrix-module__GRZRSG__checkIcon {
  color: #fff;
  background: #7d47eb;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footCell {
  padding: 24px;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footLabel {
  color: #16151d;
  font-weight: 500;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footBtn {
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
  border-radius: 999px;
  height: 40px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 500;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footBtn:hover {
  background: linear-gradient(81deg, #6f3bdf 20%, #9030d6 100%);
  transform: none;
  box-shadow: none !important;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footBtn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footBtn svg {
  width: 16px;
  height: 16px;
}

.homeClean .ComparisonMatrix-module__GRZRSG__footCaption {
  color: #fff9;
  padding-left: 18px !important;
}

@media (max-width: 640px) {
  .homeClean .ComparisonMatrix-module__GRZRSG__root {
    padding: 80px 16px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__tableWrap {
    overflow: hidden;
  }

  :is(.homeClean .ComparisonMatrix-module__GRZRSG__tableHead, .homeClean .ComparisonMatrix-module__GRZRSG__tableRow, .homeClean .ComparisonMatrix-module__GRZRSG__tableFoot) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-width: 0;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__headFeature {
    display: none;
  }

  :is(.homeClean .ComparisonMatrix-module__GRZRSG__headComp, .homeClean .ComparisonMatrix-module__GRZRSG__headUm) {
    padding: 14px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__headComp {
    border-right: 0;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__cellFeature {
    border-bottom: 0;
    border-right: 0;
    grid-area: 1 / 1;
    padding: 14px 14px 6px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__cellLast {
    border-right: 0;
    grid-area: 2 / 1;
    padding: 0 14px 14px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__cellUm {
    grid-area: 1 / 2 / span 2;
    padding: 14px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__cell {
    align-items: flex-start;
    gap: 8px;
  }

  :is(.homeClean .ComparisonMatrix-module__GRZRSG__xIcon, .homeClean .ComparisonMatrix-module__GRZRSG__checkIcon) {
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__featureName {
    font-size: .875rem;
  }

  :is(.homeClean .ComparisonMatrix-module__GRZRSG__compText, .homeClean .ComparisonMatrix-module__GRZRSG__umText) {
    font-size: .8125rem;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__footText {
    grid-column: 1;
    padding: 18px 14px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__footUm {
    padding: 18px 12px;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__footLabel {
    font-size: .875rem;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__footBtn {
    padding: 0 14px;
    font-size: .8125rem;
  }

  .homeClean .ComparisonMatrix-module__GRZRSG__footCaption {
    padding-left: 14px !important;
  }
}

/* [project]/apps/website/components/WhyUsermaven/WhyUsermaven.module.css [app-client] (css) */
.WhyUsermaven-module__BLBLdW__headingMuted {
  color: #8a8799;
}

/* [project]/apps/website/components/PlatformFeatureCloud/PlatformFeatureCloud.module.css [app-client] (css) */
@keyframes PlatformFeatureCloud-module__rd6Osa__slideUp {
  from {
    opacity: 0;
    transform: translateY(var(--from-y, 12px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes PlatformFeatureCloud-module__rd6Osa__pillIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .PlatformFeatureCloud-module__rd6Osa__fadeEyebrow, .PlatformFeatureCloud-module__rd6Osa__fadeHeading, .PlatformFeatureCloud-module__rd6Osa__fadeSubtext, .PlatformFeatureCloud-module__rd6Osa__pillWrap {
    opacity: 1;
    animation: none;
  }
}

.PlatformFeatureCloud-module__rd6Osa__fadeEyebrow {
  animation: .45s both PlatformFeatureCloud-module__rd6Osa__slideUp;
}

.PlatformFeatureCloud-module__rd6Osa__fadeHeading {
  --from-y: 16px;
  animation: .5s 50ms both PlatformFeatureCloud-module__rd6Osa__slideUp;
}

.PlatformFeatureCloud-module__rd6Osa__fadeSubtext {
  animation: .45s .1s both PlatformFeatureCloud-module__rd6Osa__slideUp;
}

.PlatformFeatureCloud-module__rd6Osa__pillWrap {
  animation: .35s both PlatformFeatureCloud-module__rd6Osa__pillIn;
}

.PlatformFeatureCloud-module__rd6Osa__root {
  background: #f7f8ff;
  padding: 96px 24px;
}

.PlatformFeatureCloud-module__rd6Osa__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.PlatformFeatureCloud-module__rd6Osa__eyebrow {
  color: #4c51ff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 16px;
  font-size: .8125rem;
  font-weight: 700;
}

.PlatformFeatureCloud-module__rd6Osa__heading {
  color: #0a0f1e;
  letter-spacing: -1.25px;
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
}

.PlatformFeatureCloud-module__rd6Osa__subtext {
  color: #555;
  text-align: center;
  max-width: 570px;
  margin: 0 auto 52px;
  font-size: 1rem;
  line-height: 1.65;
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud {
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud > * {
  grid-column: span 2;
}

.PlatformFeatureCloud-module__rd6Osa__pill {
  cursor: pointer;
  background: #fff;
  border: 1px solid #00000017;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 13px 20px;
  text-decoration: none;
  transition: border-color .22s, background .22s, box-shadow .22s, color .22s, transform .2s;
  display: flex;
  box-shadow: 0 1px 4px #0000000d;
}

.PlatformFeatureCloud-module__rd6Osa__pill:hover {
  background: #4c51ff0f;
  border-color: #4c51ff73;
  transform: translateY(-3px)scale(1.04);
  box-shadow: 0 4px 16px #4c51ff24;
}

.PlatformFeatureCloud-module__rd6Osa__pillIcon {
  color: var(--pill-accent);
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.PlatformFeatureCloud-module__rd6Osa__pillLabel {
  color: #2a2a3a;
  white-space: nowrap;
  min-width: 0;
  font-size: .9375rem;
  font-weight: 600;
  transition: color .22s;
}

.PlatformFeatureCloud-module__rd6Osa__pill:hover .PlatformFeatureCloud-module__rd6Osa__pillLabel {
  color: #0a0f1e;
}

.PlatformFeatureCloud-module__rd6Osa__pillArrow {
  color: #0a0f1e33;
  flex-shrink: 0;
  transition: color .22s, transform .22s;
}

.PlatformFeatureCloud-module__rd6Osa__pill:hover .PlatformFeatureCloud-module__rd6Osa__pillArrow {
  color: var(--pill-accent);
  transform: translate(2px, -2px);
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) {
  grid-column: 1 / -1;
  justify-content: center;
  display: flex;
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) .PlatformFeatureCloud-module__rd6Osa__pill {
  width: auto;
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud > :nth-last-child(2):nth-child(4n+1) {
  grid-column: 3 / span 2;
}

.PlatformFeatureCloud-module__rd6Osa__pillCloud > :nth-last-child(3):nth-child(4n+1) {
  grid-column: 2 / span 2;
}

@media (max-width: 860px) {
  .PlatformFeatureCloud-module__rd6Osa__pillCloud {
    grid-template-columns: repeat(4, 1fr);
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) {
    grid-column: span 2;
    display: block;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) .PlatformFeatureCloud-module__rd6Osa__pill {
    width: 100%;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud > :nth-last-child(2):nth-child(4n+1), .PlatformFeatureCloud-module__rd6Osa__pillCloud > :nth-last-child(3):nth-child(4n+1) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .PlatformFeatureCloud-module__rd6Osa__root {
    padding: 72px 16px;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .PlatformFeatureCloud-module__rd6Osa__pill {
    gap: 7px;
    padding: 11px 14px;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillLabel {
    white-space: normal;
    text-align: center;
    font-size: .8125rem;
    line-height: 1.3;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillArrow {
    display: none;
  }
}

@media (max-width: 380px) {
  .PlatformFeatureCloud-module__rd6Osa__pillCloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) {
    grid-column: span 2;
    display: block;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillCloud > :last-child:nth-child(4n+1) .PlatformFeatureCloud-module__rd6Osa__pill {
    width: 100%;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillLabel {
    white-space: nowrap;
    font-size: .9375rem;
  }

  .PlatformFeatureCloud-module__rd6Osa__pillArrow {
    display: flex;
  }
}

.PlatformFeatureCloud-module__rd6Osa__headingMuted {
  color: #8a8799;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__root {
  background: none;
  padding: 104px 24px;
}

:is(.homeClean .PlatformFeatureCloud-module__rd6Osa__fadeEyebrow, .homeClean .PlatformFeatureCloud-module__rd6Osa__fadeHeading, .homeClean .PlatformFeatureCloud-module__rd6Osa__fadeSubtext) {
  --from-y: 8px;
  animation-duration: .45s;
  animation-timing-function: ease-out;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__eyebrow {
  color: #706b88;
  letter-spacing: .12em;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 600;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__heading {
  color: #16151d;
  letter-spacing: -.035em;
  text-wrap: balance;
  margin-bottom: 16px;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__subtext {
  color: #55535f;
  margin-bottom: 48px;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1040px;
  display: flex;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud > .PlatformFeatureCloud-module__rd6Osa__pillWrap {
  --from-y: 6px;
  flex: 0 0 calc(25% - 7.5px);
  animation-name: PlatformFeatureCloud-module__rd6Osa__slideUp;
  animation-duration: .4s;
  animation-timing-function: ease-out;
  display: block;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud > .PlatformFeatureCloud-module__rd6Osa__pillWrap .PlatformFeatureCloud-module__rd6Osa__pill {
  width: 100%;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pill {
  height: 44px;
  box-shadow: none;
  border-color: #16151d14;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px 0 18px;
  transition: border-color .2s, color .2s;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pill:hover {
  box-shadow: none;
  background: #fff;
  border-color: #c4b1f7;
  transform: none;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pill:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillIcon {
  color: #75737f;
  transition: color .2s;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillIcon svg {
  width: 16px;
  height: 16px;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillLabel {
  color: #16151d;
  font-size: .875rem;
  font-weight: 500;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pillArrow {
  color: #b3b0c2;
  margin-left: auto;
}

:is(.homeClean .PlatformFeatureCloud-module__rd6Osa__pill:hover .PlatformFeatureCloud-module__rd6Osa__pillIcon, .homeClean .PlatformFeatureCloud-module__rd6Osa__pill:hover .PlatformFeatureCloud-module__rd6Osa__pillArrow) {
  color: #7d47eb;
}

.homeClean .PlatformFeatureCloud-module__rd6Osa__pill:hover .PlatformFeatureCloud-module__rd6Osa__pillLabel {
  color: #6033ca;
}

@media (max-width: 1100px) {
  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud {
    max-width: 820px;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud > .PlatformFeatureCloud-module__rd6Osa__pillWrap {
    flex-basis: calc(33.3333% - 6.66667px);
  }
}

@media (max-width: 900px) {
  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud {
    gap: 8px;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud > .PlatformFeatureCloud-module__rd6Osa__pillWrap {
    flex: none;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillCloud > .PlatformFeatureCloud-module__rd6Osa__pillWrap .PlatformFeatureCloud-module__rd6Osa__pill {
    width: auto;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pill {
    gap: 8px;
    height: 40px;
    padding: 0 14px;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillLabel {
    white-space: nowrap;
    font-size: .8125rem;
  }

  .homeClean .PlatformFeatureCloud-module__rd6Osa__pillArrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .homeClean .PlatformFeatureCloud-module__rd6Osa__root {
    padding: 80px 16px;
  }
}

/* [project]/apps/website/components/IntegrationsShowcase/IntegrationsShowcaseLazy.module.css [app-client] (css) */
.IntegrationsShowcaseLazy-module__mW1e3W__placeholder {
  min-height: 790px;
}

@media (max-width: 1024px) {
  .IntegrationsShowcaseLazy-module__mW1e3W__placeholder {
    min-height: 670px;
  }
}

/* [project]/apps/website/components/GradientOutlineButton/GradientOutlineButton.module.css [app-client] (css) */
.GradientOutlineButton-module__i-IQqG__gradient {
  background: linear-gradient(var(--background-color), var(--background-color)) padding-box, linear-gradient(91deg, #6931ff 0.8%, #ff3ead 111.7%) border-box;
  color: #000;
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 216px;
  height: 60px;
  margin-top: 12px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: inline-flex;
}

@media (min-width: 768px) {
  .GradientOutlineButton-module__i-IQqG__gradient {
    margin-top: 0;
  }
}

.GradientOutlineButton-module__i-IQqG__gradientText {
  letter-spacing: -.36px;
  background: linear-gradient(91deg, #6931ff .8%, #ff3ead 111.7%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 16px;
  font-weight: 600;
}

.GradientOutlineButton-module__i-IQqG__gradient:hover {
  box-shadow: -54px 124px 38px #4f436500, -34px 80px 35px #4f436503, -19px 45px 29px #4f43650d, -9px 20px 22px #4f436517, -2px 5px 12px #4f43651a;
}

/* [project]/apps/website/components/TestimonialsV2/TestimonialsV2.module.css [app-client] (css) */
@keyframes TestimonialsV2-module__4Ca48W__slideUp {
  from {
    opacity: 0;
    transform: translateY(var(--slide-from, 24px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .TestimonialsV2-module__4Ca48W__fadeHeader, .TestimonialsV2-module__4Ca48W__fadeSubtext, .TestimonialsV2-module__4Ca48W__card {
    opacity: 1;
    animation: none;
  }
}

.TestimonialsV2-module__4Ca48W__root {
  background: #f7f8ff;
  padding: 96px 24px;
}

.TestimonialsV2-module__4Ca48W__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.TestimonialsV2-module__4Ca48W__fadeHeader {
  --slide-from: 16px;
  animation: .5s both TestimonialsV2-module__4Ca48W__slideUp;
}

.TestimonialsV2-module__4Ca48W__fadeSubtext {
  --slide-from: 12px;
  animation: .45s 80ms both TestimonialsV2-module__4Ca48W__slideUp;
}

.TestimonialsV2-module__4Ca48W__heading {
  color: #0a0f1e;
  letter-spacing: -1.5px;
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}

.TestimonialsV2-module__4Ca48W__eyebrow {
  color: #4c51ff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 16px;
  font-size: .8125rem;
  font-weight: 700;
}

.TestimonialsV2-module__4Ca48W__subtext {
  color: #555;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
  font-size: 1rem;
  line-height: 1.65;
}

.TestimonialsV2-module__4Ca48W__masonryWrap {
  position: relative;
}

.TestimonialsV2-module__4Ca48W__masonryGrid {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 44px;
  display: grid;
}

.TestimonialsV2-module__4Ca48W__masonryCol {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__card {
  background: #fff;
  border: 1px solid #00000012;
  border-radius: 18px;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  transition: box-shadow .22s, transform .22s;
  animation: .5s both TestimonialsV2-module__4Ca48W__slideUp;
  display: flex;
  box-shadow: 0 1px 3px #0000000a, 0 4px 16px #0000000d;
}

.TestimonialsV2-module__4Ca48W__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px #0000000f, 0 16px 40px #0000001a;
}

.TestimonialsV2-module__4Ca48W__blurred {
  filter: blur(5px);
  opacity: .7;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.TestimonialsV2-module__4Ca48W__blurred:hover {
  transform: none;
  box-shadow: 0 1px 3px #0000000a, 0 4px 16px #0000000d;
}

.TestimonialsV2-module__4Ca48W__cardTop {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__sourceLogo {
  align-items: center;
  height: 20px;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__stars {
  align-items: center;
  gap: 2px;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__quoteIcon {
  color: #4c51ff2e;
  margin-top: -8px;
  margin-bottom: -12px;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.TestimonialsV2-module__4Ca48W__reviewText {
  color: #2a2a3a !important;
  margin: 0 !important;
  font-family: Inter, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.TestimonialsV2-module__4Ca48W__reviewer {
  border-top: 1px solid #0000000f;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__avatar {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.TestimonialsV2-module__4Ca48W__avatarInitials {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
}

.TestimonialsV2-module__4Ca48W__reviewerInfo {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.TestimonialsV2-module__4Ca48W__reviewerName {
  color: #0a0f1e;
  font-size: .875rem;
  font-weight: 700;
}

.TestimonialsV2-module__4Ca48W__reviewerRole {
  color: #888;
  font-size: .8rem;
}

.TestimonialsV2-module__4Ca48W__ctaRow {
  justify-content: center;
  margin-top: 24px;
  display: flex;
}

@media (min-width: 768px) {
  .TestimonialsV2-module__4Ca48W__ctaRow {
    margin-top: 0;
  }
}

.TestimonialsV2-module__4Ca48W__viewMoreOverlay {
  pointer-events: none;
  background: linear-gradient(#f7f8ff00 0%, #f7f8ffd9 45%, #f7f8ff 75%);
  justify-content: center;
  align-items: flex-end;
  height: 260px;
  padding-bottom: 32px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.TestimonialsV2-module__4Ca48W__viewMoreBtn {
  pointer-events: auto;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(92deg, #6931ff 2.18%, #ff3ead 83.39%);
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 16px #6931ff40;
}

.TestimonialsV2-module__4Ca48W__viewMoreBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #6931ff52;
}

.TestimonialsV2-module__4Ca48W__viewAllBtn {
  color: #4c51ff;
  background: none;
  border: 1px solid #4c51ff4d;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  display: inline-flex;
}

.TestimonialsV2-module__4Ca48W__viewAllBtn:hover {
  background: #4c51ff0f;
  border-color: #4c51ff8c;
}

@media (max-width: 900px) {
  .TestimonialsV2-module__4Ca48W__masonryGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .TestimonialsV2-module__4Ca48W__masonryCol:last-child {
    display: none;
  }
}

@media (max-width: 580px) {
  .TestimonialsV2-module__4Ca48W__root {
    padding: 72px 16px;
  }

  .TestimonialsV2-module__4Ca48W__masonryGrid {
    grid-template-columns: 1fr;
  }

  .TestimonialsV2-module__4Ca48W__masonryCol:not(:first-child) {
    display: none;
  }
}

.TestimonialsV2-module__4Ca48W__clean {
  background: none;
  border-top: 1px solid #16151d0f;
  padding: 104px 24px 112px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__fadeHeader, .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__fadeSubtext, .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__card {
  animation: none;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__eyebrow {
  color: #706b88;
  letter-spacing: .12em;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 600;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__heading {
  color: #16151d;
  letter-spacing: -.035em;
  margin-bottom: 16px;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.TestimonialsV2-module__4Ca48W__headingMuted {
  color: #8a8799;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__subtext {
  color: #55535f;
  margin-bottom: 56px;
  font-size: 1rem;
  line-height: 1.65;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__masonryGrid, .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__masonryCol {
  gap: 16px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__masonryGrid {
  margin-bottom: 48px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__card {
  box-shadow: none;
  border: 1px solid #16151d14;
  border-radius: 16px;
  gap: 16px;
  padding: 24px;
  transition: border-color .2s;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__card:hover {
  box-shadow: none;
  border-color: #16151d24;
  transform: none;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__reviewText {
  letter-spacing: -.005em;
  color: #16151d !important;
  font-size: .9375rem !important;
  line-height: 1.65 !important;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__reviewer {
  border-top-color: #16151d0f;
  gap: 10px;
  padding-top: 16px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__avatar {
  width: 32px;
  height: 32px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__avatarInitials {
  font-size: .75rem;
  font-weight: 600;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__reviewerInfo {
  gap: 1px;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__reviewerName {
  color: #3a3945;
  font-size: .8125rem;
  font-weight: 500;
}

.TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__reviewerRole {
  color: #75737f;
  font-size: .8125rem;
}

.TestimonialsV2-module__4Ca48W__browseLink {
  color: #16151d;
  background: #fff;
  border: 1px solid #16151d1f;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s, gap .2s;
  display: inline-flex;
}

.TestimonialsV2-module__4Ca48W__browseLink:hover {
  color: #6033ca;
  border-color: #c4b1f7;
  gap: 9px;
}

.TestimonialsV2-module__4Ca48W__browseLink:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

@media (max-width: 580px) {
  .TestimonialsV2-module__4Ca48W__clean {
    padding: 80px 16px 88px;
  }

  .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__subtext {
    margin-bottom: 40px;
  }

  .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__masonryGrid {
    margin-bottom: 32px;
  }

  .TestimonialsV2-module__4Ca48W__clean .TestimonialsV2-module__4Ca48W__card {
    padding: 20px;
  }
}

/* [project]/apps/website/components/HomeCTA/HomeCTA.module.css [app-client] (css) */
@keyframes HomeCTA-module__6PHreq__slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .HomeCTA-module__6PHreq__inner {
    opacity: 1;
    animation: none;
  }
}

.HomeCTA-module__6PHreq__wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 24px;
}

@media (min-width: 768px) {
  .HomeCTA-module__6PHreq__wrapper {
    padding: 64px;
  }
}

.HomeCTA-module__6PHreq__root {
  text-align: center;
  background: #05071e;
  border-radius: 32px;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.HomeCTA-module__6PHreq__glow {
  pointer-events: none;
  background: radial-gradient(#6931ff2e 0%, #6931ff0f 45%, #0000 72%);
  border-radius: 50%;
  width: 700px;
  height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.HomeCTA-module__6PHreq__boltWrap {
  justify-content: center;
  margin-bottom: 1.8rem;
  display: flex;
}

.HomeCTA-module__6PHreq__boltSvg {
  width: 64px;
  height: 64px;
  overflow: visible;
}

.HomeCTA-module__6PHreq__inner {
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  animation: .55s both HomeCTA-module__6PHreq__slideUp;
  position: relative;
}

.HomeCTA-module__6PHreq__heading {
  color: #fff;
  letter-spacing: -2px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.HomeCTA-module__6PHreq__subtext {
  color: #fff;
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.7;
}

.HomeCTA-module__6PHreq__subtext strong {
  color: #fff;
  font-weight: 600;
}

.HomeCTA-module__6PHreq__ctaRow {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  display: flex;
}

.HomeCTA-module__6PHreq__btnPrimary {
  color: #fff;
  letter-spacing: -.1px;
  background: #6931ff;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .15s;
  display: inline-flex;
  box-shadow: 0 4px 20px #6931ff59;
}

.HomeCTA-module__6PHreq__btnPrimary:hover {
  background: #7d47eb;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px #7d47eb73;
}

.HomeCTA-module__6PHreq__btnOutline {
  color: #ffffffbf;
  background: none;
  border: 1px solid #ffffff2e;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
  display: inline-flex;
}

.HomeCTA-module__6PHreq__btnOutline:hover {
  color: #fff;
  background: #ffffff0f;
  border-color: #ffffff52;
}

.HomeCTA-module__6PHreq__rating {
  color: #ffffffd9;
  letter-spacing: .2px;
  margin: 0 0 20px;
  font-size: .9375rem;
  font-weight: 500;
}

.HomeCTA-module__6PHreq__trustRow {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.HomeCTA-module__6PHreq__trustItem {
  color: #fff;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 500;
  display: inline-flex;
}

.HomeCTA-module__6PHreq__trustDot {
  background: #504ee4;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
}

.HomeCTA-module__6PHreq__trustDivider {
  background: #ffffff1f;
  flex-shrink: 0;
  width: 1px;
  height: 12px;
}

@media (max-width: 580px) {
  .HomeCTA-module__6PHreq__root {
    padding: 80px 20px;
  }

  .HomeCTA-module__6PHreq__ctaRow {
    flex-direction: column;
    align-items: stretch;
  }

  .HomeCTA-module__6PHreq__btnOutline {
    justify-content: center;
  }

  .HomeCTA-module__6PHreq__trustDivider {
    display: none;
  }

  .HomeCTA-module__6PHreq__trustRow {
    gap: 8px;
  }
}

.HomeCTA-module__6PHreq__wrapper.HomeCTA-module__6PHreq__clean {
  max-width: 75rem;
  padding: 16px 24px 112px;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__root {
  background: #16151d;
  border-radius: 24px;
  padding: 96px 24px;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__glow {
  background: radial-gradient(#7d47eb33 0%, #7d47eb0f 45%, #0000 70%);
  width: 760px;
  height: 360px;
  top: 0;
  transform: translate(-50%, -58%);
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__inner {
  max-width: 600px;
  animation: none;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__boltWrap {
  margin-bottom: 28px;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__boltSvg {
  width: 40px;
  height: 40px;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__heading {
  color: #fff;
  letter-spacing: -.035em;
  margin: 0 0 16px;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__subtext {
  color: #ffffffad;
  max-width: 30rem;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.65;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__ctaRow {
  gap: 12px;
  margin-bottom: 24px;
}

.HomeCTA-module__6PHreq__cleanPrimary, .HomeCTA-module__6PHreq__cleanSecondary {
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, border-color .2s, gap .2s;
  display: inline-flex;
}

.HomeCTA-module__6PHreq__cleanPrimary {
  color: #fff;
  background: linear-gradient(81deg, #7d47eb 20%, #9d36e3 100%);
}

.HomeCTA-module__6PHreq__cleanPrimary:hover {
  background: linear-gradient(81deg, #8a58f0 20%, #a647ea 100%);
  gap: 9px;
}

.HomeCTA-module__6PHreq__cleanSecondary {
  color: #fff;
  background: none;
  border: 1px solid #fff3;
}

.HomeCTA-module__6PHreq__cleanSecondary:hover {
  background: #ffffff0f;
  border-color: #fff6;
}

:is(.HomeCTA-module__6PHreq__cleanPrimary:focus-visible, .HomeCTA-module__6PHreq__cleanSecondary:focus-visible) {
  outline-offset: 2px;
  outline: 2px solid #7d47eb;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__trustItem {
  color: #fff9;
  font-weight: 400;
}

.HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__trustDot {
  background: #7d47eb;
}

@media (max-width: 580px) {
  .HomeCTA-module__6PHreq__wrapper.HomeCTA-module__6PHreq__clean {
    padding: 8px 16px 80px;
  }

  .HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__root {
    border-radius: 20px;
    padding: 72px 20px;
  }

  .HomeCTA-module__6PHreq__clean .HomeCTA-module__6PHreq__boltWrap {
    margin-bottom: 24px;
  }

  .HomeCTA-module__6PHreq__cleanPrimary, .HomeCTA-module__6PHreq__cleanSecondary {
    height: 44px;
  }
}

/* [project]/apps/website/components/TrustedBySection/TrustedBySection.module.css [app-client] (css) */
@keyframes TrustedBySection-module__l8aZ4G__marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.TrustedBySection-module__l8aZ4G__frame {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 20px;
  width: 100%;
  padding: 32px 0 34px;
  box-shadow: 0 2px 16px #1018400d;
}

.TrustedBySection-module__l8aZ4G__marquee {
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
}

.TrustedBySection-module__l8aZ4G__marqueeGradient {
  -webkit-mask-image: linear-gradient(to right, #0000 0%, #000 10% 90%, #0000 100%);
  mask-image: linear-gradient(to right, #0000 0%, #000 10% 90%, #0000 100%);
}

.TrustedBySection-module__l8aZ4G__track {
  width: max-content;
  animation: TrustedBySection-module__l8aZ4G__marquee-scroll var(--marquee-duration, 60s) linear infinite;
  will-change: transform;
  align-items: center;
  gap: 3rem;
  display: flex;
}

.TrustedBySection-module__l8aZ4G__track:hover {
  animation-play-state: paused;
}

.TrustedBySection-module__l8aZ4G__clientWrapper {
  flex-shrink: 0;
}

.TrustedBySection-module__l8aZ4G__clients {
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: var(--logo-height, 2rem);
  max-width: var(--logo-width, 7.5rem);
}

.TrustedBySection-module__l8aZ4G__footerSlot {
  width: 100%;
  margin-top: 30px;
  padding-top: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .TrustedBySection-module__l8aZ4G__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 3rem;
    width: 100%;
    animation: none;
  }

  .TrustedBySection-module__l8aZ4G__track .TrustedBySection-module__l8aZ4G__clientWrapper[aria-hidden="true"] {
    display: none;
  }

  .TrustedBySection-module__l8aZ4G__marqueeGradient {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.TrustedBySection-module__l8aZ4G__clean {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__cleanTitle {
  color: #706b88;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__marquee {
  margin-top: 28px;
}

.TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__track {
  gap: 3.5rem;
}

.TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__track:hover, .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__track.TrustedBySection-module__l8aZ4G__paused {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .TrustedBySection-module__l8aZ4G__clean {
    padding: 40px 16px 0;
  }

  .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__cleanTitle {
    max-width: 18rem;
    font-size: .75rem;
  }

  .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__marquee {
    margin-top: 22px;
  }

  .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__track {
    gap: 2.5rem;
  }

  .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__clients {
    max-width: 6.5rem;
    max-height: 1.625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .TrustedBySection-module__l8aZ4G__clean .TrustedBySection-module__l8aZ4G__track {
    gap: 24px 48px;
  }
}

/* [project]/apps/website/components/RatingSection/RatingSection.module.css [app-client] (css) */
.RatingSection-module__oHMbNG__root {
  padding: 0 24px;
}

.RatingSection-module__oHMbNG__dark {
  background: #05071e;
}

.RatingSection-module__oHMbNG__inner {
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.RatingSection-module__oHMbNG__cards {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.RatingSection-module__oHMbNG__card {
  white-space: nowrap;
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 100px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  transition: transform .18s, box-shadow .18s;
  display: inline-flex;
  box-shadow: 0 1px 4px #0000000d;
}

.RatingSection-module__oHMbNG__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px #6931ff1a;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__card {
  box-shadow: none;
  background: #ffffff0f;
  border-color: #ffffff1a;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__card:hover {
  background: #ffffff17;
}

.RatingSection-module__oHMbNG__logoWrap {
  align-items: center;
  height: 18px;
  display: flex;
}

.RatingSection-module__oHMbNG__logo {
  object-fit: contain;
  width: auto;
  max-height: 18px;
}

.RatingSection-module__oHMbNG__sep {
  background: #0000001f;
  flex-shrink: 0;
  width: 1px;
  height: 14px;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__sep {
  background: #ffffff26;
}

.RatingSection-module__oHMbNG__stars {
  color: #f59e0b;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  font-size: .6875rem;
  line-height: 1;
}

.RatingSection-module__oHMbNG__score {
  color: #0e0d5999;
  white-space: nowrap;
  margin: 0;
  font-size: .75rem;
  font-weight: 500;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__score {
  color: #ffffff80;
}

.RatingSection-module__oHMbNG__summary {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  display: flex;
}

.RatingSection-module__oHMbNG__summaryLine {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  display: flex;
}

.RatingSection-module__oHMbNG__summaryStars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 1;
}

.RatingSection-module__oHMbNG__summaryScore {
  letter-spacing: -.8px;
  color: #0a0f1e;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.RatingSection-module__oHMbNG__summaryMax {
  color: #0e0d5966;
  font-size: 1rem;
  font-weight: 600;
}

.RatingSection-module__oHMbNG__summaryCaption {
  color: #666;
  font-size: .9375rem;
}

.RatingSection-module__oHMbNG__summaryLogos {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 32px;
  display: flex;
}

.RatingSection-module__oHMbNG__summaryLogo {
  object-fit: contain;
  width: auto;
  max-width: 8.5rem;
  height: 26px;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__summaryScore {
  color: #fff;
}

.RatingSection-module__oHMbNG__dark .RatingSection-module__oHMbNG__summaryCaption {
  color: #fff9;
}

@media (max-width: 640px) {
  .RatingSection-module__oHMbNG__root {
    padding: 16px;
  }

  .RatingSection-module__oHMbNG__summary {
    gap: 14px;
    padding: 0 4px;
  }

  .RatingSection-module__oHMbNG__summaryScore {
    font-size: 1.25rem;
  }

  .RatingSection-module__oHMbNG__summaryCaption {
    font-size: .875rem;
  }

  .RatingSection-module__oHMbNG__summaryLogos {
    gap: 12px 22px;
  }

  .RatingSection-module__oHMbNG__summaryLogo {
    height: 20px;
  }

  .RatingSection-module__oHMbNG__cards {
    gap: 6px;
  }

  .RatingSection-module__oHMbNG__card:last-child {
    display: none;
  }

  .RatingSection-module__oHMbNG__card {
    padding: 6px 11px;
  }

  .RatingSection-module__oHMbNG__logo {
    max-height: 15px;
  }

  .RatingSection-module__oHMbNG__score {
    font-size: .6875rem;
  }
}

.homeClean .RatingSection-module__oHMbNG__root {
  margin-top: 36px;
  padding: 0 16px;
}

.homeClean .RatingSection-module__oHMbNG__cards {
  gap: 10px;
}

.homeClean .RatingSection-module__oHMbNG__card {
  height: 36px;
  box-shadow: none;
  border-color: #16151d14;
  gap: 10px;
  padding: 0 14px;
  transition: border-color .2s;
}

.homeClean .RatingSection-module__oHMbNG__card:hover {
  box-shadow: none;
  border-color: #16151d29;
  transform: none;
}

.homeClean .RatingSection-module__oHMbNG__logoWrap {
  height: 16px;
}

.homeClean .RatingSection-module__oHMbNG__logo {
  max-width: 104px;
  max-height: 16px;
}

.homeClean .RatingSection-module__oHMbNG__sep {
  background: #16151d1a;
  height: 12px;
}

.homeClean .RatingSection-module__oHMbNG__stars {
  letter-spacing: 1px;
  font-size: .625rem;
}

.homeClean .RatingSection-module__oHMbNG__score {
  color: #16151d;
  font-variant-numeric: tabular-nums;
  font-size: .8125rem;
}

@media (max-width: 640px) {
  .homeClean .RatingSection-module__oHMbNG__root {
    margin-top: 28px;
  }

  .homeClean .RatingSection-module__oHMbNG__cards {
    grid-template-columns: repeat(2, auto);
    gap: 8px;
    display: grid;
  }

  .homeClean .RatingSection-module__oHMbNG__card {
    justify-content: center;
    gap: 8px;
    height: 32px;
    padding: 0 11px;
  }

  .homeClean .RatingSection-module__oHMbNG__logoWrap {
    height: 14px;
  }

  .homeClean .RatingSection-module__oHMbNG__logo {
    max-height: 14px;
  }

  .homeClean .RatingSection-module__oHMbNG__score {
    font-size: .75rem;
  }
}

/*# sourceMappingURL=apps_website_components_acea74d3._.css.map*/