/* Shared by /about/ and /contact/.
 *
 * A real stylesheet rather than a <style> block in each page: two documents
 * describing the same product should not be able to drift apart, and an
 * external file is cached across the two. It is served from `public/`, so it
 * ships untouched by the bundler and has no hashed name — which is what lets
 * both pages reference it by a stable path.
 *
 * The tokens are the app's own, from cashflow-app/src/styles.css. Copied rather
 * than imported because these pages load no JavaScript at all and must not pull
 * the bundle in to be styled. */
:root{
  --bg:#0f1216; --panel:#171b21; --panel2:#1d2229; --line:#2a313a;
  --text:#e7ebf0; --muted:#9aa4b0; --accent:#7bd389; --danger:#e5766b;
  --chk:#2491e6; --inv:#03886d;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);
     font:16px/1.65 ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif}
.wrap{max-width:44rem;margin:0 auto;padding:28px 20px 72px}
.top{display:flex;gap:6px;align-items:center;flex-wrap:wrap;
     border-bottom:1px solid var(--line);padding-bottom:8px;margin-bottom:24px}
/* Navigation and footer links are TAP TARGETS and get the full 44px, the same
   bar the app itself is held to — a 17px-tall link is a miss on a phone.
   Links inside prose are deliberately exempt: a 44px anchor mid-sentence would
   have to blow the line height apart to get there, and a reader tapping a word
   in a paragraph is aiming at the word. Same shape of exemption as the checkbox
   inside a full-width label in scripts/check-mobile.mjs. */
.top a,footer a{display:inline-flex;align-items:center;min-height:44px;
  padding:0 10px;border-radius:8px;text-decoration:none}
.top a:hover,footer a:hover{background:var(--panel)}
.brand{font-weight:650;color:var(--text);font-size:15px;margin-left:-10px}
.top nav{margin-left:auto;display:flex;flex-wrap:wrap}
.top nav a{color:var(--muted);font-size:14px}
.top nav a:hover,.top nav a[aria-current]{color:var(--text)}
h1{font-size:1.6rem;line-height:1.25;margin:0 0 .6rem;text-wrap:balance}
h2{font-size:1.05rem;margin:2rem 0 .5rem}
p{margin:0 0 1rem;color:var(--text)}
p.lede{color:var(--muted);font-size:1.05rem}
a{color:var(--chk)}
ul{margin:0 0 1rem;padding-left:1.15rem;color:var(--text)}
li{margin:.3rem 0}
strong{font-weight:650}
.card{background:var(--panel);border:1px solid var(--line);border-radius:11px;padding:18px 20px;margin:0 0 1.2rem}
.card h2{margin-top:0}
label{display:block;font-size:13px;color:var(--muted);margin:0 0 4px}
.field{margin:0 0 14px}
input,textarea,select{width:100%;font:inherit;font-size:16px;padding:9px 11px;border-radius:8px;
  background:var(--panel2);color:var(--text);border:1px solid var(--line)}
input:focus,textarea:focus{outline:2px solid var(--chk);outline-offset:1px;border-color:var(--chk)}
textarea{min-height:8.5rem;resize:vertical}
button{font:inherit;font-size:15px;font-weight:600;padding:11px 20px;border-radius:8px;border:0;
  background:var(--chk);color:#06121d;cursor:pointer}
button:hover{filter:brightness(1.08)}
.hint{font-size:13px;color:var(--muted);margin:-6px 0 14px}
/* The honeypot. Off-screen rather than display:none — some bots skip hidden
   fields but fill positioned ones, and a real person never reaches it because
   it is removed from the tab order and hidden from assistive technology. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
footer{margin-top:2.5rem;padding-top:6px;border-top:1px solid var(--line);
       color:var(--muted);font-size:13.5px;display:flex;align-items:center;
       flex-wrap:wrap;gap:2px}
footer a{color:var(--muted);margin-left:-10px}
footer a+a{margin-left:0}
@media (max-width:520px){ .wrap{padding:20px 16px 56px} h1{font-size:1.4rem} }
