/* ==========================================================================
   page-style-1
   ========================================================================== */
:root {
      --lime: #c2ff02;
      --peach: #ffbd9b;
      --lavender: #d9d6fd;
      --mint: #99feed;
      --white: #ffffff;
      --gray: #f5f5f3;
      --gray-2: #ecece8;
      --ink: #202124;
      --muted: #6c6e73;
      --line: rgba(32, 33, 36, 0.12);
      --shadow-sm: 0 14px 38px rgba(32, 33, 36, 0.08);
      --shadow-lg: 0 28px 80px rgba(32, 33, 36, 0.12);
      --radius-lg: 38px;
      --radius-md: 24px;
      --radius-sm: 16px;
      --page: min(1280px, calc(100vw - 48px));
      --ease: cubic-bezier(.22, .8, .24, 1);
      --header-height: 104px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--white);
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { color: inherit; }

    :focus-visible {
      outline: 3px solid rgba(194, 255, 2, .82);
      outline-offset: 4px;
    }

    .page-shell {
      width: var(--page);
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 118px 0;
    }

    .section--compact { padding: 84px 0; }

    .eyebrow {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 980px;
      margin: 0;
      font-size: clamp(3rem, 6.2vw, 6.4rem);
      line-height: .97;
      letter-spacing: -.065em;
      font-weight: 800;
    }

    .section-copy {
      max-width: 720px;
      margin: 26px 0 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.22rem);
      line-height: 1.72;
    }

    .btn {
      min-height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: .94rem;
      font-weight: 800;
      cursor: pointer;
      transition: transform .26s var(--ease), box-shadow .26s var(--ease), background .26s ease, border-color .26s ease;
    }

    .btn:hover { transform: translateY(-3px); }

    .btn--primary {
      color: var(--ink);
      background: var(--lime);
      box-shadow: 0 14px 30px rgba(194, 255, 2, .26);
    }

    .btn--primary:hover { box-shadow: 0 18px 34px rgba(194, 255, 2, .34); }

    .btn--secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, .8);
      border-color: rgba(32, 33, 36, .18);
    }

    .btn--dark {
      color: var(--white);
      background: var(--ink);
    }

    .btn__arrow {
      font-size: 1.1rem;
      transition: transform .25s var(--ease);
    }

    .btn:hover .btn__arrow { transform: translateX(4px); }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 25px;
      font-size: .9rem;
      font-weight: 800;
    }

    .text-link__arrow {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--lime);
    }

    /* Header */
    .site-header {
      position: fixed;
      z-index: 100;
      inset: 0 0 auto;
      padding: 16px 0;
      transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
    }

    .site-header.is-scrolled {
      padding: 10px 0;
      background: rgba(255, 255, 255, .88);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 var(--line);
    }

    .nav {
      width: var(--page);
      min-height: 70px;
      margin-inline: auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 8px 10px 8px 22px;
      border: 1px solid rgba(255, 255, 255, .86);
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 12px 38px rgba(32, 33, 36, .08);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
    }

    @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      .nav, .site-header.is-scrolled { background: rgba(255, 255, 255, .97); }
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: .055em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 14px;
      height: 14px;
      border-radius: 5px 5px 5px 1px;
      background: var(--lime);
      box-shadow: 9px -7px 0 -4px var(--peach), 11px 7px 0 -5px var(--mint);
      transform: rotate(-12deg);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 27px;
    }

    .desktop-nav > a,
    .nav-drop__trigger {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 0;
      border: 0;
      background: transparent;
      font-size: .86rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-drop { position: relative; }

    .nav-drop__trigger svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      transition: transform .22s ease;
    }

    .nav-drop.is-open .nav-drop__trigger svg { transform: rotate(180deg); }

    .nav-drop__menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      width: 350px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, .98);
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .nav-drop.is-open .nav-drop__menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .nav-drop__menu a {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      padding: 13px;
      border-radius: 16px;
      transition: background .2s ease;
    }

    .nav-drop__menu a:hover { background: var(--gray); }

    .nav-drop__icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--mint);
      font-size: .72rem;
      font-weight: 800;
    }

    .nav-drop__menu a:nth-child(2) .nav-drop__icon { background: var(--lavender); }
    .nav-drop__menu a:nth-child(3) .nav-drop__icon { background: var(--peach); }

    .nav-drop__copy strong,
    .nav-drop__copy small { display: block; }

    .nav-drop__copy strong { font-size: .84rem; }

    .nav-drop__copy small {
      margin-top: 4px;
      color: var(--muted);
      font-size: .68rem;
      line-height: 1.45;
    }

    .nav-cta { min-height: 52px; padding-inline: 22px; }

    .menu-toggle {
      width: 48px;
      height: 48px;
      display: none;
      place-items: center;
      border: 1px solid rgba(32, 33, 36, .1);
      border-radius: 50%;
      background: var(--gray);
      cursor: pointer;
    }

    .menu-toggle__lines {
      width: 20px;
      height: 16px;
      position: relative;
    }

    .menu-toggle__lines span {
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      transition: transform .25s var(--ease), top .25s var(--ease), opacity .2s ease, width .25s var(--ease);
    }

    .menu-toggle__lines span:nth-child(1) { top: 1px; }
    .menu-toggle__lines span:nth-child(2) { top: 7px; width: 14px; }
    .menu-toggle__lines span:nth-child(3) { top: 13px; }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) { top: 7px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      z-index: 95;
      inset: 0;
      padding: 94px 14px 18px;
      background: rgba(32, 33, 36, .34);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-menu.is-open { opacity: 1; visibility: visible; }

    .mobile-menu__panel {
      max-height: calc(100dvh - 112px);
      overflow-y: auto;
      padding: 22px;
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow-lg);
      transform: translateY(-10px) scale(.98);
      transition: transform .3s var(--ease);
    }

    .mobile-menu.is-open .mobile-menu__panel { transform: translateY(0) scale(1); }

    .mobile-menu__section {
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu__section:first-child { padding-top: 0; }
    .mobile-menu__section:last-of-type { border-bottom: 0; }

    .mobile-menu__label {
      display: block;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .mobile-menu a:not(.btn) {
      display: block;
      padding: 10px 0;
      font-size: 1rem;
      font-weight: 700;
    }

    .mobile-menu .btn { width: 100%; margin-top: 14px; }

    /* Hero */
    .hero {
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: 156px 0 92px;
      overflow: hidden;
      background:
        radial-gradient(circle at 82% 12%, rgba(217, 214, 253, .58), transparent 26%),
        radial-gradient(circle at 72% 76%, rgba(153, 254, 237, .38), transparent 29%),
        radial-gradient(circle at 12% 92%, rgba(255, 189, 155, .26), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .98fr) minmax(480px, 1.02fr);
      align-items: center;
      gap: 54px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-bottom: 24px;
      color: var(--muted);
      font-size: .7rem;
      font-weight: 700;
    }

    .breadcrumb span { opacity: .55; }

    .hero-title {
      max-width: 800px;
      margin: 0;
      font-size: clamp(4.2rem, 7.5vw, 8rem);
      line-height: .9;
      letter-spacing: -.078em;
      font-weight: 800;
    }

    .hero-title .accent {
      display: inline-block;
      position: relative;
      z-index: 0;
    }

    .hero-title .accent::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -.04em;
      right: -.04em;
      bottom: .03em;
      height: .28em;
      border-radius: 999px;
      background: var(--lime);
      transform: rotate(-1deg);
    }

    .hero-question {
      margin: 28px 0 0;
      font-size: clamp(1.3rem, 2vw, 1.9rem);
      line-height: 1.25;
      letter-spacing: -.035em;
      font-weight: 750;
    }

    .hero-copy {
      max-width: 660px;
      margin: 17px 0 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.18rem);
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 32px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 28px;
    }

    .meta-pill {
      min-height: 37px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(32, 33, 36, .09);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      color: var(--muted);
      font-size: .68rem;
      font-weight: 750;
    }

    .meta-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(194, 255, 2, .14);
    }

    .hero-art {
      min-height: 660px;
      position: relative;
      isolation: isolate;
    }

    .hero-art::before {
      content: "";
      position: absolute;
      z-index: -2;
      inset: 4% 0 2% 6%;
      border-radius: 48% 52% 46% 54%;
      background:
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, .96), rgba(153, 254, 237, .52) 35%, rgba(217, 214, 253, .50) 62%, rgba(255, 189, 155, .34) 78%, transparent 80%);
      filter: blur(5px);
    }

    .hero-orbit {
      position: absolute;
      z-index: -1;
      inset: 12% 4% 10% 6%;
      border: 1px solid rgba(32, 33, 36, .13);
      border-radius: 50%;
      transform: rotate(-14deg);
    }

    .hero-orbit::after {
      content: "";
      position: absolute;
      inset: 18%;
      border: 1px dashed rgba(32, 33, 36, .10);
      border-radius: 50%;
    }

    .store-browser {
      position: absolute;
      z-index: 4;
      width: 76%;
      right: 2%;
      top: 13%;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .85);
      border-radius: 26px;
      background: var(--white);
      box-shadow: 0 34px 80px rgba(32, 33, 36, .17);
      transform: rotate(2deg);
      animation: floatBrowser 7s ease-in-out infinite;
    }

    .store-browser__bar {
      height: 38px;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 15px;
      background: #ecece9;
    }

    .store-browser__bar i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c7c8c4;
    }

    .store-browser__body {
      min-height: 360px;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: center;
      gap: 18px;
      padding: 34px;
      background:
        radial-gradient(circle at 88% 15%, rgba(194, 255, 2, .48), transparent 25%),
        radial-gradient(circle at 10% 90%, rgba(255, 189, 155, .46), transparent 27%),
        linear-gradient(145deg, #fff 0%, #f2f0ff 100%);
    }

    .store-browser__copy small {
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .store-browser__copy strong {
      display: block;
      margin-top: 14px;
      font-size: clamp(1.85rem, 3.2vw, 3.4rem);
      line-height: .96;
      letter-spacing: -.06em;
    }

    .store-browser__copy span {
      display: inline-flex;
      margin-top: 22px;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--lime);
      font-size: .65rem;
      font-weight: 800;
    }

    .product-mock {
      min-height: 250px;
      display: grid;
      place-items: center;
      position: relative;
      border-radius: 28px 28px 28px 8px;
      background: rgba(255, 255, 255, .6);
      border: 1px solid rgba(255, 255, 255, .8);
    }

    .product-shirt {
      width: 150px;
      height: 160px;
      position: relative;
      border-radius: 22px 22px 14px 14px;
      background: var(--ink);
      box-shadow: 0 22px 38px rgba(32, 33, 36, .2);
    }

    .product-shirt::before,
    .product-shirt::after {
      content: "";
      position: absolute;
      top: 6px;
      width: 62px;
      height: 74px;
      border-radius: 24px 24px 12px 12px;
      background: var(--ink);
    }

    .product-shirt::before { left: -37px; transform: rotate(26deg); }
    .product-shirt::after { right: -37px; transform: rotate(-26deg); }

    .product-shirt__mark {
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 58px;
      transform: translateX(-50%);
      color: var(--lime);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .store-phone {
      position: absolute;
      z-index: 6;
      width: 30%;
      left: 5%;
      bottom: 9%;
      padding: 7px;
      border-radius: 31px;
      background: var(--ink);
      box-shadow: 0 26px 55px rgba(32, 33, 36, .24);
      transform: rotate(-7deg);
      animation: floatPhone 6.2s ease-in-out infinite -1.4s;
    }

    .store-phone__screen {
      min-height: 292px;
      padding: 22px 16px;
      border-radius: 25px;
      background:
        radial-gradient(circle at 72% 14%, rgba(194, 255, 2, .55), transparent 30%),
        linear-gradient(160deg, #fff, #f0efff);
    }

    .store-phone__screen small {
      font-size: .49rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .store-phone__screen strong {
      display: block;
      margin-top: 28px;
      font-size: 1.28rem;
      line-height: 1;
      letter-spacing: -.05em;
    }

    .phone-product {
      width: 80%;
      height: 112px;
      margin: 28px auto 0;
      border-radius: 22px;
      background: var(--peach);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .48);
    }

    .float-status {
      position: absolute;
      z-index: 8;
      min-width: 184px;
      display: grid;
      grid-template-columns: 36px 1fr;
      align-items: center;
      gap: 11px;
      padding: 13px 15px;
      border: 1px solid rgba(255, 255, 255, .86);
      border-radius: 16px;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 18px 44px rgba(32, 33, 36, .12);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      animation: statusFloat 5.4s ease-in-out infinite;
    }

    .float-status--one { left: 0; top: 17%; }
    .float-status--two { right: 0; bottom: 8%; animation-delay: -1.7s; }

    .status-check {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--lime);
    }

    .status-check svg {
      width: 18px;
      fill: none;
      stroke: var(--ink);
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .float-status strong,
    .float-status small { display: block; }
    .float-status strong { font-size: .78rem; }
    .float-status small { margin-top: 4px; color: var(--muted); font-size: .61rem; }

    @keyframes floatBrowser {
      0%, 100% { transform: rotate(2deg) translateY(0); }
      50% { transform: rotate(1deg) translateY(-10px); }
    }

    @keyframes floatPhone {
      0%, 100% { transform: rotate(-7deg) translateY(0); }
      50% { transform: rotate(-5deg) translateY(-9px); }
    }

    @keyframes statusFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* Proof strip */
    .proof-strip {
      padding: 0 0 46px;
      background: linear-gradient(180deg, #fbfbf8 0%, #fff 100%);
    }

    .proof-panel {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .proof-intro,
    .proof-item { padding: 26px 28px; }

    .proof-intro {
      background: linear-gradient(145deg, var(--mint), rgba(217, 214, 253, .78));
    }

    .proof-intro strong {
      display: block;
      max-width: 320px;
      font-size: 1.2rem;
      line-height: 1.28;
      letter-spacing: -.025em;
    }

    .proof-item { border-left: 1px solid var(--line); }

    .proof-item small,
    .proof-item strong { display: block; }
    .proof-item small { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .proof-item strong { margin-top: 8px; font-size: .88rem; line-height: 1.4; }

    /* Sticky page nav */
    .page-nav-wrap {
      position: sticky;
      z-index: 45;
      top: 92px;
      padding: 11px 0;
      background: rgba(255, 255, 255, .9);
      border-top: 1px solid rgba(32, 33, 36, .05);
      border-bottom: 1px solid rgba(32, 33, 36, .08);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }

    .page-nav {
      display: flex;
      align-items: center;
      gap: 22px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .page-nav::-webkit-scrollbar { display: none; }

    .page-nav a {
      flex: 0 0 auto;
      color: var(--muted);
      font-size: .72rem;
      font-weight: 750;
      white-space: nowrap;
    }

    .page-nav a:hover { color: var(--ink); }
    .page-nav .page-nav__cta { margin-left: auto; color: var(--ink); }

    /* Pain */
    .pain-section {
      background:
        radial-gradient(circle at 86% 14%, rgba(217, 214, 253, .45), transparent 25%),
        radial-gradient(circle at 12% 82%, rgba(153, 254, 237, .28), transparent 24%),
        var(--white);
    }

    .pain-heading {
      display: grid;
      grid-template-columns: 1fr .78fr;
      gap: 60px;
      align-items: end;
    }

    .pain-heading .section-copy { margin: 0; }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 52px;
    }

    .pain-card {
      min-height: 360px;
      display: flex;
      flex-direction: column;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 14px 40px rgba(32, 33, 36, .06);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .pain-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }

    .pain-card__number {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--lime);
      font-size: .68rem;
      font-weight: 800;
    }

    .pain-card:nth-child(2) .pain-card__number { background: var(--lavender); }
    .pain-card:nth-child(3) .pain-card__number { background: var(--peach); }

    .pain-card h3 {
      margin: auto 0 0;
      font-size: clamp(1.6rem, 2.5vw, 2.45rem);
      line-height: 1.03;
      letter-spacing: -.05em;
    }

    .pain-card p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.65;
    }

    .pain-closing {
      max-width: 920px;
      margin: 64px auto 0;
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 5.4rem);
      line-height: .98;
      letter-spacing: -.06em;
      font-weight: 800;
    }

    .pain-closing span {
      position: relative;
      display: inline-block;
      z-index: 0;
    }

    .pain-closing span::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -.04em;
      right: -.04em;
      bottom: .02em;
      height: .3em;
      background: var(--lime);
      border-radius: 999px;
    }

    /* Outcomes */
    .outcome-section {
      background: var(--gray);
    }

    .outcome-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 70px;
      align-items: start;
    }

    .outcome-sticky {
      position: sticky;
      top: 180px;
    }

    .outcome-list { border-top: 1px solid var(--line); }

    .outcome-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
    }

    .outcome-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--line);
    }

    .outcome-icon svg {
      width: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .outcome-item h3 {
      margin: 0;
      font-size: 1.35rem;
      letter-spacing: -.03em;
    }

    .outcome-item p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.65;
    }

    /* Before after */
    .before-after {
      overflow: hidden;
      background:
        radial-gradient(circle at 4% 14%, rgba(255, 189, 155, .28), transparent 24%),
        radial-gradient(circle at 94% 80%, rgba(153, 254, 237, .24), transparent 26%),
        var(--white);
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 50px;
    }

    .comparison-card {
      min-height: 560px;
      padding: 38px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
    }

    .comparison-card--before { background: var(--gray); }
    .comparison-card--after { background: linear-gradient(145deg, var(--mint), var(--lavender) 62%, var(--peach)); }

    .comparison-label {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .68);
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .comparison-card h3 {
      margin: 28px 0 0;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: .98;
      letter-spacing: -.06em;
    }

    .comparison-list {
      display: grid;
      gap: 0;
      margin: 35px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid rgba(32, 33, 36, .12);
    }

    .comparison-list li {
      position: relative;
      padding: 18px 0 18px 32px;
      border-bottom: 1px solid rgba(32, 33, 36, .12);
      color: rgba(32, 33, 36, .76);
      font-size: .9rem;
      font-weight: 650;
    }

    .comparison-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 21px;
      width: 16px;
      height: 16px;
      border: 1.7px solid rgba(32, 33, 36, .48);
      border-radius: 50%;
    }

    .comparison-card--after .comparison-list li::before {
      border-color: var(--ink);
      background: var(--lime);
      box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .8);
    }

    /* Process */
    .process-section { background: var(--ink); color: var(--white); overflow: hidden; }
    .process-section .eyebrow, .process-section .section-copy { color: rgba(255, 255, 255, .62); }

    .process-rail {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-top: 54px;
      position: relative;
      z-index: 2;
    }

    .process-card {
      min-height: 270px;
      display: flex;
      flex-direction: column;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 22px;
      background: rgba(255, 255, 255, .07);
    }

    .process-number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: var(--lime);
      font-size: .68rem;
      font-weight: 800;
    }

    .process-card h3 {
      margin: auto 0 0;
      font-size: 1.13rem;
      line-height: 1.25;
    }

    .process-card p {
      margin: 13px 0 0;
      color: rgba(255, 255, 255, .64);
      font-size: .78rem;
      line-height: 1.6;
    }

    /* Use cases */
    .use-cases {
      background:
        radial-gradient(circle at 90% 8%, rgba(217, 214, 253, .42), transparent 25%),
        var(--white);
    }

    .use-case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 50px;
    }

    .use-case-card {
      min-height: 250px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(32, 33, 36, .05);
      transition: transform .28s var(--ease), border-color .28s ease;
    }

    .use-case-card:hover { transform: translateY(-6px); border-color: rgba(32, 33, 36, .22); }

    .use-case-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--mint);
    }

    .use-case-card:nth-child(2) .use-case-icon,
    .use-case-card:nth-child(5) .use-case-icon { background: var(--lavender); }
    .use-case-card:nth-child(3) .use-case-icon,
    .use-case-card:nth-child(6) .use-case-icon { background: var(--peach); }

    .use-case-icon svg {
      width: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .use-case-card h3 {
      margin: 32px 0 0;
      font-size: 1.3rem;
      letter-spacing: -.035em;
    }

    .use-case-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: .84rem;
      line-height: 1.62;
    }

    /* Included */
    .included-section { background: var(--gray); }

    .included-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 50px;
    }

    .included-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: var(--white);
    }

    .included-card h3 {
      margin: 0;
      font-size: 1.15rem;
      letter-spacing: -.03em;
    }

    .included-card ul {
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .included-card li {
      position: relative;
      padding: 11px 0 11px 25px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: .78rem;
      line-height: 1.45;
    }

    .included-card li::before {
      content: "↗";
      position: absolute;
      left: 0;
      top: 11px;
      color: var(--ink);
      font-weight: 800;
    }

    .scope-note {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-top: 24px;
      padding: 20px 22px;
      border: 1px solid rgba(32, 33, 36, .09);
      border-radius: 18px;
      background: rgba(255, 255, 255, .7);
      color: var(--muted);
      font-size: .8rem;
      line-height: 1.55;
    }

    .scope-note::before {
      content: "i";
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      flex: 0 0 26px;
      border-radius: 50%;
      color: var(--ink);
      background: var(--lime);
      font-weight: 800;
    }

    /* Fit */
    .fit-section {
      background:
        radial-gradient(circle at 10% 10%, rgba(153, 254, 237, .34), transparent 25%),
        radial-gradient(circle at 88% 90%, rgba(255, 189, 155, .28), transparent 28%),
        var(--white);
    }

    .fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 50px;
    }

    .fit-card {
      padding: 38px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 16px 48px rgba(32, 33, 36, .06);
    }

    .fit-card--yes { background: linear-gradient(145deg, rgba(153, 254, 237, .68), rgba(255, 255, 255, .9)); }

    .fit-card h3 {
      margin: 0;
      font-size: clamp(2rem, 3.5vw, 3.6rem);
      line-height: 1;
      letter-spacing: -.055em;
    }

    .fit-list {
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }

    .fit-list li {
      position: relative;
      padding: 15px 0 15px 30px;
      border-top: 1px solid rgba(32, 33, 36, .12);
      color: rgba(32, 33, 36, .74);
      font-size: .85rem;
      line-height: 1.5;
    }

    .fit-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18px;
      width: 16px;
      height: 16px;
      border-radius: 5px;
      border: 1.5px solid rgba(32, 33, 36, .4);
    }

    .fit-card--yes .fit-list li::before { background: var(--lime); border-color: var(--ink); }

    .route-links {
      display: grid;
      gap: 10px;
      margin-top: 26px;
    }

    .route-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--gray);
      font-size: .78rem;
      font-weight: 800;
    }

    /* Price */
    .pricing-section { background: var(--ink); color: var(--white); }
    .pricing-section .eyebrow { color: rgba(255, 255, 255, .58); }

    .pricing-card {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 50px;
      align-items: stretch;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 42px;
      background: rgba(255, 255, 255, .06);
    }

    .pricing-main { padding: 54px; }

    .pricing-main h2 {
      margin: 0;
      font-size: clamp(3rem, 5.4vw, 5.8rem);
      line-height: .94;
      letter-spacing: -.065em;
    }

    .price-line {
      display: flex;
      align-items: flex-end;
      gap: 14px;
      margin-top: 42px;
    }

    .price-start {
      padding-bottom: 12px;
      color: rgba(255, 255, 255, .58);
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .price-value {
      font-size: clamp(4rem, 7vw, 7.6rem);
      line-height: .8;
      letter-spacing: -.08em;
      font-weight: 800;
    }

    .pricing-main p {
      max-width: 560px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, .64);
      line-height: 1.7;
      font-size: .9rem;
    }

    .pricing-main .btn { margin-top: 30px; }

    .pricing-side {
      padding: 54px;
      color: var(--ink);
      background: linear-gradient(145deg, var(--mint), var(--lavender) 56%, var(--peach));
    }

    .pricing-side h3 {
      margin: 0;
      font-size: 1.25rem;
      letter-spacing: -.03em;
    }

    .price-features {
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .price-features li {
      position: relative;
      padding: 15px 0 15px 29px;
      border-top: 1px solid rgba(32, 33, 36, .18);
      font-size: .84rem;
      font-weight: 650;
    }

    .price-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      font-weight: 800;
    }

    .price-disclaimer {
      margin-top: 28px;
      color: rgba(32, 33, 36, .64);
      font-size: .73rem;
      line-height: 1.55;
    }

    /* Trust */
    .trust-section { background: var(--white); }

    .trust-panel {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 55px;
      padding: 58px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 94% 8%, rgba(217, 214, 253, .5), transparent 27%),
        radial-gradient(circle at 8% 92%, rgba(153, 254, 237, .32), transparent 28%),
        var(--gray);
    }

    .trust-panel h2 {
      margin: 0;
      font-size: clamp(3rem, 5vw, 5.3rem);
      line-height: .96;
      letter-spacing: -.065em;
    }

    .trust-panel p {
      margin: 24px 0 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .trust-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-content: center;
    }

    .trust-point {
      min-height: 126px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 255, 255, .78);
      font-size: .8rem;
      font-weight: 800;
      line-height: 1.4;
    }

    .trust-point::before {
      content: "✦";
      margin-bottom: auto;
      color: #8ab800;
      font-size: 1.2rem;
    }

    /* FAQ */
    .faq-section { background: var(--gray); }

    .faq-layout {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 74px;
      align-items: start;
    }

    .faq-heading { position: sticky; top: 175px; }

    .faq-list { border-top: 1px solid var(--line); }

    .faq-item { border-bottom: 1px solid var(--line); }

    .faq-item summary {
      min-height: 88px;
      display: flex;
      align-items: center;
      position: relative;
      padding: 25px 52px 25px 0;
      cursor: pointer;
      list-style: none;
      font-size: 1.04rem;
      line-height: 1.45;
      font-weight: 750;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::before,
    .faq-item summary::after {
      content: "";
      position: absolute;
      right: 6px;
      top: 50%;
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      transition: transform .25s var(--ease);
    }

    .faq-item summary::after { transform: rotate(90deg); }
    .faq-item[open] summary::after { transform: rotate(0); }

    .faq-item p {
      max-width: 760px;
      margin: -4px 0 28px;
      padding-right: 50px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.75;
    }

    /* Final CTA */
    .final-cta-section {
      padding: 82px 0 96px;
      background: var(--white);
    }

    .final-cta {
      min-height: 570px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 40px;
      position: relative;
      overflow: hidden;
      padding: 62px;
      border-radius: 44px;
      background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .86), transparent 26%),
        linear-gradient(140deg, var(--mint), var(--lavender) 54%, var(--peach));
      box-shadow: var(--shadow-lg);
    }

    .final-cta h2 {
      max-width: 800px;
      margin: 0;
      font-size: clamp(3.2rem, 5.8vw, 6.1rem);
      line-height: .94;
      letter-spacing: -.07em;
    }

    .final-cta p:not(.eyebrow) {
      max-width: 660px;
      margin: 26px 0 0;
      color: rgba(32, 33, 36, .72);
      line-height: 1.7;
    }

    .final-cta__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .final-visual {
      min-height: 390px;
      position: relative;
    }

    .launch-circle {
      position: absolute;
      inset: 8% 5% 5%;
      border: 1px solid rgba(32, 33, 36, .16);
      border-radius: 50%;
    }

    .launch-circle::after {
      content: "";
      position: absolute;
      inset: 22%;
      border: 1px dashed rgba(32, 33, 36, .18);
      border-radius: 50%;
      animation: spinOrbit 20s linear infinite;
    }

    .launch-rocket {
      position: absolute;
      left: 50%;
      top: 48%;
      width: 110px;
      transform: translate(-50%, -50%) rotate(18deg);
      filter: drop-shadow(0 22px 24px rgba(32, 33, 36, .16));
      animation: rocketHover 5s ease-in-out infinite;
    }

    .rocket-svg { width: 100%; }

    .launch-chip {
      position: absolute;
      min-width: 132px;
      padding: 12px 14px;
      border-radius: 15px;
      background: rgba(255, 255, 255, .76);
      border: 1px solid rgba(255, 255, 255, .88);
      box-shadow: 0 15px 36px rgba(32, 33, 36, .1);
      font-size: .69rem;
      font-weight: 800;
    }

    .launch-chip--one { left: 2%; top: 18%; }
    .launch-chip--two { right: 1%; top: 32%; }
    .launch-chip--three { left: 14%; bottom: 8%; }

    @keyframes spinOrbit { to { transform: rotate(360deg); } }
    @keyframes rocketHover {
      0%, 100% { transform: translate(-50%, -50%) rotate(18deg) translateY(0); }
      50% { transform: translate(-50%, -50%) rotate(21deg) translateY(-10px); }
    }

    /* Footer */
    .site-footer { padding: 88px 0 34px; background: var(--gray); }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(5, 1fr);
      gap: 32px;
    }

    .footer-brand { max-width: 270px; }
    .footer-brand strong { font-size: 1.15rem; letter-spacing: .05em; }
    .footer-brand p { margin: 17px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }

    .footer-col h4 {
      margin: 0 0 15px;
      font-size: .67rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .footer-col a {
      display: block;
      padding: 7px 0;
      color: var(--muted);
      font-size: .8rem;
    }

    .footer-col a:hover { color: var(--ink); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      margin-top: 58px;
      padding-top: 23px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: .76rem;
    }

    .mobile-sticky-cta { display: none; }

    /* Reveal */
    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 1180px) {
      :root { --page: min(100% - 32px, 1060px); }
      .desktop-nav { gap: 18px; }
      .desktop-nav > a, .nav-drop__trigger { font-size: .78rem; }
      .hero-grid, .outcome-layout, .trust-panel { grid-template-columns: 1fr; }
      .hero-grid { gap: 24px; }
      .hero-art { min-height: 610px; }
      .outcome-sticky { position: relative; top: auto; }
      .process-rail { grid-template-columns: repeat(3, 1fr); }
      .included-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
    }

    @media (max-width: 900px) {
      :root { --header-height: 90px; }
      .site-header { padding: 12px 0; }
      .nav { min-height: 64px; grid-template-columns: auto auto; justify-content: space-between; padding: 7px 8px 7px 18px; }
      .desktop-nav, .nav-cta { display: none; }
      .menu-toggle { display: grid; }
      .hero { min-height: auto; padding-top: 126px; }
      .hero-title { font-size: clamp(4rem, 13vw, 6.6rem); }
      .pain-heading, .faq-layout, .pricing-card, .final-cta { grid-template-columns: 1fr; }
      .pain-heading { gap: 25px; }
      .pain-heading .section-copy { margin: 0; }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .pain-card:last-child { grid-column: 1 / -1; }
      .comparison-grid, .fit-grid { grid-template-columns: 1fr; }
      .process-rail { grid-template-columns: repeat(2, 1fr); }
      .use-case-grid { grid-template-columns: 1fr 1fr; }
      .faq-heading { position: relative; top: auto; }
      .pricing-side { min-height: 420px; }
      .final-cta { padding: 48px; }
      .final-visual { min-height: 320px; }
      .page-nav-wrap { top: 84px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 680px) {
      :root { --page: calc(100vw - 24px); }
      .section { padding: 88px 0; }
      .section--compact { padding: 68px 0; }
      .section-title { font-size: clamp(2.75rem, 12vw, 4.5rem); }
      .hero { padding-top: 116px; padding-bottom: 66px; }
      .hero-title { font-size: clamp(3.55rem, 17vw, 5.25rem); }
      .hero-question { font-size: 1.2rem; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions .btn { width: 100%; }
      .hero-art { min-height: 500px; }
      .store-browser { width: 90%; right: -2%; top: 15%; }
      .store-browser__body { min-height: 290px; padding: 24px; grid-template-columns: 1fr 1fr; }
      .store-browser__copy strong { font-size: 1.75rem; }
      .product-mock { min-height: 205px; }
      .product-shirt { width: 96px; height: 112px; }
      .product-shirt::before, .product-shirt::after { width: 42px; height: 53px; }
      .product-shirt::before { left: -25px; }
      .product-shirt::after { right: -25px; }
      .product-shirt__mark { top: 40px; font-size: .54rem; }
      .store-phone { width: 38%; left: 1%; bottom: 5%; }
      .store-phone__screen { min-height: 230px; padding: 18px 12px; }
      .phone-product { height: 88px; }
      .float-status { min-width: 154px; grid-template-columns: 31px 1fr; padding: 10px 12px; }
      .status-check { width: 31px; height: 31px; }
      .float-status--one { left: -2%; top: 7%; }
      .float-status--two { right: -2%; bottom: 1%; }
      .proof-panel { grid-template-columns: 1fr; }
      .proof-item { border-left: 0; border-top: 1px solid var(--line); }
      .page-nav-wrap { top: 80px; }
      .page-nav { gap: 18px; }
      .page-nav .page-nav__cta { margin-left: 0; }
      .pain-grid, .use-case-grid, .included-grid { grid-template-columns: 1fr; }
      .pain-card:last-child { grid-column: auto; }
      .pain-card { min-height: 320px; }
      .pain-closing { font-size: clamp(2.35rem, 11vw, 3.8rem); }
      .outcome-item { grid-template-columns: 45px 1fr; gap: 14px; }
      .outcome-icon { width: 40px; height: 40px; }
      .comparison-card, .fit-card { padding: 28px; border-radius: 28px; }
      .process-rail { grid-template-columns: 1fr; }
      .process-card { min-height: 230px; }
      .pricing-main, .pricing-side { padding: 38px 28px; }
      .price-line { align-items: flex-start; flex-direction: column; gap: 8px; }
      .price-start { padding-bottom: 0; }
      .price-value { font-size: clamp(4rem, 18vw, 6rem); }
      .trust-panel { padding: 34px 24px; border-radius: 30px; }
      .trust-points { grid-template-columns: 1fr; }
      .faq-layout { gap: 42px; }
      .faq-item p { padding-right: 12px; }
      .final-cta { padding: 38px 24px 22px; border-radius: 30px; }
      .final-cta h2 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
      .final-cta__actions { display: grid; grid-template-columns: 1fr; }
      .final-cta__actions .btn { width: 100%; }
      .final-visual { min-height: 300px; }
      .launch-rocket { width: 88px; }
      .launch-chip { min-width: 110px; font-size: .58rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
      .footer-bottom { flex-direction: column; }
      .mobile-sticky-cta {
        position: fixed;
        z-index: 80;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        display: block;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .88);
        border-radius: 999px;
        background: rgba(255, 255, 255, .88);
        box-shadow: 0 18px 45px rgba(32, 33, 36, .17);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        transform: translateY(120%);
        transition: transform .35s var(--ease);
      }
      .mobile-sticky-cta.is-visible { transform: translateY(0); }
      .mobile-sticky-cta .btn { width: 100%; min-height: 50px; }
      .site-footer { padding-bottom: 110px; }
    }

    @media (max-width: 420px) {
      .hero-art { min-height: 450px; }
      .store-browser__body { padding: 19px; gap: 8px; }
      .store-browser__copy strong { font-size: 1.45rem; }
      .store-phone { width: 41%; }
      .float-status { min-width: 140px; }
      .float-status strong { font-size: .68rem; }
      .float-status small { font-size: .55rem; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      [data-reveal] { opacity: 1; transform: none; }
    }

    @media print {
      .site-header, .page-nav-wrap, .mobile-sticky-cta, .mobile-menu { display: none !important; }
      .hero { min-height: auto; padding-top: 40px; }
      [data-reveal] { opacity: 1; transform: none; }
    }
  

    /* Connected primary and secondary navigation */
    :root { --page-nav-top: 96px; }

    .page-nav-wrap {
      top: var(--page-nav-top);
      z-index: 90;
      padding: 6px 0 12px;
      background: transparent;
      border: 0;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      transition: opacity .25s ease, transform .3s var(--ease);
    }

    .page-nav-shell {
      position: relative;
      min-height: 52px;
      display: flex;
      align-items: center;
      padding: 6px 8px 6px 18px;
      border: 1px solid rgba(32, 33, 36, .09);
      border-radius: 999px;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 12px 32px rgba(32, 33, 36, .065);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      transform: translateY(0) scale(.995);
      transform-origin: top center;
      transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, border-color .3s ease;
    }

    .page-nav-wrap.is-stuck .page-nav-shell {
      background: rgba(255, 255, 255, .96);
      border-color: rgba(32, 33, 36, .12);
      box-shadow: 0 18px 42px rgba(32, 33, 36, .09);
      transform: translateY(-2px) scale(1);
    }

    .page-nav-wrap.is-stuck .page-nav-shell::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -9px;
      width: 42px;
      height: 9px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.96));
      clip-path: polygon(28% 100%, 42% 0, 58% 0, 72% 100%);
      pointer-events: none;
    }

    .page-nav-toggle { display: none; }

    .page-nav {
      width: 100%;
      gap: 7px;
      overflow: visible;
    }

    .page-nav a {
      position: relative;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--muted);
      font-size: .7rem;
      transition: color .22s ease, background .22s ease, transform .22s ease;
    }

    .page-nav a:hover,
    .page-nav a[aria-current="location"] {
      color: var(--ink);
      background: var(--gray);
      transform: translateY(-1px);
    }

    .page-nav a[aria-current="location"]::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 3px;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--lime);
      transform: translateX(-50%);
    }

    .page-nav .page-nav__cta {
      min-height: 40px;
      margin-left: auto;
      padding-inline: 18px;
      color: var(--ink);
      background: var(--lime);
      box-shadow: 0 8px 20px rgba(194, 255, 2, .20);
    }

    .page-nav .page-nav__cta:hover { background: #b8f000; }

    body.menu-open .page-nav-wrap {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
    }

    /* Compact official trust bar */
    .trust-badge-section {
      padding: 28px 0 24px;
      background:
        radial-gradient(circle at 8% 20%, rgba(217,214,253,.30), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(153,254,237,.24), transparent 24%),
        linear-gradient(180deg, #fbfbf8 0%, #fff 100%);
    }

    .trust-badge-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .official-trust-badge {
      min-width: 0;
      min-height: 92px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 17px;
      overflow: hidden;
      border: 1px solid rgba(32,33,36,.08);
      border-radius: 20px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 12px 30px rgba(32,33,36,.045);
      transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
    }

    a.official-trust-badge:hover {
      transform: translateY(-3px);
      border-color: rgba(32,33,36,.14);
      box-shadow: 0 18px 38px rgba(32,33,36,.075);
    }

    .official-trust-logo {
      width: 112px;
      min-width: 112px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .official-trust-logo--shopify {
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }

    .official-trust-logo--shopify img {
      width: 112px;
      height: 32px;
      object-fit: contain;
      object-position: left center;
    }

    .official-trust-logo--shopify > span {
      padding-left: 29px;
      color: var(--ink);
      font-size: .59rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .official-trust-logo--trustpilot {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    .trustpilot-wordmark {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .trustpilot-wordmark svg { width: 22px; height: 22px; }
    .trustpilot-wordmark strong { font-size: .95rem; }

    .trustpilot-stars { display: flex; gap: 3px; }
    .trustpilot-stars span {
      width: 17px;
      height: 17px;
      display: grid;
      place-items: center;
      color: #fff;
      background: #00B67A;
      font-size: .66rem;
      line-height: 1;
    }
    .trustpilot-stars .partial { background: linear-gradient(90deg, #00B67A 60%, #D7D8D5 60%); }

    .official-trust-logo--delivery { width: 58px; min-width: 58px; }
    .official-trust-logo--delivery > span {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: var(--lime);
      box-shadow: 0 0 0 8px rgba(194,255,2,.12);
      font-size: 1.35rem;
      font-weight: 800;
    }

    .official-trust-copy { min-width: 0; }
    .official-trust-copy small,
    .official-trust-copy strong { display: block; }
    .official-trust-copy small {
      margin-bottom: 5px;
      color: var(--muted);
      font-size: .61rem;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .official-trust-copy strong { font-size: .84rem; line-height: 1.3; }

    /* Testimonial */
    .testimonial-section {
      overflow: hidden;
      background:
        radial-gradient(circle at 8% 15%, rgba(153,254,237,.34), transparent 26%),
        radial-gradient(circle at 90% 80%, rgba(217,214,253,.45), transparent 30%),
        var(--white);
    }

    .testimonial-card {
      min-height: 620px;
      display: grid;
      grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
      align-items: stretch;
      overflow: hidden;
      border: 1px solid rgba(32,33,36,.08);
      border-radius: 42px;
      background:
        radial-gradient(circle at 92% 10%, rgba(255,255,255,.94), transparent 24%),
        linear-gradient(145deg, var(--mint), var(--lavender) 58%, var(--peach));
      box-shadow: 0 30px 80px rgba(32,33,36,.10);
    }

    .testimonial-portrait {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      background: #f8f8f6;
    }

    .testimonial-portrait::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 36%;
      background: linear-gradient(180deg, transparent, rgba(32,33,36,.14));
      pointer-events: none;
    }

    .testimonial-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
    }

    .testimonial-photo-accent {
      position: absolute;
      z-index: 2;
      right: 28px;
      top: 28px;
      width: 66px;
      height: 66px;
      border: 1px solid rgba(32,33,36,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 18px rgba(255,255,255,.20);
    }

    .testimonial-content {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 68px 64px;
      color: var(--ink);
    }

    .testimonial-quote-mark {
      position: absolute;
      right: 6%;
      top: -5%;
      color: rgba(255,255,255,.40);
      font-size: clamp(14rem, 24vw, 26rem);
      line-height: 1;
      font-weight: 800;
      pointer-events: none;
    }

    .testimonial-content h2 {
      position: relative;
      z-index: 2;
      margin: 0;
      font-size: clamp(3.2rem, 5.5vw, 6rem);
      line-height: .96;
      letter-spacing: -.065em;
    }

    .testimonial-content blockquote {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 30px 0 0;
      padding: 0;
      border: 0;
      font-size: clamp(1.25rem, 2vw, 1.7rem);
      line-height: 1.55;
      letter-spacing: -.025em;
    }

    .testimonial-author {
      position: relative;
      z-index: 2;
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(32,33,36,.16);
    }

    .testimonial-author strong,
    .testimonial-author span { display: block; }
    .testimonial-author strong { font-size: 1rem; }
    .testimonial-author span { margin-top: 6px; color: rgba(32,33,36,.64); font-size: .76rem; }

    .footer-brand__home { display: inline-block; }

    @media (max-width: 1000px) {
      .trust-badge-grid { grid-template-columns: 1fr; }
      .testimonial-card { grid-template-columns: .86fr 1.14fr; min-height: 540px; }
      .testimonial-portrait { min-height: 540px; }
      .testimonial-content { padding: 50px 42px; }
    }

    @media (max-width: 900px) {
      .page-nav-wrap { top: var(--page-nav-top); padding-top: 4px; }
      .page-nav-shell {
        min-height: 56px;
        display: block;
        padding: 7px;
        border-radius: 22px;
      }
      .page-nav-wrap.is-stuck .page-nav-shell::before { display: none; }
      .page-nav-toggle {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 6px 11px 6px 14px;
        border: 0;
        border-radius: 16px;
        color: var(--ink);
        background: transparent;
        text-align: left;
        cursor: pointer;
      }
      .page-nav-toggle span { min-width: 0; }
      .page-nav-toggle small,
      .page-nav-toggle strong { display: block; }
      .page-nav-toggle small {
        color: var(--muted);
        font-size: .55rem;
        font-weight: 800;
        letter-spacing: .11em;
        text-transform: uppercase;
      }
      .page-nav-toggle strong {
        max-width: 70vw;
        margin-top: 3px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .78rem;
      }
      .page-nav-toggle svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .26s var(--ease);
      }
      .page-nav-shell.is-open .page-nav-toggle svg { transform: rotate(180deg); }
      .page-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        display: grid;
        gap: 5px;
        max-height: 0;
        padding: 0 8px;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 22px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 20px 50px rgba(32,33,36,.13);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(.985);
        transform-origin: top center;
        transition: max-height .32s var(--ease), padding .3s var(--ease), opacity .22s ease, visibility .22s ease, transform .3s var(--ease), border-color .3s ease;
      }
      .page-nav-shell.is-open .page-nav {
        max-height: 430px;
        padding: 10px;
        border-color: rgba(32,33,36,.09);
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
      }
      .page-nav a {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding-inline: 14px;
        font-size: .78rem;
      }
      .page-nav .page-nav__cta {
        margin: 4px 0 0;
        justify-content: space-between;
      }
    }

    @media (max-width: 760px) {
      .trust-badge-section { padding: 22px 0 18px; }
      .trust-badge-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .trust-badge-grid::-webkit-scrollbar { display: none; }
      .official-trust-badge {
        min-width: min(84vw, 340px);
        scroll-snap-align: start;
      }
      .testimonial-card {
        min-height: auto;
        grid-template-columns: 1fr;
        border-radius: 30px;
      }
      .testimonial-portrait { min-height: 380px; }
      .testimonial-portrait img { object-position: center 15%; }
      .testimonial-content { padding: 42px 26px 46px; }
      .testimonial-content h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
      .testimonial-content blockquote { margin-top: 22px; font-size: 1.12rem; }
      .testimonial-quote-mark { right: 1%; top: -7%; font-size: 17rem; }
    }

    @media (max-width: 480px) {
      .official-trust-logo { width: 100px; min-width: 100px; }
      .official-trust-logo--shopify img { width: 100px; }
      .official-trust-badge { min-height: 86px; padding: 13px 14px; }
      .testimonial-portrait { min-height: 330px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .page-nav-wrap,
      .page-nav-shell,
      .page-nav,
      .page-nav a,
      .page-nav-toggle svg,
      .official-trust-badge { transition: none !important; }
    }

/* ==========================================================================
   company-store-hero-refinement
   ========================================================================== */
/* Above the fold sales composition */
  .site-header,
  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header .nav {
    position: relative;
    transition:
      min-height .25s var(--ease),
      padding .25s var(--ease),
      border-radius .28s var(--ease),
      border-color .25s ease,
      background .25s ease,
      box-shadow .25s ease;
  }

  .hero {
    position: relative;
    min-height: 690px;
    padding: 118px 0 132px;
    overflow: hidden;
    background:
      radial-gradient(circle at 87% 10%, rgba(217,214,253,.58), transparent 27%),
      radial-gradient(circle at 73% 72%, rgba(153,254,237,.42), transparent 31%),
      radial-gradient(circle at 8% 91%, rgba(255,189,155,.30), transparent 25%),
      linear-gradient(180deg, #fff 0%, #fbfbf8 78%, #f7fbfa 100%);
  }

  .hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.72) 76%, #fff 100%);
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1.03fr) minmax(520px, .97fr);
    gap: 38px;
  }

  .hero-content { align-self: center; }
  .breadcrumb { margin-bottom: 16px; }
  .hero-content > .eyebrow { margin-bottom: 14px; }

  .hero-title {
    max-width: 760px;
    font-size: clamp(3.8rem, 5.25vw, 6.35rem);
    line-height: .91;
  }

  .hero-question { margin-top: 20px; }
  .hero-copy { margin-top: 13px; line-height: 1.62; }
  .hero-actions { margin-top: 25px; }
  .hero-meta { margin-top: 19px; }

  .hero-art {
    min-height: 500px;
    margin-top: 4px;
  }

  .hero-art::before { inset: 2% 2% 4% 2%; }
  .hero-orbit { inset: 9% 7% 11% 2%; }

  .store-browser {
    width: 70%;
    left: 4%;
    right: auto;
    top: 12%;
  }

  .store-phone {
    left: 2%;
    bottom: 3%;
  }

  .float-status--one { left: -1%; top: 3%; }
  .float-status--two { right: 23%; bottom: 0; }

  /* Trust proof now lives inside the cover, beside the commerce visual. */
  .hero-trust-grid {
    position: absolute;
    z-index: 10;
    top: 5%;
    right: 0;
    width: 218px;
    display: grid;
    gap: 9px;
  }

  .hero-trust-grid .official-trust-badge {
    min-height: 74px;
    gap: 9px;
    padding: 10px 11px;
    border-color: rgba(255,255,255,.94);
    border-radius: 17px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 16px 38px rgba(32,33,36,.09);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
  }

  .hero-trust-grid .official-trust-logo {
    width: 76px;
    min-width: 76px;
    height: 43px;
  }

  .hero-trust-grid .official-trust-logo--shopify img {
    width: 76px;
    height: 25px;
  }

  .hero-trust-grid .official-trust-logo--shopify > span {
    padding-left: 20px;
    font-size: .46rem;
  }

  .hero-trust-grid .trustpilot-wordmark { gap: 4px; }
  .hero-trust-grid .trustpilot-wordmark svg { width: 17px; height: 17px; }
  .hero-trust-grid .trustpilot-wordmark strong { font-size: .72rem; }
  .hero-trust-grid .trustpilot-stars { gap: 2px; }
  .hero-trust-grid .trustpilot-stars span { width: 13px; height: 13px; font-size: .5rem; }

  .hero-trust-grid .official-trust-logo--delivery {
    width: 46px;
    min-width: 46px;
  }

  .hero-trust-grid .official-trust-logo--delivery > span {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 6px rgba(194,255,2,.12);
    font-size: 1.05rem;
  }

  .hero-trust-grid .official-trust-copy small {
    margin-bottom: 3px;
    font-size: .48rem;
    letter-spacing: .07em;
  }

  .hero-trust-grid .official-trust-copy strong {
    font-size: .66rem;
    line-height: 1.22;
  }

  /* The offer summary crosses the hero boundary by roughly half its height. */
  .proof-strip {
    position: relative;
    z-index: 20;
    margin-top: -72px;
    padding: 0 0 42px;
    background: linear-gradient(180deg, transparent 0 72px, #fff 72px 100%);
  }

  .proof-panel {
    min-height: 140px;
    border-color: rgba(255,255,255,.94);
    box-shadow: 0 26px 66px rgba(32,33,36,.10);
  }

  .proof-intro,
  .proof-item { display: flex; flex-direction: column; justify-content: center; }

  /* Seamless primary + secondary navigation when the page nav becomes sticky. */
  .page-nav-wrap {
    z-index: 99;
    padding: 0;
  }

  .page-nav-wrap.is-stuck .page-nav-shell::before { display: none; }

  .site-header.is-nav-connected {
    padding-bottom: 0;
  }

  .site-header.is-nav-connected .nav {
    border-bottom-color: transparent;
    border-radius: 28px 28px 0 0;
    background: rgba(255,255,255,.95);
    box-shadow: 0 -7px 24px rgba(32,33,36,.04);
  }

  .page-nav-wrap.is-stuck .page-nav-shell {
    margin-top: -1px;
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 38px rgba(32,33,36,.075);
    transform: none;
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .hero-trust-grid .official-trust-badge,
    .site-header.is-nav-connected .nav,
    .page-nav-wrap.is-stuck .page-nav-shell { background: rgba(255,255,255,.98); }
  }

  @media (max-width: 1180px) {
    .hero {
      min-height: auto;
      padding-top: 118px;
      padding-bottom: 126px;
    }

    .hero-grid { gap: 8px; }
    .hero-content { max-width: 840px; }
    .hero-title { max-width: 820px; }
    .hero-art { width: min(100%, 780px); min-height: 535px; margin-inline: auto; }
    .hero-trust-grid { right: 1%; }
  }

  @media (max-width: 900px) {
    .hero { padding-top: 106px; }
    .hero-title { font-size: clamp(3.65rem, 12vw, 5.8rem); }
    .hero-art { min-height: 610px; }

    .store-browser {
      width: 72%;
      left: 10%;
      top: 7%;
    }

    .store-phone { left: 5%; bottom: 20%; }
    .float-status--one { left: 2%; top: 1%; }
    .float-status--two { right: 14%; bottom: 18%; }

    .hero-trust-grid {
      top: auto;
      right: 0;
      bottom: 0;
      width: 100%;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-trust-grid .official-trust-badge {
      min-height: 92px;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      padding: 9px 7px;
      text-align: center;
    }

    .hero-trust-grid .official-trust-logo { margin-inline: auto; }
    .hero-trust-grid .official-trust-logo--shopify { align-items: center; }
    .hero-trust-grid .official-trust-logo--shopify > span { padding-left: 0; }
    .hero-trust-grid .official-trust-logo--trustpilot { align-items: center; }
    .hero-trust-grid .official-trust-copy small { display: none; }
    .hero-trust-grid .official-trust-copy strong { font-size: .62rem; }

    .page-nav-wrap.is-stuck .page-nav-shell,
    .site-header.is-nav-connected .nav {
      border-radius: 23px 23px 0 0;
    }

    .page-nav-wrap.is-stuck .page-nav-shell { border-radius: 0 0 23px 23px; }
  }

  @media (max-width: 680px) {
    .hero {
      padding-top: 104px;
      padding-bottom: 104px;
    }

    .hero-title {
      font-size: clamp(3.25rem, 15.3vw, 4.9rem);
      line-height: .92;
    }

    .hero-art { min-height: 585px; }
    .store-browser { width: 88%; left: 8%; top: 8%; }
    .store-phone { bottom: 20%; }
    .float-status--one { top: 2%; }
    .float-status--two { right: 1%; bottom: 19%; }

    .hero-trust-grid .official-trust-badge { min-height: 98px; }
    .hero-trust-grid .official-trust-logo { width: 70px; min-width: 70px; }
    .hero-trust-grid .official-trust-logo--shopify img { width: 70px; }
    .hero-trust-grid .official-trust-copy strong { font-size: .58rem; }

    .proof-strip {
      margin-top: -46px;
      padding-bottom: 34px;
      background: linear-gradient(180deg, transparent 0 46px, #fff 46px 100%);
    }

    .proof-panel {
      min-height: 0;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-radius: 24px;
    }

    .proof-intro {
      grid-column: 1 / -1;
      padding: 21px 22px;
    }

    .proof-intro strong { max-width: 520px; font-size: 1.05rem; }
    .proof-item { padding: 17px 16px; border-top: 1px solid var(--line); }
    .proof-item:nth-child(2) { border-left: 0; }
    .proof-item:nth-child(4) { grid-column: 1 / -1; border-left: 0; }

    .page-nav-wrap { padding: 0; }
  }

  @media (max-width: 420px) {
    .hero-art { min-height: 555px; }
    .hero-trust-grid { gap: 6px; }
    .hero-trust-grid .official-trust-badge { min-height: 94px; padding-inline: 5px; }
    .hero-trust-grid .official-trust-logo { width: 62px; min-width: 62px; }
    .hero-trust-grid .official-trust-logo--shopify img { width: 62px; }
    .hero-trust-grid .trustpilot-wordmark strong { font-size: .64rem; }
    .hero-trust-grid .trustpilot-stars span { width: 11px; height: 11px; }
    .hero-trust-grid .official-trust-copy strong { font-size: .53rem; }
  }

/* ==========================================================================
   company-store-ux-content-audit
   ========================================================================== */
/* UX and conversion refinement: clearer hierarchy, less hero clutter. */
  .hero {
    min-height: 760px;
    padding: 112px 0 118px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: 54px;
    align-items: center;
  }

  .hero-content {
    max-width: 660px;
    align-self: center;
  }

  .breadcrumb {
    margin-bottom: 14px;
    opacity: .88;
  }

  .hero-content > .eyebrow {
    max-width: 610px;
    margin-bottom: 16px;
  }

  .hero-title {
    max-width: 700px;
    font-size: clamp(3.65rem, 5.15vw, 6.15rem);
    line-height: .92;
    letter-spacing: -.07em;
  }

  .hero-copy {
    max-width: 610px;
    margin-top: 24px;
    color: rgba(32,33,36,.68);
    font-size: clamp(1rem, 1.22vw, 1.13rem);
    line-height: 1.65;
  }

  .hero-actions { margin-top: 28px; }
  .hero-meta { margin-top: 18px; }

  .hero-art {
    min-height: 470px;
    margin-top: 0;
  }

  .hero-art::before { inset: 1% 0 3% 2%; }
  .hero-orbit { inset: 10% 5% 11% 2%; }

  .store-browser {
    width: 84%;
    left: 12%;
    right: auto;
    top: 10%;
  }

  .store-phone {
    width: 29%;
    left: 1%;
    bottom: 5%;
  }

  .float-status--one {
    left: 0;
    top: 3%;
  }

  .hero-trust-rail {
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.075);
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 48px rgba(32,33,36,.065);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .hero-trust-rail .official-trust-badge {
    min-height: 76px;
    justify-content: center;
    gap: 12px;
    padding: 12px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-trust-rail .official-trust-badge + .official-trust-badge {
    border-left: 1px solid rgba(32,33,36,.08);
  }

  .hero-trust-rail .official-trust-logo {
    width: 92px;
    min-width: 92px;
    height: 44px;
  }

  .hero-trust-rail .official-trust-logo--shopify img {
    width: 90px;
    height: 28px;
  }

  .hero-trust-rail .official-trust-logo--shopify > span {
    padding-left: 23px;
    font-size: .48rem;
  }

  .hero-trust-rail .trustpilot-wordmark svg {
    width: 18px;
    height: 18px;
  }

  .hero-trust-rail .trustpilot-wordmark strong { font-size: .76rem; }
  .hero-trust-rail .trustpilot-stars span {
    width: 14px;
    height: 14px;
    font-size: .52rem;
  }

  .hero-trust-rail .official-trust-logo--delivery {
    width: 46px;
    min-width: 46px;
  }

  .hero-trust-rail .official-trust-logo--delivery > span {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    box-shadow: 0 0 0 6px rgba(194,255,2,.11);
  }

  .hero-trust-rail .official-trust-copy strong {
    font-size: .72rem;
    line-height: 1.25;
  }

  .proof-strip {
    margin-top: -58px;
    padding-bottom: 46px;
    background: linear-gradient(180deg, transparent 0 58px, #fff 58px 100%);
  }

  .proof-panel {
    min-height: 116px;
    grid-template-columns: 1.35fr .82fr .83fr;
    border-radius: 28px;
    box-shadow: 0 22px 56px rgba(32,33,36,.085);
  }

  .proof-intro,
  .proof-item {
    min-width: 0;
    padding: 25px 28px;
  }

  .proof-intro strong {
    max-width: 480px;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.36;
  }

  .proof-item strong {
    font-size: .84rem;
    line-height: 1.42;
  }

  .trust-panel > div:first-child > p:not(.eyebrow) {
    max-width: 660px;
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .hero-trust-rail { background: rgba(255,255,255,.97); }
  }

  @media (max-width: 1180px) {
    .hero {
      min-height: auto;
      padding-top: 118px;
      padding-bottom: 106px;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .hero-content { max-width: 820px; }
    .hero-title { max-width: 780px; }
    .hero-art {
      width: min(100%, 780px);
      min-height: 500px;
      margin-inline: auto;
    }
  }

  @media (max-width: 760px) {
    .hero {
      padding-top: 104px;
      padding-bottom: 90px;
    }

    .hero-grid { gap: 24px; }

    .breadcrumb {
      margin-bottom: 12px;
      font-size: .64rem;
    }

    .hero-content > .eyebrow {
      margin-bottom: 13px;
      font-size: .67rem;
      line-height: 1.45;
    }

    .hero-title {
      max-width: 590px;
      font-size: clamp(3.15rem, 14.3vw, 4.85rem);
      line-height: .94;
    }

    .hero-copy {
      margin-top: 19px;
      font-size: .98rem;
      line-height: 1.62;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 23px;
    }

    .hero-actions .btn { width: 100%; }
    .hero-meta { margin-top: 14px; }

    .hero-art {
      min-height: 410px;
      margin-top: 0;
    }

    .store-browser {
      width: 88%;
      left: 9%;
      top: 11%;
    }

    .store-phone {
      width: 31%;
      left: 0;
      bottom: 4%;
    }

    .float-status--one {
      left: -1%;
      top: 2%;
      min-width: 150px;
    }

    .hero-trust-rail {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 12px;
      border-radius: 20px;
    }

    .hero-trust-rail .official-trust-badge {
      min-height: 78px;
      flex-direction: column;
      gap: 4px;
      padding: 8px 5px;
      text-align: center;
    }

    .hero-trust-rail .official-trust-logo {
      width: 70px;
      min-width: 70px;
      height: 39px;
      margin-inline: auto;
    }

    .hero-trust-rail .official-trust-logo--shopify {
      align-items: center;
    }

    .hero-trust-rail .official-trust-logo--shopify img {
      width: 70px;
      height: 23px;
    }

    .hero-trust-rail .official-trust-logo--shopify > span {
      padding-left: 0;
      font-size: .4rem;
    }

    .hero-trust-rail .official-trust-logo--trustpilot {
      align-items: center;
    }

    .hero-trust-rail .trustpilot-wordmark strong { font-size: .64rem; }
    .hero-trust-rail .trustpilot-wordmark svg { width: 15px; height: 15px; }
    .hero-trust-rail .trustpilot-stars span {
      width: 12px;
      height: 12px;
      font-size: .44rem;
    }

    .hero-trust-rail .official-trust-logo--delivery {
      width: 38px;
      min-width: 38px;
    }

    .hero-trust-rail .official-trust-logo--delivery > span {
      width: 34px;
      height: 34px;
      font-size: .9rem;
      box-shadow: 0 0 0 4px rgba(194,255,2,.11);
    }

    .hero-trust-rail .official-trust-copy strong {
      font-size: .55rem;
      white-space: nowrap;
    }

    .proof-strip {
      margin-top: -42px;
      padding-bottom: 34px;
      background: linear-gradient(180deg, transparent 0 42px, #fff 42px 100%);
    }

    .proof-panel {
      min-height: 0;
      grid-template-columns: 1fr 1fr;
      border-radius: 22px;
    }

    .proof-intro {
      grid-column: 1 / -1;
      padding: 22px;
    }

    .proof-item {
      padding: 20px;
      border-top: 1px solid rgba(32,33,36,.08);
    }

    .proof-item + .proof-item {
      border-left: 1px solid rgba(32,33,36,.08);
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: clamp(2.95rem, 14.8vw, 4.15rem);
    }

    .hero-art { min-height: 370px; }
    .store-browser { width: 91%; left: 7%; }
    .store-phone { width: 34%; }

    .float-status--one {
      min-width: 138px;
      padding: 9px 10px;
    }

    .hero-trust-rail .official-trust-copy strong {
      font-size: .5rem;
    }

    .proof-intro strong {
      font-size: 1rem;
    }

    .proof-item {
      padding: 18px 15px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-trust-rail .official-trust-badge { transition: none !important; }
  }

/* ==========================================================================
   company-store-final-nav-testimonial-refinement
   ========================================================================== */
/* One polished navigation system: transparent page header, connected sticky dock. */
  .site-header,
  .site-header.is-scrolled {
    padding: 14px 0;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .site-header .nav {
    min-height: 68px;
    padding: 7px 9px 7px 21px;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 14px 42px rgba(32,33,36,.075);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
    transition:
      min-height .28s var(--ease),
      padding .28s var(--ease),
      border-radius .28s var(--ease),
      border-color .22s ease,
      background .22s ease,
      box-shadow .22s ease;
  }

  .site-header.is-scrolled:not(.is-nav-connected) .nav {
    min-height: 62px;
    background: rgba(255,255,255,.94);
    border-color: rgba(32,33,36,.075);
    box-shadow: 0 14px 38px rgba(32,33,36,.085);
  }

  .page-nav-wrap {
    z-index: 99;
    padding: 7px 0 12px;
    background: transparent !important;
    border: 0 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .page-nav-shell {
    min-height: 52px;
    padding: 6px 8px 6px 17px;
    border: 1px solid rgba(32,33,36,.085);
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 12px 32px rgba(32,33,36,.06);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
    backdrop-filter: blur(18px) saturate(1.05);
  }

  .site-header.is-nav-connected {
    padding-bottom: 0;
  }

  .site-header.is-nav-connected .nav {
    min-height: 60px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-color: rgba(32,33,36,.085);
    border-bottom-color: transparent;
    border-radius: 24px 24px 0 0;
    background: rgba(255,255,255,.97);
    box-shadow: none;
  }

  .page-nav-wrap.is-stuck {
    padding-top: 0;
  }

  .page-nav-wrap.is-stuck .page-nav-shell {
    position: relative;
    margin-top: -2px;
    border-color: rgba(32,33,36,.085);
    border-top-color: transparent;
    border-radius: 0 0 24px 24px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 20px 48px rgba(32,33,36,.105);
    transform: none;
  }

  .page-nav-wrap.is-stuck .page-nav-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -1px;
    right: -1px;
    top: -5px;
    height: 7px;
    background: rgba(255,255,255,.97);
    pointer-events: none;
  }

  .page-nav-wrap.is-stuck .page-nav,
  .page-nav-wrap.is-stuck .page-nav-toggle {
    position: relative;
    z-index: 1;
  }

  .page-nav a {
    min-height: 36px;
    padding-inline: 12px;
  }

  .page-nav .page-nav__cta {
    min-height: 40px;
    padding-inline: 18px;
  }

  /* Clean two-line mobile menu icon. */
  .menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 15px;
    background:
      radial-gradient(circle at 78% 16%, rgba(194,255,2,.48), transparent 34%),
      linear-gradient(145deg, rgba(153,254,237,.58), rgba(217,214,253,.62));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.74);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(32,33,36,.10), inset 0 1px 0 rgba(255,255,255,.82);
  }

  .menu-toggle__icon {
    position: relative;
    width: 21px;
    height: 15px;
    display: block;
  }

  .menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition: top .25s var(--ease), transform .25s var(--ease), width .25s var(--ease);
  }

  .menu-toggle__icon span:first-child { top: 3px; }
  .menu-toggle__icon span:last-child { top: 10px; width: 15px; left: 6px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
    top: 6.5px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
    top: 6.5px;
    left: 0;
    width: 21px;
    transform: rotate(-45deg);
  }

  /* Compact, professional testimonial proof. */
  .testimonial-section {
    padding: 78px 0;
    background:
      radial-gradient(circle at 10% 15%, rgba(217,214,253,.30), transparent 26%),
      radial-gradient(circle at 92% 78%, rgba(153,254,237,.24), transparent 26%),
      linear-gradient(180deg, #fbfbf8 0%, #fff 100%);
  }

  .testimonial-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.075);
    border-radius: 32px;
    color: var(--ink);
    background: rgba(255,255,255,.92);
    box-shadow: 0 24px 64px rgba(32,33,36,.085);
  }

  .testimonial-portrait {
    min-height: 300px;
    position: relative;
    padding: 13px;
    overflow: hidden;
    background: linear-gradient(155deg, var(--lavender), rgba(153,254,237,.74));
  }

  .testimonial-portrait::after,
  .testimonial-quote-mark {
    display: none !important;
  }

  .testimonial-portrait img {
    width: 100%;
    height: 100%;
    min-height: 274px;
    object-fit: cover;
    object-position: center 14%;
    border-radius: 23px;
    filter: none;
  }

  .testimonial-photo-accent {
    width: 15px;
    height: 15px;
    right: 25px;
    bottom: 25px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 8px 18px rgba(32,33,36,.15);
  }

  .testimonial-content {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 50px;
    background:
      radial-gradient(circle at 94% 10%, rgba(194,255,2,.16), transparent 23%),
      #fff;
  }

  .testimonial-content .eyebrow {
    margin-bottom: 13px;
  }

  .testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #00B67A;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: .01em;
  }

  .testimonial-content h2 {
    max-width: 650px;
    margin: 14px 0 0;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.052em;
  }

  .testimonial-content blockquote {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(32,33,36,.76);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.62;
    letter-spacing: -.012em;
  }

  .testimonial-author {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(32,33,36,.10);
  }

  .testimonial-author strong {
    font-size: .96rem;
  }

  .testimonial-author span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .035em;
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-header .nav,
    .page-nav-shell,
    .site-header.is-nav-connected .nav,
    .page-nav-wrap.is-stuck .page-nav-shell,
    .page-nav-wrap.is-stuck .page-nav-shell::before {
      background: #fff;
    }
  }

  @media (max-width: 900px) {
    .site-header,
    .site-header.is-scrolled { padding: 11px 0; }

    .site-header .nav {
      min-height: 62px;
      padding: 7px 8px 7px 17px;
      border-radius: 22px;
    }

    .site-header.is-nav-connected .nav {
      min-height: 58px;
      border-radius: 22px 22px 0 0;
    }

    .page-nav-wrap {
      padding: 5px 0 10px;
    }

    .page-nav-shell {
      min-height: 54px;
      padding: 6px;
      border-radius: 20px;
    }

    .page-nav-wrap.is-stuck .page-nav-shell {
      margin-top: -2px;
      border-radius: 0 0 22px 22px;
    }

    .page-nav-toggle {
      min-height: 44px;
      padding: 5px 10px 5px 12px;
      border-radius: 15px;
    }

    .page-nav-toggle::before {
      content: "";
      width: 8px;
      height: 8px;
      flex: 0 0 8px;
      margin-right: 2px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 5px rgba(194,255,2,.12);
    }

    .page-nav-toggle > span { margin-right: auto; }

    .mobile-menu {
      padding-top: 86px;
      background: rgba(17,18,20,.30);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .mobile-menu__panel {
      border: 1px solid rgba(255,255,255,.9);
      border-radius: 24px;
      box-shadow: 0 26px 70px rgba(17,18,20,.18);
    }

    .testimonial-section { padding: 64px 0; }

    .testimonial-card {
      grid-template-columns: 180px minmax(0, 1fr);
      border-radius: 28px;
    }

    .testimonial-portrait { min-height: 280px; }
    .testimonial-portrait img { min-height: 254px; }
    .testimonial-content { padding: 36px 34px; }
  }

  @media (max-width: 680px) {
    .menu-toggle {
      width: 44px;
      height: 44px;
      border-radius: 14px;
    }

    .testimonial-section { padding: 52px 0; }

    .testimonial-card {
      grid-template-columns: 104px minmax(0, 1fr);
      border-radius: 24px;
    }

    .testimonial-portrait {
      min-height: 244px;
      padding: 8px;
    }

    .testimonial-portrait img {
      min-height: 228px;
      border-radius: 18px;
      object-position: center 12%;
    }

    .testimonial-photo-accent {
      right: 16px;
      bottom: 16px;
    }

    .testimonial-content {
      padding: 27px 22px;
    }

    .testimonial-content .eyebrow {
      margin-bottom: 10px;
      font-size: .60rem;
    }

    .testimonial-stars {
      gap: 2px;
      font-size: .86rem;
    }

    .testimonial-content h2 {
      margin-top: 11px;
      font-size: clamp(1.45rem, 6.5vw, 2.05rem);
      line-height: 1.02;
    }

    .testimonial-content blockquote {
      margin-top: 14px;
      font-size: .88rem;
      line-height: 1.55;
    }

    .testimonial-author {
      margin-top: 16px;
      padding-top: 14px;
    }

    .testimonial-author strong { font-size: .82rem; }
    .testimonial-author span { font-size: .62rem; }
  }

  @media (max-width: 430px) {
    .testimonial-card {
      grid-template-columns: 1fr;
    }

    .testimonial-portrait {
      min-height: 255px;
      padding: 10px;
    }

    .testimonial-portrait img {
      min-height: 235px;
      max-height: 235px;
    }

    .testimonial-content {
      padding: 28px 23px 30px;
    }

    .testimonial-content h2 {
      font-size: 1.8rem;
    }

    .testimonial-content blockquote {
      font-size: .94rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .menu-toggle,
    .menu-toggle__icon span,
    .site-header .nav,
    .page-nav-shell {
      transition: none !important;
    }
  }

/* ==========================================================================
   process-performance-refinement
   ========================================================================== */
/* Light Swishtag process section. One dark pricing section remains for contrast. */
  .process-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--ink);
    background:
      radial-gradient(circle at 8% 12%, rgba(153,254,237,.34), transparent 27%),
      radial-gradient(circle at 91% 18%, rgba(217,214,253,.48), transparent 29%),
      radial-gradient(circle at 74% 94%, rgba(255,189,155,.24), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f6fbf9 48%, #faf9ff 100%);
  }

  .process-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 4%;
    bottom: 7%;
    width: 128px;
    height: 100px;
    opacity: .32;
    background-image: radial-gradient(circle, rgba(32,33,36,.20) 0 1px, transparent 1.6px);
    background-size: 13px 13px;
    -webkit-mask-image: linear-gradient(180deg, #000, transparent 92%);
    mask-image: linear-gradient(180deg, #000, transparent 92%);
  }

  .process-section .eyebrow { color: var(--muted); }
  .process-section .section-copy { color: var(--muted); }

  .process-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: end;
    gap: 54px;
  }

  .process-heading .section-copy {
    margin: 0 0 7px;
    max-width: 560px;
  }

  .process-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px 18px;
    margin-top: 58px;
    isolation: isolate;
  }

  .process-connectors {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  .process-connector-path {
    fill: none;
    stroke: rgba(32,33,36,.48);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 2 10;
    marker-end: url(#processArrow);
    animation: processDotsForward 1.15s linear infinite;
    animation-play-state: paused;
  }

  .process-connector-path:nth-of-type(2) { animation-delay: -.18s; }
  .process-connector-path:nth-of-type(3) { animation-delay: -.36s; }
  .process-connector-path:nth-of-type(4) { animation-delay: -.54s; }
  .process-connector-path:nth-of-type(5) { animation-delay: -.72s; }
  .process-connectors marker path { fill: var(--ink); }
  .process-section.is-in-view .process-connector-path { animation-play-state: running; }

  @keyframes processDotsForward { to { stroke-dashoffset: -24; } }

  .process-card {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 286px;
    padding: 24px 22px 25px;
    overflow: hidden;
    color: var(--ink);
    border: 1px solid rgba(32,33,36,.09);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 16px 42px rgba(32,33,36,.07), inset 0 1px 0 rgba(255,255,255,.92);
    contain: layout paint;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
  }

  .process-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: var(--process-accent, var(--lime));
  }

  .process-card:nth-of-type(1) { --process-accent: var(--lime); }
  .process-card:nth-of-type(2) { --process-accent: var(--mint); }
  .process-card:nth-of-type(3) { --process-accent: var(--lavender); }
  .process-card:nth-of-type(4) { --process-accent: var(--peach); }
  .process-card:nth-of-type(5) { --process-accent: var(--lime); }
  .process-card:nth-of-type(6) { --process-accent: var(--mint); }

  .process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32,33,36,.16);
    box-shadow: 0 24px 56px rgba(32,33,36,.10), inset 0 1px 0 rgba(255,255,255,.96);
  }

  .process-number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--ink);
    border: 1px solid rgba(32,33,36,.10);
    background: color-mix(in srgb, var(--process-accent, var(--lime)) 58%, white);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
  }

  @supports not (background: color-mix(in srgb, white, black)) {
    .process-number { background: var(--gray); }
    .process-card:nth-of-type(1) .process-number,
    .process-card:nth-of-type(5) .process-number { background: rgba(194,255,2,.54); }
    .process-card:nth-of-type(2) .process-number,
    .process-card:nth-of-type(6) .process-number { background: rgba(153,254,237,.62); }
    .process-card:nth-of-type(3) .process-number { background: rgba(217,214,253,.72); }
    .process-card:nth-of-type(4) .process-number { background: rgba(255,189,155,.64); }
  }

  .process-card h3 {
    margin: auto 0 0;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: -.025em;
  }

  .process-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.62;
  }

  /* Let the browser skip layout and painting for sections far below the fold. */
  @supports (content-visibility: auto) {
    .pain-section,
    .outcome-section,
    .before-after,
    .process-section,
    .use-cases,
    .included-section,
    .fit-section,
    .pricing-section,
    .trust-section,
    .testimonial-section,
    .faq-section,
    .final-cta-section,
    .site-footer {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }
  }

  .process-card,
  .use-case-card,
  .included-card,
  .pain-card,
  .outcome-item,
  .comparison-card,
  .fit-card,
  .faq-item {
    contain: layout paint;
  }

  a, button { touch-action: manipulation; }

  @media (max-width: 1180px) {
    .process-heading { grid-template-columns: 1fr; gap: 22px; }
    .process-heading .section-copy { max-width: 720px; margin: 0; }
    .process-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 22px; }
    .process-card { min-height: 245px; }
  }

  @media (max-width: 900px) {
    .process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 22px; }
    .process-card { min-height: 238px; }
  }

  @media (max-width: 680px) {
    .process-section { padding: 82px 0 88px; }
    .process-section::after { display: none; }
    .process-heading { gap: 18px; }
    .process-heading .section-copy { font-size: .96rem; }
    .process-rail { grid-template-columns: 1fr; gap: 38px; margin-top: 42px; }
    .process-card { min-height: 210px; padding: 23px 22px 24px; border-radius: 22px; }
    .process-card:hover { transform: none; }
    .process-card h3 { font-size: 1.15rem; }
    .process-card p { font-size: .82rem; }
    .process-connector-path { stroke-width: 2; stroke-dasharray: 2 9; }
  }

  @media (hover: none), (pointer: coarse) {
    .process-card:hover,
    .use-case-card:hover { transform: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .process-connector-path { animation: none !important; stroke-dasharray: 4 8; }
  }

  html.save-data .process-connector-path,
  html.save-data .process-card,
  html.save-data [data-reveal] {
    animation: none !important;
    transition: none !important;
  }

/* ==========================================================================
   cta-process-final-refinement
   ========================================================================== */
/* Distinguish the global action from the page-specific conversion action. */
  .site-header .nav-cta {
    color: var(--ink);
    border: 1px solid rgba(32,33,36,.16);
    background: rgba(255,255,255,.72);
    box-shadow: none;
  }

  .site-header .nav-cta:hover,
  .site-header .nav-cta:focus-visible {
    border-color: rgba(32,33,36,.28);
    background: #fff;
    box-shadow: 0 10px 24px rgba(32,33,36,.08);
  }

  .page-nav .page-nav__cta {
    color: var(--ink);
    border: 1px solid rgba(32,33,36,.05);
    background: var(--lime);
    box-shadow: 0 8px 20px rgba(194,255,2,.20);
  }

  .page-nav .page-nav__cta:hover,
  .page-nav .page-nav__cta:focus-visible {
    background: #b8f000;
    box-shadow: 0 11px 25px rgba(194,255,2,.26);
  }

  /* Two-row launch journey. The visual order snakes from 01 to 06. */
  .process-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 42px 34px;
  }

  .process-card { min-height: 238px; }
  .process-card:nth-of-type(1) { grid-column: 1; grid-row: 1; }
  .process-card:nth-of-type(2) { grid-column: 2; grid-row: 1; }
  .process-card:nth-of-type(3) { grid-column: 3; grid-row: 1; }
  .process-card:nth-of-type(4) { grid-column: 3; grid-row: 2; }
  .process-card:nth-of-type(5) { grid-column: 2; grid-row: 2; }
  .process-card:nth-of-type(6) { grid-column: 1; grid-row: 2; }

  .process-connector-path {
    stroke: rgba(32,33,36,.42);
    stroke-width: 1.8;
    stroke-dasharray: 2 9;
    animation-duration: 1.35s;
  }

  .process-connectors marker path { fill: rgba(32,33,36,.72); }

  @media (max-width: 900px) {
    .process-rail {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-template-rows: repeat(2, minmax(0, auto));
      gap: 38px 18px;
    }

    .process-card {
      min-height: 228px;
      padding: 22px 19px 23px;
    }
  }

  @media (max-width: 680px) {
    .process-rail {
      grid-template-columns: 1fr;
      grid-template-rows: none;
      gap: 34px;
    }

    .process-card:nth-of-type(n) {
      grid-column: 1;
      grid-row: auto;
    }

    .process-card { min-height: 195px; }
    .process-connector-path { stroke-width: 1.7; stroke-dasharray: 2 8; }
  }

  @media (max-width: 430px) {
    .process-rail { gap: 31px; }
    .process-card { min-height: 185px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .process-connector-path { animation: none !important; }
  }

/* ==========================================================================
   circular-process-refinement
   ========================================================================== */
/* Circular six-step launch journey */
  .process-rail {
    width: min(100%, 1120px);
    margin: 68px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    column-gap: clamp(62px, 7vw, 104px);
    row-gap: clamp(76px, 8vw, 112px);
    align-items: center;
    justify-items: center;
  }

  .process-card,
  .process-card:nth-of-type(n) {
    width: min(100%, 292px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 44px 38px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    overflow: visible;
    background:
      radial-gradient(circle at 32% 22%, rgba(255,255,255,.98), rgba(255,255,255,.92) 42%, rgba(255,255,255,.82) 100%);
    border: 1px solid rgba(32,33,36,.10);
    box-shadow:
      0 22px 56px rgba(32,33,36,.075),
      inset 0 0 0 10px color-mix(in srgb, var(--process-accent, var(--lime)) 15%, transparent),
      inset 0 1px 0 rgba(255,255,255,.98);
    contain: layout paint;
  }

  @supports not (background: color-mix(in srgb, white, black)) {
    .process-card,
    .process-card:nth-of-type(n) {
      box-shadow:
        0 22px 56px rgba(32,33,36,.075),
        inset 0 0 0 10px rgba(194,255,2,.10),
        inset 0 1px 0 rgba(255,255,255,.98);
    }
  }

  .process-card::before {
    inset: 12px;
    height: auto;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--process-accent, var(--lime)) 62%, rgba(32,33,36,.16));
    background: transparent;
    opacity: .72;
    pointer-events: none;
  }

  @supports not (border-color: color-mix(in srgb, white, black)) {
    .process-card::before { border-color: rgba(32,33,36,.18); }
  }

  .process-card:hover {
    transform: translateY(-7px) scale(1.012);
    box-shadow:
      0 30px 68px rgba(32,33,36,.11),
      inset 0 0 0 10px color-mix(in srgb, var(--process-accent, var(--lime)) 18%, transparent),
      inset 0 1px 0 rgba(255,255,255,.98);
  }

  .process-number {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    font-size: .69rem;
    box-shadow:
      0 9px 22px rgba(32,33,36,.09),
      inset 0 1px 0 rgba(255,255,255,.86);
  }

  .process-card h3 {
    margin: 0;
    max-width: 205px;
    font-size: 1.05rem;
    line-height: 1.18;
    letter-spacing: -.035em;
  }

  .process-card p {
    margin: 12px 0 0;
    max-width: 218px;
    font-size: .72rem;
    line-height: 1.58;
  }

  .process-connector-path {
    stroke: rgba(32,33,36,.46);
    stroke-width: 1.9;
    stroke-dasharray: 2 10;
    animation-duration: 1.2s;
  }

  .process-connectors marker path { fill: rgba(32,33,36,.68); }

  @media (max-width: 1040px) {
    .process-rail {
      width: min(100%, 860px);
      column-gap: 48px;
      row-gap: 78px;
    }

    .process-card,
    .process-card:nth-of-type(n) {
      width: min(100%, 238px);
      padding: 35px 29px 30px;
    }

    .process-number {
      width: 40px;
      height: 40px;
      flex-basis: 40px;
      margin-bottom: 14px;
    }

    .process-card h3 { max-width: 174px; font-size: .93rem; }
    .process-card p { max-width: 185px; font-size: .65rem; line-height: 1.52; }
  }

  @media (max-width: 760px) {
    .process-rail {
      width: 100%;
      grid-template-columns: 1fr;
      grid-template-rows: none;
      gap: 68px;
      margin-top: 50px;
    }

    .process-card:nth-of-type(n) {
      grid-column: 1;
      grid-row: auto;
      width: min(82vw, 294px);
      padding: 42px 36px 36px;
    }

    .process-card h3 { max-width: 208px; font-size: 1.04rem; }
    .process-card p { max-width: 220px; font-size: .74rem; }
    .process-connector-path { stroke-width: 1.8; stroke-dasharray: 2 9; }
  }

  @media (max-width: 430px) {
    .process-rail { gap: 62px; }

    .process-card:nth-of-type(n) {
      width: min(86vw, 280px);
      padding: 38px 32px 32px;
    }

    .process-number {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      margin-bottom: 15px;
    }

    .process-card h3 { font-size: 1rem; }
    .process-card p { font-size: .71rem; }
  }

  @media (hover: none), (pointer: coarse) {
    .process-card:hover { transform: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .process-card { transition: none !important; }
  }

/* ==========================================================================
   cover-seo-cta-refresh
   ========================================================================== */
.store-browser__body {
    min-height: 0;
    display: block;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
  }

  .store-browser__screenshot {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
  }

  .hero-meta { gap: 10px; }

  @media (max-width: 1024px) {
    .store-browser__screenshot { height: 300px; }
  }

  @media (max-width: 767px) {
    .store-browser__screenshot { height: 230px; }
  }

/* ==========================================================================
   cover-mobile-mockup-final-fix
   ========================================================================== */
/* Cover mockup refinement: separate desktop and mobile previews cleanly. */
  .hero-art {
    isolation: isolate;
  }

  .store-browser {
    width: 69%;
    left: 2%;
    right: auto;
    top: 13%;
    transform: rotate(-1deg);
  }

  .store-phone {
    width: 27%;
    left: auto;
    right: 1%;
    bottom: 2%;
    padding: 7px;
    border-radius: 34px;
    transform: rotate(4deg);
    box-shadow: 0 28px 60px rgba(32,33,36,.24);
  }

  .store-phone::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 10px;
    width: 34%;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(32,33,36,.92);
    pointer-events: none;
  }

  .store-phone__screen {
    min-height: 0;
    aspect-ratio: 9 / 16;
    padding: 0;
    overflow: hidden;
    border-radius: 27px;
    background: #dceef5;
  }

  .store-phone__screenshot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .float-status--one {
    left: 0;
    top: 4%;
  }

  @media (max-width: 1120px) {
    .hero-art {
      min-height: 500px;
    }

    .store-browser {
      width: 72%;
      left: 1%;
      top: 12%;
    }

    .store-phone {
      width: 26%;
      right: 0;
      bottom: 3%;
    }
  }

  @media (max-width: 820px) {
    .hero-art {
      min-height: 455px;
    }

    .store-browser {
      width: 78%;
      left: 0;
      top: 10%;
      transform: rotate(-.6deg);
    }

    .store-phone {
      width: 28%;
      right: 0;
      bottom: 2%;
      transform: rotate(3deg);
    }

    .float-status--one {
      left: 0;
      top: 1%;
    }
  }

  @media (max-width: 560px) {
    .hero-art {
      min-height: 405px;
    }

    .store-browser {
      width: 80%;
      left: 0;
      top: 9%;
    }

    .store-browser__screenshot {
      height: 220px;
    }

    .store-phone {
      width: 30%;
      right: -1%;
      bottom: 1%;
      padding: 5px;
      border-radius: 25px;
      transform: rotate(2deg);
      box-shadow: 0 20px 42px rgba(32,33,36,.22);
    }

    .store-phone::before {
      top: 7px;
      height: 7px;
    }

    .store-phone__screen {
      border-radius: 20px;
    }

    .float-status--one {
      top: 0;
      min-width: 136px;
    }
  }

  @media (max-width: 420px) {
    .hero-art {
      min-height: 370px;
    }

    .store-browser {
      width: 81%;
      left: -1%;
    }

    .store-browser__screenshot {
      height: 205px;
    }

    .store-phone {
      width: 31%;
      right: -2%;
      bottom: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .store-phone {
      animation: none !important;
    }
  }

/* ==========================================================================
   browser-mockup-image-refinement
   ========================================================================== */
/* Browser mockup image: preserve the full storefront composition without cropping. */
  .store-browser__body {
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
    display: block !important;
    padding: 0 !important;
    overflow: hidden;
    background: #d7e9f0;
  }

  .store-browser__screenshot {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center top;
    background: #d7e9f0;
  }

  @media (max-width: 820px) {
    .store-browser__body { aspect-ratio: 16 / 10; }
  }

  @media (max-width: 560px) {
    .store-browser__body { aspect-ratio: 16 / 10; }
    .store-browser__screenshot { height: 100% !important; }
  }

/* ==========================================================================
   first-store-offer-refresh
   ========================================================================== */
.pricing-section {
    overflow: hidden;
    color: var(--ink);
    background:
      radial-gradient(circle at 8% 18%, rgba(217,214,253,.58), transparent 26%),
      radial-gradient(circle at 92% 12%, rgba(153,254,237,.52), transparent 28%),
      radial-gradient(circle at 82% 92%, rgba(255,189,155,.38), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f7f8f5 100%);
  }

  .pricing-section .eyebrow { color: var(--muted); }

  .offer-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 42px;
  }

  .offer-heading h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3rem, 5.7vw, 6.2rem);
    line-height: .96;
    letter-spacing: -.065em;
  }

  .offer-heading h2 span {
    position: relative;
    display: inline-block;
    z-index: 0;
  }

  .offer-heading h2 span::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -3px;
    right: -8px;
    bottom: .05em;
    height: .35em;
    border-radius: 999px;
    background: var(--lime);
    transform: rotate(-1.5deg);
  }

  .offer-heading > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
  }

  .pricing-card--offer {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    border: 1px solid rgba(32,33,36,.09);
    border-radius: 42px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 30px 84px rgba(32,33,36,.1);
  }

  .pricing-card--offer .pricing-main {
    position: relative;
    padding: 54px;
    background:
      radial-gradient(circle at 90% 8%, rgba(194,255,2,.22), transparent 30%),
      #ffffff;
  }

  .pricing-card--offer .pricing-main::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 82px;
    height: 62px;
    opacity: .38;
    background-image: radial-gradient(circle, rgba(32,33,36,.22) 0 1px, transparent 1.5px);
    background-size: 11px 11px;
    pointer-events: none;
  }

  .offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
  }

  .offer-badges span {
    padding: 8px 11px;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 999px;
    background: var(--gray);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .offer-badges span:first-child { background: rgba(194,255,2,.34); }

  .pricing-kicker {
    margin: 0;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .offer-price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 22px;
    margin-top: 22px;
  }

  .offer-price__label,
  .offer-price__anchor span {
    display: block;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .offer-price__main strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(4.2rem, 7vw, 7rem);
    line-height: .82;
    letter-spacing: -.08em;
  }

  .offer-price__anchor {
    padding-bottom: 6px;
  }

  .offer-price__anchor del {
    display: block;
    margin-top: 7px;
    color: rgba(32,33,36,.48);
    font-size: 1.45rem;
    font-weight: 700;
  }

  .offer-price__anchor b {
    display: inline-flex;
    margin-top: 8px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--peach);
    font-size: .7rem;
    font-weight: 800;
  }

  .pricing-card--offer .offer-summary {
    max-width: 540px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
  }

  .pricing-card--offer .pricing-main .btn {
    position: relative;
    z-index: 1;
    margin-top: 28px;
  }

  .offer-capacity-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 500px;
    margin: 17px 0 0 !important;
    color: var(--muted) !important;
    font-size: .7rem !important;
    line-height: 1.55 !important;
  }

  .offer-capacity-note span {
    flex: 0 0 auto;
    color: #8db800;
    font-size: .82rem;
  }

  .pricing-card--offer .pricing-side {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 36px;
    color: var(--ink);
    background:
      radial-gradient(circle at 86% 6%, rgba(255,255,255,.72), transparent 26%),
      linear-gradient(145deg, var(--mint), var(--lavender) 58%, var(--peach));
  }

  .offer-value-card,
  .offer-included {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 22px;
    background: rgba(255,255,255,.66);
    box-shadow: 0 14px 38px rgba(32,33,36,.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .offer-included {
    display: block;
  }

  .offer-value-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 0 0 7px rgba(194,255,2,.14);
  }

  .offer-value-card--bonus .offer-value-card__icon {
    background: var(--peach);
    box-shadow: 0 0 0 7px rgba(255,189,155,.16);
  }

  .offer-value-card small {
    display: block;
    color: rgba(32,33,36,.58);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .offer-value-card h3,
  .offer-included h3 {
    margin: 7px 0 0;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -.025em;
  }

  .offer-value-card p {
    margin: 8px 0 0;
    color: rgba(32,33,36,.66);
    font-size: .72rem;
    line-height: 1.55;
  }

  .pricing-card--offer .price-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-top: 16px;
  }

  .pricing-card--offer .price-features li {
    padding: 11px 0 11px 22px;
    border-top-color: rgba(32,33,36,.12);
    font-size: .72rem;
  }

  .pricing-card--offer .price-features li::before {
    left: 0;
  }

  .pricing-card--offer .price-disclaimer {
    margin: 0;
    padding: 0 4px;
    color: rgba(32,33,36,.58);
    font-size: .62rem;
    line-height: 1.55;
  }

  @media (max-width: 980px) {
    .offer-heading,
    .pricing-card--offer {
      grid-template-columns: 1fr;
    }

    .offer-heading { gap: 20px; }

    .pricing-card--offer .pricing-side { padding: 34px; }
  }

  @media (max-width: 620px) {
    .offer-heading { margin-bottom: 28px; }

    .offer-heading h2 {
      font-size: clamp(2.75rem, 12vw, 4.2rem);
    }

    .pricing-card--offer {
      border-radius: 28px;
    }

    .pricing-card--offer .pricing-main,
    .pricing-card--offer .pricing-side {
      padding: 30px 22px;
    }

    .offer-price {
      align-items: flex-start;
      gap: 16px;
    }

    .offer-price__main strong {
      font-size: clamp(4.1rem, 19vw, 5.8rem);
    }

    .offer-price__anchor {
      padding-top: 18px;
      padding-bottom: 0;
    }

    .pricing-card--offer .pricing-side {
      gap: 11px;
    }

    .offer-value-card,
    .offer-included {
      padding: 17px;
      border-radius: 18px;
    }

    .pricing-card--offer .price-features {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 420px) {
    .offer-badges { display: grid; }
    .offer-badges span { text-align: center; }

    .offer-price {
      display: block;
    }

    .offer-price__anchor {
      padding-top: 16px;
    }
  }

/* ==========================================================================
   section-order-navigation-refinement
   ========================================================================== */
/* Clear section tracking in the secondary navigation */
  #problem,
  #outcomes,
  #process,
  #use-cases,
  #pricing,
  #whats-included,
  #fit,
  #promo-distributors,
  #faq {
    scroll-margin-top: calc(var(--page-nav-top, 96px) + 86px);
  }

  .page-nav {
    gap: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .page-nav::-webkit-scrollbar { display: none; }

  .page-nav a:not(.page-nav__cta) {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(32,33,36,.62);
    font-size: .68rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
  }

  .page-nav a:not(.page-nav__cta)::after { display: none !important; }

  .page-nav a:not(.page-nav__cta):hover {
    color: var(--ink);
    background: rgba(32,33,36,.055);
  }

  .page-nav a:not(.page-nav__cta)[aria-current="location"] {
    color: var(--ink) !important;
    background: var(--lime) !important;
    border-color: rgba(32,33,36,.10);
    box-shadow: 0 8px 22px rgba(194,255,2,.26), inset 0 0 0 1px rgba(255,255,255,.42);
    transform: translateY(-1px);
  }

  /* Pricing and package contents now read as one offer */
  .pricing-included-panel {
    margin-top: 30px;
    padding: 46px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 38px;
    color: var(--ink);
    background:
      radial-gradient(circle at 92% 8%, rgba(255,255,255,.72), transparent 25%),
      linear-gradient(145deg, rgba(153,254,237,.96), rgba(217,214,253,.92) 52%, rgba(255,189,155,.90));
    box-shadow: 0 24px 70px rgba(0,0,0,.14);
  }

  .pricing-included-panel__heading {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,.7fr);
    gap: 32px 54px;
    align-items: end;
    margin-bottom: 34px;
  }

  .pricing-included-panel__heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -14px;
    color: rgba(32,33,36,.58);
  }

  .pricing-included-panel__heading h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(2.5rem,4.6vw,5rem);
    line-height: .97;
    letter-spacing: -.06em;
  }

  .pricing-included-panel__heading > p:last-child {
    margin: 0;
    color: rgba(32,33,36,.66);
    font-size: .9rem;
    line-height: 1.65;
  }

  .pricing-included-panel .included-grid {
    margin-top: 0;
  }

  .pricing-included-panel .included-card {
    border-color: rgba(32,33,36,.09);
    background: rgba(255,255,255,.76);
    box-shadow: 0 14px 36px rgba(32,33,36,.07);
  }

  .pricing-included-panel .scope-note {
    background: rgba(255,255,255,.66);
  }

  /* Distributor expertise is now a conversion section with social proof */
  .promo-distributor-cta-section {
    overflow: hidden;
    background:
      radial-gradient(circle at 8% 12%, rgba(153,254,237,.28), transparent 26%),
      radial-gradient(circle at 92% 86%, rgba(217,214,253,.42), transparent 30%),
      linear-gradient(180deg,#fff 0%,#fafbf8 100%);
  }

  .promo-distributor-cta {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr);
    gap: 42px;
    align-items: stretch;
    padding: 58px;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 42px;
    background:
      radial-gradient(circle at 12% 88%, rgba(194,255,2,.18), transparent 28%),
      linear-gradient(145deg,#fff 0%,#f7fbfa 56%,#f5f2ff 100%);
    box-shadow: 0 28px 76px rgba(32,33,36,.09);
  }

  .promo-distributor-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .promo-distributor-cta__content h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.8rem,5.3vw,5.8rem);
    line-height: .96;
    letter-spacing: -.065em;
  }

  .promo-distributor-cta__copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
  }

  .promo-distributor-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
  }

  .promo-distributor-points span {
    padding: 9px 12px;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    font-size: .68rem;
    font-weight: 750;
  }

  .promo-distributor-cta__content .btn { margin-top: 28px; }

  .promo-distributor-proof {
    display: grid;
    grid-template-rows: minmax(200px,.86fr) auto;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(32,33,36,.08);
  }

  .promo-distributor-proof__photo {
    min-height: 230px;
    overflow: hidden;
    background: var(--gray);
  }

  .promo-distributor-proof__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .promo-distributor-proof__body { padding: 27px; }

  .promo-distributor-proof__stars {
    display: flex;
    gap: 4px;
    color: #00b67a;
    font-size: 1rem;
  }

  .promo-distributor-proof blockquote {
    margin: 17px 0 0;
    color: rgba(32,33,36,.82);
    font-size: .96rem;
    font-weight: 650;
    line-height: 1.58;
  }

  .promo-distributor-proof__author { margin-top: 18px; }
  .promo-distributor-proof__author strong,
  .promo-distributor-proof__author span { display: block; }
  .promo-distributor-proof__author strong { font-size: .86rem; }
  .promo-distributor-proof__author span { margin-top: 4px; color: var(--muted); font-size: .7rem; }

  @media (max-width: 1180px) {
    .page-nav a:not(.page-nav__cta) { padding-inline: 10px; font-size: .64rem; }
    .pricing-included-panel__heading,
    .promo-distributor-cta { grid-template-columns: 1fr; }
    .promo-distributor-proof { grid-template-columns: 210px 1fr; grid-template-rows: auto; }
    .promo-distributor-proof__photo { min-height: 100%; }
  }

  @media (max-width: 900px) {
    .page-nav a:not(.page-nav__cta) {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: .76rem;
    }

    .page-nav a:not(.page-nav__cta)[aria-current="location"] {
      box-shadow: 0 9px 22px rgba(194,255,2,.22);
      transform: none;
    }

    .pricing-included-panel { padding: 34px; border-radius: 30px; }
    .pricing-included-panel__heading { gap: 18px; }
    .pricing-included-panel__heading .eyebrow { margin-bottom: 0; }
    .promo-distributor-cta { padding: 40px; border-radius: 32px; }
  }

  @media (max-width: 620px) {
    .pricing-included-panel { padding: 25px 18px; border-radius: 26px; }
    .pricing-included-panel__heading h2 { font-size: clamp(2.35rem,11vw,3.8rem); }
    .promo-distributor-cta { padding: 28px 20px; gap: 28px; border-radius: 27px; }
    .promo-distributor-cta__content h2 { font-size: clamp(2.45rem,11.7vw,4rem); }
    .promo-distributor-proof { grid-template-columns: 1fr; }
    .promo-distributor-proof__photo { min-height: 220px; }
  }

/* ==========================================================================
   testimonial-scroll-heading-final
   ========================================================================== */
html {
    scroll-padding-top: calc(var(--page-nav-top, 96px) + 92px);
    scrollbar-gutter: stable;
  }

  #problem,
  #outcomes,
  #process,
  #use-cases,
  #pricing,
  #whats-included,
  #client-proof,
  #fit,
  #faq,
  #promo-distributors {
    scroll-margin-top: calc(var(--page-nav-top, 96px) + 92px);
  }

  /* Give large headings more breathing room without losing the Swishtag look. */
  .hero-title,
  .section-title,
  .pain-heading h2,
  .outcome-copy h2,
  .offer-heading h2,
  .pricing-included-panel__heading h2,
  .fit-copy h2,
  .faq-heading h2,
  .promo-distributor-cta__content h2,
  .testimonial-content h2 {
    letter-spacing: -.045em !important;
    word-spacing: .035em;
  }

  .hero-title {
    line-height: .97 !important;
  }

  .hero {
    padding-top: max(148px, calc(var(--header-height, 104px) + 44px)) !important;
  }

  /* Standalone client proof immediately after the full pricing package. */
  .testimonial-section--standalone {
    padding: 76px 0;
    background:
      radial-gradient(circle at 8% 12%, rgba(217,214,253,.30), transparent 26%),
      radial-gradient(circle at 92% 84%, rgba(153,254,237,.24), transparent 28%),
      linear-gradient(180deg, #fafbf8 0%, #ffffff 100%);
  }

  .testimonial-section--standalone .testimonial-card {
    max-width: 1080px;
    margin-inline: auto;
  }

  /* The distributor CTA now closes the page after FAQ. */
  .promo-distributor-cta-section {
    padding-top: 76px;
    padding-bottom: 100px;
  }

  .promo-distributor-cta--simple {
    display: block;
    max-width: 1080px;
    margin-inline: auto;
    text-align: center;
    padding: 66px 58px;
  }

  .promo-distributor-cta--simple .promo-distributor-cta__content {
    align-items: center;
  }

  .promo-distributor-cta--simple .promo-distributor-cta__content h2,
  .promo-distributor-cta--simple .promo-distributor-cta__copy {
    margin-inline: auto;
  }

  .promo-distributor-cta--simple .promo-distributor-points {
    justify-content: center;
  }

  @media (max-width: 900px) {
    html { scroll-padding-top: 168px; }

    #problem,
    #outcomes,
    #process,
    #use-cases,
    #pricing,
    #whats-included,
    #client-proof,
    #fit,
    #faq,
    #promo-distributors {
      scroll-margin-top: 168px;
    }

    .hero {
      padding-top: 122px !important;
    }

    .testimonial-section--standalone { padding: 64px 0; }
    .promo-distributor-cta--simple { padding: 48px 34px; }
  }

  @media (max-width: 620px) {
    html { scroll-padding-top: 148px; }

    #problem,
    #outcomes,
    #process,
    #use-cases,
    #pricing,
    #whats-included,
    #client-proof,
    #fit,
    #faq,
    #promo-distributors {
      scroll-margin-top: 148px;
    }

    .hero {
      padding-top: 112px !important;
    }

    .hero-title,
    .section-title,
    .pain-heading h2,
    .outcome-copy h2,
    .offer-heading h2,
    .pricing-included-panel__heading h2,
    .fit-copy h2,
    .faq-heading h2,
    .promo-distributor-cta__content h2,
    .testimonial-content h2 {
      letter-spacing: -.035em !important;
      word-spacing: .025em;
    }

    .testimonial-section--standalone { padding: 54px 0; }
    .promo-distributor-cta-section { padding-top: 52px; padding-bottom: 78px; }
    .promo-distributor-cta--simple { padding: 38px 22px; }
  }

/* ==========================================================================
   home-navigation-token-alias
   ========================================================================== */
:root { --graphite: var(--ink); }

/* ==========================================================================
   landing-home-navigation-system
   ========================================================================== */
/* ==========================================================
       Modern navigation, desktop mega menus, and mobile full-screen menu
       ========================================================== */

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 70;
      padding: 16px 0;
      background: transparent;
      box-shadow: none;
      pointer-events: none;
      transition: padding .28s ease;
    }

    .site-header.is-scrolled {
      padding-top: 10px;
      background: transparent !important;
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
      box-shadow: none !important;
    }

    .modern-nav {
      position: relative;
      width: min(var(--page), 1240px);
      min-height: 68px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      margin-inline: auto;
      padding: 0 10px 0 21px;
      border: 1px solid rgba(255,255,255,.86);
      border-radius: 999px;
      background: rgba(255,255,255,.68);
      box-shadow:
        0 14px 38px rgba(32,33,36,.075),
        inset 0 1px 0 rgba(255,255,255,.92);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      pointer-events: auto;
      transition:
        min-height .28s ease,
        background .28s ease,
        border-color .28s ease,
        box-shadow .28s ease,
        transform .28s ease;
    }

    .site-header.is-scrolled .modern-nav {
      min-height: 60px;
      background: rgba(255,255,255,.89);
      border-color: rgba(32,33,36,.07);
      box-shadow:
        0 16px 38px rgba(32,33,36,.10),
        inset 0 1px 0 rgba(255,255,255,.94);
    }

    .modern-nav__brand,
    .mobile-menu__brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--graphite);
      font-size: .98rem;
      font-weight: 850;
      letter-spacing: .045em;
    }

    .modern-nav__brand-mark {
      position: relative;
      width: 24px;
      height: 24px;
      display: inline-block;
      flex: 0 0 24px;
      border-radius: 50% 50% 44% 56%;
      background:
        radial-gradient(circle at 44% 38%, #FFFFFF 0 16%, transparent 17%),
        linear-gradient(145deg, var(--lime), #9BEA00);
      box-shadow: 0 6px 14px rgba(154,215,0,.22);
      transform: rotate(-12deg);
    }

    .modern-nav__brand-mark::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 3px;
      right: -4px;
      bottom: 2px;
      border-radius: 999px;
      background: var(--peach);
      transform: rotate(-24deg);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .desktop-nav__item {
      position: static;
    }

    .desktop-nav__trigger,
    .desktop-nav__direct {
      position: relative;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 0 14px;
      border: 0;
      border-radius: 999px;
      color: rgba(32,33,36,.76);
      background: transparent;
      font: inherit;
      font-size: .82rem;
      font-weight: 680;
      cursor: pointer;
      transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
    }

    .desktop-nav__trigger svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform .22s ease;
    }

    .desktop-nav__trigger:hover,
    .desktop-nav__trigger:focus-visible,
    .desktop-nav__direct:hover,
    .desktop-nav__direct:focus-visible,
    .desktop-nav__item.is-open .desktop-nav__trigger {
      color: var(--graphite);
      background: rgba(32,33,36,.055);
      outline: none;
    }

    .desktop-nav__item.is-open .desktop-nav__trigger svg,
    .desktop-nav__item:hover .desktop-nav__trigger svg,
    .desktop-nav__item:focus-within .desktop-nav__trigger svg {
      transform: rotate(180deg);
    }

    .modern-nav__cta {
      min-height: 48px;
      min-width: 148px;
      display: inline-flex;
      justify-content: space-between;
      gap: 18px;
      padding-inline: 18px;
    }

    .mega-menu {
      position: fixed;
      z-index: 75;
      top: 92px;
      left: 50%;
      width: min(1160px, calc(100vw - 42px));
      display: grid;
      grid-template-columns: minmax(230px, .78fr) minmax(380px, 1.25fr) minmax(280px, .92fr);
      gap: 18px;
      padding: 18px;
      border: 1px solid rgba(32,33,36,.075);
      border-radius: 30px;
      background:
        radial-gradient(circle at 82% 8%, rgba(153,254,237,.20), transparent 28%),
        radial-gradient(circle at 14% 100%, rgba(217,214,253,.24), transparent 30%),
        rgba(255,255,255,.97);
      box-shadow:
        0 30px 90px rgba(32,33,36,.16),
        inset 0 1px 0 rgba(255,255,255,.96);
      -webkit-backdrop-filter: blur(22px);
      backdrop-filter: blur(22px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, 12px) scale(.985);
      transform-origin: top center;
      transition:
        opacity .22s ease,
        transform .28s cubic-bezier(.22,1,.36,1),
        visibility .22s ease;
    }

    .site-header.is-scrolled .mega-menu {
      top: 78px;
    }

    .desktop-nav__item:hover > .mega-menu,
    .desktop-nav__item:focus-within > .mega-menu,
    .desktop-nav__item.is-open > .mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }

    .mega-menu__intro,
    .mega-menu__content,
    .mega-products,
    .mega-industries,
    .mega-visual {
      border-radius: 22px;
    }

    .mega-menu__intro {
      display: flex;
      flex-direction: column;
      padding: 25px 23px;
      background:
        linear-gradient(145deg, rgba(245,245,243,.94), rgba(255,255,255,.92));
      border: 1px solid rgba(32,33,36,.06);
    }

    .mega-menu__eyebrow {
      color: var(--muted);
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .mega-menu__intro h2 {
      margin: 18px 0 0;
      font-size: clamp(1.75rem, 2.3vw, 2.55rem);
      line-height: 1.02;
      letter-spacing: -.05em;
    }

    .mega-menu__intro p {
      margin: 17px 0 0;
      color: var(--muted);
      font-size: .78rem;
      line-height: 1.58;
    }

    .mega-menu__all-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: auto;
      padding-top: 25px;
      color: var(--graphite);
      font-size: .72rem;
      font-weight: 760;
    }

    .mega-menu__all-link span:last-child {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--lime);
      transition: transform .2s ease;
    }

    .mega-menu__all-link:hover span:last-child {
      transform: translate(2px, -2px);
    }

    .mega-menu__content {
      display: grid;
      grid-template-columns: 1fr .62fr;
      gap: 12px;
      padding: 12px;
      background: rgba(250,250,248,.92);
      border: 1px solid rgba(32,33,36,.055);
    }

    .mega-menu__primary-links {
      display: grid;
      align-content: start;
      gap: 8px;
    }

    .mega-link {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr) auto;
      align-items: center;
      gap: 13px;
      min-height: 88px;
      padding: 12px 13px;
      border: 1px solid transparent;
      border-radius: 17px;
      background: rgba(255,255,255,.76);
      transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
    }

    .mega-link:hover {
      transform: translateY(-2px);
      border-color: rgba(32,33,36,.08);
      background: #FFFFFF;
      box-shadow: 0 12px 24px rgba(32,33,36,.06);
    }

    .mega-link__icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 15px;
    }

    .mega-link__icon svg {
      width: 27px;
      height: 27px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mega-link__icon--lime {
      color: #5D7900;
      background: rgba(194,255,2,.30);
    }

    .mega-link__icon--lavender {
      color: #6455C6;
      background: rgba(217,214,253,.62);
    }

    .mega-link__copy {
      display: grid;
      gap: 5px;
    }

    .mega-link__copy strong {
      font-size: .78rem;
    }

    .mega-link__copy small {
      color: var(--muted);
      font-size: .65rem;
      line-height: 1.45;
    }

    .mega-link__arrow {
      color: var(--muted);
      font-size: .95rem;
      transition: transform .2s ease;
    }

    .mega-link:hover .mega-link__arrow {
      transform: translate(2px, -2px);
    }

    .mega-menu__quick-links {
      display: flex;
      flex-direction: column;
      padding: 15px 14px;
      border-left: 1px solid rgba(32,33,36,.07);
    }

    .mega-menu__quick-links > span {
      margin-bottom: 11px;
      color: var(--muted);
      font-size: .57rem;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .mega-menu__quick-links a {
      padding: 10px 0;
      color: rgba(32,33,36,.74);
      font-size: .68rem;
      font-weight: 620;
      line-height: 1.35;
      transition: color .2s ease, transform .2s ease;
    }

    .mega-menu__quick-links a:hover {
      color: var(--graphite);
      transform: translateX(3px);
    }

    .mega-visual {
      position: relative;
      min-height: 285px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: 12px;
      border: 1px solid rgba(32,33,36,.06);
      background:
        linear-gradient(145deg, rgba(255,255,255,.94), rgba(248,247,255,.94));
      transition: transform .24s ease, box-shadow .24s ease;
    }

    .mega-visual:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32,33,36,.08);
    }

    .mega-visual__art {
      min-height: 190px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 16px;
      background:
        radial-gradient(circle at 80% 12%, rgba(153,254,237,.58), transparent 34%),
        radial-gradient(circle at 14% 96%, rgba(255,189,155,.48), transparent 35%),
        linear-gradient(145deg, #FFFFFF, #F3F1FF);
    }

    .mega-visual__art svg {
      width: 100%;
      height: 100%;
    }

    .mega-visual__caption {
      display: grid;
      gap: 5px;
      padding: 15px 10px 8px;
    }

    .mega-visual__caption span {
      color: var(--muted);
      font-size: .56rem;
      font-weight: 760;
      letter-spacing: .10em;
      text-transform: uppercase;
    }

    .mega-visual__caption strong {
      font-size: .84rem;
    }

    .mega-visual__caption small {
      color: var(--muted);
      font-size: .64rem;
      line-height: 1.45;
    }

    .mega-svg-window,
    .mega-svg-person-card {
      fill: rgba(255,255,255,.82);
      stroke: rgba(32,33,36,.12);
      stroke-width: 1.4;
    }

    .mega-svg-soft {
      fill: rgba(217,214,253,.74);
    }

    .mega-svg-line {
      fill: rgba(32,33,36,.12);
    }

    .mega-svg-line--short {
      opacity: .7;
    }

    .mega-svg-lime {
      fill: var(--lime);
    }

    .mega-svg-dot--peach,
    .mega-svg-node--peach {
      fill: var(--peach);
    }

    .mega-svg-dot--mint,
    .mega-svg-node--mint {
      fill: var(--mint);
    }

    .mega-svg-dot--lavender {
      fill: var(--lavender);
    }

    .mega-svg-path,
    .mega-svg-orbit,
    .mega-svg-connector {
      fill: none;
      stroke: rgba(32,33,36,.16);
      stroke-width: 1.6;
      stroke-dasharray: 6 7;
    }

    .mega-svg-node {
      fill: var(--lavender);
      stroke: #FFFFFF;
      stroke-width: 4;
    }

    .mega-svg-core {
      fill: rgba(255,255,255,.96);
      stroke: rgba(32,33,36,.12);
      stroke-width: 1.5;
    }

    .mega-svg-orbit--two {
      stroke: rgba(153,254,237,.78);
    }

    .mega-svg-product {
      stroke: #FFFFFF;
      stroke-width: 5;
    }

    .mega-svg-product--lime { fill: var(--lime); }
    .mega-svg-product--mint { fill: var(--mint); }
    .mega-svg-product--peach { fill: var(--peach); }
    .mega-svg-product--lavender { fill: var(--lavender); }

    .mega-svg-rocket {
      fill: none;
      stroke: var(--graphite);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mega-svg-wave {
      fill: none;
      stroke-width: 20;
      stroke-linecap: round;
      opacity: .55;
    }

    .mega-svg-wave--mint { stroke: var(--mint); }
    .mega-svg-wave--lavender { stroke: var(--lavender); }

    .mega-svg-person-card--two {
      fill: rgba(217,214,253,.70);
    }

    .mega-svg-person-card--three {
      fill: rgba(255,189,155,.48);
    }

    .mega-svg-person {
      fill: #FFFFFF;
      stroke: rgba(32,33,36,.20);
      stroke-width: 1.3;
    }

    .mega-svg-person-line {
      fill: none;
      stroke: rgba(32,33,36,.22);
      stroke-width: 2;
      stroke-linecap: round;
    }

    .mega-products {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
      padding: 10px;
      background: rgba(250,250,248,.92);
      border: 1px solid rgba(32,33,36,.055);
    }

    .mega-product {
      min-height: 125px;
      display: flex;
      flex-direction: column;
      padding: 16px;
      border: 1px solid rgba(32,33,36,.055);
      border-radius: 17px;
      background: rgba(255,255,255,.75);
      transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .mega-product:hover {
      transform: translateY(-2px);
      background: #FFFFFF;
      box-shadow: 0 12px 24px rgba(32,33,36,.06);
    }

    .mega-product__number {
      margin-bottom: auto;
      color: rgba(32,33,36,.34);
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .10em;
    }

    .mega-product strong {
      margin-top: 18px;
      font-size: .76rem;
    }

    .mega-product small {
      margin-top: 6px;
      color: var(--muted);
      font-size: .62rem;
      line-height: 1.42;
    }

    .mega-industries {
      display: grid;
      align-content: start;
      gap: 8px;
      padding: 11px;
      background: rgba(250,250,248,.92);
      border: 1px solid rgba(32,33,36,.055);
    }

    .mega-industry {
      min-height: 82px;
      display: grid;
      grid-template-columns: 44px 1fr;
      align-items: center;
      gap: 13px;
      padding: 12px;
      border: 1px solid transparent;
      border-radius: 17px;
      background: rgba(255,255,255,.74);
      transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .mega-industry:hover {
      transform: translateX(3px);
      background: #FFFFFF;
      box-shadow: 0 12px 24px rgba(32,33,36,.055);
    }

    .mega-industry__shape {
      width: 42px;
      height: 42px;
      display: block;
      border-radius: 16px 16px 7px 16px;
      transform: rotate(-9deg);
    }

    .mega-industry__shape--lime { background: var(--lime); }
    .mega-industry__shape--mint { background: var(--mint); border-radius: 50%; }
    .mega-industry__shape--peach { background: var(--peach); border-radius: 8px 18px 18px 18px; }

    .mega-industry > span:last-child {
      display: grid;
      gap: 5px;
    }

    .mega-industry strong {
      font-size: .76rem;
    }

    .mega-industry small {
      color: var(--muted);
      font-size: .62rem;
      line-height: 1.42;
    }

    .modern-menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      place-items: center;
      gap: 5px;
      padding: 0;
      border: 1px solid rgba(32,33,36,.07);
      border-radius: 50%;
      background: rgba(245,245,243,.92);
      cursor: pointer;
    }

    .modern-menu-toggle::before,
    .modern-menu-toggle::after,
    .modern-menu-toggle span {
      display: none;
    }

    .modern-menu-toggle__line {
      width: 18px;
      height: 1.8px;
      display: block !important;
      margin: 0 !important;
      border-radius: 999px;
      background: var(--graphite);
    }

    body.mobile-menu-lock {
      overflow: hidden;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      pointer-events: none;
      visibility: hidden;
    }

    .mobile-menu__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(32,33,36,.18);
      opacity: 0;
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
      transition: opacity .35s ease;
    }

    .mobile-menu__panel {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      overflow: hidden;
      padding: 18px;
      background:
        radial-gradient(circle at 92% 6%, rgba(153,254,237,.54), transparent 28%),
        radial-gradient(circle at 4% 96%, rgba(255,189,155,.42), transparent 31%),
        radial-gradient(circle at 55% 54%, rgba(217,214,253,.40), transparent 42%),
        #FFFFFF;
      opacity: 0;
      transform: translateY(-18px) scale(.985);
      transform-origin: top center;
      transition:
        opacity .32s ease,
        transform .46s cubic-bezier(.22,1,.36,1);
    }

    .mobile-menu.is-open {
      pointer-events: auto;
      visibility: visible;
    }

    .mobile-menu.is-open .mobile-menu__backdrop {
      opacity: 1;
    }

    .mobile-menu.is-open .mobile-menu__panel {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .mobile-menu__top {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3px 12px;
      border-bottom: 1px solid rgba(32,33,36,.09);
    }

    .mobile-menu__close {
      position: relative;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(32,33,36,.08);
      border-radius: 50%;
      background: rgba(255,255,255,.72);
      cursor: pointer;
    }

    .mobile-menu__close span {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 1.8px;
      border-radius: 999px;
      background: var(--graphite);
    }

    .mobile-menu__close span:first-child {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu__close span:last-child {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .mobile-menu__body {
      overflow-y: auto;
      padding: 28px 2px 32px;
      overscroll-behavior: contain;
    }

    .mobile-menu__intro {
      max-width: 520px;
      margin-bottom: 24px;
    }

    .mobile-menu__intro span {
      color: var(--graphite);
      font-size: clamp(1.7rem, 8vw, 2.7rem);
      font-weight: 820;
      line-height: 1.02;
      letter-spacing: -.05em;
    }

    .mobile-menu__intro p {
      max-width: 480px;
      margin: 13px 0 0;
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.55;
    }

    .mobile-nav {
      border-top: 1px solid rgba(32,33,36,.10);
    }

    .mobile-nav__direct,
    .mobile-nav__toggle {
      width: 100%;
      min-height: 66px;
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr) auto;
      align-items: center;
      gap: 11px;
      padding: 0 4px;
      border: 0;
      border-bottom: 1px solid rgba(32,33,36,.10);
      color: var(--graphite);
      background: transparent;
      text-align: left;
      font: inherit;
      font-size: 1.12rem;
      font-weight: 750;
      cursor: pointer;
    }

    .mobile-nav__index {
      color: rgba(32,33,36,.35);
      font-size: .56rem;
      font-weight: 800;
      letter-spacing: .09em;
    }

    .mobile-nav__plus {
      position: relative;
      width: 20px;
      height: 20px;
    }

    .mobile-nav__plus::before,
    .mobile-nav__plus::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 1.5px;
      border-radius: 999px;
      background: var(--graphite);
      transform: translate(-50%, -50%);
      transition: transform .25s ease;
    }

    .mobile-nav__plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .mobile-nav__group.is-open .mobile-nav__plus::after {
      transform: translate(-50%, -50%) rotate(0);
    }

    .mobile-nav__panel {
      display: grid;
      grid-template-rows: 0fr;
      border-bottom: 1px solid rgba(32,33,36,.10);
      transition: grid-template-rows .34s cubic-bezier(.22,1,.36,1);
    }

    .mobile-nav__panel > div {
      overflow: hidden;
    }

    .mobile-nav__group.is-open .mobile-nav__panel {
      grid-template-rows: 1fr;
    }

    .mobile-nav__panel a {
      display: grid;
      gap: 4px;
      margin-left: 40px;
      padding: 14px 10px 14px 0;
      border-bottom: 1px solid rgba(32,33,36,.065);
    }

    .mobile-nav__panel a:last-child {
      margin-bottom: 8px;
      border-bottom: 0;
    }

    .mobile-nav__panel strong {
      font-size: .82rem;
    }

    .mobile-nav__panel small {
      color: var(--muted);
      font-size: .68rem;
      line-height: 1.42;
    }

    .mobile-menu__feature {
      position: relative;
      min-height: 170px;
      display: grid;
      grid-template-columns: 138px minmax(0, 1fr);
      align-items: center;
      gap: 17px;
      overflow: hidden;
      margin-top: 24px;
      padding: 14px;
      border: 1px solid rgba(32,33,36,.07);
      border-radius: 24px;
      background: rgba(255,255,255,.68);
    }

    .mobile-menu__feature-art {
      position: relative;
      height: 138px;
      overflow: hidden;
      border-radius: 18px;
      background:
        radial-gradient(circle at 72% 22%, rgba(153,254,237,.72), transparent 35%),
        radial-gradient(circle at 12% 90%, rgba(255,189,155,.60), transparent 40%),
        linear-gradient(145deg, #FFFFFF, #EDEBFF);
    }

    .mobile-orbit {
      position: absolute;
      border: 1px solid rgba(32,33,36,.15);
      border-radius: 50%;
    }

    .mobile-orbit--one {
      width: 110px;
      height: 56px;
      left: 12px;
      top: 40px;
      transform: rotate(-25deg);
    }

    .mobile-orbit--two {
      width: 80px;
      height: 80px;
      right: -20px;
      bottom: -20px;
      border-color: rgba(217,214,253,.9);
    }

    .mobile-feature-rocket {
      position: absolute;
      left: 54px;
      top: 47px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50% 50% 46% 54%;
      color: var(--graphite);
      background: var(--lime);
      font-size: 1rem;
      font-weight: 850;
      transform: rotate(-18deg);
      box-shadow: 0 10px 22px rgba(154,215,0,.24);
    }

    .mobile-menu__feature > span:last-child {
      display: grid;
      gap: 7px;
    }

    .mobile-menu__feature small {
      color: var(--muted);
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .10em;
      text-transform: uppercase;
    }

    .mobile-menu__feature strong {
      font-size: 1rem;
      line-height: 1.2;
      letter-spacing: -.025em;
    }

    .mobile-menu__footer {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px 2px 0;
      border-top: 1px solid rgba(32,33,36,.09);
    }

    .mobile-menu__footer .btn {
      flex: 1;
      justify-content: space-between;
    }

    .mobile-menu__footer > span {
      color: var(--muted);
      font-size: .65rem;
    }

    .mobile-menu__top,
    .mobile-menu__intro,
    .mobile-nav > *,
    .mobile-menu__feature,
    .mobile-menu__footer {
      opacity: 0;
      transform: translateY(12px);
      transition:
        opacity .34s ease,
        transform .44s cubic-bezier(.22,1,.36,1);
    }

    .mobile-menu.is-open .mobile-menu__top,
    .mobile-menu.is-open .mobile-menu__intro,
    .mobile-menu.is-open .mobile-nav > *,
    .mobile-menu.is-open .mobile-menu__feature,
    .mobile-menu.is-open .mobile-menu__footer {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu.is-open .mobile-menu__top { transition-delay: .05s; }
    .mobile-menu.is-open .mobile-menu__intro { transition-delay: .09s; }
    .mobile-menu.is-open .mobile-nav > :nth-child(1) { transition-delay: .12s; }
    .mobile-menu.is-open .mobile-nav > :nth-child(2) { transition-delay: .15s; }
    .mobile-menu.is-open .mobile-nav > :nth-child(3) { transition-delay: .18s; }
    .mobile-menu.is-open .mobile-nav > :nth-child(4) { transition-delay: .21s; }
    .mobile-menu.is-open .mobile-nav > :nth-child(5) { transition-delay: .24s; }
    .mobile-menu.is-open .mobile-menu__feature { transition-delay: .27s; }
    .mobile-menu.is-open .mobile-menu__footer { transition-delay: .30s; }

    @media (max-width: 1080px) and (min-width: 821px) {
      .modern-nav {
        gap: 17px;
      }

      .desktop-nav {
        gap: 2px;
      }

      .desktop-nav__trigger,
      .desktop-nav__direct {
        padding-inline: 10px;
        font-size: .77rem;
      }

      .modern-nav__cta {
        min-width: 132px;
        font-size: .74rem;
      }

      .mega-menu {
        grid-template-columns: minmax(215px, .72fr) minmax(360px, 1.25fr) minmax(250px, .88fr);
      }
    }

    @media (max-width: 820px) {
      .site-header {
        padding: 12px 0;
      }

      .site-header.is-scrolled {
        padding-top: 8px;
      }

      .modern-nav {
        width: calc(100vw - 24px);
        min-height: 58px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0 6px 0 16px;
        background: rgba(255,255,255,.82);
      }

      .site-header.is-scrolled .modern-nav {
        min-height: 56px;
      }

      .desktop-nav,
      .modern-nav__cta {
        display: none !important;
      }

      .modern-menu-toggle {
        display: grid;
      }

      .mobile-menu {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .mobile-menu__panel {
        padding: 12px;
      }

      .mobile-menu__body {
        padding-top: 22px;
      }

      .mobile-menu__intro span {
        font-size: clamp(1.65rem, 8.7vw, 2.35rem);
      }

      .mobile-menu__feature {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 144px;
      }

      .mobile-menu__feature-art {
        height: 112px;
      }

      .mobile-menu__footer > span {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .mega-menu,
      .desktop-nav__trigger svg,
      .mobile-menu__backdrop,
      .mobile-menu__panel,
      .mobile-menu__top,
      .mobile-menu__intro,
      .mobile-nav > *,
      .mobile-menu__feature,
      .mobile-menu__footer,
      .mobile-nav__panel {
        transition: none !important;
      }
    }

/* ==========================================================================
   landing-home-navigation-solution-links
   ========================================================================== */
/* ==========================================================
   SEO-led navigation and connected platform section refresh
   ========================================================== */

/* Navigation spacing after adding the Insights link */
.desktop-nav { gap: 4px; }
.desktop-nav__trigger,
.desktop-nav__direct { padding-inline: 11px; }

.mega-menu__content--three-solutions {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
}

.mega-menu__primary-links--three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  height: 100%;
}

.mega-menu__primary-links--three .mega-link {
  min-height: 88px;
  padding: 14px 16px;
}

.mega-menu__primary-links--three .mega-link__copy small {
  max-width: 410px;
}

/* ==========================================================================
   landing-home-navigation-polish
   ========================================================================== */
/* Navigation polish: removes the translucent blur bleed around the right edge. */
  .modern-nav {
    padding-right: 4px;
    background: rgba(255, 255, 255, .94);
    background-clip: padding-box;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow:
      0 12px 30px rgba(32, 33, 36, .075),
      inset 0 1px 0 rgba(255, 255, 255, .96);
    isolation: isolate;
  }

  .site-header.is-scrolled .modern-nav {
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow:
      0 13px 32px rgba(32, 33, 36, .09),
      inset 0 1px 0 rgba(255, 255, 255, .98);
  }

  .modern-nav__cta {
    position: relative;
    z-index: 2;
    margin-right: 0;
  }

  /* Accessible mobile menu button with a clear open and close state. */
  .modern-menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    align-content: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid rgba(32, 33, 36, .10);
    border-radius: 16px;
    color: var(--graphite);
    background:
      radial-gradient(circle at 72% 20%, rgba(255, 255, 255, .95), transparent 35%),
      linear-gradient(145deg, rgba(194, 255, 2, .40), rgba(153, 254, 237, .28));
    box-shadow:
      0 9px 22px rgba(32, 33, 36, .08),
      inset 0 1px 0 rgba(255, 255, 255, .90);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform .2s ease,
      border-color .2s ease,
      background .2s ease,
      box-shadow .2s ease;
  }

  .modern-menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(32, 33, 36, .16);
    box-shadow:
      0 12px 25px rgba(32, 33, 36, .11),
      inset 0 1px 0 rgba(255, 255, 255, .94);
  }

  .modern-menu-toggle:active {
    transform: translateY(0) scale(.97);
  }

  .modern-menu-toggle:focus-visible {
    outline: 3px solid rgba(194, 255, 2, .48);
    outline-offset: 3px;
  }

  .modern-menu-toggle::before,
  .modern-menu-toggle::after,
  .modern-menu-toggle span {
    display: block;
  }

  .modern-menu-toggle .modern-menu-toggle__line {
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
      transform .24s cubic-bezier(.22, 1, .36, 1),
      width .2s ease,
      opacity .18s ease;
  }

  .modern-menu-toggle .modern-menu-toggle__line:nth-child(2) {
    width: 14px;
    justify-self: end;
  }

  .modern-menu-toggle[aria-expanded="true"] {
    background:
      radial-gradient(circle at 72% 20%, rgba(255, 255, 255, .95), transparent 35%),
      linear-gradient(145deg, rgba(217, 214, 253, .72), rgba(153, 254, 237, .34));
  }

  .modern-menu-toggle[aria-expanded="true"] .modern-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .modern-menu-toggle[aria-expanded="true"] .modern-menu-toggle__line:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .modern-menu-toggle[aria-expanded="true"] .modern-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 820px) {
    .modern-nav {
      width: calc(100vw - 24px);
      padding-right: 5px;
      background: rgba(255, 255, 255, .96);
      border-color: rgba(32, 33, 36, .07);
      box-shadow:
        0 10px 26px rgba(32, 33, 36, .075),
        inset 0 1px 0 rgba(255, 255, 255, .98);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .modern-menu-toggle,
    .modern-menu-toggle .modern-menu-toggle__line {
      transition: none;
    }
  }


/* Solution page integration with the landing page navigation. */
#siteHeader .mega-link[aria-current="page"],
#siteHeader .mobile-nav__panel a[aria-current="page"] {
  border-color: rgba(32,33,36,.14);
  background: linear-gradient(135deg, rgba(194,255,2,.22), rgba(153,254,237,.18));
}

#siteHeader .mega-link[aria-current="page"] .mega-link__arrow {
  transform: translate(2px, -2px);
}

#siteHeader .modern-nav__cta {
  color: var(--graphite);
}

@media (max-width: 820px) {
  #siteHeader .mobile-menu__feature { display: none; }
}

/* ==========================================================================
   company-store-service-explainer
   ========================================================================== */
.service-definition {
    margin-bottom: 24px;
    padding: 30px;
    border: 1px solid rgba(32,33,36,.10);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(217,214,253,.48));
    box-shadow: 0 18px 42px rgba(32,33,36,.06);
  }

  .service-definition__label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--lime);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .service-definition h3 {
    max-width: 680px;
    margin: 18px 0 0;
    font-size: clamp(1.65rem, 2.8vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .service-definition p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.72;
  }

  .fulfillment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 38px;
  }

  .fulfillment-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(32,33,36,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 32px rgba(32,33,36,.05);
  }

  .fulfillment-card--pod { background: linear-gradient(160deg, #fff, rgba(153,254,237,.38)); }
  .fulfillment-card--stock { background: linear-gradient(160deg, #fff, rgba(255,189,155,.36)); }
  .fulfillment-card--hybrid { background: linear-gradient(160deg, #fff, rgba(217,214,253,.52)); }

  .fulfillment-card__number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(32,33,36,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    font-size: .68rem;
    font-weight: 800;
  }

  .fulfillment-card h3 {
    margin: 22px 0 0;
    font-size: 1.18rem;
    line-height: 1.2;
    letter-spacing: -.03em;
  }

  .fulfillment-card p {
    margin: 11px 0 20px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.62;
  }

  .fulfillment-card small {
    margin-top: auto;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .outcome-list__heading {
    padding: 4px 0 18px;
  }

  .outcome-list__heading .eyebrow { margin-bottom: 10px; }

  .outcome-list__heading h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -.035em;
  }

  @media (max-width: 1180px) {
    .fulfillment-grid { grid-template-columns: 1fr; }
    .fulfillment-card { min-height: 0; }
  }

  @media (max-width: 760px) {
    .service-definition { padding: 24px 20px; border-radius: 22px; }
    .fulfillment-card { padding: 22px 20px; border-radius: 21px; }
    .hero-meta { align-items: stretch; }
    .hero-meta .meta-pill { justify-content: center; text-align: center; }
  }

/* ==========================================================================
   proof-row-final-fix
   ========================================================================== */
@media (min-width: 901px) {
  .proof-panel {
    grid-template-columns: minmax(0, 1.45fr) minmax(190px, .8fr) minmax(210px, .9fr) !important;
  }
  .proof-intro,
  .proof-item {
    grid-column: auto !important;
    border-top: 0 !important;
  }
  .proof-item {
    border-left: 1px solid var(--line) !important;
  }
}

/* ==========================================================================
   seo-offer-positioning-refinements
   ========================================================================== */
.why-shopify-panel {
    margin: 34px 0 42px;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(32,33,36,.1);
    border-radius: 30px;
    background:
      radial-gradient(circle at 92% 8%, rgba(194,255,2,.2), transparent 30%),
      linear-gradient(145deg, rgba(255,255,255,.98), rgba(245,245,243,.92));
    box-shadow: 0 22px 54px rgba(32,33,36,.07);
  }

  .why-shopify-panel__heading h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    word-spacing: .045em;
  }

  .why-shopify-panel__heading > p:last-child {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
  }

  .why-shopify-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .why-shopify-grid article {
    min-height: 205px;
    padding: 24px;
    border: 1px solid rgba(32,33,36,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
  }

  .why-shopify-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lime);
    font-size: .72rem;
    font-weight: 800;
  }

  .why-shopify-grid h4 {
    margin: 20px 0 8px;
    font-size: 1.12rem;
    letter-spacing: -.025em;
  }

  .why-shopify-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.65;
  }

  .why-shopify-note {
    margin-top: 16px;
    padding: 18px 20px;
    border-left: 4px solid var(--lime);
    border-radius: 0 16px 16px 0;
    background: rgba(194,255,2,.11);
    font-size: .94rem;
    line-height: 1.65;
  }

  .hero-title,
  .section-title,
  .offer-heading h2,
  .pricing-included-panel__heading h2,
  .testimonial-content h2 {
    word-spacing: .045em;
  }

  @media (max-width: 760px) {
    .why-shopify-grid { grid-template-columns: 1fr; }
    .why-shopify-grid article { min-height: 0; }
    .why-shopify-panel { border-radius: 24px; }
  }

/* ==========================================================================
   pain-led-hero-refinement
   ========================================================================== */
.hero-title {
    max-width: 700px;
    font-size: clamp(3.45rem, 4.7vw, 5.65rem);
    line-height: .96;
    letter-spacing: -.052em;
    text-wrap: balance;
  }

  .hero-subheadline {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--ink);
    font-size: clamp(1.28rem, 1.7vw, 1.72rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.026em;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 680px;
    margin-top: 15px;
  }

  @media (max-width: 1024px) {
    .hero-title {
      max-width: 760px;
      font-size: clamp(3.35rem, 8vw, 5.15rem);
    }
    .hero-subheadline { max-width: 720px; }
  }

  @media (max-width: 680px) {
    .hero-title {
      max-width: 100%;
      font-size: clamp(3rem, 14vw, 4.15rem);
      line-height: .98;
      letter-spacing: -.047em;
    }
    .hero-subheadline {
      margin-top: 16px;
      font-size: clamp(1.15rem, 5.2vw, 1.38rem);
      line-height: 1.4;
    }
    .hero-copy {
      margin-top: 12px;
      font-size: .98rem;
      line-height: 1.65;
    }
  }

/* ==========================================================================
   navigation-layer-alignment-final
   ========================================================================== */
/* Shared navigation geometry and layering */
  :root {
    --navigation-width: min(1240px, calc(100vw - 48px));
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-nav-connected {
    z-index: 320 !important;
  }

  .modern-nav {
    width: var(--navigation-width) !important;
    max-width: none !important;
  }

  .mega-menu {
    z-index: 360 !important;
  }

  .page-nav-wrap,
  .page-nav-wrap.is-stuck {
    z-index: 210 !important;
  }

  .page-nav-wrap > .page-shell {
    width: var(--navigation-width) !important;
    max-width: none !important;
  }

  .page-nav-shell {
    width: 100%;
  }

  /* Cleaner desktop hover targets: compact rounded rectangles, not circles. */
  .desktop-nav {
    gap: 5px !important;
  }

  .desktop-nav__trigger,
  .desktop-nav__direct {
    min-height: 40px !important;
    padding-inline: 13px !important;
    border-radius: 12px !important;
  }

  .desktop-nav__trigger:hover,
  .desktop-nav__trigger:focus-visible,
  .desktop-nav__direct:hover,
  .desktop-nav__direct:focus-visible,
  .desktop-nav__item.is-open .desktop-nav__trigger {
    background: rgba(32, 33, 36, .07) !important;
  }

  /* Give the two direct links enough visual breathing room. */
  .desktop-nav > .desktop-nav__direct + .desktop-nav__direct {
    margin-left: 6px;
  }

  /* Keep the global demo action lime and make the page action peach. */
  .modern-nav__cta {
    color: var(--ink) !important;
    background: var(--lime) !important;
    border-color: rgba(32, 33, 36, .05) !important;
    box-shadow: 0 10px 24px rgba(194, 255, 2, .22) !important;
  }

  .modern-nav__cta:hover,
  .modern-nav__cta:focus-visible {
    background: #b8f000 !important;
    box-shadow: 0 13px 28px rgba(194, 255, 2, .28) !important;
  }

  .page-nav .page-nav__cta {
    color: var(--ink) !important;
    background: var(--peach) !important;
    border-color: rgba(32, 33, 36, .08) !important;
    box-shadow: 0 9px 22px rgba(255, 189, 155, .30) !important;
  }

  .page-nav .page-nav__cta:hover,
  .page-nav .page-nav__cta:focus-visible {
    background: #ffab80 !important;
    border-color: rgba(32, 33, 36, .12) !important;
    box-shadow: 0 12px 27px rgba(255, 171, 128, .36) !important;
  }

  @media (max-width: 900px) {
    :root {
      --navigation-width: min(calc(100vw - 24px), 1240px);
    }

    .site-header,
    .site-header.is-scrolled,
    .site-header.is-nav-connected {
      z-index: 320 !important;
    }

    .mobile-menu {
      z-index: 350 !important;
    }

    .page-nav-wrap,
    .page-nav-wrap.is-stuck {
      z-index: 210 !important;
    }
  }

/* ==========================================================================
   secondary-cta-and-conversion-animation
   ========================================================================== */
/* The secondary navigation remains focused on section navigation on desktop. */
  @media (min-width: 901px) {
    .page-nav .desktop-hidden-secondary-cta {
      display: none !important;
    }
  }

  /* Restrained conversion cue: a short double pulse when the CTA enters view. */
  .conversion-cta {
    position: relative;
    isolation: isolate;
    transform: translateZ(0);
    will-change: transform, box-shadow;
  }

  .conversion-cta::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 2px solid rgba(194, 255, 2, .58);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
  }

  .conversion-cta.is-attention-active {
    animation: conversionCtaPulse 1.35s cubic-bezier(.22, .8, .24, 1) both;
  }

  .conversion-cta.is-attention-active::after {
    animation: conversionCtaRing 1.35s cubic-bezier(.22, .8, .24, 1) both;
  }

  .conversion-cta:hover,
  .conversion-cta:focus-visible {
    transform: translateY(-3px) scale(1.015);
  }

  @keyframes conversionCtaPulse {
    0%, 100% { transform: translateZ(0) scale(1); }
    18% { transform: translateZ(0) scale(1.035); }
    38% { transform: translateZ(0) scale(1); }
    58% { transform: translateZ(0) scale(1.025); }
    78% { transform: translateZ(0) scale(1); }
  }

  @keyframes conversionCtaRing {
    0% { opacity: 0; transform: scale(.96); }
    18% { opacity: .62; transform: scale(1.02); }
    42% { opacity: 0; transform: scale(1.10); }
    56% { opacity: .46; transform: scale(1.01); }
    100% { opacity: 0; transform: scale(1.12); }
  }

  @media (prefers-reduced-motion: reduce) {
    .conversion-cta,
    .conversion-cta::after,
    .conversion-cta.is-attention-active,
    .conversion-cta.is-attention-active::after {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

/* ==========================================================================
   sage-powered-page-refinement
   ========================================================================== */
.hero {
    background:
      radial-gradient(circle at 74% 18%, rgba(153,254,237,.5), transparent 25%),
      radial-gradient(circle at 14% 80%, rgba(217,214,253,.52), transparent 28%),
      linear-gradient(135deg, #ffffff 0%, #f5fffc 48%, #f6f4ff 100%);
  }

  .hero-title { max-width: 760px; }
  .hero-subheadline { max-width: 720px; }
  .hero .conversion-cta { background: var(--mint); box-shadow: 0 14px 30px rgba(153,254,237,.34); }
  .hero .conversion-cta:hover { box-shadow: 0 18px 36px rgba(153,254,237,.48); }

  .float-status--one { background: rgba(255,255,255,.94); }
  .float-status--two {
    right: -1%;
    bottom: 1%;
    left: auto;
    top: auto;
    max-width: 220px;
    background: rgba(255,255,255,.94);
  }
  .float-status--two .status-check { background: var(--mint); }

  .proof-intro { background: linear-gradient(135deg, rgba(153,254,237,.72), rgba(255,255,255,.95)); }
  .process-section { background: linear-gradient(180deg, #f4fffc 0%, #fbfbff 100%); }
  .process-card:nth-of-type(2n) { background: linear-gradient(145deg, #ffffff, rgba(153,254,237,.34)); }
  .process-card:nth-of-type(2n+1) { background: linear-gradient(145deg, #ffffff, rgba(217,214,253,.34)); }
  .process-connector-path { stroke: rgba(32,33,36,.38); }

  .pricing-section {
    background:
      radial-gradient(circle at 88% 10%, rgba(153,254,237,.45), transparent 22%),
      linear-gradient(180deg, #ffffff 0%, #f5fffc 100%);
  }
  .offer-heading h2 span { color: #0a7567; }
  .pricing-card--offer { border-color: rgba(34,151,135,.2); }
  .offer-price__main strong { letter-spacing: -.07em; }

  .promo-distributor-cta--simple {
    background:
      radial-gradient(circle at 85% 20%, rgba(194,255,2,.5), transparent 26%),
      radial-gradient(circle at 10% 90%, rgba(153,254,237,.55), transparent 30%),
      #ffffff;
  }

  .mega-link[aria-current="page"] {
    background: linear-gradient(135deg, rgba(153,254,237,.72), rgba(255,255,255,.96));
    border-color: rgba(32,33,36,.12);
  }

  @media (max-width: 1024px) {
    .float-status--two { right: 0; bottom: -1%; }
  }

  @media (max-width: 767px) {
    .float-status--two {
      right: 0;
      bottom: -4%;
      max-width: 184px;
      transform: scale(.9);
      transform-origin: right bottom;
    }
    .hero-meta { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .conversion-cta { animation: none !important; }
  }

/* ==========================================================================
   sage-connected-commercial-refinement
   ========================================================================== */
.mega-menu__intro .mega-menu__title {
    margin: 10px 0 0;
    max-width: 520px;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
  }

  .comparison-description {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.65;
  }

  .comparison-honesty-note {
    margin-top: 22px;
    padding: 22px 25px;
    border: 1px solid rgba(32,33,36,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    color: rgba(32,33,36,.72);
    font-size: .84rem;
    line-height: 1.65;
    box-shadow: 0 14px 38px rgba(32,33,36,.055);
  }

  .comparison-honesty-note strong { color: var(--ink); }

  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-capacity-note {
    max-width: 690px;
  }

  .trademark-note {
    margin: 34px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.48);
    font-size: .66rem;
    line-height: 1.6;
  }

  #problem,
  #outcomes,
  #process,
  #use-cases,
  #pricing,
  #client-proof,
  #fit,
  #faq {
    scroll-margin-top: calc(var(--page-nav-top, 96px) + 92px);
  }

  @media (max-width: 1080px) {
    .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 680px) {
    .use-case-grid { grid-template-columns: 1fr; }
    .comparison-honesty-note { padding: 18px; border-radius: 17px; }
    .mega-menu__intro .mega-menu__title { font-size: 2.25rem; }
  }

/* ==========================================================================
   sage-hero-testimonial-refresh
   ========================================================================== */
.store-browser__body {
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}
.store-browser__screenshot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}
.store-phone__screen {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}
.store-phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.testimonial-section--video {
  padding-top: 28px;
}
.testimonial-card--video {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 24px;
  align-items: stretch;
}
.testimonial-video {
  border: 1px solid rgba(28, 30, 38, .08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(217,214,253,.35), rgba(255,255,255,.98));
  padding: 28px;
  box-shadow: 0 26px 58px rgba(22, 24, 32, .08);
}
.testimonial-video__frame {
  margin-top: 14px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0f1117;
  box-shadow: 0 20px 44px rgba(9, 12, 20, .18);
}
.testimonial-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.testimonial-video__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: #1b1d23;
  text-decoration: none;
}
.testimonial-content--video {
  border: 1px solid rgba(28, 30, 38, .08);
  border-radius: 32px;
  background: #ffffff;
  padding: 34px 34px 32px;
  box-shadow: 0 26px 58px rgba(22, 24, 32, .08);
  justify-content: center;
}
.testimonial-content--video h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-top: 18px;
}
.testimonial-content--video blockquote {
  margin-top: 18px;
  font-size: 1.16rem;
  line-height: 1.72;
  color: rgba(24, 27, 34, .84);
}
.testimonial-note {
  margin-top: 18px;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(32, 33, 36, .68);
}
@media (max-width: 1024px) {
  .testimonial-card--video { grid-template-columns: 1fr; }
  .testimonial-video__frame { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .store-browser__screenshot { min-height: 240px; }
  .testimonial-video, .testimonial-content--video { border-radius: 24px; padding: 22px; }
  .testimonial-content--video h2 { font-size: clamp(1.72rem, 7vw, 2.25rem); }
  .testimonial-content--video blockquote { font-size: 1.03rem; line-height: 1.64; }
}

/* ==========================================================================
   sage-screenshot-sync-hero
   ========================================================================== */
/* SAGE source → Swishtag mapping → Shopify company store */
.hero-art {
  position: relative;
  min-height: 670px;
}
.sync-story {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(190px, .78fr) 154px minmax(360px, 1.62fr);
  align-items: center;
  gap: 20px;
  padding: 48px 26px 44px;
  border: 1px solid rgba(32,33,36,.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 18%, rgba(217,214,253,.64), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(153,254,237,.48), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(245,245,243,.92));
  box-shadow: 0 32px 80px rgba(32,33,36,.09);
  overflow: hidden;
}
.sync-story::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: 35%;
  top: 45%;
  border: 1px dashed rgba(32,33,36,.10);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.sync-source,
.sync-bridge,
.sync-outcome { position: relative; z-index: 2; }
.sync-source { align-self: start; margin-top: 72px; }
.sync-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(32,33,36,.08);
  box-shadow: 0 10px 25px rgba(32,33,36,.06);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(32,33,36,.68);
}
.sync-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(194,255,2,.14);
}
.sync-kicker--sage::before { background: var(--peach); box-shadow: 0 0 0 4px rgba(255,189,155,.18); }
.sync-kicker--map::before { background: var(--mint); box-shadow: 0 0 0 4px rgba(153,254,237,.20); }
.sync-browser {
  overflow: hidden;
  border: 1px solid rgba(32,33,36,.10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(32,33,36,.12);
}
.sync-browser__bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  background: #ecece9;
}
.sync-browser__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c9c5;
}
.sync-browser__bar span {
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .58rem;
  font-weight: 750;
  color: rgba(32,33,36,.58);
}
.sync-browser img { display: block; width: 100%; }
.sync-browser--sage img {
  height: 225px;
  object-fit: cover;
  object-position: center top;
}
.sync-caption {
  margin-top: 14px;
  padding-left: 4px;
}
.sync-caption strong,
.sync-caption span { display: block; }
.sync-caption strong {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.sync-caption span {
  margin-top: 6px;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(32,33,36,.62);
}
.sync-bridge {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}
.sync-flow-line {
  position: absolute;
  z-index: -1;
  left: -44px;
  right: -44px;
  top: 31%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, rgba(32,33,36,.28) 0 8px, transparent 8px 16px);
  animation: syncLineMove 1.15s linear infinite;
}
.sync-flow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(32,33,36,.38);
  border-right: 2px solid rgba(32,33,36,.38);
  transform: rotate(45deg);
}
.sync-flow-chip {
  position: absolute;
  top: -16px;
  left: -16%;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(32,33,36,.10);
  box-shadow: 0 12px 28px rgba(32,33,36,.11);
  font-size: .58rem;
  font-weight: 850;
  color: rgba(32,33,36,.78);
  opacity: 0;
  animation: dataTravelX 6.6s var(--ease) infinite;
}
.sync-flow-chip--2 { animation-delay: 2.2s; background: #f8f7ff; }
.sync-flow-chip--3 { animation-delay: 4.4s; background: #f2fffb; }
.sync-mapper {
  position: relative;
  width: 142px;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px;
  border-radius: 36px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(32,33,36,.10);
  box-shadow: 0 24px 56px rgba(32,33,36,.12);
}
.sync-mapper::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(32,33,36,.18);
  border-radius: 42px;
  animation: mapperPulse 3.6s ease-in-out infinite;
}
.sync-mapper__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lime);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.sync-mapper strong {
  display: block;
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.sync-mapper small {
  display: block;
  margin-top: 7px;
  color: rgba(32,33,36,.60);
  font-size: .65rem;
  line-height: 1.42;
}
.sync-outcome {
  min-height: 560px;
  align-self: center;
  padding-top: 2px;
}
.sync-browser--shopify {
  position: absolute;
  z-index: 2;
  width: 91%;
  right: 0;
  top: 46px;
  border-radius: 26px;
}
.sync-browser--shopify .sync-browser__bar { height: 39px; }
.sync-browser--shopify img {
  height: 385px;
  object-fit: cover;
  object-position: center top;
}
.sync-phone {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  width: 31%;
  padding: 7px;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(32,33,36,.24);
}
.sync-phone__top {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  min-width: 78%;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(32,33,36,.08);
  text-align: center;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(32,33,36,.68);
}
.sync-phone img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}
.sync-status {
  position: absolute;
  z-index: 7;
  min-width: 190px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.90);
  box-shadow: 0 18px 42px rgba(32,33,36,.12);
  backdrop-filter: blur(10px);
}
.sync-status > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(194,255,2,.22);
  font-size: .86rem;
  font-weight: 900;
}
.sync-status strong,
.sync-status small { display: block; }
.sync-status strong { font-size: .78rem; line-height: 1.2; }
.sync-status small { margin-top: 4px; font-size: .65rem; line-height: 1.35; color: rgba(32,33,36,.62); }
.sync-status--catalog { left: 0; bottom: 30px; }
.sync-status--mobile { right: 24%; top: 30px; }
@keyframes syncLineMove { to { background-position: 32px 0; } }
@keyframes dataTravelX {
  0%, 8% { left: -18%; opacity: 0; transform: translateY(0) scale(.94); }
  16% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { left: 96%; opacity: 0; transform: translateY(-2px) scale(1); }
}
@keyframes mapperPulse {
  0%, 100% { opacity: .5; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.015); }
}
@media (max-width: 1180px) {
  .sync-story { grid-template-columns: minmax(180px,.72fr) 136px minmax(320px,1.5fr); padding-inline: 22px; gap: 16px; }
  .sync-mapper { width: 126px; min-height: 126px; border-radius: 32px; }
  .sync-flow-line { left: -36px; right: -36px; }
  .sync-browser--shopify img { height: 360px; }
  .sync-phone img { height: 350px; }
}
@media (max-width: 1024px) {
  .hero-art { min-height: auto; }
  .sync-story {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px 30px;
  }
  .sync-story::before { left: 50%; top: 42%; }
  .sync-source { margin-top: 0; }
  .sync-source,
  .sync-outcome { width: 100%; max-width: 720px; margin-inline: auto; }
  .sync-browser--sage img { height: 260px; }
  .sync-caption { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .sync-caption span { margin-top: 0; text-align: right; }
  .sync-bridge { min-height: 152px; }
  .sync-flow-line {
    left: 50%;
    right: auto;
    top: -12px;
    width: 2px;
    height: 176px;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(to bottom, rgba(32,33,36,.28) 0 8px, transparent 8px 16px);
    animation-name: syncLineMoveY;
  }
  .sync-flow-line::after {
    right: -4px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
  .sync-flow-chip {
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    animation-name: dataTravelY;
  }
  .sync-outcome { min-height: 620px; }
  .sync-browser--shopify { width: 94%; top: 48px; }
  .sync-browser--shopify img { height: 410px; }
  .sync-phone { width: 29%; }
  .sync-phone img { height: 400px; }
  .sync-status--catalog { left: 0; bottom: 26px; }
  .sync-status--mobile { right: 23%; top: 28px; }
}
@keyframes syncLineMoveY { to { background-position: 0 32px; } }
@keyframes dataTravelY {
  0%, 8% { top: -14%; opacity: 0; transform: translateX(-50%) scale(.94); }
  16% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { top: 94%; opacity: 0; transform: translateX(-50%) scale(1); }
}
@media (max-width: 680px) {
  .sync-story { padding: 22px 14px 24px; border-radius: 30px; }
  .sync-kicker { margin-bottom: 9px; padding: 7px 9px; font-size: .55rem; }
  .sync-browser { border-radius: 18px; }
  .sync-browser__bar { height: 31px; }
  .sync-browser--sage img { height: 205px; }
  .sync-caption { display: block; }
  .sync-caption span { margin-top: 5px; text-align: left; }
  .sync-bridge { min-height: 136px; }
  .sync-mapper { width: 116px; min-height: 116px; border-radius: 28px; }
  .sync-outcome { min-height: 500px; }
  .sync-browser--shopify { width: 100%; top: 42px; border-radius: 19px; }
  .sync-browser--shopify .sync-browser__bar { height: 33px; }
  .sync-browser--shopify img { height: 290px; }
  .sync-phone { width: 39%; right: 3px; bottom: 0; border-radius: 24px; padding: 5px; }
  .sync-phone__top { top: 9px; padding: 5px 6px; font-size: .44rem; }
  .sync-phone img { height: 300px; border-radius: 19px; }
  .sync-status { min-width: 0; max-width: 188px; grid-template-columns: 29px 1fr; padding: 10px; border-radius: 14px; }
  .sync-status > span { width: 29px; height: 29px; font-size: .74rem; }
  .sync-status strong { font-size: .7rem; }
  .sync-status small { font-size: .59rem; }
  .sync-status--catalog { left: 4px; bottom: 12px; }
  .sync-status--mobile { right: 30%; top: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .sync-flow-line,
  .sync-flow-chip,
  .sync-mapper::before { animation: none !important; }
  .sync-flow-chip { display: none; }
}

/* ==========================================================================
   sage-hero-logo-mobile-refine
   ========================================================================== */
.hero-art {
  position: relative;
  min-height: 690px;
}
.hero-sync-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) 170px minmax(0, 1.45fr);
  align-items: center;
  gap: 28px;
  min-height: 690px;
}
.hero-sync-stage::before {
  content: "";
  position: absolute;
  inset: 18px 0 20px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(217,214,253,.40) 46%, rgba(153,254,237,.30) 100%);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 34px 72px rgba(18,22,30,.09);
}
.hero-source-panel,
.hero-center-sync,
.hero-store-cluster { position: relative; z-index: 1; }
.hero-source-panel {
  margin-left: 18px;
  padding: 26px 22px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 22px 50px rgba(21,25,32,.08);
}
.hero-source-kicker,
.hero-store-intro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(28,30,38,.08);
  font-size: .68rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(27,29,35,.68);
}
.hero-source-kicker::before,
.hero-store-intro::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(194,255,2,.16);
}
.hero-source-logo-box {
  margin-top: 18px;
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,243,.95));
  border: 1px solid rgba(28,30,38,.06);
}
.hero-source-logo {
  display: block;
  width: min(100%, 172px);
  height: auto;
  object-fit: contain;
}
.hero-source-title {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.hero-source-copy {
  margin-top: 10px;
  font-size: .98rem;
  line-height: 1.55;
  color: rgba(27,29,35,.72);
}
.hero-source-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-source-list li {
  position: relative;
  padding-left: 20px;
  font-size: .94rem;
  line-height: 1.4;
  color: rgba(27,29,35,.78);
}
.hero-source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 4px rgba(255,189,155,.18);
  transform: translateY(-50%);
}
.hero-center-sync {
  display: grid;
  place-items: center;
}
.hero-sync-orbit {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px dashed rgba(28,30,38,.20);
  animation: swSyncSpin 16s linear infinite;
}
.hero-sync-orbit::before,
.hero-sync-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(194,255,2,.12);
}
.hero-sync-orbit::before { top: -5px; left: calc(50% - 5px); }
.hero-sync-orbit::after { bottom: -5px; left: calc(50% - 5px); background: var(--peach); box-shadow: 0 0 0 6px rgba(255,189,155,.12); }
.hero-sync-node {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.98), rgba(255,255,255,.93) 46%, rgba(153,254,237,.46) 100%);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.72), 0 18px 42px rgba(18,22,30,.10);
}
.hero-sync-node__badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,189,155,.30);
  color: #975837;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.hero-sync-node strong {
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.hero-sync-node small {
  margin-top: 6px;
  font-size: .73rem;
  line-height: 1.3;
  color: rgba(27,29,35,.68);
}
.hero-data-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-data-pill {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 14px 32px rgba(18,22,30,.08);
  font-size: .72rem;
  font-weight: 800;
  color: #1b1d23;
  white-space: nowrap;
  opacity: 0;
}
.hero-data-pill::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
}
.hero-data-pill--1 { animation: pillFlowOne 6.8s infinite; }
.hero-data-pill--2 { animation: pillFlowTwo 6.8s infinite; }
.hero-data-pill--3 { animation: pillFlowThree 6.8s infinite; }
.hero-store-cluster {
  position: relative;
  min-height: 610px;
  padding-right: 16px;
}
.hero-store-intro {
  position: absolute;
  top: 34px;
  left: 18px;
  z-index: 8;
}
.hero-store-browser {
  position: absolute;
  left: 0;
  top: 84px;
  width: 82%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.85);
  background: #fff;
  box-shadow: 0 34px 70px rgba(21,25,32,.14);
}
.hero-store-browser__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  background: #ecece9;
}
.hero-store-browser__bar i {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(27,29,35,.25);
}
.hero-store-browser__bar span {
  margin-left: 6px;
  font-size: .72rem;
  color: rgba(27,29,35,.56);
}
.hero-store-browser__label {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 10px 24px rgba(22,24,32,.06);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(27,29,35,.62);
}
.hero-store-browser__label::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(194,255,2,.16);
}
.hero-store-browser__image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  padding-top: 52px;
  box-sizing: border-box;
}
.hero-store-phone {
  position: absolute;
  right: 0;
  top: 116px;
  width: 31%;
  padding: 7px;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 26px 56px rgba(21,25,32,.18);
  animation: phoneLift 5.4s ease-in-out infinite;
}
.hero-store-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%; transform: translateX(-50%);
  width: 34%; height: 18px; border-radius: 0 0 14px 14px; background: #0f1117; z-index: 2;
}
.hero-store-phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 506px;
  background: #fff;
}
.hero-store-phone__label {
  position: absolute;
  left: 12px; top: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.95); border: 1px solid rgba(28,30,38,.08);
  font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(27,29,35,.62);
}
.hero-store-phone__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--peach); }
.hero-store-phone__image {
  display: block;
  width: 100%;
  height: 506px;
  object-fit: cover;
  object-position: top center;
  padding-top: 40px;
  box-sizing: border-box;
}
.hero-status {
  position: absolute;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 214px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 18px 40px rgba(18,22,30,.10);
}
.hero-status--sync { left: 14px; bottom: 34px; }
.hero-status--rules { right: calc(31% + 18px); top: 452px; }
.hero-status__icon {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(194,255,2,.22); color: #1b1d23; font-size: 1rem; font-weight: 900;
}
.hero-status__icon--peach { background: rgba(255,189,155,.30); color: #975837; }
.hero-status__copy strong { display: block; font-size: .88rem; line-height: 1.15; }
.hero-status__copy small { display: block; margin-top: 4px; font-size: .73rem; line-height: 1.3; color: rgba(27,29,35,.64); }
@keyframes swSyncSpin { to { transform: rotate(360deg); } }
@keyframes pillFlowOne {
  0%,12% { opacity: 0; transform: translate(-100px,-8px) scale(.94); }
  18%,48% { opacity: 1; transform: translate(0,-76px) scale(1); }
  62%,100% { opacity: 0; transform: translate(120px,-8px) scale(.94); }
}
@keyframes pillFlowTwo {
  0%,26% { opacity: 0; transform: translate(-94px,20px) scale(.94); }
  32%,58% { opacity: 1; transform: translate(0,84px) scale(1); }
  74%,100% { opacity: 0; transform: translate(114px,22px) scale(.94); }
}
@keyframes pillFlowThree {
  0%,40% { opacity: 0; transform: translate(-92px,0) scale(.94); }
  46%,74% { opacity: 1; transform: translate(0,0) scale(1); }
  88%,100% { opacity: 0; transform: translate(116px,0) scale(.94); }
}
@keyframes phoneLift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1180px) {
  .hero-sync-stage { grid-template-columns: minmax(220px, .74fr) 150px minmax(0, 1.4fr); gap: 20px; }
  .hero-store-cluster { padding-right: 10px; }
  .hero-store-browser { width: 80%; }
  .hero-store-phone { width: 33%; }
  .hero-status--rules { right: calc(33% + 12px); }
}
@media (max-width: 1024px) {
  .hero-art, .hero-sync-stage { min-height: auto; }
  .hero-sync-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px 0 0;
  }
  .hero-sync-stage::before {
    inset: 0;
    border-radius: 34px;
  }
  .hero-source-panel {
    margin: 0 16px;
    padding: 22px 18px 18px;
  }
  .hero-center-sync {
    min-height: 164px;
  }
  .hero-sync-orbit { width: 138px; height: 138px; }
  .hero-sync-node { width: 120px; height: 120px; }
  .hero-store-cluster {
    min-height: 720px;
    padding-right: 0;
    margin: 0 16px 16px;
  }
  .hero-store-intro { top: 14px; left: 14px; }
  .hero-store-browser {
    width: 100%;
    left: 0;
    top: 56px;
  }
  .hero-store-browser__image { height: 390px; }
  .hero-store-phone {
    right: 14px;
    top: 334px;
    width: 34%;
  }
  .hero-store-phone__screen,
  .hero-store-phone__image { min-height: 446px; height: 446px; }
  .hero-status--sync { left: 12px; bottom: 22px; }
  .hero-status--rules { right: calc(34% + 12px); top: 488px; }
}
@media (max-width: 767px) {
  .hero-source-panel { margin: 0 12px; border-radius: 24px; }
  .hero-source-title { font-size: 1.18rem; }
  .hero-center-sync { min-height: 138px; }
  .hero-sync-orbit { width: 120px; height: 120px; }
  .hero-sync-node { width: 104px; height: 104px; }
  .hero-sync-node__badge { font-size: .5rem; }
  .hero-sync-node strong { font-size: .88rem; }
  .hero-sync-node small { font-size: .68rem; }
  .hero-data-pill { padding: 8px 11px; font-size: .64rem; }
  .hero-store-cluster {
    min-height: 705px;
    margin: 0 12px 12px;
  }
  .hero-store-intro { top: 10px; left: 10px; font-size: .62rem; padding: 7px 10px; }
  .hero-store-browser {
    top: 48px;
    width: 100%;
    border-radius: 22px;
  }
  .hero-store-browser__bar { height: 36px; padding: 0 12px; }
  .hero-store-browser__bar i { width: 8px; height: 8px; }
  .hero-store-browser__bar span { font-size: .64rem; }
  .hero-store-browser__label {
    left: 12px; top: 11px; padding: 7px 10px; font-size: .52rem;
  }
  .hero-store-browser__image {
    height: 260px;
    padding-top: 42px;
  }
  .hero-store-phone {
    width: 38%;
    right: 10px;
    top: 210px;
    border-radius: 24px;
    padding: 6px;
  }
  .hero-store-phone__notch { top: 7px; height: 15px; }
  .hero-store-phone__screen,
  .hero-store-phone__image { min-height: 328px; height: 328px; border-radius: 19px; }
  .hero-store-phone__label { left: 10px; top: 10px; font-size: .48rem; padding: 6px 8px; }
  .hero-store-phone__image { padding-top: 34px; }
  .hero-status {
    min-width: 0;
    max-width: 182px;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 10px 11px;
    border-radius: 14px;
  }
  .hero-status__icon { width: 30px; height: 30px; font-size: .88rem; }
  .hero-status__copy strong { font-size: .75rem; }
  .hero-status__copy small { font-size: .64rem; }
  .hero-status--sync { left: 8px; bottom: 14px; }
  .hero-status--rules { right: calc(38% + 8px); top: 360px; }
}

/* ==========================================================================
   simple-sync-hero-styles
   ========================================================================== */
.hero-art--simple-sync {
  position: relative;
  min-height: 620px;
}
.simple-sync-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(170px, .75fr) minmax(240px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 620px;
  padding: 22px 0;
}
.simple-sync-stage::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  border-radius: 40px;
  background: linear-gradient(140deg, rgba(255,255,255,.98) 0%, rgba(217,214,253,.40) 50%, rgba(153,254,237,.28) 100%);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 30px 70px rgba(21,25,32,.08);
}
.simple-sync-source,
.simple-sync-center,
.simple-sync-store { position: relative; z-index: 1; }
.simple-sync-source {
  margin-left: 18px;
  padding: 24px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 20px 46px rgba(21,25,32,.07);
}
.simple-sync-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(28,30,38,.08);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(27,29,35,.68);
}
.simple-sync-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(194,255,2,.16);
}
.simple-sync-logo-card {
  margin-top: 18px;
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,243,.95));
  border: 1px solid rgba(28,30,38,.06);
}
.simple-sync-logo {
  display: block;
  width: min(100%, 170px);
  height: auto;
  object-fit: contain;
}
.simple-sync-title {
  margin-top: 18px;
  font-size: clamp(1.36rem, 1.9vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.simple-sync-copy {
  margin-top: 10px;
  font-size: .98rem;
  line-height: 1.56;
  color: rgba(27,29,35,.72);
}
.simple-sync-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.simple-sync-list li {
  position: relative;
  padding-left: 20px;
  font-size: .94rem;
  line-height: 1.4;
  color: rgba(27,29,35,.78);
}
.simple-sync-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 4px rgba(255,189,155,.18);
  transform: translateY(-50%);
}
.simple-sync-center {
  min-height: 270px;
  display: grid;
  place-items: center;
}
.simple-sync-line {
  position: absolute;
  top: 50%;
  height: 2px;
  width: calc(50% - 72px);
  background-image: repeating-linear-gradient(to right, rgba(28,30,38,.28) 0 9px, transparent 9px 17px);
  animation: simpleDashFlow 1.25s linear infinite;
}
.simple-sync-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(28,30,38,.36);
  border-right: 2px solid rgba(28,30,38,.36);
  transform: rotate(45deg);
}
.simple-sync-line--left { left: 0; }
.simple-sync-line--right { right: 0; }
.simple-sync-node {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.99), rgba(255,255,255,.94) 46%, rgba(153,254,237,.46) 100%);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.72), 0 18px 42px rgba(18,22,30,.10);
}
.simple-sync-node::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(28,30,38,.18);
  animation: simpleOrbitSpin 16s linear infinite;
}
.simple-sync-node__badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,189,155,.30);
  color: #975837;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.simple-sync-node strong {
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.simple-sync-node small {
  margin-top: 6px;
  font-size: .72rem;
  line-height: 1.3;
  color: rgba(27,29,35,.68);
  padding-inline: 10px;
}
.simple-sync-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 14px 32px rgba(18,22,30,.08);
  font-size: .70rem;
  font-weight: 800;
  color: #1b1d23;
  white-space: nowrap;
  opacity: 0;
  z-index: 3;
}
.simple-sync-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
}
.simple-sync-chip--a { animation: simpleChipA 6.8s infinite; }
.simple-sync-chip--b { animation: simpleChipB 6.8s infinite; }
.simple-sync-chip--c { animation: simpleChipC 6.8s infinite; }
.simple-sync-store {
  margin-right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.simple-sync-phone {
  position: relative;
  width: min(100%, 290px);
  margin-top: 18px;
  padding: 8px;
  border-radius: 32px;
  background: var(--ink);
  box-shadow: 0 26px 56px rgba(21,25,32,.18);
  animation: simplePhoneLift 5.4s ease-in-out infinite;
}
.simple-sync-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #0f1117;
  z-index: 2;
}
.simple-sync-phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  min-height: 520px;
  background: #fff;
}
.simple-sync-phone__label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(28,30,38,.08);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(27,29,35,.62);
}
.simple-sync-phone__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}
.simple-sync-phone__image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  padding-top: 40px;
  box-sizing: border-box;
}
.simple-sync-status {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  width: min(100%, 280px);
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,30,38,.08);
  box-shadow: 0 18px 40px rgba(18,22,30,.08);
}
.simple-sync-status__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(194,255,2,.22);
  color: #1b1d23;
  font-size: 1rem;
  font-weight: 900;
}
.simple-sync-status__copy strong {
  display: block;
  font-size: .88rem;
  line-height: 1.15;
}
.simple-sync-status__copy small {
  display: block;
  margin-top: 4px;
  font-size: .73rem;
  line-height: 1.3;
  color: rgba(27,29,35,.64);
}
@keyframes simpleDashFlow {
  from { background-position: 0 0; }
  to { background-position: 26px 0; }
}
@keyframes simpleOrbitSpin {
  to { transform: rotate(360deg); }
}
@keyframes simpleChipA {
  0%,12% { opacity: 0; transform: translate(-90px, 0) scale(.94); }
  18%,48% { opacity: 1; transform: translate(0, -84px) scale(1); }
  62%,100% { opacity: 0; transform: translate(98px, 0) scale(.94); }
}
@keyframes simpleChipB {
  0%,28% { opacity: 0; transform: translate(-90px, 12px) scale(.94); }
  34%,60% { opacity: 1; transform: translate(0, 86px) scale(1); }
  74%,100% { opacity: 0; transform: translate(98px, 12px) scale(.94); }
}
@keyframes simpleChipC {
  0%,44% { opacity: 0; transform: translate(-84px, -12px) scale(.94); }
  50%,74% { opacity: 1; transform: translate(0, 0) scale(1); }
  88%,100% { opacity: 0; transform: translate(98px, -12px) scale(.94); }
}
@keyframes simplePhoneLift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1180px) {
  .simple-sync-stage {
    grid-template-columns: minmax(220px, .9fr) minmax(160px, .7fr) minmax(220px, .92fr);
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .hero-art--simple-sync,
  .simple-sync-stage { min-height: auto; }
  .simple-sync-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px 0 0;
  }
  .simple-sync-stage::before {
    inset: 0;
    border-radius: 34px;
  }
  .simple-sync-source {
    margin: 0 16px;
    padding: 22px 18px;
  }
  .simple-sync-center {
    min-height: 170px;
  }
  .simple-sync-line {
    left: 50%;
    width: 2px;
    height: calc(50% - 72px);
    background-image: repeating-linear-gradient(to bottom, rgba(28,30,38,.28) 0 9px, transparent 9px 17px);
  }
  .simple-sync-line::after {
    right: -4px;
    top: auto;
    bottom: -1px;
    transform: rotate(135deg);
  }
  .simple-sync-line--left {
    top: 0;
    transform: translateX(-50%);
  }
  .simple-sync-line--right {
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
  .simple-sync-store {
    margin: 0 16px 16px;
  }
  .simple-sync-phone {
    width: min(100%, 300px);
  }
  .simple-sync-phone__screen,
  .simple-sync-phone__image { min-height: 520px; height: 520px; }
}
@media (max-width: 767px) {
  .simple-sync-source {
    margin: 0 12px;
    border-radius: 24px;
    padding: 18px 16px;
  }
  .simple-sync-title { font-size: 1.18rem; }
  .simple-sync-copy { font-size: .92rem; }
  .simple-sync-center { min-height: 150px; }
  .simple-sync-node { width: 110px; height: 110px; }
  .simple-sync-node__badge { font-size: .48rem; }
  .simple-sync-node strong { font-size: .88rem; }
  .simple-sync-node small { font-size: .66rem; }
  .simple-sync-chip { padding: 8px 10px; font-size: .62rem; }
  .simple-sync-store {
    margin: 0 12px 12px;
  }
  .simple-sync-phone {
    width: min(100%, 250px);
    border-radius: 26px;
    padding: 6px;
  }
  .simple-sync-phone__notch { top: 7px; height: 15px; }
  .simple-sync-phone__screen,
  .simple-sync-phone__image { min-height: 430px; height: 430px; border-radius: 20px; }
  .simple-sync-phone__image { padding-top: 34px; }
  .simple-sync-phone__label { left: 10px; top: 10px; font-size: .48rem; padding: 6px 8px; }
  .simple-sync-status {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    width: min(100%, 250px);
    padding: 10px 11px;
    border-radius: 14px;
  }
  .simple-sync-status__icon { width: 30px; height: 30px; font-size: .86rem; }
  .simple-sync-status__copy strong { font-size: .76rem; }
  .simple-sync-status__copy small { font-size: .64rem; }
}

/* ==========================================================================
   simple-sync-hero-2026-refinement
   ========================================================================== */
/* Refined hero visual: lighter background blobs, smaller sync node, cleaner right-side phone. */
  .hero-art--simple-sync {
    min-height: 560px;
  }

  .simple-sync-stage {
    min-height: 560px;
    grid-template-columns: minmax(170px, .78fr) minmax(132px, .52fr) minmax(190px, .82fr);
    gap: clamp(22px, 3vw, 44px);
    padding: 18px 18px;
    isolation: isolate;
  }

  .simple-sync-stage::before,
  .simple-sync-stage::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .simple-sync-stage::before {
    width: min(38vw, 360px);
    height: min(30vw, 280px);
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 46% 54% 52% 48% / 46% 44% 56% 54%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.94) 0, rgba(255,255,255,.78) 18%, rgba(255,189,155,.30) 46%, rgba(217,214,253,.18) 68%, transparent 76%);
  }

  .simple-sync-stage::after {
    width: min(40vw, 390px);
    height: min(32vw, 300px);
    right: 1%;
    top: 50%;
    transform: translateY(-48%) rotate(-8deg);
    border-radius: 56% 44% 42% 58% / 48% 58% 42% 52%;
    background:
      radial-gradient(circle at 62% 42%, rgba(255,255,255,.90) 0, rgba(255,255,255,.72) 18%, rgba(153,254,237,.34) 48%, rgba(217,214,253,.22) 70%, transparent 78%);
  }

  .simple-sync-route {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  .simple-sync-route__halo,
  .simple-sync-route__path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .simple-sync-route__halo {
    stroke: rgba(255,255,255,.96);
    stroke-width: 7;
  }

  .simple-sync-route__path {
    stroke: rgba(28,30,38,.40);
    stroke-width: 2;
    stroke-dasharray: 3 12;
    animation: simpleRouteFlow 1.1s linear infinite;
  }

  .simple-sync-packet {
    opacity: 0;
    fill: var(--lime);
    stroke: #fff;
    stroke-width: 3;
    filter: drop-shadow(0 5px 8px rgba(32,33,36,.18));
  }

  .simple-sync-packet--two { fill: var(--peach); }
  .simple-sync-packet--three { fill: var(--mint); }

  .simple-sync-source,
  .simple-sync-center,
  .simple-sync-store {
    z-index: 3;
  }

  .simple-sync-source--logo-only {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    place-items: center;
  }

  .simple-sync-logo-card {
    width: min(100%, 196px);
    min-height: 126px;
    margin: 0;
    padding: 22px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(28,30,38,.08);
    box-shadow:
      0 18px 48px rgba(21,25,32,.09),
      0 0 0 10px rgba(255,189,155,.08);
  }

  .simple-sync-logo {
    width: min(100%, 160px);
  }

  .simple-sync-center {
    min-height: 220px;
    display: grid;
    place-items: center;
  }

  .simple-sync-node {
    width: 118px;
    height: 118px;
    background:
      radial-gradient(circle at 38% 28%, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 44%, rgba(217,214,253,.56) 78%, rgba(153,254,237,.42) 100%);
    border: 1px solid rgba(28,30,38,.08);
    box-shadow:
      inset 0 0 0 10px rgba(255,255,255,.76),
      0 18px 44px rgba(18,22,30,.12),
      0 0 0 10px rgba(255,255,255,.34);
  }

  .simple-sync-node::before {
    inset: -14px;
    border-width: 2px;
    border-style: dotted;
    border-color: rgba(28,30,38,.24);
    animation: simpleOrbitSpin 16s linear infinite;
  }

  .simple-sync-node::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: -19px;
    left: calc(50% - 5px);
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(194,255,2,.14);
  }

  .simple-sync-node strong {
    margin: 0;
    font-size: .95rem;
    line-height: 1;
    letter-spacing: -.03em;
  }

  .simple-sync-node small { display: none; }

  .simple-sync-store--phone-only {
    margin: 0;
    display: grid;
    align-items: center;
    justify-content: center;
  }

  .simple-sync-phone {
    position: relative;
    width: min(100%, 206px);
    margin: 0;
    padding: 7px;
    border-radius: 28px;
    transform: rotate(1.4deg);
    box-shadow: 0 24px 54px rgba(21,25,32,.18);
    animation: simplePhoneLiftRefined 5.8s ease-in-out infinite;
  }

  .simple-sync-phone::before {
    content: "";
    position: absolute;
    inset: -16px -18px -18px -18px;
    z-index: -1;
    border-radius: 44% 56% 48% 52% / 52% 40% 60% 48%;
    background:
      radial-gradient(circle at 50% 36%, rgba(255,255,255,.60), rgba(217,214,253,.26) 42%, rgba(153,254,237,.24) 68%, transparent 76%);
  }

  .simple-sync-phone__screen {
    min-height: 378px;
    border-radius: 23px;
  }

  .simple-sync-phone__image {
    height: 378px;
    min-height: 378px;
    padding-top: 22px;
    border-radius: 23px;
  }

  .simple-sync-phone__notch {
    top: 7px;
    height: 14px;
  }

  @keyframes simpleRouteFlow {
    to { stroke-dashoffset: -30; }
  }

  @keyframes simplePhoneLiftRefined {
    0%, 100% { transform: rotate(1.4deg) translateY(0); }
    50% { transform: rotate(.4deg) translateY(-8px); }
  }

  @media (max-width: 1180px) {
    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 530px; }

    .simple-sync-stage {
      grid-template-columns: minmax(156px, .74fr) minmax(124px, .50fr) minmax(178px, .76fr);
      gap: 20px;
      padding-inline: 14px;
    }

    .simple-sync-logo-card { width: min(100%, 184px); min-height: 120px; }
    .simple-sync-node { width: 112px; height: 112px; }
    .simple-sync-node::before { inset: -13px; }
    .simple-sync-phone { width: min(100%, 194px); }
    .simple-sync-phone__screen,
    .simple-sync-phone__image { min-height: 360px; height: 360px; }
  }

  @media (max-width: 1024px) {
    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 820px; }

    .simple-sync-stage {
      grid-template-columns: 1fr;
      grid-template-rows: 170px 180px minmax(370px, auto);
      gap: 18px;
      padding: 18px 20px 28px;
    }

    .simple-sync-stage::before {
      width: min(72vw, 360px);
      height: min(46vw, 250px);
      left: 50%;
      top: 10px;
      transform: translateX(-50%);
    }

    .simple-sync-stage::after {
      width: min(76vw, 390px);
      height: min(50vw, 280px);
      right: 50%;
      top: auto;
      bottom: 18px;
      transform: translateX(50%) rotate(-8deg);
    }

    .simple-sync-logo-card { width: min(72vw, 214px); min-height: 132px; }
    .simple-sync-center { min-height: 180px; }
    .simple-sync-node { width: 128px; height: 128px; }
    .simple-sync-node::before { inset: -15px; }
    .simple-sync-phone { width: min(66vw, 218px); }
    .simple-sync-phone__screen,
    .simple-sync-phone__image { min-height: 392px; height: 392px; }
  }

  @media (max-width: 620px) {
    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 710px; }

    .simple-sync-stage {
      grid-template-rows: 148px 162px minmax(330px, auto);
      gap: 14px;
      padding: 14px 12px 22px;
    }

    .simple-sync-logo-card {
      width: min(70vw, 180px);
      min-height: 112px;
      padding: 18px 16px;
      border-radius: 24px;
    }

    .simple-sync-logo { width: min(100%, 140px); }
    .simple-sync-center { min-height: 150px; }
    .simple-sync-node { width: 114px; height: 114px; }
    .simple-sync-node::before { inset: -13px; }
    .simple-sync-node::after { top: -18px; }
    .simple-sync-node strong { font-size: .9rem; }
    .simple-sync-phone {
      width: min(64vw, 196px);
      border-radius: 24px;
      padding: 6px;
    }

    .simple-sync-phone__screen,
    .simple-sync-phone__image {
      min-height: 338px;
      height: 338px;
      border-radius: 20px;
    }

    .simple-sync-phone__image { padding-top: 20px; }
    .simple-sync-phone__notch { top: 6px; height: 12px; }
    .simple-sync-route__path { stroke-width: 1.85; stroke-dasharray: 3 10; }
  }

  @media (prefers-reduced-motion: reduce) {
    .simple-sync-route__path,
    .simple-sync-node::before,
    .simple-sync-phone { animation: none !important; }
    .simple-sync-packets { display: none; }
  }

/* ==========================================================================
   simple-sync-hero-v3-refinement
   ========================================================================== */
/* V3 hero refinement: cleaner path connection, softer abstract background, smaller phone and sync node. */
  .hero-content .hero-actions { margin-top: 22px; }
  .hero-content .hero-meta { margin-top: 14px; }

  .hero-trust-rail.hero-trust-inline {
    margin-top: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 16px 40px rgba(32,33,36,.055);
  }

  .hero-trust-inline .official-trust-badge {
    min-height: 72px;
    gap: 10px;
  }

  .hero-trust-inline .official-trust-logo--shopify-lite,
  .hero-trust-inline .official-trust-logo--delivery {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .hero-trust-inline .official-trust-logo--shopify-lite > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #95BF47;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(149,191,71,.14);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.04em;
  }

  .hero-trust-inline .official-trust-logo--delivery > span {
    width: 40px;
    height: 40px;
  }

  .hero-trust-inline .official-trust-logo--trustpilot {
    width: 72px;
    min-width: 72px;
    height: auto;
  }

  .hero-trust-inline .trustpilot-wordmark {
    gap: 5px;
  }

  .hero-trust-inline .trustpilot-wordmark svg {
    width: 16px;
    height: 16px;
  }

  .hero-trust-inline .trustpilot-wordmark strong { font-size: .72rem; }
  .hero-trust-inline .trustpilot-stars span {
    width: 13px;
    height: 13px;
    font-size: .5rem;
  }

  .hero-trust-inline .official-trust-copy small { margin-bottom: 4px; }
  .hero-trust-inline .official-trust-copy strong {
    font-size: .72rem;
    line-height: 1.2;
  }

  .hero-art--simple-sync,
  .simple-sync-stage {
    min-height: 500px;
  }

  .simple-sync-stage {
    grid-template-columns: minmax(170px, .74fr) minmax(126px, .50fr) minmax(200px, .80fr);
    gap: clamp(18px, 2.5vw, 34px);
    padding: 8px 10px;
    align-items: center;
  }

  .simple-sync-stage::before,
  .simple-sync-stage::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .simple-sync-stage::before {
    width: min(28vw, 260px);
    height: min(28vw, 260px);
    left: 5%;
    top: 53%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,189,155,.22) 0%, rgba(255,189,155,.12) 34%, rgba(217,214,253,.10) 58%, transparent 74%);
    filter: blur(14px);
    opacity: .95;
  }

  .simple-sync-stage::after {
    width: min(34vw, 320px);
    height: min(34vw, 320px);
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,254,237,.24) 0%, rgba(153,254,237,.14) 36%, rgba(217,214,253,.14) 58%, transparent 76%);
    filter: blur(18px);
    opacity: .95;
  }

  .simple-sync-route__halo {
    display: none;
  }

  .simple-sync-route__path {
    stroke: rgba(28,30,38,.32);
    stroke-width: 2.2;
    stroke-dasharray: 4 10;
  }

  .simple-sync-source--logo-only {
    justify-self: start;
    padding-left: 8px;
  }

  .simple-sync-logo-card {
    width: min(100%, 186px);
    min-height: 120px;
    padding: 20px 18px;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(21,25,32,.10);
  }

  .simple-sync-logo {
    width: min(100%, 150px);
  }

  .simple-sync-center {
    min-height: 180px;
  }

  .simple-sync-node {
    width: 108px;
    height: 108px;
    box-shadow:
      inset 0 0 0 10px rgba(255,255,255,.76),
      0 18px 42px rgba(18,22,30,.10);
  }

  .simple-sync-node::before {
    inset: -14px;
    border-color: rgba(28,30,38,.22);
    border-style: dotted;
    border-width: 2px;
  }

  .simple-sync-node::after {
    width: 9px;
    height: 9px;
    top: -18px;
    left: calc(50% - 4.5px);
  }

  .simple-sync-node strong {
    font-size: .92rem;
  }

  .simple-sync-store {
    position: relative;
    min-height: 430px;
    justify-self: end;
    display: grid;
    align-items: center;
    justify-content: center;
  }

  .simple-sync-store::before {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 230px;
    height: 230px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(153,254,237,.20) 38%, rgba(217,214,253,.18) 62%, transparent 76%);
    filter: blur(10px);
    z-index: 0;
  }

  .simple-sync-store::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 24px;
    width: 108px;
    height: 122px;
    background-image: radial-gradient(rgba(28,30,38,.16) 1.1px, transparent 1.1px);
    background-size: 14px 14px;
    opacity: .34;
    z-index: 0;
  }

  .simple-sync-store--phone-only {
    align-items: center;
    justify-content: center;
  }

  .simple-sync-phone {
    width: min(100%, 186px);
    padding: 6px;
    border-radius: 26px;
    transform: rotate(1.6deg);
    box-shadow: 0 24px 54px rgba(21,25,32,.18);
  }

  .simple-sync-phone::before {
    display: none;
  }

  .simple-sync-phone__screen {
    min-height: 350px;
    border-radius: 21px;
  }

  .simple-sync-phone__image {
    min-height: 350px;
    height: 350px;
    padding-top: 20px;
    border-radius: 21px;
  }

  .simple-sync-phone__notch {
    top: 6px;
    height: 13px;
  }

  @media (max-width: 1180px) {
    .hero-trust-inline .official-trust-badge { padding-inline: 14px; }
    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 470px; }
    .simple-sync-stage { grid-template-columns: minmax(155px, .72fr) minmax(118px, .48fr) minmax(188px, .78fr); }
    .simple-sync-logo-card { width: min(100%, 174px); min-height: 114px; }
    .simple-sync-node { width: 102px; height: 102px; }
    .simple-sync-phone { width: min(100%, 176px); }
    .simple-sync-phone__screen,
    .simple-sync-phone__image { min-height: 332px; height: 332px; }
    .simple-sync-store::before { width: 214px; height: 214px; }
  }

  @media (max-width: 1024px) {
    .hero-trust-rail.hero-trust-inline { grid-template-columns: 1fr; }
    .hero-trust-inline .official-trust-badge + .official-trust-badge { border-left: 0; border-top: 1px solid rgba(32,33,36,.08); }
    .hero-trust-inline .official-trust-badge { justify-content: flex-start; }

    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 760px; }

    .simple-sync-stage {
      grid-template-columns: 1fr;
      grid-template-rows: 158px 164px minmax(350px, auto);
      gap: 12px;
      padding: 8px 14px 20px;
    }

    .simple-sync-stage::before {
      left: 50%;
      top: 70px;
      transform: translateX(-50%);
      width: min(58vw, 280px);
      height: min(58vw, 280px);
    }

    .simple-sync-stage::after {
      right: 50%;
      top: auto;
      bottom: 40px;
      transform: translateX(50%);
      width: min(68vw, 320px);
      height: min(68vw, 320px);
    }

    .simple-sync-source--logo-only,
    .simple-sync-store { justify-self: center; }
    .simple-sync-logo-card { width: min(72vw, 188px); }
    .simple-sync-center { min-height: 160px; }
    .simple-sync-node { width: 112px; height: 112px; }
    .simple-sync-store { min-height: 360px; }
    .simple-sync-store::after { right: -6px; top: 8px; }
    .simple-sync-phone { width: min(56vw, 188px); }
    .simple-sync-phone__screen,
    .simple-sync-phone__image { min-height: 344px; height: 344px; }
  }

  @media (max-width: 620px) {
    .hero-trust-inline .official-trust-logo--trustpilot { width: 66px; min-width: 66px; }
    .hero-trust-inline .official-trust-copy strong { font-size: .68rem; }
    .hero-trust-inline .trustpilot-stars span { width: 12px; height: 12px; }

    .hero-art--simple-sync,
    .simple-sync-stage { min-height: 690px; }

    .simple-sync-stage {
      grid-template-rows: 140px 150px minmax(330px, auto);
      padding: 6px 10px 18px;
    }

    .simple-sync-logo-card {
      width: min(72vw, 170px);
      min-height: 106px;
      padding: 16px 14px;
    }

    .simple-sync-logo { width: min(100%, 136px); }
    .simple-sync-node { width: 102px; height: 102px; }
    .simple-sync-node::before { inset: -12px; }
    .simple-sync-node strong { font-size: .88rem; }
    .simple-sync-store { min-height: 342px; }
    .simple-sync-store::before { width: 204px; height: 204px; }
    .simple-sync-store::after { width: 90px; height: 104px; background-size: 13px 13px; }
    .simple-sync-phone {
      width: min(58vw, 178px);
      border-radius: 24px;
      padding: 6px;
    }
    .simple-sync-phone__screen,
    .simple-sync-phone__image { min-height: 328px; height: 328px; border-radius: 19px; }
    .simple-sync-phone__image { padding-top: 19px; }
  }

/* ==========================================================================
   hero-dual-sync-responsive-v5
   ========================================================================== */
.hero-art--dual-sync {
    position: relative;
    min-height: 430px;
  }

  .hero-visual-desktop,
  .hero-visual-mobile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.07);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,248,246,.96));
    box-shadow: 0 26px 64px rgba(32,33,36,.08);
  }

  .hero-visual-desktop {
    display: block;
    min-height: 430px;
    padding: 28px 28px 24px;
  }

  .hero-visual-mobile {
    display: none;
    min-height: 620px;
    padding: 18px 16px 22px;
  }

  .hero-visual-desktop::before,
  .hero-visual-mobile::before,
  .hero-visual-desktop::after,
  .hero-visual-mobile::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .hero-visual-desktop::before {
    inset: auto auto 30px 34px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,189,155,.18) 0%, rgba(217,214,253,.14) 52%, transparent 72%);
    filter: blur(12px);
  }

  .hero-visual-desktop::after {
    inset: 38px 22px auto auto;
    width: 132px;
    height: 150px;
    background-image: radial-gradient(rgba(32,33,36,.12) 1.1px, transparent 1.1px);
    background-size: 14px 14px;
    opacity: .35;
  }

  .hero-visual-mobile::before {
    left: 50%;
    top: 18px;
    width: 230px;
    height: 230px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,254,237,.22) 0%, rgba(217,214,253,.16) 58%, transparent 74%);
    filter: blur(10px);
  }

  .hero-visual-mobile::after {
    right: 12px;
    top: 12px;
    width: 92px;
    height: 110px;
    background-image: radial-gradient(rgba(32,33,36,.11) 1px, transparent 1px);
    background-size: 13px 13px;
    opacity: .32;
  }

  .sync-desktop-layout {
    position: relative;
    z-index: 1;
    min-height: 376px;
    display: grid;
    grid-template-columns: 210px 1fr 205px;
    align-items: center;
    gap: 22px;
  }

  .sync-mobile-layout {
    position: relative;
    z-index: 1;
    min-height: 580px;
    display: grid;
    grid-template-rows: 132px 168px 1fr;
    justify-items: center;
    align-items: center;
    gap: 16px;
  }

  .desktop-sage-card,
  .mobile-sage-card {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(32,33,36,.07);
    box-shadow: 0 18px 44px rgba(32,33,36,.09);
  }

  .desktop-sage-card {
    width: 190px;
    min-height: 122px;
    border-radius: 28px;
    justify-self: start;
    padding: 20px 18px;
  }

  .mobile-sage-card {
    width: 182px;
    min-height: 114px;
    border-radius: 26px;
    padding: 18px 16px;
  }

  .desktop-sage-card .simple-sync-logo,
  .mobile-sage-card .simple-sync-logo {
    width: 146px;
    height: auto;
  }

  .desktop-sync-system {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
  }

  .mobile-sync-system {
    position: relative;
    width: 100%;
    min-height: 164px;
    display: grid;
    place-items: center;
  }

  .desktop-line,
  .mobile-line {
    position: absolute;
    background-image: repeating-linear-gradient(90deg, rgba(32,33,36,.34) 0 7px, transparent 7px 16px);
    animation: dottedFlow 1.15s linear infinite;
  }

  .mobile-line {
    background-image: repeating-linear-gradient(180deg, rgba(32,33,36,.34) 0 7px, transparent 7px 16px);
  }

  .desktop-line--left {
    left: 0;
    right: calc(50% + 68px);
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
  }

  .desktop-line--right {
    left: calc(50% + 68px);
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
  }

  .mobile-line--top {
    top: 0;
    width: 2px;
    height: calc(50% - 66px);
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-line--bottom {
    top: calc(50% + 66px);
    width: 2px;
    height: calc(50% - 12px);
    left: 50%;
    transform: translateX(-50%);
  }

  .line-packet {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 6px 12px rgba(32,33,36,.16);
  }

  .line-packet--lime { background: var(--lime); }
  .line-packet--mint { background: var(--mint); }
  .line-packet--peach { background: var(--peach); }

  .line-packet--desktop-in {
    top: calc(50% - 6px);
    left: 0;
    animation: packetLeft 4.8s ease-in-out infinite;
  }

  .line-packet--desktop-out {
    top: calc(50% - 6px);
    left: calc(50% + 68px);
    animation: packetRight 4.8s ease-in-out infinite 1.5s;
  }

  .line-packet--mobile-in {
    left: calc(50% - 6px);
    top: 0;
    animation: packetDownTop 4.8s ease-in-out infinite;
  }

  .line-packet--mobile-out {
    left: calc(50% - 6px);
    top: calc(50% + 66px);
    animation: packetDownBottom 4.8s ease-in-out infinite 1.5s;
  }

  .sync-orbit {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
  }

  .sync-orbit__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dotted rgba(32,33,36,.24);
    animation: rotateSlow 16s linear infinite;
  }

  .sync-orbit__core {
    position: relative;
    z-index: 2;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,1), rgba(255,255,255,.94) 58%, rgba(217,214,253,.32) 100%);
    border: 1px solid rgba(32,33,36,.07);
    box-shadow: inset 0 0 0 8px rgba(255,255,255,.75), 0 16px 36px rgba(32,33,36,.10);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: -.03em;
    color: var(--ink);
  }

  .orbit-traveler {
    position: absolute;
    inset: -9px;
    animation: rotateSlow 6.6s linear infinite;
  }

  .orbit-traveler::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 10px rgba(32,33,36,.14);
  }

  .orbit-traveler--one::before { background: var(--lime); }
  .orbit-traveler--two { animation-delay: -2.2s; }
  .orbit-traveler--two::before { background: var(--mint); }
  .orbit-traveler--three { animation-delay: -4.4s; }
  .orbit-traveler--three::before { background: var(--peach); }

  .desktop-phone-zone,
  .mobile-phone-zone {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
  }

  .desktop-phone-zone::before,
  .mobile-phone-zone::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,254,237,.18) 0%, rgba(217,214,253,.16) 52%, transparent 74%);
    filter: blur(8px);
    z-index: 0;
  }

  .desktop-phone-zone::before { width: 204px; height: 204px; }
  .mobile-phone-zone::before { width: 198px; height: 198px; }

  .hero-visual-desktop .simple-sync-phone,
  .hero-visual-mobile .simple-sync-phone {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px;
    background: var(--ink);
    box-shadow: 0 24px 56px rgba(21,25,32,.18);
    animation: phoneLiftSoft 5.6s ease-in-out infinite;
  }

  .hero-visual-desktop .simple-sync-phone { width: 176px; border-radius: 26px; transform: rotate(1deg); }
  .hero-visual-mobile .simple-sync-phone { width: 186px; border-radius: 28px; transform: rotate(1deg); }

  .hero-visual-desktop .simple-sync-phone__screen,
  .hero-visual-desktop .simple-sync-phone__image {
    min-height: 334px;
    height: 334px;
    border-radius: 21px;
  }

  .hero-visual-mobile .simple-sync-phone__screen,
  .hero-visual-mobile .simple-sync-phone__image {
    min-height: 352px;
    height: 352px;
    border-radius: 22px;
  }

  .hero-visual-desktop .simple-sync-phone__image,
  .hero-visual-mobile .simple-sync-phone__image { padding-top: 20px; }
  .hero-visual-desktop .simple-sync-phone__notch,
  .hero-visual-mobile .simple-sync-phone__notch { top: 6px; height: 13px; }

  @keyframes dottedFlow {
    to { background-position: 28px 0; }
  }

  @keyframes rotateSlow {
    to { transform: rotate(360deg); }
  }

  @keyframes packetLeft {
    0%, 12% { transform: translateX(0); opacity: 0; }
    18%, 72% { opacity: 1; }
    88%, 100% { transform: translateX(calc(100% - 12px)); opacity: 0; }
  }

  @keyframes packetRight {
    0%, 12% { transform: translateX(0); opacity: 0; }
    18%, 72% { opacity: 1; }
    88%, 100% { transform: translateX(calc(100% - 12px)); opacity: 0; }
  }

  @keyframes packetDownTop {
    0%, 12% { transform: translateY(0); opacity: 0; }
    18%, 72% { opacity: 1; }
    88%, 100% { transform: translateY(calc(100% - 12px)); opacity: 0; }
  }

  @keyframes packetDownBottom {
    0%, 12% { transform: translateY(0); opacity: 0; }
    18%, 72% { opacity: 1; }
    88%, 100% { transform: translateY(calc(100% - 12px)); opacity: 0; }
  }

  @keyframes phoneLiftSoft {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-7px) rotate(.25deg); }
  }

  @media (max-width: 1180px) {
    .sync-desktop-layout { grid-template-columns: 190px 1fr 188px; gap: 18px; }
    .desktop-sage-card { width: 176px; min-height: 114px; }
    .desktop-sage-card .simple-sync-logo { width: 136px; }
    .hero-visual-desktop .simple-sync-phone { width: 166px; }
    .hero-visual-desktop .simple-sync-phone__screen,
    .hero-visual-desktop .simple-sync-phone__image { min-height: 316px; height: 316px; }
  }

  @media (max-width: 960px) {
    .hero-art--dual-sync { min-height: 620px; }
    .hero-visual-desktop { display: none; }
    .hero-visual-mobile { display: block; }
  }

  @media (max-width: 620px) {
    .hero-visual-mobile { min-height: 586px; padding: 16px 12px 20px; border-radius: 28px; }
    .sync-mobile-layout { grid-template-rows: 124px 156px 1fr; min-height: 546px; gap: 12px; }
    .mobile-sage-card { width: 168px; min-height: 106px; }
    .mobile-sage-card .simple-sync-logo { width: 130px; }
    .sync-orbit { width: 124px; height: 124px; }
    .sync-orbit__core { width: 98px; height: 98px; font-size: .86rem; }
    .hero-visual-mobile .simple-sync-phone { width: 178px; }
    .hero-visual-mobile .simple-sync-phone__screen,
    .hero-visual-mobile .simple-sync-phone__image { min-height: 336px; height: 336px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .desktop-line,
    .mobile-line,
    .line-packet,
    .orbit-traveler,
    .sync-orbit__ring,
    .hero-visual-desktop .simple-sync-phone,
    .hero-visual-mobile .simple-sync-phone {
      animation: none !important;
    }
  }

/* ==========================================================================
   hero-cover-final-v3
   ========================================================================== */
/* Tighter cover spacing below the fixed navigation. */
  .hero {
    min-height: auto !important;
    padding-top: calc(var(--header-height, 104px) + 10px) !important;
    padding-bottom: 92px !important;
  }

  .hero-grid {
    align-items: center;
    gap: 46px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-content .breadcrumb {
    margin-bottom: 18px;
  }

  .hero-title {
    max-width: 720px;
  }

  .hero-subheadline {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(32,33,36,.70);
    font-size: clamp(1.12rem, 1.45vw, 1.34rem);
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 28px;
  }

  /* The animation now sits directly on the hero background. */
  .hero-art--dual-sync {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual-desktop,
  .hero-visual-mobile {
    overflow: visible;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero-visual-desktop {
    min-height: 410px;
    padding: 4px 0 0;
  }

  .hero-visual-mobile {
    padding: 0;
  }

  .sync-desktop-layout {
    min-height: 400px;
  }

  /* Trust proof belongs to the visual side and acts as its footer. */
  .hero-art--dual-sync > .hero-trust-rail {
    width: 100%;
    margin: 0;
    border-radius: 22px;
    background: rgba(255,255,255,.66);
    box-shadow: 0 16px 38px rgba(32,33,36,.055);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .hero-art--dual-sync > .hero-trust-rail .official-trust-badge {
    min-height: 72px;
    padding: 11px 14px;
  }

  @media (max-width: 1180px) {
    .hero {
      padding-top: calc(var(--header-height, 90px) + 10px) !important;
      padding-bottom: 82px !important;
    }

    .hero-grid {
      gap: 30px;
    }

    .hero-art--dual-sync {
      width: min(100%, 800px);
      margin-inline: auto;
    }
  }

  @media (max-width: 960px) {
    .hero-art--dual-sync {
      min-height: auto;
      gap: 14px;
    }

    .hero-visual-mobile {
      min-height: 586px;
    }
  }

  @media (max-width: 760px) {
    .hero {
      padding-top: calc(var(--header-height, 90px) + 6px) !important;
      padding-bottom: 72px !important;
    }

    .hero-grid {
      gap: 22px;
    }

    .hero-content .breadcrumb {
      margin-bottom: 14px;
    }

    .hero-subheadline {
      margin-top: 17px;
      font-size: 1.05rem;
      line-height: 1.55;
    }

    .hero-art--dual-sync > .hero-trust-rail {
      border-radius: 19px;
    }

    .hero-art--dual-sync > .hero-trust-rail .official-trust-badge {
      min-height: 74px;
      padding: 8px 5px;
    }
  }

  @media (max-width: 620px) {
    .hero-visual-mobile {
      min-height: 566px;
      padding: 0;
      border-radius: 0;
    }

    .hero-art--dual-sync > .hero-trust-rail {
      margin-top: 2px;
      background: rgba(255,255,255,.72);
    }
  }

/* ==========================================================================
   hero-path-and-spacing-v6
   ========================================================================== */
/* Bring the first content section closer to the secondary navigation. */
  #problem.pain-section {
    padding-top: 48px !important;
  }

  /* Desktop connector geometry: card edge -> orbit edge -> phone edge. */
  @media (min-width: 961px) {
    .sync-desktop-layout {
      grid-template-columns: 190px minmax(126px, 1fr) 176px !important;
      gap: 0 !important;
      align-items: center;
    }

    .desktop-sage-card {
      width: 190px !important;
      justify-self: stretch !important;
    }

    .desktop-phone-zone {
      width: 176px;
      justify-self: stretch;
    }

    .desktop-phone-zone .simple-sync-phone {
      width: 176px !important;
    }

    .desktop-sync-system {
      width: 100%;
      min-width: 0;
    }
  }

  @media (min-width: 961px) and (max-width: 1180px) {
    .sync-desktop-layout {
      grid-template-columns: 176px minmax(112px, 1fr) 166px !important;
    }

    .desktop-sage-card { width: 176px !important; }
    .desktop-phone-zone { width: 166px; }
    .desktop-phone-zone .simple-sync-phone { width: 166px !important; }
  }

  .desktop-line--left {
    left: 0 !important;
    right: calc(50% + 66px) !important;
  }

  .desktop-line--right {
    left: calc(50% + 66px) !important;
    right: 0 !important;
  }

  /* Mobile is a separate, continuous vertical composition. */
  @media (max-width: 960px) {
    #problem.pain-section { padding-top: 40px !important; }

    .sync-mobile-layout {
      grid-template-rows: auto 168px auto !important;
      gap: 0 !important;
      min-height: auto !important;
    }

    .mobile-sage-card {
      align-self: end;
    }

    .mobile-sync-system {
      min-height: 168px !important;
    }

    .mobile-phone-zone {
      align-self: start;
    }

    .mobile-line--top {
      top: 0 !important;
      height: calc(50% - 66px) !important;
    }

    .mobile-line--bottom {
      top: calc(50% + 66px) !important;
      bottom: 0 !important;
      height: auto !important;
    }

    .mobile-line {
      animation-name: dottedFlowVertical !important;
    }
  }

  @media (max-width: 620px) {
    #problem.pain-section { padding-top: 32px !important; }
    .sync-mobile-layout { grid-template-rows: auto 156px auto !important; }
    .mobile-sync-system { min-height: 156px !important; }
    .mobile-line--top { height: calc(50% - 62px) !important; }
    .mobile-line--bottom { top: calc(50% + 62px) !important; }
  }

  @keyframes dottedFlowVertical {
    to { background-position: 0 28px; }
  }

  /* Packets move only within the straight connector segment they belong to. */
  .packet-track {
    position: absolute;
    z-index: 4;
    display: block;
    pointer-events: none;
  }

  .packet-track--desktop-in {
    left: 0;
    right: calc(50% + 68px);
    top: calc(50% - 6px);
    height: 12px;
  }

  .packet-track--desktop-out {
    left: calc(50% + 68px);
    right: 0;
    top: calc(50% - 6px);
    height: 12px;
  }

  .packet-track--mobile-in {
    left: calc(50% - 6px);
    top: 0;
    bottom: calc(50% + 68px);
    width: 12px;
  }

  .packet-track--mobile-out {
    left: calc(50% - 6px);
    top: calc(50% + 68px);
    bottom: 0;
    width: 12px;
  }

  .packet-track .line-packet {
    position: absolute !important;
    inset: auto !important;
    top: 0 !important;
    left: 0 !important;
    width: 12px;
    height: 12px;
    opacity: 0;
  }

  .packet-track--desktop-in .line-packet,
  .packet-track--desktop-out .line-packet {
    animation: packetAcrossTrack 4.8s ease-in-out infinite !important;
  }

  .packet-track--desktop-out .line-packet {
    animation-delay: 1.55s !important;
  }

  .packet-track--mobile-in .line-packet,
  .packet-track--mobile-out .line-packet {
    animation: packetDownTrack 4.8s ease-in-out infinite !important;
  }

  .packet-track--mobile-out .line-packet {
    animation-delay: 1.55s !important;
  }

  @keyframes packetAcrossTrack {
    0%, 10% { left: 0; opacity: 0; }
    18%, 78% { opacity: 1; }
    92%, 100% { left: calc(100% - 12px); opacity: 0; }
  }

  @keyframes packetDownTrack {
    0%, 10% { top: 0; opacity: 0; }
    18%, 78% { opacity: 1; }
    92%, 100% { top: calc(100% - 12px); opacity: 0; }
  }


  @media (prefers-reduced-motion: reduce) {
    .desktop-line,
    .mobile-line,
    .packet-track .line-packet {
      animation: none !important;
    }
  }

/* ==========================================================================
   hero-trust-and-connector-v5
   ========================================================================== */
.hero-meta { grid-template-columns: repeat(2, max-content) !important; }

  .hero-art--dual-sync > .hero-trust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-badge {
    align-items: center;
    gap: 10px;
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-badge + .official-trust-badge {
    border-left: 1px solid rgba(32,33,36,.08);
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-logo {
    width: 100px;
    min-width: 100px;
    height: 42px;
  }
  .official-trust-logo--shopify-partner,
  .official-trust-logo--ppai {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .official-trust-logo--shopify-partner svg,
  .official-trust-logo--ppai svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-logo--trustpilot {
    width: 84px;
    min-width: 84px;
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-logo--delivery {
    width: 50px;
    min-width: 50px;
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-logo--delivery > span {
    width: 42px;
    height: 42px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: -.04em;
    box-shadow: 0 0 0 7px rgba(194,255,2,.13);
  }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-copy small { margin-bottom: 3px; }
  .hero-art--dual-sync > .hero-trust-rail .official-trust-copy strong {
    font-size: .69rem;
    line-height: 1.22;
  }

  .hero-visual-desktop,
  .hero-visual-mobile { position: relative; }

  /* lighter promo-product illustrations in the background */
  .promo-ghost-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .promo-ghost {
    position: absolute;
    width: 68px;
    height: 68px;
    opacity: .14;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 12px 24px rgba(32,33,36,.03));
  }
  .promo-ghost--shirt { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M22 12l10 6 10-6 10 8-6 10-6-4v24H14V26l-6 4-6-10 10-8 10 6z' stroke='%23C9D0DA' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E"); }
  .promo-ghost--mug { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Crect x='14' y='18' width='26' height='28' rx='4' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3Cpath d='M40 23h6a7 7 0 010 14h-6' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3Cpath d='M22 12c0 3 3 4 3 7M30 12c0 3 3 4 3 7' stroke='%23C9D0DA' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
  .promo-ghost--tote { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Crect x='14' y='22' width='36' height='28' rx='3' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3Cpath d='M22 24v-4a10 10 0 0120 0v4' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3C/svg%3E"); }
  .promo-ghost--cap { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M18 34c0-10 6-16 16-16s16 6 16 16H18z' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3Cpath d='M18 34c8 0 14 2 20 8-11 2-18 0-24-4 0-2 1-4 4-4z' stroke='%23C9D0DA' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E"); }
  .promo-ghost--bottle { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M26 10h12v8l5 7v20a7 7 0 01-7 7H28a7 7 0 01-7-7V25l5-7v-8z' stroke='%23C9D0DA' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M26 18h12' stroke='%23C9D0DA' stroke-width='2.4'/%3E%3C/svg%3E"); }
  .promo-ghost-scene--desktop .promo-ghost--shirt { left: 2%; top: 12%; }
  .promo-ghost-scene--desktop .promo-ghost--mug { left: 30%; bottom: 4%; width: 58px; height: 58px; }
  .promo-ghost-scene--desktop .promo-ghost--tote { right: 1%; bottom: 10%; width: 74px; height: 74px; }
  .promo-ghost-scene--desktop .promo-ghost--cap { left: 52%; top: 10%; width: 62px; height: 62px; }
  .promo-ghost-scene--desktop .promo-ghost--bottle { right: 17%; top: 22%; width: 56px; height: 56px; }
  .promo-ghost-scene--mobile .promo-ghost--shirt { left: 7%; top: 11%; width: 54px; height: 54px; }
  .promo-ghost-scene--mobile .promo-ghost--mug { right: 8%; top: 20%; width: 48px; height: 48px; }
  .promo-ghost-scene--mobile .promo-ghost--tote { left: 4%; bottom: 11%; width: 60px; height: 60px; }
  .promo-ghost-scene--mobile .promo-ghost--cap { right: 2%; bottom: 23%; width: 52px; height: 52px; }
  .promo-ghost-scene--mobile .promo-ghost--bottle { left: 18%; bottom: 31%; width: 46px; height: 46px; }

  /* extend and unify dotted connectors */
  .desktop-sync-system { overflow: visible; --connector-overhang: 26px; }
  .desktop-line,
  .mobile-line {
    background-image: radial-gradient(circle, rgba(32,33,36,.27) 1.45px, transparent 1.7px) !important;
    background-repeat: repeat-x !important;
    background-size: 12px 2px !important;
    animation-duration: 1.25s !important;
  }
  .mobile-line {
    background-repeat: repeat-y !important;
    background-size: 2px 12px !important;
  }
  .desktop-line--left {
    left: calc(var(--connector-overhang) * -1) !important;
    right: calc(50% + 66px) !important;
  }
  .desktop-line--right {
    left: calc(50% + 66px) !important;
    right: calc(var(--connector-overhang) * -1) !important;
  }
  .packet-track--desktop-in {
    left: calc(var(--connector-overhang) * -1) !important;
    right: calc(50% + 66px) !important;
  }
  .packet-track--desktop-out {
    left: calc(50% + 66px) !important;
    right: calc(var(--connector-overhang) * -1) !important;
  }
  .packet-track .packet-seq--one { animation-delay: .0s !important; }
  .packet-track .packet-seq--two { animation-delay: 1.15s !important; }
  .packet-track .packet-seq--three { animation-delay: 2.3s !important; }
  .packet-track--desktop-out .packet-seq--one,
  .packet-track--mobile-out .packet-seq--one { animation-delay: 1.6s !important; }
  .packet-track--desktop-out .packet-seq--two,
  .packet-track--mobile-out .packet-seq--two { animation-delay: 2.75s !important; }
  .packet-track--desktop-out .packet-seq--three,
  .packet-track--mobile-out .packet-seq--three { animation-delay: 3.9s !important; }
  .sync-orbit__ring { border-color: rgba(32,33,36,.24) !important; }

  @media (max-width: 1180px) {
    .desktop-sync-system { --connector-overhang: 22px; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-logo { width: 90px; min-width: 90px; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-copy strong { font-size: .64rem; }
  }

  @media (max-width: 960px) {
    .hero-art--dual-sync > .hero-trust-rail {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-badge:nth-child(3),
    .hero-art--dual-sync > .hero-trust-rail .official-trust-badge:nth-child(4) {
      border-top: 1px solid rgba(32,33,36,.08);
    }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-badge:nth-child(3),
    .hero-art--dual-sync > .hero-trust-rail .official-trust-badge:nth-child(4) {
      border-left: 0;
    }
  }

  @media (max-width: 620px) {
    .hero-meta { justify-content: center; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-logo { width: 78px; min-width: 78px; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-logo--trustpilot { width: 74px; min-width: 74px; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-copy strong { font-size: .60rem; }
    .hero-art--dual-sync > .hero-trust-rail .official-trust-copy small { display: none; }
  }

/* ==========================================================================
   final-offer-cleanup-v6
   ========================================================================== */
/* Clean flat price presentation. */
  .offer-price--simple {
    display: block !important;
  }
  .offer-price--simple .offer-price__main {
    width: 100%;
  }
  .offer-price--simple .offer-price__main strong {
    display: block;
  }

  /* Keep the complete solution heading and supporting copy readable while sticky. */
  @media (min-width: 1181px) {
    .outcome-layout {
      grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
      gap: clamp(48px, 5vw, 76px);
    }
    .outcome-sticky {
      position: sticky;
      top: calc(var(--header-height, 104px) + 24px);
      align-self: start;
      max-height: none;
      overflow: visible;
      padding-bottom: 18px;
    }
    .outcome-sticky .eyebrow {
      margin-bottom: 14px;
    }
    .outcome-sticky .section-title {
      max-width: 560px;
      font-size: clamp(2.65rem, 3.8vw, 4.35rem);
      line-height: 1.01;
      letter-spacing: -.055em;
    }
    .outcome-sticky .section-copy {
      max-width: 540px;
      margin-top: 20px;
      font-size: clamp(.98rem, 1.05vw, 1.12rem);
      line-height: 1.62;
    }
  }

  @media (min-width: 1181px) and (max-height: 820px) {
    .outcome-sticky {
      top: calc(var(--header-height, 96px) + 16px);
    }
    .outcome-sticky .section-title {
      font-size: clamp(2.35rem, 3.35vw, 3.75rem);
    }
    .outcome-sticky .section-copy {
      margin-top: 16px;
      font-size: .98rem;
      line-height: 1.52;
    }
  }

  /* Simple logo-only trust bar under the hero visual. */
  .hero-art--dual-sync > .hero-trust-rail.hero-trust-simple {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0;
    width: 100%;
    min-height: 78px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 36px rgba(32,33,36,.05);
    backdrop-filter: blur(12px);
  }

  .hero-trust-simple .hero-trust-mark {
    min-width: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
  }

  .hero-trust-simple .hero-trust-mark + .hero-trust-mark {
    border-left: 1px solid rgba(32,33,36,.08);
  }

  .hero-trust-mark__symbol {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-weight: 900;
  }

  .shopify-bag {
    position: relative;
    width: 31px;
    height: 34px;
    border-radius: 6px 6px 8px 8px;
    background: #95bf47;
    color: #fff;
    font-size: 1rem;
    transform: rotate(-2deg);
  }
  .shopify-bag::before {
    content: "";
    position: absolute;
    left: 8px;
    top: -7px;
    width: 13px;
    height: 12px;
    border: 2px solid #95bf47;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
  }

  .ppai-seal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e6dff;
    color: #fff;
    font-size: .92rem;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.22);
  }

  .trustpilot-simple-star {
    flex: 0 0 auto;
    color: #00b67a;
    font-size: 1.72rem;
    line-height: 1;
  }

  .delivery-score {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: -.04em;
  }

  .hero-trust-mark__word {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }
  .hero-trust-mark__word strong {
    color: var(--ink);
    font-size: .82rem;
    font-weight: 850;
    white-space: nowrap;
  }
  .hero-trust-mark__word small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .hero-trust-mark--shopify .hero-trust-mark__word strong {
    font-size: .9rem;
    letter-spacing: -.03em;
  }
  .hero-trust-mark--ppai .hero-trust-mark__word strong {
    letter-spacing: .04em;
  }

  @media (max-width: 1180px) {
    .outcome-sticky .section-copy {
      max-width: 760px;
    }
  }

  @media (max-width: 760px) {
    .hero-art--dual-sync > .hero-trust-rail.hero-trust-simple {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      border-radius: 18px;
    }
    .hero-trust-simple .hero-trust-mark:nth-child(3),
    .hero-trust-simple .hero-trust-mark:nth-child(4) {
      border-top: 1px solid rgba(32,33,36,.08);
    }
    .hero-trust-simple .hero-trust-mark:nth-child(3) {
      border-left: 0;
    }
    .hero-trust-simple .hero-trust-mark {
      min-height: 70px;
      justify-content: flex-start;
      padding-inline: 14px;
    }
  }

  @media (max-width: 420px) {
    .hero-trust-mark__word strong { font-size: .74rem; }
    .hero-trust-mark__word small { font-size: .52rem; }
    .shopify-bag, .ppai-seal { transform: scale(.92); }
    .delivery-score { width: 39px; height: 39px; font-size: .68rem; }
  }

/* ==========================================================================
   hero-product-cloud-and-trust-v8
   ========================================================================== */
/* Individual promotional products spread behind the hero animation. */
  .promo-product-cloud {
    position: absolute;
    inset: -6px -18px -8px -18px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .promo-product {
    position: absolute;
    display: block;
    width: 66px;
    height: 66px;
    opacity: .12;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: grayscale(1);
  }

  .promo-product--cap {
    background-image: url("promo-products/cap.svg");
  }
  .promo-product--tumbler {
    background-image: url("promo-products/tumbler.svg");
  }
  .promo-product--tote {
    background-image: url("promo-products/tote.svg");
  }
  .promo-product--speaker {
    background-image: url("promo-products/speaker.svg");
  }
  .promo-product--mug {
    background-image: url("promo-products/mug.svg");
  }
  .promo-product--pen {
    background-image: url("promo-products/pen.svg");
  }
  .promo-product--notebook {
    background-image: url("promo-products/notebook.svg");
  }
  .promo-product--calendar {
    background-image: url("promo-products/calendar.svg");
  }
  .promo-product--bottle {
    background-image: url("promo-products/bottle.svg");
  }
  .promo-product--usb {
    background-image: url("promo-products/usb.svg");
  }

  /* Desktop spread: each product sits independently around the animation. */
  .promo-product-cloud--desktop .promo-product--cap { left: 3%; top: 3%; width: 74px; height: 74px; transform: rotate(-8deg); }
  .promo-product-cloud--desktop .promo-product--tumbler { left: 40%; top: -1%; width: 60px; height: 60px; transform: rotate(5deg); }
  .promo-product-cloud--desktop .promo-product--tote { right: -1%; top: 4%; width: 78px; height: 78px; transform: rotate(5deg); }
  .promo-product-cloud--desktop .promo-product--speaker { left: 27%; top: 24%; width: 58px; height: 58px; transform: rotate(-8deg); }
  .promo-product-cloud--desktop .promo-product--mug { right: 0; top: 41%; width: 66px; height: 66px; transform: rotate(4deg); }
  .promo-product-cloud--desktop .promo-product--pen { left: 61%; top: 5%; width: 54px; height: 54px; transform: rotate(8deg); }
  .promo-product-cloud--desktop .promo-product--notebook { left: 9%; bottom: 1%; width: 72px; height: 72px; transform: rotate(-7deg); }
  .promo-product-cloud--desktop .promo-product--calendar { left: 51%; bottom: -1%; width: 80px; height: 80px; transform: rotate(2deg); }
  .promo-product-cloud--desktop .promo-product--bottle { right: 16%; bottom: 2%; width: 62px; height: 62px; transform: rotate(5deg); }
  .promo-product-cloud--desktop .promo-product--usb { right: -1%; bottom: 13%; width: 52px; height: 52px; transform: rotate(10deg); }

  /* Mobile spread keeps products visible but out of the main path. */
  .promo-product-cloud--mobile .promo-product { opacity: .10; }
  .promo-product-cloud--mobile .promo-product--cap { left: 3%; top: 4%; width: 58px; height: 58px; transform: rotate(-8deg); }
  .promo-product-cloud--mobile .promo-product--tumbler { right: 6%; top: 4%; width: 48px; height: 48px; }
  .promo-product-cloud--mobile .promo-product--tote { right: 1%; top: 23%; width: 60px; height: 60px; transform: rotate(5deg); }
  .promo-product-cloud--mobile .promo-product--speaker { left: 2%; top: 28%; width: 48px; height: 48px; transform: rotate(-7deg); }
  .promo-product-cloud--mobile .promo-product--mug { right: 0; top: 48%; width: 50px; height: 50px; }
  .promo-product-cloud--mobile .promo-product--pen { left: 8%; top: 49%; width: 44px; height: 44px; transform: rotate(10deg); }
  .promo-product-cloud--mobile .promo-product--notebook { left: 2%; bottom: 5%; width: 56px; height: 56px; transform: rotate(-6deg); }
  .promo-product-cloud--mobile .promo-product--calendar { left: 43%; bottom: 1%; width: 62px; height: 62px; }
  .promo-product-cloud--mobile .promo-product--bottle { right: 3%; bottom: 5%; width: 50px; height: 50px; }
  .promo-product-cloud--mobile .promo-product--usb { display: none; }

  .sync-desktop-layout,
  .sync-mobile-layout { position: relative; isolation: isolate; }
  .desktop-sage-card,
  .desktop-sync-system,
  .desktop-phone-zone,
  .mobile-sage-card,
  .mobile-sync-system,
  .mobile-phone-zone { position: relative; z-index: 2; }

  /* Trust bar matching the approved landing-page concept. */
  .hero-art--dual-sync > .hero-trust-logo-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100%;
    margin: 8px 0 0;
    overflow: hidden;
    border: 1px solid rgba(32,33,36,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 16px 42px rgba(32,33,36,.06);
    backdrop-filter: blur(12px);
  }

  .hero-trust-logo-item {
    min-width: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--ink);
  }

  .hero-trust-logo-item + .hero-trust-logo-item {
    border-left: 1px solid rgba(32,33,36,.08);
  }

  .trust-logo {
    flex: 0 0 auto;
    display: block;
    width: 34px;
    height: 34px;
  }
  .trust-logo--ppai { width: 54px; height: 34px; }
  .hero-trust-logo-item > span {
    min-width: 0;
    color: #202124;
    font-size: .75rem;
    line-height: 1.25;
    font-weight: 750;
    white-space: nowrap;
  }
  .hero-trust-logo-item > span strong { font-weight: 900; }

  @media (max-width: 1180px) {
    .promo-product-cloud--desktop .promo-product { transform: scale(.9); }
    .hero-trust-logo-item { gap: 8px; padding-inline: 10px; }
    .hero-trust-logo-item > span { font-size: .68rem; }
    .trust-logo { width: 31px; height: 31px; }
    .trust-logo--ppai { width: 49px; height: 31px; }
  }

  @media (max-width: 960px) {
    .hero-art--dual-sync > .hero-trust-logo-row {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .hero-trust-logo-item:nth-child(3),
    .hero-trust-logo-item:nth-child(4) { border-top: 1px solid rgba(32,33,36,.08); }
    .hero-trust-logo-item:nth-child(3) { border-left: 0; }
  }

  @media (max-width: 520px) {
    .hero-art--dual-sync > .hero-trust-logo-row { border-radius: 18px; }
    .hero-trust-logo-item { min-height: 66px; justify-content: flex-start; padding-inline: 12px; }
    .hero-trust-logo-item > span { font-size: .64rem; }
    .trust-logo { width: 29px; height: 29px; }
    .trust-logo--ppai { width: 45px; height: 29px; }
  }

/* ==========================================================================
   hero-trustbar-v9-upgrade
   ========================================================================== */
.hero-art--dual-sync > .hero-trust-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 12px 0 0;
  }
  .hero-trust-card {
    min-width: 0;
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(32,33,36,.10);
    border-radius: 26px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 14px 36px rgba(32,33,36,.045);
    backdrop-filter: blur(10px);
  }
  .hero-trust-card__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-trust-card__logo--shopify { width: 168px; }
  .hero-trust-card__logo--ppai { width: 142px; }
  .hero-trust-card__logo--trustpilot {
    min-width: 146px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-trust-card__logo--delivery {
    width: 66px;
    min-width: 66px;
  }
  .hero-trust-card__logo svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-trust-card__logo--delivery > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #C9FF00;
    color: #111111;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 0 0 10px rgba(201,255,0,.12);
  }
  .hero-trust-card__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero-trust-card__copy small {
    color: #8A8E95;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .hero-trust-card__copy strong {
    color: #202124;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
  }
  .hero-trustpilot-wordmark {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111111;
    font-size: 1rem;
    line-height: 1;
  }
  .hero-trustpilot-wordmark svg { width: 24px; height: 24px; flex: 0 0 auto; }
  .hero-trustpilot-wordmark strong { font-size: 1rem; font-weight: 800; }
  .hero-trustpilot-stars {
    display: flex;
    gap: 3px;
  }
  .hero-trustpilot-stars span {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    background: #00B67A;
    color: #fff;
    font-size: .72rem;
    line-height: 1;
  }
  .hero-trustpilot-stars .partial {
    background: linear-gradient(90deg, #00B67A 60%, #D9D9D9 60%);
  }

  @media (max-width: 1360px) {
    .hero-art--dual-sync > .hero-trust-card-grid { gap: 12px; }
    .hero-trust-card { min-height: 100px; padding: 16px 16px; gap: 14px; }
    .hero-trust-card__logo--shopify { width: 150px; }
    .hero-trust-card__logo--ppai { width: 126px; }
    .hero-trust-card__logo--trustpilot { min-width: 132px; }
    .hero-trust-card__copy small { font-size: .64rem; }
    .hero-trust-card__copy strong { font-size: .92rem; }
  }
  @media (max-width: 1180px) {
    .hero-art--dual-sync > .hero-trust-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 760px) {
    .hero-art--dual-sync > .hero-trust-card-grid { grid-template-columns: 1fr; gap: 10px; }
    .hero-trust-card { min-height: 90px; border-radius: 22px; }
    .hero-trust-card__logo--shopify { width: 144px; }
    .hero-trust-card__logo--ppai { width: 120px; }
    .hero-trust-card__logo--trustpilot { min-width: 126px; }
    .hero-trust-card__copy strong { font-size: .94rem; }
  }
  @media (max-width: 480px) {
    .hero-trust-card { padding: 14px 14px; gap: 12px; }
    .hero-trust-card__copy small { font-size: .60rem; }
    .hero-trust-card__copy strong { font-size: .88rem; }
    .hero-trust-card__logo--delivery { width: 58px; min-width: 58px; }
    .hero-trust-card__logo--delivery > span { width: 52px; height: 52px; font-size: 1.8rem; }
    .hero-trustpilot-stars span { width: 17px; height: 17px; font-size: .66rem; }
  }

/* ==========================================================================
   hero-trustbar-v10-responsive-fix
   ========================================================================== */
/* Make the trust proof a full-width hero row, so the four cards have enough room. */
  .hero-grid {
    grid-template-areas:
      "hero-copy hero-visual"
      "hero-trust hero-trust";
    grid-template-rows: auto auto;
    align-items: center;
  }
  .hero-content { grid-area: hero-copy; }
  .hero-art--dual-sync { grid-area: hero-visual; }
  .hero-grid > .hero-trust-card-grid {
    grid-area: hero-trust;
    width: 100%;
    margin-top: 4px;
  }

  .hero-grid > .hero-trust-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card {
    min-width: 0;
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(92px, .95fr) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(32,33,36,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 14px 38px rgba(32,33,36,.045);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo svg {
    width: 100%;
    max-width: 138px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg {
    max-width: 112px;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--trustpilot {
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery {
    width: 64px !important;
    min-width: 64px !important;
    justify-content: center;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
    width: 56px;
    height: 56px;
    font-size: 1.9rem;
    box-shadow: none;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy {
    min-width: 0;
    gap: 5px;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy small {
    margin: 0;
    color: #8A8E95;
    font-size: clamp(.58rem, .62vw, .68rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .10em;
    white-space: normal;
  }
  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy strong {
    color: #202124;
    font-size: clamp(.82rem, .85vw, .98rem);
    line-height: 1.28;
    font-weight: 800;
    white-space: normal;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark {
    gap: 7px;
    font-size: .94rem;
  }
  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark svg {
    width: 22px;
    height: 22px;
  }
  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark strong {
    font-size: .94rem;
  }
  .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars {
    gap: 3px;
  }
  .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars span {
    width: 18px;
    height: 18px;
    font-size: .68rem;
  }

  /* Standard desktop and laptop widths */
  @media (min-width: 1181px) and (max-width: 1380px) {
    .hero-grid > .hero-trust-card-grid { gap: 11px; }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 96px;
      grid-template-columns: minmax(82px, .88fr) minmax(0, 1fr);
      gap: 11px;
      padding: 14px 14px;
      border-radius: 22px;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo { height: 52px; }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo svg {
      max-width: 124px;
      height: 52px;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg { max-width: 101px; }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery {
      width: 58px !important;
      min-width: 58px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
      width: 52px;
      height: 52px;
      font-size: 1.75rem;
    }
  }

  /* Once the hero itself becomes one column, keep the proof compact and readable. */
  @media (max-width: 1180px) {
    .hero-grid {
      grid-template-areas:
        "hero-copy"
        "hero-visual"
        "hero-trust";
      grid-template-columns: minmax(0, 1fr) !important;
    }
    .hero-grid > .hero-trust-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 2px;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 96px;
      grid-template-columns: minmax(100px, .8fr) minmax(0, 1fr);
      padding: 15px 18px;
    }
  }

  @media (max-width: 700px) {
    .hero-grid > .hero-trust-card-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 88px;
      grid-template-columns: 120px minmax(0, 1fr);
      padding: 14px 16px;
      border-radius: 20px;
    }
  }

  @media (max-width: 430px) {
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      grid-template-columns: 105px minmax(0, 1fr);
      gap: 12px;
      padding: 13px 14px;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo svg { max-width: 108px; }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg { max-width: 92px; }
  }

/* ==========================================================================
   hero-v11-path-background-fold-refinement
   ========================================================================== */
/* Replace the old oval glow with a softer Swishtag signal field. */
  .hero-art--dual-sync::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: -4% -5% -2% -4%;
    border-radius: 0;
    background:
      linear-gradient(125deg, rgba(153,254,237,.16) 0%, rgba(153,254,237,0) 34%),
      linear-gradient(310deg, rgba(217,214,253,.18) 0%, rgba(217,214,253,0) 38%),
      linear-gradient(180deg, rgba(255,189,155,.055), rgba(255,189,155,0) 48%),
      radial-gradient(circle at 58% 48%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 28%, rgba(255,255,255,0) 62%);
    filter: none;
    opacity: .92;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
    pointer-events: none;
  }
  .hero-art--dual-sync::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 5% 1% 8% 5%;
    background-image: radial-gradient(rgba(32,33,36,.10) 1px, transparent 1.15px);
    background-size: 20px 20px;
    opacity: .18;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 84%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 84%, transparent 100%);
    pointer-events: none;
  }

  /* One continuous dotted journey. Only these three colored circles remain. */
  .desktop-line,
  .mobile-line,
  .packet-track,
  .orbit-traveler,
  .sync-orbit__ring {
    display: none !important;
  }
  .sync-desktop-layout,
  .sync-mobile-layout {
    isolation: isolate;
  }
  .sync-journey {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }
  .sync-journey__path {
    fill: none;
    stroke: rgba(32,33,36,.30);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: .6 11;
    vector-effect: non-scaling-stroke;
  }
  .sync-journey__dot {
    stroke: #fff;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 5px 8px rgba(32,33,36,.16));
  }
  .sync-journey__dot--lime { fill: var(--lime); }
  .sync-journey__dot--mint { fill: var(--mint); }
  .sync-journey__dot--peach { fill: var(--peach); }

  .desktop-sage-card,
  .desktop-sync-system,
  .desktop-phone-zone,
  .mobile-sage-card,
  .mobile-sync-system,
  .mobile-phone-zone {
    z-index: 2;
  }

  /* Keep the proof visible before the fold on regular desktop and laptop screens. */
  @media (min-width: 1181px) {
    .hero {
      padding-top: calc(var(--header-height, 104px) + 4px) !important;
      padding-bottom: 44px !important;
    }
    .hero-grid {
      row-gap: 10px !important;
    }
    .hero-art--dual-sync {
      gap: 0 !important;
    }
    .hero-visual-desktop {
      min-height: 344px !important;
      padding-top: 0 !important;
    }
    .sync-desktop-layout {
      min-height: 344px !important;
    }
    .desktop-sage-card {
      width: 176px !important;
      min-height: 112px !important;
      padding: 17px 16px !important;
      border-radius: 25px !important;
    }
    .desktop-sage-card .simple-sync-logo { width: 136px !important; }
    .hero-visual-desktop .simple-sync-phone {
      width: 160px !important;
    }
    .hero-visual-desktop .simple-sync-phone__screen,
    .hero-visual-desktop .simple-sync-phone__image {
      height: 304px !important;
      min-height: 304px !important;
    }
    .hero-grid > .hero-trust-card-grid {
      margin-top: -2px !important;
      gap: 10px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 84px !important;
      padding: 11px 13px !important;
      gap: 10px !important;
      border-radius: 20px !important;
      grid-template-columns: minmax(74px,.82fr) minmax(0,1fr) !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo {
      height: 46px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo svg {
      height: 46px !important;
      max-width: 112px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg {
      max-width: 92px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery {
      width: 48px !important;
      min-width: 48px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
      width: 44px !important;
      height: 44px !important;
      font-size: 1.45rem !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__copy small {
      font-size: .54rem !important;
      letter-spacing: .08em !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__copy strong {
      font-size: .78rem !important;
      line-height: 1.22 !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark strong {
      font-size: .80rem !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark svg {
      width: 18px !important;
      height: 18px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars span {
      width: 15px !important;
      height: 15px !important;
      font-size: .56rem !important;
    }
  }

  @media (min-width: 1181px) and (max-height: 820px) {
    .hero {
      padding-top: calc(var(--header-height, 92px) + 2px) !important;
      padding-bottom: 28px !important;
    }
    .hero-visual-desktop,
    .sync-desktop-layout { min-height: 314px !important; }
    .hero-visual-desktop .simple-sync-phone { width: 148px !important; }
    .hero-visual-desktop .simple-sync-phone__screen,
    .hero-visual-desktop .simple-sync-phone__image {
      height: 282px !important;
      min-height: 282px !important;
    }
    .desktop-sage-card { transform: scale(.94); }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 78px !important;
      padding-block: 9px !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sync-journey__dot { display: none; }
  }

/* ==========================================================================
   hero-v12-blend-and-spacing-fix
   ========================================================================== */
/* Blend the individual product sketches into the hero instead of showing a visible image area. */
  .promo-product-cloud,
  .promo-product-cloud--desktop,
  .promo-product-cloud--mobile {
    inset: -28px -34px -24px -30px !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-mask-image: radial-gradient(ellipse 84% 82% at 54% 48%, #000 0 54%, rgba(0,0,0,.82) 69%, transparent 100%);
    mask-image: radial-gradient(ellipse 84% 82% at 54% 48%, #000 0 54%, rgba(0,0,0,.82) 69%, transparent 100%);
  }
  .promo-product-cloud::before,
  .promo-product-cloud::after {
    display: none !important;
  }
  .promo-product {
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: .085 !important;
    filter: grayscale(1) contrast(.74) brightness(1.02) !important;
    mix-blend-mode: multiply;
  }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+1) { opacity: .105 !important; }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+2) { opacity: .075 !important; }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+3) { opacity: .09 !important; }

  /* Use an open ambient field so there is no rectangular or oval-looking background boundary. */
  .hero-art--dual-sync::before {
    inset: -5% -7% -7% -6% !important;
    background:
      radial-gradient(circle at 22% 38%, rgba(153,254,237,.16), transparent 29%),
      radial-gradient(circle at 69% 34%, rgba(217,214,253,.17), transparent 31%),
      radial-gradient(circle at 80% 76%, rgba(255,189,155,.08), transparent 24%),
      linear-gradient(115deg, rgba(255,255,255,.70), rgba(255,255,255,0) 52%) !important;
    -webkit-mask-image: radial-gradient(ellipse 88% 84% at 55% 50%, #000 0 52%, rgba(0,0,0,.78) 72%, transparent 100%) !important;
    mask-image: radial-gradient(ellipse 88% 84% at 55% 50%, #000 0 52%, rgba(0,0,0,.78) 72%, transparent 100%) !important;
    opacity: 1 !important;
  }
  .hero-art--dual-sync::after {
    inset: 5% 0 7% 3% !important;
    opacity: .12 !important;
    -webkit-mask-image: radial-gradient(ellipse 76% 72% at 58% 49%, #000 0 44%, transparent 88%) !important;
    mask-image: radial-gradient(ellipse 76% 72% at 58% 49%, #000 0 44%, transparent 88%) !important;
  }

  /* Establish clean rhythm between the hero trust row, proof row, and secondary navigation. */
  .proof-strip {
    margin-top: 0 !important;
    padding: 18px 0 22px !important;
    background: linear-gradient(180deg, rgba(251,251,248,.76), #fff 70%) !important;
  }
  .proof-panel {
    margin-top: 0 !important;
  }
  .page-nav-wrap {
    margin-top: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 14px !important;
  }

  @media (min-width: 1181px) {
    .hero {
      padding-bottom: 20px !important;
    }
    .hero-grid > .hero-trust-card-grid {
      margin-bottom: 0 !important;
    }
  }

  @media (min-width: 961px) and (max-width: 1180px) {
    .hero {
      padding-bottom: 22px !important;
    }
    .proof-strip {
      padding-top: 18px !important;
      padding-bottom: 22px !important;
    }
  }

  @media (max-width: 960px) {
    .promo-product-cloud {
      inset: -18px -20px -16px -18px !important;
      -webkit-mask-image: radial-gradient(ellipse 90% 88% at 50% 48%, #000 0 58%, transparent 100%);
      mask-image: radial-gradient(ellipse 90% 88% at 50% 48%, #000 0 58%, transparent 100%);
    }
    .promo-product { opacity: .07 !important; }
    .proof-strip {
      margin-top: 0 !important;
      padding-top: 20px !important;
      padding-bottom: 20px !important;
    }
    .page-nav-wrap {
      padding-top: 6px !important;
      padding-bottom: 10px !important;
    }
  }

/* ==========================================================================
   hero-trust-alignment-and-sync-pulse-v13
   ========================================================================== */
/* Final trust-bar alignment pass: consistent card geometry and vertical rhythm. */
  .hero-grid > .hero-trust-card-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card {
    min-width: 0 !important;
    min-height: 94px !important;
    display: grid !important;
    grid-template-columns: minmax(92px, 42%) minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 14px !important;
    padding: 14px 16px !important;
    border-radius: 22px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo {
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    align-self: center !important;
    overflow: visible !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo svg {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 52px !important;
    margin: 0 !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--shopify svg {
    width: min(100%, 138px) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg {
    width: min(100%, 108px) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--trustpilot {
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 7px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark {
    gap: 6px !important;
    line-height: 1 !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark svg {
    width: 21px !important;
    height: 21px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark strong {
    font-size: .92rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars {
    gap: 3px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars span {
    width: 17px !important;
    height: 17px !important;
    font-size: .64rem !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.65rem !important;
    box-shadow: 0 0 0 7px rgba(201,255,0,.12) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy {
    min-width: 0 !important;
    min-height: 54px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 5px !important;
    text-align: left !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy small {
    margin: 0 !important;
    color: #8A8E95 !important;
    font-size: .58rem !important;
    line-height: 1.15 !important;
    font-weight: 750 !important;
    letter-spacing: .105em !important;
    white-space: normal !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy strong {
    margin: 0 !important;
    color: #202124 !important;
    font-size: .82rem !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-wrap: balance;
  }

  /* Interactive Data Sync heartbeat. */
  .sync-orbit {
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .sync-orbit::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 9px;
    border: 1px solid rgba(194,255,2,.55);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
  }

  .sync-orbit__core {
    transform-origin: 50% 50%;
    will-change: transform, box-shadow;
  }

  .sync-orbit:hover .sync-orbit__core,
  .sync-orbit:focus-visible .sync-orbit__core {
    animation: syncHeartbeatHover 1.12s ease-in-out infinite;
  }

  .sync-orbit:hover::after,
  .sync-orbit:focus-visible::after {
    animation: syncHeartbeatHalo 1.12s ease-out infinite;
  }

  .sync-orbit.is-beating .sync-orbit__core {
    animation: syncHeartbeatClick .72s ease-in-out 2 !important;
  }

  .sync-orbit.is-beating::after {
    animation: syncHeartbeatHaloClick .72s ease-out 2 !important;
  }

  .sync-orbit:focus-visible {
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(194,255,2,.22);
  }

  @keyframes syncHeartbeatHover {
    0%, 100% { transform: scale(1); box-shadow: inset 0 0 0 8px rgba(255,255,255,.9), 0 16px 36px rgba(31,41,55,.09); }
    14% { transform: scale(1.055); box-shadow: inset 0 0 0 8px rgba(255,255,255,.95), 0 18px 42px rgba(194,255,2,.18); }
    28% { transform: scale(.99); }
    42% { transform: scale(1.035); }
    58% { transform: scale(1); }
  }

  @keyframes syncHeartbeatClick {
    0%, 100% { transform: scale(1); }
    18% { transform: scale(1.09); }
    34% { transform: scale(.975); }
    50% { transform: scale(1.065); }
    68% { transform: scale(1); }
  }

  @keyframes syncHeartbeatHalo {
    0% { transform: scale(.82); opacity: 0; }
    18% { opacity: .72; }
    72%, 100% { transform: scale(1.42); opacity: 0; }
  }

  @keyframes syncHeartbeatHaloClick {
    0% { transform: scale(.78); opacity: 0; border-color: rgba(194,255,2,.75); }
    22% { opacity: .9; }
    100% { transform: scale(1.52); opacity: 0; }
  }

  @media (max-width: 1450px) and (min-width: 1200px) {
    .hero-grid > .hero-trust-card-grid {
      gap: 10px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      min-height: 88px !important;
      grid-template-columns: minmax(82px, 40%) minmax(0, 1fr) !important;
      column-gap: 10px !important;
      padding: 12px 13px !important;
      border-radius: 20px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo,
    .hero-grid > .hero-trust-card-grid .hero-trust-card__copy {
      min-height: 48px !important;
      height: 48px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--shopify svg {
      width: min(100%, 120px) !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg {
      width: min(100%, 92px) !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark strong {
      font-size: .82rem !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars span {
      width: 15px !important;
      height: 15px !important;
      font-size: .56rem !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
      width: 46px !important;
      height: 46px !important;
      font-size: 1.48rem !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__copy small {
      font-size: .50rem !important;
      letter-spacing: .08em !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card__copy strong {
      font-size: .72rem !important;
    }
  }

  @media (max-width: 1199px) {
    .hero-grid > .hero-trust-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  @media (max-width: 680px) {
    .hero-grid > .hero-trust-card-grid {
      grid-template-columns: 1fr !important;
      gap: 9px !important;
    }
    .hero-grid > .hero-trust-card-grid .hero-trust-card {
      grid-template-columns: 122px minmax(0, 1fr) !important;
      min-height: 86px !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sync-orbit:hover .sync-orbit__core,
    .sync-orbit:focus-visible .sync-orbit__core,
    .sync-orbit.is-beating .sync-orbit__core,
    .sync-orbit:hover::after,
    .sync-orbit:focus-visible::after,
    .sync-orbit.is-beating::after {
      animation: none !important;
    }
  }

/* ==========================================================================
   hero-product-scatter-interaction-v14
   ========================================================================== */
/* Product illustrations increased by approximately 20% for clearer visibility. */
  .promo-product-cloud .promo-product {
    opacity: .205 !important;
    filter: grayscale(1) contrast(.94) !important;
    transform-origin: center;
    will-change: left, top, transform, opacity;
    transition:
      left .92s cubic-bezier(.22,.85,.28,1),
      top .92s cubic-bezier(.22,.85,.28,1),
      width .92s cubic-bezier(.22,.85,.28,1),
      height .92s cubic-bezier(.22,.85,.28,1),
      transform .92s cubic-bezier(.22,.85,.28,1),
      opacity .4s ease;
  }

  .promo-product-cloud[class*="scatter-layout-"] .promo-product {
    right: auto !important;
    bottom: auto !important;
  }

  .promo-product-cloud.is-scattering .promo-product {
    animation: promoScatterLift .92s cubic-bezier(.22,.85,.28,1) both;
  }
  .promo-product-cloud.is-scattering .promo-product:nth-child(2) { animation-delay: .035s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(3) { animation-delay: .07s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(4) { animation-delay: .105s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(5) { animation-delay: .14s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(6) { animation-delay: .175s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(7) { animation-delay: .21s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(8) { animation-delay: .245s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(9) { animation-delay: .28s; }
  .promo-product-cloud.is-scattering .promo-product:nth-child(10) { animation-delay: .315s; }

  @keyframes promoScatterLift {
    0% { opacity: .205; filter: grayscale(1) contrast(.96) blur(0); }
    38% { opacity: .30; filter: grayscale(1) contrast(1.02) blur(0); }
    100% { opacity: .205; filter: grayscale(1) contrast(.96) blur(0); }
  }

  /* Desktop arrangement 1: balanced perimeter spread. */
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--cap { left: 2% !important; top: 4% !important; width: 74px !important; height: 74px !important; transform: rotate(-8deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tumbler { left: 39% !important; top: 0% !important; width: 60px !important; height: 60px !important; transform: rotate(5deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tote { left: 86% !important; top: 5% !important; width: 78px !important; height: 78px !important; transform: rotate(5deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--speaker { left: 25% !important; top: 25% !important; width: 58px !important; height: 58px !important; transform: rotate(-8deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--mug { left: 88% !important; top: 43% !important; width: 66px !important; height: 66px !important; transform: rotate(4deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--pen { left: 61% !important; top: 5% !important; width: 54px !important; height: 54px !important; transform: rotate(8deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--notebook { left: 8% !important; top: 75% !important; width: 72px !important; height: 72px !important; transform: rotate(-7deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--calendar { left: 51% !important; top: 76% !important; width: 80px !important; height: 80px !important; transform: rotate(2deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--bottle { left: 75% !important; top: 73% !important; width: 62px !important; height: 62px !important; transform: rotate(5deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--usb { left: 91% !important; top: 67% !important; width: 52px !important; height: 52px !important; transform: rotate(10deg) scale(1) !important; }

  /* Desktop arrangement 2: products sweep diagonally across the field. */
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--cap { left: 7% !important; top: 47% !important; width: 68px !important; height: 68px !important; transform: rotate(7deg) scale(.96) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tumbler { left: 59% !important; top: 2% !important; width: 64px !important; height: 64px !important; transform: rotate(-7deg) scale(1.04) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tote { left: 83% !important; top: 13% !important; width: 74px !important; height: 74px !important; transform: rotate(-5deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--speaker { left: 18% !important; top: 70% !important; width: 62px !important; height: 62px !important; transform: rotate(11deg) scale(1.02) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--mug { left: 89% !important; top: 58% !important; width: 62px !important; height: 62px !important; transform: rotate(-8deg) scale(.96) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--pen { left: 31% !important; top: 3% !important; width: 58px !important; height: 58px !important; transform: rotate(-13deg) scale(1.02) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--notebook { left: 45% !important; top: 72% !important; width: 70px !important; height: 70px !important; transform: rotate(8deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--calendar { left: 66% !important; top: 72% !important; width: 76px !important; height: 76px !important; transform: rotate(-4deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--bottle { left: 77% !important; top: 33% !important; width: 58px !important; height: 58px !important; transform: rotate(-3deg) scale(.96) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--usb { left: 3% !important; top: 76% !important; width: 50px !important; height: 50px !important; transform: rotate(-12deg) scale(.95) !important; }

  /* Desktop arrangement 3: a more open constellation around the animation. */
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--cap { left: 49% !important; top: 1% !important; width: 70px !important; height: 70px !important; transform: rotate(-5deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tumbler { left: 89% !important; top: 31% !important; width: 58px !important; height: 58px !important; transform: rotate(8deg) scale(.96) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tote { left: 2% !important; top: 7% !important; width: 80px !important; height: 80px !important; transform: rotate(-4deg) scale(1.02) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--speaker { left: 72% !important; top: 7% !important; width: 60px !important; height: 60px !important; transform: rotate(9deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--mug { left: 17% !important; top: 38% !important; width: 64px !important; height: 64px !important; transform: rotate(7deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--pen { left: 91% !important; top: 3% !important; width: 50px !important; height: 50px !important; transform: rotate(-10deg) scale(.95) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--notebook { left: 87% !important; top: 76% !important; width: 70px !important; height: 70px !important; transform: rotate(6deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--calendar { left: 31% !important; top: 73% !important; width: 78px !important; height: 78px !important; transform: rotate(-5deg) scale(1) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--bottle { left: 6% !important; top: 70% !important; width: 60px !important; height: 60px !important; transform: rotate(5deg) scale(.98) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--usb { left: 60% !important; top: 74% !important; width: 48px !important; height: 48px !important; transform: rotate(12deg) scale(.94) !important; }

  /* Mobile uses the same idea with tighter, edge-safe placements. */
  .promo-product-cloud--mobile .promo-product { opacity: .14 !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--cap { left: 3% !important; top: 3% !important; width: 58px !important; height: 58px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--tumbler { left: 80% !important; top: 4% !important; width: 48px !important; height: 48px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--tote { left: 82% !important; top: 22% !important; width: 60px !important; height: 60px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--speaker { left: 2% !important; top: 28% !important; width: 48px !important; height: 48px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--mug { left: 85% !important; top: 49% !important; width: 50px !important; height: 50px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--pen { left: 7% !important; top: 49% !important; width: 44px !important; height: 44px !important; transform: rotate(10deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--notebook { left: 2% !important; top: 80% !important; width: 56px !important; height: 56px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--calendar { left: 42% !important; top: 82% !important; width: 62px !important; height: 62px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--bottle { left: 82% !important; top: 79% !important; width: 50px !important; height: 50px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-0 .promo-product--usb { display: none !important; }

  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--cap { left: 72% !important; top: 4% !important; width: 56px !important; height: 56px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--tumbler { left: 4% !important; top: 9% !important; width: 46px !important; height: 46px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--tote { left: 2% !important; top: 35% !important; width: 58px !important; height: 58px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--speaker { left: 80% !important; top: 31% !important; width: 46px !important; height: 46px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--mug { left: 8% !important; top: 58% !important; width: 48px !important; height: 48px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--pen { left: 78% !important; top: 55% !important; width: 43px !important; height: 43px !important; transform: rotate(-10deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--notebook { left: 68% !important; top: 80% !important; width: 54px !important; height: 54px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--calendar { left: 22% !important; top: 81% !important; width: 58px !important; height: 58px !important; transform: rotate(-3deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--bottle { left: 3% !important; top: 78% !important; width: 48px !important; height: 48px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-1 .promo-product--usb { display: none !important; }

  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--cap { left: 4% !important; top: 19% !important; width: 56px !important; height: 56px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--tumbler { left: 82% !important; top: 15% !important; width: 46px !important; height: 46px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--tote { left: 72% !important; top: 3% !important; width: 58px !important; height: 58px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--speaker { left: 3% !important; top: 48% !important; width: 46px !important; height: 46px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--mug { left: 82% !important; top: 48% !important; width: 48px !important; height: 48px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--pen { left: 12% !important; top: 4% !important; width: 43px !important; height: 43px !important; transform: rotate(11deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--notebook { left: 4% !important; top: 81% !important; width: 54px !important; height: 54px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--calendar { left: 61% !important; top: 81% !important; width: 58px !important; height: 58px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--bottle { left: 82% !important; top: 79% !important; width: 48px !important; height: 48px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--mobile.scatter-layout-2 .promo-product--usb { display: none !important; }

  @media (prefers-reduced-motion: reduce) {
    .promo-product-cloud .promo-product { transition: none !important; animation: none !important; }
  }

/* ==========================================================================
   hero-product-visibility-v16
   ========================================================================== */
/* Increase product illustration visibility by roughly another 30%. */
  .promo-product-cloud .promo-product {
    opacity: .265 !important;
    filter: grayscale(1) contrast(.98) brightness(.98) !important;
  }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+1) { opacity: .285 !important; }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+2) { opacity: .255 !important; }
  .promo-product-cloud--desktop .promo-product:nth-child(3n+3) { opacity: .245 !important; }
  .promo-product-cloud--mobile .promo-product {
    opacity: .182 !important;
    filter: grayscale(1) contrast(.96) brightness(.985) !important;
  }

/* ========================================================================== 
   Mobile and performance optimization v17
   ========================================================================== */

/* Improve rendering cost for sections outside the viewport. */
.pain-section,
.process-section,
.use-cases,
.pricing-section,
.testimonial-section,
.fit-section,
.faq-section,
.promo-distributor-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}

/* Pause expensive animations when the hero is outside the viewport. */
.hero-art.is-paused *,
.hero-art.is-paused *::before,
.hero-art.is-paused *::after {
  animation-play-state: paused !important;
}

/* Do not reserve GPU layers permanently for idle product illustrations. */
.promo-product-cloud .promo-product {
  will-change: auto !important;
}
.promo-product-cloud.is-scattering .promo-product {
  will-change: transform, opacity !important;
}

/* Stable tap behavior and comfortable controls. */
a,
button,
.btn,
.sync-orbit {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

img {
  height: auto;
}

.hero-title,
.section-title,
.pain-closing,
.offer-title {
  text-wrap: balance;
}

.hero-subheadline,
.section-copy,
.price-features li,
.faq-answer,
.footer-copy {
  overflow-wrap: anywhere;
}

[id] {
  scroll-margin-top: calc(var(--header-height, 92px) + 82px);
}

/* Laptop layout: preserve the visual hierarchy without pushing trust below fold. */
@media (min-width: 961px) and (max-width: 1280px) {
  :root {
    --page: min(1180px, calc(100vw - 36px));
  }

  .hero {
    padding-top: calc(var(--header-height, 94px) + 4px) !important;
    padding-bottom: 48px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(390px, .92fr) minmax(500px, 1.08fr) !important;
    gap: 30px !important;
  }

  .hero-title {
    font-size: clamp(3.2rem, 5.1vw, 4.9rem) !important;
    line-height: .96 !important;
  }

  .hero-subheadline {
    margin-top: 17px !important;
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    margin-top: 22px !important;
  }

  .hero-visual-desktop {
    min-height: 350px !important;
  }

  .sync-desktop-layout {
    min-height: 344px !important;
  }

  .hero-grid > .hero-trust-card-grid {
    margin-top: 6px !important;
    gap: 10px !important;
  }

  .hero-trust-card {
    min-height: 82px !important;
    padding: 12px 14px !important;
    border-radius: 20px !important;
  }

  .hero-trust-card__copy small {
    font-size: .56rem !important;
  }

  .hero-trust-card__copy strong {
    font-size: .78rem !important;
  }
}

/* Tablet and mobile layout. */
@media (max-width: 960px) {
  :root {
    --page: min(100% - 32px, 760px);
    --header-height: 86px;
  }

  html {
    scroll-padding-top: 104px;
  }

  .site-header {
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .nav {
    min-height: 62px;
    padding: 7px 8px 7px 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 12px) !important;
    padding-bottom: 50px !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .hero-content {
    max-width: 700px !important;
  }

  .hero-title {
    max-width: 760px !important;
    font-size: clamp(3rem, 10.4vw, 5.2rem) !important;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
  }

  .hero-subheadline {
    max-width: 650px !important;
    margin-top: 18px !important;
    font-size: clamp(1rem, 3vw, 1.16rem) !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    margin-top: 22px !important;
    gap: 10px !important;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .hero-meta {
    margin-top: 13px !important;
  }

  .hero-art--dual-sync {
    width: 100% !important;
    margin-inline: auto;
  }

  .hero-visual-mobile {
    min-height: 548px !important;
  }

  .sync-mobile-layout {
    min-height: 522px !important;
    grid-template-rows: 112px 150px minmax(250px, 1fr) !important;
    gap: 10px !important;
  }

  .mobile-sage-card {
    width: 158px !important;
    min-height: 96px !important;
  }

  .mobile-sage-card .simple-sync-logo {
    width: 126px !important;
  }

  .hero-visual-mobile .simple-sync-phone {
    width: min(174px, 47vw) !important;
  }

  .hero-visual-mobile .simple-sync-phone__screen,
  .hero-visual-mobile .simple-sync-phone__image {
    min-height: 326px !important;
    height: 326px !important;
  }

  .promo-product-cloud--mobile .promo-product {
    opacity: .17 !important;
  }

  /* Reduce decorative density on smaller devices. */
  .promo-product-cloud--mobile .promo-product--usb,
  .promo-product-cloud--mobile .promo-product--calendar,
  .promo-product-cloud--mobile .promo-product--speaker {
    display: none !important;
  }

  .hero-grid > .hero-trust-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 8px !important;
  }

  .hero-trust-card {
    min-height: 82px !important;
    padding: 12px 13px !important;
    gap: 11px !important;
    border-radius: 20px !important;
  }

  .hero-trust-card__copy small {
    font-size: .56rem !important;
  }

  .hero-trust-card__copy strong {
    font-size: .78rem !important;
  }

  .proof-strip {
    margin-top: 24px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .proof-panel {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .page-nav-wrap {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .page-nav {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .page-nav::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 78px !important;
  }

  .section-title {
    font-size: clamp(2.55rem, 9vw, 4.4rem) !important;
    line-height: 1 !important;
  }

  .outcome-sticky {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .outcome-layout,
  .process-heading,
  .pricing-layout,
  .fit-layout,
  .testimonial-card,
  .promo-distributor-cta-card {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .testimonial-card,
  .testimonial-portrait {
    min-height: auto !important;
  }

  .mobile-sticky-cta {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 24px);
    --header-height: 78px;
  }

  .site-header {
    padding-inline: 0;
  }

  .nav {
    width: calc(100vw - 20px) !important;
    min-height: 58px;
    gap: 10px;
    padding-inline: 14px 7px;
  }

  .brand {
    font-size: .92rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 10px) !important;
    padding-bottom: 42px !important;
  }

  .breadcrumb {
    margin-bottom: 12px !important;
    font-size: .64rem !important;
  }

  .hero-title {
    font-size: clamp(2.65rem, 13vw, 3.8rem) !important;
    line-height: 1 !important;
    letter-spacing: -.055em !important;
  }

  .hero-subheadline {
    font-size: 1rem !important;
    line-height: 1.56 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-meta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .meta-pill {
    justify-content: center;
    text-align: center;
  }

  .hero-visual-mobile {
    min-height: 520px !important;
  }

  .sync-mobile-layout {
    min-height: 500px !important;
    grid-template-rows: 105px 142px minmax(240px, 1fr) !important;
  }

  .mobile-sage-card {
    width: 150px !important;
    min-height: 90px !important;
  }

  .sync-orbit {
    width: 116px !important;
    height: 116px !important;
  }

  .sync-orbit__core {
    width: 92px !important;
    height: 92px !important;
    font-size: .82rem !important;
  }

  .hero-grid > .hero-trust-card-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-trust-card {
    min-height: 76px !important;
    justify-content: flex-start !important;
    padding: 11px 14px !important;
  }

  .hero-trust-card__copy strong {
    font-size: .82rem !important;
  }

  .section {
    padding-block: 64px !important;
  }

  .section-title {
    font-size: clamp(2.25rem, 11vw, 3.4rem) !important;
  }

  .section-copy {
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .pain-grid,
  .outcome-list,
  .use-case-grid,
  .included-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Motion and data-saving preferences. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

html.save-data .promo-product-cloud,
html.save-data .line-packet,
html.save-data .journey-dot:nth-child(n + 2) {
  display: none !important;
}

html.save-data .hero-visual-desktop .simple-sync-phone,
html.save-data .hero-visual-mobile .simple-sync-phone {
  animation: none !important;
}


/* ========================================================================== 
   Hero fold, testimonial cleanup, and expanded product cloud v18
   ========================================================================== */

/* Keep illustration assets separate, readable, and browser-cacheable. */
.promo-product--shirt {
  background-image: url("promo-products/shirt.svg");
}

.promo-product--backpack {
  background-image: url("promo-products/backpack.svg");
}

.promo-product--lanyard {
  background-image: url("promo-products/lanyard.svg");
}

.promo-product--umbrella {
  background-image: url("promo-products/umbrella.svg");
}

.promo-product--mousepad {
  background-image: url("promo-products/mousepad.svg");
}

.promo-product--trophy {
  background-image: url("promo-products/trophy.svg");
}

/* The video and quote cards stand independently without a white parent box. */
.testimonial-card--video {
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.testimonial-content--video {
  background:
    radial-gradient(circle at 92% 10%, rgba(194, 255, 2, .13), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 247, 252, .82));
}

/* Desktop hero: reduce text height and reserve one compact row for trust. */
@media (min-width: 961px) {
  .hero {
    padding-top: calc(var(--header-height, 94px) + 2px) !important;
    padding-bottom: 16px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(450px, .92fr) minmax(560px, 1.08fr) !important;
    column-gap: clamp(22px, 2.4vw, 36px) !important;
    row-gap: 6px !important;
    align-items: center !important;
  }

  .hero-content {
    align-self: center !important;
  }

  .breadcrumb {
    margin-bottom: 10px !important;
  }

  .hero-title {
    max-width: 690px !important;
    font-size: clamp(3.65rem, 4.55vw, 4.95rem) !important;
    line-height: .93 !important;
    letter-spacing: -.066em !important;
    text-wrap: wrap !important;
  }

  .hero-subheadline {
    max-width: 630px !important;
    margin-top: 14px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .hero-actions {
    margin-top: 18px !important;
  }

  .hero-meta {
    margin-top: 11px !important;
  }

  .hero-visual-desktop,
  .sync-desktop-layout {
    min-height: 324px !important;
  }

  .hero-grid > .hero-trust-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 2px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card {
    min-height: 74px !important;
    grid-template-columns: minmax(76px, 39%) minmax(0, 1fr) !important;
    column-gap: 9px !important;
    padding: 9px 11px !important;
    border-radius: 18px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo,
  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy {
    min-height: 44px !important;
    height: 44px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--shopify svg {
    width: min(100%, 110px) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--ppai svg {
    width: min(100%, 88px) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__logo--delivery > span {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.35rem !important;
    box-shadow: 0 0 0 6px rgba(201, 255, 0, .11) !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy {
    gap: 3px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy small {
    font-size: .49rem !important;
    letter-spacing: .075em !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card__copy strong {
    font-size: .70rem !important;
    line-height: 1.2 !important;
    text-wrap: wrap !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark strong {
    font-size: .78rem !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-wordmark svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trustpilot-stars span {
    width: 14px !important;
    height: 14px !important;
    font-size: .52rem !important;
  }
}

/* Laptop-specific reduction keeps the trust row above a 768px fold. */
@media (min-width: 961px) and (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(420px, .94fr) minmax(510px, 1.06fr) !important;
    gap: 22px !important;
  }

  .hero-title {
    font-size: clamp(3.2rem, 4.45vw, 3.95rem) !important;
    line-height: .94 !important;
  }

  .hero-subheadline {
    margin-top: 12px !important;
    font-size: .95rem !important;
  }

  .hero-actions {
    margin-top: 16px !important;
  }

  .hero-visual-desktop,
  .sync-desktop-layout {
    min-height: 305px !important;
  }

  .hero-grid > .hero-trust-card-grid .hero-trust-card {
    grid-template-columns: minmax(70px, 38%) minmax(0, 1fr) !important;
    min-height: 70px !important;
    padding: 8px 10px !important;
  }
}

/* Give the extra illustrations an immediate first-frame position before JavaScript runs. */
.promo-product-cloud--desktop .promo-product--shirt {
  left: 5%;
  top: 21%;
  width: 64px;
  height: 64px;
  transform: rotate(-7deg) scale(.96);
}

.promo-product-cloud--desktop .promo-product--backpack {
  left: 76%;
  top: 21%;
  width: 66px;
  height: 66px;
  transform: rotate(6deg) scale(.98);
}

.promo-product-cloud--desktop .promo-product--lanyard {
  left: 47%;
  top: 14%;
  width: 52px;
  height: 52px;
  transform: rotate(8deg) scale(.94);
}

.promo-product-cloud--desktop .promo-product--umbrella {
  left: 1%;
  top: 53%;
  width: 68px;
  height: 68px;
  transform: rotate(-10deg) scale(.96);
}

.promo-product-cloud--desktop .promo-product--mousepad {
  left: 36%;
  top: 65%;
  width: 62px;
  height: 62px;
  transform: rotate(5deg) scale(.94);
}

.promo-product-cloud--desktop .promo-product--trophy {
  left: 67%;
  top: 55%;
  width: 58px;
  height: 58px;
  transform: rotate(-4deg) scale(.96);
}

/* Six additional products participate in all three click-to-scatter layouts. */
.promo-product-cloud--desktop.scatter-layout-0 .promo-product--shirt {
  left: 5% !important;
  top: 21% !important;
  width: 64px !important;
  height: 64px !important;
  transform: rotate(-7deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-0 .promo-product--backpack {
  left: 76% !important;
  top: 21% !important;
  width: 66px !important;
  height: 66px !important;
  transform: rotate(6deg) scale(.98) !important;
}

.promo-product-cloud--desktop.scatter-layout-0 .promo-product--lanyard {
  left: 47% !important;
  top: 14% !important;
  width: 52px !important;
  height: 52px !important;
  transform: rotate(8deg) scale(.94) !important;
}

.promo-product-cloud--desktop.scatter-layout-0 .promo-product--umbrella {
  left: 1% !important;
  top: 53% !important;
  width: 68px !important;
  height: 68px !important;
  transform: rotate(-10deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-0 .promo-product--mousepad {
  left: 36% !important;
  top: 65% !important;
  width: 62px !important;
  height: 62px !important;
  transform: rotate(5deg) scale(.94) !important;
}

.promo-product-cloud--desktop.scatter-layout-0 .promo-product--trophy {
  left: 67% !important;
  top: 55% !important;
  width: 58px !important;
  height: 58px !important;
  transform: rotate(-4deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--shirt {
  left: 31% !important;
  top: 7% !important;
  width: 62px !important;
  height: 62px !important;
  transform: rotate(9deg) scale(.95) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--backpack {
  left: 71% !important;
  top: 56% !important;
  width: 70px !important;
  height: 70px !important;
  transform: rotate(-8deg) scale(1.02) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--lanyard {
  left: 44% !important;
  top: 71% !important;
  width: 50px !important;
  height: 50px !important;
  transform: rotate(-10deg) scale(.94) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--umbrella {
  left: 1% !important;
  top: 11% !important;
  width: 70px !important;
  height: 70px !important;
  transform: rotate(8deg) scale(.98) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--mousepad {
  left: 35% !important;
  top: 43% !important;
  width: 60px !important;
  height: 60px !important;
  transform: rotate(-5deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-1 .promo-product--trophy {
  left: 83% !important;
  top: 34% !important;
  width: 56px !important;
  height: 56px !important;
  transform: rotate(7deg) scale(.94) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--shirt {
  left: 13% !important;
  top: 61% !important;
  width: 66px !important;
  height: 66px !important;
  transform: rotate(-9deg) scale(.98) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--backpack {
  left: 78% !important;
  top: 6% !important;
  width: 68px !important;
  height: 68px !important;
  transform: rotate(8deg) scale(1) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--lanyard {
  left: 53% !important;
  top: 24% !important;
  width: 52px !important;
  height: 52px !important;
  transform: rotate(6deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--umbrella {
  left: 3% !important;
  top: 68% !important;
  width: 66px !important;
  height: 66px !important;
  transform: rotate(-6deg) scale(.94) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--mousepad {
  left: 33% !important;
  top: 4% !important;
  width: 62px !important;
  height: 62px !important;
  transform: rotate(8deg) scale(.96) !important;
}

.promo-product-cloud--desktop.scatter-layout-2 .promo-product--trophy {
  left: 67% !important;
  top: 75% !important;
  width: 58px !important;
  height: 58px !important;
  transform: rotate(-8deg) scale(.96) !important;
}

.promo-product-cloud.is-scattering .promo-product:nth-child(11) { animation-delay: .35s; }
.promo-product-cloud.is-scattering .promo-product:nth-child(12) { animation-delay: .385s; }
.promo-product-cloud.is-scattering .promo-product:nth-child(13) { animation-delay: .42s; }
.promo-product-cloud.is-scattering .promo-product:nth-child(14) { animation-delay: .455s; }
.promo-product-cloud.is-scattering .promo-product:nth-child(15) { animation-delay: .49s; }
.promo-product-cloud.is-scattering .promo-product:nth-child(16) { animation-delay: .525s; }

/* Tablet and mobile retain the lighter ten-product composition. */
@media (max-width: 960px) {
  .promo-product--shirt,
  .promo-product--backpack,
  .promo-product--lanyard,
  .promo-product--umbrella,
  .promo-product--mousepad,
  .promo-product--trophy {
    display: none !important;
  }
}

/* ========================================================================== 
   Safari heading rendering and expanded hero product field v19
   ========================================================================== */

/*
 * Safari can calculate balanced wrapping and very tight negative tracking
 * differently from Chromium. These rules keep heading geometry predictable
 * without changing the Swishtag type hierarchy.
 */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  font-kerning: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

.hero-title,
.section-title,
.pain-closing,
.offer-title,
.mega-menu__title,
.testimonial-content--video h2 {
  display: block;
  width: 100%;
  overflow: visible;
  white-space: normal;
  text-wrap: wrap !important;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  padding-bottom: .045em;
}

@media (min-width: 961px) {
  .hero-title {
    line-height: .985 !important;
    letter-spacing: -.052em !important;
  }

  .section-title,
  .pain-closing,
  .offer-title {
    line-height: 1.015 !important;
    letter-spacing: -.048em !important;
  }
}

@media (max-width: 960px) {
  .hero-title,
  .section-title,
  .pain-closing,
  .offer-title {
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
  }
}

/* Five additional cacheable product illustrations. */
.promo-product--headphones {
  background-image: url("promo-products/headphones.svg");
}

.promo-product--powerbank {
  background-image: url("promo-products/powerbank.svg");
}

.promo-product--keychain {
  background-image: url("promo-products/keychain.svg");
}

.promo-product--gift-box {
  background-image: url("promo-products/gift-box.svg");
}

.promo-product--phone-stand {
  background-image: url("promo-products/phone-stand.svg");
}

/*
 * This secondary cloud reaches upward behind the glass navigation while the
 * original cloud keeps the established composition around the sync journey.
 */
.promo-product-cloud--top-layer {
  inset: -154px -72px -30px 14% !important;
  z-index: 0;
  overflow: visible !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%) !important;
}

.promo-product-cloud--top-layer .promo-product {
  opacity: .235 !important;
  filter: grayscale(1) contrast(.99) brightness(.98) !important;
  mix-blend-mode: multiply;
}

/* Initial desktop positions before JavaScript applies the first layout. */
.promo-product-cloud--top-layer .promo-product--headphones {
  left: 30%;
  top: 21%;
  width: 72px;
  height: 72px;
  transform: rotate(-7deg) scale(.98);
}

.promo-product-cloud--top-layer .promo-product--powerbank {
  left: 52%;
  top: 34%;
  width: 62px;
  height: 62px;
  transform: rotate(8deg) scale(.95);
}

.promo-product-cloud--top-layer .promo-product--keychain {
  left: 80%;
  top: 23%;
  width: 56px;
  height: 56px;
  transform: rotate(11deg) scale(.96);
}

.promo-product-cloud--top-layer .promo-product--gift-box {
  left: 72%;
  top: 53%;
  width: 76px;
  height: 76px;
  transform: rotate(-5deg) scale(.98);
}

.promo-product-cloud--top-layer .promo-product--phone-stand {
  left: 42%;
  top: 67%;
  width: 62px;
  height: 62px;
  transform: rotate(7deg) scale(.96);
}

/* Layout 1: light constellation behind the navigation and upper hero. */
.promo-product-cloud--top-layer.scatter-layout-0 .promo-product--headphones {
  left: 30% !important;
  top: 21% !important;
  width: 72px !important;
  height: 72px !important;
  transform: rotate(-7deg) scale(.98) !important;
}

.promo-product-cloud--top-layer.scatter-layout-0 .promo-product--powerbank {
  left: 52% !important;
  top: 34% !important;
  width: 62px !important;
  height: 62px !important;
  transform: rotate(8deg) scale(.95) !important;
}

.promo-product-cloud--top-layer.scatter-layout-0 .promo-product--keychain {
  left: 80% !important;
  top: 23% !important;
  width: 56px !important;
  height: 56px !important;
  transform: rotate(11deg) scale(.96) !important;
}

.promo-product-cloud--top-layer.scatter-layout-0 .promo-product--gift-box {
  left: 72% !important;
  top: 53% !important;
  width: 76px !important;
  height: 76px !important;
  transform: rotate(-5deg) scale(.98) !important;
}

.promo-product-cloud--top-layer.scatter-layout-0 .promo-product--phone-stand {
  left: 42% !important;
  top: 67% !important;
  width: 62px !important;
  height: 62px !important;
  transform: rotate(7deg) scale(.96) !important;
}

/* Layout 2: products sweep from the upper-right toward the sync field. */
.promo-product-cloud--top-layer.scatter-layout-1 .promo-product--headphones {
  left: 69% !important;
  top: 18% !important;
  width: 68px !important;
  height: 68px !important;
  transform: rotate(8deg) scale(.96) !important;
}

.promo-product-cloud--top-layer.scatter-layout-1 .promo-product--powerbank {
  left: 34% !important;
  top: 48% !important;
  width: 66px !important;
  height: 66px !important;
  transform: rotate(-9deg) scale(1) !important;
}

.promo-product-cloud--top-layer.scatter-layout-1 .promo-product--keychain {
  left: 88% !important;
  top: 44% !important;
  width: 54px !important;
  height: 54px !important;
  transform: rotate(-12deg) scale(.94) !important;
}

.promo-product-cloud--top-layer.scatter-layout-1 .promo-product--gift-box {
  left: 49% !important;
  top: 24% !important;
  width: 72px !important;
  height: 72px !important;
  transform: rotate(7deg) scale(.96) !important;
}

.promo-product-cloud--top-layer.scatter-layout-1 .promo-product--phone-stand {
  left: 76% !important;
  top: 69% !important;
  width: 60px !important;
  height: 60px !important;
  transform: rotate(-8deg) scale(.95) !important;
}

/* Layout 3: an open spread that fills the right edge without covering the UI. */
.promo-product-cloud--top-layer.scatter-layout-2 .promo-product--headphones {
  left: 43% !important;
  top: 16% !important;
  width: 74px !important;
  height: 74px !important;
  transform: rotate(-5deg) scale(1) !important;
}

.promo-product-cloud--top-layer.scatter-layout-2 .promo-product--powerbank {
  left: 82% !important;
  top: 27% !important;
  width: 60px !important;
  height: 60px !important;
  transform: rotate(10deg) scale(.94) !important;
}

.promo-product-cloud--top-layer.scatter-layout-2 .promo-product--keychain {
  left: 57% !important;
  top: 61% !important;
  width: 58px !important;
  height: 58px !important;
  transform: rotate(13deg) scale(.98) !important;
}

.promo-product-cloud--top-layer.scatter-layout-2 .promo-product--gift-box {
  left: 88% !important;
  top: 58% !important;
  width: 74px !important;
  height: 74px !important;
  transform: rotate(-7deg) scale(.97) !important;
}

.promo-product-cloud--top-layer.scatter-layout-2 .promo-product--phone-stand {
  left: 31% !important;
  top: 73% !important;
  width: 64px !important;
  height: 64px !important;
  transform: rotate(6deg) scale(.98) !important;
}

/* Keep the expanded composition focused on desktop and laptop viewports. */
@media (max-width: 960px) {
  .promo-product-cloud--top-layer {
    display: none !important;
  }
}

@media (min-width: 961px) and (max-width: 1280px) {
  .promo-product-cloud--top-layer {
    inset: -140px -52px -20px 16% !important;
  }

  .promo-product-cloud--top-layer .promo-product {
    transform-origin: center;
  }
}


/* ========================================================================== 
   Connected navigation and collision-free hero products v20
   ========================================================================== */

/*
 * The primary and secondary navigation share the same width and connect as
 * one continuous glass navigation stack after the secondary nav becomes sticky.
 */
@media (min-width: 901px) {
  .site-header.is-nav-connected {
    padding: 12px 0 0 !important;
  }

  .site-header.is-nav-connected .modern-nav {
    min-height: 60px !important;
    border-bottom: 0 !important;
    border-radius: 23px 23px 0 0 !important;
    box-shadow: none !important;
  }

  .page-nav-wrap.is-stuck {
    top: var(--page-nav-top) !important;
    padding: 0 0 12px !important;
  }

  .page-nav-wrap.is-stuck > .page-shell {
    transform: translateY(-1px);
  }

  .page-nav-wrap.is-stuck .page-nav-shell {
    min-height: 50px !important;
    margin: 0 !important;
    border-top: 0 !important;
    border-radius: 0 0 23px 23px !important;
    background: rgba(255, 255, 255, .97) !important;
    box-shadow: 0 20px 44px rgba(32, 33, 36, .10) !important;
    transform: none !important;
  }

  .page-nav-wrap.is-stuck .page-nav-shell::before {
    top: -2px !important;
    left: -1px !important;
    right: -1px !important;
    width: auto !important;
    height: 3px !important;
    transform: none !important;
    clip-path: none !important;
    background: rgba(255, 255, 255, .97) !important;
  }
}

@media (max-width: 900px) {
  .site-header.is-nav-connected {
    padding-bottom: 0 !important;
  }

  .site-header.is-nav-connected .modern-nav {
    border-bottom: 0 !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: none !important;
  }

  .page-nav-wrap.is-stuck {
    top: var(--page-nav-top) !important;
    padding-top: 0 !important;
  }

  .page-nav-wrap.is-stuck > .page-shell {
    transform: translateY(-1px);
  }

  .page-nav-wrap.is-stuck .page-nav-shell {
    margin: 0 !important;
    border-top: 0 !important;
    border-radius: 0 0 20px 20px !important;
    transform: none !important;
  }
}

/*
 * Both desktop product clouds now use one shared coordinate system. JavaScript
 * assigns every product to a unique slot, so no two illustrations overlap.
 */
@media (min-width: 961px) {
  .sync-desktop-layout > .promo-product-cloud--desktop,
  .sync-desktop-layout > .promo-product-cloud--top-layer {
    inset: -20px -28px -18px -24px !important;
    z-index: 0 !important;
    overflow: visible !important;
    -webkit-mask-image: radial-gradient(ellipse 96% 92% at 54% 49%, #000 0 74%, rgba(0, 0, 0, .88) 86%, transparent 100%) !important;
    mask-image: radial-gradient(ellipse 96% 92% at 54% 49%, #000 0 74%, rgba(0, 0, 0, .88) 86%, transparent 100%) !important;
  }

  .promo-product-cloud--top-layer .promo-product,
  .promo-product-cloud--desktop .promo-product {
    opacity: .235 !important;
    filter: grayscale(1) contrast(.98) brightness(.985) !important;
    mix-blend-mode: multiply;
  }

  .promo-product-cloud--desktop .promo-product:nth-child(3n+1),
  .promo-product-cloud--desktop .promo-product:nth-child(3n+2),
  .promo-product-cloud--desktop .promo-product:nth-child(3n+3) {
    opacity: .235 !important;
  }
}


/*
 * v21 hero refresh
 * - Uses the new company-store screenshot in the phone mockup.
 * - Redistributes promo-product illustrations across the full right side
 *   of the hero in three non-overlapping random scatter layouts.
 */
@media (min-width: 961px) {
  .sync-desktop-layout > .promo-product-cloud--desktop,
  .sync-desktop-layout > .promo-product-cloud--top-layer {
    inset: -42px -36px -24px -18px !important;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.82) 0%, #000 14%, #000 92%, rgba(0,0,0,.88) 100%) !important;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.82) 0%, #000 14%, #000 92%, rgba(0,0,0,.88) 100%) !important;
  }

  .promo-product-cloud--desktop .promo-product,
  .promo-product-cloud--top-layer .promo-product {
    opacity: .205 !important;
    filter: grayscale(1) contrast(.98) brightness(.99) !important;
  }

  /* Base state mirrors scatter layout 0 so the hero feels full immediately. */
  .promo-product-cloud--desktop .promo-product--cap,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--cap { left: 57.4% !important; top: 38.0% !important; width: 67px !important; height: 67px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop .promo-product--tumbler,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tumbler { left: 85.3% !important; top: 44.3% !important; width: 60px !important; height: 60px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop .promo-product--tote,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tote { left: 76.0% !important; top: 40.9% !important; width: 70px !important; height: 70px !important; transform: rotate(-10deg) !important; }
  .promo-product-cloud--desktop .promo-product--speaker,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--speaker { left: 81.6% !important; top: 65.8% !important; width: 49px !important; height: 49px !important; transform: rotate(-1deg) !important; }
  .promo-product-cloud--desktop .promo-product--mug,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--mug { left: 36.3% !important; top: 0.0% !important; width: 67px !important; height: 67px !important; transform: rotate(-3deg) !important; }
  .promo-product-cloud--desktop .promo-product--pen,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--pen { left: 43.2% !important; top: 74.8% !important; width: 45px !important; height: 45px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--desktop .promo-product--notebook,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--notebook { left: 52.2% !important; top: 67.2% !important; width: 64px !important; height: 64px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--desktop .promo-product--calendar,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--calendar { left: 84.4% !important; top: 10.7% !important; width: 69px !important; height: 69px !important; transform: rotate(0deg) !important; }
  .promo-product-cloud--desktop .promo-product--bottle,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--bottle { left: 27.1% !important; top: 72.6% !important; width: 58px !important; height: 58px !important; transform: rotate(-3deg) !important; }
  .promo-product-cloud--desktop .promo-product--usb,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--usb { left: 54.5% !important; top: 6.9% !important; width: 42px !important; height: 42px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop .promo-product--shirt,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--shirt { left: 65.0% !important; top: 4.7% !important; width: 69px !important; height: 69px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--desktop .promo-product--backpack,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--backpack { left: 76.3% !important; top: 22.3% !important; width: 60px !important; height: 60px !important; transform: rotate(1deg) !important; }
  .promo-product-cloud--desktop .promo-product--lanyard,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--lanyard { left: 24.0% !important; top: -4.4% !important; width: 60px !important; height: 60px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop .promo-product--umbrella,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--umbrella { left: 64.4% !important; top: 67.5% !important; width: 67px !important; height: 67px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop .promo-product--mousepad,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--mousepad { left: 48.5% !important; top: 24.4% !important; width: 61px !important; height: 61px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--desktop .promo-product--trophy,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--trophy { left: 45.4% !important; top: 4.8% !important; width: 53px !important; height: 53px !important; transform: rotate(-4deg) !important; }

  .promo-product-cloud--top-layer .promo-product--headphones,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--headphones { left: 74.8% !important; top: 75.5% !important; width: 53px !important; height: 53px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--top-layer .promo-product--powerbank,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--powerbank { left: 77.9% !important; top: 5.4% !important; width: 52px !important; height: 52px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--top-layer .promo-product--keychain,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--keychain { left: 61.1% !important; top: -5.8% !important; width: 41px !important; height: 41px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--top-layer .promo-product--gift-box,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--gift-box { left: 72.9% !important; top: 60.5% !important; width: 52px !important; height: 52px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--top-layer .promo-product--phone-stand,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--phone-stand { left: 86.5% !important; top: 26.7% !important; width: 44px !important; height: 44px !important; transform: rotate(-7deg) !important; }

  /* Scatter layout 1 */
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--cap { left: 74.5% !important; top: 64.3% !important; width: 68px !important; height: 68px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tumbler { left: 50.7% !important; top: 46.0% !important; width: 52px !important; height: 52px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tote { left: 23.5% !important; top: 62.8% !important; width: 76px !important; height: 76px !important; transform: rotate(1deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--speaker { left: 60.8% !important; top: 2.5% !important; width: 46px !important; height: 46px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--mug { left: 64.4% !important; top: 24.4% !important; width: 57px !important; height: 57px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--pen { left: 26.6% !important; top: 3.0% !important; width: 44px !important; height: 44px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--notebook { left: 86.6% !important; top: 15.5% !important; width: 60px !important; height: 60px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--calendar { left: 77.7% !important; top: -4.9% !important; width: 74px !important; height: 74px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--bottle { left: 47.5% !important; top: 2.1% !important; width: 59px !important; height: 59px !important; transform: rotate(-10deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--usb { left: 52.5% !important; top: 31.3% !important; width: 41px !important; height: 41px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--shirt { left: 82.8% !important; top: 72.2% !important; width: 73px !important; height: 73px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--backpack { left: 33.4% !important; top: 4.1% !important; width: 61px !important; height: 61px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--lanyard { left: 78.3% !important; top: 41.4% !important; width: 53px !important; height: 53px !important; transform: rotate(-2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--umbrella { left: 56.4% !important; top: 68.3% !important; width: 67px !important; height: 67px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--mousepad { left: 66.6% !important; top: 68.3% !important; width: 56px !important; height: 56px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--trophy { left: 64.1% !important; top: 38.8% !important; width: 62px !important; height: 62px !important; transform: rotate(-7deg) !important; }

  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--headphones { left: 40.5% !important; top: 64.7% !important; width: 52px !important; height: 52px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--powerbank { left: 86.9% !important; top: 3.5% !important; width: 47px !important; height: 47px !important; transform: rotate(1deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--keychain { left: 71.2% !important; top: -3.2% !important; width: 43px !important; height: 43px !important; transform: rotate(9deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--gift-box { left: 72.8% !important; top: 15.6% !important; width: 58px !important; height: 58px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--phone-stand { left: 86.8% !important; top: 59.4% !important; width: 46px !important; height: 46px !important; transform: rotate(8deg) !important; }

  /* Scatter layout 2 */
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--cap { left: 79.1% !important; top: 19.6% !important; width: 65px !important; height: 65px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tumbler { left: 52.9% !important; top: 70.5% !important; width: 55px !important; height: 55px !important; transform: rotate(-2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tote { left: 79.3% !important; top: 40.3% !important; width: 67px !important; height: 67px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--speaker { left: 33.4% !important; top: 67.9% !important; width: 53px !important; height: 53px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--mug { left: 85.4% !important; top: 4.3% !important; width: 63px !important; height: 63px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--pen { left: 88.7% !important; top: 25.4% !important; width: 47px !important; height: 47px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--notebook { left: 23.4% !important; top: -2.3% !important; width: 70px !important; height: 70px !important; transform: rotate(0deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--calendar { left: 64.1% !important; top: -3.0% !important; width: 77px !important; height: 77px !important; transform: rotate(-1deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--bottle { left: 56.5% !important; top: 45.0% !important; width: 60px !important; height: 60px !important; transform: rotate(-1deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--usb { left: 78.4% !important; top: 8.4% !important; width: 45px !important; height: 45px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--shirt { left: 51.7% !important; top: 22.1% !important; width: 67px !important; height: 67px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--backpack { left: 36.7% !important; top: 2.8% !important; width: 66px !important; height: 66px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--lanyard { left: 65.4% !important; top: 70.5% !important; width: 56px !important; height: 56px !important; transform: rotate(1deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--umbrella { left: 86.5% !important; top: 72.4% !important; width: 63px !important; height: 63px !important; transform: rotate(1deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--mousepad { left: 56.7% !important; top: 1.3% !important; width: 55px !important; height: 55px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--trophy { left: 63.2% !important; top: 24.5% !important; width: 61px !important; height: 61px !important; transform: rotate(0deg) !important; }

  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--headphones { left: 65.7% !important; top: 40.0% !important; width: 50px !important; height: 50px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--powerbank { left: 25.0% !important; top: 64.0% !important; width: 46px !important; height: 46px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--keychain { left: 78.0% !important; top: 63.3% !important; width: 46px !important; height: 46px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--gift-box { left: 46.0% !important; top: 65.1% !important; width: 58px !important; height: 58px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--phone-stand { left: 45.7% !important; top: 3.0% !important; width: 49px !important; height: 49px !important; transform: rotate(3deg) !important; }
}

/* v22: freer random hero product scatter across the full right hero side */
@media (min-width: 961px) {
  .sync-desktop-layout > .promo-product-cloud--desktop,
  .sync-desktop-layout > .promo-product-cloud--top-layer {
    inset: -84px -46px -24px -12px !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .promo-product-cloud--desktop .promo-product,
  .promo-product-cloud--top-layer .promo-product {
    opacity: .215 !important;
  }
  .promo-product-cloud--desktop .promo-product--cap,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--cap { left: 63% !important; top: 18% !important; width: 69px !important; height: 69px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--desktop .promo-product--tumbler,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tumbler { left: 78% !important; top: 44% !important; width: 58px !important; height: 58px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--desktop .promo-product--tote,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--tote { left: 82% !important; top: -2% !important; width: 74px !important; height: 74px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop .promo-product--speaker,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--speaker { left: 46% !important; top: 36% !important; width: 51px !important; height: 51px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--desktop .promo-product--mug,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--mug { left: 34% !important; top: 6% !important; width: 64px !important; height: 64px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--desktop .promo-product--pen,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--pen { left: 55% !important; top: 74% !important; width: 46px !important; height: 46px !important; transform: rotate(9deg) !important; }
  .promo-product-cloud--desktop .promo-product--notebook,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--notebook { left: 28% !important; top: 60% !important; width: 68px !important; height: 68px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop .promo-product--calendar,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--calendar { left: 68% !important; top: 70% !important; width: 76px !important; height: 76px !important; transform: rotate(2deg) !important; }
  .promo-product-cloud--desktop .promo-product--bottle,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--bottle { left: 40% !important; top: 74% !important; width: 61px !important; height: 61px !important; transform: rotate(-3deg) !important; }
  .promo-product-cloud--desktop .promo-product--usb,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--usb { left: 50% !important; top: 13% !important; width: 43px !important; height: 43px !important; transform: rotate(10deg) !important; }
  .promo-product-cloud--desktop .promo-product--shirt,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--shirt { left: 27% !important; top: 28% !important; width: 74px !important; height: 74px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop .promo-product--backpack,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--backpack { left: 59% !important; top: 40% !important; width: 66px !important; height: 66px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop .promo-product--lanyard,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--lanyard { left: 24% !important; top: -4% !important; width: 60px !important; height: 60px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop .promo-product--umbrella,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--umbrella { left: 87% !important; top: 62% !important; width: 70px !important; height: 70px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--desktop .promo-product--mousepad,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--mousepad { left: 52% !important; top: -1% !important; width: 57px !important; height: 57px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--desktop .promo-product--trophy,
  .promo-product-cloud--desktop.scatter-layout-0 .promo-product--trophy { left: 42% !important; top: 54% !important; width: 57px !important; height: 57px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--top-layer .promo-product--headphones,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--headphones { left: 70% !important; top: -6% !important; width: 52px !important; height: 52px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--top-layer .promo-product--powerbank,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--powerbank { left: 87% !important; top: 8% !important; width: 47px !important; height: 47px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--top-layer .promo-product--keychain,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--keychain { left: 58% !important; top: -10% !important; width: 42px !important; height: 42px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--top-layer .promo-product--gift-box,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--gift-box { left: 73% !important; top: 56% !important; width: 54px !important; height: 54px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--top-layer .promo-product--phone-stand,
  .promo-product-cloud--top-layer.scatter-layout-0 .promo-product--phone-stand { left: 89% !important; top: 30% !important; width: 45px !important; height: 45px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--cap { left: 86% !important; top: 39% !important; width: 67px !important; height: 67px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tumbler { left: 57% !important; top: 20% !important; width: 55px !important; height: 55px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--tote { left: 38% !important; top: -2% !important; width: 72px !important; height: 72px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--speaker { left: 71% !important; top: 48% !important; width: 50px !important; height: 50px !important; transform: rotate(9deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--mug { left: 27% !important; top: 43% !important; width: 60px !important; height: 60px !important; transform: rotate(-2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--pen { left: 90% !important; top: 57% !important; width: 44px !important; height: 44px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--notebook { left: 46% !important; top: 74% !important; width: 66px !important; height: 66px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--calendar { left: 78% !important; top: 68% !important; width: 74px !important; height: 74px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--bottle { left: 35% !important; top: 17% !important; width: 59px !important; height: 59px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--usb { left: 67% !important; top: 31% !important; width: 42px !important; height: 42px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--shirt { left: 55% !important; top: 44% !important; width: 71px !important; height: 71px !important; transform: rotate(10deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--backpack { left: 24% !important; top: 59% !important; width: 64px !important; height: 64px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--lanyard { left: 61% !important; top: -8% !important; width: 56px !important; height: 56px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--umbrella { left: 86% !important; top: 6% !important; width: 68px !important; height: 68px !important; transform: rotate(-4deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--mousepad { left: 43% !important; top: 2% !important; width: 55px !important; height: 55px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-1 .promo-product--trophy { left: 73% !important; top: 24% !important; width: 58px !important; height: 58px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--headphones { left: 31% !important; top: 67% !important; width: 53px !important; height: 53px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--powerbank { left: 74% !important; top: -7% !important; width: 49px !important; height: 49px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--keychain { left: 84% !important; top: 16% !important; width: 42px !important; height: 42px !important; transform: rotate(-10deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--gift-box { left: 62% !important; top: 61% !important; width: 57px !important; height: 57px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-1 .promo-product--phone-stand { left: 47% !important; top: 6% !important; width: 46px !important; height: 46px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--cap { left: 45% !important; top: -4% !important; width: 70px !important; height: 70px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tumbler { left: 72% !important; top: 24% !important; width: 56px !important; height: 56px !important; transform: rotate(-7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--tote { left: 30% !important; top: 38% !important; width: 73px !important; height: 73px !important; transform: rotate(8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--speaker { left: 59% !important; top: 74% !important; width: 49px !important; height: 49px !important; transform: rotate(-3deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--mug { left: 84% !important; top: -1% !important; width: 63px !important; height: 63px !important; transform: rotate(3deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--pen { left: 37% !important; top: 20% !important; width: 45px !important; height: 45px !important; transform: rotate(-9deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--notebook { left: 63% !important; top: -9% !important; width: 69px !important; height: 69px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--calendar { left: 49% !important; top: 67% !important; width: 76px !important; height: 76px !important; transform: rotate(-2deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--bottle { left: 90% !important; top: 20% !important; width: 60px !important; height: 60px !important; transform: rotate(5deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--usb { left: 75% !important; top: 57% !important; width: 42px !important; height: 42px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--shirt { left: 44% !important; top: 33% !important; width: 72px !important; height: 72px !important; transform: rotate(9deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--backpack { left: 24% !important; top: 8% !important; width: 65px !important; height: 65px !important; transform: rotate(-6deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--lanyard { left: 70% !important; top: 2% !important; width: 56px !important; height: 56px !important; transform: rotate(4deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--umbrella { left: 24% !important; top: 58% !important; width: 69px !important; height: 69px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--mousepad { left: 53% !important; top: 11% !important; width: 58px !important; height: 58px !important; transform: rotate(-10deg) !important; }
  .promo-product-cloud--desktop.scatter-layout-2 .promo-product--trophy { left: 38% !important; top: 52% !important; width: 58px !important; height: 58px !important; transform: rotate(6deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--headphones { left: 81% !important; top: 71% !important; width: 51px !important; height: 51px !important; transform: rotate(7deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--powerbank { left: 28% !important; top: 72% !important; width: 48px !important; height: 48px !important; transform: rotate(-5deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--keychain { left: 61% !important; top: 6% !important; width: 43px !important; height: 43px !important; transform: rotate(9deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--gift-box { left: 87% !important; top: 46% !important; width: 56px !important; height: 56px !important; transform: rotate(-8deg) !important; }
  .promo-product-cloud--top-layer.scatter-layout-2 .promo-product--phone-stand { left: 54% !important; top: 57% !important; width: 46px !important; height: 46px !important; transform: rotate(5deg) !important; }
}


/*
 * v23 mobile hero spacing
 * Give the SAGE card, sync orbit, and phone a little more breathing room so
 * the dotted connection remains visible on small screens.
 */
@media (max-width: 960px) {
  .hero-visual-mobile {
    min-height: 548px !important;
  }

  .sync-mobile-layout {
    min-height: 530px !important;
    grid-template-rows: 108px 168px minmax(250px, 1fr) !important;
    gap: 14px !important;
  }

  .mobile-sync-system {
    min-height: 168px !important;
  }

  .mobile-line--top {
    height: calc(50% - 60px) !important;
  }

  .mobile-line--bottom {
    top: calc(50% + 60px) !important;
    height: calc(50% - 8px) !important;
  }
}

@media (max-width: 520px) {
  .hero-visual-mobile {
    min-height: 540px !important;
  }

  .sync-mobile-layout {
    min-height: 522px !important;
    grid-template-rows: 105px 164px minmax(245px, 1fr) !important;
    gap: 14px !important;
  }

  .mobile-sync-system {
    min-height: 164px !important;
  }
}

/*
 * v24 SAGE problem section tightening
 * Keep the first content heading readable and align the problem cards.
 */
.sage-connect-page .pain-heading .section-title {
  max-width: 760px !important;
  font-size: clamp(2.85rem, 4.25vw, 4.85rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.045em !important;
}

.sage-connect-page .pain-heading {
  gap: 52px !important;
  align-items: end !important;
}

.sage-connect-page .pain-grid {
  gap: 18px !important;
  margin-top: 40px !important;
  align-items: stretch !important;
}

.sage-connect-page .pain-card {
  min-height: 235px !important;
  padding: 24px !important;
  display: block !important;
}

.sage-connect-page .pain-card__number {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 24px !important;
  border-radius: 13px !important;
}

.sage-connect-page .pain-card h3 {
  margin: 0 0 12px !important;
  font-size: clamp(1.18rem, 1.45vw, 1.48rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -.035em !important;
}

.sage-connect-page .pain-card p {
  margin: 0 !important;
  font-size: .88rem !important;
  line-height: 1.58 !important;
}

@media (max-width: 1180px) {
  .sage-connect-page .pain-heading .section-title {
    font-size: clamp(2.6rem, 5.6vw, 4.2rem) !important;
  }

  .sage-connect-page .pain-card {
    min-height: 220px !important;
  }
}

@media (max-width: 760px) {
  .sage-connect-page .pain-heading {
    gap: 22px !important;
  }

  .sage-connect-page .pain-heading .section-title {
    max-width: 100% !important;
    font-size: clamp(2.3rem, 10vw, 3.35rem) !important;
  }

  .sage-connect-page .pain-grid {
    gap: 12px !important;
    margin-top: 30px !important;
  }

  .sage-connect-page .pain-card {
    min-height: 0 !important;
    padding: 20px !important;
  }
}
