/* =============================================
   HERO SECTION
   Bio, avatar blob, icon links
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.15fr 320px;
  gap: 4rem;
  align-items: center;
}

.hero-text { z-index: 2; }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-pronouns {
  font-size: 0.35em;
  font-weight: 400;
  color: #999;
  vertical-align: baseline;
  margin-left: 0.3em;
  font-family: var(--font-body); 
  letter-spacing: 0.02em;
}

.hero-role {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}
.hero-role span { color: var(--accent); }

.hero-bio p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.hero-bio p:last-child { margin-bottom: 0; }
.hero-bio strong { color: var(--text-primary); font-weight: 600; }

/* ---- Right column: blob + icons ---- */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Blob avatar */
.blob-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-dots {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  opacity: 0.1;
}
.blob-dots span {
  width: 2.5px; height: 2.5px;
  border-radius: 50%;
  background: var(--text-primary);
}

.blob-shape {
  width: 245px; height: 245px;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  border: 1px solid var(--border);
  animation: morph 12s ease-in-out infinite;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
  25%      { border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%; }
  50%      { border-radius: 45% 55% 60% 40% / 60% 45% 40% 55%; }
  75%      { border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%; }
}

/* Icon links row */
.icon-links {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
}

.icon-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease-out-expo);
  color: var(--text-muted);
}

.icon-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.icon-link svg { width: 14px; height: 14px; }
