.fp-profit-nav-link,
body[data-page="pricing"] #fp-profit-navigation .fp-profit-nav-link {
  color: #111113;
}

.fpnex {
  --fpnex-ink: #111113;
  --fpnex-muted: #69696f;
  --fpnex-soft: #f5f5f6;
  --fpnex-line: #e5e5e8;
  --fpnex-purple: #6747ff;
  --fpnex-purple-soft: #f0edff;
  color: var(--fpnex-ink);
  overflow: clip;
  background: #fff;
}

.fpnex *,
.fpnex *::before,
.fpnex *::after {
  box-sizing: border-box;
}

.fpnex-shell {
  width: min(1216px, calc(100% - 48px));
  margin-inline: auto;
}

.fpnex-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 19, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 19, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .75) 52%, transparent 100%);
}

.fpnex-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid var(--fpnex-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #3d3d42;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.fpnex-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.fpnex-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 9%;
  left: 50%;
  width: 640px;
  height: 370px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 71, 255, .09), transparent 68%);
  filter: blur(10px);
}

.fpnex-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 116px 0 82px;
  text-align: center;
}

.fpnex-hero h1 {
  margin: 25px 0 22px;
  color: var(--fpnex-ink);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.fpnex-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--fpnex-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.fpnex-plans {
  padding: 0 0 112px;
}

.fpnex-billing {
  position: relative;
  z-index: 2;
  width: max-content;
  display: flex;
  gap: 4px;
  margin: -23px auto 54px;
  padding: 4px;
  border: 1px solid var(--fpnex-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 35px rgba(18, 18, 24, .07);
  backdrop-filter: blur(16px);
}

.fpnex-billing button {
  min-height: 38px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: #616168;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.fpnex-billing button:hover {
  color: var(--fpnex-ink);
}

.fpnex-billing button:focus-visible {
  outline: 2px solid var(--fpnex-purple);
  outline-offset: 2px;
}

.fpnex-billing button.is-active {
  color: #fff;
  background: var(--fpnex-ink);
}

.fpnex-billing button span {
  color: #755eff;
  font-size: 12px;
}

.fpnex-billing button.is-active span {
  color: #c9beff;
}

.fpnex-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 1112px;
  margin-inline: auto;
}

.fpnex-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 634px;
  padding: 28px;
  border: 1px solid #ececef;
  border-radius: 3px;
  background: #f7f7f8;
  box-shadow: 0 1px 0 rgba(17, 17, 19, .03);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fpnex-plan:hover {
  transform: translateY(-5px);
  border-color: #d9d9de;
  box-shadow: 0 22px 50px rgba(20, 20, 30, .08);
}

.fpnex-plan-featured {
  background:
    radial-gradient(circle at 82% 3%, rgba(103, 71, 255, .12), transparent 31%),
    #f7f7f8;
  border-color: #d7d2f5;
}

.fpnex-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 30px;
}

.fpnex-plan-name {
  color: var(--fpnex-ink);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.fpnex-plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid #dedee2;
  border-radius: 999px;
  background: #fff;
  color: #5e5e64;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.fpnex-plan-badge-dark {
  border-color: var(--fpnex-ink);
  color: #fff;
  background: var(--fpnex-ink);
}

.fpnex-plan-summary {
  min-height: 64px;
  margin: 18px 0 26px;
  color: var(--fpnex-muted);
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: -.01em;
}

.fpnex-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.fpnex-price strong {
  color: var(--fpnex-ink);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  transition: opacity .18s ease, transform .18s ease;
}

.fpnex-price strong.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.fpnex-price span {
  color: #707077;
  font-size: 14px;
}

.fpnex-price-note {
  min-height: 20px;
  margin: 8px 0 22px;
  color: #8a8a91;
  font-size: 12px;
}

.fpnex-plan-cta {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--fpnex-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.fpnex-plan-cta:hover {
  transform: translateY(-2px);
}

.fpnex-plan-cta:focus-visible,
.fpnex-final-actions a:focus-visible {
  outline: 2px solid var(--fpnex-purple);
  outline-offset: 3px;
}

.fpnex-plan-cta-light {
  color: var(--fpnex-ink);
  background: rgba(255, 255, 255, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.fpnex-plan-cta-light:hover {
  background: #fff;
}

.fpnex-plan-cta-dark {
  color: #fff;
  background: var(--fpnex-ink);
  box-shadow: 0 8px 22px rgba(17, 17, 19, .16);
}

.fpnex-plan-cta-dark:hover {
  background: #26262a;
  box-shadow: 0 12px 28px rgba(17, 17, 19, .2);
}

.fpnex-plan-divider {
  height: 1px;
  margin: 26px 0 22px;
  background: #dedee2;
}

.fpnex-includes {
  color: #3a3a3f;
  font-size: 13px;
  font-weight: 500;
}

.fpnex-feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.fpnex-feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: #4f4f55;
  font-size: 14px;
  line-height: 1.35;
}

.fpnex-feature-list li span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  background: #2e2e32;
  font-size: 10px;
  font-weight: 600;
}

.fpnex-feature-list-accent li span {
  background: var(--fpnex-purple);
}

.fpnex-fee {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #dedee2;
}

.fpnex-fee span {
  color: #73737a;
  font-size: 12px;
}

.fpnex-fee strong {
  grid-row: span 2;
  color: var(--fpnex-ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.fpnex-fee small {
  color: #93939a;
  font-size: 10px;
}

.fpnex-trust {
  padding: 74px 0 76px;
  background: #fff;
}

.fpnex-trust p {
  margin: 0 0 50px;
  color: #57575d;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.fpnex-logo-window {
  max-width: 1000px;
  margin-inline: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.fpnex-logo-track {
  width: max-content;
  display: flex;
  animation: fpnex-logo-marquee 30s linear infinite;
  will-change: transform;
}

.fpnex-logo-window:hover .fpnex-logo-track {
  animation-play-state: paused;
}

.fpnex-logo-set {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
}

.fpnex-logo-set img {
  width: auto;
  max-width: 110px;
  height: 30px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  flex: 0 0 auto;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.fpnex-logo-set img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes fpnex-logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

.fpnex-comparison {
  padding: 100px 0 132px;
  background: #fff;
}

.fpnex-section-heading {
  max-width: 620px;
  margin: 0 auto 62px;
  text-align: center;
}

.fpnex-section-heading h2 {
  margin: 0 0 20px;
  color: var(--fpnex-ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.fpnex-section-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--fpnex-muted);
  font-size: 16px;
  line-height: 1.5;
}

.fpnex-table-scroll {
  max-width: 1112px;
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-color: #b6b6bc #f2f2f3;
  scrollbar-width: thin;
}

.fpnex-table-scroll:focus-visible {
  outline: 2px solid var(--fpnex-purple);
  outline-offset: 4px;
}

.fpnex-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}

.fpnex-table th,
.fpnex-table td {
  border-bottom: 1px dashed #e2e2e5;
  vertical-align: middle;
}

.fpnex-table thead th {
  width: 25%;
  height: 184px;
  padding: 34px 22px 32px;
  color: #6b6b72;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  vertical-align: bottom;
}

.fpnex-table thead th:first-child {
  color: var(--fpnex-ink);
  text-align: left;
}

.fpnex-table thead strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fpnex-ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.fpnex-table thead span {
  display: block;
  color: #86868d;
  font-size: 12px;
}

.fpnex-table thead .fpnex-table-label {
  color: #8a8a90;
  font-size: 12px;
}

.fpnex-table thead a {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 18px;
  border: 1px solid #dfdfe2;
  border-radius: 999px;
  color: var(--fpnex-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.fpnex-table thead a:hover {
  transform: translateY(-2px);
}

.fpnex-table thead a.is-dark {
  border-color: var(--fpnex-ink);
  color: #fff;
  background: var(--fpnex-ink);
  box-shadow: 0 7px 16px rgba(17, 17, 19, .16);
}

.fpnex-table .is-featured {
  background: #fff;
}

.fpnex-table tbody th[scope="row"] {
  padding: 18px 22px 18px 2px;
  color: #4a4a50;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.fpnex-table tbody td {
  padding: 18px 16px;
  color: #606067;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.fpnex-table tbody td strong {
  color: var(--fpnex-ink);
  font-weight: 500;
}

.fpnex-table .fpnex-table-group th {
  padding: 52px 2px 16px;
  color: var(--fpnex-ink);
  background: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
  text-align: left;
}

.fpnex-check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--fpnex-purple);
  font-size: 12px;
  font-weight: 600;
}

.fpnex-dash {
  color: #aeafb5;
}

.fpnex-table-note {
  max-width: 1112px;
  margin: 24px auto 0;
  color: #8c8c93;
  font-size: 12px;
  line-height: 1.5;
}

.fpnex-final {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
}

.fpnex-final-inner {
  position: relative;
  z-index: 1;
  min-height: 480px;
  padding: 92px 52px 0;
}

.fpnex-final-copy {
  position: relative;
  z-index: 3;
  width: min(600px, 58%);
}

.fpnex-final h2 {
  margin: 0 0 18px;
  color: var(--fpnex-ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.fpnex-final p {
  max-width: 520px;
  margin: 0;
  color: var(--fpnex-muted);
  font-size: 16px;
  line-height: 1.5;
}

.fpnex-final-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.fpnex-final-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--fpnex-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.fpnex-final-actions a:hover {
  transform: translateY(-2px);
}

.fpnex-final-primary {
  color: #fff;
  background: var(--fpnex-ink);
  box-shadow: 0 10px 28px rgba(17, 17, 19, .16);
}

.fpnex-final-primary:hover {
  background: #29292d;
}

.fpnex-final-secondary {
  color: var(--fpnex-ink);
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.fpnex-final-secondary:hover {
  background: rgba(255, 255, 255, .9);
}

.fpnex-final-art {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.fpnex-reveal {
  opacity: 1;
  transform: none;
}

.fpnex.is-motion-ready .fpnex-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, .75, .27, 1), transform .7s cubic-bezier(.22, .75, .27, 1);
}

.fpnex.is-motion-ready .fpnex-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .fpnex-plan-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }

  .fpnex-plan {
    min-height: 0;
  }

  .fpnex-plan-summary {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .fpnex-shell {
    width: min(100% - 32px, 620px);
  }

  .fpnex-grid {
    background-size: 34px 34px;
  }

  .fpnex-hero {
    min-height: 440px;
  }

  .fpnex-hero-inner {
    padding: 94px 0 76px;
  }

  .fpnex-hero h1 {
    margin: 22px 0 19px;
    font-size: clamp(40px, 11vw, 50px);
    line-height: 1;
  }

  .fpnex-hero p {
    font-size: 16px;
    line-height: 1.45;
  }

  .fpnex-plans {
    padding-bottom: 76px;
  }

  .fpnex-billing {
    margin-bottom: 40px;
  }

  .fpnex-plan {
    padding: 24px;
  }

  .fpnex-plan:hover {
    transform: none;
  }

  .fpnex-price strong {
    font-size: 44px;
  }

  .fpnex-trust {
    padding: 72px 0 82px;
  }

  .fpnex-trust p {
    margin-bottom: 42px;
  }

  .fpnex-logo-window {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .fpnex-logo-track {
    animation-duration: 24s;
  }

  .fpnex-logo-set {
    gap: 42px;
    padding-right: 42px;
  }

  .fpnex-logo-set img {
    max-width: 96px;
    height: 27px;
  }

  .fpnex-comparison {
    padding: 86px 0 94px;
  }

  .fpnex-section-heading {
    margin-bottom: 50px;
  }

  .fpnex-section-heading h2 {
    margin: 0 0 17px;
    font-size: 36px;
    line-height: 1.05;
  }

  .fpnex-section-heading p {
    font-size: 15px;
  }

  .fpnex-table-scroll {
    width: calc(100% + 16px);
    padding-right: 16px;
  }

  .fpnex-table {
    min-width: 720px;
  }

  .fpnex-table thead th {
    height: 168px;
    padding: 22px 14px;
  }

  .fpnex-table thead a {
    min-height: 40px;
    padding-inline: 15px;
  }

  .fpnex-table tbody th[scope="row"] {
    position: sticky;
    left: 0;
    z-index: 1;
    padding-left: 10px;
    background: #fff;
    box-shadow: 1px 0 0 var(--fpnex-line);
  }

  .fpnex-table .fpnex-table-group th {
    position: static;
    padding-left: 2px;
    box-shadow: none;
  }

  .fpnex-final {
    min-height: 520px;
  }

  .fpnex-final-inner {
    min-height: 520px;
    padding: 70px 16px 0;
  }

  .fpnex-final-copy {
    width: 100%;
    text-align: center;
  }

  .fpnex-final h2 {
    font-size: 36px;
    line-height: 1.07;
  }

  .fpnex-final p {
    margin-inline: auto;
  }

  .fpnex-final-actions {
    flex-direction: column;
    max-width: 330px;
    margin-inline: auto;
    margin-top: 25px;
  }

  .fpnex-final-actions a {
    width: 100%;
  }

  .fpnex-final-art {
    left: 50%;
    width: 760px;
    max-width: none;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .fpnex-shell {
    width: calc(100% - 28px);
  }

  .fpnex-hero h1 br,
  .fpnex-section-heading h2 br,
  .fpnex-final h2 br {
    display: none;
  }

  .fpnex-plan-top {
    align-items: flex-start;
  }

  .fpnex-plan-badge {
    white-space: normal;
    text-align: center;
  }

  .fpnex-billing button {
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fpnex *,
  .fpnex *::before,
  .fpnex *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .fpnex.is-motion-ready .fpnex-reveal {
    opacity: 1;
    transform: none;
  }
}
