/* ============================================
   hero.css — headline + work blurb + stats
   ============================================ */

.hero {
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.02em;
  max-width: 680px;
}

/* Recent Work Experience */
.section {
  padding: 2rem 0 0;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
}
.section-body strong {
  color: var(--text);
  font-weight: 500;
}

.inline-company {
  display: inline;
  color: var(--text);
  font-weight: 500;
}

.company-logo {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.9;
  border-radius: 2px;
  display: inline;
  vertical-align: -2px;
  margin-right: 3px;
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Status bar — below nav, mail icon LHS + status RHS */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 0;
  border-top: 1px solid var(--border);
}

/* Status indicator */
.hero-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-left: auto;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.8);  }
}

.status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #22c55e;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.35rem; }
  .stats-row { gap: 1.25rem; }
}
