.desktop {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  position: relative;
  background-color: var(--backgroundbackground-1);
  overflow: clip;
}

.desktop .intro-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
}

.desktop .gradient-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(168, 211, 255, 1) 0%,
    rgba(255, 244, 223, 1) 100%
  );
  pointer-events: none;
  transform-origin: top center;
  animation: gradient-drift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.desktop .intro-section {
  gap: 56px;
  padding: 140px 20px 0px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  z-index: 1;
}

.desktop .intro-content {
  max-width: 1030px;
  gap: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  animation: fade-up 700ms ease-out both;
}

.desktop .header-text {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .header {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--header-header-1-font-family);
  font-weight: var(--header-header-1-font-weight);
  color: var(--textheadline);
  font-size: clamp(2.2rem, 8vw, var(--header-header-1-font-size));
  text-align: center;
  letter-spacing: var(--header-header-1-letter-spacing);
  line-height: var(--header-header-1-line-height);
  font-style: var(--header-header-1-font-style);
  animation: fade-up 650ms 120ms ease-out both;
}

.desktop .div {
  position: relative;
  align-self: stretch;
  margin-top: -8px;
  font-family: var(--header-header-2-font-family);
  font-weight: var(--header-header-2-font-weight);
  color: var(--textheadline);
  font-size: clamp(2.1rem, 8vw, var(--header-header-2-font-size));
  text-align: center;
  letter-spacing: var(--header-header-2-letter-spacing);
  line-height: var(--header-header-2-line-height);
  font-style: var(--header-header-2-font-style);
  animation: fade-up 650ms 190ms ease-out both;
}

.desktop .p {
  position: relative;
  align-self: stretch;
  font-family: var(--paragraph-paragraph-2-font-family);
  font-weight: var(--paragraph-paragraph-2-font-weight);
  color: var(--textparagraph-1);
  font-size: clamp(1rem, 2.8vw, var(--paragraph-paragraph-2-font-size));
  text-align: center;
  letter-spacing: var(--paragraph-paragraph-2-letter-spacing);
  line-height: var(--paragraph-paragraph-2-line-height);
  font-style: var(--paragraph-paragraph-2-font-style);
  max-width: 42ch;
  margin: 0 auto;
  animation: fade-up 650ms 260ms ease-out both;
}

.desktop .button-row {
  gap: 16px;
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  animation: fade-up 650ms 340ms ease-out both;
}

.desktop .button-primary {
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background-color: var(--backgroundbackground-5);
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.desktop .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.desktop .button-primary:active {
  transform: translateY(0);
}

.desktop .bullet {
  position: relative;
  width: 4px;
  height: 4px;
  background-color: var(--textbutton-text);
  aspect-ratio: 1;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.desktop .request-a-demo {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--button-text-font-family);
  font-weight: var(--button-text-font-weight);
  color: var(--textbutton-text);
  font-size: var(--button-text-font-size);
  letter-spacing: var(--button-text-letter-spacing);
  line-height: var(--button-text-line-height);
  white-space: nowrap;
  font-style: var(--button-text-font-style);
}

.desktop .hero-image {
  position: relative;
  width: min(100%, 1030px);
  height: auto;
  aspect-ratio: 1.78;
  object-fit: cover;
  border-radius: 20px;
  animation: hero-reveal 950ms 280ms ease-out both;
}

@media (max-width: 1024px) {
  .desktop .intro-section {
    padding: 112px 18px 0;
    gap: 44px;
  }

  .desktop .text-wrapper,
  .desktop .div {
    letter-spacing: -0.03em;
  }

  .desktop .hero-image {
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .desktop .intro-section {
    padding: 88px 16px 0;
    gap: 32px;
  }

  .desktop .header-text {
    gap: 12px;
  }

  .desktop .button-row {
    width: 100%;
    justify-content: center;
  }

  .desktop .button-primary {
    width: 100%;
    max-width: 320px;
    padding: 14px 16px;
  }

  .desktop .request-a-demo {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .desktop .intro-section {
    padding-top: 72px;
  }

  .desktop .div {
    margin-top: -2px;
  }

  .desktop .hero-image {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop *,
  .desktop *::before,
  .desktop *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}

@keyframes gradient-drift {
  from {
    transform: translateY(0) scaleY(1);
  }
  to {
    transform: translateY(-1.5%) scaleY(1.05);
  }
}
