/* Shared styling for the terms and privacy pages.
   Deliberately plain: legal copy has to be read, not admired. Same palette and
   type as the site so it does not feel like a different company, but no sky, no
   glass, no motion — nobody wants a cinematic privacy policy. */

:root{
  --ink:#F4F6FB;
  --dim:#B9C2D6;
  --gold:#F2A950;
  --sky:#7FB4E8;
  --bg:#0A1220;
  --line:rgba(210,230,255,.14);
}
*{margin:0; padding:0; box-sizing:border-box}
body{
  font-family:'Inter',-apple-system,'Segoe UI',system-ui,sans-serif;
  background:var(--bg); color:var(--ink);
  -webkit-font-smoothing:antialiased; line-height:1.65;
}
.mono{font-family:'JetBrains Mono','Cascadia Code',ui-monospace,Consolas,monospace}
a{color:var(--sky)}
a:hover{color:var(--gold)}

.doc{max-width:760px; margin:0 auto; padding:clamp(30px,6vw,72px) clamp(20px,5vw,32px) 96px}

.top{display:flex; align-items:center; gap:10px; margin-bottom:46px;
  padding-bottom:26px; border-bottom:1px solid var(--line)}
.top .mark{width:24px; height:24px; flex:none; display:block; color:var(--ink)}
.top b{font-weight:800; letter-spacing:-.02em; font-size:16px}
.top .back{margin-left:auto; font-size:13px}

h1{font-size:clamp(30px,5vw,44px); font-weight:700; letter-spacing:-.035em; line-height:1.08}
.updated{font-size:12px; letter-spacing:.14em; color:var(--dim); text-transform:uppercase; margin-top:14px}
.lede{font-size:16.5px; color:var(--dim); margin-top:22px}

h2{font-size:20px; font-weight:700; letter-spacing:-.02em; margin:44px 0 12px}
h2 span{color:var(--gold); margin-right:10px; font-size:14px}
p{margin:0 0 14px; color:var(--dim); font-size:15.5px}
p strong{color:var(--ink); font-weight:600}
ul{margin:0 0 16px 20px; color:var(--dim); font-size:15.5px}
li{margin-bottom:8px}

.note{
  border:1px solid var(--line); border-left:3px solid var(--gold);
  border-radius:10px; padding:18px 20px; margin:26px 0;
  background:rgba(255,255,255,.03);
}
.note p:last-child{margin-bottom:0}

footer{margin-top:64px; padding-top:26px; border-top:1px solid var(--line);
  font-size:13px; color:var(--dim)}
footer a{margin-right:18px}
