/* Shared by the Yestara paperwork pages: privacy, terms, account deletion.
 *
 * Kept a document first: comfortable to read carefully, print, or send to a
 * lawyer. It borrows the landing page's type and colours so the site reads
 * as one place, and follows the reader's light or dark setting. The fonts
 * fall back to Georgia and the system sans if they cannot load. */

:root {
  --ink: #241F1A;
  --muted: #6B6259;
  --rule: #E6DDCE;
  --accent: #A85D2E;
  --paper: #F7F1E8;
  --panel: #EFE7D9;
  --on-accent: #fff;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #F3EDE2;
    --muted: #AFA495;
    --rule: #3A332A;
    --accent: #E9A77E;
    --paper: #16130F;
    --panel: #1F1B15;
    --on-accent: #16130F;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 720px; margin: 0 auto; }

header { padding: 56px 0 8px; }

.brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.3px;
  margin: 0;
}

.brand a { color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }

.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--muted);
  margin: 4px 0 0;
}

h1 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 40px 0 6px;
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  margin: 40px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
}

h3 { font-size: 16px; margin: 26px 0 6px; }

.updated { color: var(--muted); font-size: 14px; margin: 0 0 8px; }

p { margin: 0 0 14px; }

ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 7px; }
li::marker { color: var(--accent); }

a { color: var(--accent); }

strong { font-weight: 650; }

table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 15px; }
th {
  text-align: left; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--muted);
  border-bottom: 2px solid var(--ink); padding: 8px 10px 6px;
}
td { padding: 9px 10px; border-bottom: 1px solid var(--rule); vertical-align: top; }

.panel {
  background: var(--panel);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 0 0 20px;
}
.panel p:last-child { margin-bottom: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -1px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

footer {
  max-width: 720px; margin: 64px auto 0; padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted); font-size: 14px;
}
footer a { margin-right: 18px; }
