function Performance() {
  return (
    <section id="perf">
      <div className="container">
        <div className="section-head">
          <div className="eyebrow">Privacy &amp; footprint</div>
          <h2>Native. Local. Quiet.</h2>
          <p className="lede">
            Flik runs entirely on your Mac. No accounts. No cloud. No analytics.
            No telemetry. Files never leave your machine — there's no server to
            send them to.
          </p>
        </div>

        <div className="perf-grid">
          <div className="perf-card glass">
            <div>
              <h4>Idle memory</h4>
              <p>Background, shelf closed, files on the shelf.</p>
            </div>
            <div>
              <div className="perf-stat">~30<sup>MB</sup></div>
              <div className="perf-label">lighter than a browser tab</div>
            </div>
          </div>

          <div className="perf-card glass">
            <div>
              <h4>On disk</h4>
              <p>Pure Swift — no bundled runtimes or libraries.</p>
            </div>
            <div>
              <div className="perf-stat">~10<sup>MB</sup></div>
              <div className="perf-label">native frameworks only</div>
            </div>
          </div>

          <div className="perf-card glass">
            <div>
              <h4>Network calls</h4>
              <p>Excluding the update check and license verification.</p>
            </div>
            <div>
              <div className="perf-stat">0</div>
              <div className="perf-label">processing happens on-device, always</div>
            </div>
          </div>
        </div>
      </div>
    </section>
  );
}

window.Performance = Performance;
