/* Privacy_Policy.html — standalone brand page styles */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* a11y baseline (brand-standalone page, mirrors User_Base) */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100000;
  background: var(--blue-600); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }
:where(a, button, [role="button"], input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--blue-600); outline-offset: 2px; border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
html, body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink-900); background: var(--paper);
  -webkit-font-smoothing: antialiased; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: 'Fraunces', 'Poppins', serif; font-optical-sizing: auto; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-600); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform .15s, box-shadow .2s, background .2s, color .2s; cursor: pointer; border: 1px solid transparent; white-space: nowrap; }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-blue { background: var(--blue-600); color: var(--white); box-shadow: 0 1px 2px rgba(11,58,132,.3), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-1px); }

/* NAV — pill flottante verre frost */
.nav-wrap { position: sticky; top: 16px; z-index: 50; max-width: 1240px; margin: 16px auto 0; padding: 0 32px; }
.nav {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(10,23,51,.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(10,23,51,.08), inset 0 1px 0 rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 12px 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.3px; color: var(--ink-900); }
.logo-mark { width: 64px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-cta { display: flex; gap: 10px; }
.nav-cta .btn { padding: 10px 16px; font-size: 13px; }

/* HERO */
.page-hero { padding: 72px 0 24px; position: relative; overflow: visible; }
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,99,207,.12), transparent 70%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 820px; }
.page-hero h1 { margin-top: 16px; font-size: 72px; line-height: 1.0; font-weight: 400; letter-spacing: -2px; color: var(--ink-900); font-family: 'Fraunces', serif; }
.page-hero h1 em { font-style: italic; color: var(--blue-600); font-weight: 400; }
.page-hero .lead { margin-top: 24px; font-size: 18px; line-height: 1.6; color: var(--ink-500); max-width: 680px; }

/* Pills / chips */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.2px; }
.pill-blue { background: var(--blue-50); color: var(--blue-600); }

/* Legal body */
.legal { padding: 40px 0 96px; }
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  padding: 56px 64px;
  max-width: 900px;
  margin: 0 auto;
}
.legal-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.4px;
  color: var(--ink-900);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h2 em { font-style: italic; color: var(--blue-600); font-weight: 500; }
.legal-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 28px 0 12px;
  letter-spacing: -0.1px;
}
.legal-card p { font-size: 15px; color: var(--ink-500); margin-bottom: 14px; line-height: 1.75; }
.legal-card strong { color: var(--ink-900); font-weight: 600; }
.legal-card ul, .legal-card ol { margin: 0 0 16px 24px; color: var(--ink-500); }
.legal-card li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; }
.legal-card code {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  background: var(--paper-2);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--ink-800);
  border: 1px solid var(--line);
}
.legal-card a { color: var(--blue-600); font-weight: 500; }
.legal-card a:hover { text-decoration: underline; }

.contact-info {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 24px 28px;
  border-radius: var(--r-md);
  margin-top: 12px;
}
.contact-info p { margin-bottom: 6px; }

.last-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--ink-400);
  font-size: 13px;
}

/* Footer (aligné landing) */
footer { background: var(--ink-900); color: #FFF; padding: 64px 0 36px; }
footer .foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
footer .foot-desc { margin-top: 16px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 280px; }
footer .foot-col h4 { font-size: 13px; font-weight: 600; margin-bottom: 16px; color: #FFF; }
footer .foot-col div { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 10px; }
footer .foot-col a, footer .foot-bottom .links a { color: inherit; text-decoration: none; transition: color .15s ease; }
footer .foot-col a:hover, footer .foot-bottom .links a:hover { color: #FFF; text-decoration: underline; }
footer .foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.5); }
footer .foot-bottom .links { display: flex; gap: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .page-hero h1 { font-size: 48px; }
  .legal-card { padding: 36px 24px; }
  .legal-card h2 { font-size: 22px; }
  .nav nav { display: none; }
  footer .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  footer .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
