  :root {
    color-scheme: light dark;
    --bg: #ffffff; --fg: #1a1a2e; --muted: #5b5b73; --card: #f6f7fb;
    --line: #e6e7ef; --accent: #8250df; --code: #f0f1f7;
    /* One radius, held everywhere. 999px is the only other value and it means "pill". */
    --r: 6px;
  }
  @media (prefers-color-scheme: dark) {
    :root { --bg: #0f1117; --fg: #e8e9f0; --muted: #9aa0b4; --card: #171a22;
            --line: #262a36; --code: #1b1f29; --accent: #a371f7; }
  }
  * { box-sizing: border-box; }
  body { margin: 0; font: 16px/1.6 system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--fg); }
  a { color: var(--accent); }
  .wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }
  header.hero { padding: 64px 20px 40px; text-align: center; }
  .logo { width: 76px; height: 76px; border-radius: var(--r); }
  h1 { font-size: 2.2rem; margin: 18px 0 6px; letter-spacing: -0.02em; }
  .tag { color: var(--muted); font-size: 1.15rem; margin: 0 auto; max-width: 560px; }
  .tag.claim { color: var(--fg); font-size: 1.35rem; font-weight: 600; max-width: 620px; }
  .tag + .tag { margin-top: 14px; font-size: 1rem; }
  .pill { display: inline-block; margin-top: 18px; padding: 5px 14px; border-radius: 999px; font-size: .85rem;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); color: var(--accent); font-weight: 600; }
  section { padding: 36px 0; border-top: 1px solid var(--line); }
  h2 { font-size: 1.4rem; margin: 0 0 18px; letter-spacing: -0.01em; }
  h3 { font-size: 1.05rem; margin: 24px 0 6px; }
  .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
  .card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
  .card .ico { font-size: 1.4rem; }
  .card h4 { margin: 8px 0 4px; font-size: 1rem; }
  .card p { margin: 0; color: var(--muted); font-size: .93rem; }
  ol.steps { padding-left: 0; list-style: none; counter-reset: s; }
  ol.steps > li { position: relative; padding: 0 0 20px 46px; counter-increment: s; }
  ol.steps > li::before { content: counter(s); position: absolute; left: 0; top: 0;
    width: 30px; height: 30px; border-radius: var(--r); display: grid; place-items: center; font-weight: 700; font-size: .9rem;
    color: var(--bg); background: var(--accent); }
  ol.steps > li:not(:last-child)::after { content: ""; position: absolute; left: 14px; top: 34px; bottom: 4px; width: 2px; background: var(--line); }
  code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
  code { background: var(--code); padding: 2px 6px; border-radius: var(--r); font-size: .9em; }
  pre { background: var(--code); padding: 14px 16px; border-radius: var(--r); overflow-x: auto; border: 1px solid var(--line); }
  pre code { background: none; padding: 0; }
  table { width: 100%; border-collapse: collapse; font-size: .93rem; }
  th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
  th { color: var(--muted); font-weight: 600; }
  .marker { font-weight: 700; white-space: nowrap; }
  .note { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent);
    border-radius: var(--r); padding: 12px 16px; color: var(--muted); font-size: .93rem; }
  footer { padding: 40px 20px 60px; text-align: center; color: var(--muted); font-size: .88rem; }
  /* 840px is .wrap's content width, so the hero figure - which sits outside .wrap - lines up with the ones
     inside it instead of running the full viewport. */
  figure.shot { margin: 28px auto 0; max-width: 840px; }
  figure.shot img, figure.shot video {
    display: block; margin: 0 auto; width: 100%; max-width: 420px; height: auto; border-radius: var(--r);
    border: 1px solid var(--line); background: var(--card);
  }
  figure.shot.tall img { max-width: 340px; }
  figure.shot.wide img, figure.shot.wide video { max-width: 100%; }
  figure.shot figcaption { margin-top: 12px; text-align: center; color: var(--muted); font-size: .85rem; }
  /* ---- shared nav across the three pages ---- */
  nav.top { position: sticky; top: 0; z-index: 5; background: var(--bg); border-bottom: 1px solid var(--line); }
  nav.top .inner { max-width: 880px; margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; gap: 18px;
    font-size: .93rem; }
  nav.top .brand { font-weight: 700; letter-spacing: -0.01em; color: var(--fg); text-decoration: none; margin-right: auto; }
  nav.top a { color: var(--muted); text-decoration: none; }
  nav.top a:hover { color: var(--accent); }
  nav.top a[aria-current="page"] { color: var(--fg); font-weight: 600; }
  .page-head { padding: 40px 0 6px; }
  .page-head h1 { font-size: 1.9rem; margin: 0 0 8px; }
  .page-head p { color: var(--muted); margin: 0; }
  .more { margin-top: 20px; font-size: .95rem; }
  .more a { font-weight: 600; }
  .toc { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
  .toc a { display: inline-block; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px;
    background: var(--card); text-decoration: none; font-size: .88rem; }


  footer .fine { display: block; max-width: 640px; margin: 14px auto 0; font-size: .8rem; opacity: .8; }

  /* Client compatibility strip. Official marks (simple-icons, CC0) used nominatively to say which clients
     this works with - the tier under each name is what has actually been checked, not a badge. */
  ul.clients { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 10px;
    padding: 0; margin: 18px 0 0; list-style: none; }
  ul.clients li { display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 16px 14px; border-radius: var(--r); border: 1px solid var(--line); background: var(--card); text-align: center; }
  ul.clients li svg { width: 26px; height: 26px; fill: var(--fg); opacity: .85; }
  ul.clients li b { font-size: .95rem; }
  ul.clients li span { font-size: .76rem; color: var(--muted); }
  ul.clients li.meeting, ul.clients li.tools { border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
  ul.clients li.meeting svg, ul.clients li.tools svg { opacity: 1; fill: var(--accent); }
  ul.clients li.meeting span, ul.clients li.tools span { color: var(--accent); font-weight: 600; }

  /* Rendered from PRIVACY.md, so it is prose rather than the hand-built sections. */
  .prose { padding: 40px 20px 10px; }
  .prose h1 { font-size: 1.9rem; margin: 0 0 18px; }
  .prose h2 { font-size: 1.3rem; margin: 34px 0 12px; padding-top: 22px; border-top: 1px solid var(--line); }
  .prose h3 { font-size: 1.05rem; margin: 22px 0 6px; }
  .prose p, .prose li { color: var(--fg); }
  .prose ul, .prose ol { padding-left: 22px; }
  .prose li { margin: 6px 0; }
  .prose blockquote { margin: 18px 0; padding: 10px 16px; border-left: 3px solid var(--line); color: var(--muted); }
