/* Legal pages (Privacy Policy, Terms of Use, TCPA Notice, Do Not Sell).
   The header and footer mirror the landing page, whose styles live inline in
   public/index.html — keep the two in step when either changes. */
:root {
  --purple: #7c3aed;
  --purple-dark: #6630d9;
  --purple-soft: #f2ecff;
  --ink: #172033;
  --body: #536078;
  --muted: #778197;
  --line: #e8eaf0;
  --soft: #f7f7fb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 21px; border: 0; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s ease;
}
.button-primary { color: #fff; background: var(--purple); box-shadow: 0 10px 25px rgba(124, 58, 237, .24); }
.button-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .9); backdrop-filter: blur(15px); border-bottom: 1px solid var(--line); }
.nav { height: 76px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: .16em; font-size: 25px; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: #243772; }
.logo-icon{width:.92em;height:.92em;flex:none;margin-top:-.1em}
.nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav-links a { color: #48536a; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta { margin-left: 30px; }
.menu-btn { display: none; margin-left: auto; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; color: var(--ink); }
.nav-legal { display: none; }

/* Document */
.legal { padding: 70px 0 95px; }
.legal-doc { max-width: 760px; margin-inline: auto; }
.legal-doc h1 { margin: 0; font-size: clamp(32px, 4.4vw, 46px); line-height: 1.12; letter-spacing: -.035em; }
.legal-updated { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.legal-body { margin-top: 38px; color: var(--body); font-size: 16px; }
.legal-body h2 { margin: 40px 0 12px; color: var(--ink); font-size: 22px; line-height: 1.3; letter-spacing: -.02em; }
.legal-body h3 { margin: 28px 0 8px; color: var(--ink); font-size: 17px; }
.legal-body p, .legal-body ul, .legal-body ol { margin: 0 0 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }

/* Footer */
footer { padding: 30px 0; background: var(--soft); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px 40px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.footer-legal a { color: var(--body); font-size: 13px; font-weight: 500; transition: color .2s; }
.footer-legal a:hover, .footer-legal a[aria-current="page"] { color: var(--purple); }

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links.open { position: absolute; display: grid; gap: 0; top: 76px; left: 0; right: 0; padding: 12px 20px 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 28px rgba(25,30,45,.08); }
  .nav-links.open a { padding: 13px 5px; border-bottom: 1px solid #f1f1f5; }
  .nav-links.open .nav-legal { display: grid; margin-top: 8px; }
  .nav-links.open .nav-legal a { padding: 9px 5px; color: var(--muted); font-size: 13px; font-weight: 500; border-bottom: 0; }
  .nav-links.open .nav-legal a[aria-current="page"] { color: var(--purple); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 30px, 1160px); }
  .legal { padding: 46px 0 70px; }
  .legal-body { font-size: 15px; }
}
