/** Shopify CDN: Minification failed

Line 302:39 Unexpected "{"
Line 302:48 Expected ":"
Line 302:55 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:app-download-hero (INDEX:4) */
.app-download-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    overflow: hidden;
    background-color: #000;
  }

  .app-download-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .app-download-hero__background--mobile {
    display: none;
  }

  .app-download-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .app-download-hero__content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    padding: 48px 24px;
  }

  .app-download-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
    width: 100%;
  }

  .app-download-hero__eyebrow {
    display: block;
    font-family: var(--body-font-stack);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
  }

  .app-download-hero__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }

  .app-download-hero__badges--align-center {
    justify-content: center;
  }

  .app-download-hero__badges--align-left {
    justify-content: flex-start;
  }

  .app-download-hero__badges--align-right {
    justify-content: flex-end;
  }

  .app-download-hero__badge-link {
    display: inline-flex;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .app-download-hero__badge-link:hover,
  .app-download-hero__badge-link:focus-visible {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  .app-download-hero__badge-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
  }

  .app-download-hero__badge-image {
    height: 44px;
    width: auto;
    display: block;
  }

  .app-download-hero__heading {
    margin: 0;
    font-family: var(--heading-font-stack);
    font-weight: var(--header-font-weight);
    font-style: var(--header-font-style);
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  .app-download-hero__subtext {
    margin: 0;
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    line-height: 1.6;
  }

  .app-download-hero__subtext p {
    margin: 0;
  }

  .app-download-hero__subtext p + p {
    margin-top: 12px;
  }

  @media screen and (max-width: 749px) {
    .app-download-hero {
      min-height: 100svh;
    }

    .app-download-hero__content-wrapper {
      padding: 32px 20px;
    }

    .app-download-hero__badge-image {
      height: 38px;
    }
  }
/* END_SECTION:app-download-hero */

/* START_SECTION:feature-highlights (INDEX:30) */
.fh {
    width: 100%;
    overflow: hidden;
  }

  .fh__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .fh--image-left .fh__grid {
    direction: rtl;
  }

  .fh--image-left .fh__grid > * {
    direction: ltr;
  }

  .fh__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 4vw, 48px);
    padding: var(--padding-section-top, 60px) clamp(24px, 6vw, 80px) var(--padding-section-bottom, 60px) clamp(24px, 6vw, 80px);
  }

  .fh__header .section-title,
  .fh__header .section-description {
    text-align: left;
  }

  .fh__features {
    display: grid;
    grid-template-columns: repeat(var(--fh-columns, 2), 1fr);
    gap: 40px clamp(24px, 4vw, 56px);
  }

  .fh__feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .fh__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-btn-bg-color, currentColor);
  }

  .fh__feature-icon svg {
    width: 100%;
    height: 100%;
  }

  .fh__feature-icon--custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fh__feature-title {
    margin: 0;
    font-family: var(--heading-font-stack, inherit);
    font-weight: var(--header-font-weight, 600);
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-scheme-text-color, currentColor);
  }

  .fh__feature-text {
    margin: 0;
    font-family: var(--body-font-stack, inherit);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-scheme-text-color, currentColor);
    opacity: 0.75;
  }

  .fh__feature-text p {
    margin: 0;
  }

  .fh__cta {
    margin-top: 8px;
  }

  .fh__media {
    position: relative;
    min-height: 320px;
  }

  .fh__media-wrapper {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    width: 100% !important;
  }

  .fh__media-wrapper img {
    height: 100% !important;
    object-fit: cover;
  }

  .fh__media-wrapper--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-scheme-border-color, #e5e5e5);
  }

  .fh__media-wrapper--placeholder .icon--placeholder {
    width: 40%;
    height: 40%;
  }

  @media screen and (max-width: 989px) {
    .fh__grid {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .fh--image-left .fh__grid {
      direction: ltr;
    }

    .fh__media {
      order: -1;
      min-height: 60svh;
    }

    .fh__content {
      padding: 48px 24px;
      gap: 32px;
    }

    .fh__features {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .fh__cta .dynamic-section-button--{{ section.id }} {
      width: 100%;
      text-align: center;
    }
  }
/* END_SECTION:feature-highlights */