html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin: 0; }
body.modal-open { overflow: hidden; height: 100%; }
* { box-sizing: border-box; }
/* Keep this in @layer base so it stays below Tailwind's `@layer utilities`.
   Unlayered, `display:block` here beat the responsive display utilities
   (.hidden / .md:block / .md:hidden), forcing BOTH logo variants to render
   at once (the desktop "double logo"). Tailwind preflight already defaults
   img/svg to display:block, so this only needs to not override utilities. */
@layer base { img, svg { display: block; } }
/* Also layered: unlayered, `color:inherit` here outranked Tailwind's anchor
   color utilities (e.g. text-gray-400, hover:text-white, hover:text-neutral-900),
   so link colors/hovers silently didn't apply. */
@layer base { a { color: inherit; text-decoration: inherit; } }
button, [role="button"] { cursor: pointer; }
/* lp-campaign page styles moved from styled-jsx */
.lp-campaign .ticker-wrap {
  --tile: clamp(160px, 17vw, 320px);
  --gap: 22px;
  height: clamp(300px, calc(var(--tile) * 1.45), 560px);
  background: transparent;
}
.lp-campaign .ticker {
  --duration: 100s;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: auto;
  width: max-content;
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 0 calc(var(--gap) * 2);
  animation: scroll-left var(--duration) linear infinite reverse;
  background: transparent;
}
.lp-campaign .ticker-right {
  animation: scroll-left var(--duration) linear infinite reverse;
  background: transparent;
}
.lp-campaign .tile {
  position: relative;
  width: var(--tile);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  background: #fff;
  flex: 0 0 auto;
}
.lp-campaign .ticker-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(var(--tile) * 1.33 + 50px);
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp-campaign .tile img {
  transform: translateZ(0);
  image-rendering: auto;
  backface-visibility: hidden;
}
.lp-campaign .generating-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.lp-campaign .mobile-floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  --cta-padding: 0px;
  padding: var(--cta-padding);
  padding-bottom: 0px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lp-campaign .mobile-floating-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lp-campaign .mobile-floating-cta__inner {
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 -16px 45px rgba(15, 23, 42, 0.18);
  padding: clamp(0.9rem, 4vw, 1.2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 3vw, 1rem);
}
.lp-campaign .mobile-floating-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.28);
  transition: filter 0.2s ease;
}
.lp-campaign .mobile-floating-cta__button:hover,
.lp-campaign .mobile-floating-cta__button:focus-visible {
  filter: brightness(0.95);
}
.lp-campaign .mobile-floating-cta__button:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}
.lp-campaign .mobile-floating-cta__button-arrow {
  width: 24px;
  height: 20px;
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.lp-campaign .mobile-floating-cta__button:hover .mobile-floating-cta__button-arrow,
.lp-campaign .mobile-floating-cta__button:focus-visible .mobile-floating-cta__button-arrow {
  transform: translateX(4px);
}
.lp-campaign .mobile-floating-cta__button[data-loading="true"] .mobile-floating-cta__button-arrow {
  display: none;
}
.lp-campaign .mobile-floating-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f172a;
}
.lp-campaign .top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .lp-campaign .top-nav {
    position: static;
    backdrop-filter: none;
  }
}
.lp-campaign .mobile-floating-cta__trust img {
  height: clamp(16px, 5vw, 18px);
  width: auto;
}
@media (min-width: 768px) {
  .lp-campaign .mobile-floating-cta {
    display: none;
  }
}
.lp-campaign .logo-strip {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lp-campaign .logo-strip::-webkit-scrollbar { display: none; }
.lp-campaign .review-card {
  background-image: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 45%);
}
.lp-campaign .review-body {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6rem;
}
.lp-campaign .how-float {
  position: relative;
  z-index: 2;
  margin-top: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: clamp(3rem, 8vw, 5.5rem);
}
@media (min-width: 1024px) {
  .lp-campaign .how-float {
    margin-top: clamp(3.75rem, 7vw, 6.25rem);
    margin-bottom: clamp(3.75rem, 7vw, 6.25rem);
  }
}
.lp-campaign .how-float::before {
  content: "";
  position: absolute;
  inset: 22% 8% -35% 8%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(207, 231, 255, 0.65), transparent 70%);
  filter: blur(40px);
  opacity: 0.65;
  z-index: -1;
}
.lp-campaign .how-float__inner { position: relative; }
.lp-campaign .how-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  padding: clamp(2.4rem, 6vw, 3.5rem);
  padding-inline: clamp(1.8rem, 6.4vw, 3.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 12px 32px rgba(148, 163, 184, 0.16);
}
.lp-campaign .how-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 44px;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.12), transparent 65%);
  z-index: -1;
}
.lp-campaign .how-flow {
  --how-gap: clamp(2.4rem, 6vw, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--how-gap);
  margin-top: clamp(2.75rem, 5vw, 3.6rem);
}
@media (min-width: 768px) {
  .lp-campaign .how-flow {
    --how-gap: clamp(3rem, 5vw, 4rem);
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: var(--how-gap);
  }
}
.lp-campaign .how-step-wrapper {
  --icon-size: clamp(54px, 10vw, 64px);
  --arrow-center: calc(var(--icon-size) / 2);
  --arrow-offset: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.6rem, 3.2vw, 2.1rem);
  position: relative;
}
@media (min-width: 768px) {
  .lp-campaign .how-step-wrapper {
    flex: 1;
    align-items: flex-start;
    min-width: 0;
  }
}
.lp-campaign .how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  padding-inline: clamp(0.6rem, 2vw, 0.95rem);
}
@media (min-width: 768px) {
  .lp-campaign .how-step {
    align-items: flex-start;
    text-align: left;
    padding-inline: 0;
  }
}
.lp-campaign .how-icon {
  width: clamp(54px, 10vw, 64px);
  height: clamp(54px, 10vw, 64px);
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12) 0%, rgba(191, 219, 254, 0.08) 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}
.lp-campaign .how-icon svg {
  width: clamp(30px, 6vw, 38px);
  height: clamp(30px, 6vw, 38px);
}
.lp-campaign .how-step__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.68);
}
.lp-campaign .how-step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
@media (min-width: 1024px) {
  .lp-campaign .how-step__title { font-size: 1.18rem; }
}
.lp-campaign .how-step__copy {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.55;
  max-width: 18rem;
}
@media (min-width: 768px) {
  .lp-campaign .how-step__copy {
    font-size: 1rem;
    max-width: 15.5rem;
  }
}
.lp-campaign .how-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 11vw, 68px);
  height: clamp(22px, 6vw, 28px);
  opacity: 0.85;
  transform: rotate(90deg);
  transform-origin: center;
  margin-top: clamp(0.35rem, 2.4vw, 0.9rem);
  margin-inline: auto;
}
.lp-campaign .how-step__arrow svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 8px rgba(37, 99, 235, 0.12));
}
@media (min-width: 768px) {
  .lp-campaign .how-step__arrow {
    position: absolute;
    top: calc(var(--arrow-center) + var(--arrow-offset, 0px));
    left: calc(100% + var(--how-gap) / 2);
    transform: translate(-50%, -50%);
    pointer-events: none;
    margin: 0;
    width: clamp(72px, 9vw, 92px);
    height: clamp(24px, 4.6vw, 32px);
  }
}
.lp-campaign .hero-cta { position: relative; isolation: isolate; }
.lp-campaign .hero-cta::before,
.lp-campaign .hero-cta::after {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lp-campaign .hero-cta::before {
  inset: -10px -28px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.38) 0%, rgba(249, 115, 22, 0.12) 52%, transparent 75%);
  filter: blur(18px);
  opacity: 0.9;
  z-index: -1;
}
.lp-campaign .hero-cta::after {
  inset: -22px -56px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.2) 0%, transparent 75%);
  filter: blur(26px);
  opacity: 0.55;
  z-index: -2;
}
.lp-campaign .hero-cta:hover::before,
.lp-campaign .hero-cta:focus-visible::before {
  transform: translateY(2px);
  opacity: 1;
}
.lp-campaign .hero-cta:hover::after,
.lp-campaign .hero-cta:focus-visible::after {
  transform: translateY(3px);
  opacity: 0.7;
}
.lp-campaign .hero-cta .hero-cta__arrow { transition: transform 0.25s ease; }
.lp-campaign .hero-cta:hover .hero-cta__arrow,
.lp-campaign .hero-cta:focus-visible .hero-cta__arrow { transform: translateX(4px); }
.lp-campaign .hero-cta[data-loading="true"] .hero-cta__arrow { display: none; }
.lp-campaign .ba-combined {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.lp-campaign .ba-pair { width: 100%; }
.lp-campaign .ba-half { position: absolute; top: 0; bottom: 0; width: 50%; }
.lp-campaign .ba-left { left: 0; }
.lp-campaign .ba-right { right: 0; }
.lp-campaign .ba-half img { object-fit: cover; }
.lp-campaign .ba-label {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.6);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: saturate(140%) blur(1px);
  box-shadow: 0 3px 12px rgba(15, 118, 110, 0.14);
  display: none;
  z-index: 2;
}
.lp-campaign .ba-right .ba-label { display: inline-flex; align-items: center; }
.lp-campaign .ba-left .ba-label { display: none; }
.lp-campaign .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.lp-inapp-modal-open {
  overflow: hidden;
  height: 100%;
}

/* ── In-app browser modal ── */

.inapp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.inapp-modal__content {
  position: relative;
  width: 390px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: left;
}

.inapp-modal__hand {
  position: absolute;
  top: -36px;
  right: 28px;
  width: 63px;
  height: auto;
  pointer-events: none;
  transform: rotate(26.36deg);
  animation: hand-point 1.2s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes hand-point {
  0%, 100% { transform: rotate(26.36deg) translate(0, 0); }
  50% { transform: rotate(26.36deg) translate(3px, -6px); }
}

.inapp-modal__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.inapp-modal__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 70px;
}

.inapp-modal__title {
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  color: #011124;
}

.inapp-modal__subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #67707c;
}

.inapp-modal__card {
  border: 1px solid #e1e2e5;
  border-radius: 2px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

.inapp-modal__card-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inapp-modal__card-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #011124;
}

.inapp-modal__card-subtitle {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #67707c;
}

.inapp-modal__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inapp-modal__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.inapp-modal__step-number {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #00ea9c;
  color: #003000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  flex-shrink: 0;
}

.inapp-modal__step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #011124;
}

.inapp-modal__step-body p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.inapp-modal__menu-icon {
  width: 28px;
  height: 28px;
  border: 1.167px solid #e1e2e5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.inapp-modal__menu-icon img {
  width: 22px;
  height: 22px;
}

.inapp-modal__browsers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inapp-modal__browser-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #99a0a7;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.inapp-modal__browser-item img {
  width: 16px;
  height: 16px;
}

.inapp-modal__browsers-sep {
  width: 1px;
  height: 18px;
}

.inapp-modal__footer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #67707c;
}

.inapp-modal__continue {
  color: #00a36d;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media (max-height: 640px) {
  .inapp-modal__content {
    gap: 24px;
  }

  .inapp-modal__body {
    gap: 24px;
  }

  .inapp-modal__card {
    gap: 20px;
    padding: 16px;
  }

  .inapp-modal__hand {
    width: 48px;
    top: -12px;
  }
}

