@import "https://fonts.googleapis.com/css2?family=Merriweather:wght@400&family=Montserrat:wght@400;600&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

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

:root {
  --sc-bg: #0b0033;
  --sc-bg-gradient: #0b0033;
  --sc-text: #fff;
  --sc-muted: #bababa;
  --sc-accent-text: #949ffe;
  --sc-option-bg: #e1e4ff;
  --sc-option-active-bg: #8080ff;
  --sc-option-border-active: #0000a0;
  --sc-btn: #1b0079;
  --sc-progress-track: #fff;
  --sc-progress-fill: navy;
  --sc-radius-option: 12px;
  --sc-radius-btn: 25px;
  --pad-x: clamp(16px, 5vw, 30px);
  --container-max: min(100% - 2 * var(--pad-x), 480px);
}

html {
  -webkit-text-size-adjust: 100%;
}

body.funnel-subcandy {
  min-height: 100dvh;
  color: var(--sc-text);
  padding: 0 var(--pad-x) 160px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
}

@media (min-width: 600px) {
  html {
    background: #0b0033;
  }

  body.funnel-subcandy {
    max-width: 540px;
    margin: 0 auto;
    padding-bottom: 32px;
    box-shadow: 0 0 60px #00000080;
  }

  body.funnel-subcandy, body.funnel-subcandy.funnel-subcandy--intro, body.funnel-subcandy.funnel-subcandy--v4-intro, body.funnel-subcandy.funnel-subcandy--bg-main-goal, body.funnel-subcandy.funnel-subcandy--bg-sub-spend, body.funnel-subcandy.funnel-subcandy--bg-calendar, body.funnel-subcandy.funnel-subcandy--bg-analytics, body.funnel-subcandy.funnel-subcandy--bg-track, body.funnel-subcandy.funnel-subcandy--bg-mail, body.funnel-subcandy.funnel-subcandy--bg-loader, body.funnel-subcandy.funnel-subcandy--bg-checkout, body.funnel-subcandy.funnel-subcandy--thanks-final, body.funnel-subcandy.sc-paywall-v2 {
    padding-top: 16px;
  }

  body.funnel-subcandy .sc-cta-fixed {
    z-index: auto;
    background: none;
    width: auto;
    max-width: none;
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  body.funnel-subcandy .sc-legal-fixed {
    width: 100%;
    max-width: 540px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  body.funnel-subcandy .sc-intro-wave-wrap {
    aspect-ratio: 1164 / 572;
    width: 540px;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  body.funnel-subcandy .sc-intro-wave {
    transform: scale(1.3);
  }

  body.funnel-subcandy .sc-intro-title {
    font-size: 50px;
  }

  body.funnel-subcandy .sc-intro-forgot-h1 {
    font-size: 32px;
  }

  body.funnel-subcandy .sc-cta-fixed.sc-cta-fixed--intro {
    margin-top: 12px;
    padding: 24px 30px 0;
  }

  body.funnel-subcandy .sc-cta-fixed.sc-cta-fixed--intro .funnel-btn-primary {
    padding: 20px 24px;
    font-size: 20px;
  }
}

body.funnel-subcandy--intro {
  min-height: 100dvh;
  padding-top: max(8px, env(safe-area-inset-top));
  padding-bottom: max(112px, calc(env(safe-area-inset-bottom)  + 96px));
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/IeUsNIHb.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

body.funnel-subcandy--bg-main-goal {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/l6UTOHgF.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-sub-spend {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/a5OceNpw.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

.funnel-screen--intro {
  padding-bottom: 0;
}

.funnel-screen {
  width: 100%;
  max-width: var(--container-max);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.funnel-back {
  color: #ffffffbf;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 10px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.funnel-back:hover {
  color: #fff;
}

.funnel-back:focus-visible {
  outline: 2px solid var(--sc-accent-text);
  outline-offset: 2px;
}

.funnel-back svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.funnel-progress {
  background: var(--sc-progress-track);
  border-radius: 2px;
  width: 100%;
  height: 4px;
  margin-bottom: clamp(12px, 2vh, 20px);
  overflow: hidden;
}

.funnel-progress-bar {
  background: var(--sc-progress-fill);
  border-radius: 2px;
  height: 100%;
}

.sc-intro-hero {
  width: 80%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.sc-intro-logo {
  width: 20%;
  max-width: 120px;
  height: auto;
  margin-top: 32px;
  display: block;
}

.sc-intro-title {
  text-align: left;
  color: #fff;
  margin: 12px 0 0;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.15;
}

.sc-intro-title .sc-accent {
  color: var(--sc-accent-text);
}

.sc-intro-title .sc-dot {
  color: var(--sc-muted);
}

.sc-intro-wave-wrap {
  aspect-ratio: 1164 / 572;
  width: 100vw;
  max-width: none;
  margin-top: 4px;
  position: relative;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.sc-intro-wave {
  transform-origin: top;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  transform: scale(1.3);
}

.sc-legal-fixed {
  left: 0;
  right: 0;
  bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 50;
  pointer-events: none;
  padding: 0 16px;
  position: fixed;
}

.sc-legal-fixed-inner {
  max-width: var(--container-max);
  text-align: center;
  color: silver;
  pointer-events: auto;
  margin: 0 auto;
  font-family: Merriweather, Georgia, serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.sc-legal-fixed-inner a {
  color: #c7c7c7;
  text-decoration: underline;
}

.sc-legal-fixed-inner a:hover {
  color: #fff;
}

.sc-cta-fixed {
  padding: 0 var(--pad-x) max(16px, env(safe-area-inset-bottom));
  z-index: 60;
  background: linear-gradient(to top, #0b0033e0 0%, #0b003359 50%, #0000 100%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.sc-cta-fixed.sc-cta-fixed--intro {
  padding: 12px 30px max(32px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, #0b0033f5 0%, #0b003366 50%, #0000 100%);
}

.sc-cta-fixed.sc-cta-fixed--intro .sc-cta-legal {
  text-align: center;
  color: silver;
  margin: 0 0 16px;
  padding: 0 10px;
  font-family: Merriweather, Georgia, serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.sc-cta-fixed.sc-cta-fixed--intro .sc-cta-legal a {
  color: #c7c7c7;
  text-decoration: underline;
}

.sc-cta-fixed.sc-cta-fixed--intro .sc-cta-legal a:hover {
  color: #fff;
}

.sc-cta-fixed .funnel-btn-primary {
  margin-top: 0;
  margin-bottom: 0;
}

.sc-cta-fixed.sc-cta-fixed--intro .funnel-btn-primary {
  background: #1b0079;
  border-radius: 25px;
  font-size: 20px;
}

.sc-cta-fixed.sc-cta-fixed--intro .funnel-btn-primary:hover {
  background: #2a0aa0;
}

.funnel-btn-primary {
  width: 100%;
  max-width: var(--container-max);
  background: var(--sc-btn);
  color: #fff;
  border-radius: var(--sc-radius-btn);
  cursor: pointer;
  text-align: center;
  border: none;
  margin: 24px auto;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: block;
}

.funnel-btn-primary:hover {
  opacity: .92;
}

.funnel-btn-primary:focus-visible {
  outline: 2px solid var(--sc-accent-text);
  outline-offset: 3px;
}

.funnel-btn-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.funnel-btn-primary--pulse {
  transition: transform .1s ease-in-out;
  animation: 1.4s cubic-bezier(.75, 0, 0, 1) infinite sc-pulse;
  transform: scale(1);
}

@keyframes sc-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--sc-pulse-color, #1b0079);
    transform: scale(1);
  }

  100% {
    transform: scale(1.01);
    box-shadow: 0 0 0 8px #0000;
  }
}

.sc-page-title {
  text-align: left;
  color: #fff;
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.sc-page-subtitle {
  text-align: left;
  color: var(--sc-muted);
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.funnel-options {
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

.funnel-options--spaced-footer {
  padding-bottom: 100px;
}

.funnel-option {
  background: var(--sc-option-bg);
  border-radius: var(--sc-radius-option);
  color: #000;
  cursor: pointer;
  text-align: left;
  border: 2px solid #0000;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 55px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  transition: background .2s, border-color .2s;
  display: flex;
  box-shadow: 0 0 2px #00000059;
}

.funnel-options--main-goal {
  gap: 8px;
}

.funnel-option--multi {
  justify-content: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 6px 10px 6px 8px;
  font-size: 15px;
}

.funnel-option--multi .icon-left {
  width: 36px;
  height: 36px;
}

.funnel-option--multi .funnel-check {
  background: linear-gradient(#fff 0%, #f0f2ff 100%);
  border: 2px solid #0000a061;
  border-radius: 6px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: auto;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
  box-shadow: inset 0 1px #ffffffd9, 0 1px 2px #0000501f;
}

.funnel-option--multi:hover .funnel-check {
  border-color: #0000a08c;
}

.funnel-option--multi.selected .funnel-check {
  background: linear-gradient(160deg, #2a1890 0%, #1b0079 55%, #150066 100%);
  border-color: #000058;
  box-shadow: inset 0 1px #fff3, 0 2px 4px #0003;
}

.funnel-option--multi.selected .funnel-check:after {
  content: "";
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -40%)rotate(45deg);
}

.funnel-option--multi:focus-visible .funnel-check {
  box-shadow: inset 0 1px 0 #ffffffd9, 0 0 0 2px var(--sc-accent-text);
}

.funnel-option--multi.selected:focus-visible .funnel-check {
  box-shadow: inset 0 1px 0 #fff3, 0 0 0 2px var(--sc-accent-text);
}

.funnel-option--right-icon {
  justify-content: space-between;
}

.funnel-option .label {
  flex: 1;
}

.funnel-option .icon-left {
  object-fit: contain;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.funnel-option .icon-left.funnel-option-emoji {
  object-fit: unset;
  justify-content: center;
  align-items: center;
  font-size: 1.45rem;
  line-height: 1;
  display: inline-flex;
}

.funnel-option--multi .icon-left.funnel-option-emoji {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
}

.funnel-option .icon-right {
  object-fit: contain;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.funnel-option:hover {
  border-color: #0000a059;
}

.funnel-option:focus-visible {
  border-color: var(--sc-option-border-active);
  outline: none;
}

.funnel-option.selected, .funnel-option--single.selected {
  background: var(--sc-option-active-bg);
  border-color: var(--sc-option-border-active);
}

.funnel-screen[data-screen="sub-spend"] .funnel-option {
  font-size: 18px;
}

body.funnel-subcandy--bg-calendar {
  --pad-x: clamp(8px, 3vw, 16px);
  --container-max: min(100% - 2 * var(--pad-x), 560px);
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/zOy3yfEy.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-analytics {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/dn9g1cvz.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-track {
  --pad-x: clamp(10px, 3.5vw, 18px);
  --container-max: min(100% - 2 * var(--pad-x), 560px);
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/CHO4s7_b.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-mail {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/xOG9EFZU.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-loader {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/W20U53up.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

.funnel-screen--narrow {
  max-width: var(--container-max);
}

.sc-page-title--center {
  text-align: center;
}

.sc-subtitle-center {
  text-align: center;
  color: #cfcfcf;
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.sc-calendar-hero {
  border-radius: 25px;
  width: 90%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.sc-cal-widget {
  margin-top: 8px;
  margin-left: calc(-1 * min(6px, var(--pad-x) / 2));
  margin-right: calc(-1 * min(6px, var(--pad-x) / 2));
  color: #1e3a5f;
  background: linear-gradient(#dbeafe 0%, #e8f4fc 48%, #ddeefd 100%);
  border-radius: 24px;
  padding: 14px 12px 16px;
  box-shadow: 0 12px 40px #00000040, inset 0 1px #fff9;
}

.sc-cal-widget * {
  box-sizing: border-box;
}

.sc-cal-nav {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.sc-cal-nav-btn {
  color: #2563eb;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
  box-shadow: 0 2px 8px #2563eb1f;
}

.sc-cal-nav-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px #2563eb33;
}

.sc-cal-nav-btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #2563eb;
}

.sc-cal-nav-btn svg {
  width: 20px;
  height: 20px;
}

.sc-cal-month-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.sc-cal-month-icon {
  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  box-shadow: 0 2px 6px #2563eb1a;
}

.sc-cal-month-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sc-cal-month-btn {
  color: #1e3a5f;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
}

.sc-cal-month-btn:focus-visible {
  outline: 2px solid #2563eb;
}

.sc-cal-month-btn .sc-cal-chev {
  opacity: .65;
  width: 16px;
  height: 16px;
}

.sc-cal-summary {
  text-align: center;
  color: #3d5a80;
  letter-spacing: .02em;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.sc-cal-dows {
  text-align: center;
  text-transform: uppercase;
  color: #5c7c9a;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
}

.sc-cal-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  display: grid;
}

.sc-cal-cell {
  aspect-ratio: 1;
  cursor: pointer;
  min-height: 0;
  color: inherit;
  text-align: left;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  padding: 5px 4px 4px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s, transform .12s;
  display: flex;
  position: relative;
  box-shadow: 0 1px 4px #1e3a5f12;
}

.sc-cal-cell:hover {
  box-shadow: 0 4px 12px #2563eb26;
}

.sc-cal-cell:focus-visible {
  border-color: #2563eb;
  outline: none;
}

.sc-cal-cell.is-selected {
  border-width: 3px;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #2563eb40, 0 4px 14px #2563eb33;
}

.sc-cal-cell.is-muted {
  opacity: .38;
  pointer-events: none;
}

.sc-cal-day-num {
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.sc-cal-icons {
  flex-wrap: wrap;
  flex: 1;
  place-content: center;
  align-items: center;
  gap: 2px;
  min-height: 0;
  display: flex;
}

.sc-cal-icon {
  border: 1px solid #ffffffd9;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 11px;
  line-height: 1;
  display: flex;
  box-shadow: 0 1px 3px #0000001f;
}

.sc-cal-icon.sc-cal-icon--brand {
  background: #fff;
  border: 1px solid #1e3a5f1f;
  width: 19px;
  height: 19px;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px #1e3a5f1a;
}

.sc-cal-icon.sc-cal-icon--brand img {
  object-fit: contain;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}

.sc-cal-cell--pad {
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
  background: none;
  border: none;
}

.sc-cal-spend-chart {
  border-top: 1px solid #2563eb26;
  margin-top: 16px;
  padding-top: 12px;
}

.sc-cal-spend-title {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #3d5a80;
  text-align: center;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
}

.sc-cal-bars {
  justify-content: space-between;
  align-items: flex-end;
  gap: 4px;
  min-height: 120px;
  padding: 0 2px;
  display: flex;
}

.sc-cal-bar-col {
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 0;
  display: flex;
}

.sc-cal-bar-top {
  color: #3d5a80;
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 700;
}

.sc-cal-bar {
  width: 100%;
  max-width: 32px;
  height: var(--bar-h, 40%);
  background: #fff;
  border-radius: 8px 8px 4px 4px;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 28px;
  margin: 0 auto;
  padding-bottom: 4px;
  transition: height .35s;
  display: flex;
  box-shadow: 0 2px 6px #1e3a5f1f;
}

.sc-cal-bar-inner-val {
  color: #1e3a5f;
  text-align: center;
  letter-spacing: -.02em;
  width: 100%;
  padding: 0 1px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.05;
}

.sc-cal-pill {
  color: #fff;
  cursor: pointer;
  background: #2563eb;
  border: none;
  border-radius: 999px;
  width: 100%;
  max-width: 36px;
  margin-top: 6px;
  padding: 4px 0;
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
}

.sc-cal-pill.is-active {
  background: #1d4ed8;
  box-shadow: 0 0 0 2px #2563eb59;
}

.sc-cal-pill:focus-visible {
  outline: 2px solid #1e3a5f;
}

.sc-embed-wrap {
  background: #00000026;
  border-radius: 20px;
  width: 100%;
  margin: 0 0 8px;
  overflow: hidden;
}

.sc-embed-wrap--analytics {
  background: none;
  border-radius: 0;
  overflow: visible;
}

.sc-embed-wrap--track {
  margin-left: calc(-1 * min(10px, var(--pad-x) * .65));
  margin-right: calc(-1 * min(10px, var(--pad-x) * .65));
  width: calc(100% + 2 * min(10px, var(--pad-x) * .65));
  background: none;
  border-radius: 0;
  max-width: none;
  overflow: visible;
}

.sc-embed-wrap iframe {
  vertical-align: top;
  border: 0;
  width: 100%;
  display: block;
}

.sc-embed-wrap--analytics iframe, .sc-embed-iframe {
  background: none;
  height: 420px;
  min-height: 0;
  max-height: none;
  overflow: hidden;
}

.sc-embed-wrap--track iframe {
  background: none;
  height: 520px;
  min-height: 0;
  max-height: none;
  overflow: hidden;
}

.sc-email-field {
  margin-top: 24px;
}

.sc-email-field .sc-input-email {
  margin-top: 0;
}

.sc-input-email {
  color: #111;
  background: #fff;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 17px;
  transition: box-shadow .2s, outline-color .2s;
}

.sc-input-email::placeholder {
  color: #9ca3af;
}

.sc-input-email:focus {
  outline: 2px solid var(--sc-accent-text);
  outline-offset: 2px;
}

.sc-email-field--error .sc-input-email:focus {
  outline-color: #f87171;
}

.sc-email-field--success .sc-input-email:focus {
  outline-color: #6ee7b7;
}

.sc-email-field--error .sc-input-email {
  outline-offset: 2px;
  outline: 2px solid #ef4444;
  box-shadow: 0 0 0 3px #ef444440;
}

.sc-email-field--success .sc-input-email {
  outline-offset: 2px;
  outline: 2px solid #10b981;
  box-shadow: 0 0 0 3px #10b98133;
}

.sc-email-feedback {
  text-align: center;
  min-height: 1.35em;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.35;
}

.sc-email-feedback--error {
  color: #fecaca;
}

.sc-email-feedback--success {
  color: #a7f3d0;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  display: inline-flex;
}

.sc-email-feedback--success svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-email-feedback--muted {
  color: var(--sc-muted);
}

.sc-privacy-inline {
  text-align: center;
  color: #cfcfcf;
  margin: 20px 0 10px;
  font-size: 14px;
  line-height: 1.45;
}

.sc-privacy-inline a {
  color: #e8e8e8;
}

.sc-loader-title {
  text-align: center;
  color: #fff;
  margin: 20px 0 24px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.sc-processing {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.sc-prow-head {
  color: #fff;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
}

.sc-prow-head .sc-pct {
  color: #ffffffe0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.sc-prow-status {
  justify-content: flex-end;
  align-items: center;
  min-width: 44px;
  display: flex;
}

.sc-prow .sc-processing-track {
  background: #fff3;
  border-radius: 16px;
  height: 10px;
  overflow: hidden;
}

.sc-processing-fill {
  background: linear-gradient(90deg, #e6e9eb, #8080ff);
  border-radius: 16px;
  width: 0%;
  height: 100%;
}

.sc-prow.done .sc-processing-fill {
  width: 100%;
}

.sc-check {
  justify-content: center;
  align-items: center;
  display: none;
}

.sc-prow.done .sc-pct {
  display: none;
}

.sc-prow.done .sc-check {
  display: inline-flex;
}

.sc-check svg {
  stroke: #86efac;
  width: 18px;
  height: 18px;
}

.sc-loader-purchases-widget {
  max-width: min(100%, 400px);
  padding: 0 min(8px, var(--pad-x));
  text-align: center;
  margin: 28px auto 12px;
}

.sc-loader-purchases-counter {
  color: #ffffffd1;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.sc-loader-purchases-counter-num {
  color: #fff;
  font-weight: 700;
}

.sc-loader-purchases-stage {
  width: 100%;
  height: 44px;
  position: relative;
  overflow: hidden;
}

.sc-loader-purchase-chip {
  letter-spacing: .01em;
  color: #0f172a;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  background: #fff;
  border: 1px solid #fffffff2;
  border-radius: 999px;
  max-width: calc(100% - 8px);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94), opacity .4s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  top: 50%;
  left: 100%;
  overflow: hidden;
  transform: translate(0, -50%);
  box-shadow: 0 2px 4px #0f172a0f, 0 14px 36px #0f172a33, inset 0 1px #fff;
}

.sc-loader-purchase-chip.enter {
  opacity: 0;
  left: 100%;
  transform: translate(0, -50%);
}

.sc-loader-purchase-chip.enter-active {
  opacity: 1;
  pointer-events: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-loader-purchase-chip.visible {
  opacity: 1;
  pointer-events: auto;
  transition: none;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-loader-purchase-chip.exit {
  opacity: 1;
  transition: transform .4s cubic-bezier(.55, .085, .68, .53), opacity .35s cubic-bezier(.55, .085, .68, .53);
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-loader-purchase-chip.exit-active {
  opacity: 0;
  left: 0;
  transform: translate(-100%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .sc-loader-purchase-chip {
    transition-duration: .01ms !important;
  }
}

.sc-loader-reviews-section {
  margin-top: 26px;
  padding-bottom: 32px;
}

.sc-loader-reviews-section .sc-loader-reviews-title--accent {
  letter-spacing: -.02em;
  text-align: center;
  background: linear-gradient(105deg, #fff 0%, #e0e7ff 45%, #c7d2fe 100%);
  color: #0000;
  filter: drop-shadow(0 2px 14px #6366f159);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(21px, 5vw, 24px);
  font-weight: 700;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .sc-loader-reviews-section .sc-loader-reviews-title--accent {
    color: #fff;
    filter: none;
    background: none;
  }
}

.sc-loader-reviews-lead {
  padding: 0 min(8px, var(--pad-x));
  text-align: center;
  color: #ffffffb8;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
}

.sc-loader-reviews-section .sc-pw-reviews--loader {
  scroll-padding-inline: max(8px, var(--pad-x));
  gap: 16px;
}

.sc-loader-reviews-section .sc-pw-review--loader {
  background: linear-gradient(155deg, #fff 0%, #f8fafc 42%, #eef2ff 100%);
  border: 1px solid #ffffffeb;
  border-radius: 22px;
  flex: 0 0 min(100%, 318px);
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 1px #0f172a0a, 0 18px 42px #0f172a29, inset 0 1px #fffffffa;
}

.sc-loader-review-accent {
  opacity: .95;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 38%, #38bdf8 100%);
  width: 100%;
  height: 4px;
}

.sc-loader-review-inner {
  padding: 16px 17px 15px;
}

.sc-loader-review-person {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.sc-loader-review-avatar {
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(145deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 12px #4f46e559, inset 0 1px #ffffff40;
}

.sc-loader-review-avatar--violet {
  background: linear-gradient(145deg, #7c3aed 0%, #a78bfa 100%);
  box-shadow: 0 4px 12px #7c3aed59, inset 0 1px #ffffff40;
}

.sc-loader-review-avatar--teal {
  background: linear-gradient(145deg, #0d9488 0%, #2dd4bf 100%);
  box-shadow: 0 4px 12px #0d948859, inset 0 1px #ffffff40;
}

.sc-loader-reviews-section .sc-pw-review--loader .sc-pw-review-head {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.sc-loader-review-name-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  display: flex;
}

.sc-loader-reviews-section .sc-pw-review--loader .sc-pw-review-head strong {
  letter-spacing: -.01em;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.sc-loader-review-verified {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sc-loader-review-verified svg {
  display: block;
}

.sc-pw-stars--loader {
  gap: 4px;
}

.sc-pw-stars--loader span {
  filter: drop-shadow(0 1px 1px #f59e0b59);
  background: linear-gradient(160deg, #fbbf24 0%, #f59e0b 100%);
  width: 15px;
  height: 15px;
}

.sc-loader-reviews-section .sc-pw-review--loader p {
  color: #475569;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
}

.sc-loader-reviews-section .sc-pw-review--loader p strong {
  color: #1e293b;
  font-weight: 700;
}

.sc-loader-reviews-section .sc-pw-review--loader .sc-loader-review-foot {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.sc-loader-review-tag {
  color: #4338ca;
  font-weight: 700;
}

.sc-thanks {
  text-align: center;
  padding-top: 48px;
}

.sc-thanks h1 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 600;
}

.sc-thanks p {
  color: var(--sc-muted);
  margin: 0;
  font-size: 16px;
}

body.funnel-subcandy--bg-paywall {
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KG77M2PEP8QBQYN1TG6GZ836/Ocuo4gqO.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100dvh;
}

body.funnel-subcandy--bg-checkout {
  background-color: #0c0c0c;
  background-image: url("https://assets.fnlfx.com/01KDAVHPR2ZTB81M3K1AAA8XV4/vlQauiQ6.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto;
  min-height: 100dvh;
}

body.funnel-subcandy--paywall-pad {
  padding-bottom: max(180px, calc(env(safe-area-inset-bottom)  + 140px));
}

.sc-paywall-toolbar {
  z-index: 50;
  margin: 0 calc(-1 * var(--pad-x)) 16px;
  background: #fffffff7;
  border-radius: 0 0 18px 18px;
  padding: 10px 12px;
  position: sticky;
  top: 0;
  box-shadow: 0 8px 24px #0000001f;
}

.sc-paywall-toolbar-inner {
  max-width: var(--container-max);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  display: flex;
}

.sc-paywall-toolbar-note {
  color: #111;
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.sc-paywall-timer {
  color: #1b0079;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.sc-paywall-toolbar-cta {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #3535ff;
  border: none;
  border-radius: 14px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.sc-paywall-toolbar-cta:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #1e3a5f;
}

.sc-paywall-hero-img, .sc-paywall-block-img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  display: block;
}

.sc-paywall-block-img {
  margin-top: 12px;
}

.sc-paywall-plans {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.sc-paywall-plan {
  cursor: pointer;
  text-align: left;
  background: #fff;
  border: 2px solid #ffffffd9;
  border-radius: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  display: block;
  position: relative;
}

.sc-paywall-plan:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #3355f7;
}

.sc-paywall-plan.is-active {
  border-color: #3355f7;
  box-shadow: 0 0 0 2px #3355f740;
}

.sc-paywall-plan-inner {
  color: #373a49;
  padding: 16px 16px 16px 44px;
}

.sc-paywall-plan-badge {
  color: #fff;
  background: #3355f7;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: -10px;
  right: 12px;
}

.sc-paywall-plan-radio {
  accent-color: #3355f7;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.sc-paywall-plan-title {
  color: #303041;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.sc-paywall-price-pill {
  color: #232323;
  background: #ceceff;
  border-radius: 12px;
  margin-top: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
}

.sc-paywall-price-pill .sc-muted-price {
  opacity: .85;
  font-size: 13px;
  font-weight: 600;
}

.sc-paywall-continue {
  margin-top: 28px;
}

.sc-paywall-continue.funnel-btn-primary {
  background: #3355f7;
  font-size: 20px;
}

.sc-paywall-legal {
  text-align: center;
  color: #ffffffeb;
  margin-top: 16px;
  font-family: Roboto, Montserrat, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.sc-paywall-legal[hidden] {
  display: none;
}

.sc-paywall-faq {
  color: #111;
  background: #fff;
  border-radius: 20px;
  margin-top: 32px;
  padding: 20px 16px;
}

.sc-paywall-faq h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.sc-paywall-faq details {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.sc-paywall-faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.sc-paywall-faq summary::-webkit-details-marker {
  display: none;
}

.sc-paywall-faq p {
  color: #333;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.sc-checkout-card {
  color: #111;
  background: #fff;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0 12px 32px #0003;
}

.sc-checkout-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.sc-checkout-card p {
  color: #444;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
}

.sc-checkout-methods {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sc-checkout-methods li {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
}

body.funnel-subcandy.sc-paywall-v2 {
  color: #fff;
  min-height: 100dvh;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-top: max(8px, env(safe-area-inset-top));
  padding-bottom: max(120px, calc(env(safe-area-inset-bottom)  + 104px));
  background-color: #0b0033;
  background-image: url("https://assets.fnlfx.com/01KG77M2PEP8QBQYN1TG6GZ836/Ocuo4gqO.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.sc-paywall-v2-main {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.sc-paywall-v2-back.funnel-back {
  color: #ffffffe6;
}

.sc-paywall-v2-lead {
  text-align: center;
  color: #fffffff5;
  margin: 8px 0 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.sc-paywall-v2-icons {
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
  display: grid;
}

.sc-paywall-v2-icons > .sc-cal-icon.sc-cal-icon--brand {
  aspect-ratio: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 48px;
  height: auto;
  margin: 0;
  padding: 5px;
}

.sc-paywall-v2-headline {
  text-align: center;
  color: #fff;
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.sc-paywall-v2-bullets {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.sc-paywall-v2-bullets li {
  color: #fffffff5;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.sc-paywall-v2-bullets li:before {
  content: "";
  background: #93c5fd;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: .45em;
  left: 0;
  box-shadow: 0 0 0 2px #fff6;
}

.sc-pw-assurance {
  isolation: isolate;
  -webkit-backdrop-filter: blur(26px);
  background: linear-gradient(145deg, #e0f2fe1c 0%, #0f172a47 38%, #0f172a6b 100%);
  border: 1px solid #ffffff38;
  border-radius: 18px;
  margin: 20px 0 22px;
  padding: 20px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px #ffffff52, inset 0 0 0 1px #38bdf80f, 0 0 40px #22d3ee14, 0 18px 44px #0000004d;
}

.sc-pw-assurance:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(155deg, #a5f3fc33 0%, #0000 45% 100%);
  position: absolute;
  inset: 0;
}

.sc-pw-assurance > * {
  z-index: 1;
  position: relative;
}

.sc-pw-assurance-list {
  flex-direction: column;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sc-pw-assurance-list li {
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.sc-pw-assurance-ico {
  color: #a5f3fc;
  background: #ffffff0f;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: flex;
  box-shadow: inset 0 1px #ffffff29;
}

.sc-pw-assurance-ico svg {
  width: 20px;
  height: 20px;
}

.sc-pw-assurance-text {
  color: #f8fafcf0;
  font-size: 13px;
  line-height: 1.48;
}

.sc-pw-assurance-text strong {
  color: #f8fafc;
  font-weight: 700;
}

.sc-pw-assurance-social {
  border-top: 1px solid #ffffff24;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 17px;
  display: flex;
}

.sc-pw-assurance-avatars {
  flex-shrink: 0;
  align-items: center;
  padding: 3px;
  display: flex;
}

.sc-pw-assurance-face {
  border: 2px solid #060c1eeb;
  border-radius: 50%;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-left: -11px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ffffff2e, 0 3px 10px #00000059;
}

.sc-pw-assurance-face:first-child {
  margin-left: 0;
}

.sc-pw-assurance-face img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.sc-pw-assurance-quote {
  color: #e2e8f0e6;
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.sc-pw-assurance-quote strong {
  color: #ecfeff;
  font-weight: 700;
}

.sc-paywall-v2-plans {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.sc-pw-card {
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 16px;
  margin: 0;
  padding: 0;
  font-family: inherit;
  transition: filter .15s;
  display: block;
  position: relative;
  overflow: visible;
}

.sc-pw-card-banner {
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
  background: #35f;
  border-radius: 14px 14px 0 0;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
}

.sc-pw-card--flat .sc-pw-card-banner {
  display: none;
}

.sc-pw-card-body {
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #d1d5dbf2;
  border-top: none;
  border-radius: 0 0 14px 14px;
  align-items: center;
  gap: 10px;
  padding: 14px 12px 14px 44px;
  display: flex;
  position: relative;
}

.sc-pw-card--flat .sc-pw-card-body {
  border-top: 2px solid #d1d5dbf2;
  border-radius: 14px;
}

.sc-pw-card.is-active .sc-pw-card-body {
  border-color: #1f2937;
  box-shadow: 0 1px #ffffff0f;
}

.sc-pw-card-radio {
  opacity: 0;
  cursor: pointer;
  z-index: 4;
  width: 26px;
  height: 26px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.sc-pw-radio-faux {
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
  background: #fff;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.sc-pw-radio-dot {
  background: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.sc-pw-card.is-active .sc-pw-radio-faux {
  border-color: #3355f7;
}

.sc-pw-card.is-active .sc-pw-radio-dot {
  background: #3355f7;
}

.sc-pw-card-mid {
  flex: 1;
  min-width: 0;
  padding-right: 4px;
}

.sc-pw-card-copy {
  min-width: 0;
}

.sc-pw-card-title-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  display: flex;
}

.sc-pw-card-title {
  color: #303041;
  font-size: 17px;
  font-weight: 700;
}

.sc-pw-card-tag {
  color: #374151;
  background: #e5e7eb;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
}

.sc-pw-card-prices {
  font-size: 14px;
}

.sc-pw-card-prices s {
  color: #9ca3af;
  margin-right: 8px;
  font-size: 13px;
}

.sc-pw-card-prices strong {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.sc-pw-card-daily {
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  box-sizing: border-box;
  background: #ceceff;
  flex-shrink: 0;
  align-items: center;
  gap: 5px;
  min-height: 54px;
  padding: 8px 12px 8px 18px;
  display: flex;
}

.sc-pw-daily-big {
  color: #171717;
  letter-spacing: -.02em;
  font-size: 30px;
  font-weight: 800;
  line-height: .95;
}

.sc-pw-daily-rest {
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  display: flex;
}

.sc-pw-daily-cents {
  color: #171717;
  font-size: 14px;
  font-weight: 800;
}

.sc-pw-daily-label {
  color: #4b5563;
  font-size: 9px;
  font-weight: 700;
}

.sc-paywall-v2-legal {
  text-align: center;
  color: #ffffffe6;
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.sc-paywall-v2-legal[hidden] {
  display: none !important;
}

.sc-paywall-v2-consent {
  text-align: center;
  color: #ffffffd1;
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.sc-paywall-v2-consent a {
  color: #bae6fd;
  text-underline-offset: 2px;
  font-weight: 600;
  text-decoration: underline;
}

.sc-paywall-v2-consent a:hover {
  color: #e0f2fe;
}

.sc-paywall-v2-company {
  text-align: center;
  color: #ffffffad;
  margin: 20px 0 8px;
  font-size: 10px;
  line-height: 1.4;
}

.sc-paywall-v2-company a {
  color: #bae6fdf2;
  text-underline-offset: 2px;
  font-weight: 600;
  text-decoration: underline;
}

.sc-paywall-v2-company a:hover {
  color: #ecfeff;
}

.sc-paywall-v2-footer {
  z-index: 70;
  padding: 12px var(--pad-x) max(12px, env(safe-area-inset-bottom));
  background: #fff;
  border-radius: 22px 22px 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -8px 28px #00000029;
}

.sc-paywall-v2-footer-inner {
  max-width: var(--container-max);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  display: flex;
}

.sc-paywall-v2-footer-left {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.sc-paywall-v2-footer-label {
  color: #374151;
  font-size: 11px;
  font-weight: 600;
}

.sc-paywall-v2-footer-timer {
  color: #111827;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 800;
}

.sc-paywall-v2-footer-btn {
  color: #fff;
  cursor: pointer;
  background: #35f;
  border: none;
  border-radius: 14px;
  flex-shrink: 0;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px #3355ff59;
}

.sc-paywall-v2-footer-btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #1e3a8a;
}

.sc-paywall-v2-footer-btn.funnel-btn-primary--pulse {
  animation: 1.4s cubic-bezier(.75, 0, 0, 1) infinite sc-pulse;
}

.sc-pw-hero-title {
  text-align: center;
  color: #fff;
  margin: 16px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.sc-paywall-v2-lead--after-tracker, .sc-pw-tracker {
  margin-top: 18px;
}

.sc-pw-tracker-shell {
  -webkit-backdrop-filter: blur(20px);
  background: #ffffff0e;
  border: 1px solid #ffffff2e;
  border-radius: 22px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px #fff3, 0 0 0 1px #38bdf814, 0 20px 50px #00000052;
}

.sc-pw-tracker-shell:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(circle at 18% 12%, #ffffff1a .75px, #0000 1px), radial-gradient(circle at 72% 18%, #ffffff12 .75px, #0000 1px), radial-gradient(circle at 48% 40%, #38bdf81f .75px, #0000 1.2px), radial-gradient(85% 50% at 50% -5%, #22d3ee1f, #0000 55%);
  position: absolute;
  inset: 0;
}

.sc-pw-tracker-shell > * {
  z-index: 1;
  position: relative;
}

@media (prefers-reduced-transparency: reduce) {
  .sc-pw-tracker-shell {
    -webkit-backdrop-filter: none;
    background: #0f172ae0;
  }

  .sc-pw-tracker-shell:before {
    opacity: .25;
  }

  .sc-pw-assurance {
    -webkit-backdrop-filter: none;
    background: #0f172aeb;
    border-color: #ffffff29;
  }

  .sc-pw-assurance:before {
    opacity: .2;
  }
}

.sc-pw-tracker-headbar {
  -webkit-backdrop-filter: blur(14px);
  background: #ffffff0d;
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 12px;
  display: flex;
}

.sc-pw-tracker-head-left {
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.sc-pw-tracker-cal-ico {
  color: #ffffffeb;
  flex-shrink: 0;
}

.sc-pw-tracker-app-title {
  letter-spacing: .01em;
  color: #f8fafc;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.sc-pw-tracker-price-btn {
  cursor: pointer;
  text-align: right;
  background: none;
  border: none;
  border-radius: 10px;
  flex-shrink: 0;
  margin: 0;
  padding: 6px 4px;
  font-family: inherit;
  transition: background .2s, transform .15s;
}

.sc-pw-tracker-price-btn:hover {
  background: #38bdf81f;
}

.sc-pw-tracker-price-btn:active {
  transform: scale(.97);
}

.sc-pw-tracker-price-btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #38bdf8a6;
}

.sc-pw-tracker-price-num {
  color: #22d3ee;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 800;
  transition: opacity .18s;
}

.sc-pw-tracker-price-suffix {
  color: #94a3b8f2;
  font-size: 12px;
  font-weight: 600;
}

.sc-pw-tracker-body {
  padding: 14px 14px 12px;
}

.sc-pw-tracker-section-title {
  color: #fff;
  letter-spacing: .01em;
  margin: 0 0 12px;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
}

.sc-pw-tracker-summary {
  isolation: isolate;
  cursor: pointer;
  text-align: left;
  -webkit-backdrop-filter: blur(22px);
  background: #ffffff0e;
  border: 1px solid #ffffff24;
  border-radius: 16px;
  width: 100%;
  margin: 0 0 12px;
  padding: 13px 12px;
  font-family: inherit;
  transition: box-shadow .25s, transform .2s, background .2s, border-color .2s;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff38, inset 2px 3px 28px #38bdf812, 0 12px 40px #00000061;
}

.sc-pw-tracker-summary:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .62;
  background: linear-gradient(145deg, #38bdf852 0%, #ffffff0f 36%, #0000 54%);
  position: absolute;
  inset: 0;
}

.sc-pw-tracker-summary-inner {
  z-index: 1;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 14px;
  display: grid;
  position: relative;
}

.sc-pw-tracker-donut-wrap {
  flex-shrink: 0;
  grid-row: 1 / span 2;
  align-self: center;
}

.sc-pw-tracker-summary:hover {
  background: #ffffff13;
  border-color: #38bdf859;
  box-shadow: inset 0 1px #ffffff47, inset 2px 3px 32px #38bdf81f, 0 14px 44px #22d3ee24;
}

.sc-pw-tracker-summary:active {
  transform: scale(.99);
}

.sc-pw-tracker-summary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #38bdf899;
}

.sc-pw-tracker-summary.is-open {
  border-color: #38bdf873;
  box-shadow: inset 0 1px #ffffff52, inset 2px 3px 36px #38bdf829, 0 0 36px #22d3ee38;
}

.sc-pw-tracker-summary-copy {
  flex: 1;
  grid-area: 1 / 2;
  align-self: center;
  min-width: 0;
}

.sc-pw-summary-brands {
  flex-wrap: wrap;
  grid-area: 2 / 2;
  align-items: center;
  gap: 8px;
  display: flex;
}

.sc-pw-summary-brands .sc-cal-icon.sc-cal-icon--brand {
  width: 26px;
  height: 26px;
  padding: 3px;
}

.sc-pw-donut-svg {
  display: block;
}

.sc-pw-tracker-paid-line {
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.sc-pw-tracker-sum-strong {
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.sc-pw-tracker-sum-label {
  color: #94a3b8f2;
  font-size: 13px;
  font-weight: 600;
}

.sc-pw-tracker-left-line {
  color: #cbd5e1eb;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.sc-pw-tracker-detail {
  background: #0f172aa6;
  border: 1px solid #38bdf833;
  border-radius: 12px;
  margin: 0 0 12px;
  padding: 12px 14px;
  animation: .28s sc-pw-detail-in;
}

@keyframes sc-pw-detail-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.sc-pw-tracker-detail p {
  color: #e2e8f0e0;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.sc-pw-tracker-feed {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.sc-pw-feed-row {
  -webkit-backdrop-filter: blur(10px);
  background: #ffffff0b;
  border-radius: 14px;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  margin-bottom: 9px;
  padding: 10px 12px;
  display: flex;
  box-shadow: inset 0 1px #ffffff24, inset 0 0 0 1px #ffffff12;
}

.sc-pw-feed-row:last-child {
  margin-bottom: 0;
}

.sc-pw-feed-row--accent {
  background: #38bdf812;
  box-shadow: inset 0 1px #38bdf880, inset 2px 2px #38bdf826, inset 0 0 0 1px #38bdf838, 0 0 24px #22d3ee1a;
}

.sc-pw-feed-brand.sc-cal-icon.sc-cal-icon--brand {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  padding: 4px;
}

.sc-pw-feed-mid {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.sc-pw-feed-name {
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
}

.sc-pw-feed-meta {
  color: #94a3b8e0;
  font-size: 11px;
}

.sc-pw-feed-end {
  text-align: right;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  display: flex;
}

.sc-pw-feed-price {
  color: #fca5a5;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 800;
  display: block;
}

.sc-pw-feed-cycle {
  color: #94a3b8d9;
  align-items: center;
  gap: 3px;
  margin-top: 0;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.sc-pw-feed-sync {
  opacity: .75;
}

.sc-pw-tracker-nav {
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4px;
  margin: 0 -4px;
  padding: 8px 4px 4px;
  display: flex;
}

.sc-pw-nav-item {
  color: #94a3b8bf;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 3px;
  min-width: 0;
  margin: 0;
  padding: 6px 2px;
  font-family: inherit;
  font-size: 9px;
  font-weight: 600;
  transition: color .2s, background .2s;
  display: flex;
}

.sc-pw-nav-item svg {
  opacity: .85;
}

.sc-pw-nav-item:hover {
  color: #e2e8f0f2;
  background: #38bdf814;
}

.sc-pw-nav-item:focus-visible {
  outline-offset: 1px;
  outline: 2px solid #38bdf880;
}

.sc-pw-nav-item--active {
  color: #38bdf8;
}

.sc-pw-nav-item--active svg {
  opacity: 1;
}

.sc-pw-nav-fab {
  color: #e0f2fe;
  flex: none;
  padding: 0 8px 2px;
  position: relative;
}

.sc-pw-nav-fab-glow {
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, #38bdf88c 0%, #0000 72%);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.sc-pw-nav-fab svg {
  z-index: 1;
  filter: drop-shadow(0 0 10px #38bdf88c);
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .sc-pw-tracker-detail {
    animation: none;
  }
}

.sc-pw-continue {
  cursor: pointer;
  color: #fff;
  background: #3355f7;
  border: none;
  border-radius: 25px;
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 21px;
  font-weight: 700;
}

.sc-pw-continue:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #bfdbfe;
}

.sc-pw-continue.funnel-btn-primary--pulse {
  animation: 1.4s cubic-bezier(.75, 0, 0, 1) infinite sc-pulse;
}

.sc-pw-trust {
  text-align: center;
  margin-top: 28px;
}

.sc-pw-trust-head {
  letter-spacing: .06em;
  color: #fffffff2;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.sc-pw-trust-foot {
  color: #e2e8f0d1;
  text-align: center;
  max-width: 320px;
  margin: 14px auto 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.sc-pw-pay-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.sc-pw-pay {
  -webkit-backdrop-filter: blur(10px);
  background: #ffffffed;
  border: 1px solid #ffffff73;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  display: flex;
  box-shadow: inset 0 1px #fffffff2, 0 4px 14px #0000001f;
}

.sc-pw-pay-img {
  object-fit: contain;
  width: auto;
  max-width: 78px;
  height: 22px;
  display: block;
}

.sc-pw-pay-img--visa {
  max-width: 56px;
  height: 20px;
}

.sc-pw-pay-img--mc {
  max-width: 42px;
  height: 26px;
}

.sc-pw-pay-img--apple {
  max-width: 72px;
  height: 20px;
}

.sc-pw-pay--amex .sc-pw-pay-img--amex {
  max-width: 48px;
  height: 20px;
}

.sc-pw-features {
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  display: flex;
}

.sc-pw-feature-card {
  text-align: center;
  color: #1f2937;
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 18px 36px #0000002e;
}

.sc-pw-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px #00000038;
}

.sc-pw-feature-ico {
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: flex;
}

.sc-pw-feature-ico svg {
  width: 44px;
  height: 44px;
}

.sc-pw-feature-card h3 {
  color: #111827;
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
}

.sc-pw-feature-card p {
  color: #4b5563;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.sc-pw-devices-strip {
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sc-pw-devices-title {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  text-align: center;
  color: #fff;
  margin: 36px 0 12px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.sc-pw-devices-hero {
  margin: 0;
  padding: 0;
}

.sc-pw-devices-img {
  width: 100%;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  display: block;
}

@media (min-width: 501px) {
  .sc-pw-devices-strip {
    width: auto;
    max-width: min(500px, calc(100vw - 2 * var(--pad-x)));
    margin-left: auto;
    margin-right: auto;
  }

  .sc-pw-devices-title {
    margin-top: 36px;
    margin-bottom: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .sc-pw-devices-img {
    border-radius: 22px;
    box-shadow: 0 18px 42px #00000061;
  }
}

.sc-pw-faq-title {
  text-align: center;
  color: #fff;
  margin: 36px 0 14px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.sc-pw-faq {
  background: #fff;
  border-radius: 24px;
  padding: 8px 20px 16px;
  box-shadow: 0 18px 40px #0003;
}

.sc-pw-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.sc-pw-faq-item:last-child {
  border-bottom: none;
}

.sc-pw-faq-item summary {
  cursor: pointer;
  color: #111827;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 4px 16px 0;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  display: flex;
}

.sc-pw-faq-item summary::-webkit-details-marker {
  display: none;
}

.sc-pw-faq-chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.sc-pw-faq-chev:after {
  content: "";
  border-bottom: 2px solid #9ca3af;
  border-right: 2px solid #9ca3af;
  width: 8px;
  height: 8px;
  transition: transform .22s;
  position: absolute;
  top: 4px;
  left: 6px;
  transform: rotate(45deg);
}

.sc-pw-faq-item[open] .sc-pw-faq-chev:after {
  top: 8px;
  transform: rotate(-135deg);
}

.sc-pw-faq-item p {
  color: #374151;
  margin: 0 0 16px;
  padding-right: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.sc-pw-reviews-title {
  text-align: center;
  color: #fff;
  margin: 36px 0 14px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.sc-pw-reviews {
  scroll-snap-type: x mandatory;
  margin: 0 calc(-1 * min(8px, var(--pad-x)));
  padding-bottom: 8px;
  padding-left: max(8px, var(--pad-x));
  padding-right: max(8px, var(--pad-x));
  scrollbar-width: thin;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: contain;
  gap: 14px;
  display: flex;
  overflow-x: auto;
}

.sc-pw-review {
  scroll-snap-align: start;
  color: #111827;
  background: #fff;
  border-radius: 20px;
  flex: 0 0 min(100%, 300px);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 32px #0000002e;
}

.sc-pw-review-head {
  margin-bottom: 10px;
}

.sc-pw-review-head strong {
  margin-bottom: 8px;
  font-size: 15px;
  display: block;
}

.sc-pw-stars {
  gap: 3px;
  display: flex;
}

.sc-pw-stars span {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: #fbbf24;
  width: 16px;
  height: 16px;
}

.sc-pw-review p {
  color: #4b5563;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.sc-pw-review footer {
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 360px) {
  .sc-paywall-v2-icons {
    gap: 8px;
  }

  .sc-paywall-v2-icons > .sc-cal-icon.sc-cal-icon--brand {
    max-width: 42px;
    padding: 4px;
  }

  .sc-paywall-v2-footer-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

body.funnel-subcandy--v4-intro {
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}

.sc-intro-v4-brand {
  text-align: center;
  color: #fff;
  letter-spacing: .01em;
  margin: 4px 0 0;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.sc-intro-v4-legal {
  max-width: var(--container-max);
  text-align: center;
  color: silver;
  margin: 20px auto 0;
  padding: 0 12px;
  font-family: Merriweather, Georgia, serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.sc-intro-v4-legal a {
  color: #c7c7c7;
  text-decoration: underline;
}

.sc-intro-v4-legal a:hover {
  color: #fff;
}

.sc-v4-topnav {
  width: 100%;
  max-width: var(--container-max);
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0 auto 8px;
  display: flex;
  position: relative;
}

.sc-v4-topnav .funnel-back {
  flex: none;
  margin-bottom: 0;
}

.sc-v4-topnav-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sc-intro-forgot-h1 strong {
  font-weight: 400;
}

.sc-intro-forgot-h1 {
  text-align: center;
  color: #fff;
  margin: 20px auto 0;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.sc-intro-forgot-h1.sc-page-title {
  font-weight: 400;
}

.funnel-options--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.funnel-option--intro-yes-no {
  justify-content: center;
  min-height: 55px;
  font-size: 21px;
  font-weight: 400;
}

.icon-left--emoji, .icon-right--emoji {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
}

.funnel-option--right-icon .icon-right--emoji {
  justify-content: flex-end;
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.sc-v4-glass-shell {
  -webkit-backdrop-filter: blur(32px) saturate(150%);
  background: linear-gradient(168deg, #0f172a69 0%, #1e1b4b4f 48%, #4c1d9536 100%);
  border: none;
  border-radius: clamp(22px, 6vw, 28px);
  margin-top: 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ffffff0d, inset 0 1px 1px #ffffff1a, 0 28px 56px #00000040, 0 0 100px #6366f124;
}

.sc-v4-glass-shell:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(120% 80% at 10% 0, #a78bfa2e, #0000 52%), radial-gradient(90% 70% at 92% 8%, #22d3ee1f, #0000 48%), radial-gradient(circle at 50% 100%, #f472b614, #0000 45%);
  position: absolute;
  inset: 0;
}

.sc-v4-glass-shell:after {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(circle at 18% 22%, #ffffff0a .5px, #0000 .6px);
  background-size: 14px 14px;
  position: absolute;
  inset: 0;
}

.sc-v4-glass-shell > * {
  z-index: 1;
  position: relative;
}

.sc-v4-graphic-copy {
  padding: 20px 18px 16px;
}

.sc-v4-graphic-kicker {
  color: #f8fafc;
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

.sc-v4-graphic-list {
  color: #f8fafce0;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  display: grid;
}

.sc-v4-graphic-list li {
  padding-left: 20px;
  position: relative;
}

.sc-v4-graphic-list li:before {
  content: "";
  background: linear-gradient(135deg, #5eead4, #a78bfa, #fb7185);
  border-radius: 999px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: .52em;
  left: 0;
  box-shadow: 0 0 14px #a78bfa73;
}

.sc-v4-graphic-divider {
  background: linear-gradient(90deg, #0000, #ffffff1f, #0000);
  border: 0;
  height: 2px;
  margin: 0 18px;
}

.sc-v4-graphic-service {
  padding: 16px 16px 12px;
}

.sc-v4-graphic-service-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f8fafc7a;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
}

.sc-v4-svc-rows {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.sc-v4-svc-row {
  background: #0206173d;
  border: none;
  border-radius: 22px;
  align-items: center;
  gap: 14px;
  padding: 12px 13px;
  display: flex;
  box-shadow: 0 0 0 1px #ffffff0a, inset 0 1px #ffffff0f, 0 12px 28px #0000001c;
}

.sc-v4-svc-blob {
  color: #f8fafcf5;
  border-radius: 48% 52% 50% 50% / 52% 48%;
  flex-shrink: 0;
  place-items: center;
  width: 46px;
  height: 46px;
  display: grid;
}

.sc-v4-svc-blob svg {
  width: 24px;
  height: 24px;
}

.sc-v4-svc-blob--cyan {
  background: linear-gradient(145deg, #2dd4bf8c, #3b82f659);
  box-shadow: 0 6px 16px #2dd4bf33;
}

.sc-v4-svc-blob--violet {
  background: linear-gradient(145deg, #a78bfa8c, #6366f159);
  box-shadow: 0 6px 16px #818cf838;
}

.sc-v4-svc-blob--amber {
  background: linear-gradient(145deg, #fbbf2480, #ec48994d);
  box-shadow: 0 6px 16px #fbbf2426;
}

.sc-v4-svc-blob--rose {
  background: linear-gradient(145deg, #fb71858c, #f43f5e59);
  box-shadow: 0 6px 16px #fb71852e;
}

.sc-v4-svc-blob--mint {
  background: linear-gradient(145deg, #5eead480, #34d39952);
  box-shadow: 0 6px 16px #34d39933;
}

.sc-v4-svc-txt {
  color: #f8fafcf0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
}

.sc-v4-graphic-inset {
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  background: linear-gradient(185deg, #0206174f 0%, #0f172a42 100%);
  border: none;
  border-radius: 22px;
  margin: 12px 12px 18px;
  padding: 20px 15px;
  box-shadow: 0 0 0 1px #ffffff0b, inset 0 2px #ffffff14, 0 20px 44px #0003, 0 0 48px #38bdf814;
}

.sc-v4-graphic-stat {
  text-align: center;
  padding: 4px 0 8px;
}

.sc-v4-graphic-million {
  letter-spacing: -.03em;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 950;
  line-height: 1;
}

.sc-v4-graphic-million span {
  background: linear-gradient(92deg, #7dd3fc, #c4b5fd, #a5f3fc);
  color: #0000;
  filter: drop-shadow(0 2px 12px #7dd3fc40);
  -webkit-background-clip: text;
  background-clip: text;
}

.sc-v4-graphic-headline-sub {
  color: #ffffffd1;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.sc-v4-graphic-bars {
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 7px;
  margin-top: 14px;
  padding-top: 4px;
  display: grid;
}

.sc-v4-graphic-bar-cell {
  min-width: 0;
}

.sc-v4-graphic-bar-well {
  background: #0f172a2d;
  border-radius: 18px;
  justify-content: center;
  align-items: flex-end;
  height: 118px;
  padding-bottom: 2px;
  display: flex;
  box-shadow: inset 0 1px 3px #00000040;
}

.sc-v4-graphic-bar-fill {
  border-radius: 14px 14px 9px 9px;
  width: 72%;
  max-width: 40px;
  min-height: 20px;
  box-shadow: 0 -2px 12px #00000040;
}

.sc-v4-graphic-bar-year {
  color: #ffffff80;
  letter-spacing: .04em;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 750;
}

.sc-v4-graphic-bar-val {
  letter-spacing: -.02em;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 880;
}

.sc-v4-graphic-desc {
  text-align: center;
  color: #ffffffb8;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.52;
}

.sc-v4-graphic-h2 {
  text-align: center;
  color: #ffffffed;
  letter-spacing: -.01em;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 870;
}

.sc-v4-g2-stack {
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  margin-bottom: 10px;
  display: flex;
}

.sc-v4-g2-pane {
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  background: linear-gradient(188deg, #020617b8 0%, #0f172a85 52%, #312e8159 100%);
  border: none;
  border-radius: clamp(20px, 5.5vw, 24px);
  overflow: hidden;
  box-shadow: 0 0 0 1px #ffffff0a, inset 0 2px #ffffff12, 0 24px 52px #00000073, 0 0 72px #6366f117;
}

.sc-v4-g2-pane--chart {
  padding: 14px 10px 12px;
}

.sc-v4-g2-pane--chart svg {
  aspect-ratio: 1000 / 480;
  width: 100%;
  height: auto;
  display: block;
}

.sc-v4-g2-pane--text {
  padding: 22px 18px 26px;
}

.sc-v4-g2-headline {
  letter-spacing: -.035em;
  color: #f8fafc;
  margin: 0;
  font-size: clamp(24px, 5.8vw, 38px);
  font-weight: 950;
  line-height: 1.06;
}

.sc-v4-g2-body {
  color: #f8fafccc;
  margin: 14px 0 0;
  font-size: clamp(15px, 3.6vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.sc-v4-g2-body strong {
  color: #fffffff7;
  font-weight: 900;
}

@media (prefers-reduced-transparency: reduce) {
  .sc-v4-glass-shell, .sc-v4-graphic-inset {
    -webkit-backdrop-filter: none;
    background: #0f172af0;
    box-shadow: 0 20px 40px #0006;
  }

  .sc-v4-g2-pane {
    -webkit-backdrop-filter: none;
    background: #0f172af0;
    box-shadow: 0 20px 44px #00000061;
  }

  .sc-v4-glass-shell:before, .sc-v4-glass-shell:after {
    opacity: .22;
  }
}

.sc-v4-iframe {
  background: none;
  border: none;
  width: 100%;
  min-height: 720px;
  display: block;
}

@media (max-width: 420px) {
  .sc-v4-iframe {
    min-height: 580px;
  }
}

.blx-modal-overlay {
  z-index: 999999;
  background: #000000d9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.blx-modal-center {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
}

.blx-modal-content {
  color: #1a1a2e;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  padding: 24px;
  position: relative;
  overflow-y: auto;
}

.blx-modal-close {
  color: #1a1a2e;
  cursor: pointer;
  opacity: .6;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  transition: opacity .2s;
  position: absolute;
  top: 12px;
  right: 16px;
}

.blx-modal-close:hover {
  opacity: 1;
}

.blx-modal-title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.blx-modal-plan {
  color: #00000080;
  margin-bottom: 20px;
  font-size: 14px;
}

.blx-checkout-container {
  border-radius: 8px;
}

.blx-checkout-container iframe {
  border: none !important;
  width: 100% !important;
}

.blx-loader {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  display: flex;
}

.blx-spinner {
  border: 3px solid #0000001a;
  border-top-color: #35f;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: .8s linear infinite blx-spin;
}

@keyframes blx-spin {
  to {
    transform: rotate(360deg);
  }
}

.blx-loader-text {
  color: #0009;
  font-size: 14px;
}

.blx-status {
  text-align: center;
  color: #0009;
  margin-top: 12px;
  padding: 8px;
  font-size: 14px;
}

.blx-status-error {
  color: #ff6b6b;
}

.blx-status-success {
  color: #51cf66;
}

.blx-pay-btn {
  color: #fff;
  cursor: pointer;
  background: #35f;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .2s;
  display: block;
}

.blx-pay-btn:hover {
  opacity: .9;
}

.blx-pay-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.blx-footer-text {
  color: #00000059;
  text-align: center;
  margin: 16px 0 0;
  font-size: 12px;
}

.funnel-subcandy--thanks-final {
  color: #3d4353;
  background-color: #eff2f8;
  background-image: url("https://assets.fnlfx.com/01KE8MPDDXADTX2PENDZKDSJKX/UrI78qzZ.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto;
}

.funnel-subcandy--thanks-final .funnel-back {
  color: #3d4353d9;
}

.sc-thanks-final-title {
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 2px #00000059;
  margin: 8px 0 24px;
  font-size: 24px;
  font-weight: 700;
}

.sc-thanks-final-p {
  text-align: left;
  color: #fff;
  text-shadow: 0 1px 2px #00000059;
  margin: 12px 0 0;
  font-weight: 500;
  line-height: 1.45;
}

.sc-thanks-final-p a {
  color: #d6dbff;
}

.sc-not-alone-visual {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.sc-glass-plate {
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background: linear-gradient(145deg, #949ffe24 0%, #5896ff29 38%, #82c6ff1f 100%);
  border: 1px solid #ffffff61;
  border-radius: clamp(22px, 5vw, 30px);
  padding: clamp(26px, 6vw, 40px) clamp(16px, 4.5vw, 28px) clamp(30px, 6vw, 44px);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 32px #1b007938, 0 0 0 1px #949ffe1f, inset 0 1px #ffffff7a;
}

.sc-glass-sparkles {
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sc-glass-sparkles span {
  opacity: .88;
  background: #fff;
  border-radius: 1px;
  width: 7px;
  height: 7px;
  position: absolute;
  transform: rotate(45deg);
  box-shadow: 0 0 10px #ffffffa6;
}

.sc-glass-sparkles span:first-child {
  top: 14%;
  left: 12%;
}

.sc-glass-sparkles span:nth-child(2) {
  opacity: .7;
  width: 5px;
  height: 5px;
  top: 22%;
  right: 18%;
}

.sc-glass-sparkles span:nth-child(3) {
  width: 6px;
  height: 6px;
  bottom: 28%;
  left: 20%;
}

.sc-glass-sparkles span:nth-child(4) {
  top: 38%;
  right: 10%;
}

.sc-glass-sparkles span:nth-child(5) {
  width: 5px;
  height: 5px;
  bottom: 18%;
  right: 24%;
}

.sc-phones {
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(352px, 92vw, 468px);
  padding-top: clamp(36px, 11vw, 60px);
  padding-bottom: clamp(10px, 2.5vw, 18px);
  display: flex;
  position: relative;
}

.sc-phone {
  aspect-ratio: 10 / 20.5;
  background: linear-gradient(145deg, #949ffe33 0%, #0000 50%), linear-gradient(168deg, #35354a 0%, #141420 40%, #1a1a26 55%, #2a2a38 100%);
  border-radius: clamp(28px, 7vw, 36px);
  flex-direction: column;
  width: clamp(179px, 48vw, 237px);
  padding: 5px;
  display: flex;
  position: absolute;
  bottom: clamp(8px, 2vw, 14px);
  left: 50%;
  box-shadow: inset 0 2px #ffffff1a, inset 0 -1px #00000059, 0 22px 44px #0000007a, 0 8px 16px #00000047, 0 0 0 1px #949ffe38, 0 0 28px #1b007959;
}

.sc-phone--back {
  z-index: 0;
  opacity: .94;
  filter: saturate(.96);
  transform: translate(-50%)translate(38%, -6%)rotate(11deg)scale(.92);
}

.sc-phone--front {
  z-index: 1;
  transform: translate(-50%)rotate(-1.5deg);
}

.sc-phone-screen {
  letter-spacing: .01em;
  color: #0f172a;
  background: linear-gradient(#f2f6ff 0%, #e9effc 30%, #e2e8fa 65%, #dbe4f8 100%);
  border-radius: clamp(24px, 6vw, 30px);
  flex-direction: column;
  flex: 1;
  min-height: 0;
  font-size: clamp(10px, 2.55vw, 13px);
  line-height: 1.32;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #ffffffd9, inset 0 -1px #0f172a0f, inset 0 2px 12px #ffffff80;
}

.sc-phone-notch {
  background: linear-gradient(#c8d5e8 0%, #aebccf 100%);
  border-radius: 999px;
  flex-shrink: 0;
  width: 36%;
  min-height: clamp(14px, 3.5vw, 18px);
  margin: clamp(8px, 2vw, 11px) auto 4px;
  box-shadow: 0 1px 3px #0f172a1f, inset 0 1px #ffffffb3;
}

.sc-phone-app-cap {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0f172a61;
  flex-shrink: 0;
  padding: 0 clamp(10px, 2.4vw, 13px) clamp(5px, 1.2vw, 7px);
  font-size: .72em;
  font-weight: 800;
}

.sc-phone-header {
  text-align: center;
  letter-spacing: -.03em;
  color: #0f1a5c;
  background: linear-gradient(185deg, #e8eaff 0%, #a8b4ff 38%, #6b7aed 100%);
  border: 1px solid #ffffffb3;
  border-radius: clamp(11px, 2.5vw, 14px);
  flex-shrink: 0;
  margin: 0 clamp(8px, 2vw, 11px) clamp(5px, 1.4vw, 7px);
  padding: clamp(9px, 2.4vw, 12px) clamp(10px, 2.5vw, 14px);
  font-size: 1.28em;
  font-weight: 800;
  box-shadow: 0 4px 16px #1b00792e, inset 0 1px #fffc;
}

.sc-phone-header span {
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #082f498c;
  margin-top: 3px;
  font-size: .58em;
  font-weight: 700;
  display: block;
}

.sc-phone--back .sc-phone-header {
  margin-top: 2px;
  padding: clamp(8px, 2vw, 11px);
  font-size: 1.08em;
}

.sc-phone--back .sc-phone-header span {
  font-size: .6em;
}

.sc-phone-alert {
  background: linear-gradient(135deg, #ffedc8f2 0%, #ffdc96e0 100%);
  border: 1px solid #f59e0b59;
  border-radius: clamp(10px, 2.3vw, 13px);
  flex-shrink: 0;
  align-items: flex-start;
  gap: 8px;
  margin: 0 clamp(8px, 2vw, 11px) clamp(6px, 1.5vw, 8px);
  padding: clamp(7px, 1.8vw, 10px) clamp(8px, 2vw, 11px);
  display: flex;
  box-shadow: 0 2px 8px #f59e0b1f;
}

.sc-phone-alert svg {
  color: #b45309;
  flex-shrink: 0;
  width: clamp(18px, 4.5vw, 22px);
  height: clamp(18px, 4.5vw, 22px);
  margin-top: 1px;
}

.sc-phone-alert strong {
  color: #92400e;
  letter-spacing: -.01em;
  font-size: .78em;
  font-weight: 800;
  display: block;
}

.sc-phone-alert span {
  color: #78350fe0;
  margin-top: 2px;
  font-size: .68em;
  font-weight: 600;
  line-height: 1.35;
  display: block;
}

.sc-phone-card {
  color: #0f172a;
  background: linear-gradient(#fffffff0 0%, #f5f7fff5 100%);
  border: 1px solid #1b007914;
  border-radius: clamp(11px, 2.5vw, 14px);
  flex-direction: column;
  flex: 0 auto;
  gap: clamp(5px, 1.2vw, 7px);
  min-height: 0;
  margin: 0 clamp(8px, 2vw, 11px);
  padding: clamp(8px, 2vw, 10px);
  display: flex;
  box-shadow: 0 4px 16px #1b007912, inset 0 1px #ffffffeb;
}

.sc-phone--front .sc-phone-card {
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #1b007940 transparent;
  flex: 1 1 0;
  min-height: 0;
  margin-bottom: clamp(5px, 1.2vw, 7px);
  overflow: hidden auto;
}

.sc-phone--front .sc-phone-card::-webkit-scrollbar {
  width: 4px;
}

.sc-phone--front .sc-phone-card::-webkit-scrollbar-thumb {
  background: #1b007938;
  border-radius: 999px;
}

.sc-phone-chips {
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 5px;
  margin: 0;
  display: flex;
}

.sc-phone-card .sc-phone-chips {
  border-top: 1px solid #0f172a12;
  margin-top: clamp(6px, 1.4vw, 8px);
  padding-top: clamp(6px, 1.4vw, 8px);
}

.sc-phone-chip {
  color: #3730a3;
  background: #6366f11f;
  border: 1px solid #1b007924;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: .62em;
  font-weight: 750;
}

.sc-phone-chip--amber {
  color: #b45309;
  background: #f59e0b1f;
  border-color: #f59e0b38;
}

.sc-phone-row {
  color: #0f172ae6;
  align-items: flex-start;
  gap: clamp(6px, 1.4vw, 8px);
  font-size: .88em;
  font-weight: 600;
  display: flex;
}

.sc-phone-row > span:last-child {
  min-width: 0;
}

.sc-phone-ico {
  border-radius: 9px;
  flex-shrink: 0;
  place-items: center;
  width: clamp(26px, 6.5vw, 30px);
  height: clamp(26px, 6.5vw, 30px);
  margin-top: 1px;
  display: grid;
}

.sc-phone-ico svg {
  width: clamp(14px, 3.6vw, 16px);
  height: clamp(14px, 3.6vw, 16px);
}

.sc-phone-ico--cal {
  color: #1d4ed8;
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
}

.sc-phone-ico--renew {
  color: #6d28d9;
  background: linear-gradient(145deg, #ede9fe, #ddd6fe);
}

.sc-phone-ico--clock {
  color: #c2410c;
  background: linear-gradient(145deg, #ffedd5, #fed7aa);
}

.sc-phone-ico--bell {
  color: #0e7490;
  background: linear-gradient(145deg, #cffafe, #a5f3fc);
}

.sc-phone-ico--shield {
  color: #15803d;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
}

.sc-phone-sub {
  color: #0f172a7a;
  margin-top: 2px;
  font-size: .82em;
  font-weight: 550;
  display: block;
}

.sc-phone-tx {
  color: #0f172a73;
  background: #ffffffa6;
  border: 1px solid #0f172a12;
  border-radius: clamp(10px, 2.3vw, 12px);
  flex-shrink: 0;
  margin: auto clamp(8px, 2vw, 11px) clamp(7px, 1.8vw, 10px);
  padding: clamp(7px, 1.8vw, 9px) clamp(8px, 2vw, 10px);
  font-size: .74em;
  box-shadow: 0 2px 6px #0f172a0a;
}

.sc-phone-tx-title {
  color: #0f172a66;
  letter-spacing: .02em;
  margin-bottom: clamp(4px, 1vw, 6px);
  font-size: .88em;
  font-weight: 750;
}

.sc-phone-tx-line {
  color: #0f172ab8;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  display: flex;
}

.sc-phone-tx-line strong {
  color: #dc2626;
  letter-spacing: -.02em;
  font-size: 1.05em;
  font-weight: 800;
}

.sc-phone-tx-extra {
  color: #0f172a8c;
  border-top: 1px dashed #0f172a1a;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 6px;
  font-size: .95em;
  display: flex;
}

.sc-phone-tx-extra em {
  color: #059669;
  font-style: normal;
  font-weight: 800;
}

@media (min-width: 480px) {
  .sc-phone {
    width: 237px;
  }

  .sc-phone-screen {
    font-size: 14px;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/