/* Pleads — Shared styles for legal & product pages.
 * Garde un look brand cohérent avec la landing.
 */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(99,102,241,0.18), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, rgba(16,185,129,0.13), transparent 60%),
    #0a0f1c;
  color: #e2e8f0;
  line-height: 1.6;
}
a { color: #818cf8; text-decoration: none; }
a:hover { color: #a5b4fc; text-decoration: underline; }

.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: #cbd5e1; font-size: 14px; }
.cta {
  display: inline-block; padding: 8px 18px; border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #10b981, #f472b6);
  color: #fff !important; font-weight: 700; text-decoration: none !important;
  font-size: 14px;
}

main {
  max-width: 800px; margin: 0 auto;
  padding: 64px 24px 96px;
}
h1 { font-size: 2.25rem; font-weight: 900; margin: 0 0 16px; letter-spacing: -1px; color: #fff; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 800; margin: 36px 0 12px; color: #fff; }
h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 8px; color: #f1f5f9; }
p, li { font-size: 15px; color: #cbd5e1; }
ul, ol { padding-left: 24px; }
li { margin: 8px 0; }
hr { border: 0; border-top: 1px solid #1e293b; margin: 40px 0; }
.muted { color: #64748b; font-size: 13px; }
.lead { font-size: 17px; color: #cbd5e1; margin-bottom: 32px; }
.tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(99,102,241,.15); color: #a5b4fc;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #1e293b; color: #e2e8f0; }
th { background: rgba(99,102,241,.08); font-weight: 700; }
code { background: #1e293b; padding: 2px 6px; border-radius: 4px; font-size: 13px; color: #818cf8; }
.callout {
  background: rgba(99,102,241,0.1);
  border-left: 4px solid #6366f1;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
}
.callout strong { color: #fff; }
footer {
  border-top: 1px solid #1e293b;
  padding: 40px 24px;
  background: rgba(10, 15, 28, 0.6);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  h1 { font-size: 1.7rem; }
}
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; }
.footer-col a { display: block; color: #94a3b8; font-size: 14px; margin: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: #64748b; font-size: 14px; line-height: 1.6; margin-top: 12px; }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  border-top: 1px solid #1e293b; padding-top: 24px;
  font-size: 13px; color: #64748b; text-align: center;
}
