<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --black: #09090a;
  --purple: #644ff5;
  --grey: #9ca3af;
  --grey-dark: #1a1a1c;
  --grey-darker: #161616;
  --placeholder-text: #8a8a8b;
  --border-color: #2e2e2f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: white;
  font-family: "Space Grotesk", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0d0d0d 0%, #09090a 100%);
}

.go-page-container {
  width: 100vw;
  height: 100svh;
  max-width: 100vw;
  max-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0d0d0d 0%, #09090a 100%);
}

.go-page-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: fit-content;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.go-page-top-link {
  font-size: 0.875rem;
  color: var(--grey);
  text-decoration: none;
}

.go-page-logo-container {
  text-decoration: none;
}

.go-page-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
}

.go-page-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.go-page-subtext {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--grey);
  padding: 0;
  margin: 0;
  text-align: center;
}

.go-page-text-highlight {
  color: var(--purple);
}

.go-page-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.input-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 0.3rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto 0 auto;
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  user-select: none;
}

.toggle-option:focus,
.toggle-option:active {
  outline: none;
  background-color: transparent;
}

.toggle-option.active {
  background: linear-gradient(100.61deg, #603bee 40.61%, #4426b7 76.36%);
  color: white;
}

.go-page-input-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.go-page-input-container {
  position: relative;
  width: 100%;
}

.go-page-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-right: 135px;
  box-sizing: border-box;
}

.go-page-input:focus {
  outline: none;
  border-color: #feb52a;
}

.go-page-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.go-page-input-cta {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  padding: 0 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(98.35deg, #fdd845 34.28%, #ffcc00 75.21%);
  color: var(--black);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.go-page-input-cta:hover {
  background: linear-gradient(98.35deg, #fdbd45 34.28%, #ffb300 75.21%);
}

@keyframes moveChevron {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(4px);
  }
  40% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.go-page-input-cta svg {
  margin-left: 0.5rem;
  animation: moveChevron 1.25s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 181, 42, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(254, 181, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 181, 42, 0);
  }
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  padding: 0;
  text-align: center;
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.feature-card {
  width: 100%;
  max-width: 1012px;
  display: flex;
  flex-direction: column;
  padding: 2rem 0.5rem;
  background: linear-gradient(#161418, #0a080b);
  border-radius: 12px;
  border: 1px solid rgba(65, 43, 43, 0.06);
}

.feature-card-alternate {
  flex-direction: column-reverse;
}

.feature-card-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.feature-card-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-card-details {
  height: 100%;
  width: 100%;
  padding: 1.5rem 0;
}

.feature-card-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-card-description {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.feature-card-cta {
  height: 44px;
  padding: 0 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(98.35deg, #fdd845 34.28%, #ffcc00 75.21%);
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
}

.feature-card-cta:hover {
  background: linear-gradient(98.35deg, #fdbd45 34.28%, #ffb300 75.21%);
}

.testimonials {
  max-width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.testimonials::-webkit-scrollbar {
  height: 4px;
}

.testimonials::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.testimonials::-webkit-scrollbar-thumb {
  background-color: var(--purple);
  border-radius: 10px;
}

.testimonial-card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  background: linear-gradient(
    180deg,
    #1a191c -50.85%,
    #1f1e21 36.41%,
    #151417 116.95%
  );
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.testimonial-card.yellow {
  background: linear-gradient(
    180deg,
    #fcd745 -47.08%,
    #fcd745 -3%,
    #181719 6.26%,
    #151417 74.58%
  );
}

.testimonial-card.blue {
  background: linear-gradient(
    180deg,
    #5dc6d3 -47.08%,
    #5dc6d3 -3%,
    #181719 6.26%,
    #151417 74.58%
  );
}

.testimonial-card.red {
  background: linear-gradient(
    180deg,
    #f45949 -47.08%,
    #f45949 -3%,
    #181719 6.26%,
    #151417 74.58%
  );
}

.testimonial-card.purple {
  background: linear-gradient(
    180deg,
    var(--purple) -47.08%,
    var(--purple) -3%,
    #181719 6.26%,
    #151417 74.58%
  );
}

.testimonial-content {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
}

.testimonial-card-icon-container {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #2d2f31;
  border-radius: 4px;
}

.testimonial-card-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.testimonial-card-icon-container.yellow {
  background: linear-gradient(
    299.28deg,
    #b29347 14.01%,
    #1a191b 39.1%,
    #1a191b 61.6%,
    #b29347 95.73%
  );
}

.testimonial-card-icon-container.yellow svg {
  color: #fcd745;
}

.testimonial-card-icon-container.blue {
  background: linear-gradient(
    295.28deg,
    #46909a 8.99%,
    #1a191b 35.22%,
    #1a191b 58.74%,
    #46909a 94.4%
  );
}

.testimonial-card-icon-container.blue svg {
  color: #5dc6d3;
}

.testimonial-card-icon-container.red {
  background: linear-gradient(
    295.28deg,
    #f45949 8.99%,
    #1a191b 35.22%,
    #1a191b 58.74%,
    #f45949 94.4%
  );
}

.testimonial-card-icon-container.red svg {
  color: #f45949;
}

.testimonial-card-icon-container.purple {
  background: linear-gradient(
    295.28deg,
    var(--purple) 8.99%,
    #1a191b 35.22%,
    #1a191b 58.74%,
    var(--purple) 94.4%
  );
}

.testimonial-card-icon-container.purple svg {
  color: var(--purple);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}

.trust-badge span {
  font-size: 0.875rem;
}

.trust-badge svg,
.trust-badge img {
  margin-right: 0.5rem;
  height: 20px;
}

.link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.producthunt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
  width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem 1rem 2rem 1rem;
}

.producthunt img {
  width: 200px;
  object-fit: contain;
}

.stars {
  color: #f8cc5f;
  font-size: 1.2rem;
  letter-spacing: 6px;
  margin: 0.5rem 0;
}

.highlight-text {
  color: #998afb;
  font-weight: 400;
  text-transform: uppercase;
}

.upgrade-section {
  max-width: 800px;
  margin: 2rem auto 8rem auto;
}

footer {
  background-color: #151417;
  padding: 1.5rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
}

.secure-payments {
  color: var(--grey);
  font-weight: 500;
  font-size: 0.85rem;
}

.address {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.powered-by {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-decoration: none;
}

.copyright {
  font-size: 0.8rem;
  color: var(--grey);
}

@media (min-width: 993px) {
  .go-page-heading {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 4.5rem;
  }

  section {
    margin-top: 2rem;
    margin-bottom: 8rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .go-page-input-group {
    align-items: flex-start;
  }

  .go-page-input-wrapper {
    width: 100%;
    max-width: 800px;
  }

  .feature-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  .feature-card-alternate {
    flex-direction: row;
  }

  .feature-card-video {
    width: 50%;
    height: 286px;
    padding-bottom: 0;
    display: grid;
    place-items: center;
  }

  .feature-card-video iframe {
    position: static;
  }

  .feature-card-details {
    width: 50%;
    padding: 1.5rem 4rem;
  }

  .testimonial-card {
    cursor: pointer;
  }

  .testimonial-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  .testimonial-card.yellow:hover {
    background: linear-gradient(
      177.66deg,
      #fcd745 -37.44%,
      #1a191b 34.7%,
      #1a191b 88.57%,
      #fcd745 123.26%
    );
  }

  .testimonial-card.blue:hover {
    background: linear-gradient(
      177.66deg,
      #5dc6d3 -37.44%,
      #1a191b 34.7%,
      #1a191b 88.57%,
      #5dc6d3 123.26%
    );
  }

  .testimonial-card.red:hover {
    background: linear-gradient(
      177.66deg,
      #f45949 -37.44%,
      #1a191b 34.7%,
      #1a191b 88.57%,
      #f45949 123.26%
    );
  }

  .testimonial-card.purple:hover {
    background: linear-gradient(
      177.66deg,
      var(--purple) -37.44%,
      #1a191b 34.7%,
      #1a191b 88.57%,
      var(--purple) 123.26%
    );
  }

  .producthunt {
    border: 1px solid transparent;
  }

  .producthunt:hover {
    border: 1px solid #db542b;
  }

  footer {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }

  .footer-left {
    flex: 0 0 20%;
  }

  .footer-addresses {
    flex: 0 0 45%;
  }

  .footer-legal {
    flex: 0 0 25%;
    text-align: right;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }
}
</pre></body></html>