/* Charte Stan — pages légales */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/poppins-700.woff2') format('woff2'); }

:root {
  --navy: #01020C;
  --navy-2: #0A0C1A;
  --line: rgba(255,255,255,0.08);
  --white: #F4F5FA;
  --muted: #9DA1B4;
  --faint: #6A6E82;
  --blue: #3E62FA;
  --violet: #8C7BE8;
  --pink: #E8456F;
  --grad: linear-gradient(135deg, #3E62FA 0%, #8C7BE8 45%, #E8456F 100%);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}
.header-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 9px; color: var(--white); }
.brand:hover { text-decoration: none; }
.brand .wordmark { font-size: 1.05rem; font-weight: 600; }
.back { font-size: 0.85rem; color: var(--faint); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
.updated { color: var(--faint); font-size: 0.85rem; margin-bottom: 44px; }
h2 { font-size: 1.15rem; font-weight: 600; margin: 40px 0 12px; }
p, ul { color: var(--muted); font-size: 0.93rem; margin-bottom: 14px; }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }
strong { color: var(--white); font-weight: 600; }

.card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.card p { margin-bottom: 4px; }
.card p:last-child { margin-bottom: 0; }

footer { border-top: 1px solid var(--line); padding: 32px 24px; }
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-company { font-size: 0.78rem; color: var(--faint); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.78rem; color: var(--faint); }
.footer-links a:hover { color: var(--muted); }
