// Team.jsx — Founder spotlight
function Team() {
  return (
    <section id="team" className="al-section al-section-dark">
      <div className="al-container al-team">
        <div className="al-team-photo">
          <img src="assets/profile.png" alt="Saiyam Sogani — Founder of AeroLabs" />
        </div>
        <div className="al-team-copy">
          <div className="al-eyebrow" style={{color:'#93C5FD'}}>FOUNDER</div>
          <h2 className="al-h2 on-dark">Saiyam Sogani</h2>
          <p className="al-lede on-dark">
            Saiyam founded AeroLabs in Austin as a high-school student who couldn't find a
            hands-on aerospace program anyone could join. So he built one. AeroLabs is still
            student-led — and still free — because that's the whole point.
          </p>
          <a href="mailto:aerolabsgeorgetown@gmail.com" className="al-inline-link">
            <i data-lucide="mail" /> aerolabsgeorgetown@gmail.com
          </a>
        </div>
      </div>
    </section>
  );
}
window.Team = Team;
