/* Customer pages stylesheet. Moved out of templates/customer/base.html and guide.html on 2026-09-20 so the
   /faq and /guides pages can carry a strict Content-Security-Policy with no 'unsafe-inline'. Palette/fonts/assets
   still come from /brand/brand.css. */
/* Layout only — palette/fonts/assets come from /brand/brand.css */
:root { --ink:var(--brand-ink); --muted:var(--brand-muted); --line:var(--brand-line);
        --accent:var(--brand-orange); --accent-dark:var(--brand-orange-tint);
        --bg:var(--brand-bg); --warn-bg:#fff8ed; --warn-ink:#8a5a00; }
* { box-sizing:border-box; }
body { margin:0; font:16px/1.55 var(--brand-font-body); font-weight:500; color:var(--ink); background:var(--bg); }
header { background:#fff; border-bottom:1px solid var(--line); }
header .wrap { max-width:860px; margin:0 auto; padding:16px 20px; display:flex; align-items:center; gap:14px; }
header .brand { display:block; width:212px; height:38px;
  background:var(--brand-wordmark) no-repeat left center / contain; text-indent:-9999px; }
header .tag { color:var(--muted); font-family:var(--brand-font-mono); font-size:12px;
  letter-spacing:.12em; text-transform:uppercase; margin-left:auto; }
main { max-width:860px; margin:34px auto 60px; padding:0 20px; }
h1 { font-size:26px; margin:0 0 6px; letter-spacing:-.01em; }
.sub { color:var(--muted); margin:0 0 26px; }
.card { background:#fff; border:1px solid var(--line); border-radius:12px; padding:26px 28px; margin-bottom:22px; }
label.field { display:block; font-weight:650; font-size:14px; margin:20px 0 6px; }
label.field .why { font-weight:400; color:var(--muted); }
input[type=file], select, input[type=number], textarea {
  width:100%; max-width:460px; padding:10px 12px; border:1px solid var(--line); border-radius:8px; font:inherit; background:#fff; }
input[type=number] { max-width:120px; }
.opt { display:flex; gap:10px; align-items:flex-start; font-size:15px; margin:8px 0; }
.opt input { margin-top:3px; }
.fee { display:inline-block; background:var(--warn-bg); color:var(--warn-ink); border-radius:6px;
       padding:1px 8px; font-size:13px; font-weight:600; margin-left:6px; }
.unavail { color:var(--muted); font-size:13px; }
button.cta { background:var(--accent); color:#fff; border:0; border-radius:9px; padding:13px 26px;
             font:inherit; font-size:17px; font-weight:700; cursor:pointer; }
button.cta:hover { background:var(--accent-dark); }
button.ghost { background:#fff; color:var(--ink); border:1px solid var(--line); border-radius:9px;
               padding:11px 20px; font:inherit; font-weight:600; cursor:pointer; }
.slider-block { margin:18px 0 6px; max-width:520px; }
.slider-block .setting-name { font-weight:650; font-size:14px; }
.slider-block .current { color:var(--accent); font-weight:650; font-size:15px; min-height:22px; margin:2px 0 4px; }
.slider-block input[type=range] { width:100%; accent-color:var(--accent); }
.slider-ends { display:flex; justify-content:space-between; color:var(--muted); font-size:13px; }
.helper { color:var(--muted); font-size:13.5px; margin:6px 0 0; max-width:520px; }
.price-hero { font-size:40px; font-weight:800; letter-spacing:-.02em; margin:2px 0 2px; }
.bd { width:100%; border-collapse:collapse; margin-top:14px; }
.bd td { padding:9px 4px; border-bottom:1px solid var(--line); }
.bd td:last-child { text-align:right; font-variant-numeric:tabular-nums; white-space:nowrap; }
.bd tr:last-child td { border-bottom:0; font-weight:750; }
.note { background:var(--warn-bg); color:var(--warn-ink); border-radius:8px; padding:10px 14px; font-size:14px; margin:14px 0; }
footer { color:var(--muted); font-size:13px; text-align:center; padding:26px 0 40px; }
.testbar { background:#7c3aed; color:#fff; text-align:center; font-weight:700; font-size:13px;
           letter-spacing:.04em; padding:7px 12px; position:sticky; top:0; z-index:50; }
@media (max-width:640px){ .price-hero{font-size:32px;} .card{padding:20px;} }
footer a { color:inherit; }
.prose { line-height:1.7; }
.muted { color:var(--muted); }
.crumbs { margin-bottom:6px; }
.crumbs a { color:inherit; }
.center { text-align:center; }
.glist h2 { margin:0 0 6px; font-size:20px; }
.glist h2 a { color:inherit; }
.glist .desc { color:var(--muted); margin:0 0 8px; }
.glist .date { color:var(--muted); font-size:13px; margin:0; }
.notice-card { text-align:center; padding:44px 30px; }
.notice-msg { color:var(--muted); max-width:520px; margin:10px auto 22px; }
/* --- guide article --- */
  /* guide typography on the brand tokens; comparisons are REAL tables */
  .guide h2 { font-size:22px; margin:30px 0 8px; letter-spacing:-.01em; }
  .guide h3 { font-size:17px; margin:22px 0 6px; }
  .guide p, .guide li { font-size:16px; line-height:1.65; }
  .guide table { border-collapse:collapse; width:100%; margin:16px 0; font-size:15px; }
  .guide th, .guide td { border:1px solid var(--line); padding:8px 10px; text-align:left; vertical-align:top; }
  .guide th { background:#F3F2F0; font-weight:650; }
  .guide tr:nth-child(even) td { background:#FAFAF9; }
  .guide img { max-width:100%; height:auto; border-radius:8px; border:1px solid var(--line); }
  .guide blockquote { border-left:3px solid var(--accent); margin:14px 0; padding:4px 14px; color:#4a4d53; }
  @media (max-width:640px) { .guide table { display:block; overflow-x:auto; } }
