/* BayouRadar SEO landing pages — shared stylesheet.
   Reuses the same design tokens as /about.html (Metro/Fluent flat aesthetic,
   #2f9bff accent, Segoe UI stack) with the darker #0a0e17 background these
   pages were speced with. Pure CSS, no JS. */
:root {
  --bg-0: #0a0e17;
  --bg-1: #10151f;
  --bg-2: #171d2a;
  --line: #232a3a;
  --line-strong: #313a50;
  --text: #f5f6f8;
  --muted: #a3aab5;
  --faint: #7b828d;
  --accent: #2f9bff;
  --accent-deep: #0d47a1;
  --accent-hover: #54adfb;
  --on-accent: #ffffff;
  --radius: 4px;
  --font: "Segoe UI", "Selawik", -apple-system, Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* ---- Header ---- */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.lp-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; text-decoration: none; flex: 0 0 auto; }
.lp-brand .bayou { color: var(--text); }
.lp-brand .radar { color: var(--accent); }
.lp-logo-mark { position: relative; width: 30px; height: 30px; flex: 0 0 30px; }
.lp-logo-mark i {
  position: absolute; left: 5px; top: 5px; width: 19px; height: 19px;
  border-radius: 50%; border: 2px solid transparent;
  border-top-color: var(--accent); border-right-color: var(--accent);
  transform: rotate(12deg);
}
.lp-logo-mark i:nth-child(2) { width: 26px; height: 26px; left: 2px; top: 2px; opacity: .6; }
.lp-logo-mark i:nth-child(3) { width: 30px; height: 30px; left: 0; top: 0; opacity: .32; }
.lp-logo-mark::after {
  content: ""; position: absolute; left: 11px; top: 11px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px 2px rgba(47,155,255,.7);
}
.lp-nav { display: flex; align-items: center; gap: 4px 14px; flex-wrap: wrap; flex: 1 1 auto; font-size: 13px; }
.lp-nav a { color: var(--muted); text-decoration: none; white-space: nowrap; }
.lp-nav a:hover { color: var(--text); }
.lp-nav a.current { color: var(--accent); font-weight: 700; }
.lp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--on-accent);
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 13px; text-decoration: none;
  flex: 0 0 auto; white-space: nowrap;
}
.lp-cta:hover { background: var(--accent-hover); color: var(--on-accent); }

/* ---- Hero ---- */
.lp-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 28px 48px;
  text-align: center;
}
.lp-hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.lp-hero .lp-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
}
.lp-hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--on-accent);
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; text-decoration: none;
}
.lp-btn-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.lp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 16px; text-decoration: none;
}
.lp-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.lp-hero-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lp-hero-shot img { width: 100%; }

/* ---- Content sections ---- */
main { max-width: 1040px; margin: 0 auto; padding: 0 28px 40px; }
.lp-section { padding: 56px 0; border-top: 1px solid var(--line); }
.lp-section:first-of-type { border-top: none; }
.lp-section-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: center; }
.lp-section-inner.lp-reverse .lp-section-copy { order: 2; }
.lp-section-inner.lp-reverse .lp-section-shot { order: 1; }
.lp-section-inner.lp-full { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.lp-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin: 0 0 10px; }
.lp-section h2 { font-size: 26px; font-weight: 800; margin: 0 0 14px; letter-spacing: -0.005em; }
.lp-section p { color: var(--muted); margin: 0 0 14px; font-size: 15.5px; }
.lp-feature-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.lp-feature-list li {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 14px 12px 40px;
  font-size: 14.5px; color: var(--text); position: relative;
}
.lp-feature-list li::before {
  content: "✓"; position: absolute; left: 14px; top: 11px;
  color: var(--accent); font-weight: 700;
}
.lp-section-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  overflow: hidden;
}

/* ---- Full-width feature grid (no image) ---- */
.lp-grid-section { padding: 56px 0; border-top: 1px solid var(--line); }
.lp-grid-section h2 { font-size: 26px; font-weight: 800; margin: 0 0 14px; text-align: center; }
.lp-grid-section > p { color: var(--muted); max-width: 640px; margin: 0 auto 32px; text-align: center; font-size: 15.5px; }
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.lp-grid-card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.lp-grid-card h3 { margin: 0 0 8px; font-size: 15.5px; font-weight: 700; }
.lp-grid-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ---- CTA banner ---- */
.lp-cta-banner {
  margin: 40px 0 0;
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-deep), #06254f);
  border: 1px solid var(--line-strong);
}
.lp-cta-banner h2 { margin: 0 0 10px; font-size: 26px; font-weight: 800; }
.lp-cta-banner p { margin: 0 0 24px; color: rgba(255,255,255,.82); font-size: 15.5px; }

/* ---- Footer ---- */
.lp-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 48px 28px 24px;
}
.lp-footer-grid {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
}
.lp-footer-col h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin: 0 0 14px; }
.lp-footer-col p { color: var(--muted); font-size: 13.5px; margin: 0 0 14px; }
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lp-footer-col a { color: var(--muted); text-decoration: none; font-size: 13.5px; }
.lp-footer-col a:hover { color: var(--accent); }
.lp-social-row { display: flex; gap: 12px; margin-top: 4px; }
.lp-social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line-strong);
}
.lp-social-row img { width: 16px; height: 16px; }
.lp-social-row a span { color: var(--text); font-weight: 700; font-size: 14px; }
.lp-footer-bottom {
  max-width: 1040px; margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  color: var(--faint); font-size: 12.5px;
}
.lp-footer-bottom a { color: var(--faint); }

@media (max-width: 860px) {
  .lp-section-inner { grid-template-columns: 1fr; }
  .lp-section-inner.lp-reverse .lp-section-copy,
  .lp-section-inner.lp-reverse .lp-section-shot { order: initial; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lp-hero h1 { font-size: 30px; }
  .lp-hero .lp-lede { font-size: 16px; }
  .lp-header { padding: 14px 16px; }
  .lp-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; order: 3; }
  main, .lp-hero { padding-left: 18px; padding-right: 18px; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-cta-banner { padding: 36px 20px; }
}
