.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(52, 212, 183, 0.13), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 55%, rgba(52, 212, 183, 0.06), transparent 70%),
    linear-gradient(180deg, #f6fcfa 0%, #fafefd 55%, #ffffff 100%);
  overflow: hidden;
  display: grid;
}

.hero__logo {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}

.hero__logo img {
  width: 48px;
  height: auto;
}

.hero__logo:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero__logo {
    position: static;
    display: flex;
    justify-content: center;
    padding-block-start: 24px;
  }

  .hero__logo img {
    width: 52px;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  padding-block: 5vi 0;
}

.hero__eyebrow {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.6rem + 0.6vw, 1.125rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__eyebrow-highlight {
  background: #ff9800;
  color: var(--color-white);
  border-radius: 6px;
  padding: 6px 10px;
}

.hero__audience {
  font-size: clamp(0.95rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.82);
  max-inline-size: 760px;
}

.hero__heading {
  margin-top: 12px;
  font-weight: 400;
  font-size: clamp(1.625rem, 0.9rem + 2.7vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-text);
  max-inline-size: 1100px;
}

.hero__media {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  margin-inline: auto;
  padding-block: 3vi 3vi;
}

.hero__screenshot {
  width: 100%;
  height: auto;
}

.hero__cta {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 18px;
  padding-block-end: 6vi;
}

.hero__cta-heading {
  font-weight: 700;
  font-size: clamp(1.25rem, 0.8rem + 1.6vw, 1.875rem);
  line-height: 1.3;
  color: var(--color-text);
  text-align: center;
  max-inline-size: 640px;
}
