      body {
          font-family: 'Inter', sans-serif;
      }

      .glass {
          background: rgba(17, 24, 39, 0.7);
          backdrop-filter: blur(12px);
          border: 1px solid rgba(255, 255, 255, 0.05);
      }

      .gradient-text {
          background: linear-gradient(to right, #22d3ee, #3b82f6);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
      }

      .glow-blob {
          position: absolute;
          filter: blur(80px);
          opacity: 0.4;
          z-index: 0;
      }

      /* Animation for Testimonials Marquee */
      @keyframes scroll {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(-50%);
          }
      }

      .animate-scroll {
          animation: scroll 40s linear infinite;
      }

      .animate-scroll:hover {
          animation-play-state: paused;
      }

      /* Prose mirror for AI content */
      .prose ul {
          list-style-type: disc;
          padding-left: 1.5em;
          margin-top: 1em;
          margin-bottom: 1em;
      }

      .prose li {
          margin-bottom: 0.5em;
          color: #cbd5e1;
      }

      .prose strong {
          color: #22d3ee;
          font-weight: 600;
      }
