/* Global utilities. Extracted verbatim from the two inline <style> blocks the
   Webflow export placed in the body, so this sheet must load LAST. */

/* Make text look crisper and more legible in all browsers */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* Set color style to inherit */
.inherit-color * {
  color: inherit;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child,
.w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}

/* Get rid of bottom margin on last element in any rich text element */
.w-richtext > :last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}

/* Make sure containers never lose their center alignment */
.container-medium,
.container-small,
.container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Apply "..." after 3 lines of text */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* These classes are never overwritten */
.hide {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .hide,
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
  .nav-menu {
    height: calc(100vh - 72px) !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

.margin-0 {
  margin: 0rem !important;
}
.padding-0 {
  padding: 0rem !important;
}
.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}
.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}
.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}
.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}
.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}
.margin-bottom {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}
.padding-bottom {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}
.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}
.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}
.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}
.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}
.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.bottom-blur {
  backdrop-filter: blur(7px);
  background-image: linear-gradient(#fff0, #ffffff00 90%, #fff);
  mask-image: linear-gradient(#0000, 10%, #fff 40% 100%);
  pointer-events: none;
}

/* Reveal-on-scroll initial states. Replaces the inline transform/opacity that
   Webflow's IX2 runtime wrote onto every animated element. */
[data-reveal] {
  transform: translate3d(0, 1.5rem, 0);
  opacity: 0;
}

[data-reveal].is-revealed {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform 1000ms cubic-bezier(0.77, 0, 0.175, 1),
    opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}

[data-reveal="second"].is-revealed {
  transition-delay: 300ms;
}

/* Hero gradient breathe. Webflow ran this as a looping two-group interaction,
   3s out and 3s back, linear. */
@keyframes hero-background-breathe {
  0% {
    transform: translate3d(0, 0, 0);
    height: 100%;
  }
  50% {
    transform: translate3d(0, -50%, 0);
    height: 200%;
  }
  100% {
    transform: translate3d(0, 0, 0);
    height: 100%;
  }
}

.home1_hero_background.is-animating {
  animation: hero-background-breathe 6s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .home1_hero_background.is-animating {
    animation: none;
  }
  [data-reveal] {
    transform: none;
    opacity: 1;
  }
  [data-reveal].is-revealed {
    transition: none;
  }
}

/* Footer link row. footer_socials exists for icons and has a 2px gap, which
   runs text links together. */
.footer_links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  align-items: center;
}

.footer_links a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer_links a:hover {
  opacity: 0.6;
}

/* The two marketing forms sit in a centred column, so the fields, the button
   and the result messages all share one width. */
.form_component {
  width: 100%;
}

.form_message-success,
.form_message-error {
  width: 100%;
}

/* Pricing. Two rules from PRICING.md drive this layout:
   a line identical in all three tiers is not a row, it goes in the strip above
   the cards; and every tier shows the same rows in the same order so the eye
   scans down one column instead of reading three different lists. */

.pricing_included {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
}

.pricing_rows {
  display: flex;
  flex-direction: column;
}

.pricing_row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 0.0625rem solid var(--color-base--color-neutral--300);
}

.pricing_row:last-child {
  border-bottom: 0;
}

.pricing_row > span:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Pro is the one we sell, so it is the one that reads as chosen. */
.home2_pricing_plan-box.is-featured {
  border-color: var(--color--accent);
  background-color: var(--color-base--white);
}

@media screen and (max-width: 767px) {
  .pricing_included {
    justify-content: flex-start;
  }
}
