/* Task Job — document pages (/privacy, /support).
   A shared file rather than a third copy of install.html's inline block: these two pages are
   the same kind of page, they will be joined by a third the day terms of service are written,
   and a policy that looks like a different product than the page beside it reads as untrustworthy.
   install.html keeps its own inline CSS — it is a different layout (device cards, install
   buttons) and rewriting it to share this would be a change with no reader-visible payoff.
   Tokens are app.css's, copied rather than imported: these pages must render before any
   third-party font or the app bundle, and @import would serialise a round trip in front of them. */
:root{
  --ink:#16181b; --ink2:#5c656e; --muted:#8a929b; --faint:#98a2b3; --line:#e0e5ea;
  --bg:#eff3f8; --card:#fff; --blue:#1b4fd1; --blue-soft:#eef3fc; --blue-deep:#20407f;
  --green:#2f9e6b; --green-soft:#eafaf1; --coral:#f4564a;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:var(--bg);color:var(--ink);-webkit-font-smoothing:antialiased;font-size:16px;
  font-family:'Suwannaphum',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif}
a{color:var(--blue)}
a:hover{text-decoration:none}

.wrap{max-width:720px;margin:0 auto;padding:34px 20px 72px}
.brand{display:flex;align-items:center;gap:12px;margin-bottom:26px}
.brand img{width:46px;height:46px;border-radius:13px;display:block}
.brand b{font-size:17px;letter-spacing:-.2px}
.brand span{display:block;font-size:13px;color:var(--muted);font-weight:400}
.brand a{color:inherit;text-decoration:none}

h1{font-size:32px;line-height:1.15;margin:0 0 10px;letter-spacing:-.5px}
.sub{color:var(--ink2);font-size:16.5px;line-height:1.6;margin:0 0 8px}
.stamp{font-size:13px;color:var(--muted);margin:0 0 26px}

/* The summary a reader actually reads before deciding whether to read the rest. */
.tldr{background:var(--blue-soft);border-radius:16px;padding:18px 20px;margin:0 0 28px;
  font-size:15px;line-height:1.6;color:var(--blue-deep)}
.tldr h2{font-size:14px;text-transform:uppercase;letter-spacing:.07em;margin:0 0 8px;color:var(--blue)}
.tldr ul{margin:0;padding-left:20px}
.tldr li{margin-bottom:5px}
.tldr li:last-child{margin-bottom:0}

.card{background:var(--card);border-radius:20px;padding:22px 24px;margin-bottom:16px;
  box-shadow:0 2px 10px rgba(16,24,40,.05),0 0 0 1px var(--line)}
.card h2{font-size:19px;margin:0 0 10px;letter-spacing:-.2px;display:flex;align-items:center;gap:9px}
.card h2 .ic{font-size:20px;flex:none}
.card h3{font-size:15px;margin:18px 0 6px;color:var(--ink)}
.card h3:first-of-type{margin-top:12px}
.card p{font-size:15px;line-height:1.65;color:var(--ink2);margin:0 0 12px}
.card p:last-child{margin-bottom:0}
.card ul{margin:0 0 12px;padding-left:20px;font-size:15px;line-height:1.65;color:var(--ink2)}
.card li{margin-bottom:6px}
.card li:last-child{margin-bottom:0}
.card b,.card strong{color:var(--ink)}

/* Never / no-data statements. Green because "we do not do this" is the reassuring half. */
.never{background:var(--green-soft);border-radius:14px;padding:14px 16px;font-size:14.5px;
  line-height:1.6;color:#1e6b48;margin:4px 0 0}
.never b{color:#14512f}


.qa{border-top:1px solid var(--line);padding:15px 0 0;margin:15px 0 0}
.qa:first-of-type{border-top:none;padding-top:0;margin-top:6px}
.qa b{display:block;font-size:15.5px;margin-bottom:5px;color:var(--ink)}
.qa p{margin:0}

/* ---------- the public contact form ---------- */
form label{display:block;font-size:13.5px;font-weight:600;color:var(--ink2);margin:0 0 12px}
form input,form textarea{display:block;width:100%;margin-top:5px;border:1.5px solid var(--line);
  border-radius:12px;padding:12px 13px;font:inherit;font-size:16px;background:var(--card);
  color:var(--ink);outline:none;-webkit-appearance:none}
form textarea{resize:vertical;min-height:110px;line-height:1.5}
form input:focus,form textarea:focus{border-color:var(--blue)}
.row{display:flex;gap:12px}
.row label{flex:1;min-width:0}
@media(max-width:430px){ .row{display:block} }
/* Off-screen rather than display:none — a bot reading the DOM fills what it can see in the
   markup, and a field that is not rendered at all is the one they learn to skip. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.formmsg{margin:12px 0 0;font-size:14px;line-height:1.5;font-weight:600}
.formmsg.ok{color:var(--green)}
.formmsg.bad{color:var(--coral)}
/* ---- buttons: the spinning-border pill ----
   Ported from the landing page (public/index.html:196-244). Siblings of this copy: index.html,
   register.html, install.html and css/app.css — there is no shared stylesheet to hold one
   definition, because deploy.sh:78-86 can only cache-bust files it names by hand and a new /css
   file that is missed is pinned at Cloudflare's edge for a decade. Change one, look at the others.

   This file is loaded by support.html, privacy.html and delete-account.html, none of which load
   i18n.js — so there is no lang-km class here and no Khmer reset is needed, unlike every other
   copy. If a translator is ever added to these pages, copy index.html:163 with it.

   Full-bleed blocks, not inline pills, so the surface is a flex child at width:100%. The colour
   assignment is unchanged — .blue stays the loud one. */
@keyframes spin{to{transform:rotate(360deg)}}
.btn{
  --bd:#27272a;                   /* zinc-800: the static rim */
  --from:#27272a;--to:#09090b;    /* zinc-800 -> zinc-950: the surface */
  --label:#a1a1aa;--label-h:#fff; /* zinc-400, lifting to white */
  --beam:#ffffff;
  --glow:rgba(9,9,11,.30);
  position:relative;display:flex;width:100%;margin-top:4px;
  padding:1px;border-radius:999px;background:var(--bd);
  overflow:hidden;isolation:isolate;border:none;cursor:pointer;text-decoration:none;
  transition:transform .3s ease, box-shadow .3s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 0 25px var(--glow)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:2px solid var(--blue);outline-offset:3px}
.btn::before{
  content:"";position:absolute;inset:-100%;z-index:0;opacity:0;transition:opacity .3s ease;
  background:conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 75%, var(--beam) 100%);
}
.btn:hover::before{opacity:1;animation:spin 3s linear infinite}
.btn .s{
  position:relative;z-index:1;flex:1;display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border-radius:999px;padding:15px;
  background:linear-gradient(to bottom,var(--from),var(--to));
  color:var(--label);font-size:12px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.3);transition:color .3s ease;
}
.btn:hover .s{color:var(--label-h)}
.btn .arr{flex:none;transition:transform .3s ease}
.btn:hover .arr{transform:translateX(2px)}
/* The support form disables its own submit for the length of the request. A disabled button has
   to stop the whole treatment, not just dim: a beam racing round a button that has stopped
   listening reads as a hang rather than as progress. */
.btn[disabled]{opacity:.55;cursor:default}
.btn[disabled]:hover{transform:none;box-shadow:none}
.btn[disabled]:hover::before{opacity:0;animation:none}
.btn.blue{--bd:#5b95e9;--from:#4b8ae6;--to:var(--blue);--label:rgba(255,255,255,.88);--label-h:#fff;--glow:rgba(34,106,214,.42)}
@media(prefers-reduced-motion:reduce){
  .btn:hover{transform:none}
  .btn:hover::before{animation:none}
}

.foot{text-align:center;font-size:13.5px;color:var(--muted);margin-top:28px;line-height:1.9}
.foot a{color:var(--ink);font-weight:600;text-decoration:none}
.foot a:hover{text-decoration:underline}

@media(max-width:430px){
  .wrap{padding:26px 16px 56px}
  h1{font-size:27px}
  .card{padding:19px 18px;border-radius:17px}
}
