/* Shared styling for the STATIC marketing pages (v1.42).
   These pages are plain HTML on purpose — a crawler with no JavaScript must
   see the whole thing. Keep it that way: no framework, no build step, no
   client-side rendering. The app's own look is mirrored by hand. */
:root {
  --bg: #020617; --surface: #0f172a; --card: #1e293b; --border: #334155;
  --text: #f1f5f9; --muted: #94a3b8; --faint: #64748b;
  --accent: #818cf8; --accent-deep: #4f46e5; --pos: #34d399;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 24px 20px 72px; }
header.site { display: flex; align-items: center; gap: 12px; padding: 20px 0 8px; }
.mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--accent);
  color: var(--bg); font-weight: 800; display: flex; align-items: center;
  justify-content: center; font-size: 15px; text-decoration: none;
}
header.site a.name { color: var(--text); font-weight: 700; text-decoration: none; font-size: 17px; }
nav.site { margin-left: auto; display: flex; gap: 16px; flex-wrap: wrap; }
nav.site a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav.site a:hover { color: var(--text); }
h1 { font-size: 34px; line-height: 1.2; margin: 28px 0 12px; letter-spacing: -0.5px; }
h2 { font-size: 21px; margin: 36px 0 10px; }
h3 { font-size: 16px; margin: 24px 0 6px; }
p { color: var(--muted); }
p.lead { font-size: 18px; color: var(--text); }
a { color: var(--accent); }
.cta {
  display: inline-block; background: var(--accent-deep); border: 1px solid var(--accent);
  color: #fff; padding: 12px 20px; border-radius: 12px; text-decoration: none;
  font-weight: 700; margin: 8px 10px 8px 0;
}
.cta.ghost { background: transparent; color: var(--accent); }
.trust { color: var(--faint); font-size: 13px; margin-top: 6px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 20px; margin: 14px 0;
}
table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
th, td { text-align: left; padding: 9px 8px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text); width: 38%; font-weight: 600; }
td { color: var(--muted); }
ul { color: var(--muted); padding-left: 20px; }
li { margin-bottom: 6px; }
.price { font-size: 40px; font-weight: 800; color: var(--text); }
.price small { font-size: 15px; color: var(--muted); font-weight: 500; }
footer.site {
  margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--border);
  color: var(--faint); font-size: 12px; line-height: 1.7;
}
footer.site a { color: var(--muted); }
.disclaimer { color: var(--faint); font-size: 12px; margin-top: 28px; }
