/* Starter stylesheet - replace freely. Only the [data-bo-status] states and
   the html[data-bo-state] hooks below are used by site-kit/brightops.js. */
:root {
  --ink: #1f2933;
  --muted: #6b7280;
  --accent: #2563eb;
  --bg: #ffffff;
  --rule: #e5e7eb;
}
* { box-sizing: border-box; }
body { margin: 0; font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); }
a { color: var(--accent); }
.site-header, .site-footer, main { max-width: 960px; margin: 0 auto; padding: 16px 20px; }
.site-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--rule); }
.site-header .brand { font-weight: 700; color: inherit; text-decoration: none; }
.site-header nav a { margin-left: 16px; }
.hero { padding: 64px 0 32px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; padding: 24px 0; }
.stat { border: 1px solid var(--rule); border-radius: 8px; padding: 16px; }
.stat strong { display: block; font-size: 2rem; }
.stat span { color: var(--muted); }
.contact form { display: grid; gap: 12px; max-width: 480px; }
.contact label { display: grid; gap: 4px; font-weight: 500; }
.contact input, .contact textarea { font: inherit; padding: 8px 10px; border: 1px solid var(--rule); border-radius: 6px; }
.contact button { font: inherit; padding: 10px 16px; border: 0; border-radius: 999px; background: var(--accent); color: #fff; cursor: pointer; }
.contact button[disabled] { opacity: 0.6; }
[data-bo-status="error"] { color: #b91c1c; }
[data-bo-status="success"] { color: #047857; }
[data-bo-status="pending"] { color: var(--muted); }
/* html[data-bo-state] is "loading" | "ready" | "stale" | "unavailable" | "unconfigured" | "error" */
html[data-bo-state="loading"] [data-bo] { min-width: 1ch; }
.site-footer { border-top: 1px solid var(--rule); color: var(--muted); margin-top: 48px; }
