/* Shared by /privacy, /terms and /support.
 *
 * Same ground and the same tokens as the catalogue. These pages are footer
 * links from every surface on the origin, so they cannot be the one cream page
 * left. Extracted from privacy.html when terms and support joined it, because
 * three copies of a stylesheet is three places for them to drift apart.
 */
:root{
  --bg:#06110F;
  --panel:rgba(14,38,34,.5);
  --line:rgba(244,216,160,.14);
  --ink:#F3F8F6; --ink-2:#A9C6C0; --ink-3:#72918B;
  --emerald-2:#74D9B3; --gold:#F4D8A0; --gold-2:#E3B15C;
  --display:'Fraunces',Georgia,'Times New Roman',serif;
  --sans:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:clip;max-width:100%}
body{
  font-family:var(--sans);background:var(--bg);color:var(--ink);
  line-height:1.62;-webkit-font-smoothing:antialiased;
  background-image:
    radial-gradient(900px 520px at 50% -6%,rgba(42,183,165,.14),transparent 62%),
    radial-gradient(760px 480px at 90% 40%,rgba(227,177,92,.07),transparent 58%);
  background-attachment:fixed;
}
:focus-visible{outline:2px solid var(--emerald-2);outline-offset:3px;border-radius:6px}
.wrap{min-height:100vh;display:flex;flex-direction:column}
main{flex-grow:1;padding:clamp(2.5rem,7vw,4.5rem) 1.5rem;max-width:800px;margin:0 auto;width:100%}

h1{font-family:var(--display);font-size:clamp(2rem,5vw,2.75rem);font-weight:700;color:var(--gold);
  letter-spacing:-.025em;margin-bottom:.5rem;text-wrap:balance}
.last-updated{color:var(--ink-3);font-size:.95rem;margin-bottom:2.5rem}
h2{font-family:var(--display);font-size:1.4rem;font-weight:700;margin:2.5rem 0 1rem;color:var(--ink);
  letter-spacing:-.015em;text-wrap:balance}
h3{font-size:1.03rem;font-weight:700;margin:1.8rem 0 .6rem;color:var(--ink)}
p{margin-bottom:1.25rem;font-size:1.03rem;color:var(--ink-2);text-wrap:pretty}
p strong{color:var(--ink);font-weight:700}
ul,ol{margin-bottom:1.25rem;padding-left:1.5rem;font-size:1.03rem;color:var(--ink-2)}
li{margin-bottom:.5rem}
li::marker{color:var(--ink-3)}
a{color:var(--emerald-2);text-decoration:none;font-weight:500;border-bottom:1px solid rgba(116,217,179,.28)}
a:hover{color:#9BE8CC;border-bottom-color:var(--emerald-2)}

/* The summary box at the top of each document. People do not read policies;
   they skim for the answer to one question. This is that answer. */
.summary{
  border:1px solid var(--line);background:var(--panel);
  padding:clamp(18px,3vw,26px);margin-bottom:2.5rem;
}
.summary h2{margin-top:0;font-size:1.15rem}
.summary p:last-child,.summary ul:last-child{margin-bottom:0}

table{width:100%;border-collapse:collapse;font-size:.95rem;margin-bottom:1.5rem}
caption{text-align:left;color:var(--ink-3);font-size:.9rem;padding-bottom:.6rem}
th,td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line);vertical-align:top;color:var(--ink-2)}
th{color:var(--ink-3);font-weight:600;font-size:.85rem;letter-spacing:.03em}
td:first-child{color:var(--ink)}
.scroll{overflow-x:auto}

.back-link{
  display:inline-flex;align-items:center;gap:8px;margin-top:3rem;font-weight:700;min-height:48px;
  color:var(--gold);border:1px solid var(--line);border-bottom-color:var(--line);
  border-radius:12px;padding:11px 20px;background:rgba(244,216,160,.05);
}
.back-link:hover{color:#FFF3D8;background:rgba(244,216,160,.11);border-color:rgba(244,216,160,.26)}

footer{
  text-align:center;padding:2.5rem 1.5rem;color:var(--ink-3);font-size:.9rem;
  background:var(--panel);border-top:1px solid var(--line);
}
footer a{color:var(--ink-2);border-bottom-color:rgba(169,198,192,.24)}
footer a:hover{color:var(--emerald-2)}
footer .links{margin-top:1rem;display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;font-size:.9rem}

@media (prefers-reduced-motion: reduce){*{animation:none!important;transition:none!important}}
