/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── left copy ── */
.hero-content {}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 106px);
  font-weight: 400;            /* thin */
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-name span { display: block; color: var(--c4); }

/* typing row — flex so cursor stays glued to text end */
.hero-role-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-role-prefix { font-size: 14px; color: var(--muted); flex-shrink: 0; }
.hero-role-typed-wrap {
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
}
#typed-text { white-space: nowrap; }
.cursor-blink {
  display: inline-block;
  width: 2px;
  background: var(--white);
  margin-left: 2px;
  height: 1em;
  vertical-align: baseline;
  position: relative;
  top: 0.1em;
  animation: blink 1s step-end infinite;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

/* ── right photo ── */
.hero-photo {
  width: clamp(180px, 18vw, 260px);
  aspect-ratio: 1 / 1.15;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c3);
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c4);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.scroll-line { width: 40px; height: 1px; background: var(--c4); display: block; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 36px;
  }
  .hero-photo { width: 120px; position: absolute; top: calc(var(--nav-h) + 28px); right: 28px; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
  .hero-scroll-hint { left: 28px; }
}
@media (max-width: 480px) {
  .hero-photo { display: none; }
}