* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #ff5a00;
  --bg:     #151515;
  --bg2:    #1c1c1c;
  --brd:    #2e2e2e;
  --white:  #ffffff;
  --gray:   #888;
  --lgray:  #ccc;
}
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

/* NAV */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--brd);
  padding: 16px 48px;
}
.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.site-nav a.home-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgray);
  text-decoration: none;
  transition: color .18s;
}
.site-nav a.home-link:hover { color: var(--orange); }

/* HERO */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
  padding: 60px 48px 52px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.page-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* CONTENT */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 100px;
}
.content-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
.content-sidebar {
  position: sticky;
  top: 32px;
}
.toc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.toc-list { list-style: none; }
.toc-list li + li { margin-top: 6px; }
.toc-list a {
  font-size: 13px;
  color: var(--lgray);
  text-decoration: none;
  transition: color .18s;
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
}
.toc-list a:hover { color: var(--orange); border-left-color: var(--orange); }

/* SECTIONS */
.legal-section + .legal-section {
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--brd);
}
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--white);
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--lgray);
}
.legal-section p { color: var(--lgray); margin-bottom: 12px; font-weight: 300; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--orange); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-section ul {
  list-style: none;
  color: var(--lgray);
  font-weight: 300;
}
.legal-section ul li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.legal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* FOOTER */
.page-footer {
  border-top: 1px solid var(--brd);
  padding: 20px 48px;
  background: var(--bg);
}
.page-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-footer-links { display: flex; gap: 24px; }
.page-footer-links a, .page-footer span {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color .18s;
}
.page-footer-links a:hover { color: var(--white); }

@media (max-width: 768px) {
  .site-nav { padding: 14px 20px; }
  .page-hero { padding: 44px 20px 36px; }
  .page-content { padding: 40px 20px 72px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-sidebar { position: static; }
  .page-footer { padding: 16px 20px; }
  .page-footer-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
}
