/** Shopify CDN: Minification failed

Line 74:0 Unexpected "<"

**/

  .ahln-logo-heading-wrap {
    width: 100%;
    text-align: center;
  }

  .ahln-logo-heading {
    margin: 0;
    color: #5A97B5;
    font-size: clamp(56px, 10vw, 132px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.02em;
    flex-wrap: nowrap;
  }

  .ahln-logo-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    filter: blur(2px);
    animation: ahlnLetterReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .ahln-logo-heading span:nth-child(1) { animation-delay: 0.05s; }
  .ahln-logo-heading span:nth-child(2) { animation-delay: 0.16s; }
  .ahln-logo-heading span:nth-child(3) { animation-delay: 0.27s; }
  .ahln-logo-heading span:nth-child(4) { animation-delay: 0.38s; }
  .ahln-logo-heading span:nth-child(5) { animation-delay: 0.49s; }

  @keyframes ahlnLetterReveal {
    0% {
      opacity: 0;
      transform: translateY(24px) scale(0.92);
      filter: blur(2px);
    }
    60% {
      opacity: 1;
      transform: translateY(-4px) scale(1.02);
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  @media (max-width: 767px) {
    .ahln-logo-heading {
      font-size: clamp(48px, 16vw, 88px);
      letter-spacing: -0.05em;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ahln-logo-heading span {
      opacity: 1;
      transform: none;
      filter: none;
      animation: none;
    }
  }
</style>


<style>
  .ahln-type-heading-wrap {
    width: 100%;
    text-align: center;
  }

  .ahln-type-heading {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    min-height: 1.2em;
  }

  .ahln-type-heading__text {
    display: inline;
    white-space: normal;
    word-break: break-word;
  }

  .ahln-type-heading__cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    margin-left: 6px;
    vertical-align: -0.08em;
    background: currentColor;
    animation: ahlnBlinkCursor 0.8s infinite;
  }

  @keyframes ahlnBlinkCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }

  @media (max-width: 767px) {
    .ahln-type-heading {
      margin-bottom: 18px;
      font-size: clamp(26px, 2vw, 40px);
      line-height: 1.16;
    }

    .ahln-type-heading__cursor {
      width: 2px;
      margin-left: 4px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ahln-type-heading__cursor {
      animation: none;
      opacity: 1;
    }
  }




  .ahln-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 20px 0 20px 0;
  }

  .ahln-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 180px;
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease,
      background 0.3s ease;
  }

  .ahln-feature-pill.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ahln-feature-pill:nth-child(1) { transition-delay: 0.05s; }
  .ahln-feature-pill:nth-child(2) { transition-delay: 0.16s; }
  .ahln-feature-pill:nth-child(3) { transition-delay: 0.27s; }

  .ahln-feature-pill:hover {
    background: rgba(255, 255, 255, 0.11);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .ahln-feature-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #ffffff;
    flex: 0 0 auto;
  }

  .ahln-feature-pill__icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  .ahln-feature-pill__text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
  }

  @media (max-width: 767px) {
    .ahln-feature-pills {
      gap: 14px;
      margin-bottom: 34px;
    }

    .ahln-feature-pill {
      min-width: auto;
      width: calc(50% - 7px);
      justify-content: center;
      padding: 14px 16px;
      gap: 10px;
    }

    .ahln-feature-pill:last-child {
      width: 100%;
      max-width: 220px;
    }

    .ahln-feature-pill__text {
      font-size: 16px;
    }

    .ahln-feature-pill__icon svg {
      width: 22px;
      height: 22px;
    }
  }

  @media (max-width: 479px) {
    .ahln-feature-pill {
      width: auto!important;
      max-width: 280px;
    }

    .ahln-feature-pill:last-child {
      max-width: 280px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ahln-feature-pill {
      opacity: 1;
      transform: none;
      transition: box-shadow 0.3s ease, background 0.3s ease;
    }
  }

