/* Shared styling for the legal pages (11/T03) — same brand tokens as the
   landing page, kept as a tiny external sheet because two pages share it and
   neither needs the landing page's hero-art machinery. */
:root {
  --steel: #14171D;
  --amber: #FFB020;
  --bone:  #F2ECE0;
  --ink-dim: rgba(242, 236, 224, 0.72);
  --hairline: rgba(242, 236, 224, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--steel);
  color: var(--bone);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
}

.updated {
  color: var(--ink-dim);
  font-size: 0.8rem;
  margin: 0 0 2rem;
}

h2 {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin: 2rem 0 0.5rem;
  color: var(--amber);
}

p, li { color: var(--ink-dim); font-size: 0.92rem; }

strong { color: var(--bone); }

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

.crumb {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--ink-dim);
}
.crumb:hover { color: var(--bone); }

footer {
  border-top: 1px solid var(--hairline);
  margin-top: 3rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--ink-dim);
}
