:root {
  --o-brand: #714B67;
  --o-brand-dark: #5d3e55;
  --o-view: #f8f7f5;
  --o-sheet: #fff;
  --o-text: #212529;
  --o-muted: #5f5a5c;
  --o-border: #d5d0ce;
  --o-row: #f0eeef;
  --o-ent: #875a7b;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font: 15px/1.5 Roboto, "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
  color: var(--o-text);
  background: var(--o-view);
}
a { color: var(--o-brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.systray {
  background: var(--o-brand);
  color: #fff;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.systray a { color: #fff; text-decoration: none; }
.systray .brand { font-size: 16px; font-weight: 500; margin-right: 8px; }
.systray nav { display: flex; gap: 16px; margin-left: auto; font-size: 13px; }
.systray nav a { opacity: 0.95; }
.systray nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.page { width: min(680px, calc(100% - 40px)); margin: 0 auto; padding: 40px 0 72px; }
.page h1 { font-size: 26px; font-weight: 500; margin: 0 0 14px; line-height: 1.25; }
.page h2 { font-size: 16px; font-weight: 500; margin: 28px 0 8px; }
.page p, .page li { color: var(--o-text); }
.page p.lead { font-size: 16px; max-width: none; }
.page p.quiet { color: var(--o-muted); font-size: 14px; }
.cta {
  display: inline-block;
  background: var(--o-brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--o-brand-dark);
}
.cta:hover { text-decoration: none; filter: brightness(0.96); }
dl.facts { margin: 28px 0 0; border-top: 1px solid var(--o-border); }
dl.facts div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--o-border);
}
dl.facts dt { font-weight: 500; color: var(--o-text); }
dl.facts dd { margin: 0; color: var(--o-muted); }
table.apps {
  width: 100%;
  border-collapse: collapse;
  background: var(--o-sheet);
  font-size: 13px;
}
table.apps th, table.apps td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--o-border);
}
table.apps th { color: var(--o-muted); font-weight: 500; background: #f3f2f1; }
table.apps td.num { text-align: right; font-variant-numeric: tabular-nums; }
.foot {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 40px;
  color: var(--o-muted);
  font-size: 12px;
  border-top: 1px solid var(--o-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  dl.facts div { grid-template-columns: 1fr; gap: 4px; }
}
