/** Shopify CDN: Minification failed

Line 42:17 Expected identifier but found whitespace
Line 42:19 Unexpected "{"
Line 42:28 Expected ":"
Line 43:17 Expected identifier but found whitespace
Line 43:19 Unexpected "{"
Line 43:28 Expected ":"
Line 44:17 Expected identifier but found whitespace
Line 44:19 Unexpected "{"
Line 44:28 Expected ":"
Line 66:15 Expected identifier but found whitespace
... and 3 more hidden warnings

**/
/* =========================================================
   TRYBB DESIGN SYSTEM — CUSTOM EXPERIENCE

   TABLE OF CONTENTS

   01 Custom Landing
      01.01 Foundation
      01.02 Hero
      01.03 Intro
      01.04 Choice Cards
      01.05 USP
      01.06 Story
      01.07 Bottom CTA

   02 Personal Landing
      (future)

   03 Personalizer
      (future)

   04 Custom Product
      (future)

========================================================= */

  .custom-landing {
    --trybb-sand: {{ section.settings.sand_color }};
    --trybb-blue: {{ section.settings.blue_color }};
    --trybb-navy: {{ section.settings.navy_color }};
    --trybb-white: #ffffff;

    background: var(--trybb-sand);
    color: var(--trybb-navy);
  }

  .trybb-icon {
    width: 28px;
    height: 28px;
    display: block;
    color: currentColor;
    flex-shrink: 0;
  }

  .trybb-icon svg {
    width: 100%;
    height: 100%;
  }

  .custom-landing__hero {
    position: relative;
    min-height: {{ section.settings.hero_height }}vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .custom-landing__hero-image,
  .custom-landing__hero-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .custom-landing__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-landing__hero-placeholder {
    background: var(--trybb-navy);
  }

  .custom-landing__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      90deg,
      rgba(15, 19, 57, {{ section.settings.overlay_opacity | divided_by: 100.0 }}) 0%,
      rgba(15, 19, 57, 0.48) 48%,
      rgba(15, 19, 57, 0.10) 100%
    );
  }

  .custom-landing__hero-content {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding: 88px 5vw;
    color: var(--trybb-white);
  }

  .custom-landing__eyebrow,
  .custom-landing__intro-kicker,
  .custom-landing__story-kicker {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--trybb-blue);
    font-weight: 900;
  }

  .custom-landing__eyebrow {
    margin-bottom: 18px;
  }

    .custom-landing__title {
    font-size: clamp(58px, 7vw, 96px);
    line-height: .95;
    letter-spacing: -.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
    }

  .custom-landing__subtitle {
    font-size: clamp(21px, 3vw, 38px);
    line-height: 1.05;
    margin: 0 0 24px;
    text-transform: uppercase;
    color: var(--trybb-blue);
  }

  .custom-landing__text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 36px;
    opacity: .92;
  }

  .custom-landing__button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    background: var(--trybb-blue);
    color: var(--trybb-navy);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .06em;
    border-radius: 2px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
  }

  .custom-landing__button:hover {
    background: var(--trybb-white);
    color: var(--trybb-navy);
    transform: translateY(-1px);
  }

  .custom-landing__intro {
    padding: 56px 5vw 28px;
    max-width: 980px;
  }

  .custom-landing__intro-kicker {
    margin-bottom: 14px;
  }

  .custom-landing__intro-title {
    font-size: clamp(34px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0 0 18px;
  }

  .custom-landing__intro-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 660px;
    opacity: .82;
  }

  .custom-landing__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 26px 5vw 56px;
  }

  .custom-landing__card {
    position: relative;
    min-height: 390px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--trybb-white);
    background: var(--trybb-navy);
    isolation: isolate;
  }

  .custom-landing__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    z-index: 1;
  }

  .custom-landing__card:hover img {
    transform: scale(1.045);
  }

  .custom-landing__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,19,57,.08), rgba(15,19,57,.78));
    z-index: 2;
  }

  .custom-landing__card-content {
    position: relative;
    z-index: 3;
    padding: 34px;
    max-width: 440px;
  }

  .custom-landing__card-label {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--trybb-blue);
    font-weight: 900;
  }

  .custom-landing__card-title {
    font-size: clamp(36px, 5vw, 68px);
    line-height: .9;
    letter-spacing: -.045em;
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  .custom-landing__card-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
    opacity: .94;
  }

  .custom-landing__arrow {
    font-size: 34px;
    line-height: 1;
    color: var(--trybb-blue);
  }

  .custom-landing__usp {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(15, 19, 57, .10);
    padding: 1px 5vw;
  }

  .custom-landing__usp-item {
    background: var(--trybb-white);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    min-height: 110px;
  }

  .custom-landing__usp-icon svg {
  width: 100%;
  height: 100%;
}

    .custom-landing__usp-icon {
    width: 24px;
    height: 24px;
    color: var(--trybb-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .custom-landing__usp-icon .trybb-icon {
    width: 32px;
    height: 32px;
    display: block;
    color: currentColor;
    }

  .custom-landing__usp-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 7px;
    letter-spacing: .04em;
    color: var(--trybb-navy);
  }

  .custom-landing__usp-text {
    font-size: 14px;
    line-height: 1.45;
    opacity: .72;
    color: var(--trybb-navy);
  }

  .custom-landing__story {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    min-height: 460px;
    background: var(--trybb-navy);
    color: var(--trybb-white);
    margin-top: 72px;
  }

  .custom-landing__story-content {
    padding: 74px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .custom-landing__story-kicker {
    margin-bottom: 16px;
  }

  .custom-landing__story-title {
    font-size: clamp(42px, 6vw, 84px);
    line-height: .9;
    letter-spacing: -.045em;
    text-transform: uppercase;
    margin: 0 0 26px;
  }

  .custom-landing__story-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 450px;
    opacity: .9;
  }

  .custom-landing__story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
  }

  .custom-landing__story-image {
    position: relative;
    overflow: hidden;
    background: var(--trybb-blue);
  }

  .custom-landing__story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-landing__bottom-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(15,19,57,.12);
    padding: 64px 5vw;
  }

  .custom-landing__bottom-link {
    background: var(--trybb-white);
    color: var(--trybb-navy);
    padding: 36px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
  }

  .custom-landing__bottom-link:hover {
    background: var(--trybb-navy);
    color: var(--trybb-white);
    transform: translateY(-1px);
  }

  .custom-landing__bottom-link:hover .custom-landing__bottom-arrow {
    color: var(--trybb-blue);
  }

  .custom-landing__bottom-link strong {
    display: block;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: .08em;
  }

  .custom-landing__bottom-link span {
    font-size: 15px;
    line-height: 1.5;
  }

  .custom-landing__bottom-arrow {
    font-size: 32px;
    color: var(--trybb-blue);
    margin-left: 24px;
  }

  @media screen and (max-width: 989px) {
    .custom-landing__usp {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-landing__story {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (max-width: 749px) {
    .custom-landing__hero {
      min-height: 78vh;
    }

    .custom-landing__hero-content {
      padding: 68px 24px;
    }

    .custom-landing__intro {
      padding: 44px 24px 18px;
    }

    .custom-landing__cards,
    .custom-landing__usp,
    .custom-landing__story-images,
    .custom-landing__bottom-cta {
      grid-template-columns: 1fr;
    }

    .custom-landing__cards {
      padding: 22px 24px 42px;
    }

    .custom-landing__card {
      min-height: 320px;
      border-radius: 8px;
    }

    .custom-landing__card-content {
      padding: 28px;
    }

    .custom-landing__usp {
      padding: 1px 24px;
    }

    .custom-landing__story {
      margin-top: 52px;
    }

    .custom-landing__story-content {
      padding: 58px 24px;
    }

    .custom-landing__story-images {
      min-height: 390px;
    }

    .custom-landing__bottom-cta {
      padding: 38px 24px;
    }

    .custom-landing__bottom-link {
      padding: 28px;
    }
  }