/* Shared styles for the static SEO landing pages in public/.
   These pages are plain HTML served by nginx before the SPA fallback, so they
   cannot use the app's Tailwind build — this file is their whole stylesheet. */
:root {
  color-scheme: light dark;
  --ink: #12141a;
  --muted: #5b6070;
  --line: #e4e6ee;
  --bg: #ffffff;
  --panel: #f7f8fc;
  --brand: #4f46e5;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eef0f6;
    --muted: #a0a6b8;
    --line: #272b36;
    --bg: #0e1015;
    --panel: #161a22;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 40px 20px 72px; }
header nav a { color: var(--brand); text-decoration: none; font-weight: 600; font-size: 14px; }
h1 { font-size: clamp(28px, 5vw, 40px); line-height: 1.2; margin: 28px 0 12px; letter-spacing: -0.02em; }
h2 { font-size: clamp(20px, 3vw, 25px); margin: 38px 0 10px; letter-spacing: -0.01em; }
h3 { font-size: 17px; margin: 24px 0 6px; }
.lede { font-size: 18px; color: var(--muted); }
ul { padding-left: 20px; }
li { margin: 7px 0; }
.cta {
  display: inline-block;
  margin: 8px 10px 8px 0;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.cta.secondary { background: transparent; color: var(--brand); border: 1px solid var(--line); }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0;
}
.faq h3 { margin-bottom: 4px; }
footer { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
th, td { text-align: left; padding: 9px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
/* Wide content must scroll inside its own box, never the page body. */
.scroll-x { overflow-x: auto; }
