/** Shopify CDN: Minification failed

Line 327:3 Unexpected "/"

**/
/* /*
 * moat-comparison.css — FINAL
 *
 * BOTH mobile + desktop: vertical up/down slider
 *   Before = top layer (always visible, z-index 1)
 *   Now    = bottom layer clipped from TOP (z-index 2)
 *   Handle = horizontal bar dragged up/down
 *
 * Mobile  portrait: widget = 100vw × 177.78vw (9:16)
 * Desktop square  : widget = 100% × 100% (1:1) inside left col
 */

/* ── RESET ──────────────────────────────────────────────────────── */
.moat-comparison-section { margin: 0; padding: 0; }

.moat-comparison {
  background-color: var(--mc-bg, #000);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.moat-comparison__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top:    var(--mc-pt, 0px);
  padding-bottom: var(--mc-pb, 0px);
}

/* ══════════════════════════════════════════════════════════════════
   TEXT COLUMN — Mobile: order 1 (top) | Desktop: order 2 (right)
══════════════════════════════════════════════════════════════════ */
.moat-comparison__text-col {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 20px 24px;
  box-sizing: border-box;
}

.moat-comparison__headline {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.moat-comparison__hl-line {
  display: block;
  font-size: clamp(44px, 13.5vw, 84px);
  color: var(--mc-headline, #fff);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
}

.moat-comparison__cta {
  display: block;
  width: 100%;
  background-color: var(--mc-cta-bg, #1100ff);
  color: var(--mc-cta-text, #fff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 17px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  line-height: 1.2;
  transition: opacity 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.moat-comparison__cta:hover,
.moat-comparison__cta:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--mc-cta-bg, #1100ff);
  outline-offset: 3px;
}

.moat-comparison__subtext {
  margin: 18px 0 0;
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.55;
  color: var(--mc-body, #fff);
}
.moat-comparison__subtext--normal { font-weight: 400; }
.moat-comparison__subtext--bold   { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════
   MEDIA COLUMN — Mobile: order 2 (below) | Desktop: order 1 (left)
══════════════════════════════════════════════════════════════════ */
.moat-comparison__media-col {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET — shared base (mobile portrait 9:16)
   padding-bottom trick = real pixel height for absolute children
══════════════════════════════════════════════════════════════════ */
.moat-comparison__widget {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 9:16 portrait on mobile */
  overflow: hidden;
  background: #000;
  cursor: ns-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* ── Both panes fill widget absolutely ──────────────────────────── */
.moat-comparison__pane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Before = always visible underneath */
.moat-comparison__pane--before { z-index: 1; }

/*
 * Now = on top, clipped from the TOP by default 50%
 * clip-path: inset(T% 0 0 0)
 *   T=50 → Now's top 50% hidden → bottom half of Now visible
 *   Drag DOWN → T decreases → more Now revealed
 *   Drag UP   → T increases → less Now visible
 */
.moat-comparison__pane--now {
  z-index: 2;
  clip-path: inset(50% 0 0 0);
}

/* Images */
.moat-comparison__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.moat-comparison__pane picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Placeholders */
.moat-comparison__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}
.moat-comparison__placeholder--before { background: #1e1e1e; color: #888; }
.moat-comparison__placeholder--now    { background: #111;    color: #888; }

/* ── Label pills ─────────────────────────────────────────────────── */
.moat-comparison__label {
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  background: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 4;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.moat-comparison__label--before { top: 14px;    left: 14px;  }
.moat-comparison__label--now    { bottom: 14px; right: 14px; }

/* ── Drag handle — horizontal bar, shown on BOTH mobile + desktop ── */
.moat-comparison__handle {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;                    /* JS overrides this in real time */
  transform: translateY(-50%);
  z-index: 6;
  height: 48px;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.moat-comparison__handle-line {
  height: 2px;
  flex: 1;
  background: rgba(255,255,255,0.55);
}
.moat-comparison__handle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.moat-comparison__handle-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   DESKTOP ≥ 1024px — same vertical slider, square widget
══════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1024px) {

  .moat-comparison__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 680px;
  }

  .moat-comparison__media-col {
    order: 1;
    width: 47%;
    flex-shrink: 0;
    padding: 48px 0 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  /* Override mobile 9:16 → desktop 1:1 square */
  .moat-comparison__widget {
    padding-bottom: 100%;
    border-radius: 4px;
  }

  .moat-comparison__text-col {
    order: 2;
    width: 53%;
    flex-shrink: 0;
    padding: 0 72px 0 64px;
    justify-content: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .moat-comparison__hl-line {
    font-size: clamp(60px, 5.5vw, 82px);
    line-height: 0.93;
  }
  .moat-comparison__headline { margin-bottom: 32px; }

  .moat-comparison__cta {
    font-size: 14px;
    padding: 18px 32px;
    letter-spacing: 0.14em;
    width: auto;
    display: inline-block;
  }

  .moat-comparison__subtext {
    font-size: 15px;
    margin-top: 22px;
  }
}

/* ── Large desktop ≥ 1280px ─────────────────────────────────────── */
@media screen and (min-width: 1280px) {
  .moat-comparison__media-col { padding: 56px 0 0 56px; }
  .moat-comparison__text-col  { padding: 0 80px 0 72px; }
  .moat-comparison__hl-line   { font-size: 82px; }
}

/* ── Accessibility ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .moat-comparison__cta,
  .moat-comparison__pane--now { transition: none !important; }
}

.shopify-design-mode .moat-comparison {
  outline: 2px dashed rgba(0,102,255,0.2);
  outline-offset: -2px;
} */
/*
 * moat-comparison.css — FINAL
 *
 * BOTH mobile + desktop: vertical up/down slider
 *   Before = top layer (always visible, z-index 1)
 *   Now    = bottom layer clipped from TOP (z-index 2)
 *   Handle = horizontal bar dragged up/down
 *
 * Mobile  portrait: widget = 100vw × 177.78vw (9:16)
 * Desktop square  : widget = 100% × 100% (1:1) inside left col
 */

/* ── RESET ──────────────────────────────────────────────────────── */
.moat-comparison-section { margin: 0; padding: 0; }

.moat-comparison {
  background-color: var(--mc-bg, #000);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.moat-comparison__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top:    var(--mc-pt, 0px);
  padding-bottom: var(--mc-pb, 0px);
}

/* ══════════════════════════════════════════════════════════════════
   TEXT COLUMN
══════════════════════════════════════════════════════════════════ */
.moat-comparison__text-col {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 20px 24px;
  box-sizing: border-box;
}

.moat-comparison__headline {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.moat-comparison__hl-line {
  display: block;
  font-size: 58px;
  color: var(--mc-headline, #fff);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.moat-comparison__cta {
  display: block;
  width: 100%;
  background-color: var(--mc-cta-bg, #1100ff);
  color: var(--mc-cta-text, #fff);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 17px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  line-height: normal;
  transition: opacity 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.moat-comparison__cta:hover,
.moat-comparison__cta:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--mc-cta-bg, #1100ff);
  outline-offset: 3px;
}

.moat-comparison__subtext {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--mc-body, #fff);
}
.moat-comparison__subtext--normal { font-weight: 400; }
.moat-comparison__subtext--bold   { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════
   MEDIA COLUMN
══════════════════════════════════════════════════════════════════ */
.moat-comparison__media-col {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET
══════════════════════════════════════════════════════════════════ */
.moat-comparison__widget {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%;
  overflow: hidden;
  background: #000;
  /* NO cursor, NO user-select here — images should feel scrollable */
  user-select: none;
  -webkit-user-select: none;
}

/* Panes */
.moat-comparison__pane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Images pass touch straight through to the page */
  touch-action: pan-y; /* ← KEY: tells browser "vertical scroll is fine here" */
}

.moat-comparison__pane--before { z-index: 1; }

.moat-comparison__pane--now {
  z-index: 2;
  clip-path: inset(50% 0 0 0);
  touch-action: pan-y; /* same */
}

/* Images */
.moat-comparison__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  touch-action: none; /* image itself does nothing */
}

.moat-comparison__pane picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}

/* Placeholders */
.moat-comparison__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  touch-action: pan-y;
}
.moat-comparison__placeholder--before { background: #1e1e1e; color: #888; }
.moat-comparison__placeholder--now    { background: #111;    color: #888; }

/* Label pills */
.moat-comparison__label {
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  background: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 4;
  pointer-events: none;
  touch-action: none;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.moat-comparison__label--before { top: 14px;    left: 14px;  }
.moat-comparison__label--now    { bottom: 14px; right: 14px; }

/* ══════════════════════════════════════════════════════════════════
   DRAG HANDLE
   pointer-events: auto  ← ONLY this element captures touch/mouse
   touch-action: none    ← handle owns the touch, no scroll
══════════════════════════════════════════════════════════════════ */
.moat-comparison__handle {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  height: 64px;          /* generous hit area */
  pointer-events: auto;  /* ← handle IS interactive */
  touch-action: none;    /* ← handle blocks scroll, takes over touch */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: ns-resize;
}
.moat-comparison__handle-line {
  height: 2px;
  flex: 1;
  background: rgba(255,255,255,0.55);
  pointer-events: none;
}
.moat-comparison__handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  pointer-events: none;
}
.moat-comparison__handle-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   DESKTOP ≥ 1024px
══════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1024px) {

  .moat-comparison__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 680px;
  }

  .moat-comparison__media-col {
    order: 1;
    width: 47%;
    flex-shrink: 0;
    padding: 48px 0 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .moat-comparison__widget {
    padding-bottom: 100%;
    border-radius: 4px;
    cursor: ns-resize; /* desktop gets the resize cursor */
  }

  .moat-comparison__text-col {
    order: 2;
    width: 53%;
    flex-shrink: 0;
    padding: 0 72px 0 64px;
    justify-content: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .moat-comparison__hl-line {
    font-size: clamp(60px, 5.5vw, 82px);
    line-height: 0.93;
  }
  .moat-comparison__headline { margin-bottom: 32px; }

  .moat-comparison__cta {
    font-size: 14px;
    padding: 18px 32px;
    letter-spacing: 0.14em;
    width: auto;
    display: inline-block;
  }

  .moat-comparison__subtext {
    font-size: 15px;
    margin-top: 22px;
  }
}

/* Large desktop ≥ 1280px */
@media screen and (min-width: 1280px) {
  .moat-comparison__media-col { padding: 56px 0 0 56px; }
  .moat-comparison__text-col  { padding: 0 80px 0 72px; }
  .moat-comparison__hl-line   { font-size: 82px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .moat-comparison__cta,
  .moat-comparison__pane--now { transition: none !important; }
}

.shopify-design-mode .moat-comparison {
  outline: 2px dashed rgba(0,102,255,0.2);
  outline-offset: -2px;
}