*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:3rem}

/* ── Theme tokens ── */
:root{
  --bg-body:#0a0e17;
  --bg-hero:#0d1420;
  --bg-card:#0d1117;
  --bg-input:#161b22;
  --bg-bar:#21262d;
  --border:#30363d;
  --border-hover:#30404d;
  --text-bright:#e6edf3;
  --text:#c9d1d9;
  --text-muted:#8b949e;
  --text-faint:#484f58;
  --accent:#58a6ff;
  --green:#3fb950;
  --green-bg:#238636;
  --green-bg-hover:#2ea043;
  --green-glow:rgba(35,134,54,.4);
  --red:#da3633;
  --red-hover:#f85149;
  --yellow:#d29922;
  --velvet:#c43b5c;
  --tag-bg:#161b22;
  --tag-border:#238636;
  --tag-hover-bg:#122117;
  --tag-glow:rgba(63,185,80,.15);
  --pre-hover-bg:#1a2332;
  --card-shadow:0 0 40px rgba(56,139,253,.06),0 8px 30px rgba(0,0,0,.4);
  --hl-tag:#7ee787;
  --hl-attr:#79c0ff;
  --hl-str:#a5d6ff;
  --hl-comment:#8b949e;
  --hl-kw:#ff7b72;
  --hl-fn:#d2a8ff;
  --hl-num:#79c0ff;
  color-scheme:dark;
}
[data-theme="light"]{
  --bg-body:#f5f6f8;
  --bg-hero:#ffffff;
  --bg-card:#ffffff;
  --bg-input:#f0f2f5;
  --bg-bar:#dde1e6;
  --border:#d0d7de;
  --border-hover:#b0b8c1;
  --text-bright:#1f2328;
  --text:#24292f;
  --text-muted:#656d76;
  --text-faint:#8b949e;
  --accent:#0969da;
  --green:#1a7f37;
  --green-bg:#1a7f37;
  --green-bg-hover:#2da44e;
  --green-glow:rgba(26,127,55,.2);
  --red:#cf222e;
  --red-hover:#a40e26;
  --yellow:#9a6700;
  --velvet:#a3324e;
  --tag-bg:#dafbe1;
  --tag-border:#1a7f37;
  --tag-hover-bg:#aceebb;
  --tag-glow:rgba(26,127,55,.12);
  --pre-hover-bg:#ddf4ff;
  --card-shadow:0 1px 3px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.05);
  --hl-tag:#116329;
  --hl-attr:#0550ae;
  --hl-str:#0a3069;
  --hl-comment:#6e7781;
  --hl-kw:#cf222e;
  --hl-fn:#8250df;
  --hl-num:#0550ae;
  color-scheme:light;
}

body{font-family:'Segoe UI',system-ui,sans-serif;background:var(--bg-body);color:var(--text);min-height:100vh;padding:0;transition:background .2s,color .2s}

/* ── Nav ── */
.site-nav{position:sticky;top:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:.5rem 1.5rem;background:var(--bg-card);border-bottom:1px solid var(--border);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);transition:background .2s,border-color .2s}
.nav-brand{font-family:'SF Mono','Fira Code',monospace;font-size:.85rem;font-weight:700;color:var(--text-bright);text-decoration:none;letter-spacing:-.01em;display:flex;align-items:center;gap:.45rem}
.nav-logo{width:20px;height:20px;color:var(--accent)}
.nav-links{display:flex;gap:.2rem}
.nav-links a{color:var(--text-muted);text-decoration:none;font-size:.75rem;font-weight:500;padding:.3rem .6rem;border-radius:5px;transition:all .15s}
.nav-links a:hover{color:var(--text);background:var(--bg-input)}
.burger{display:none;background:none;border:none;color:var(--text-muted);padding:.25rem;cursor:pointer;transition:color .15s}
.burger:hover{color:var(--text)}
.burger svg{width:16px;height:16px;fill:none}

/* ── Hero ── */
.hero{text-align:center;padding:2.5rem 1.5rem 2rem;background:linear-gradient(180deg,var(--bg-hero) 0%,var(--bg-body) 100%);position:relative}
.hero h1{color:var(--text-bright);font-size:2.2rem;font-weight:700;margin-bottom:.4rem;letter-spacing:-.02em}
.hero h1 span{color:var(--accent)}
.hero .sub{color:var(--text-muted);font-size:.95rem;margin-bottom:0;font-weight:400}
.hero .sub code{background:var(--bg-input);padding:.15rem .4rem;border-radius:4px;font-family:'SF Mono','Fira Code',monospace;font-size:.82rem;color:var(--accent)}

/* ── Nav right ── */
.nav-right{display:flex;align-items:center;gap:.8rem;position:relative}

/* ── Theme toggle ── */
.theme-btn{background:var(--bg-input);border:1px solid var(--border);color:var(--text-muted);padding:.35rem;border-radius:6px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}
.theme-btn:hover{color:var(--text);border-color:var(--border-hover)}
.theme-btn svg{width:15px;height:15px;fill:currentColor;display:none}
.theme-btn[data-current="system"] .theme-icon-system{display:block}
.theme-btn[data-current="light"] .theme-icon-light{display:block}
.theme-btn[data-current="dark"] .theme-icon-dark{display:block}

/* ── Scanner section ── */
.scanner-section{margin-bottom:3rem}
.scanner-card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1.5rem 1.5rem 1.2rem;transition:background .2s,border-color .2s}
.scanner-card .info{background:var(--bg-input);border:1px solid var(--border);color:var(--text-muted);padding:.55rem .9rem;border-radius:6px;margin-bottom:1.2rem;font-size:.78rem;line-height:1.5;transition:background .2s,border-color .2s}
.scanner-card .info b{color:var(--accent)}
.fld label{font-size:.65rem;color:var(--text-faint);display:block;margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.04em;font-weight:500}
.fld input{background:transparent;border:none;border-bottom:1px solid var(--border);color:var(--text);padding:.35rem .2rem;border-radius:0;font-size:.85rem;width:90px;transition:border-color .15s,color .2s;font-family:'SF Mono','Fira Code',monospace}
.fld input:focus{outline:none;border-bottom-color:var(--accent)}
button{padding:.45rem 1.1rem;border:none;border-radius:6px;font-size:.83rem;cursor:pointer;font-weight:600;transition:all .15s}
.scan-actions{margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.go{background:var(--green-bg);color:#fff;width:100%;padding:.7rem 1.8rem;font-size:1rem;letter-spacing:.02em;border-radius:8px}.go:hover{background:var(--green-bg-hover);box-shadow:0 0 16px var(--green-glow)}
.stop{background:var(--red);color:#fff;width:100%;padding:.7rem 1.8rem;font-size:1rem;border-radius:8px}.stop:hover{background:var(--red-hover);box-shadow:0 0 16px rgba(218,54,51,.3)}
/* Port selection */
.port-select{margin-bottom:1rem}
.port-select-label{font-size:.72rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.03em;font-weight:600;margin-bottom:.5rem}
.preset-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem}
.preset-btn{background:var(--bg-input);border:1px solid var(--border);border-radius:8px;padding:.6rem .75rem;cursor:pointer;text-align:left;transition:all .15s;display:flex;flex-direction:column;gap:.15rem}
.preset-btn:hover{border-color:var(--accent);background:var(--pre-hover-bg)}
.preset-btn.active{border-color:var(--accent);background:var(--pre-hover-bg);box-shadow:0 0 0 1px var(--accent)}
.preset-name{font-size:.82rem;font-weight:600;color:var(--text);line-height:1.2}
.preset-btn.active .preset-name{color:var(--accent)}
.preset-desc{font-size:.68rem;color:var(--text-muted);line-height:1.3}
.scan-config{display:flex;gap:1.5rem;flex-wrap:wrap;align-items:flex-end;margin-bottom:1rem}
.range-row{display:flex;gap:.7rem}
.config-row{display:flex;gap:.7rem}
.hidden{display:none!important}
@media(max-width:600px){
.preset-grid{grid-template-columns:repeat(2,1fr)}
.burger{display:block}
.nav-links{display:none;position:absolute;top:100%;right:0;background:var(--bg-card);border:1px solid var(--border);border-radius:0 0 8px 8px;flex-direction:column;padding:.4rem;min-width:130px;box-shadow:0 8px 24px rgba(0,0,0,.3)}
.nav-links.open{display:flex}
.nav-links a{padding:.45rem .7rem;font-size:.8rem;border-radius:5px}
}
.stats{display:flex;gap:.3rem;margin-bottom:.7rem;flex-wrap:wrap}
.st{background:transparent;border:none;padding:.4rem .6rem;min-width:70px;flex:1;text-align:center}
.st-l{font-size:.6rem;color:var(--text-faint);text-transform:uppercase;letter-spacing:.05em;font-weight:500}
.st-v{font-size:1.1rem;font-weight:700;color:var(--accent);margin-top:.15rem;font-family:'SF Mono','Fira Code',monospace}
.st-v.g{color:var(--green)}
.bar{width:100%;height:4px;background:var(--bg-bar);border-radius:3px;margin-bottom:1rem;overflow:hidden;transition:background .2s}
.bar-f{height:100%;background:linear-gradient(90deg,var(--green-bg),var(--green));border-radius:3px;transition:width .15s;width:0}
.sec{font-size:.82rem;color:var(--accent);margin-bottom:.4rem;font-weight:600}
.grid{display:flex;flex-wrap:wrap;gap:.35rem;min-height:28px}
.tag{background:var(--tag-bg);border:1px solid var(--tag-border);color:var(--green);padding:.25rem .6rem;border-radius:5px;font-family:'SF Mono','Fira Code',monospace;font-size:.78rem;display:inline-flex;align-items:center;gap:.35rem;cursor:pointer;text-decoration:none;transition:all .15s}
.tag:hover{background:var(--tag-hover-bg);border-color:var(--green);box-shadow:0 0 8px var(--tag-glow)}
.tag.has-body{border-color:var(--accent)}
.tag.has-body:hover{border-color:var(--accent);box-shadow:0 0 8px rgba(88,166,255,.2)}
.dot{width:5px;height:5px;background:var(--green);border-radius:50%;display:inline-block;flex-shrink:0}
.tag-favicon{width:14px;height:14px;border-radius:2px;flex-shrink:0;vertical-align:middle}
.tag-badge{font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:var(--accent);background:var(--bg-input);border:1px solid var(--accent);border-radius:3px;padding:.05rem .3rem;margin-left:.15rem;line-height:1.2}
.tag-peek{width:12px;height:12px;fill:var(--accent);flex-shrink:0;margin-left:.15rem;opacity:.6}
.tag.has-body:hover .tag-peek{opacity:1}
.tag-wrap{display:inline-flex}
.tag-cve-trigger{display:inline-flex;align-items:center;cursor:pointer;padding:.15rem}
.tag-cve-icon{width:12px;height:12px;fill:var(--velvet);flex-shrink:0}
.tag.has-cve{border-color:var(--velvet)}
.tag.has-cve:hover{box-shadow:0 0 8px rgba(196,59,92,.25)}
.cve-tip-row{display:flex;flex-direction:column;gap:.1rem;text-decoration:none;color:var(--text-muted);font-size:.72rem;line-height:1.35;padding:.35rem .5rem;border-radius:5px;transition:background .1s;font-family:'Segoe UI',system-ui,sans-serif}
.cve-tip-row:hover{background:var(--bg-input);text-decoration:none}
.cve-tip-row strong{color:var(--velvet);font-weight:700;font-size:.7rem}
.cve-tip-row span{color:var(--text-muted)}
.svc{color:var(--text-muted);font-size:.68rem}
.muted{color:var(--text-faint);font-size:.8rem}
.log{background:var(--bg-input);border:1px solid var(--border);border-radius:8px;padding:.7rem;margin-top:.8rem;max-height:200px;overflow-y:auto;font-family:'SF Mono','Fira Code',monospace;font-size:.73rem;color:var(--text-muted);transition:background .2s,border-color .2s}
.log .ok{color:var(--green);font-weight:600}
.log .hi{color:var(--accent)}
.log .wn{color:var(--yellow)}

/* ── Screenshot / results ── */
#scanResults{padding:.2rem}
.scan-result-footer{display:none;justify-content:space-between;align-items:center;padding:.6rem 0 0;margin-top:.6rem;border-top:1px solid var(--border);font-size:.68rem;color:var(--text-faint)}
.scan-result-footer.capturing{display:flex}
.result-brand{font-family:'SF Mono','Fira Code',monospace;font-weight:600}
.screenshot-btn{display:inline-flex;align-items:center;gap:.4rem;margin-top:.8rem;background:var(--bg-input);border:1px solid var(--border);color:var(--text-muted);padding:.4rem .8rem;border-radius:6px;font-size:.75rem;cursor:pointer;font-weight:500;transition:all .15s}
.screenshot-btn:hover{border-color:var(--accent);color:var(--accent)}
.screenshot-btn svg{width:14px;height:14px}

/* ── Landing page ── */
.landing{max-width:900px;margin:0 auto;padding:2rem 1.5rem 0}
.landing h2{color:var(--text-bright);font-size:1.3rem;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--bg-bar)}
.landing p{color:var(--text-muted);font-size:.85rem;line-height:1.65;margin-bottom:.8rem}
.landing a{color:var(--accent);text-decoration:none}
.landing a:hover{text-decoration:underline}

/* Embed / code examples */
.embed-section{margin-bottom:3rem}
.embed-section h3{color:var(--text);font-size:.95rem;margin-bottom:.5rem;margin-top:1.2rem}
.code-example{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1rem 1.2rem;margin-bottom:1rem;overflow-x:auto;transition:background .2s,border-color .2s;position:relative}
.copy-btn{position:absolute;top:.5rem;right:.5rem;background:var(--bg-input);border:1px solid var(--border);color:var(--text-muted);padding:.25rem .6rem;border-radius:5px;font-size:.68rem;cursor:pointer;font-weight:600;opacity:0;transition:all .15s;z-index:1}
.code-example:hover .copy-btn{opacity:1}
.copy-btn:hover{border-color:var(--accent);color:var(--accent)}
.copy-btn.copied{border-color:var(--green);color:var(--green)}
.code-example pre{margin:0;font-family:'SF Mono','Fira Code',monospace;font-size:.78rem;line-height:1.6;color:var(--text);white-space:pre;tab-size:2}
.code-output{background:#0d1117;border:1px solid #21262d;border-top:1px solid #21262d;border-radius:0 0 8px 8px;padding:1rem 1.4rem;margin-top:-1rem;margin-bottom:1rem;overflow-x:auto;position:relative}
.code-output::before{content:'Console';position:absolute;top:.5rem;right:.7rem;font-size:.58rem;text-transform:uppercase;letter-spacing:.06em;color:#484f58;font-family:'SF Mono','Fira Code',monospace;font-weight:600}
.code-output pre{margin:0;font-family:'SF Mono','Fira Code',monospace;font-size:.73rem;line-height:1.55;color:#8b949e;white-space:pre-wrap;word-break:break-word;tab-size:2}
.code-output .cm-hl{color:#6e7781}
.code-output .num-hl{color:#79c0ff}
.code-output .str-hl{color:#a5d6ff}
.code-output .kw-hl{color:#ff7b72}
.code-output .fn-hl{color:#d2a8ff}
.code-example+.code-output{border-radius:0 0 8px 8px}
.code-example:has(+.code-output){border-radius:8px 8px 0 0;margin-bottom:0}
/* API reference table */
.api-ref{margin-top:.5rem;margin-bottom:1rem;background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1rem 1.2rem;transition:background .2s,border-color .2s;overflow-x:auto;-webkit-overflow-scrolling:touch}
.api-ref table{width:100%;border-collapse:collapse;font-size:.8rem;min-width:0}
.api-ref th{text-align:left;padding:.5rem .7rem;color:var(--text-muted);font-size:.68rem;text-transform:uppercase;letter-spacing:.04em;border-bottom:1px solid var(--border);font-weight:600}
.api-ref td{padding:.45rem .7rem;border-bottom:1px solid var(--border);color:var(--text-muted);font-size:.8rem;line-height:1.5;vertical-align:top}
.api-ref td:first-child{white-space:nowrap}
@media(max-width:600px){.api-ref td:first-child{white-space:normal}.api-ref code{word-break:break-all}}
.api-ref code{background:var(--bg-input);padding:.1rem .35rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.75rem;color:var(--text)}
.api-options{margin-top:.6rem;font-size:.78rem;color:var(--text-muted);line-height:1.5}
.api-options code{background:var(--bg-input);padding:.1rem .35rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.73rem;color:var(--text)}

.code-example .tag-hl{color:var(--hl-tag)}
.code-example .attr-hl{color:var(--hl-attr)}
.code-example .str-hl{color:var(--hl-str)}
.code-example .cm-hl{color:var(--hl-comment)}
.code-example .kw-hl{color:var(--hl-kw)}
.code-example .fn-hl{color:var(--hl-fn)}
.code-example .num-hl{color:var(--hl-num)}

/* Features grid */
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1rem;margin-bottom:3rem}
.feature-card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1rem 1.2rem;transition:border-color .15s,background .2s}
.feature-card:hover{border-color:var(--border-hover)}
.feature-card h3{color:var(--text);font-size:.88rem;margin-bottom:.3rem}
.feature-card p{color:var(--text-muted);font-size:.8rem;line-height:1.5;margin-bottom:0}

/* How it works */
.how-it-works{margin-bottom:3rem}
.how-it-works ul{list-style:none;padding:0;margin:0}
.how-it-works li{color:var(--text-muted);font-size:.83rem;line-height:1.6;padding:.3rem 0;padding-left:1.2rem;position:relative}
.how-it-works li::before{content:'\203A';color:var(--accent);position:absolute;left:0;font-weight:700}
.how-it-works code{background:var(--bg-input);padding:.1rem .35rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.78rem;color:var(--text)}

/* Why this matters — incident cards */
.incidents{margin-bottom:3rem}
.incident{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1rem 1.2rem;margin-bottom:.8rem;transition:background .2s,border-color .2s}
.incident h3{color:var(--text);font-size:.88rem;margin-bottom:.35rem}
.incident p{color:var(--text-muted);font-size:.8rem;line-height:1.55;margin-bottom:.3rem}
.incident .src{font-size:.72rem}

/* FAQ */
.faq{margin-bottom:3rem}
.faq details{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;margin-bottom:.5rem;overflow:hidden;transition:background .2s,border-color .2s}
.faq summary{padding:.75rem 1rem;cursor:pointer;color:var(--text);font-size:.85rem;font-weight:600;list-style:none;display:flex;align-items:center;gap:.5rem}
.faq summary::before{content:'+';color:var(--accent);font-weight:700;font-size:1rem;flex-shrink:0;width:1rem;text-align:center}
.faq details[open] summary::before{content:'\2212'}
.faq summary::-webkit-details-marker{display:none}
.faq .faq-body{padding:0 1rem .85rem 2.5rem;color:var(--text-muted);font-size:.82rem;line-height:1.65}
.faq .faq-body code{background:var(--bg-input);padding:.1rem .35rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.76rem;color:var(--text)}

/* Response modal */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1000;justify-content:center;align-items:center;padding:1.5rem}
.modal-overlay.open{display:flex}
.modal{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;width:100%;max-width:700px;max-height:85vh;display:flex;flex-direction:column;overflow:hidden;box-shadow:0 16px 48px rgba(0,0,0,.4)}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;border-bottom:1px solid var(--border);gap:.75rem}
.modal-title{font-size:.9rem;font-weight:700;color:var(--text-bright);display:flex;align-items:center;gap:.5rem;min-width:0}
.modal-title img{width:16px;height:16px;border-radius:2px;flex-shrink:0}
.modal-actions{display:flex;align-items:center;gap:.5rem;flex-shrink:0}
.modal-link{font-size:.73rem;color:var(--accent);text-decoration:none;white-space:nowrap}
.modal-link:hover{text-decoration:underline}
.modal-close{background:none;border:none;color:var(--text-muted);font-size:1.3rem;cursor:pointer;padding:.1rem .4rem;line-height:1;border-radius:4px}
.modal-close:hover{color:var(--text);background:var(--bg-input)}
.modal-meta{padding:.5rem 1rem;font-size:.72rem;color:var(--text-muted);border-bottom:1px solid var(--border);display:flex;gap:1rem;flex-wrap:wrap}
.modal-meta span{display:inline-flex;align-items:center;gap:.3rem}
.modal-meta .meta-ok{color:var(--green)}
.modal-cves{padding:.5rem 1rem;border-bottom:1px solid var(--border);display:flex;flex-direction:column;gap:.35rem}
.cve-link{display:flex;align-items:flex-start;gap:.4rem;text-decoration:none;color:var(--text-muted);font-size:.75rem;line-height:1.4;padding:.25rem .4rem;border-radius:4px;transition:background .1s}
.cve-link:hover{background:var(--bg-input);text-decoration:none}
.cve-link svg{width:14px;height:14px;fill:var(--velvet);flex-shrink:0;margin-top:.1rem}
.cve-link strong{color:var(--velvet);font-weight:700}
.modal-body{flex:1;overflow:auto;padding:1rem;margin:0;font-family:'SF Mono','Fira Code',monospace;font-size:.75rem;line-height:1.55;color:var(--text);white-space:pre-wrap;word-break:break-word;background:var(--bg-input);border-radius:0;min-height:200px}

/* Tippy.js CVE tooltip theme */
.tippy-box[data-theme~='cve']{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;color:var(--text);box-shadow:0 8px 24px rgba(0,0,0,.35);padding:.3rem 0}
.tippy-box[data-theme~='cve'] .tippy-content{padding:.2rem .15rem}
.tippy-box[data-theme~='cve'] .tippy-arrow{color:var(--bg-card)}
.tippy-box[data-theme~='cve'][data-placement^='bottom'] .tippy-arrow::before{border-bottom-color:var(--border)}

/* Scan notice */
.scan-notice{padding:.6rem 1rem;background:rgba(210,153,34,.1);border:1px solid var(--yellow);border-radius:8px;color:var(--yellow);font-size:.78rem;line-height:1.5;margin-bottom:1rem}
.scan-notice svg{width:14px;height:14px;fill:var(--yellow);vertical-align:-2px;margin-right:.35rem}
.scan-notice code{background:var(--bg-input);padding:.1rem .3rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.75rem;color:var(--text)}
/* Privacy page */
.privacy-content h3{color:var(--text);font-size:.95rem;margin-top:1.5rem;margin-bottom:.4rem}
.privacy-content p{color:var(--text-muted);font-size:.83rem;line-height:1.65;margin-bottom:.6rem}
.privacy-content code{background:var(--bg-input);padding:.1rem .35rem;border-radius:3px;font-family:'SF Mono','Fira Code',monospace;font-size:.78rem;color:var(--text)}
.privacy-content ul{color:var(--text-muted);font-size:.83rem;line-height:1.65;margin:.4rem 0 .6rem 1.2rem}
.privacy-content li{margin-bottom:.2rem}

/* Footer */
.footer{text-align:center;padding:2rem 0 1.5rem;color:var(--text-faint);font-size:.75rem;border-top:1px solid var(--bg-bar);max-width:900px;margin:0 auto}
