/* Shared styles for Synqora's crawler-readable marketing pages
   (/ai, /faq, /compare, /about). Brand: teal #0d9488 on light, slate ink. */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--teal-dark); }
a:hover { color: var(--teal); }

/* Header */
.site-header {
  background: #0f172a;
  color: #fff;
  padding: 14px 20px;
}
.site-header .inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand img { width: 34px; height: 34px; border-radius: 8px; background: #fff; }
.brand strong { font-size: 18px; letter-spacing: -0.01em; }
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: #cbd5e1; text-decoration: none; font-size: 15px; }
.site-nav a:hover { color: #fff; }
.site-nav a.cta {
  background: var(--teal);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

/* Content */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 8px;
}
h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
h2 {
  font-size: 23px;
  line-height: 1.25;
  margin: 34px 0 10px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: none; }
h3 { font-size: 18px; margin: 22px 0 6px; }
p, li { color: var(--slate); font-size: 17px; }
.lede { font-size: 19px; color: var(--ink); }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.intro { color: var(--muted); font-size: 16px; }
ul { padding-left: 22px; }
li { margin: 4px 0; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 18px 0; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 700;
}
th[scope="row"] { font-weight: 600; color: var(--ink); }
td.yes { color: var(--teal-dark); font-weight: 600; }
td.no { color: var(--muted); }

/* Footer */
.site-footer {
  max-width: 820px;
  margin: 40px auto 0;
  padding: 22px 20px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.site-footer .links { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.callout {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
}
