.hero-inner {
  padding-top: 100px;
  padding-bottom: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--border);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-bio {
  font-size: 16px;
  color: var(--dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 13px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--accent) 50%, var(--text) 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

.btn-primary:hover {
  background-position: left;
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 3px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: linear-gradient(to right, var(--accent-light) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background-position: left;
  border-color: var(--accent-mid);
}

.hero-footnote {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
}

.hero-degree {
  flex: 1;
}

.hero-degree-year {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
}

.hero-degree-label {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}

.hero-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 28px;
}

.social-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.2s;
}

.social-pill:hover {
  background: var(--accent-light);
}

.social-pill-icon {
  flex-shrink: 0;
  color: var(--dim);
  transition: color 0.2s;
}

.social-pill:hover .social-pill-icon {
  color: var(--accent);
}

.social-pill-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  line-height: 1;
}

.social-pill-arrow {
  font-size: 13px;
  color: var(--dim);
  line-height: 1;
  display: block;
  transition: color 0.2s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-pill:hover .social-pill-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.hero-avatar-wrap {
  position: relative;
}

.hero-avatar {
  transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-light);
  border-radius: 3px;
  transform: translate(16px, 16px) rotate(0deg);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-avatar-wrap:hover::before {
  transform: translate(16px, 16px) rotate(1.5deg);
}

.hero-avatar-wrap:hover .hero-avatar {
  transform: rotate(-1.5deg);
}

.hero-avatar {
  aspect-ratio: 3/4;
  background: var(--accent-light);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

.hero-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(58, 124, 191, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-avatar-mobile {
  display: none;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-light);
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  margin: 0 0 32px 0;
  flex-shrink: 0;
}

.hero-avatar-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-eyebrow::before {
    display: none;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-footnote {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-avatar-wrap {
    display: none;
  }

  .hero-avatar-mobile {
    display: flex;
  }

  .hero-socials {
    padding-left: 0;
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .hero-h1 {
    font-size: 42px;
  }

  .hero-socials {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-pill {
    padding: 7px 8px;
  }
}