
        /* Premium Gradient Background - starts from navbar color for seamless look */
        .hero-gradient-bg {
          background: linear-gradient(
            180deg,
            #1e2145 0%,
            #29335c 30%,
            #3d4670 100%
          );
          position: relative;
          overflow: hidden;
        }
        .hero-enhanced {
          padding-top: 20px;
        }
        .hero-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 50px;
          padding: 6px 16px;
          margin-bottom: 20px;
          font-size: 13px;
          color: rgba(255, 255, 255, 0.9);
          font-weight: 500;
        }
        .hero-badge-dot {
          width: 8px;
          height: 8px;
          background: #4ade80;
          border-radius: 50%;
          animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
          50% {
            opacity: 0.6;
            transform: scale(0.9);
          }
        }
        .hero-title-enhanced {
          font-size: 48px !important;
          line-height: 1.1 !important;
          margin-bottom: 20px !important;
        }
        @media (max-width: 768px) {
          .hero-title-enhanced {
            font-size: 36px !important;
          }
          .hero-badge {
            font-size: 12px;
            padding: 5px 12px;
          }
          /* Hide decorations on mobile to prevent overlap */
          .hero-form-decoration,
          .decoration-tall,
          .cta-decoration {
            display: none !important;
          }
        }
      

                .hero-checklist {
                  margin-top: 28px;
                  display: flex;
                  flex-direction: column;
                  gap: 14px;
                }
                .hero-check-item {
                  display: flex;
                  align-items: center;
                  gap: 12px;
                  color: rgba(255, 255, 255, 0.9);
                  font-size: 16px;
                  line-height: 1.4;
                }
                .hero-check-icon {
                  width: 22px;
                  height: 22px;
                  min-width: 22px;
                  background: rgba(74, 222, 128, 0.2);
                  border-radius: 50%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                }
                .hero-check-icon svg {
                  width: 12px;
                  height: 12px;
                  stroke: #4ade80;
                  stroke-width: 3;
                  fill: none;
                }
                @media (max-width: 768px) {
                  .hero-check-item {
                    font-size: 15px;
                  }
                }
              

        /* Benefits Background Orbs */
        .posh-benefits-bg-orb {
          position: absolute;
          border-radius: 50%;
          filter: blur(80px);
          opacity: 0.5;
          pointer-events: none;
          animation: poshFloatOrb 8s ease-in-out infinite;
        }
        .posh-benefits-bg-orb-1 {
          width: 400px;
          height: 400px;
          background: rgba(41, 51, 92, 0.1);
          top: -100px;
          left: -100px;
          animation-delay: 0s;
        }
        .posh-benefits-bg-orb-2 {
          width: 300px;
          height: 300px;
          background: rgba(193, 232, 238, 0.4);
          bottom: -50px;
          right: -50px;
          animation-delay: 2s;
        }
        .posh-benefits-bg-orb-3 {
          width: 200px;
          height: 200px;
          background: rgba(41, 51, 92, 0.08);
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          animation-delay: 4s;
        }

        @keyframes poshFloatOrb {
          0%,
          100% {
            transform: translate(0, 0) scale(1);
          }
          25% {
            transform: translate(20px, -20px) scale(1.05);
          }
          50% {
            transform: translate(-10px, 20px) scale(0.95);
          }
          75% {
            transform: translate(-20px, -10px) scale(1.02);
          }
        }

        /* Benefits Header */
        .posh-benefits-header {
          text-align: center;
          margin-bottom: 60px;
          position: relative;
          z-index: 2;
        }

        .posh-benefits-label {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: linear-gradient(
            135deg,
            rgba(41, 51, 92, 0.08) 0%,
            rgba(193, 232, 238, 0.3) 100%
          );
          padding: 8px 20px;
          border-radius: 30px;
          font-size: 13px;
          font-weight: 700;
          color: #29335c;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 20px;
          animation: poshFadeInDown 0.6s ease-out;
        }

        .posh-benefits-label::before {
          content: "";
          width: 8px;
          height: 8px;
          background: #29335c;
          border-radius: 50%;
          animation: poshPulse 2s ease-in-out infinite;
        }

        @keyframes poshFadeInDown {
          from {
            opacity: 0;
            transform: translateY(-20px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @keyframes poshPulse {
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
          50% {
            opacity: 0.5;
            transform: scale(1.2);
          }
        }

        /* Benefits Grid */
        .posh-benefits-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 24px;
          position: relative;
          z-index: 2;
        }

        /* Benefit Card */
        .posh-benefit-card {
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-radius: 24px;
          padding: 40px 28px;
          text-align: center;
          border: 1px solid rgba(41, 51, 92, 0.08);
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          opacity: 0;
          transform: translateY(40px);
          position: relative;
          overflow: hidden;
        }

        .posh-benefit-card::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #29335c, #4a5a8c);
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.5s ease;
        }

        .posh-benefit-card:hover::before {
          transform: scaleX(1);
        }

        .posh-benefit-card.animate-in {
          opacity: 1;
          transform: translateY(0);
        }

        .posh-benefit-card:nth-child(1) {
          transition-delay: 0.1s;
        }
        .posh-benefit-card:nth-child(2) {
          transition-delay: 0.2s;
        }
        .posh-benefit-card:nth-child(3) {
          transition-delay: 0.3s;
        }
        .posh-benefit-card:nth-child(4) {
          transition-delay: 0.4s;
        }

        .posh-benefit-card:hover {
          transform: translateY(-12px);
          box-shadow: 0 25px 50px rgba(41, 51, 92, 0.15),
            0 10px 20px rgba(0, 0, 0, 0.05);
          border-color: rgba(41, 51, 92, 0.2);
        }

        /* Icon Container */
        .posh-benefit-icon {
          width: 80px;
          height: 80px;
          margin: 0 auto 24px;
          background: linear-gradient(
            135deg,
            rgba(193, 232, 238, 0.5) 0%,
            rgba(41, 51, 92, 0.1) 100%
          );
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          transition: all 0.4s ease;
        }

        .posh-benefit-icon::after {
          content: "";
          position: absolute;
          inset: -4px;
          border-radius: 24px;
          background: linear-gradient(135deg, #29335c, #4a5a8c);
          opacity: 0;
          z-index: -1;
          transition: opacity 0.4s ease;
        }

        .posh-benefit-card:hover .posh-benefit-icon {
          background: linear-gradient(135deg, #29335c 0%, #4a5a8c 100%);
          transform: scale(1.1) rotate(5deg);
        }

        .posh-benefit-card:hover .posh-benefit-icon::after {
          opacity: 0.2;
        }

        .posh-benefit-icon img {
          width: 40px;
          height: 40px;
          transition: all 0.4s ease;
          filter: brightness(0) saturate(100%) invert(18%) sepia(15%)
            saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(95%);
        }

        .posh-benefit-card:hover .posh-benefit-icon img {
          filter: brightness(0) invert(1);
          transform: scale(1.1);
        }

        /* Card Content */
        .posh-benefit-card h4 {
          font-size: 20px;
          font-weight: 700;
          color: #29335c;
          margin-bottom: 12px;
          transition: color 0.3s ease;
        }

        .posh-benefit-card:hover h4 {
          color: #29335c;
        }

        .posh-benefit-card p {
          font-size: 15px;
          line-height: 1.6;
          color: #5a5a7a;
          margin: 0;
        }

        /* Number Badge */
        .posh-benefit-number {
          position: absolute;
          top: 16px;
          right: 16px;
          width: 28px;
          height: 28px;
          background: linear-gradient(135deg, #29335c 0%, #4a5a8c 100%);
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-weight: 700;
          color: white;
          opacity: 0;
          transform: scale(0);
          transition: all 0.4s ease 0.2s;
        }

        .posh-benefit-card.animate-in .posh-benefit-number {
          opacity: 1;
          transform: scale(1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
          .posh-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
          }
          .posh-benefit-card {
            padding: 32px 24px;
          }
        }

        @media (max-width: 600px) {
          .posh-benefits-grid {
            grid-template-columns: 1fr;
          }
          .posh-benefit-card {
            padding: 28px 20px;
          }
          .posh-benefit-icon {
            width: 70px;
            height: 70px;
          }
          .posh-benefits-header {
            margin-bottom: 40px;
          }
        }
      

        /* Features Section Styles */
        .features-bg-pattern {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-image: radial-gradient(
            rgba(41, 51, 92, 0.03) 1px,
            transparent 1px
          );
          background-size: 30px 30px;
          pointer-events: none;
        }

        .features-header {
          text-align: center;
          margin-bottom: 60px;
          position: relative;
          z-index: 2;
        }

        .features-label {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: linear-gradient(
            135deg,
            rgba(41, 51, 92, 0.08) 0%,
            rgba(193, 232, 238, 0.3) 100%
          );
          padding: 8px 20px;
          border-radius: 30px;
          font-size: 13px;
          font-weight: 700;
          color: #29335c;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 16px;
        }

        .features-label::before {
          content: "";
          width: 8px;
          height: 8px;
          background: #29335c;
          border-radius: 50%;
          animation: featurePulse 2s ease-in-out infinite;
        }

        @keyframes featurePulse {
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
          50% {
            opacity: 0.5;
            transform: scale(1.2);
          }
        }

        .features-title {
          font-size: 36px;
          font-weight: 700;
          color: #29335c;
          margin: 0;
        }

        .features-count {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          margin-top: 16px;
          font-size: 15px;
          color: #5a5a7a;
        }

        .features-count-badge {
          background: linear-gradient(135deg, #29335c 0%, #4a5a8c 100%);
          color: white;
          padding: 4px 12px;
          border-radius: 20px;
          font-weight: 700;
          font-size: 14px;
        }

        /* Features Grid */
        .features-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 24px;
          position: relative;
          z-index: 2;
        }

        /* Feature Card */
        .feature-card {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-radius: 20px;
          padding: 32px 24px;
          border: 1px solid rgba(41, 51, 92, 0.06);
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          opacity: 0;
          transform: translateY(30px);
          position: relative;
          overflow: hidden;
          cursor: default;
        }

        .feature-card::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, #29335c, #4a5a8c);
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
          transform: scaleX(1);
        }

        .feature-card.animate-in {
          opacity: 1;
          transform: translateY(0);
        }

        .feature-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 40px rgba(41, 51, 92, 0.12);
          border-color: rgba(41, 51, 92, 0.15);
        }

        /* Feature Icon */
        .feature-icon {
          width: 56px;
          height: 56px;
          margin-bottom: 20px;
          background: linear-gradient(
            135deg,
            rgba(193, 232, 238, 0.5) 0%,
            rgba(41, 51, 92, 0.08) 100%
          );
          border-radius: 14px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
          background: linear-gradient(135deg, #29335c 0%, #4a5a8c 100%);
          transform: scale(1.1) rotate(5deg);
        }

        .feature-icon img {
          width: 28px;
          height: 28px;
          transition: all 0.4s ease;
          filter: brightness(0) saturate(100%) invert(18%) sepia(15%)
            saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(95%);
        }

        .feature-card:hover .feature-icon img {
          filter: brightness(0) invert(1);
        }

        /* Feature Content */
        .feature-card h4 {
          font-size: 17px;
          font-weight: 700;
          color: #29335c;
          margin: 0 0 10px 0;
          line-height: 1.3;
        }

        .feature-card p {
          font-size: 14px;
          line-height: 1.6;
          color: #6a6a8a;
          margin: 0;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          transition: all 0.3s ease;
        }

        .feature-card:hover p {
          -webkit-line-clamp: unset;
        }

        /* Feature Badge */
        .feature-badge {
          position: absolute;
          top: 12px;
          right: 12px;
          background: rgba(46, 125, 50, 0.1);
          color: #2e7d32;
          font-size: 10px;
          font-weight: 700;
          padding: 4px 8px;
          border-radius: 6px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .feature-badge.auto {
          background: rgba(41, 51, 92, 0.1);
          color: #29335c;
        }

        /* Responsive */
        @media (max-width: 1200px) {
          .features-grid {
            grid-template-columns: repeat(3, 1fr);
          }
        }

        @media (max-width: 900px) {
          .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
          }
          .feature-card {
            padding: 28px 20px;
          }
          .features-title {
            font-size: 28px;
          }
          #all-features-section {
            padding: 80px 0;
          }
        }

        @media (max-width: 600px) {
          .features-grid {
            grid-template-columns: 1fr;
          }
          .features-header {
            margin-bottom: 40px;
          }
        }
      
/* eBay content using the Poshmark product page's components and palette. */
.ebay-page .hero-gradient-bg{padding:72px 0 80px}.ebay-page .grid-halves{align-items:center;gap:64px}.ebay-page .hero-copy{color:#e2e6f3;font-size:20px;line-height:1.65}.ebay-page .hero-actions{margin-top:30px}.ebay-page .trial-note{font-size:13px;line-height:1.8;margin-top:16px}.ebay-page .eyebrow{font-size:12px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;color:#777f9a;margin-bottom:14px}.ebay-page .ebay-panel{background:#fff;border-radius:20px;padding:28px;color:#29335c;box-shadow:0 24px 60px #10152f30}.ebay-page .panel-heading{display:flex;justify-content:space-between;align-items:center;gap:12px;border-bottom:1px solid #e8ebf2;padding-bottom:20px;margin-bottom:20px}.ebay-page .panel-heading h2{font-size:20px;line-height:1.4;margin:0}.ebay-page .status-pill{background:#e7f6e1;color:#315d29;padding:6px 12px;border-radius:30px;font-size:12px;font-weight:600;white-space:nowrap}.ebay-page .listing-row{display:flex;gap:16px;align-items:center;padding:18px 0;border-bottom:1px solid #edf0f5}.ebay-page .listing-row img{width:64px;height:72px;object-fit:cover;border-radius:10px}.ebay-page .listing-row strong{display:block;margin-bottom:5px;font-size:15px}.ebay-page .listing-row p{font-size:13px;color:#69718a;margin:0}.ebay-page .listing-row small{display:block;color:#32916b;margin-top:6px}.ebay-page .panel-summary{display:flex;justify-content:space-between;gap:12px;margin-top:24px;background:#f5f7fb;padding:16px;border-radius:12px;font-size:13px}.ebay-page .panel-summary strong{font-size:24px;display:block;margin-bottom:6px}.ebay-page .ebay-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center;padding:48px 0}.ebay-page .ebay-stats strong{display:block;font-size:40px;line-height:1.3;color:#29335c}.ebay-page .ebay-stats p{margin:8px 0 0;color:#66718b;font-size:15px}.ebay-page .posh-benefit-card,.ebay-page .feature-card{opacity:1;transform:none}.ebay-page .features-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ebay-page .feature-card ul{padding-left:20px;color:#606b85;font-size:15px;line-height:1.9;margin-top:20px}.ebay-page .ebay-heading{text-align:center;max-width:680px;margin:0 auto 44px}.ebay-page .ebay-heading h2{font-size:36px;line-height:1.2}.ebay-page .ebay-heading p{color:#69718a;font-size:18px}.ebay-page .steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.ebay-page .step-card{padding:28px;border:1px solid #e5e9f0;border-radius:16px;background:#fff}.ebay-page .step-number{display:grid;place-items:center;background:#eff9fb;width:44px;height:44px;border-radius:50%;margin-bottom:24px;font-weight:700}.ebay-page .step-card h3{font-size:20px}.ebay-page .step-card p{color:#69718a;font-size:15px;line-height:1.7}.ebay-page .review-photo{width:72px;height:72px;object-fit:cover;border-radius:50%;margin-bottom:18px}.ebay-page .review-quote{font-size:16px;line-height:1.8;margin:20px 0}.ebay-page .review-card{background:white;border-radius:16px;padding:30px}.ebay-page .review-card h3{font-size:18px;margin:0}.ebay-page .review-card small{color:#69718a}.ebay-page .review-result{font-size:13px;color:#328365;font-weight:600;margin-top:16px}.ebay-page .price-card{max-width:540px;margin:auto;padding:40px;border:1px solid #e1e7ef;border-radius:20px;box-shadow:0 12px 40px #29335c0d;background:white}.ebay-page .price-number{font-size:68px;font-weight:700;line-height:1.2;color:#29335c}.ebay-page .price-card ul{list-style:none;padding:20px 0;margin:20px 0;border-top:1px solid #e8ebf2}.ebay-page .price-card li{padding:9px 0;color:#525e77}.ebay-page .price-card li::before{content:'✓';color:#32916b;margin-right:12px}.ebay-page .price-card .button{width:100%;text-align:center}.ebay-page .price-subtitle{color:#69718a}.ebay-page #pl-final-trial .text-small{margin-top:20px}.ebay-page .feature-icon img{width:32px;height:32px}
@media(max-width:991px){.ebay-page .grid-halves{grid-template-columns:1fr;gap:36px}.ebay-page .hero-gradient-bg{padding:40px 0 56px}.ebay-page .hero-title-enhanced{font-size:40px!important}.ebay-page .steps-grid{grid-template-columns:1fr}.ebay-page .ebay-panel{max-width:600px;width:100%;margin:auto}.ebay-page .customer-reviews-grid{grid-template-columns:1fr}}
@media(max-width:600px){.ebay-page .hero-title-enhanced{font-size:36px!important}.ebay-page .hero-copy{font-size:18px}.ebay-page .features-grid{grid-template-columns:1fr}.ebay-page .ebay-stats{gap:20px;padding:32px 0;grid-template-columns:1fr}.ebay-page .ebay-stats strong{font-size:34px}.ebay-page .ebay-panel{padding:20px}.ebay-page .panel-heading{align-items:flex-start}.ebay-page .panel-heading h2{font-size:18px}.ebay-page .ebay-heading h2{font-size:30px}.ebay-page .price-card{padding:28px 24px}.ebay-page .hero-actions .button{width:100%;text-align:center}.ebay-page .posh-benefits-grid{grid-template-columns:1fr}.ebay-page .panel-summary{font-size:12px}}
@media(prefers-reduced-motion:reduce){.ebay-page *, .ebay-page *::before,.ebay-page *::after{animation:none!important;scroll-behavior:auto!important}}

.ebay-trust-line{text-align:center;color:#69718a;font-size:15px;padding-top:32px;padding-bottom:32px;line-height:2}.ebay-trust-line span{padding:0 14px}

/* Shared sign-up card styling from poshmark-bot.html. */

              .saas-form-card {
                position: relative;
                z-index: 1;
                background: white;
                border-radius: 16px;
                padding: 36px 32px;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                  0 2px 4px -1px rgba(0, 0, 0, 0.06);
                max-width: 400px;
                margin: 0 auto;
              }
              .saas-form-card .form-grid-vertical {
                display: flex;
                flex-direction: column;
                gap: 0;
              }
              .saas-form-card label {
                font-size: 14px;
                font-weight: 600;
                color: #1f2937;
                margin-bottom: 8px;
                display: block;
              }
              .saas-form-card .form-input {
                width: 100%;
                padding: 12px 16px !important;
                border: 1px solid #d1d5db !important;
                border-radius: 8px !important;
                font-size: 15px;
                background: white;
                transition: border-color 0.15s ease, box-shadow 0.15s ease;
                margin-bottom: 20px;
              }
              .saas-form-card .form-input:focus {
                outline: none;
                border-color: #29335c !important;
                box-shadow: 0 0 0 3px rgba(41, 51, 92, 0.12);
              }
              .saas-form-card .form-input::placeholder {
                color: #9ca3af;
              }
              .saas-form-card .cta-button {
                width: 100%;
                padding: 14px 24px !important;
                background: #a1ec83 !important;
                border: none !important;
                border-radius: 8px !important;
                font-size: 15px !important;
                font-weight: 600 !important;
                color: #29335c !important;
                cursor: pointer;
                transition: box-shadow 0.2s ease;
                margin-top: 4px;
              }
              .saas-form-card .cta-button:hover {
                box-shadow: inset 0 10px 3px 100px rgba(0, 0, 0, 0.05);
              }
              .saas-form-card .form-footer {
                text-align: center;
                margin-top: 20px;
                font-size: 13px;
                color: #6b7280;
              }
              .saas-form-card .form-footer span {
                display: inline-flex;
                align-items: center;
                gap: 4px;
              }
              .saas-form-card .form-footer span:not(:last-child)::after {
                content: "·";
                margin: 0 8px;
                color: #d1d5db;
              }
              @media (max-width: 768px) {
                .saas-form-card {
                  padding: 28px 24px;
                  border-radius: 12px;
                }
                .saas-form-card .form-footer span {
                  display: block;
                }
                .saas-form-card .form-footer span:not(:last-child)::after {
                  display: none;
                }
                .saas-form-card .form-footer {
                  line-height: 2;
                }
              }
            
.ebay-page .ebay-signup{width:100%;min-width:0}.ebay-page .saas-form-card{width:100%;box-sizing:border-box}.ebay-page .hero-gradient-bg .top-layer{position:relative;z-index:2}
