 /* ── Variables ── */
    :root {
      --accent: #a855f7;
      --accent-light: #c084fc;
      --accent-dark: #7c3aed;
      --accent-glow: rgba(168, 85, 247, 0.35);
      --accent-soft: rgba(168, 85, 247, 0.12);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 32px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    body.night {
      --bg: #0d0d14;
      --bg-secondary: #13131f;
      --bg-card: rgba(255,255,255,0.04);
      --bg-card-hover: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.1);
      --border-accent: rgba(168, 85, 247, 0.4);
      --text: #f0f0ff;
      --text-muted: rgba(240,240,255,0.5);
      --header-bg: rgba(13,13,20,0.85);
      --shadow: 0 8px 40px rgba(0,0,0,0.5);
    }

    body.day {
      --bg: #f5f3ff;
      --bg-secondary: #ede9fe;
      --bg-card: rgba(255,255,255,0.7);
      --bg-card-hover: rgba(255,255,255,0.95);
      --border: rgba(109,40,217,0.15);
      --border-accent: rgba(168, 85, 247, 0.5);
      --text: #1a0533;
      --text-muted: rgba(26,5,51,0.5);
      --header-bg: rgba(245,243,255,0.85);
      --shadow: 0 8px 40px rgba(124,58,237,0.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      transition: background var(--transition), color var(--transition);
      scrollbar-width: thin;
      scrollbar-color: var(--accent) transparent;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
    ::selection { background: var(--accent-glow); color: var(--text); }

    /* ── Header ── */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: var(--header-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 14px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), border-color var(--transition);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      background: linear-gradient(135deg, var(--text) 30%, var(--accent-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      cursor: pointer;
    }

    .controls { display: flex; align-items: center; gap: 10px; }

    .theme-toggle {
      background: var(--accent-soft);
      border: 1px solid var(--border-accent);
      color: var(--text);
      padding: 7px 16px;
      border-radius: 100px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;
      transition: all var(--transition);
      letter-spacing: 0.03em;
    }

    .theme-toggle:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 0 18px var(--accent-glow);
      transform: translateY(-1px);
    }

    .back-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 100px;
      border: 1px solid var(--border);
      transition: all var(--transition);
    }

    .back-btn:hover {
      color: var(--accent-light);
      border-color: var(--border-accent);
      background: var(--accent-soft);
    }

    .back-btn svg { width: 14px; height: 14px; }

    /* ── Page layout ── */
    main {
      padding-top: 100px;
      padding-bottom: 80px;
      max-width: 860px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;
    }

    /* ── Hero ── */
    .page-hero {
      text-align: center;
      margin-bottom: 60px;
      padding: 60px 0 20px;
      position: relative;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: 400px;
      height: 200px;
      background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    .page-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-light);
      background: var(--accent-soft);
      border: 1px solid var(--border-accent);
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .page-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      background: linear-gradient(135deg, var(--text) 30%, var(--accent-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .page-title::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      border-radius: 3px;
      margin: 14px auto 0;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
    }

    .page-subtitle {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 14px;
    }

    /* ── Sections ── */
    .legal-section {
      background: var(--bg-card);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px 36px;
      margin-bottom: 20px;
      box-shadow: var(--shadow);
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }

    .legal-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity var(--transition);
    }

    .legal-section:hover {
      border-color: var(--border-accent);
      box-shadow: var(--shadow), 0 0 32px var(--accent-glow);
      transform: translateY(-2px);
    }

    .legal-section:hover::before { opacity: 1; }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .section-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      background: var(--accent-soft);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-light);
      transition: all var(--transition);
    }

    .legal-section:hover .section-icon {
      background: rgba(168, 85, 247, 0.22);
      box-shadow: 0 0 14px var(--accent-glow);
    }

    .section-icon svg { width: 20px; height: 20px; }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent-light);
    }

    .section-number {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      display: block;
    }

    .legal-section p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .legal-section p:last-child { margin-bottom: 0; }

    .legal-section strong {
      color: var(--text);
      font-weight: 600;
    }

    .legal-section a {
      color: var(--accent-light);
      text-decoration: none;
      border-bottom: 1px solid var(--border-accent);
      transition: color var(--transition), border-color var(--transition);
    }

    .legal-section a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    /* Info row */
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.92rem;
    }

    .info-row:last-child { border-bottom: none; padding-bottom: 0; }

    .info-label {
      font-weight: 600;
      color: var(--text-muted);
      min-width: 140px;
      flex-shrink: 0;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .info-value {
      color: var(--text);
      line-height: 1.6;
    }

    /* Tag cookie / RGPD */
    .tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: 100px;
      margin-right: 6px;
      margin-bottom: 6px;
    }

    .tag-green {
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #4ade80;
    }

    .tag-purple {
      background: var(--accent-soft);
      border: 1px solid var(--border-accent);
      color: var(--accent-light);
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 32px 0;
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .divider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent-glow);
    }

    /* Date badge */
    .update-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
      color: var(--text-muted);
      font-size: 0.82rem;
    }

    .update-badge::before, .update-badge::after {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--border);
    }

    /* ── Footer ── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--bg-secondary);
      padding: 32px 60px 20px;
      text-align: center;
      transition: background var(--transition);
    }

    .footer-bottom {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .footer-bottom a {
      color: var(--accent-light);
      text-decoration: none;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      main { padding-left: 20px; padding-right: 20px; }
      header { padding: 12px 20px; }
      .legal-section { padding: 24px 20px; }
      .info-label { min-width: 100px; }
      footer { padding: 24px 20px 16px; }
    }

    /* ── Animations entrée ── */
    .legal-section {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.5s ease forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .legal-section:nth-child(1) { animation-delay: 0.05s; }
    .legal-section:nth-child(2) { animation-delay: 0.1s; }
    .legal-section:nth-child(3) { animation-delay: 0.15s; }
    .legal-section:nth-child(4) { animation-delay: 0.2s; }
    .legal-section:nth-child(5) { animation-delay: 0.25s; }
    .legal-section:nth-child(6) { animation-delay: 0.3s; }
    .legal-section:nth-child(7) { animation-delay: 0.35s; }
    .legal-section:nth-child(8) { animation-delay: 0.4s; }