/* Document pages — Imprint, Privacy, theater Sign in / Forgot password.
   Quiet typographic scaffold over the public shell. Outer track matches
   the landing's hero/accordion track (--max-hero) so every page's first
   character lines up at the same x as the accordion chevrons. Reading
   width is constrained per-element so prose doesn't sprawl. */

.doc {
  max-width: var(--max-hero);
  margin: 0 auto;
  padding-block: var(--page-top) var(--page-bot);
}
.doc-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: var(--step-3);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-s) 0;
}
.doc-meta {
  font-size: var(--step--1);
  color: var(--ink-mute);
  margin: 0 0 var(--space-2xl) 0;
}
.doc-section {
  margin-top: var(--space-xl);
}
.doc-section h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: var(--step-1);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2xs) 0;
}
.doc-subhead {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: var(--step-0);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: var(--space-m) 0 var(--space-2xs) 0;
}
.doc-section p {
  font-size: var(--step-0);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--space-s) 0;
  max-width: 60ch;
}
.doc-section p:last-child { margin-bottom: 0; }
.doc-section ul {
  font-size: var(--step-0);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--space-s) 0;
  max-width: 60ch;
  padding-left: 1.25em;
}
.doc-section ul li { margin-bottom: 0.25em; }
.doc-section code {
  font-family: var(--mono-font);
  font-size: 0.92em;
  padding: 0 0.2em;
  background: var(--bg-mute);
}

/* Auth shell — left-aligned to the chevron axis (max-hero outer track).
   The card itself stays narrow (--max-login). */
.auth-shell {
  max-width: var(--max-hero);
  margin: 0 auto;
  padding-block: var(--login-top) var(--space-3xl);
}
.auth-card {
  width: 100%;
  max-width: var(--max-login);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.auth-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: var(--step-5);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.auth-form .btn {
  width: 100%;
  margin-top: var(--space-s);
}
.auth-aux {
  font-size: var(--step--1);
  color: var(--ink-mute);
  margin: 0;
}
.auth-aux a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-aux a:hover { color: var(--ink-soft); }
