/* =============================================================================
   PSL — Legal / policy pages (Privacy, Terms, Cookies)
   Static, crawlable content pages. Brand tokens from colors_and_type.css.
   ============================================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2B3040;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
a { color: #1F4DD8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Header ---- */
.lg-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(13,0,66,0.08);
}
.lg-header-inner {
  max-width: 880px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lg-logo img { height: 26px; display: block; }
.lg-back {
  font-size: 14px; font-weight: 600; color: #0D0042;
  display: inline-flex; align-items: center; gap: 7px;
}
.lg-back svg { width: 14px; height: 14px; }

/* ---- Body ---- */
.lg-main { max-width: 880px; margin: 0 auto; padding: 64px 24px 96px; }
.lg-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #1F4DD8; margin: 0 0 14px;
}
.lg-title {
  font-size: 38px; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em;
  color: #0D0042; margin: 0 0 12px;
}
.lg-updated { font-size: 14px; color: #6B7280; margin: 0 0 8px; }
.lg-intro {
  font-size: 18px; line-height: 1.7; color: #3B4256;
  margin: 24px 0 0; padding-bottom: 32px;
  border-bottom: 1px solid rgba(13,0,66,0.08);
}

/* Placeholder callout — clearly flags copy the user must supply / review. */
.lg-placeholder {
  margin: 28px 0; padding: 16px 18px;
  background: #FFF7E6; border: 1px dashed #F0C36D; border-radius: 10px;
  font-size: 14px; color: #6B4F1D; line-height: 1.55;
}
.lg-placeholder strong { color: #3F2C0A; }

.lg-toc {
  margin: 32px 0; padding: 22px 24px;
  background: #F6F8FE; border: 1px solid #E2E7F3; border-radius: 12px;
}
.lg-toc h2 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #6B7280; margin: 0 0 12px; font-weight: 700; }
.lg-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.lg-toc li { margin-bottom: 7px; font-size: 14.5px; break-inside: avoid; }

.lg-section { padding-top: 40px; scroll-margin-top: 80px; }
.lg-section h2 {
  font-size: 22px; font-weight: 600; color: #0D0042; letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.lg-section h3 { font-size: 16px; font-weight: 600; color: #0D0042; margin: 22px 0 8px; }
.lg-section p { margin: 0 0 14px; font-size: 16px; }
.lg-section ul { margin: 0 0 14px; padding-left: 22px; }
.lg-section li { margin-bottom: 8px; font-size: 16px; }
.lg-contact {
  margin-top: 48px; padding: 24px; border-radius: 12px;
  background: #0D0042; color: #fff;
}
.lg-contact h2 { color: #fff; font-size: 18px; margin: 0 0 8px; font-weight: 600; }
.lg-contact p { margin: 0; color: rgba(255,255,255,0.8); font-size: 15px; }
.lg-contact a { color: #7FB9FF; }

/* ---- Footer ---- */
.lg-footer {
  border-top: 1px solid rgba(13,0,66,0.08);
  background: #FAFBFE;
}
.lg-footer-inner {
  max-width: 880px; margin: 0 auto; padding: 32px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13.5px; color: #6B7280;
}
.lg-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.lg-footer-links a { color: #3B4256; font-weight: 500; }

@media (max-width: 640px) {
  .lg-title { font-size: 30px; }
  .lg-toc ol { columns: 1; }
  .lg-main { padding-top: 48px; }
}
