#hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0c0c0f;
}

#hero #canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(141, 138, 216, 0.12), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .hero-grid {
  gap: 32px;
}

#hero .hero-content {
  order: 2;
  max-width: 720px;
}

#hero .hero-kicker {
  margin-bottom: 18px;
}

#hero .hero-title {
  margin-bottom: 16px;
  max-width: 760px;
}

#hero .hero-text {
  margin-bottom: 26px;
  max-width: 620px;
  color: var(--text-soft);
}

#hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

#hero .hero-actions .btn {
  width: 100%;
}

#hero .hero-benefits {
  margin-bottom: 16px;
}

#hero .hero-proof {
  margin: 0;
  max-width: 560px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-muted);
}

#hero .hero-visual {
  order: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#hero .hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
}

#hero .hero-logo img {
  width: 68%;
  height: auto;
  opacity: 0.96;
}

@media (min-width: 768px) {
  #hero {
    padding-top: 110px;

  }
  .grid-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: center;
    gap: 40px;
  }

  #hero .hero-content {
    order: 1;
  }

  #hero .hero-visual {
    order: 2;
    justify-content: flex-end;
  }

  #hero .hero-kicker {
    margin-bottom: 22px;
  }

  #hero .hero-title {
    margin-bottom: 18px;
  }

  #hero .hero-text {
    margin-bottom: 32px;
  }

  #hero .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
  }

  #hero .hero-actions .btn {
    width: auto;
  }

  #hero .hero-benefits {
    margin-bottom: 18px;
  }

  #hero .hero-proof {
    font-size: 1.4rem;
  }

  #hero .hero-logo {
    width: min(100%, 300px);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1024px) {
  .grid-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 48px;
  }
  #hero .hero-logo {
    width: min(100%, 320px);
  }
}