/* hosts.css - v1.5 "The Builders" hosts section */

.hosts-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.hosts-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hosts-h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.host-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.host-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.host-card__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(224, 90, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Real photo (Direction C preference) */
.host-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.host-name-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.host-role {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
}

.host-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.host-identity {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  display: block;
}

.host-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  line-height: 1.65;
  opacity: 0.85;
}

.host-system {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  margin-top: auto;
}

.host-system-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.host-system-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
}

.host-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.host-link:hover { color: var(--ember); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hosts-grid { grid-template-columns: 1fr; }
}
