/* Shared styling for Vula legal/policy pages */
:root {
  --bg: #070b1a;
  --panel: #0d1430;
  --white: #fff;
  --muted: #9aa3c0;
  --brand: #6d5efc;
  --brand-2: #14b8d4;
  --lime: #b6f400;
  --border: rgba(255, 255, 255, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: #d7dcec;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 0 22px; }

header.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7, 11, 26, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #fff; text-decoration: none; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.back { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
.back:hover { color: #fff; }

main { padding: 50px 0 80px; }
h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.02em; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.note {
  background: rgba(182, 244, 0, 0.08); border: 1px solid rgba(182, 244, 0, 0.25);
  border-radius: 12px; padding: 14px 18px; font-size: 14px; color: #e8f4c8; margin: 22px 0 34px;
}
h2 { color: #fff; font-size: 21px; font-weight: 700; margin: 38px 0 12px; }
h3 { color: #fff; font-size: 17px; font-weight: 600; margin: 22px 0 8px; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; }
a { color: var(--brand-2); }
strong { color: #fff; }
.fill { color: var(--lime); font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin: 14px 0 22px; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); vertical-align: top; }
th { background: var(--panel); color: #fff; font-weight: 600; }

footer { border-top: 1px solid var(--border); padding: 30px 0; color: var(--muted); font-size: 13.5px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: #fff; }
