:root {
  --ink: #0d0f13;
  --panel: #151923;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fffaf0;
  --muted: #aeb7c9;
  --cyan: #35d7ff;
  --gold: #ffd36a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 215, 255, 0.16), transparent 30%),
    var(--ink);
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 46px;
}

.brand,
.legal-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}

.legal-doc {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 46px);
  background: rgba(21, 25, 35, 0.9);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1;
}

h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  padding-left: 20px;
}

.updated {
  margin-top: 16px;
  color: var(--gold);
  font-weight: 850;
}

@media (max-width: 620px) {
  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
