/* [project]/components/layout/header.css [app-client] (css) */
.site-header-logo-link {
  flex-shrink: 0;
  align-items: center;
  max-width: 160px;
  height: 44px;
  display: inline-flex;
  overflow: hidden;
}

.site-header-logo {
  object-fit: contain;
  object-position: left center;
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 640px) {
  .site-header-logo-link {
    max-width: 180px;
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .site-header-logo-link {
    max-width: 200px;
  }
}

/* [project]/components/sections/app-icon.css [app-client] (css) */
@keyframes app-icon-shine-sweep {
  0% {
    opacity: 0;
    transform: translateX(-140%)rotate(24deg);
  }

  10% {
    opacity: .95;
  }

  85% {
    opacity: .35;
  }

  100% {
    opacity: 0;
    transform: translateX(270%)rotate(24deg);
  }
}

.app-icon-shine-bar {
  pointer-events: none;
  background: linear-gradient(90deg, #0000 0%, #ffffff1f 28%, #ffffffeb 50%, #ffffff1f 72%, #0000 100%);
  width: 44%;
  height: 124%;
  animation: .68s cubic-bezier(.33, .12, .18, 1) forwards app-icon-shine-sweep;
  position: absolute;
  top: -12%;
  left: 0;
}

/* [project]/components/ui/animated-scene-visual.css [app-client] (css) */
.scene-aspect-app-promo {
  aspect-ratio: 795 / 575;
}

@media (min-width: 768px) {
  .scene-aspect-app-promo {
    aspect-ratio: 880 / 575;
  }
}

/* [project]/components/sections/seller-app-cta.css [app-client] (css) */
.seller-app-cta {
  left: 16px;
  right: 104px;
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 6px);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s;
  position: fixed;
  transform: translateY(14px);
}

.seller-app-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.seller-app-cta__btn {
  color: #fff;
  width: 100%;
  min-height: 56px;
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  text-align: center;
  text-shadow: 0 1px 2px #14083c59;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(100deg, #361f97 0%, #5b3fd6 30%, #a343d6 62%, #361f97 100%) 0 0 / 220% 100%;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  padding: 15px 44px 15px 16px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  animation: 6s ease-in-out infinite seller-app-cta-flow, 2.8s ease-in-out infinite seller-app-cta-breathe;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff47, 0 0 0 1px #ffffff2e, 0 10px 26px -6px #00000080;
}

.seller-app-cta__btn:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(to right, #fff0 0%, #ffffff61 50%, #fff0 100%);
  width: 45%;
  height: 220%;
  animation: 3.6s ease-in-out infinite seller-app-cta-shine;
  position: absolute;
  top: -60%;
  left: -60%;
  transform: rotate(22deg);
}

.seller-app-cta__btn:hover, .seller-app-cta__btn:focus {
  color: #fff;
  text-decoration: none;
}

.seller-app-cta__btn:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #fff;
}

.seller-app-cta__btn:active {
  animation: none;
  transform: scale(.985);
  box-shadow: inset 0 1px #ffffff47, 0 0 0 1px #ffffff2e, 0 4px 12px -4px #00000073;
}

.seller-app-cta__text {
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.seller-app-cta__arrow {
  z-index: 1;
  background: #fff3;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  animation: 2.2s ease-in-out infinite seller-app-cta-nudge;
  position: absolute;
  top: 50%;
  right: 15px;
}

.seller-app-cta__arrow:after {
  content: "";
  border-top: 2px solid var(--witdeal-accent, #25f482);
  border-right: 2px solid var(--witdeal-accent, #25f482);
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(45deg);
}

@keyframes seller-app-cta-flow {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

@keyframes seller-app-cta-breathe {
  0%, 100% {
    box-shadow: inset 0 1px #ffffff47, 0 0 0 1px #ffffff2e, 0 10px 26px -6px #00000080;
  }

  50% {
    box-shadow: inset 0 1px #ffffff47, 0 0 0 1px #ffffff42, 0 14px 32px -6px #7832be8c;
  }
}

@keyframes seller-app-cta-shine {
  0% {
    left: -60%;
  }

  55%, 100% {
    left: 130%;
  }
}

@keyframes seller-app-cta-nudge {
  0%, 60%, 100% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(3px);
  }
}

@media (min-width: 768px) {
  .seller-app-cta {
    width: min(100% - 260px, 420px);
    bottom: 36px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 14px);
  }

  .seller-app-cta.is-visible {
    transform: translate(-50%);
  }

  .seller-app-cta__btn {
    min-height: 60px;
    padding: 15px 50px 15px 22px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seller-app-cta {
    transition: opacity .2s, visibility .2s;
    transform: translateY(0);
  }

  @media (min-width: 768px) {
    .seller-app-cta {
      transform: translate(-50%);
    }
  }

  .seller-app-cta__btn, .seller-app-cta__btn:before, .seller-app-cta__arrow {
    animation: none !important;
  }

  .seller-app-cta__btn:before {
    display: none;
  }
}

/* [project]/components/ui/bottom-sheet.css [app-client] (css) */
@keyframes bottom-sheet-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bottom-sheet-down {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes bottom-sheet-in {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.96);
  }

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

@keyframes bottom-sheet-out {
  from {
    opacity: 1;
    transform: translateY(0)scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px)scale(.98);
  }
}

@keyframes bottom-sheet-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bottom-sheet-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.bottom-sheet-backdrop {
  overscroll-behavior: contain;
  height: 100vh;
  animation: .28s ease-out bottom-sheet-backdrop-in;
}

.bottom-sheet-backdrop.closing {
  pointer-events: none;
  animation: .24s ease-in forwards bottom-sheet-backdrop-out;
}

.bottom-sheet-panel {
  max-height: 92vh;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  animation: .28s ease-out bottom-sheet-up;
  position: relative;
  box-shadow: 0 40px 90px -24px #000c;
}

@media (min-width: 640px) {
  .bottom-sheet-panel--dark:after {
    content: "";
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(to top, #0000008c 0%, #0000 100%);
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.bottom-sheet-progress {
  background: #00000012;
  flex-shrink: 0;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.bottom-sheet-progress-bar {
  transform-origin: 0;
  background: linear-gradient(90deg,
    var(--witdeal-accent, #25f482) 0%,
    color-mix(in srgb, var(--witdeal-accent, #25f482) 55%, #fff) 100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
}

.bottom-sheet-panel--dark .bottom-sheet-progress {
  background: #ffffff14;
}

.bottom-sheet-top-btn {
  animation: .2s ease-out bottom-sheet-top-btn-in;
}

@keyframes bottom-sheet-top-btn-in {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }

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

.bottom-sheet-panel.closing {
  animation: .24s ease-in forwards bottom-sheet-down;
}

@supports (height: 100dvh) {
  .bottom-sheet-backdrop {
    height: 100dvh;
  }

  .bottom-sheet-panel {
    max-height: 92dvh;
  }
}

@media (min-width: 640px) {
  .bottom-sheet-panel {
    max-height: 92vh;
    padding-bottom: 0;
    animation: .32s cubic-bezier(.22, 1, .36, 1) bottom-sheet-in;
  }

  .bottom-sheet-panel.closing {
    animation: .2s ease-in forwards bottom-sheet-out;
  }

  @supports (height: 100dvh) {
    .bottom-sheet-panel {
      max-height: 92dvh;
    }
  }
}

.bottom-sheet-body {
  scrollbar-width: thin;
  scrollbar-color: #0000004d transparent;
}

.bottom-sheet-body::-webkit-scrollbar {
  width: 10px;
}

.bottom-sheet-body::-webkit-scrollbar-track {
  background: none;
}

.bottom-sheet-body::-webkit-scrollbar-thumb {
  background: #00000047 padding-box padding-box;
  border: 3px solid #0000;
  border-radius: 9999px;
}

.bottom-sheet-body::-webkit-scrollbar-thumb:hover {
  background: #00000073 padding-box padding-box;
}

.bottom-sheet-panel--dark .bottom-sheet-body {
  scrollbar-color: #ffffff4d transparent;
}

.bottom-sheet-panel--dark .bottom-sheet-body::-webkit-scrollbar-thumb {
  background: #ffffff47 padding-box padding-box;
}

.bottom-sheet-panel--dark .bottom-sheet-body::-webkit-scrollbar-thumb:hover {
  background: #ffffff80 padding-box padding-box;
}

@media (prefers-reduced-motion: reduce) {
  .bottom-sheet-panel, .bottom-sheet-panel.closing, .bottom-sheet-backdrop, .bottom-sheet-backdrop.closing {
    animation: none;
  }

  .bottom-sheet-backdrop.closing {
    opacity: 0;
  }
}

/* [project]/components/sections/seller-consult-fab.css [app-client] (css) */
.seller-fab {
  --fab-bg: var(--witdeal-primary, #361f97);
  --fab-ink: #fff;
  --fab-ring: #fff;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  cursor: pointer;
  background: radial-gradient(120% 120% at 30% 22%,
    color-mix(in srgb, var(--fab-bg) 78%, #fff) 0%,
    var(--fab-bg) 58%);
  width: 68px;
  height: 68px;
  color: var(--fab-ink);
  box-shadow: inset 0 1px 0 #ffffff4d,
    inset 0 -2px 6px -2px #00000038,
    0 0 0 3px var(--fab-ring),
    0 0 0 9px #ffffff29,
    0 12px 30px -8px #00000080;
  opacity: 0;
  visibility: hidden;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s;
  display: flex;
  position: fixed;
  transform: translateY(14px)scale(.9);
}

.seller-fab:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  border: 2px solid #ffffffd9;
  border-radius: 50%;
  animation: 2.8s ease-out infinite seller-fab-ring;
  position: absolute;
  inset: 0;
}

.seller-fab:not(.is-visible):after {
  animation: none;
}

@keyframes seller-fab-ring {
  0% {
    opacity: .5;
    transform: scale(1);
  }

  70%, 100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.seller-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)scale(1);
}

.seller-fab:hover {
  box-shadow: inset 0 1px 0 #ffffff4d,
    inset 0 -2px 6px -2px #00000038,
    0 0 0 3px var(--fab-ring),
    0 0 0 14px #ffffff38,
    0 16px 34px -8px #0000008c;
  transform: translateY(-2px)scale(1.05);
}

.seller-fab:active {
  transform: translateY(0)scale(.95);
}

.seller-fab:focus-visible {
  outline-offset: 6px;
  outline: 3px solid #fff;
}

.seller-fab-label {
  font-family: var(--font-jua), var(--font-sans);
  letter-spacing: -.03em;
  text-align: center;
  -webkit-text-stroke: .9px currentColor;
  padding-right: .03em;
  font-size: 26px;
  line-height: .9;
  transform: translateY(.073em);
}

@media (min-width: 768px) {
  .seller-fab {
    right: max(28px, env(safe-area-inset-right));
    width: 76px;
    height: 76px;
    bottom: 28px;
  }

  .seller-fab-label {
    -webkit-text-stroke: 1px currentColor;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seller-fab {
    transition: opacity .2s, visibility .2s;
    transform: none;
  }

  .seller-fab.is-visible, .seller-fab:hover, .seller-fab:active {
    transform: none;
  }

  .seller-fab:after {
    animation: none;
  }
}

/* [project]/components/sections/seller-plan-carousel.css [app-client] (css) */
.seller-plan-swiper.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.seller-plan-swiper .swiper-wrapper {
  z-index: 1;
  box-sizing: content-box;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  display: flex;
  position: relative;
}

.seller-plan-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.seller-plan-carousel {
  width: 100%;
  max-width: 100%;
  padding: .25rem 0 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .seller-plan-carousel {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .seller-plan-swiper .seller-plan-slide {
    width: 528px;
  }

  .seller-plan-swiper {
    -webkit-mask-image: linear-gradient(90deg, #00000059 0, #000c 40px, #000 80px calc(100% - 80px), #000c calc(100% - 40px), #00000059 100%);
    mask-image: linear-gradient(90deg, #00000059 0, #000c 40px, #000 80px calc(100% - 80px), #000c calc(100% - 40px), #00000059 100%);
  }
}

.seller-plan-stage {
  position: relative;
}

.seller-plan-swiper {
  width: 100%;
  padding: .75rem 0 1rem;
  overflow: hidden;
}

.seller-plan-swiper .seller-plan-slide {
  width: 80%;
  height: auto;
}

.seller-plan-card {
  aspect-ratio: 2 / 3;
  background: #fff;
  border: 1px solid #ffffff24;
  border-radius: 1.25rem;
  margin: 0;
  transition: opacity .45s, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px -14px #00000080;
}

.seller-plan-card-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

.seller-plan-slide:not(.swiper-slide-active) .seller-plan-card {
  opacity: .72;
  transform: scale(.92);
  box-shadow: 0 10px 26px -14px #00000080;
}

.seller-plan-slide.swiper-slide-active .seller-plan-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 50px -18px #0009;
}

@media (min-width: 768px) {
  .seller-plan-slide:not(.swiper-slide-active) .seller-plan-card {
    opacity: .8;
    transform: scale(.92);
  }
}

.seller-plan-nav {
  pointer-events: none;
  z-index: 20;
  position: absolute;
  inset: 0;
}

.seller-plan-nav-btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  color: var(--witdeal-primary, #361f97);
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  transition: transform .25s, background-color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  box-shadow: 0 10px 26px -8px #0000008c;
}

.seller-plan-nav-btn:active {
  transform: translateY(-50%)scale(.92);
}

.seller-plan-nav-btn:hover {
  transform: translateY(-50%)scale(1.06);
}

.seller-plan-nav-prev {
  left: 10px;
}

.seller-plan-nav-next {
  right: 10px;
}

@media (min-width: 640px) {
  .seller-plan-nav-btn {
    width: 46px;
    height: 46px;
  }

  .seller-plan-nav-prev {
    left: 63px;
  }

  .seller-plan-nav-next {
    right: 63px;
  }
}

.seller-plan-controls {
  justify-content: center;
  align-items: center;
  padding: .875rem 0 .25rem;
  display: flex;
}

.seller-plan-dots {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.seller-plan-hint {
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: -.01em;
  color: #fff;
  background: #ffffff21;
  border: 1px solid #ffffff38;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin: .625rem auto 0;
  padding: .5rem 1.125rem;
  font-size: .9375rem;
  font-weight: 700;
  animation: 1.9s ease-in-out infinite seller-plan-hint-float;
  display: flex;
}

.seller-plan-hint svg {
  width: 1.0625rem;
  height: 1.0625rem;
  color: var(--witdeal-accent, #25f482);
}

@keyframes seller-plan-hint-float {
  0%, 100% {
    transform: translateX(-4px);
  }

  50% {
    transform: translateX(4px);
  }
}

@media (min-width: 768px) {
  .seller-plan-hint {
    display: none;
  }
}

.seller-plan-dot {
  cursor: pointer;
  background: #ffffff4d;
  border: none;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  padding: 0;
  transition: width .3s cubic-bezier(.22, 1, .36, 1), background-color .3s;
}

.seller-plan-dot.is-active {
  background: var(--witdeal-accent, #25f482);
  width: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .seller-plan-card, .seller-plan-dot, .seller-plan-nav-btn, .seller-plan-ctrl {
    transition: none;
  }

  .seller-plan-hint {
    animation: none;
  }
}

/* [project]/components/ui/near-viewport-image.css [app-client] (css) */
.nvi-fade {
  opacity: 0;
  transition: opacity .45s ease-out;
}

.nvi-fade.is-loaded {
  opacity: 1;
}

.no-js .nvi-fade {
  opacity: 1;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .nvi-fade, .nvi-fade.is-loaded {
    opacity: 1;
    transition: none;
  }
}

/*# sourceMappingURL=components_10ebt1v._.css.map*/