/* Vionaut legal + compliance pages (D6-a).
   Self-contained: no external fonts, no CDN, no third-party requests — these
   pages must load for a Play reviewer with no network dependencies and must
   not themselves set cookies or run analytics. */

:root {
  --flame: #ff521b;
  --prussian: #020122;
  --bg: #fbfaf8;
  --card: #ffffff;
  --muted: #6b6b78;
  --line: rgba(2, 1, 34, 0.09);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--prussian);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 22px 96px;
}

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

header.site .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.4px;
  text-decoration: none;
  color: var(--prussian);
}
.brand span { color: var(--flame); }

nav.site a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  margin-left: 18px;
}
nav.site a:hover { color: var(--flame); }

h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 8px 0 6px;
}

h2 {
  font-size: 21px;
  letter-spacing: -0.3px;
  margin: 40px 0 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

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

.lede {
  font-size: 18px;
  color: #33333f;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--flame);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 30px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15.5px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th { background: rgba(255, 82, 27, 0.06); font-weight: 600; }
tr:last-child td { border-bottom: 0; }

.scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

ul, ol { padding-left: 22px; }
li { margin: 7px 0; }

code {
  background: rgba(2, 1, 34, 0.06);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.9em;
}

.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0;
}

.callout.warn { border-left: 3px solid var(--flame); }

.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 0 44px;
  margin: 18px 0;
}
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: 1px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--flame);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-block;
  background: var(--flame);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  margin: 6px 0;
}

footer.site {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14.5px;
  padding: 26px 22px 60px;
  max-width: 720px;
  margin: 0 auto;
}
footer.site a { color: var(--muted); margin-right: 16px; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
  .wrap { padding: 22px 18px 72px; }
}
