/* ============================
   HERO WRAPPER
   ============================ */
.hero-header {
  width: 100%;
}

/* ============================
   HERO SECTION (mobile-first)
   ============================ */
.hero-section {
  background: linear-gradient(to bottom right, rgb(4, 47, 46), rgb(6, 78, 59));
  color: white;
  padding: 3.5rem 1.25rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.35);

  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 0.8s ease-out forwards;
  animation-delay: 0.15s;

  position: relative;
  overflow: hidden;
  will-change: opacity, transform;
}

/* Subtle depth overlay */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent 40%);
  pointer-events: none;
}

/* Center content */
.hero-inner {
  max-width: 64rem;
  margin: 0 auto;
}

/* ============================
   ESTABLISHED TAG
   ============================ */
.hero-est {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: rgb(110, 231, 183);
  opacity: 0.9;

  will-change: transform;
}

/* ============================
   MAIN TITLE
   ============================ */
.hero-title {
  margin-top: 0.4rem;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(2rem, 8vw, 3.75rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.5px;

  will-change: transform;
}

/* ============================
   DIVIDER
   ============================ */
.hero-divider {
  margin-top: 1rem;
  height: 1px;
  background: rgba(16, 185, 129, 0.4);
  opacity: 0.8;

  will-change: transform;
}

/* ============================
   TAGLINE
   ============================ */
.hero-tagline {
  margin-top: 0.85rem;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: rgb(167, 243, 208);
  max-width: 40rem;

  will-change: transform;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroItemFade {
  from { transform: translateY(6px); }
  to   { transform: translateY(0); }
}
