/* TechWish — legal pages (terms / privacy / accessibility), Fresh Pop design */
:root {
  --bg: #fbf8f3; --ink: #1c2430; --blue: #1789b5; --orange: #ff6b4a;
  --yellow: #ffd23f; --muted: #46525f; --muted2: #7d8b99;
  --font-head: 'Suez One', Georgia, serif;
  --font-body: 'Assistant', 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a { color: var(--blue); font-weight: 700; }

.topbar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--bg); border-bottom: 3px solid var(--ink); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 20px; color: var(--ink); text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 10px; border: 2px solid var(--ink); }
.back { font-size: 15px; font-weight: 800; color: var(--ink); text-decoration: none; border: 2px solid var(--ink); border-radius: 10px; padding: 8px 16px; background: #fff; }

main { max-width: 780px; margin: 0 auto; padding: 32px 20px 60px; }
.doc { background: #fff; border: 2px solid var(--ink); border-radius: 18px; padding: clamp(22px, 4vw, 40px); box-shadow: 6px 6px 0 var(--yellow); }
h1 { font-family: var(--font-head); font-weight: 400; font-size: clamp(28px, 5vw, 38px); margin: 0 0 6px; }
.updated { color: var(--muted2); font-size: 14px; margin-bottom: 24px; }
h2 { font-family: var(--font-head); font-weight: 400; font-size: 22px; margin: 28px 0 10px; color: var(--blue); }
p, li { font-size: 16px; line-height: 1.8; color: var(--muted); }
strong { color: var(--ink); }
ul, ol { padding-inline-start: 22px; }
.callout { background: #f4fafd; border: 2px dashed var(--blue); border-radius: 12px; padding: 14px 18px; font-size: 15px; color: var(--muted); }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; font-size: 14px; }
.legal-nav a { border: 1.5px solid var(--ink); border-radius: 999px; padding: 6px 16px; background: #fff; text-decoration: none; color: var(--ink); }
footer.page { text-align: center; color: var(--muted2); font-size: 14px; padding: 24px 0 8px; }
