:root {
  --bg: #070605;
  --panel: #0d0d12;
  --text: #f7f4ef;
  --muted: #aaa4b3;
  --line: rgba(255,255,255,.1);
  --orange: #ff7a16;
  --gold: #ffbd4a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 70% 0%, rgba(255,122,22,.16), transparent 30%), var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}
a { color: inherit; }
.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5,5,6,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.legal-header-inner {
  width: min(1120px, calc(100% - 44px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(255,122,22,.32);
}
.brand span span { color: var(--orange); }
.back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.back:hover { border-color: rgba(255,122,22,.55); color: var(--orange); }
.legal-shell {
  width: min(960px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px 0 88px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255,189,74,.46);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.lede {
  margin: 18px 0 28px;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}
.card {
  margin: 28px 0 42px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}
h2 {
  margin: 40px 0 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}
h3 {
  margin: 28px 0 8px;
  color: #fff;
  font-size: 20px;
}
p, li { color: var(--muted); }
ul, ol { padding-left: 22px; }
.legal-shell a { color: #ffb35b; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 30px 22px 38px;
  color: var(--muted);
  text-align: center;
}
.legal-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-bottom: 16px;
}
.legal-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.legal-footer a:hover { color: var(--orange); }
@media (max-width: 640px) {
  .legal-header-inner { height: auto; align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .back { width: 100%; justify-content: center; }
  .legal-shell { padding-top: 48px; }
}
