/* Shared shell for the marketing and legal pages. The app has its own styles in the
   React bundle; these pages are plain HTML so they render with no JavaScript, which
   matters for the ones someone may need to read in a hurry or print. */

:root{--bg:#08080a;--surface:#141418;--line:#26262c;--text:#f6f6f8;--muted:#8e8a92;
      --dim:#b9b5bd;--accent:#ff2e88;--grad:linear-gradient(135deg,#ff2e88,#b14cff);
      --save:#16c47f;--warn:#ffb020}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);
     font:16px/1.65 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
     -webkit-font-smoothing:antialiased}
.wrap{max-width:760px;margin:0 auto;padding:0 22px}
.wide{max-width:1080px}
a{color:var(--accent)}

header{display:flex;align-items:center;justify-content:space-between;padding:22px 0}
.logo{font-size:22px;font-weight:800;letter-spacing:-.02em;text-decoration:none;
      color:var(--text)}
.logo img{height:72px;width:auto;display:block}
.logo span{background:var(--grad);-webkit-background-clip:text;background-clip:text;
           color:transparent;-webkit-text-fill-color:transparent}
.cta{display:inline-block;background:var(--grad);color:#fff;text-decoration:none;
     padding:12px 22px;border-radius:99px;font-weight:700;font-size:15px}

h1{font-size:clamp(30px,5vw,44px);line-height:1.08;letter-spacing:-.03em;
   font-weight:800;margin:36px 0 8px}
h2{font-size:clamp(19px,2.6vw,24px);letter-spacing:-.02em;font-weight:800;
   margin:44px 0 12px;scroll-margin-top:20px}
h3{font-size:17px;font-weight:700;margin:26px 0 8px}
p,li{color:var(--dim);font-size:16px}
p{margin:0 0 16px}
ul,ol{padding-left:22px;margin:0 0 16px}
li{margin-bottom:8px}
strong,b{color:var(--text)}
.updated{color:var(--muted);font-size:14px;margin:0 0 30px}

/* Anything the reader must not skim past. */
.callout{border:1px solid var(--line);border-left:3px solid var(--accent);
         background:var(--surface);border-radius:0 12px 12px 0;padding:16px 18px;
         margin:0 0 28px}
.callout p{margin:0;font-size:15.5px;color:var(--muted)}
.callout.warn{border-left-color:var(--warn)}

/* Table of contents on the longer documents. */
.toc{background:var(--surface);border:1px solid var(--line);border-radius:12px;
     padding:16px 20px;margin:0 0 34px}
.toc ol{margin:0;padding-left:20px}
.toc li{margin-bottom:5px;font-size:15px}
.toc a{text-decoration:none}
.toc a:hover{text-decoration:underline}

/* Forms (content removal, contact). */
label{display:block;font-size:14px;font-weight:700;color:var(--text);
      margin:0 0 6px}
.field{margin:0 0 16px}
input,textarea,select{width:100%;background:#0e0e12;border:1px solid var(--line);
       border-radius:10px;padding:12px 14px;color:var(--text);font:inherit;
       font-size:16px}
input:focus,textarea:focus,select:focus{outline:none;border-color:var(--accent)}
.hint{font-size:13px;color:var(--muted);margin:6px 0 0}
button.submit{background:var(--grad);color:#fff;border:0;border-radius:99px;
       padding:14px 30px;font-weight:700;font-size:16px;cursor:pointer;
       font-family:inherit}
button.submit:disabled{opacity:.55;cursor:default}
.status{margin-top:14px;font-size:15px}
.status.ok{color:var(--save)}
.status.bad{color:#ff5a5f}

/* Sitemap. */
.map{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:26px;
     margin:24px 0 0}
.map h3{margin-top:0}
.map ul{list-style:none;padding:0}
.map li{margin-bottom:9px}
.map a{text-decoration:none}
.map a:hover{text-decoration:underline}

/* The affiliation disclosure. Small, but on every page, because the one place a
   reader looks to check who runs a site is the bottom of it. */
footer{border-top:1px solid var(--line);margin-top:60px;padding:26px 0 50px;
       color:var(--muted);font-size:13.5px;line-height:1.6}
footer .links{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:16px}
footer .links a{text-decoration:none;color:var(--dim)}
footer .links a:hover{color:var(--text)}
footer .disclosure{max-width:760px}
.badge{display:inline-block;border:1px solid var(--accent);color:var(--accent);
       border-radius:5px;padding:1px 6px;font-size:12px;font-weight:700;
       margin-right:6px}
