/* Replic revision pass — July 2026 */

/* Keep the fixed navigation above the isolated cheetah composition. */
.site-header {
  z-index: 2000 !important;
}

/* Homepage positioning / cheeta section */
.positioning-reworked {
  --cheeta-layout-scale: 1;
  --cheeta-pattern-opacity: 0.05;
  --cheeta-pattern-x: 0px;
  --cheeta-pattern-y: 0px;
  background: #fff !important;
  overflow: hidden;
  isolation: isolate;
  z-index: 1100;
  padding: 0 !important;
  display: grid;
  place-items: center;
  min-height: 0;
}

.positioning-reworked::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -9%;
  pointer-events: none;
  background-image: url("/images/replic-ten-pip-pattern.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: clamp(220px, 15vw, 288px) auto;
  opacity: var(--cheeta-pattern-opacity);
  transform: translate3d(
      var(--cheeta-pattern-x),
      var(--cheeta-pattern-y),
      0
    )
    scale(1.03);
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.positioning-reworked .cheeta-composition {
  position: relative;
  z-index: 1;
  /*
   * The reference is a 1920 × 1080 composition. Keep that exact coordinate
   * system, but leave a small white safety border so no glyph can touch the
   * browser edge on shorter desktop viewports.
   */
  width: min(
    calc(100vw - clamp(40px, 4vw, 80px)),
    calc((100svh - clamp(32px, 4svh, 60px)) * 16 / 9),
    1920px
  );
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  container-type: inline-size;
}

.positioning-reworked .cheeta-stage {
  position: absolute !important;
  z-index: 2;
  top: 24.65%;
  left: 6.85%;
  width: 37.2cqw !important;
  height: 37.2cqw !important;
  min-height: 0 !important;
  max-width: none !important;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  opacity: var(--cheeta-art-opacity, 1);
  transform: translate3d(
      var(--cheeta-art-x, 0px),
      var(--cheeta-art-y, 0px),
      0
    )
    rotate(calc(19.75deg + var(--cheeta-art-rotation, 0deg)))
    scale(var(--cheeta-art-scale, 1))
    scale(var(--cheeta-layout-scale, 1)) !important;
  transform-origin: 50% 50%;
  overflow: visible;
  will-change: transform, opacity;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) 980ms,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 980ms;
}

.home-page
  .positioning-reworked
  .cheeta-stage
  .cheeta-sequence {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  transform: none !important;
  z-index: 2;
}

.positioning-reworked .cheeta-title {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  z-index: 3;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
  pointer-events: none;
  user-select: none;
  transform: scale(var(--cheeta-layout-scale, 1));
  transform-origin: center;
}

.positioning-reworked .cheeta-copy {
  position: absolute;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  pointer-events: auto;
  user-select: text;
  cursor: text;
}

.positioning-reworked .cheeta-word {
  display: inline-block;
  opacity: var(--cheeta-word-opacity, 1);
  transform: translate3d(0, var(--cheeta-word-y, 0px), 0);
  filter: blur(var(--cheeta-word-blur, 0px));
  transform-origin: left bottom;
  will-change: transform, opacity;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cheeta-word-delay, 0ms);
}

.positioning-reworked .cheeta-word-custom {
  --cheeta-word-opacity: var(--cheeta-custom-opacity, 1);
  --cheeta-word-y: var(--cheeta-custom-y, 0px);
  --cheeta-word-blur: var(--cheeta-custom-blur, 0px);
  --cheeta-word-delay: 80ms;
}

.positioning-reworked .cheeta-word-websites {
  --cheeta-word-opacity: var(--cheeta-websites-opacity, 1);
  --cheeta-word-y: var(--cheeta-websites-y, 0px);
  --cheeta-word-blur: var(--cheeta-websites-blur, 0px);
  --cheeta-word-delay: 230ms;
}

.positioning-reworked .cheeta-word-that-are {
  --cheeta-word-opacity: var(--cheeta-that-are-opacity, 1);
  --cheeta-word-y: var(--cheeta-that-are-y, 0px);
  --cheeta-word-blur: var(--cheeta-that-are-blur, 0px);
  --cheeta-word-delay: 380ms;
}

.positioning-reworked .cheeta-word-done {
  --cheeta-word-opacity: var(--cheeta-done-opacity, 1);
  --cheeta-word-y: var(--cheeta-done-y, 0px);
  --cheeta-word-blur: var(--cheeta-done-blur, 0px);
  --cheeta-word-delay: 530ms;
}

.positioning-reworked .cheeta-word-blending {
  --cheeta-word-opacity: var(--cheeta-blending-opacity, 1);
  --cheeta-word-y: var(--cheeta-blending-y, 0px);
  --cheeta-word-blur: var(--cheeta-blending-blur, 0px);
  --cheeta-word-delay: 680ms;
}

.positioning-reworked .cheeta-word-in {
  --cheeta-word-opacity: var(--cheeta-in-opacity, 1);
  --cheeta-word-y: var(--cheeta-in-y, 0px);
  --cheeta-word-blur: var(--cheeta-in-blur, 0px);
  --cheeta-word-delay: 830ms;
}

.positioning-reworked.cheeta-motion-ready {
  --cheeta-pattern-opacity: 0.012;
  --cheeta-pattern-x: -18px;
  --cheeta-pattern-y: 16px;
  --cheeta-custom-opacity: 0;
  --cheeta-custom-y: 0.58em;
  --cheeta-custom-blur: 9px;
  --cheeta-websites-opacity: 0;
  --cheeta-websites-y: 0.58em;
  --cheeta-websites-blur: 9px;
  --cheeta-that-are-opacity: 0;
  --cheeta-that-are-y: 0.58em;
  --cheeta-that-are-blur: 9px;
  --cheeta-done-opacity: 0;
  --cheeta-done-y: 0.58em;
  --cheeta-done-blur: 9px;
  --cheeta-blending-opacity: 0;
  --cheeta-blending-y: 0.62em;
  --cheeta-blending-blur: 9px;
  --cheeta-in-opacity: 0;
  --cheeta-in-y: 0.58em;
  --cheeta-in-blur: 9px;
  --cheeta-art-opacity: 0;
  --cheeta-art-x: -18px;
  --cheeta-art-y: 38px;
  --cheeta-art-rotation: -8deg;
  --cheeta-art-scale: 0.86;
  --cheeta-button-opacity: 0;
  --cheeta-button-y: 18px;
  --cheeta-button-scale: 0.82;
}

.positioning-reworked.cheeta-motion-ready.is-entered {
  --cheeta-pattern-opacity: 0.05;
  --cheeta-pattern-x: 0px;
  --cheeta-pattern-y: 0px;
  --cheeta-custom-opacity: 1;
  --cheeta-custom-y: 0em;
  --cheeta-custom-blur: 0px;
  --cheeta-websites-opacity: 1;
  --cheeta-websites-y: 0em;
  --cheeta-websites-blur: 0px;
  --cheeta-that-are-opacity: 1;
  --cheeta-that-are-y: 0em;
  --cheeta-that-are-blur: 0px;
  --cheeta-done-opacity: 1;
  --cheeta-done-y: 0em;
  --cheeta-done-blur: 0px;
  --cheeta-blending-opacity: 1;
  --cheeta-blending-y: 0em;
  --cheeta-blending-blur: 0px;
  --cheeta-in-opacity: 1;
  --cheeta-in-y: 0em;
  --cheeta-in-blur: 0px;
  --cheeta-art-opacity: 1;
  --cheeta-art-x: 0px;
  --cheeta-art-y: 0px;
  --cheeta-art-rotation: 0deg;
  --cheeta-art-scale: 1;
  --cheeta-button-opacity: 1;
  --cheeta-button-y: 0px;
  --cheeta-button-scale: 1;
}

.positioning-reworked .cheeta-copy-top {
  top: 14.8%;
  left: 10.2%;
  gap: 3.1cqw;
  font-size: 9.2cqw;
  transform: scaleX(0.982);
  transform-origin: left top;
}

.positioning-reworked .cheeta-copy-that {
  top: 31.8%;
  left: 46.2%;
  font-size: 9.4cqw;
  transform: scaleX(0.979);
  transform-origin: left top;
}

.positioning-reworked .cheeta-copy-done {
  top: 46.5%;
  left: 45.62%;
  gap: 3.3cqw;
  font-size: 9.85cqw;
  transform: scaleX(0.975);
  transform-origin: left top;
}

.positioning-reworked .accent-done {
  color: #000 !important;
  text-decoration-line: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 0.055em;
  text-underline-offset: 0.03em;
}

.positioning-reworked .cheeta-copy-bottom {
  top: 63.8%;
  left: 37.9%;
  gap: 0.8cqw;
  font-size: 9.25cqw;
  align-items: center;
  transform: scaleX(0.982);
  transform-origin: left top;
}

.positioning-reworked .accent-blending {
  display: inline-block !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  opacity: 1 !important;
  background: var(--lando, #ff3f0a) !important;
  color: #fff !important;
  padding: 0.1em 0.055em 0.13em !important;
  line-height: 0.95;
}

.positioning-reworked .headline-in {
  display: inline-block;
  color: #000 !important;
  transform: scaleX(0.966);
  transform-origin: left center;
}

.positioning-reworked .cheeta-stage .positioning-cta {
  position: absolute;
  z-index: 5 !important;
  top: 72.2%;
  left: 14.9%;
  bottom: auto;
  width: 11.5cqw;
  min-width: 0;
  min-height: 0;
  padding: 1.05cqw 0.95cqw;
  border: 0;
  border-radius: 999px;
  font-size: 0.7cqw;
  line-height: 1;
  letter-spacing: 0.08em;
  opacity: var(--cheeta-button-opacity, 1);
  transform: translate3d(0, var(--cheeta-button-y, 0px), 0)
    scale(var(--cheeta-button-scale, 1));
  pointer-events: auto;
  will-change: transform, opacity;
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1) 1130ms,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) 1130ms,
    background 200ms var(--ease),
    border-color 200ms var(--ease),
    color 200ms var(--ease);
}

.positioning-reworked.cheeta-motion-settled
  .cheeta-stage
  .positioning-cta {
  transition-delay: 0ms;
}

.positioning-reworked .cheeta-stage .positioning-cta:hover,
.positioning-reworked .cheeta-stage .positioning-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  background: var(--lando, #ff3f0a) !important;
  border-color: var(--lando, #ff3f0a) !important;
  color: #fff !important;
}

@media (min-width: 861px) {
  .positioning-reworked {
    height: 100svh;
  }
}

@media (max-width: 860px) {
  .positioning-reworked {
    --cheeta-layout-scale: 1;
    min-height: auto;
    padding: 70px 18px 48px !important;
  }

  .positioning-reworked::before {
    background-size: 174px auto;
  }

  .positioning-reworked .cheeta-composition {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .positioning-reworked .cheeta-copy {
    transform: none;
  }

  .positioning-reworked .headline-in {
    transform: none;
  }

  .positioning-reworked .cheeta-copy-top {
    top: 0;
    left: 0;
    gap: 2.4cqw;
    font-size: 11.25cqw;
    transform: none;
  }

  .positioning-reworked .cheeta-stage {
    top: 15%;
    left: -14%;
    width: 74cqw !important;
    height: 74cqw !important;
    transform: translate3d(
        var(--cheeta-art-x, 0px),
        var(--cheeta-art-y, 0px),
        0
      )
      rotate(calc(8deg + var(--cheeta-art-rotation, 0deg)))
      scale(var(--cheeta-art-scale, 1))
      scale(var(--cheeta-layout-scale, 1)) !important;
  }

  .positioning-reworked .cheeta-copy-that {
    top: 34%;
    left: 68%;
    font-size: 12.8cqw;
    transform: none;
  }

  .positioning-reworked .cheeta-copy-done {
    top: 50%;
    left: 52%;
    gap: 2.8cqw;
    font-size: 11.8cqw;
    transform: none;
  }

  .positioning-reworked .cheeta-copy-bottom {
    top: 79%;
    left: 2%;
    gap: 1.2cqw;
    font-size: 12.7cqw;
    transform: none;
  }

  .positioning-reworked .cheeta-stage .positioning-cta {
    top: 62.5%;
    left: 18%;
    width: 26cqw;
    padding: 2.4cqw 1.5cqw;
    font-size: 1.7cqw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .positioning-reworked {
    --cheeta-pattern-opacity: 0.05 !important;
    --cheeta-pattern-x: 0px !important;
    --cheeta-pattern-y: 0px !important;
    --cheeta-art-opacity: 1 !important;
    --cheeta-art-x: 0px !important;
    --cheeta-art-y: 0px !important;
    --cheeta-art-rotation: 0deg !important;
    --cheeta-art-scale: 1 !important;
    --cheeta-custom-opacity: 1 !important;
    --cheeta-custom-y: 0px !important;
    --cheeta-websites-opacity: 1 !important;
    --cheeta-websites-y: 0px !important;
    --cheeta-that-are-opacity: 1 !important;
    --cheeta-that-are-y: 0px !important;
    --cheeta-done-opacity: 1 !important;
    --cheeta-done-y: 0px !important;
    --cheeta-blending-opacity: 1 !important;
    --cheeta-blending-y: 0px !important;
    --cheeta-in-opacity: 1 !important;
    --cheeta-in-y: 0px !important;
    --cheeta-button-opacity: 1 !important;
    --cheeta-button-y: 0px !important;
    --cheeta-button-scale: 1 !important;
  }

  .positioning-reworked::before,
  .positioning-reworked .cheeta-stage,
  .positioning-reworked .cheeta-word,
  .positioning-reworked .cheeta-stage .positioning-cta {
    will-change: auto;
  }
}

/*
 * Phone layout: keep the approved desktop/tablet composition untouched, while
 * giving the hero actions and cheetah section their own compact reading order.
 */
@media (max-width: 640px) {
  .home-page .hero-bottom {
    left: 12px !important;
    right: 12px !important;
    bottom: max(20px, env(safe-area-inset-bottom)) !important;
    display: block !important;
  }

  .home-page .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: clamp(3px, 1.4vw, 8px) !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .home-page .hero-actions .hero-pill,
  .home-page .hero-actions .hero-pill.invert,
  .home-page .hero-actions .hero-pill:not(.invert),
  .home-page .hero-actions .hero-pill:last-child {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 9px 2px !important;
    justify-self: stretch !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(8.5px, 2.45vw, 10px) !important;
    letter-spacing: 0.055em !important;
  }

  .positioning-reworked {
    min-height: 0;
    padding: clamp(62px, 16vw, 82px) 16px
      clamp(18px, 4vw, 28px) !important;
    display: block;
  }

  .positioning-reworked .cheeta-composition {
    width: 100%;
    max-width: 560px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
  }

  .positioning-reworked .cheeta-title {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    align-content: flex-start;
    row-gap: 0.12em;
    column-gap: 0.16em;
    margin: 0;
    font-size: inherit;
    line-height: 0.86;
    transform: none;
  }

  .positioning-reworked .cheeta-copy,
  .positioning-reworked .cheeta-copy-top,
  .positioning-reworked .cheeta-copy-that,
  .positioning-reworked .cheeta-copy-done,
  .positioning-reworked .cheeta-copy-bottom {
    position: static;
    top: auto;
    left: auto;
    font-size: clamp(32px, 11.1cqw, 58px);
    line-height: inherit;
    transform: none;
  }

  .positioning-reworked .cheeta-copy-top {
    flex: 0 0 100%;
    gap: 0.12em;
  }

  .positioning-reworked .cheeta-copy-that {
    flex: 0 0 auto;
  }

  .positioning-reworked .cheeta-copy-done {
    flex: 1 1 auto;
    gap: 0.13em;
  }

  .positioning-reworked .cheeta-copy-bottom {
    flex: 0 0 100%;
    gap: 0.06em;
    align-items: center;
  }

  .positioning-reworked .cheeta-stage {
    position: relative !important;
    top: auto;
    left: auto;
    width: min(100cqw, 520px) !important;
    height: min(100cqw, 520px) !important;
    margin: clamp(-64px, -9vw, -42px) auto 0 !important;
    align-self: center;
    transform: translate3d(
        var(--cheeta-art-x, 0px),
        var(--cheeta-art-y, 0px),
        0
      )
      rotate(calc(4deg + var(--cheeta-art-rotation, 0deg)))
      scale(var(--cheeta-art-scale, 1)) !important;
  }

  .positioning-reworked .cheeta-stage .positioning-cta {
    top: 69.5%;
    left: 16.5%;
    width: 30.5cqw;
    padding: 2.35cqw 1.5cqw;
    font-size: clamp(8px, 1.9cqw, 10px);
  }
}

/* Creation Zone title: same segmented entrance and breathing glow as REPLIC. */
.creation-zone-wordmark {
  position: relative;
  width: 100%;
  margin: 8px 0 0;
  overflow: visible;
}

.creation-zone-wordmark-svg {
  --replic-hero-g1: 5px;
  --replic-hero-g2: 16px;
  --replic-hero-g3: 40px;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 var(--replic-hero-g1) rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 var(--replic-hero-g2) rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 var(--replic-hero-g3) rgba(255, 255, 255, 0.2));
  animation: replicHeroGlow 8.5s cubic-bezier(0.37, 0, 0.63, 1) 1.9s infinite;
  will-change: filter;
}

.creation-zone-wordmark-text {
  fill: #fff;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-size: 282px;
  font-weight: 400;
}

.creation-wm-grp {
  transform-box: view-box;
  transform-origin: 850px 150px;
  will-change: transform, opacity;
}

.creation-wm-a {
  animation:
    replicFadeIn 0.22s ease-out both,
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.55s both;
}
.creation-wm-b {
  animation:
    replicFadeIn 0.22s ease-out both,
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.66s both;
}
.creation-wm-c {
  animation:
    replicFadeIn 0.22s ease-out both,
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.77s both;
}
.creation-wm-a-t1 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.6s both,
    replicTrail 0.82s ease-out 0.6s both;
}
.creation-wm-a-t2 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.65s both,
    replicTrail2 0.82s ease-out 0.65s both;
}
.creation-wm-b-t1 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.71s both,
    replicTrail 0.82s ease-out 0.71s both;
}
.creation-wm-b-t2 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.76s both,
    replicTrail2 0.82s ease-out 0.76s both;
}
.creation-wm-c-t1 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.82s both,
    replicTrail 0.82s ease-out 0.82s both;
}
.creation-wm-c-t2 {
  animation:
    replicExpand 0.82s cubic-bezier(0.16, 1.28, 0.3, 1) 0.87s both,
    replicTrail2 0.82s ease-out 0.87s both;
}

/*
 * Services and Start With Us now use the Creation Zone SVG wordmark itself.
 * Keeping the same viewBox, glyph sizing, entrance groups and filter makes the
 * typography and glow render identically in desktop and WebKit browsers.
 */
.page-title-svg-wordmark {
  margin-top: 8px;
}

.services-page .page-hero > .wrap {
  width: 100%;
  max-width: none;
}

/* Homepage testimonials: a single clean 16:9 composition. */
@media (min-width: 861px) {
  .home-page .testimonials {
    height: min(100svh, 1080px);
    min-height: 760px;
    display: grid;
    align-items: start;
    padding: clamp(118px, 14vh, 154px) clamp(28px, 4vw, 70px)
      clamp(28px, 3.5vh, 42px) !important;
    overflow: hidden;
  }

  .home-page .testimonials > .wrap {
    width: 100%;
    max-width: 1800px;
  }

  .home-page .testimonials .eyebrow {
    margin-bottom: 12px;
  }

  .home-page .testimonials .headline {
    max-width: 1280px !important;
    margin-bottom: clamp(16px, 2vh, 24px) !important;
    font-size: clamp(48px, 4.55vw, 86px) !important;
    line-height: 0.91 !important;
  }

  .home-page .testimonial-shell {
    position: relative;
    min-height: 0 !important;
    height: clamp(480px, 56vh, 605px);
    padding: 0 !important;
    display: grid;
    align-items: center;
  }

  .home-page .quote-stage {
    min-height: 0 !important;
    padding: clamp(28px, 4vh, 46px) clamp(112px, 9vw, 176px)
      clamp(126px, 14vh, 150px) !important;
  }

  .home-page .quote {
    width: 100%;
    max-width: 1240px;
  }

  .home-page .quote p {
    font-size: clamp(24px, 2.55vw, 49px) !important;
    line-height: 1.01 !important;
  }

  .home-page .quote cite {
    margin-top: clamp(14px, 2vh, 22px);
  }

  .home-page .testimonial-controls {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    top: auto !important;
    bottom: clamp(24px, 3.2vh, 36px);
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 clamp(32px, 5vw, 76px);
    margin: 0 !important;
  }

  .home-page .testimonial-controls .icon-btn {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: clamp(144px, 11vw, 196px) !important;
    height: clamp(122px, 9vw, 164px) !important;
    transform: none !important;
  }
}

.home-page .testimonial-controls,
.home-page .testimonial-controls .icon-btn,
.home-page .testimonial-controls .icon-btn img {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none;
}

/* Homepage CTA: keep the full message safely inside one outlined card. */
.home-page .final-cta.cta-simple {
  min-height: min(88svh, 950px);
  padding: clamp(82px, 9vw, 130px) clamp(28px, 4vw, 70px) !important;
}

.home-page .final-cta.cta-simple .cta-simple-inner {
  width: min(100%, 1760px) !important;
  max-width: none !important;
  min-height: clamp(440px, 59vh, 630px);
  justify-content: center;
  gap: clamp(22px, 2.4vw, 34px);
  padding: clamp(42px, 5vw, 76px) clamp(24px, 5vw, 86px) !important;
  border: 3px solid rgba(255, 255, 255, 0.96) !important;
  border-radius: clamp(28px, 2.5vw, 46px) !important;
  background: rgba(255, 255, 255, 0.018) !important;
  overflow: hidden;
}

.home-page .final-cta.cta-simple .cta-hook {
  width: 100%;
  max-width: 1500px;
  white-space: normal !important;
  overflow-wrap: normal;
  font-size: clamp(58px, 7.9vw, 148px) !important;
  line-height: 0.9 !important;
}

.home-page .final-cta.cta-simple .cta-sub {
  max-width: 820px;
  font-size: clamp(18px, 1.7vw, 29px) !important;
  line-height: 1.12;
}

/* Creation Zone spacing and subtitle neatness. */
.creation-hero.creation-long .creation-hero-copy > .lead {
  max-width: min(1040px, 76vw) !important;
  margin-top: clamp(16px, 1.8vw, 26px) !important;
  font-size: clamp(20px, 2vw, 34px) !important;
  line-height: 1.08 !important;
}

/* Services layout fixes. */
.services-page .packages .package-card {
  gap: 0;
  justify-content: flex-start;
}

.services-page .packages .package-card > div {
  width: 100%;
}

.services-page .packages .package-card ul {
  margin-bottom: clamp(26px, 2.4vw, 38px);
}

.services-page .packages .package-card > .pill {
  margin-top: auto;
  flex-shrink: 0;
}

.services-page .services-addons .mini-list li {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.36) !important;
}

.services-page .final-cta.cta-simple .cta-simple-inner {
  width: min(calc(100vw - clamp(72px, 10vw, 180px)), 1760px) !important;
  max-width: none !important;
  padding: clamp(44px, 6vw, 88px) clamp(24px, 5vw, 76px) !important;
  border: 3px solid rgba(255, 255, 255, 0.96) !important;
  border-radius: clamp(28px, 2.5vw, 46px) !important;
  background: rgba(255, 255, 255, 0.018) !important;
  overflow: hidden;
}

@media (min-width: 861px) {
  .services-page .services-compare {
    height: min(100svh, 1080px);
    min-height: 760px;
    display: grid;
    align-items: center;
    padding-top: clamp(78px, 8vh, 104px) !important;
    padding-bottom: clamp(28px, 4vh, 52px) !important;
    overflow: hidden;
  }

  .services-page .services-compare > .wrap {
    width: 100%;
    max-width: 1800px;
  }

  .services-page .services-compare .eyebrow {
    margin-bottom: 10px;
  }

  .services-page .services-compare .headline {
    font-size: clamp(52px, 5vw, 92px) !important;
    line-height: 0.9;
  }

  .services-page .services-compare .services-table {
    margin-top: clamp(18px, 2.5vh, 28px);
  }

  .services-page .services-compare .services-table th,
  .services-page .services-compare .services-table td {
    padding: clamp(10px, 1.25vh, 15px) 18px;
    line-height: 1.25;
  }

  .services-page .services-compare .copy {
    margin: clamp(14px, 2vh, 22px) 0 0;
    max-width: 980px;
    line-height: 1.35;
  }
}

@media (min-width: 861px) and (max-height: 850px) {
  .home-page .testimonials,
  .services-page .services-compare {
    min-height: 720px;
  }

  .home-page .testimonials .headline {
    font-size: clamp(46px, 4.5vw, 76px) !important;
  }

  .home-page .testimonial-shell {
    height: 430px;
  }

  .services-page .services-compare .services-table th,
  .services-page .services-compare .services-table td {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 860px) {
  .creation-zone-wordmark {
    margin-top: 14px;
  }

  .creation-zone-wordmark-svg {
    width: 108%;
    margin-left: -4%;
  }

  .creation-hero.creation-long .creation-hero-copy > .lead {
    max-width: none !important;
    font-size: clamp(19px, 5.6vw, 27px) !important;
  }

  .home-page .final-cta.cta-simple .cta-simple-inner {
    width: 100% !important;
    min-height: 0;
    border-width: 2px !important;
  }

  .home-page .final-cta.cta-simple .cta-hook {
    font-size: clamp(44px, 13vw, 78px) !important;
  }

  .services-page .services-compare {
    min-height: auto;
  }

  .services-page .final-cta.cta-simple .cta-simple-inner {
    width: calc(100% - 32px) !important;
    border-width: 2px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creation-zone-wordmark-svg,
  .creation-wm-grp,
  .creation-wm-a,
  .creation-wm-b,
  .creation-wm-c,
  .creation-wm-a-t1,
  .creation-wm-a-t2,
  .creation-wm-b-t1,
  .creation-wm-b-t2,
  .creation-wm-c-t1,
  .creation-wm-c-t2 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    scale: none !important;
  }

  .creation-wm-a-t1,
  .creation-wm-a-t2,
  .creation-wm-b-t1,
  .creation-wm-b-t2,
  .creation-wm-c-t1,
  .creation-wm-c-t2 {
    opacity: 0 !important;
  }
}


/* ========================================================================== */
/* 2026-08-19 — Retainer-only pricing refresh                                */
/* ========================================================================== */

.package-monthly-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: clamp(18px, 2.2vw, 30px);
}
.package-monthly-price .price-dollar {
  font-size: clamp(58px, 6vw, 104px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 900;
}
.package-monthly-price .price-period {
  margin-bottom: .46em;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1;
  letter-spacing: .02em;
  opacity: .65;
  white-space: nowrap;
}

/* Homepage: pricing is a preview, not a spreadsheet. */
.home-pricing-preview {
  overflow: hidden;
}
.home-pricing-preview .package-grid-preview {
  perspective: 1400px;
}
.home-pricing-preview .package-preview-card {
  min-height: clamp(400px, 35vw, 520px);
  padding: clamp(24px, 2.2vw, 34px);
}
.home-pricing-preview .package-preview-card .package-title {
  max-width: 100%;
  font-size: clamp(50px, 5.2vw, 82px);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
  font-weight: 900;
}
.home-pricing-preview .package-preview-card:last-child .package-title {
  font-size: clamp(44px, 4.7vw, 74px);
}
.home-pricing-preview .package-preview-copy {
  margin: clamp(34px, 4vw, 58px) 0 0;
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 700;
}
.home-pricing-preview .package-preview-card .pill {
  width: 100%;
  margin-top: 28px;
}

.home-pricing-preview .package-preview-card:hover,
.home-pricing-preview .package-preview-card:focus-within,
.services-page .service-plan-card:hover,
.services-page .service-plan-card:focus-within {
  background: var(--red, #ff3f0a);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.home-pricing-preview .package-preview-card:hover .package-kicker,
.home-pricing-preview .package-preview-card:focus-within .package-kicker,
.services-page .service-plan-card:hover .package-kicker,
.services-page .service-plan-card:focus-within .package-kicker {
  color: rgba(255,255,255,.72);
}
.home-pricing-preview .package-preview-card:hover .pill,
.home-pricing-preview .package-preview-card:focus-within .pill,
.services-page .service-plan-card:hover .pill,
.services-page .service-plan-card:focus-within .pill {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.home-pricing-preview .package-preview-card:hover .pill:hover,
.home-pricing-preview .package-preview-card:focus-within .pill:hover,
.services-page .service-plan-card:hover .pill:hover,
.services-page .service-plan-card:focus-within .pill:hover {
  opacity: .9;
  transform: translateY(-3px);
}
.services-page .service-plan-card .package-title {
  font-weight: 900;
}

/* Custom entry choreography requested for the three homepage plans. */
.package-fly {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity .55s ease,
    transform 1.02s cubic-bezier(.16, 1.18, .3, 1);
}
.package-fly--left {
  transform: translate3d(-38vw, 72px, 0) rotate(-8deg) scale(.94);
  transform-origin: 100% 100%;
}
.package-fly--bottom {
  transform: translate3d(0, 72vh, 0) rotate(2deg) scale(.9);
  transition-duration: .58s, 1.14s;
  transition-delay: 70ms;
}
.package-fly--right {
  transform: translate3d(38vw, 72px, 0) rotate(8deg) scale(.94);
  transform-origin: 0 100%;
  transition-delay: 135ms;
}
.package-fly.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.package-fly.is-visible:hover {
  transform: translate3d(0, -8px, 0) rotate(0) scale(1);
}

/* Services: package cards explain the lane; comparison below handles detail. */
.services-plan-intro {
  padding-bottom: clamp(90px, 10vw, 150px) !important;
}
.services-plan-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  column-gap: clamp(36px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(34px, 4.5vw, 66px);
}
.services-plan-heading .eyebrow,
.services-plan-heading .headline {
  grid-column: 1;
}
.services-plan-heading .copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 4px;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.48;
}
.services-page .services-plan-grid {
  align-items: stretch;
}
.services-page .service-plan-card {
  min-height: clamp(650px, 48vw, 760px);
  padding: clamp(24px, 2.4vw, 38px);
}
.services-page .service-plan-card .package-title {
  font-size: clamp(48px, 4.6vw, 76px);
  text-transform: uppercase;
}
.services-page .service-plan-card:last-child .package-title {
  font-size: clamp(43px, 4.05vw, 68px);
}
.service-plan-deck {
  min-height: 5.1em;
  margin: clamp(28px, 3.2vw, 48px) 0 0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
  letter-spacing: -.025em;
  opacity: .84;
}
.plan-snapshot {
  margin: clamp(30px, 3vw, 46px) 0 0;
}
.plan-snapshot > div {
  display: grid;
  grid-template-columns: minmax(90px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 30%, transparent);
}
.plan-snapshot dt {
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .56;
}
.plan-snapshot dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

/* Apple-inspired comparison section — Replic typography and texture kept intact. */
.services-page .apple-compare {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(180deg, #f5f1e9 0%, #f1ece3 100%) !important;
  color: #090909;
  padding-top: clamp(96px, 10vw, 150px) !important;
  padding-bottom: clamp(88px, 9vw, 140px) !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
}
.services-page .apple-compare > .wrap {
  max-width: 1680px !important;
}
.compare-intro {
  max-width: 1260px;
}
.services-page .apple-compare .eyebrow {
  color: #5d5850;
}
.services-page .apple-compare .display {
  max-width: 1250px;
  font-size: clamp(60px, 7.8vw, 136px);
  line-height: .85;
}
.compare-lead {
  max-width: 1040px;
  margin: clamp(28px, 3vw, 46px) 0 0;
  font-size: clamp(19px, 1.75vw, 28px);
  line-height: 1.35;
  letter-spacing: -.03em;
}
.compare-baseline {
  margin-top: clamp(50px, 6vw, 84px);
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
}
.compare-baseline > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #68625a;
}
.baseline-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.baseline-items span {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  background: rgba(255,255,255,.34);
}
.compare-swipe-hint {
  display: none;
}
.compare-mobile-picker {
  display: none;
}
.apple-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 70px);
  margin-top: clamp(46px, 5vw, 72px);
}
.compare-plan-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.compare-plan-head {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 clamp(28px, 3vw, 42px);
}
.compare-plan-label {
  min-height: 34px;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.045em;
}
.compare-plan-label > span {
  display: inline-flex;
  margin-left: 7px;
  border-radius: 999px;
  padding: 6px 8px 5px;
  background: #0a0a0a;
  color: #f4f0e8;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: 4px;
}
.compare-plan-price {
  margin-top: 22px;
  font-size: clamp(50px, 4.4vw, 76px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 900;
}
.compare-plan-price span {
  margin-left: 6px;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 500;
  color: #5d5850;
}
.compare-plan-head p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}
.compare-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  border-radius: 999px;
  padding: 9px 14px;
  background: #0a0a0a;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  transition: transform .2s var(--ease), opacity .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.compare-buy:hover {
  transform: translateY(-2px);
  opacity: .92;
  background: var(--red, #ff3f0a);
  color: #fff;
}
.compare-feature {
  min-height: 280px;
  padding: clamp(36px, 4vw, 58px) 0;
  border-top: 1px solid rgba(0,0,0,.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}
.compare-icon {
  width: clamp(76px, 5vw, 96px);
  height: clamp(76px, 5vw, 96px);
  margin-bottom: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.compare-feature strong {
  max-width: 300px;
  min-height: 2.35em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.compare-feature > span {
  max-width: 315px;
  min-height: 4.4em;
  margin-top: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: #4e4942;
}
.compare-feature-muted .compare-icon,
.compare-feature-muted strong,
.compare-feature-muted > span {
  opacity: .46;
}

.compare-mobile-picker {
  margin-top: 28px;
  gap: 10px;
  flex-wrap: wrap;
}
.compare-mobile-picker button {
  appearance: none;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  color: #090909;
  min-height: 38px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.compare-mobile-picker button:hover {
  transform: translateY(-2px);
}
.compare-mobile-picker button.is-active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.compare-plan-column-featured .compare-plan-head {
  position: relative;
}
.compare-plan-column-featured .compare-plan-head::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: -20px;
  bottom: 18px;
  z-index: -1;
  border-radius: 24px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(0,0,0,.09);
}
.compare-note {
  max-width: 900px;
  margin: clamp(38px, 4vw, 64px) 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.18);
  color: #4f4a43;
  font-size: 15px;
  line-height: 1.55;
}

.services-page .services-addons {
  padding-top: clamp(88px, 9vw, 140px);
}
.services-page .services-addons .headline {
  max-width: 820px;
}
.services-page .services-addons .mini-list {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .services-plan-heading {
    grid-template-columns: 1fr;
  }
  .services-plan-heading .copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
    margin-top: 22px;
  }
  .services-page .service-plan-card,
  .home-pricing-preview .package-preview-card {
    min-height: auto;
  }
  .service-plan-deck {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .home-pricing-preview .package-grid-preview {
    gap: 18px;
  }
  .package-fly--left,
  .package-fly--right {
    transform: translate3d(0, 80px, 0) rotate(0) scale(.96);
  }
  .package-fly--bottom {
    transform: translate3d(0, 28vh, 0) rotate(0) scale(.94);
  }
  .package-fly--left,
  .package-fly--bottom,
  .package-fly--right {
    transition-delay: 0ms;
  }
  .services-page .service-plan-card {
    min-height: 0;
  }
  .services-page .apple-compare .display {
    font-size: clamp(54px, 14vw, 88px);
  }
  .compare-baseline {
    grid-template-columns: 1fr;
  }
  .compare-mobile-picker {
    display: flex;
  }
  .compare-swipe-hint {
    display: block;
    margin: 14px 0 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #68625a;
  }
  .apple-compare-grid {
    width: 100%;
    margin-left: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
  }
  .apple-compare-grid .compare-plan-column {
    display: none;
  }
  .apple-compare-grid[data-active-pair="tm"] .compare-plan-column--thrifty,
  .apple-compare-grid[data-active-pair="tm"] .compare-plan-column--motion,
  .apple-compare-grid[data-active-pair="mb"] .compare-plan-column--motion,
  .apple-compare-grid[data-active-pair="mb"] .compare-plan-column--black-card,
  .apple-compare-grid[data-active-pair="tb"] .compare-plan-column--thrifty,
  .apple-compare-grid[data-active-pair="tb"] .compare-plan-column--black-card {
    display: flex;
  }
  .compare-plan-head {
    min-height: 214px;
    padding-bottom: 24px;
  }
  .compare-plan-price {
    font-size: clamp(44px, 8vw, 64px);
  }
  .compare-plan-head p {
    font-size: 16px;
  }
  .compare-feature {
    min-height: 228px;
    padding: 28px 0;
  }
  .compare-feature strong {
    min-height: 2.55em;
    font-size: 18px;
  }
  .compare-feature > span {
    min-height: 5.2em;
    font-size: 14px;
  }
  .compare-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
  }
  .compare-plan-column-featured .compare-plan-head::before {
    left: -10px;
    right: -10px;
  }
}

@media (max-width: 520px) {
  .home-pricing-preview .package-preview-card .package-title,
  .home-pricing-preview .package-preview-card:last-child .package-title,
  .services-page .service-plan-card .package-title,
  .services-page .service-plan-card:last-child .package-title {
    font-size: clamp(46px, 14vw, 66px);
  }
  .package-monthly-price .price-dollar {
    font-size: clamp(58px, 18vw, 78px);
  }
  .plan-snapshot > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .services-page .apple-compare {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .services-page .apple-compare > .wrap {
    margin-right: 0;
  }
  .compare-intro,
  .compare-baseline,
  .compare-note {
    padding-right: 0;
  }
  .compare-mobile-picker {
    gap: 8px;
  }
  .compare-mobile-picker button {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    padding-inline: 10px;
  }
  .apple-compare-grid {
    gap: 14px;
  }
  .compare-plan-head {
    min-height: 198px;
  }
  .compare-plan-label {
    font-size: 18px;
  }
  .compare-plan-label > span {
    margin-left: 0;
    margin-top: 8px;
  }
  .compare-plan-price {
    margin-top: 18px;
    font-size: 42px;
  }
  .compare-plan-price span {
    display: block;
    margin: 6px 0 0;
    font-size: 13px;
  }
  .compare-buy {
    min-height: 36px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .compare-feature {
    min-height: 0;
    padding: 22px 0;
  }
  .compare-feature strong {
    min-height: 0;
    font-size: 17px;
  }
  .compare-feature > span {
    min-height: 0;
    font-size: 13px;
    line-height: 1.4;
  }
  .compare-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-fly,
  .package-fly--left,
  .package-fly--bottom,
  .package-fly--right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Services compare rebuild — mobile matrix + hand-drawn animation swaps */
.compare-icon.compare-icon-seq {
  width: clamp(76px, 5vw, 96px);
  height: clamp(76px, 5vw, 96px);
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  filter: none;
}
.compare-icon-placeholder {
  display: inline-block;
  width: 52px;
  height: 2px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background: currentColor;
  opacity: .45;
}
.compare-mobile-grid {
  display: none;
}
.compare-mobile-plan,
.compare-mobile-feature {
  min-width: 0;
}
.compare-mobile-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 20px 16px 16px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.compare-mobile-plan.is-featured {
  background: #0a0a0a;
  color: #f4f0e8;
  border-color: #0a0a0a;
}
.compare-mobile-plan.is-featured .compare-mobile-plan-price span,
.compare-mobile-plan.is-featured p,
.compare-mobile-plan.is-featured .compare-mobile-badge {
  color: inherit;
}
.compare-mobile-plan.is-featured .compare-buy {
  background: #f4f0e8;
  color: #0a0a0a;
}
.compare-mobile-plan-top {
  display: grid;
  gap: 14px;
}
.compare-mobile-plan-label-wrap {
  display: grid;
  gap: 8px;
  align-items: start;
}
.compare-mobile-plan-label {
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.045em;
}
.compare-mobile-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px 6px;
  background: #0a0a0a;
  color: #f4f0e8;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.compare-mobile-plan.is-featured .compare-mobile-badge {
  background: rgba(255,255,255,.12);
  color: #f4f0e8;
}
.compare-mobile-plan-price {
  font-size: clamp(44px, 10vw, 58px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 900;
}
.compare-mobile-plan-price span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #5d5850;
}
.compare-mobile-plan p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}
.compare-mobile-grid .compare-buy {
  width: 100%;
  margin-top: 18px;
  padding-inline: 10px;
  text-align: center;
}
.compare-mobile-feature {
  padding: 22px 10px 24px;
  border-top: 1px solid rgba(0,0,0,.14);
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0;
}
.compare-mobile-grid > .compare-mobile-feature:nth-child(3),
.compare-mobile-grid > .compare-mobile-feature:nth-child(4) {
  border-top: 0;
  padding-top: 6px;
}
.compare-mobile-feature strong {
  display: block;
  max-width: 14ch;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.compare-mobile-feature span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #4e4942;
}
.compare-mobile-icon-wrap {
  min-height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.compare-mobile-feature-muted .compare-icon,
.compare-mobile-feature-muted strong,
.compare-mobile-feature-muted span {
  opacity: .46;
}
@media (max-width: 860px) {
  .compare-mobile-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }
  .compare-mobile-picker button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .compare-mobile-picker button:last-child {
    grid-column: 1 / -1;
  }
  .compare-swipe-hint {
    margin-bottom: 18px;
  }
  .apple-compare-grid {
    display: none !important;
  }
  .compare-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 0;
    align-items: stretch;
  }
  .compare-mobile-grid > * {
    min-width: 0;
  }
}
@media (max-width: 520px) {
  .compare-mobile-picker {
    gap: 10px;
  }
  .compare-mobile-grid {
    column-gap: 12px;
  }
  .compare-mobile-plan {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }
  .compare-mobile-plan-label {
    font-size: 17px;
  }
  .compare-mobile-plan p {
    font-size: 14px;
  }
  .compare-mobile-plan-price {
    font-size: clamp(42px, 14vw, 58px);
  }
  .compare-mobile-feature {
    padding: 20px 8px 22px;
  }
  .compare-mobile-feature strong {
    font-size: 15px;
    max-width: 11ch;
  }
  .compare-mobile-feature span {
    font-size: 12.5px;
    line-height: 1.42;
  }
  .compare-icon.compare-icon-seq {
    width: 68px;
    height: 68px;
  }
}

/* 2026-08-20 — measured performance pass */
@supports (content-visibility: auto) {
  .home-pricing-preview,
  .testimonials,
  .faq,
  .final-cta,
  .services-plan-intro,
  .services-addons,
  .ig-roll,
  .creation-next,
  .privacy > .section:not(.page-hero),
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 820px;
  }
}

@media (max-width: 860px), (pointer: coarse) {
  .grain {
    display: none !important;
  }

  .dot-bg,
  .home-dot-run::before {
    background-attachment: scroll !important;
  }
}


/* Replicweb signature: small WEB label in the lower-left corner. */
.replicweb-corner {
  position: fixed;
  left: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.2vw, 30px);
  z-index: 1900;
  pointer-events: none;
  color: rgba(244, 240, 232, 0.88);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-top: 7px;
  border-top: 1px solid currentColor;
  mix-blend-mode: difference;
  opacity: 0.9;
}

.replicweb-corner span {
  display: block;
}

@media (max-width: 520px) {
  .replicweb-corner {
    left: 16px;
    bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.22em;
  }
}
