/* Site footer. Shared by the home page and the legal pages so the two never
   drift apart; the text itself comes from content/site.json. */
.site-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}
.site-footer .foot-links vent-logo { flex-shrink: 0; }
.site-footer .foot-links a {
  font: 600 13px 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.62);
  text-decoration: none;
}
.site-footer .foot-links a:hover { color: #b98af7; }
.site-footer .foot-disclaimer {
  font: 400 12.5px/1.65 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.38);
  max-width: 780px;
}
.site-footer .foot-disclaimer strong { color: rgba(255,255,255,.6); font-weight: 600; }
.site-footer .foot-copy {
  font: 400 12px 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.28);
}

/* --- Cookie consent banner. Shared by every page; markup is injected by
   /static/consent.js. Reject and Accept are deliberately the same size,
   padding and font weight — the AEPD treats a de-emphasised reject button as
   the single most commonly fined defect. --- */
.cc-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 18px;
  background: #16161a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.cc-banner.cc-in { opacity: 1; transform: none; }
.cc-banner .cc-text {
  flex: 1 1 300px;
  font: 400 12.5px/1.6 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.62);
}
.cc-banner .cc-text strong { color: rgba(255,255,255,.92); font-weight: 600; }
.cc-banner .cc-text a { color: #b98af7; }
.cc-banner .cc-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cc-banner .cc-btn {
  font: 600 13px 'Inter', system-ui, sans-serif;
  padding: 9px 20px;
  min-width: 104px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
}
.cc-banner .cc-reject {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.cc-banner .cc-reject:hover { background: rgba(255,255,255,.15); }
.cc-banner .cc-accept { background: #b98af7; color: #17111f; }
.cc-banner .cc-accept:hover { background: #c9a2fa; }
.cc-banner .cc-btn:focus-visible { outline: 2px solid #b98af7; outline-offset: 2px; }
@media (max-width: 520px) {
  .cc-banner { flex-direction: column; align-items: stretch; }
  .cc-banner .cc-actions { justify-content: stretch; }
  .cc-banner .cc-btn { flex: 1; }
}

/* --- Legal document pages. The per-page <style> block covers body/h1/h2/p;
   these are the extras the policy text needs (tables, lists, definitions).
   Kept here so the three pages can't drift apart. --- */
.doc h3 {
  font: 600 15px/1.4 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,.82);
  margin: 22px 0 8px;
}
.doc ul { margin: 0 0 14px; padding-left: 20px; }
.doc li { margin: 0 0 7px; }
.doc li strong { color: rgba(255,255,255,.82); font-weight: 600; }
.doc code {
  font: 400 12.5px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 5px;
  padding: 1px 5px;
  color: rgba(255,255,255,.8);
}
.doc .updated {
  font: 400 12.5px 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.34);
  margin: 0 0 26px;
}
.doc .lead {
  font: 400 15px/1.75 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,.74);
}
/* Wide tables scroll inside their own box; the page itself never scrolls
   sideways on a phone. */
.doc .table-wrap { overflow-x: auto; margin: 0 0 18px; }
.doc table {
  border-collapse: collapse;
  width: 100%;
  min-width: 460px;
  font: 400 13px/1.6 'Inter', system-ui, sans-serif;
}
.doc th, .doc td {
  text-align: left;
  vertical-align: top;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
}
.doc th {
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.16);
  white-space: nowrap;
}
.doc td strong { color: rgba(255,255,255,.82); font-weight: 600; }
