/* legal.css — shared styles for /privacy and /terms (marketing-site pages).
   Tokens come from styles.css; this file only adds layout. Loaded ONLY by the
   legal pages, so the .l-* names never collide with index.html's inline copies. */

.l-wrap { max-width: 820px; margin: 0 auto; padding: 0 1.4rem; }

/* nav */
.l-nav { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 0; }
.l-brand { display: flex; align-items: center; gap: .65rem; font-weight: 500; font-size: 1.35rem; }
.l-mark { width: 19px; height: 19px; border: 3.5px solid var(--ink); border-radius: 50%; }
.l-open {
  border: none; border-radius: 999px; background: var(--ink); color: var(--paper);
  font-family: inherit; font-size: .9rem; font-weight: 500; padding: .6rem 1.3rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.l-open:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgb(0 0 0 / .35); }
.l-open:active { transform: scale(.95); }

/* footer */
.l-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding: 1.4rem 0 2.4rem;
  font-size: .72rem; font-weight: 300; color: var(--ink-faint);
}
.l-foot a { color: var(--ink-soft); text-decoration: none; transition: color .25s ease; }
.l-foot a:hover { color: var(--ink); }
.l-foot-links { display: flex; gap: 1.1rem; align-items: center; }
.l-foot-links svg { vertical-align: -2px; }

/* legal document */
.lg-doc { max-width: 720px; margin: 0 auto; padding: 1.2rem 1.4rem 3.6rem; }
.lg-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.lg-title { font-size: clamp(2rem, 5.5vw, 2.9rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.08; margin: .7rem 0 .5rem; }
.lg-meta { font-size: .85rem; font-weight: 300; color: var(--ink-soft); }
.lg-tldr {
  background: var(--card); border-radius: 22px; box-shadow: var(--shadow);
  padding: 1.2rem 1.35rem; margin: 1.8rem 0 2.4rem; transition: background .5s var(--ease-out);
}
.lg-tldr b { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.lg-tldr p { font-size: .96rem; font-weight: 300; line-height: 1.65; color: var(--ink); }
.lg-doc h2 { font-size: 1.12rem; font-weight: 500; letter-spacing: -.01em; margin: 2rem 0 .6rem; }
.lg-doc h2 .n { color: var(--ink-faint); font-weight: 400; margin-right: .5rem; font-variant-numeric: tabular-nums; }
.lg-doc p { font-size: .98rem; line-height: 1.72; color: var(--ink); margin-bottom: .6rem; }
.lg-doc p.soft { color: var(--ink-soft); font-weight: 300; }
.lg-doc ul { list-style: none; margin: .2rem 0 .6rem; }
.lg-doc li { position: relative; padding-left: 1.15rem; font-size: .98rem; line-height: 1.7; color: var(--ink); margin-bottom: .5rem; }
.lg-doc li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); }
.lg-doc li b, .lg-doc p b { font-weight: 500; }
.lg-doc a.ln { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--ink-faint); }
.lg-doc a.ln:hover { text-decoration-color: var(--ink); }
