/* ═══════════════════════════════════════
   HERO — Redesigned
   ══════════════════════════════════════ */

.hero {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  /* min-height: 90vh; */
  background: var(--green-mid);
  overflow: hidden;
  padding: 0;
  padding-top: 4rem;
}

/* .grid-2-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
} */

/* Hero-scoped grid: stretch both columns to full hero height */
.hero > .grid-2-cols {
  flex: 1;
  align-self: stretch;
  align-items: stretch;
  gap: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Ambient radial glow blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 12% 60%, color-mix(in srgb, var(--green-mid) 8%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 82% 8%, color-mix(in srgb, var(--green-mid) 6%, transparent) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 88% 88%, color-mix(in srgb, var(--green-mid) 4%, transparent) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

/* Subtle dot-grid that fades in from the right */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--green-vivid) 12%, transparent) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 3rem 0 3rem 8%;
  min-height: 500px;
}

.hero-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  text-shadow: none;
  color: var(--white);
}

/* pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(42, 90, 65, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-mid);
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}


.hss-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Thin vertical left accent bar */
.hss-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  border-radius: 2px;
}

/* Subtle right-edge separator */
.hss-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
}

/* 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: var(--green-mid);
  margin-bottom: 2.4rem;
  animation: hssFadeUp 0.8s ease both;
}

.hss-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-vivid);
  animation: dotPulse 2.5s cubic-bezier(.4, 0, .6, 1) infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--green-vivid) 50%, transparent);
  }

  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}

/* Track */
.hss-track {
  position: relative;
  width: 100%;
  /* display: flex; */
}

/* Slides — lateral fade-in */
.hss-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 0.75rem; */
  opacity: 0;
  transform: translateX(-28px);
  pointer-events: none;
  /* min-height: 250px; */
  transition: opacity 0.65s cubic-bezier(.4, 0, .2, 1), transform 0.65s cubic-bezier(.4, 0, .2, 1);
}

.hss-slide.hss-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

/* Green accent divider line */
.hss-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-vivid), color-mix(in srgb, var(--green-vivid) 20%, transparent));
  border-radius: 3px;
  margin: 0.2rem 0;
}

/* Bold stat — left border accent */
.hss-stat {
  font-size: clamp(0.7rem, 1.8vw, 0.82rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin: 0.5rem 0 0.5rem;
  text-align: left;
  padding: 0.6rem 1rem;
  border-left: 3px solid var(--green-vivid);
  background: color-mix(in srgb, var(--green-deep) 35%, transparent);
  border-radius: 0 6px 6px 0;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
}

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-vivid);
  color: var(--green-deep);
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-new:hover {
  transform: translateY(-1px);
}

.btn-primary-new svg {
  width: 16px;
  height: 16px;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
}

.nav-btn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

/* Pill dots */
.hss-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hss-dot {
  height: 3px;
  border-radius: 3px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: color-mix(in srgb, var(--green-mid) 25%, transparent);
  width: 0.75rem;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1), background 0.4s, box-shadow 0.4s;
}

.hss-dot.hss-dot-active {
  background: var(--green-mid);
  width: 1.5rem;
  box-shadow: 0 0 10px color-mix(in srgb, var(--green-mid) 55%, transparent);
}

.hss-dot:hover:not(.hss-dot-active) {
  background: color-mix(in srgb, var(--green-mid) 55%, transparent);
}

/* Slide counter */
.hss-counter {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.hss-counter .hss-current {
  color: var(--ink-muted);
  font-weight: 700;
}

.video-section {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88);
}

/* ─── RIGHT PANEL ─── */
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  padding: 3rem 3rem 3rem 8%;
  /* min-height: 500px; */
  max-height: 600px;
  height: auto;
}

.video-card {
  position: relative;
  width: 100%;
  /* height: 100%; */
  border-radius: 16px;
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-btn {
  display: block;
}

.video-card:hover .video-btn {
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  color: var(--green-mid);
  margin-left: 4px;
  font-size: 1.5rem;
}

.play-label {
  position: absolute;
  top: 50%;
  left: calc(50% + 46px);
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* tag strip */
.video-tags {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  white-space: nowrap;
}

.vtag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vtag:last-child {
  border-right: none;
}

.vtag svg {
  width: 24px;
  height: 24px;
  opacity: 0.85;
}

.vtag:hover,
.vtag:hover svg {
  color: var(--green-mid);
}

/* hero body text override for light hero background */
.hero-sub {
  font-size: clamp(0.875rem, 1.4vw, 0.925rem);
  color: var(--white);
  line-height: 1.35;
  margin-top: 0.5rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 0.25rem;
  /* max-width: 420px; */
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.fc-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-thumb img {
  border-radius: 1rem;
  width: 8rem;
}

.fc-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.fc-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fc-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.fc-link:hover {
  text-decoration: underline;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  animation: fadeUp 0.6s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-right {
  animation: fadeUp 0.7s 0.2s ease both;
}

/* Full-width progress bar at very bottom */
.hss-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--white) 6%, transparent);
  z-index: 10;
}

.hss-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--green-vivid), color-mix(in srgb, var(--green-vivid) 55%, transparent));
  box-shadow: 0 0 10px color-mix(in srgb, var(--green-vivid) 55%, transparent), 0 0 20px color-mix(in srgb, var(--green-vivid) 20%, transparent);
  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) {
  .hero {
    padding-top: 6rem;
  }

  .hero > .grid-2-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-left {
    padding: 0 5% 2.5rem;
  }

  .hero-right {
    align-self: auto;
    height: auto;
    padding: 0 5% 2rem;
  }

  .video-card {
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
  }

  .video-section {
    clip-path: none;
    filter: brightness(0.8) saturate(0.88);
  }

  .hss-wrapper {
    padding: 0;
  }

  .hss-wrapper::before,
  .hss-wrapper::after {
    display: none;
  }

  .hss-eyebrow {
    font-size: 0.6rem;
    gap: 6px;
  }

  .hss-dots {
    margin-top: 0.5rem;
  }

  .hss-counter {
    display: none;
  }

  .hero .grid-2-cols {
    flex: none;
  }

  .fc-text h4 {
  font-size: 0.75rem;
  line-height: 1.2;
}

.fc-text p {
  font-size: 0.65rem;
  line-height: 1.2;
}

.fc-thumb img {
  border-radius: 1rem;
  /* width: 11rem; */
}

.fc-text {
  padding-top: 0.5rem; 
}
}