/* Shared styles for Vela legal pages (privacy / offer / consent).
   Same palette as the app + landing, optimised for long-read legibility. */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0C0B08;
  --bg-raised: #1A1813;
  --text: #ECE7DD;
  --text-secondary: #C5BCAC;
  --text-muted: #8A8275;
  --bronze: #B08D57;
  --bronze-bright: #C9A86A;
  --hairline: rgba(236, 231, 221, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 32px); }

/* top bar */
.lhead { border-bottom: 1px solid var(--hairline); padding: 22px 0; }
.lhead .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .word { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--text); letter-spacing: 0.03em; }
.brand svg { width: 36px; height: 23px; }
.back { font-size: 14px; color: var(--text-muted); }
.back:hover { color: var(--bronze-bright); }
a { color: var(--bronze-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

/* document */
.doc { padding: clamp(36px, 7vw, 64px) 0 24px; }
.doc .kicker { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.doc h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 6vw, 44px); line-height: 1.12; color: var(--text); margin: 14px 0 6px; letter-spacing: -0.01em; }
.doc .meta { font-size: 13.5px; color: var(--text-muted); margin-bottom: 28px; }
.doc h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(21px, 3.4vw, 27px); color: var(--text); margin: 38px 0 12px; line-height: 1.2; }
.doc h3 { font-weight: 600; font-size: 16.5px; color: var(--text); margin: 22px 0 8px; }
.doc p { margin: 12px 0; }
.doc ul, .doc ol { margin: 12px 0 12px 22px; }
.doc li { margin: 7px 0; }
.doc strong { color: var(--text); font-weight: 600; }
.doc .lead { font-size: 17px; color: var(--text); }
.doc .note {
  border: 1px solid var(--hairline); border-left: 3px solid var(--bronze-dim, #6E5A3A);
  background: var(--bg-raised); border-radius: 10px; padding: 16px 18px; margin: 22px 0;
  font-size: 14.5px; color: var(--text-secondary);
}
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.doc td, .doc th { border: 1px solid var(--hairline); padding: 10px 12px; text-align: left; vertical-align: top; }
.doc th { color: var(--text); font-weight: 600; background: var(--bg-raised); }

/* requisites + footer */
.requisites { border: 1px solid var(--hairline); border-radius: 12px; padding: 20px 22px; margin: 28px 0 8px; font-size: 14.5px; }
.requisites dl { display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 8px 18px; }
.requisites dt { color: var(--text-muted); }
.requisites dd { color: var(--text); }
@media (max-width: 560px) { .requisites dl { grid-template-columns: 1fr; gap: 2px 0; } .requisites dd { margin-bottom: 10px; } }

footer.lfoot { border-top: 1px solid var(--hairline); margin-top: 40px; padding: 28px 0 48px; font-size: 13px; color: var(--text-muted); }
footer.lfoot .links { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; }
footer.lfoot .links a { color: var(--text-muted); }
footer.lfoot .links a:hover { color: var(--text-secondary); }
