.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: var(--gradient-radial);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%
}

.hero-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 0px 10px 0px 10px;
}

.hero-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 165, 103, .28);
  color: var(--color-accent-primary);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .78rem
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  margin-bottom: 14px
}

.hero-line {
  display: block;
  overflow: hidden
}

.hero-description {
  max-width: 620px;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 2vw, 20px);
  margin: 18px 0 28px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-tertiary);
  font-weight: 600;
  font-size: .9rem;
  opacity: .85
}

.scroll-line {
  width: 2px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-accent-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(18px);
    opacity: 0
  }
}

@media (max-height:720px) {
  .scroll-indicator {
    display: none
  }
}

@media (max-width:768px) {
  .hero-cta {
    flex-direction: column
  }

  .hero-cta .btn {
    width: 100%
  }
}