.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-faint);
}

.hero-graph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.wire-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-wire 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes draw-wire {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wire-path { stroke-dashoffset: 0; animation: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-5) 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin: 1.1rem 0 1.6rem;
  max-width: 14ch;
}

.hero-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-dim);
  max-width: 56ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-4);
}

.hero-photo-slot {
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-photo-slot {
    max-width: 280px;
    margin: 0 auto;
    order: -1;
  }
}

.lede-secondary {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 64ch;
  margin-top: 0.9rem;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .hero { min-height: 80vh; }
}
