body {
  margin: 0;
  background: oklch(0.99 0.004 145);
  font-family: Helvetica, Arial, sans-serif;
}
.page {
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 80px;
}
.logo {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: oklch(0.3 0.04 165);
  text-decoration: none;
}
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 150px;
  gap: 40px;
}
.divider {
  width: 36px;
  height: 1px;
  background: oklch(0.55 0.1 165);
}
.hero h1 {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: 52px;
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: oklch(0.22 0.01 150);
}
.hero p {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.8;
  color: oklch(0.5 0.01 150);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.badge {
  margin-top: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: oklch(0.96 0.015 165);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.42 0.06 165);
}
.footer {
  padding: 32px 80px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: oklch(0.62 0.005 150);
}
@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.ai {
  background: linear-gradient(90deg, oklch(0.4 0.09 165) 0%, oklch(0.75 0.13 165) 50%, oklch(0.4 0.09 165) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 2.4s linear infinite;
}

/* Legal document pages */
.doc {
  flex: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 80px 96px;
  box-sizing: border-box;
}
.doc .divider {
  margin-bottom: 32px;
}
.doc h1 {
  margin: 0 0 12px;
  font-family: 'Newsreader', serif;
  font-size: 40px;
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: oklch(0.22 0.01 150);
}
.doc .updated {
  margin: 0 0 56px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.62 0.005 150);
}
.doc h2 {
  margin: 48px 0 16px;
  font-family: 'Newsreader', serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: oklch(0.22 0.01 150);
}
.doc h1 + h2,
.doc .updated + h2 {
  margin-top: 0;
}
.doc h3 {
  margin: 28px 0 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: oklch(0.3 0.01 150);
}
.doc p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.85;
  color: oklch(0.4 0.01 150);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.doc ul, .doc ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.doc li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.85;
  color: oklch(0.4 0.01 150);
}
.doc strong {
  color: oklch(0.28 0.02 150);
  font-weight: 600;
}
.doc a {
  color: oklch(0.42 0.06 165);
  text-decoration: underline;
  text-decoration-color: oklch(0.75 0.06 165);
  text-underline-offset: 2px;
}
.doc blockquote {
  margin: 0 0 16px;
  padding: 14px 20px;
  border-left: 2px solid oklch(0.55 0.13 35);
  background: oklch(0.95 0.03 35 / 0.5);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 1.7;
  color: oklch(0.5 0.13 35);
}
.doc blockquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}
@media (max-width: 800px) {
  .nav {
    padding: 32px 24px;
  }
  .hero {
    padding: 0 24px;
  }
  .footer {
    padding: 24px;
  }
  .doc {
    padding: 0 16px 64px;
  }
}
@media (max-width: 480px) {
  .nav {
    padding: 24px 16px;
  }
  .doc {
    padding: 0 12px 48px;
  }
  .doc h1 {
    font-size: 30px;
  }
  .doc h2 {
    margin: 36px 0 12px;
    font-size: 20px;
  }
}
