/*
 * Shared styling for the static content pages (guides, om, policies) that are
 * served as plain HTML outside the React app. Kept as a superset of what those
 * pages use so a single file covers all of them.
 */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/bricolage-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/hanken-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/hanken-600-latin.woff2') format('woff2');
}

:root {
  --accent: #2f4fe0;
  --accent-ink: #2743c9;
  --accent-tint: #eef1fe;
  --ink: #2b2f3a;
  --ink-soft: #6b7080;
  --line: #e2e4e9;
  --surface: #ffffff;
  --paper: #fbfaf8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: var(--accent-ink); }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
header.site .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header.site img { height: 32px; width: auto; }
header.site .spacer { flex: 1; }

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: 34px; margin: 40px 0 8px; }
h2 { font-size: 24px; margin: 40px 0 10px; }
h3 { font-size: 18px; margin: 22px 0 4px; }

.lead { font-size: 19px; color: var(--ink-soft); margin: 0 0 8px; }

ul, ol { padding-left: 22px; }
li { margin: 6px 0; }

/* Numbered walkthrough steps: bigger targets, clearer separation than a plain ol. */
ol.steps { list-style: none; padding: 0; counter-reset: step; }
ol.steps > li {
  position: relative;
  counter-increment: step;
  padding: 0 0 0 46px;
  margin: 18px 0;
}
ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.steps h3 { margin: 0 0 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 14px 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 17px;
}
.faq details p { margin: 8px 0 0; color: var(--ink-soft); }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 24px 0 60px;
  color: var(--ink-soft);
  font-size: 15px;
}
footer.site a { margin-right: 16px; }
