/** Shopify CDN: Minification failed

Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:34 Unexpected ","
Line 19:19 Unexpected "{"
Line 19:28 Expected ":"
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 28:19 Unexpected "{"
... and 175 more hidden warnings

**/
/* START_SECTION:journi-lp-footer (INDEX:52) */
/* ─── Reset ──────────────────────────────────────────── */
#journi-lp-footer-{{ section.id }},
#journi-lp-footer-{{ section.id }} *,
#journi-lp-footer-{{ section.id }} *::before,
#journi-lp-footer-{{ section.id }} *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Footer ─────────────────────────────────────────── */
#journi-lp-footer-{{ section.id }}.jlpf-footer {
  background: var(--jrn-ink) !important;
  padding: 28px var(--jrn-section-x) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  -webkit-font-smoothing: antialiased;
}

/* ─── Inner ──────────────────────────────────────────── */
#journi-lp-footer-{{ section.id }} .jlpf-inner {
  max-width: var(--jrn-max-w);
  margin: 0 auto;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--jrn-font-mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--jrn-white-45) !important;
}

/* ─── Links ──────────────────────────────────────────── */
#journi-lp-footer-{{ section.id }} .jlpf-links {
  display: flex;
  gap: 28px;
}

#journi-lp-footer-{{ section.id }} .jlpf-link {
  color: var(--jrn-white-45) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

#journi-lp-footer-{{ section.id }} .jlpf-link:hover {
  color: var(--jrn-accent) !important;
}

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 600px) {
  #journi-lp-footer-{{ section.id }}.jlpf-footer {
    padding: 28px var(--jrn-section-x-mobile) !important;
  }

  #journi-lp-footer-{{ section.id }} .jlpf-inner {
    flex-direction: column !important;
    text-align: center;
  }
}
/* END_SECTION:journi-lp-footer */
/* START_SECTION:journi-lp-nav (INDEX:55) */
/* ─── Reset ──────────────────────────────────────────── */
#journi-lp-nav-{{ section.id }},
#journi-lp-nav-{{ section.id }} *,
#journi-lp-nav-{{ section.id }} *::before,
#journi-lp-nav-{{ section.id }} *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Header (transparent overlay on hero, non-sticky) ── */
#journi-lp-nav-{{ section.id }}.jlpn-header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent !important;
  color: var(--jrn-white) !important;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav row ────────────────────────────────────────── */
#journi-lp-nav-{{ section.id }} .jlpn-nav {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--jrn-max-w) + 112px);
  margin: 0 auto;
  padding: 20px 56px;
  gap: 24px;
  background: transparent !important;
}

/* No badge → center the logo */
#journi-lp-nav-{{ section.id }} .jlpn-nav--center {
  justify-content: center !important;
}

/* ─── Logo ───────────────────────────────────────────── */
#journi-lp-nav-{{ section.id }} .jlpn-logo {
  display: flex !important;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}

#journi-lp-nav-{{ section.id }} .jlpn-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

#journi-lp-nav-{{ section.id }} .jlpn-wordmark {
  font-family: var(--jrn-font-display) !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: -0.03em !important;
  color: var(--jrn-white) !important;
}

/* ─── Badge ──────────────────────────────────────────── */
#journi-lp-nav-{{ section.id }} .jlpn-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--jrn-font-mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--jrn-white-75) !important;
}

/* ─── Pulse dot ──────────────────────────────────────── */
#journi-lp-nav-{{ section.id }} .jlpn-pulse {
  display: inline-block !important;
  width: 8px;
  height: 8px;
  background: var(--jrn-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--jrn-accent-10);
  animation: jlpn-pulse-{{ section.id }} 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
  #journi-lp-nav-{{ section.id }} .jlpn-nav {
    padding: 16px 24px;
  }

  #journi-lp-nav-{{ section.id }} .jlpn-badge {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }
}
/* END_SECTION:journi-lp-nav */
/* START_SECTION:journi-thank-you (INDEX:78) */
/* ─── Reset ──────────────────────────────────────────── */
#journi-thank-you-{{ section.id }},
#journi-thank-you-{{ section.id }} *,
#journi-thank-you-{{ section.id }} *::before,
#journi-thank-you-{{ section.id }} *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Section ────────────────────────────────────────── */
#journi-thank-you-{{ section.id }}.jty-section {
  background: var(--jrn-cream) !important;
  color: var(--jrn-ink) !important;
  padding: 64px 56px 96px !important;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

#journi-thank-you-{{ section.id }}.jty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(242, 75, 31, 0.05), transparent 50%),
    radial-gradient(circle at 85% 92%, rgba(242, 75, 31, 0.03), transparent 55%);
  pointer-events: none;
}

/* ─── Inner ──────────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

/* ─── Head ───────────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-head {
  text-align: center;
  margin-bottom: 56px;
}

#journi-thank-you-{{ section.id }} .jty-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--jrn-font-mono) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--jrn-accent) !important;
  padding: 8px 14px !important;
  border: 1px solid var(--jrn-accent) !important;
  background: rgba(242, 75, 31, 0.06) !important;
  margin-bottom: 24px;
}

#journi-thank-you-{{ section.id }} .jty-check {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--jrn-accent) !important;
  color: var(--jrn-white) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1;
}

#journi-thank-you-{{ section.id }} .jty-title {
  font-family: var(--jrn-font-display) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 5.5vw, 64px) !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  color: var(--jrn-ink) !important;
  margin-bottom: 22px;
}

#journi-thank-you-{{ section.id }} .jty-title-accent {
  color: var(--jrn-accent) !important;
  font-style: normal !important;
}

#journi-thank-you-{{ section.id }} .jty-lead {
  font-family: var(--jrn-font-display) !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: var(--jrn-ink-75) !important;
  max-width: 60ch;
  margin: 0 auto;
}

/* ─── Video ──────────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-video-wrap {
  margin-bottom: 80px;
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}

#journi-thank-you-{{ section.id }} .jty-vid {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--jrn-ink) !important;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--jrn-ink-10) !important;
  display: block;
  padding: 0 !important;
  box-shadow: 0 32px 64px -24px rgba(30, 27, 55, 0.25);
}

#journi-thank-you-{{ section.id }} .jty-vid-poster {
  position: absolute !important;
  inset: 0;
  background: linear-gradient(135deg, #2a2550, #1a1730) !important;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#journi-thank-you-{{ section.id }} .jty-vid:hover .jty-vid-poster {
  opacity: 0.55;
  transform: scale(1.02);
}

#journi-thank-you-{{ section.id }} .jty-vid-overlay {
  position: absolute !important;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30, 27, 55, 0.35) 0%,
    rgba(30, 27, 55, 0.10) 60%,
    rgba(242, 75, 31, 0.25) 100%);
  pointer-events: none;
}

#journi-thank-you-{{ section.id }} .jty-vid-play {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--jrn-accent) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  box-shadow: 0 0 0 0 rgba(242, 75, 31, 0.4);
}

#journi-thank-you-{{ section.id }} .jty-vid:hover .jty-vid-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 14px rgba(242, 75, 31, 0.12);
}

#journi-thank-you-{{ section.id }} .jty-vid-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid var(--jrn-white);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 5px;
}

#journi-thank-you-{{ section.id }} .jty-vid-caption {
  position: absolute !important;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--jrn-white) !important;
  font-family: var(--jrn-font-mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  pointer-events: none;
}

#journi-thank-you-{{ section.id }} .jty-vid-caption strong {
  display: block;
  font-family: var(--jrn-font-display) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin-bottom: 4px;
  color: var(--jrn-white) !important;
}

#journi-thank-you-{{ section.id }} .jty-vid-caption-left { color: rgba(255,255,255,0.65) !important; }
#journi-thank-you-{{ section.id }} .jty-vid-caption-right { text-align: right; color: rgba(255,255,255,0.72) !important; flex-shrink: 0; }

#journi-thank-you-{{ section.id }} .jty-vid-player {
  position: absolute !important;
  inset: 0;
  background: var(--jrn-ink) !important;
  display: none !important;
}

#journi-thank-you-{{ section.id }} .jty-vid.is-playing .jty-vid-poster,
#journi-thank-you-{{ section.id }} .jty-vid.is-playing .jty-vid-overlay,
#journi-thank-you-{{ section.id }} .jty-vid.is-playing .jty-vid-play,
#journi-thank-you-{{ section.id }} .jty-vid.is-playing .jty-vid-caption { display: none !important; }

#journi-thank-you-{{ section.id }} .jty-vid.is-playing .jty-vid-player { display: block !important; }

/* ─── Steps ──────────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-steps {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  border-top: 1px solid var(--jrn-ink-10) !important;
  border-left: 1px solid var(--jrn-ink-10) !important;
}

#journi-thank-you-{{ section.id }} .jty-step {
  padding: 40px 32px 44px !important;
  border-right: 1px solid var(--jrn-ink-10) !important;
  border-bottom: 1px solid var(--jrn-ink-10) !important;
  background: var(--jrn-cream) !important;
  transition: background 0.3s ease;
}

#journi-thank-you-{{ section.id }} .jty-step:hover {
  background: var(--jrn-white) !important;
}

#journi-thank-you-{{ section.id }} .jty-step-num {
  font-family: var(--jrn-font-mono) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--jrn-accent) !important;
  margin-bottom: 24px;
}

#journi-thank-you-{{ section.id }} .jty-step-title {
  font-family: var(--jrn-font-display) !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: var(--jrn-ink) !important;
  margin-bottom: 12px;
}

#journi-thank-you-{{ section.id }} .jty-step-body {
  font-family: var(--jrn-font-display) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--jrn-ink-75) !important;
}

/* ─── Support ────────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-support {
  text-align: center;
  padding: 32px 0 !important;
  border-top: 1px solid var(--jrn-ink-10) !important;
}

#journi-thank-you-{{ section.id }} .jty-support p {
  font-family: var(--jrn-font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--jrn-ink-75) !important;
}

#journi-thank-you-{{ section.id }} .jty-support a {
  color: var(--jrn-accent) !important;
  border-bottom: 1px solid rgba(242, 75, 31, 0.4) !important;
  transition: border-color 0.2s ease;
  text-decoration: none !important;
}

#journi-thank-you-{{ section.id }} .jty-support a:hover {
  border-bottom-color: var(--jrn-accent) !important;
}

/* ─── CTA slab ───────────────────────────────────────── */
#journi-thank-you-{{ section.id }} .jty-cta {
  position: relative;
  background: var(--jrn-ink) !important;
  color: var(--jrn-white) !important;
  padding: 80px 56px !important;
  margin: 0 -56px -96px !important;
  text-align: center;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

#journi-thank-you-{{ section.id }} .jty-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(242, 75, 31, 0.22), transparent 55%);
  pointer-events: none;
}

#journi-thank-you-{{ section.id }} .jty-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jrn-accent) 30%, var(--jrn-accent) 70%, transparent);
}

#journi-thank-you-{{ section.id }} .jty-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

#journi-thank-you-{{ section.id }} .jty-cta-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--jrn-font-mono) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--jrn-accent) !important;
  margin-bottom: 20px;
}

#journi-thank-you-{{ section.id }} .jty-cta-eyebrow::before,
#journi-thank-you-{{ section.id }} .jty-cta-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--jrn-accent);
  display: block;
  flex-shrink: 0;
}

#journi-thank-you-{{ section.id }} .jty-cta-title {
  font-family: var(--jrn-font-display) !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  color: var(--jrn-white) !important;
  margin-bottom: 16px;
}

#journi-thank-you-{{ section.id }} .jty-cta-accent {
  color: var(--jrn-accent) !important;
  font-style: normal !important;
}

#journi-thank-you-{{ section.id }} .jty-cta-sub {
  font-family: var(--jrn-font-display) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.72) !important;
  max-width: 56ch;
  margin: 0 auto 32px !important;
}

#journi-thank-you-{{ section.id }} .jty-cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 20px 32px !important;
  background: var(--jrn-accent) !important;
  color: var(--jrn-white) !important;
  font-family: var(--jrn-font-mono) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  border: 2px solid var(--jrn-accent) !important;
  text-decoration: none !important;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#journi-thank-you-{{ section.id }} .jty-cta-btn:hover {
  background: var(--jrn-white) !important;
  border-color: var(--jrn-white) !important;
  color: var(--jrn-ink) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--jrn-accent);
  text-decoration: none !important;
}

#journi-thank-you-{{ section.id }} .jty-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

#journi-thank-you-{{ section.id }} .jty-cta-btn:hover .jty-cta-arrow {
  transform: translateX(4px);
}

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 900px) {
  #journi-thank-you-{{ section.id }} .jty-steps {
    grid-template-columns: 1fr !important;
  }
  #journi-thank-you-{{ section.id }} .jty-step {
    padding: 32px 24px 36px !important;
  }
}

@media (max-width: 768px) {
  #journi-thank-you-{{ section.id }}.jty-section {
    padding: 48px 24px 72px !important;
  }
  #journi-thank-you-{{ section.id }} .jty-head {
    margin-bottom: 40px;
  }
  #journi-thank-you-{{ section.id }} .jty-video-wrap {
    margin-bottom: 56px;
  }
  #journi-thank-you-{{ section.id }} .jty-vid-play {
    width: 64px !important;
    height: 64px !important;
  }
  #journi-thank-you-{{ section.id }} .jty-vid-play::after {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
  #journi-thank-you-{{ section.id }} .jty-vid-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  #journi-thank-you-{{ section.id }} .jty-cta {
    padding: 56px 24px !important;
    margin: 0 -24px -72px !important;
  }
}
/* END_SECTION:journi-thank-you */
/* START_SNIPPET:skip-to-content-link (INDEX:275) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
