/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.hero-intro {
  padding: 0;
}

.hero-intro .badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-intro h1 {
  font-size: 3rem;
  margin: 0 0 0.3rem;
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 0.95rem;
  max-width: 65ch;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.badge-highlight {
  background: rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.3);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-profile {
  padding: 1.2rem;
  text-align: center;
}

.avatar-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.8rem;
  border-radius: 12px;
  border: 2px solid var(--primary);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.02));
}

.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.hero-profile h2 {
  font-size: 0.95rem;
  margin: 0.3rem 0;
}

.hero-profile p {
  font-size: 0.85rem;
  margin: 0;
}

/* Metrics */
.metrics-group {
  display: grid;
  gap: 0.8rem;
}

.metric {
  padding: 0.9rem 1rem;
  text-align: center;
  display: grid;
  gap: 0.4rem;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
}

.metric span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Highlights Section */
.highlights-section {
  padding: 0;
  margin-top: 3rem;
}

.highlights-section .badge {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.highlights-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.highlight-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.highlight-card h3 {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: var(--ink);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-intro h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-intro h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
  }
}
