/* hub.css — shared styles for every page except index.html.
 *
 * Generated by lifting only the CSS rules that were byte-identical across all
 * 10 hub pages. Page-specific rules stay inline in each page's <style> block,
 * which loads AFTER this file, so a page can still override anything here.
 *
 * Do not add page-specific rules to this file.
 */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --paper: #fdfaf5;
  --panel: #ffffff;
  --ink: #2e3240;
  --muted: #6b7280;
  --line: #e6dfd4;
  --sage: #8faf98;
  --blue: #0a66c2;
  --sand: #f4efe6;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

  a { color: var(--blue); }

header {
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.wrap {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

  .nav-links a:hover { color: var(--ink); }

.hero {
  padding: 70px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

main {
  padding: 34px 0 72px;
}

  .muted { color: var(--muted); }

/* Report/suggest pill. Shared by roadmap.html and support.html; each sets its
 * own margin-top inline because the element above it differs (a snug helper
 * line on roadmap, a full paragraph on support).
 *
 * margin-bottom is scoped to :not(:last-child) so the button always clears
 * whatever follows it, without adding stray space when it closes a block.
 * It is inline-flex, so nothing else pushes the next block away. */
.btn-report {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s;
}

.btn-report:not(:last-child) { margin-bottom: 18px; }

.btn-report:hover { background: #1a1e2a; }

footer {
  border-top: 1px solid var(--line);
  background: var(--sand);
  padding: 24px 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

  .footer-links a:hover { color: var(--ink); }
