function Philosophy() {
  return (
    <section id="philosophy" className="sl-philosophy sl-container">
      <div className="sl-eyebrow">Philosophy</div>
      <blockquote className="sl-pullquote">
        Software should solve <em>people's problems</em>, so they can work better.
      </blockquote>
      <div className="sl-philo-grid">
        <div>
          <h3 className="sl-philo-h">People-first.</h3>
          <p>The craft is in service of the humans using it. We build for the person doing the work at 3pm on a Tuesday, not for a slide.</p>
        </div>
        <div>
          <h3 className="sl-philo-h">Battle-tested first.</h3>
          <p>Every tool gets used inside our sister company before it ships elsewhere. If it survives a real operating business, it's ready.</p>
        </div>
        <div>
          <h3 className="sl-philo-h">Open where we can.</h3>
          <p>Where the work benefits others, we release it. Reaper, PowerShell Pilot, and everything that follows lives on GitHub, MIT.</p>
        </div>
      </div>
    </section>
  );
}

window.Philosophy = Philosophy;
