.hero {
  position: relative;
  padding: 6rem 0 8rem;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 1;
}

#neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  max-width: 680px;
  text-align: left;
  padding-top: 1rem;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.05em;

}

.highlight {
  background-color: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  position: relative;
}


.hero-content h2 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.hero-content h3 {
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--fg);
  opacity: 0.92;
}

.primary-btn {
  padding: 1rem 15rem;
  font-size: 1.125rem;
  border-radius: 12px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 5rem;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content h2 {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .hero-content h3 {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .primary-btn {
    padding: 0.875rem 10rem;
    font-size: 1rem;
  }
}
