/* /about.html author hub. Dark theme, consistent with the rest of the site. */
.hub {
  max-width: 820px;
  margin: 0 auto;
  padding: 9rem 2.5rem 5rem;
}
.hub-head { display: flex; gap: 2rem; align-items: center; margin-bottom: 2.5rem; }
.hub-photo {
  width: 140px; height: 140px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--nebula-slate);
}
.hub-head .section-label { color: var(--dune); }
.hub-name {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--star);
  margin: 0.3rem 0 0.4rem;
}
.hub-title { font-size: 1.05rem; color: var(--star-muted); }
.hub-title .hub-tagline { color: var(--dune); }

.hub-bio { max-width: 680px; }
.hub-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--star-muted);
  margin-bottom: 1.25rem;
}
.hub-bio p strong { color: var(--star); }

.hub-section { margin-top: 3rem; }
.hub-section h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--star);
  margin-bottom: 1rem;
}

.knows-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.knows-chip {
  font-size: 0.85rem;
  color: var(--star-muted);
  background: var(--abyss-light);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}

.ventures { display: grid; gap: 1rem; }
.venture {
  display: block;
  padding: 1.4rem 1.5rem;
  background: var(--abyss-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.venture:hover { border-color: var(--dune); transform: translateY(-2px); }
.venture .venture-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dune);
}
.venture h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--star);
  margin: 0.3rem 0 0.4rem;
}
.venture p { font-size: 0.95rem; color: var(--star-muted); line-height: 1.6; margin: 0; }

.profiles-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.profile-link {
  font-size: 0.9rem;
  color: var(--star);
  background: var(--abyss-light);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.profile-link:hover { border-color: var(--dune); color: var(--dune); }

@media (max-width: 768px) {
  .hub { padding: 7rem 1.5rem 3rem; }
  .hub-head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hub-photo { width: 110px; height: 110px; }
}

/* ---- Hire page ---- */
.hire-hero { max-width: 760px; margin-bottom: 1rem; }
.hire-hero .section-label { color: var(--dune); }
.hire-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: var(--star);
  margin: 0.4rem 0 1rem;
}
.hire-hero p.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--star-muted);
  margin-bottom: 1.75rem;
}
.hire-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hire-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 0;
}
.hire-stat {
  background: var(--abyss-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
}
.hire-stat .num { font-family: var(--serif); font-size: 2.2rem; color: var(--dune); line-height: 1; }
.hire-stat .lbl { font-size: 0.85rem; color: var(--star-muted); line-height: 1.5; margin-top: 0.5rem; }

.venture .you-get {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  list-style: none;
}
.venture .you-get li {
  position: relative;
  font-size: 0.9rem;
  color: var(--star-muted);
  line-height: 1.55;
  margin-bottom: 0.35rem;
  padding-left: 1rem;
}
.venture .you-get li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 5px;
  background: var(--dune);
  border-radius: 50%;
}
.venture .fit { font-size: 0.85rem; color: var(--star-dim); margin: 0.6rem 0 0; }

.hire-steps { display: grid; gap: 0.9rem; }
.hire-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.3rem;
  background: var(--abyss-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.hire-step .step-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dune);
  line-height: 1;
  width: 1.6rem;
}
.hire-step h3 { color: var(--star); font-size: 1.02rem; margin: 0 0 0.25rem; }
.hire-step p { font-size: 0.92rem; color: var(--star-muted); line-height: 1.6; margin: 0; }

.hire-sources { font-size: 0.82rem; color: var(--star-dim); line-height: 1.6; margin-top: 1rem; }
.hire-sources a { color: var(--dune); }

@media (max-width: 640px) {
  .hire-stats { grid-template-columns: 1fr; }
}
