/* DualPay — shared legal/policy page styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #07090e; --bg2: #0b0e16; --border: #1c2130; --border2: #141824;
  --text: #edf0f5; --muted: #9aa4b6; --dim: #5c6678; --blue: #3b82f6;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.lg-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7,9,14,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border2);
}
.lg-nav-inner {
  max-width: 860px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.lg-nav a.brand { display: inline-flex; border-radius: 8px; }
.lg-nav img { height: 40px; width: auto; display: block; opacity: .95; transition: opacity .15s; }
.lg-nav a.brand:hover img { opacity: 1; }
.lg-back { font-size: 14px; color: var(--muted); }
.lg-back:hover { color: var(--text); text-decoration: none; }

.lg-wrap { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.lg-eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: var(--blue); margin-bottom: 14px;
}
.lg-wrap h1 {
  font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 12px;
}
.lg-updated { font-size: 13px; color: var(--dim); margin-bottom: 40px; }
.lg-wrap h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -.01em;
  margin: 44px 0 12px; padding-top: 20px; border-top: 1px solid var(--border);
}
.lg-wrap h2:first-of-type { border-top: none; padding-top: 0; }
.lg-wrap p { color: var(--muted); margin-bottom: 16px; }
.lg-wrap ul { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.lg-wrap li { margin-bottom: 8px; }
.lg-wrap strong { color: var(--text); font-weight: 600; }
.lg-foot {
  max-width: 760px; margin: 0 auto; padding: 28px 24px 60px;
  border-top: 1px solid var(--border2); color: var(--dim); font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 560px) { .lg-wrap { padding-top: 48px; } }
