/* Shared stylesheet for the standalone text pages (privacy, terms, security).
   These pages are English-only on purpose — see the design note in
   docs/superpowers/specs/2026-07-26-marketing-audit-compliance-design.md — so
   they carry no language switcher, and the type is set for reading rather than
   for selling. Tokens match the landing page. */
:root{
  --paper:#F1EEE8; --ink:#1E1A14; --pine:#2C2620;
  --amber:#C87A12; --stone:#79736A; --hair:#E1DBD1; --card:#F8F5EF;
  --f:-apple-system,"SF Pro Display",system-ui,"Segoe UI",Roboto,sans-serif;
}
*{box-sizing:border-box}
body{margin:0;background:var(--paper);color:var(--ink);font-family:var(--f);
     font-size:17px;line-height:1.72;-webkit-font-smoothing:antialiased}
.wrap{max-width:760px;margin:0 auto;padding:0 24px}

nav{border-bottom:1px solid var(--hair);background:rgba(241,238,232,.9);
    backdrop-filter:saturate(1.4) blur(12px);position:sticky;top:0;z-index:10}
.nav-in{display:flex;align-items:center;height:62px;gap:18px}
.brand{display:flex;align-items:center;gap:9px;font-weight:600;font-size:1.12rem;
       letter-spacing:-.01em;text-decoration:none;color:inherit}
.brand .dot{width:22px;height:22px;display:inline-block;background:no-repeat center/contain
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23C87A12'%3E%3Crect x='3' y='9' width='2.5' height='6' rx='1.25'/%3E%3Crect x='8' y='5' width='2.5' height='14' rx='1.25'/%3E%3Crect x='13' y='7' width='2.5' height='10' rx='1.25'/%3E%3Crect x='18' y='10' width='2.5' height='4' rx='1.25'/%3E%3C/g%3E%3C/svg%3E")}
nav .back{margin-left:auto;font-size:.92rem;color:var(--stone);text-decoration:none}
nav .back:hover{color:var(--ink)}

header.page{padding:clamp(44px,6vw,76px) 0 8px}
h1{font-size:clamp(2rem,4vw,2.9rem);font-weight:300;letter-spacing:-.02em;line-height:1.1;margin:0}
.updated{margin-top:14px;color:var(--stone);font-size:.9rem}
.lede{margin-top:22px;font-size:1.1rem;color:#40392f}

main{padding:8px 0 clamp(56px,8vw,96px)}
h2{font-size:1.35rem;font-weight:500;letter-spacing:-.01em;margin:44px 0 0}
h3{font-size:1.05rem;font-weight:600;margin:28px 0 0}
p{margin:14px 0 0}
ul{margin:14px 0 0;padding-left:22px}
li{margin:8px 0}
a{color:var(--amber)}
strong{font-weight:600}
code{font-family:"SF Mono",ui-monospace,Menlo,monospace;font-size:.88em;
     background:var(--card);border:1px solid var(--hair);border-radius:5px;padding:1px 5px}

/* Used where a claim is worth setting apart from the running text. */
.callout{margin-top:24px;background:var(--card);border:1px solid var(--hair);
         border-left:3px solid var(--amber);border-radius:12px;padding:20px 22px}
.callout p:first-child{margin-top:0}
.muted{color:var(--stone);font-size:.9rem}

/* Numbered steps. <ol> rather than <ul> because the order is the instruction. */
.steps{margin:14px 0 0;padding-left:24px}
.steps li{margin:10px 0;padding-left:4px}

/* Screenshots of the app. Captured at 2x, so they are declared at their pixel
   size and displayed at half — a Retina screen gets the full detail and a 1x
   screen downsamples rather than blurring. width/height are on the <img> to
   reserve the space before it loads and stop the text below jumping. */
.shot{margin:22px 0 0;text-align:center}
.shot img{width:100%;max-width:340px;height:auto;border-radius:12px;
          border:1px solid var(--hair);box-shadow:0 14px 34px rgba(44,38,32,.14)}
.shot.narrow img{max-width:250px}
/* Where the screenshot's own text is the point, 340px is too small to read —
   but full column width made the step images tower over the instructions they
   illustrate, so this is a middle setting rather than 100%. */
.shot.wide img{max-width:480px}
.shot figcaption{margin-top:10px;color:var(--stone);font-size:.88rem;
                 max-width:46ch;margin-inline:auto;text-align:left}

/* Keys are objects on screen, so they get an object's shape. */
kbd{font-family:var(--f);font-size:.86em;font-weight:600;line-height:1;
    display:inline-block;padding:3px 7px;margin:0 1px;border-radius:6px;
    background:var(--card);border:1px solid var(--hair);
    box-shadow:0 1.5px 0 var(--hair);color:var(--ink);white-space:nowrap}

/* An anchored heading landing underneath the sticky nav reads as a missing
   heading, so leave it room. */
h2[id],h3[id]{scroll-margin-top:84px}

table{width:100%;border-collapse:collapse;margin-top:18px;font-size:.95rem}
/* Key combinations must not break across lines: "⌃⇧" on one line and "Space"
   on the next is a different instruction. */
table.keys td:first-child{white-space:nowrap}
th,td{text-align:left;padding:11px 12px;border-bottom:1px solid var(--hair);vertical-align:top}
th{font-weight:600;background:var(--card)}

footer{border-top:1px solid var(--hair);padding:30px 0 44px;color:var(--stone);font-size:.9rem}
footer a{color:var(--stone)}
footer .links{display:flex;gap:18px;flex-wrap:wrap;margin-bottom:10px}
footer .links a{color:var(--ink);text-decoration:none}
footer .links a:hover{color:var(--amber)}

@media (prefers-color-scheme: dark){
  /* The landing page is light-only by decision, but a long legal document read at
     night is a different job — respect the reader's setting here. */
  :root{--paper:#1C1813; --ink:#EFEAE1; --hair:rgba(255,255,255,.12); --card:#2C2620; --stone:#9c948a}
  nav{background:rgba(28,24,19,.9)}
  .lede{color:rgba(239,234,225,.82)}
}
