/* Hero Visual Morph Styles */

.hero-methodology {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 740px;
  margin: 36px auto 32px;
  padding: 24px;
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.method-stat {
  text-align: center;
  animation: fadeInUp 0.8s both;
}

.method-stat:nth-child(1) { animation-delay: 0.1s; }
.method-stat:nth-child(2) { animation-delay: 0.2s; }
.method-stat:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  font-family: var(--head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--emerald-bright);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.stat-label {
  font-size: 12px;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

/* Hero Visual Morph Container */
.hero-visual-morph {
  margin: 48px auto 32px;
  max-width: 700px;
  animation: fadeInUp 1s both 0.4s;
}

.visual-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(16, 185, 129, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.visual-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(16, 185, 129, 0.3);
}

.hero-thumb {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.visual-container:hover .hero-thumb {
  opacity: 0.4;
  transform: scale(1.05);
}

/* Heatmap Overlay */
.heatmap-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(135deg, rgba(2, 2, 2, 0.7) 0%, rgba(10, 10, 10, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.visual-container:hover .heatmap-overlay {
  opacity: 1;
}

/* Fixation Zones */
.fixation-zone {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--emerald-bright);
  animation: zonePulse 2s ease-in-out infinite;
  pointer-events: none;
}

.fixation-zone::before {
  content: attr(data-ms);
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  font-family: var(--head);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.zone-1 {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 25%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
  animation-delay: 0s;
}

.zone-2 {
  width: 140px;
  height: 140px;
  top: 45%;
  right: 20%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.5);
  animation-delay: 0.3s;
}

.zone-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 35%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  animation-delay: 0.6s;
}

@keyframes zonePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.heat-label {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 900;
  color: var(--emerald-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
  animation: labelFadeIn 0.5s ease 0.3s both;
}

@keyframes labelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visual-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-methodology {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .zone-1 { width: 120px; height: 120px; }
  .zone-2 { width: 90px; height: 90px; }
  .zone-3 { width: 70px; height: 70px; }
  
  .heat-label {
    font-size: 18px;
  }
}
