/* global React */
function Features() {
  const features = [
    {
      icon: 'sparkles',
      title: 'AI sourcing at scale.',
      body: 'We screen 10,000+ profiles per role across LinkedIn, GitHub, and 40+ private signals — surfacing candidates your tools never see.'
    },
    {
      icon: 'gauge',
      title: 'Match scoring you can trust.',
      body: 'Every candidate gets a confidence score on skills, comp band, seniority, and availability — with the receipts to back it up.'
    },
    {
      icon: 'message-square-text',
      title: 'Pre-qualified by humans.',
      body: 'Our recruiters speak with every shortlisted candidate. By the time you meet them, comp and timing are already aligned.'
    },
    {
      icon: 'git-branch',
      title: 'Pipeline that talks back.',
      body: 'Slack updates, ATS sync, and weekly briefings. You always know who is in flight and what the engine is doing next.'
    },
    {
      icon: 'shield-check',
      title: 'Replacement guarantee.',
      body: 'If a hire does not work out in the first 60 days, we replace them at no cost. Skin in the game.'
    },
    {
      icon: 'trending-up',
      title: 'Insight, not noise.',
      body: 'Live comp data, market velocity, and acceptance trends — pulled from every role we run, surfaced for yours.'
    },
  ];
  return (
    <section id="features" className="section section--light features">
      <div className="container">
        <div className="section__head">
          <div className="eyebrow">The platform</div>
          <h2 className="h2">An end-to-end engine — not a job board.</h2>
        </div>
        <div className="features__grid">
          {features.map((f) => (
            <div className="feature" key={f.title}>
              <div className="feature__icon"><i data-lucide={f.icon}></i></div>
              <h3 className="feature__title">{f.title}</h3>
              <p className="feature__body">{f.body}</p>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}
window.Features = Features;
