/** Shopify CDN: Minification failed

Line 421:2 Unexpected "#"
Line 421:4 Unexpected "{"
Line 421:16 Expected ":"
Line 431:2 Unexpected "#"
Line 431:4 Unexpected "{"
Line 431:16 Expected ":"
Line 436:2 Unexpected "#"
Line 436:4 Unexpected "{"
Line 436:16 Expected ":"

**/
/* ==========================
   BASE HERO HEIGHT / LAYOUT
   ========================== */

.f-hero .container-full {
  padding: 0;
}

/* Desktop height presets */
.f-hero:not(.f-hero--mobile) .f-hero--small { --hero-height: 29rem; }
.f-hero:not(.f-hero--mobile) .f-hero--medium { --hero-height: 36rem; }
.f-hero:not(.f-hero--mobile) .f-hero--large { --hero-height: 42rem; }

@media (min-width: 768px) {
  .f-hero--small  { --hero-height: 42rem; }
  .f-hero--medium { --hero-height: 56rem; }
  .f-hero--large  { --hero-height: 72rem; }

  .f-hero:not(.f-hero--adapt) .f-hero__wrapper::before {
    display: none;
  }

  .f-hero__content {
    max-width: 60%;
  }
}

/* Mobile height presets */
@media (max-width: 767.98px) {
  .f-hero-mobile--small        { --hero-height: 29rem; }
  .f-hero-mobile--medium       { --hero-height: 36rem; }
  .f-hero-mobile--large        { --hero-height: 42rem; }
  .f-hero-mobile--extra-large  { --hero-height: 66rem; }

  .f-hero:not(.f-hero-mobile--adapt) .f-hero__wrapper::before {
    display: none;
  }
}

.f-hero__wrapper {
  min-height: var(--hero-height);
}

.f-hero__content {
  z-index: 1;
  color: var(--text-color);
}

.f-hero__content .btn--underline {
  color: currentColor;
}

/* Content padding */
.f-hero__content-wrapper {
  padding-top: var(--vertical-content-padding, 4rem);
  padding-bottom: var(--vertical-content-padding, 4rem);
}

.f-hero__content-wrapper:not(.container) {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .f-hero__content-wrapper {
    padding-top: var(--vertical-content-padding-mobile, 4rem);
    padding-bottom: var(--vertical-content-padding-mobile, 4rem);
  }

  .f-hero__wrapper--mobile-stack {
    padding: 0;
  }

  .f-hero__wrapper--mobile-stack::before,
  .f-hero__wrapper--mobile-stack .bg-overlay {
    display: none;
  }

  .f-hero__wrapper--mobile-stack .f-hero__content-wrapper {
    padding: 0;
    position: static;
  }

  .f-hero__wrapper--mobile-stack .f-hero__bg--mobile {
    position: relative;
  }

  .f-hero__wrapper--mobile-stack .f-hero__bg--desktop {
    position: relative !important;
  }

  .f-hero__wrapper--mobile-stack .f-hero__bg {
    height: var(--hero-height);
    position: relative;
  }

  .f-hero__wrapper--mobile-stack .f-hero__content {
    width: 100%;
    padding: 2rem 1.5rem 0;
    color: var(--color-text-body);
  }

  .f-hero__wrapper--mobile-stack .f-video-wrapper {
    position: relative !important;
  }
}

/* Background media */
.f-hero:not(.f-hero--adapt) .f-video-wrapper,
.f-hero:not(.f-hero--adapt) .f-hero__bg {
  height: var(--hero-height);
}

.f-hero .f-hero__bg img,
.f-hero .f-hero__bg svg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ==========================
   EI-STYLE VIDEO HERO SKIN
   (video-hero.liquid)
   ========================== */

.f-hero.ei-hero {
  --ei-accent: #008593;
  --ei-ink: #0e1111;
  --ei-dim: #4b5563;
  --ei-border: #e5e7eb;
  --ei-radius-lg: 22px;
  --ei-pad: clamp(18px, 3vw, 36px);
  --ei-gap: clamp(16px, 2.6vw, 32px);
}

/* Frame behaves like EI hero card */
.f-hero.ei-hero .ei-hero__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ei-pad);
  border-radius: var(--ei-radius-lg);
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--ei-accent) 18%, #ffffff) 0%,
    #ffffff 48%,
    #ffffff 100%
  );
  margin-inline: clamp(16px, 4vw, 48px);
  min-height: calc(var(--hero-height) + 20px);
}

/* Video fills frame */
.f-hero.ei-hero .f-video-wrapper,
.f-hero.ei-hero .f-video__bg,
.f-hero.ei-hero .video-playsinline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* White 100–50–100 gradient overlay */
.f-hero.ei-hero .ei-hero__overlay,
.f-hero.ei-hero .bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  opacity: calc(var(--color-overlay-alpha, 40) / 100);
  z-index: 1;
}

/* Content shell + column */
.f-hero.ei-hero .ei-hero__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-hero.ei-hero .ei-hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3.2vw, 32px);
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  color: var(--ei-ink);
}

/* ==========================
   KICKER / SUBHEADING
   ========================== */

/* If you changed subtitle → <span class="ei-kicker">, style that: */
.f-hero.ei-hero .ei-kicker,
.f-hero.ei-hero .f-hero_subheading {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ei-accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  align-self: center;
  justify-self: center;
  width: auto;
}

/* ==========================
   HEADING / BODY TEXT
   ========================== */

.f-hero.ei-hero .ei-hero__heading,
.f-hero.ei-hero .f-hero_heading {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.25;
  margin: 0;
  font-weight: 800;
  color: var(--ei-ink);
}

.f-hero.ei-hero .ei-hero__body,
.f-hero.ei-hero .f-hero_text {
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--ei-dim);
  margin: 0;
  font-weight: 500;
  max-width: 100ch;
  margin-inline: auto;
}

.f-hero.ei-hero .ei-hero__body.rte p,
.f-hero.ei-hero .f-hero_text.rte p {
  margin-bottom: 0.75rem;
}

.f-hero.ei-hero .ei-hero__body.rte p:last-child,
.f-hero.ei-hero .f-hero_text.rte p:last-child {
  margin-bottom: 0;
}

/* ==========================
   MAIN CTA BUTTON ROW
   ========================== */

.f-hero.ei-hero .ei-hero__buttons,
.f-hero.ei-hero .f-hero_button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-self: center;
}

.f-hero.ei-hero .ei-hero__buttons .btn,
.f-hero.ei-hero .f-hero_button .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.18s ease;
  border: 1px solid var(--ei-border);
  min-width: 180px;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Primary */
.f-hero.ei-hero .f-hero_button .btn--primary {
  background: var(--ei-accent);
  color: #fff;
  border-color: var(--ei-accent);
}

.f-hero.ei-hero .f-hero_button .btn--primary:hover {
  background: color-mix(in oklab, var(--ei-accent) 88%, black);
  border-color: color-mix(in oklab, var(--ei-accent) 88%, black);
  transform: translateY(-1px);
}

/* Secondary */
.f-hero.ei-hero .f-hero_button .btn--secondary {
  color: var(--ei-accent);
  border-color: color-mix(in oklab, var(--ei-accent) 32%, white);
  background: color-mix(in oklab, var(--ei-accent) 8%, white);
}

.f-hero.ei-hero .f-hero_button .btn--secondary:hover {
  background: var(--ei-accent);
  color: #fff;
  border-color: var(--ei-accent);
  transform: translateY(-1px);
}

/* ==========================
   JUMP BAR – WHITE PILL WITH
   PRIMARY PILL BUTTONS
   ========================== */

.f-hero.ei-hero .ei-hero-jumpbar-wrap {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.f-hero.ei-hero .ei-hero-jumpbar {
      right: calc(clamp(8px, 1.2vw, 14px) + 48px);
      bottom: calc(clamp(8px, 1.2vw, 14px) + 28px);
      display:grid;
      gap:8px;
      background: rgba(255,255,255,0.7);
      border:1px solid rgba(255,255,255,0.7);
      border-radius:14px;
      padding:10px;
      box-shadow: 0 10px 28px rgba(2,6,23,.10);
      backdrop-filter: saturate(140%) blur(10px);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
    }

.f-hero.ei-hero .ei-hero-jumpbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary pill buttons inside jump bar */
.f-hero.ei-hero .ei-hero-jumpbar__list .btn--primary {
  border-radius: 5px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 15px;
  min-width: max-content;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
}

.f-hero.ei-hero .ei-hero-jumpbar__list .btn--primary:hover {
  transform: translateY(-1px);
}

/* ==========================
   RESPONSIVE TWEAKS
   ========================== */

@media (max-width: 960px) {
  .f-hero.ei-hero .ei-hero__frame {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .f-hero.ei-hero .f-hero_button {
    flex-direction: column;
    gap: 10px;
  }

  .f-hero.ei-hero .f-hero_button .btn {
    width: 100%;
    font-size: 15px;
    padding-block: 12px;
  }

  .f-hero.ei-hero .ei-hero-jumpbar {
    padding: 10px 14px;
  }

  .f-hero.ei-hero .ei-hero-jumpbar__list {
    gap: 10px;
  }

  .f-hero.ei-hero .ei-hero-jumpbar__list .btn--primary {
    padding: 8px 18px;
    font-size: 14px;
  }
}
  /* EI-style hero title for this section only */
  #{{ section_id }} .ei-hero__title{
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.25;
    margin: 0;
    font-weight: 800;
    /* let it inherit color from your hero text_color */
    color: currentColor;
  }

  /* Bracket span inside title: lighter weight */
  #{{ section_id }} .ei-hero__title .ei-bracket{
    font-weight: 400;
  }

  /* Safety: avoid ugly breaks on long titles */
  #{{ section_id }} .ei-hero__title{
    overflow-wrap: anywhere;
    word-break: break-word;
  }