.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      800px 320px at 20% 20%,
      rgba(47, 138, 75, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 320px at 85% 10%,
      rgba(201, 170, 52, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(243, 247, 242, 0.35), rgba(243, 247, 242, 0.7));
  backdrop-filter: blur(0.5px);
}
.hero-grid {
  display: grid;
  place-items: center;
  text-align: center;
}
.h1 {
  font-size: clamp(42px, 6vw, 86px);
  letter-spacing: 0.02em;
  margin: 18px 0 8px;
  line-height: 1.02;
  font-weight: 800;
  color: var(--green-900);
}
.h1 .accent {
  background: linear-gradient(90deg, var(--green-500), var(--yellow-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(27, 42, 33, 0.62);
  margin: 8px auto 0;
  max-width: 680px;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .hero {
    padding: 95px 0 70px;
  }
}
