:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: #050506;
  color: #f5f5f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at top, #241b0c, #050506 34rem);
  line-height: 1.6;
}

a { color: #ffb43b; }
a:hover { color: #ffd38a; }

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.section-shell {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgb(5 5 6 / 90%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffffff1f;
}

.brand,
.nav,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand { color: inherit; text-decoration: none; }
.brand img { border-radius: 20%; }
.nav a { text-decoration: none; }
.header-cta { font-weight: 700; }

.legal-page { padding: 4rem 0; }
.legal-hero { margin-bottom: 2rem; }
.legal-hero img { border-radius: 22%; }
.section-label { color: #ffb43b; font-weight: 700; }
h1 { font-size: clamp(2rem, 7vw, 4rem); line-height: 1.05; margin: .3rem 0 1rem; }
h2 { margin-top: 2rem; }

.legal-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  background: #111114e8;
  border: 1px solid #ffffff1f;
  border-radius: 1.25rem;
  box-shadow: 0 24px 80px #0008;
}

.resource-list { display: grid; gap: 1rem; }
.resource-list a { font-size: 1.1rem; }
.site-footer { border-top: 1px solid #ffffff1f; color: #b6b6bc; }

@media (max-width: 720px) {
  .site-header,
  .nav,
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
