/* Shared styling for legal pages — matches the main site palette. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #050E1C;
  color: #F2EFE7;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #D4AF77; text-decoration: none; transition: color 200ms; }
a:hover { color: #F1DDB7; text-decoration: underline; }

.legal-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32em;
  font-family: 'Bricolage Grotesque', 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #F2EFE7;
  text-decoration: none;
}
.legal-brand:hover { color: #F2EFE7; text-decoration: none; }
.legal-brand .accent { color: #D4AF77; font-weight: 300; }

.legal-back {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B9C2D0;
}
.legal-back:hover { color: #F1DDB7; text-decoration: none; }

.legal-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF77;
  margin: 0 0 16px;
}

h1 {
  font-family: 'Bricolage Grotesque', 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: #F2EFE7;
}

.legal-updated {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: #6F7B8E;
  letter-spacing: 0.04em;
  margin: 0 0 48px;
}

h2 {
  font-family: 'Bricolage Grotesque', 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F2EFE7;
  margin: 40px 0 12px;
}

h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #F1DDB7;
  margin: 24px 0 8px;
}

p, li {
  color: #B9C2D0;
  font-size: 15px;
  line-height: 1.7;
}

p { margin: 0 0 16px; }

ul, ol { padding-left: 22px; margin: 0 0 16px; }
li { margin-bottom: 8px; }

.legal-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #6F7B8E;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-footer a { color: #6F7B8E; }
.legal-footer a:hover { color: #B9C2D0; }
