/* Protocol Her — shared stylesheet for the legal pages (privacy.html, terms.html).
   Extracted from the pages' former inline <style> blocks so the site can ship a
   strict Content-Security-Policy (style-src 'self', no inline styles). Union of
   both blocks: table rules are used by privacy, .box.disclaimer by terms. */
:root {
  --ink: #0E0810;
  --ink-light: #181018;
  --ink-border: #2A1E28;
  --blush: #F2C4CE;
  --blush-soft: #F8DDE3;
  --rose: #E07A98;
  --deep: #C9537A;
  --text: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.52);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 24px 20px 64px; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px 20px;
  padding: 8px 0 28px; border-bottom: 1px solid var(--ink-border); margin-bottom: 36px;
}
header.site a.home {
  color: var(--blush); text-decoration: none; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px;
}
header.site a.alt { color: var(--text-dim); text-decoration: none; font-size: 13px; }
header.site a.alt:hover, a:hover { color: #fff; }

/* Site nav on the legal pages: same destinations as the marketing header,
   rendered in this page's plainer type rather than the glass nav. */
header.site nav.links {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: 8px 18px;
}
header.site nav.links a { color: var(--text-dim); text-decoration: none; font-size: 13px; }
header.site nav.links a:hover { color: #fff; }
header.site nav.links a.cta {
  color: var(--ink); background: var(--blush); border-radius: 999px;
  padding: 6px 14px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
}
header.site nav.links a.cta:hover { background: var(--blush-soft); color: var(--ink); }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400; font-size: 34px; line-height: 1.25; color: var(--blush-soft);
  margin-bottom: 6px;
}
.meta { color: var(--text-dim); font-size: 14px; margin-bottom: 32px; }
h2 {
  color: var(--rose); font-size: 19px; font-weight: 600;
  margin: 40px 0 12px; line-height: 1.35;
}
h3 { color: var(--blush-soft); font-size: 16px; font-weight: 600; margin: 22px 0 8px; }
p { margin-bottom: 14px; }
ul { margin: 0 0 14px 22px; }
li { margin-bottom: 8px; }
a { color: var(--blush); }
.box {
  background: var(--ink-light); border: 1px solid var(--ink-border);
  border-radius: 14px; padding: 20px 22px; margin: 22px 0;
}
.box.summary { border-color: rgba(242, 196, 206, 0.28); }
.box.disclaimer {
  border: 1px solid rgba(224, 122, 152, 0.55);
  background: rgba(201, 83, 122, 0.10);
}
.box.disclaimer h2 { margin-top: 0; color: var(--blush-soft); }
.box h2:first-child, .box h3:first-child { margin-top: 0; }
table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--ink-border); vertical-align: top; }
th { color: var(--blush-soft); font-weight: 600; }
footer.site {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--ink-border);
  color: var(--text-dim); font-size: 13.5px;
}
/* Same two link groups the marketing footer carries, so every page on the
   site reaches every other page without going back to the homepage first. */
footer.site .cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-bottom: 26px;
}
footer.site h2 {
  color: var(--blush-soft); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 12px; line-height: 1.4;
}
footer.site ul { list-style: none; margin: 0; }
footer.site li { margin-bottom: 7px; }
footer.site a { color: var(--text-dim); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .copy { margin: 0; padding-top: 20px; border-top: 1px solid var(--ink-border); }
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .wrap { padding: 18px 16px 48px; }
  th, td { font-size: 13.5px; }
  footer.site .cols { grid-template-columns: 1fr; }
  /* Once the header stacks, a right-aligned nav hugs the edge; start it at
     the text margin instead so it lines up with everything below it. */
  header.site nav.links { justify-content: flex-start; }
}
