/* ══ FOUNDER ══ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.founder-left { display: flex; flex-direction: column; gap: 28px; }
.founder-name {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: .04em;
  line-height: 1.1;
}
.founder-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 6px;
}
.founder-bio {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.85;
}
.label-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 8px 14px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.social-btn:hover {
  background: var(--green-dim);
  border-color: var(--green);
  color: var(--ctrl-active-text);
}
.social-icon { font-style: normal; line-height: 1; }
.social-arrow { color: var(--green); font-size: 12px; }

/* ══ TIMELINE ══ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid;
  grid-template-columns: 68px 16px 1fr;
  gap: 0 12px;
  padding-bottom: 28px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-date {
  font-size: 10px;
  color: var(--text-mute);
  font-weight: 500;
  padding-top: 3px;
  text-align: right;
  line-height: 1.5;
  letter-spacing: .02em;
}
.tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border2);
  border: 2px solid var(--border2);
  flex-shrink: 0;
  margin-top: 4px;
}
.tl-item.tl-active .tl-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}
.tl-item.tl-edu .tl-dot {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}
.tl-line {
  flex: 1;
  width: 1px;
  background: var(--border);
  margin-top: 4px;
}
.tl-item:last-child .tl-line { display: none; }
.tl-company {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.tl-item.tl-active .tl-company { color: var(--green); }
.tl-item.tl-edu .tl-company { color: var(--cyan); }
.tl-role {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 400;
  margin-top: 2px;
}
.tl-detail {
  font-size: 11.5px;
  color: var(--text-mute);
  margin-top: 3px;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}
