/* Telemetry.jsx — quiet brand divider between Hero and Manifesto.
 * Hairline rule + mountain mark centered on it. No content.
 */

function TelemetryStrip() {
  return (
    <section style={{ position: "relative", background: "var(--paper)",
                      padding: "36px 96px",
                      display: "flex", justifyContent: "center", alignItems: "center" }}>
      <div style={{ position: "absolute", left: 96, right: 96, top: "50%",
                    height: 1, background: "var(--ink-faint)" }} />
      <div style={{ position: "relative", background: "var(--paper)", padding: "0 16px" }}>
        <img
          src="logos/zonda_wind_mark.png"
          alt=""
          aria-hidden="true"
          style={{ width: 42, height: "auto", display: "block", opacity: 0.38 }}
        />
      </div>
    </section>
  );
}

Object.assign(window, { TelemetryStrip });
