/* Shared stylesheet for the static /guides/ pages. These are plain HTML
   files served from public/ (same pattern as privacy.html) so crawlers get
   real content without executing the SPA bundle. Visual language matches
   privacy.html: dark navy, system fonts, single readable column. */
:root {
  color-scheme: light dark;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.55;
}
body {
  margin: 0;
  background: #0a1f3d;
  color: #f5f5f5;
}
main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.crumbs {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}
h1 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}
h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.2rem;
}
a {
  color: #8fb4ff;
}
ul,
ol {
  padding-left: 1.25rem;
}
li {
  margin-bottom: 0.35rem;
}
code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
}
pre {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: 0.45rem 0.6rem 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
th {
  font-weight: 600;
}
.cta {
  display: inline-block;
  margin-top: 2rem;
  background: #8fb4ff;
  color: #0a1f3d;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
}
.cta:hover,
.cta:focus-visible {
  background: #a9c6ff;
}
.cta-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
.guide-list {
  list-style: none;
  padding: 0;
}
.guide-list li {
  margin-bottom: 1rem;
}
.guide-list a {
  font-weight: 600;
}
.guide-list p {
  margin: 0.15rem 0 0;
  opacity: 0.85;
}
footer {
  margin-top: 3rem;
  opacity: 0.7;
  font-size: 0.9rem;
}
