*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  background-color: #030712;
  color: #ffffff;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero__logo {
  display: block;
  max-width: 100%;
  width: auto;
}

.hero__logo--sutro {
  height: 50px;
}

.hero__logo--lovable {
  height: 50px;
}

.hero__plus {
  color: #ffffff;
  font-size: 2.125rem;
  line-height: 1;
}

.hero__headline {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.08;
  font-weight: 700;
}

.hero__headline span {
  display: block;
}

.hero__cta {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background-color: #bef264;
  color: #05070a;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.hero__cta:hover {
  filter: brightness(0.95);
}

@media (min-width: 480px) {
  .hero__logos {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .hero__logo--sutro {
    height: 120px;
  }

  .hero__logo--lovable {
    height: 130px;
  }

  .hero__plus {
    font-size: 5rem;
  }

  .hero__headline {
    margin-bottom: 2.5rem;
  }

  .hero__cta {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }
}
