/* DOMO legal pages — shared styling.
   Tokens lifted from the domo.bz landing page so these read as the same site:
   dark #0A0A0A, primary violet #8B5CF6, secondary amber #F59E0B, Plus Jakarta Sans.
   Deliberately dependency-free: no Tailwind CDN, no framework. These are text
   pages that partners and regulators must be able to open, always. */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #0A0A0A;
  --panel: #111114;
  --border: #222226;
  --text: #E8E8EA;
  --muted: #9A9AA2;
  --primary: #8B5CF6;
  --secondary: #F59E0B;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- top bar --- */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.brand span { color: var(--primary); }
.nav-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.nav-back:hover { color: #fff; }

/* --- content --- */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: #fff;
}

.updated {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 40px;
}

h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
h2:first-of-type { border-top: none; padding-top: 0; }

h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 6px;
}

p { margin: 0 0 16px; color: var(--text); }

ul { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 8px; }

a { color: var(--primary); }
a:hover { color: #A78BFA; }

strong { color: #fff; font-weight: 700; }

address {
  font-style: normal;
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 0 0 24px;
  line-height: 1.9;
}

/* The "we refer, we do not sell" statement — the load-bearing paragraph. */
.callout {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }

dl { margin: 0 0 16px; }
dt { font-weight: 700; color: #fff; margin-top: 14px; }
dd { margin: 4px 0 0; color: var(--text); }

/* --- footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #050505;
  padding: 40px 24px;
  text-align: center;
}
.site-footer .mark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0.5;
  margin-bottom: 10px;
}
.legal-links {
  display: flex;
  gap: 8px 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.legal-links a:hover { color: #fff; }
.site-footer .copy {
  color: #6B6B73;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
