/* Cruxlab legal/identity pages — shared style.
   GDPR-clean by design: NO external fonts or assets (system font stack only),
   so loading these pages sends no visitor data to any third party. */
:root {
  --bg: #fbf4e3;
  --paper: #ffffff;
  --panel: #fff9ec;
  --panel-edge: #ead9b3;
  --ink: #1a160f;
  --muted: #7a6f5e;
  --accent: #e64a19;
  --rule: #e7dcc0;
  --rule-soft: #f2e9d2;
  --serif: "Iowan Old Style", "Charter", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 40px 0 56px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.logo {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.logo .dot { color: var(--accent); }

.nav .contact {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
}

.nav .contact:hover { color: var(--accent); border-color: var(--accent); }

h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.updated {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 36px;
  letter-spacing: 0.01em;
}

h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 40px 0 10px;
}

h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  margin: 24px 0 6px;
}

p, li { font-size: 16px; line-height: 1.65; color: var(--ink); }
p { margin: 0 0 14px; }

a { color: var(--accent); }

ul { margin: 0 0 14px; padding-left: 22px; }
li { margin: 0 0 6px; }

strong { font-weight: 600; }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
}

.identity {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 6px;
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.7;
}

.identity .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.identity dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; }
.identity dt { color: var(--muted); }
.identity dd { margin: 0; color: var(--ink); }

.note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--rule);
  padding-left: 16px;
  margin: 24px 0;
}

footer {
  margin: 64px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}

footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0 0 14px;
}

footer .legal-links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

footer .legal-links a:hover { color: var(--accent); border-color: var(--accent); }

footer .trader {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule);
}

.back-link:hover { color: var(--accent); border-color: var(--accent); }
