/* Lightweight styles for static SEO hub pages (no JS bundle). */
:root {
  --bg: #0a0e14;
  --surface: #11161e;
  --text: #e6edf3;
  --muted: #8b949e;
  --accent: #3fb950;
  --brand: #4da3ff;
  --border: rgba(255, 255, 255, 0.1);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 1rem;
}
a { color: var(--brand); }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 1.25rem 1rem 2.5rem; }
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.site-header nav { display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; font-size: 0.92rem; }
.site-header nav a { color: var(--accent); font-weight: 600; text-decoration: none; }
.site-header nav a:hover { text-decoration: underline; }
h1 { font-size: 1.65rem; margin: 0 0 0.75rem; line-height: 1.2; }
h2 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; color: #c2cbd6; }
p { margin: 0 0 1rem; color: #dbe4f2; }
.muted { color: var(--muted); font-size: 0.9rem; }
.cta-row { margin: 1.25rem 0; }
.cta {
  display: inline-block;
  background: linear-gradient(180deg, #44c759, #238636);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
}
.cta:hover { filter: brightness(1.06); text-decoration: none; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p:last-child { margin-bottom: 0; }
ul.toc { margin: 0.5rem 0 0; padding-left: 1.2rem; }
ul.toc li { margin: 0.35rem 0; }
.testimonial {
  border-left: 3px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1rem;
  margin: 1rem 0;
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
}
footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
