/* Shared styles for Vettor static content/education pages (SEO/GEO layer).
   These pages live outside the React SPA (real static HTML for crawlability),
   so they carry their own lightweight brand styling. Navy/gold to match Vettor. */
:root {
  --navy: #0a1a2f;
  --gold: #d9a441;
  --charcoal: #1f2933;
  --ink: #1a2230;
  --muted: #5b6675;
  --line: #e5e7eb;
  --bg: #ffffff;
  --soft: #f7f8fa;
  --good: #0f8a5f;
  --bad: #c0392b;
}
* { 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.65;
  font-size: 18px;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Header / footer */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { color: #fff; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; text-decoration: none; }
.brand span { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy); font-weight: 700; text-decoration: none;
  padding: 8px 16px; border-radius: 8px; font-size: 0.95rem;
}
.nav-cta:hover { filter: brightness(1.05); }

main { padding: 32px 0 8px; }
.eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; margin: 0 0 8px; }
h1 { font-size: 2.1rem; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 12px; }
h2 { font-size: 1.5rem; line-height: 1.2; color: var(--navy); margin: 2.2rem 0 0.6rem; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; color: var(--charcoal); margin: 1.6rem 0 0.4rem; }
p { margin: 0 0 1rem; }
a { color: #0d6efd; }
.lede { font-size: 1.2rem; color: var(--muted); margin-bottom: 1.5rem; }
ul, ol { padding-left: 1.3rem; margin: 0 0 1rem; }
li { margin: 0.3rem 0; }
strong { color: var(--ink); }

.callout {
  background: var(--navy); color: #fff; border-radius: 14px; padding: 24px 26px; margin: 2rem 0;
}
.callout h3 { color: #fff; margin-top: 0; }
.callout p { color: #d7dee8; margin-bottom: 1rem; }
.callout .nav-cta { display: inline-block; }

.note { background: var(--soft); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 1.4rem 0; color: var(--charcoal); }

table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.98rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--soft); color: var(--navy); font-weight: 700; }
.tag-junk { color: var(--bad); font-weight: 700; }
.tag-legit { color: var(--good); font-weight: 700; }

.faq h3 { margin-bottom: 0.2rem; }
.updated { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 24px 0 40px; color: var(--muted); font-size: 0.9rem; }
.site-footer a { color: var(--muted); margin-right: 16px; text-decoration: none; }
.site-footer a:hover { color: var(--navy); }

@media (max-width: 560px) {
  body { font-size: 17px; }
  h1 { font-size: 1.7rem; }
  .nav-cta { padding: 7px 12px; font-size: 0.85rem; }
}
