/* Vavaro — legal / document pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #0F292F; --ink-2: #1a3c44; --ink-3: #2a4e57;
  --secondary: #455A64; --mute: #6b7e83; --mute-2: #b0bec5;
  --line: #d9dfe1; --line-2: #e9ecee;
  --paper: #f3f1ea; --paper-3: #fbfaf6; --white: #fff;
  --accent: #2E7D32; --accent-3: #81c784;
  --ff-h: "Manrope", system-ui, sans-serif;
  --ff-b: "Inter", system-ui, sans-serif;
  --ff-m: "JetBrains Mono", ui-monospace, monospace;
  --ff-s: "Fraunces", Georgia, serif;
  --easing: cubic-bezier(.2,.7,.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

/* Top bar */
.lg-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 24px 0;
  pointer-events: none;
}
.lg-nav-capsule {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px 0 20px;
  border-radius: 999px;
  background: rgba(251,250,246,0.72);
  border: 1px solid rgba(15,41,47,0.1);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 10px 30px -16px rgba(15,41,47,0.28);
}
.lg-links {
  display: flex;
  gap: 4px;
}
.lg-link {
  padding: 10px 18px;
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 200ms var(--easing), background 200ms var(--easing);
  white-space: nowrap;
}
.lg-link:hover { color: var(--ink); background: rgba(15,41,47,0.06); }
.lg-brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-h); font-weight: 800; font-size: 23px; letter-spacing: -0.04em; color: var(--ink); flex-shrink: 0; }
.lg-mark { width: 36px; height: 36px; border-radius: 11px; background: url(livaro-icon-rounded.png) center/cover; box-shadow: 0 2px 8px rgba(15,41,47,0.2); }
.lg-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: #fff;
  background: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform 160ms var(--easing), background 160ms var(--easing), box-shadow 200ms var(--easing);
}
.lg-back svg { transition: transform 220ms var(--easing); }
.lg-back:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(46,125,50,0.5);
}
.lg-back:hover svg { transform: translateX(-3px); }

@media (max-width: 820px) {
  .lg-links { display: none; }
}

/* Hero */
.lg-hero { max-width: 840px; margin: 0 auto; padding: 64px 28px 36px; }
.lg-eyebrow { font-family: var(--ff-m); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.lg-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.lg-title { font-family: var(--ff-h); font-weight: 800; font-size: clamp(38px, 6vw, 60px); letter-spacing: -0.045em; line-height: 1.0; color: var(--ink); }
.lg-updated { margin-top: 18px; font-family: var(--ff-m); font-size: 12px; letter-spacing: 0.08em; color: var(--mute); }

/* Body */
.lg-body { max-width: 840px; margin: 0 auto; padding: 12px 28px 96px; }
.lg-intro { font-family: var(--ff-h); font-weight: 500; font-size: 20px; line-height: 1.5; letter-spacing: -0.015em; color: var(--ink-3); padding: 24px 0 32px; border-bottom: 1px solid var(--line); margin-bottom: 8px; text-wrap: pretty; }
.lg-section { padding: 28px 0; border-bottom: 1px solid var(--line-2); display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.lg-section:last-child { border-bottom: 0; }
.lg-num { font-family: var(--ff-m); font-size: 13px; letter-spacing: 0.06em; color: var(--accent); padding-top: 4px; font-variant-numeric: tabular-nums; }
.lg-h2 { font-family: var(--ff-h); font-weight: 700; font-size: 24px; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 12px; line-height: 1.15; }
.lg-section p { font-size: 16px; color: var(--ink-2); margin-bottom: 14px; text-wrap: pretty; }
.lg-section p:last-child { margin-bottom: 0; }
.lg-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 4px 0 14px; }
.lg-section li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.lg-section li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--accent); font-family: var(--ff-m); }
.lg-section strong { color: var(--ink); font-weight: 600; }

.lg-callout {
  margin: 16px 0 0; padding: 20px 22px; background: var(--paper-3);
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 4px; font-size: 15px; color: var(--ink-3);
}
.lg-callout em { color: var(--mute); font-style: italic; }

/* Sub-section heading (e.g. "a) Account and identity data") */
.lg-h3 {
  font-family: var(--ff-h); font-weight: 700; font-size: 17px;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.3;
  margin: 26px 0 10px;
}
.lg-h3:first-child { margin-top: 0; }

/* Nested lists (e.g. EU cloud regions) */
.lg-section ul ul { margin: 8px 0 0 4px; }

/* Inline code / identifiers */
.lg-section code {
  font-family: var(--ff-m); font-size: 0.86em;
  background: var(--paper-3); border: 1px solid var(--line-2);
  border-radius: 4px; padding: 1px 5px; color: var(--ink-2);
  word-break: break-word;
}

/* [FILL IN: …] placeholder markers — visibly unfinished until completed */
.lg-fill {
  font-family: var(--ff-m); font-size: 0.85em; font-weight: 500;
  background: #fff3cd; color: #7a5a00;
  border: 1px solid #ecd9a0; border-radius: 4px;
  padding: 1px 6px; white-space: normal;
}

/* Tables (legal bases, sub-processors) */
.lg-table-wrap {
  margin: 18px 0 6px; overflow-x: auto;
  border: 1px solid var(--line); border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}
.lg-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; color: var(--ink-2); min-width: 520px;
}
.lg-table th {
  text-align: left; vertical-align: top;
  font-family: var(--ff-m); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
  background: var(--paper-3);
  padding: 12px 16px; border-bottom: 1px solid var(--line);
}
.lg-table td {
  vertical-align: top; padding: 13px 16px;
  border-bottom: 1px solid var(--line-2); line-height: 1.5;
}
.lg-table tr:last-child td { border-bottom: 0; }
.lg-table strong { color: var(--ink); font-weight: 600; }
.lg-table em { color: var(--mute); font-style: italic; }
.lg-table code {
  font-family: var(--ff-m); font-size: 0.86em; color: var(--ink-2);
}

/* Footer — matches main site */
.foot {
  background: var(--ink);
  color: #fff;
  padding: 52px 0 0;
  position: relative;
  overflow: hidden;
}
.foot .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 36px;
}
.foot-brand .brand {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--ff-h); font-weight: 800; font-size: 40px;
  letter-spacing: -0.04em; color: #fff;
}
.foot-brand .brand-mark {
  width: 58px; height: 58px; border-radius: 17px;
  background: url(livaro-icon-rounded.png) center/cover;
  box-shadow: 0 2px 8px rgba(15,41,47,0.2);
}
.foot-col h5 {
  font-family: var(--ff-m); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  font-weight: 400; margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; color: rgba(255,255,255,0.85); transition: color 160ms; }
.foot-col a:hover { color: var(--accent-3); }
.foot-bot {
  display: none; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--ff-m); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.foot-copy {
  display: block; margin-top: 18px;
  font-family: var(--ff-m); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .lg-section { grid-template-columns: 1fr; gap: 8px; }
  .lg-num { padding-top: 0; }
}
