  .hero {
    padding: 4rem 0 0;
    min-height: 0vh;
    background: var(--green-mid);
    height: 70vh;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    /* color: var(--green-mid); */
    text-shadow: none;
  }

  .hero .grid-2-cols {
    gap:0;
    grid-template-columns: 2fr 1fr; height: 65vh;
  }

  .hss-wrapper {
    position: relative; z-index: 2;
    width: 100%; 
    padding: 0 4rem 0;
    display: flex; flex-direction: column; align-items: center;
  }

  /* Eyebrow */
  .hss-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-bottom: 2.4rem;
    animation: hssFadeUp 0.8s ease both;
  }
  .hss-eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #A5DE48;
  }

  /* Track */
  .hss-track {
    position: relative; width: 100%; 
    /* min-height: 300px; */
    display: flex; justify-content: center;
  }

  /* Slides */
  .hss-slide {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0; transform: translateY(32px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
  }
  .hss-slide.hss-active {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: auto; position: relative;
  }

  /* Green accent divider line */
  .hss-divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, #A5DE48, rgba(165,222,72,0.2));
    border-radius: 3px;
    margin: 0.2rem 0;
  }

  /* Bold stat */
  .hss-stat {
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    font-weight: 700; color: #A5DE48; line-height: 1.5;
    max-width: 600px; margin: 0;
    line-height: 1.35;
    text-align: left;
  }

  /* Pill dots */
  .hss-dots {
    display: flex; gap: 8px; align-items: center;
    margin-top: 3rem;
  }
  .hss-dot {
    height: 6px; border-radius: 6px;
    border: none; padding: 0; cursor: pointer;
    background: #A5DE48;
    width: 24px;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), background 0.35s;
  }
  .hss-dot.hss-dot-active {
    background: var(--green-deep);
    width: 48px;
  }
  .hss-dot:hover:not(.hss-dot-active) { background: rgba(255,255,255,0.5); }

  .video-container {
    position: relative; width: 100%; height: 100%;
  }

  .video-section {
    width:100%; height:100%; object-fit:cover; border-radius: 0 0 0 10rem;
  }

  /* Full-width progress bar at very bottom */
  .hss-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 3;
  }
  .hss-progress-bar {
    height: 100%; width: 20%;
    background: linear-gradient(90deg, #6FD49A, #A5DE48);
    transition: width 0.6s cubic-bezier(.4,0,.2,1);
  }

  @keyframes hssFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 900px) {
    .hss-wrapper { padding: 2rem 5% 0; }
    .hss-eyebrow { font-size: 0.6rem; gap: 6px; }
    .hss-stat { font-size: clamp(1rem, 3vw, 1.2rem); }
    .hero {height: auto;}
    .hero .grid-2-cols {
      grid-template-columns: 1fr; height: 100%;
      order: 1;
    }
    .hss-dots {
      margin: 2rem;
    }
    .video-section {
      border-radius: 0;
    }
  }