:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #f7f7f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0%, rgba(162, 89, 255, .14), transparent 32rem),
    #050505;
  color: #f7f7f7;
}

a { color: #cbb4ff; }
a:hover { color: #fff; }
a:focus-visible { outline: 2px solid #a259ff; outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(20px);
}

.header-inner,
.page,
.site-footer {
  width: min(100% - 32px, 880px);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand {
  color: #fff;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.035em;
  text-decoration: none;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 13px;
}

.policy-nav a { color: #aaa; text-decoration: none; }
.policy-nav a[aria-current="page"], .policy-nav a:hover { color: #fff; }

.page { padding: 72px 0 48px; }
.eyebrow { color: #a98cff; font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 12px 0 14px; font-size: clamp(38px, 8vw, 68px); line-height: .98; letter-spacing: -.055em; }
.lede { max-width: 710px; margin: 0 0 38px; color: #b9b9b9; font-size: 18px; line-height: 1.65; }
.updated { margin: -22px 0 42px; color: #777; font-size: 13px; }

.notice {
  margin: 0 0 36px;
  border: 1px solid rgba(162, 89, 255, .28);
  border-radius: 22px;
  background: rgba(162, 89, 255, .09);
  padding: 20px 22px;
  color: #e9ddff;
  line-height: 1.6;
}

section {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 30px 0;
}

h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.025em; }
h3 { margin: 24px 0 8px; font-size: 16px; }
p, li { color: #c4c4c4; line-height: 1.72; }
li + li { margin-top: 8px; }
strong { color: #f5f5f5; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 28px 0 48px;
  color: #777;
  font-size: 13px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 16px; }
.footer-links a { color: #999; text-decoration: none; }

@media (max-width: 680px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .policy-nav { justify-content: flex-start; }
  .page { padding-top: 50px; }
}
