:root {
      --text: #1D1D1F;
      --text-secondary: #424248;
      --text-tertiary: #6E6E73;
      --bg: #FBFBFD;
      --bg-window-solid: #FFFFFF;
      --bg-elevated: #FFFFFF;
      --accent: #007AFF;
      --hand-red: #B5263A;
      --hand-blue: #1E5BC6;
      --green: #34C759;
      --orange: #FF9500;
      --purple: #AF52DE;
      --border: rgba(0,0,0,0.08);
      --postit-yellow: #FFF8B8;
      --postit-pink: #FFD9E2;
      --postit-green: #D4F5DD;
      --postit-blue: #D6E8FB;
    }
    body[data-theme="dark"] {
      --text: #F5F5F7;
      --text-secondary: #C7C7CC;
      --text-tertiary: #8E8E93;
      --bg: #1C1C1E;
      --bg-window-solid: #2C2C2E;
      --bg-elevated: #3A3A3C;
      --accent: #0A84FF;
      --hand-red: #FF6B7A;
      --hand-blue: #5BA3FF;
      --border: rgba(255,255,255,0.12);
    }
    * { box-sizing: border-box; }
    body { margin: 0; font-family: 'Inter', -apple-system, system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

    /* NAV STICKY MACOS */
    .nav-bar { position: sticky; top: 16px; z-index: 100; max-width: 1400px; margin: 16px auto 0; padding: 0 24px; }
    .nav-window { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 14px; padding: 12px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06); }
    body[data-theme="dark"] .nav-window { background: rgba(44,44,46,0.85); }
    .nav-dots { display: flex; gap: 8px; flex-shrink: 0; }
    .nav-dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08); }
    .nav-dot.red { background: #FF5F57; } .nav-dot.yellow { background: #FEBC2E; } .nav-dot.green { background: #28C840; }
    .nav-brand { font-weight: 700; font-size: 15px; }
    .nav-links { margin-left: auto; display: flex; gap: 22px; align-items: center; }
    .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { background: linear-gradient(180deg, #1A8AFF 0%, #006EE6 100%); color: white !important; padding: 8px 16px; border-radius: 10px; font-weight: 600; box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 10px rgba(0,122,255,0.25); }

    /* HERO */
    .bo-hero { max-width: 920px; margin: 60px auto 24px; padding: 0 28px; text-align: center; position: relative; }
    .bo-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text-tertiary); letter-spacing: 0.04em; margin-bottom: 18px; display: inline-block; }
    .bo-hero h1 { font-size: 52px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 18px; color: var(--text); }
    .underline-hand { position: relative; display: inline-block; }
    .underline-hand::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 6%; height: 14px; background: rgba(255, 217, 100, 0.55); z-index: -1; transform: rotate(-1deg); border-radius: 2px; }
    body[data-theme="dark"] .underline-hand::after { background: rgba(255, 217, 100, 0.32); }
    .bo-hero-sub { font-size: 19px; color: var(--text-secondary); line-height: 1.5; margin: 0 auto 14px; max-width: 660px; }
    .bo-hero-handnote { font-family: 'Caveat', cursive; font-size: 24px; color: var(--hand-red); transform: rotate(-1deg); display: inline-block; margin-top: 12px; font-weight: 600; }

    /* DISCLOSURE DGCCRF — bandeau post-it */
    .bo-disclosure {
      max-width: 720px;
      margin: 36px auto 24px;
      background: var(--postit-yellow);
      background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 40%);
      padding: 20px 26px 16px;
      border-radius: 3px 5px 4px 3px;
      transform: rotate(-0.6deg);
      box-shadow: 0 1px 1px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.1);
      position: relative;
      font-family: 'Shadows Into Light Two', cursive;
      font-size: 16px;
      color: #1D1D1F;
      line-height: 1.45;
    }
    body[data-theme="dark"] .bo-disclosure { color: #1D1D1F; }
    .bo-disclosure::before { content: ""; position: absolute; top: -10px; left: 50%; margin-left: -36px; width: 72px; height: 19px; background: rgba(255, 200, 220, 0.7); background-image: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 50%); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 4px rgba(0,0,0,0.08); transform: rotate(-3deg); }
    .bo-disclosure strong { font-family: 'Caveat', cursive; font-weight: 700; color: var(--hand-red); font-size: 20px; }
    .bo-disclosure a { color: var(--hand-blue); text-decoration: underline; text-underline-offset: 2px; font-family: 'Caveat', cursive; font-weight: 700; font-size: 18px; }

    /* TABLE OF CONTENTS — chips de catégories */
    .bo-toc { max-width: 920px; margin: 24px auto 60px; padding: 0 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .bo-toc a { padding: 8px 14px; background: var(--bg-window-solid); border: 1px solid var(--border); border-radius: 999px; font-size: 13.5px; color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: all 0.2s; }
    .bo-toc a:hover { color: var(--text); border-color: var(--accent); transform: translateY(-1px); }

    /* SECTION par catégorie */
    .bo-cat { max-width: 1180px; margin: 0 auto 72px; padding: 0 28px; }
    .bo-cat-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px dashed var(--border); }
    .bo-cat-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-tertiary); letter-spacing: 0.04em; }
    .bo-cat-icon { font-size: 28px; line-height: 1; }
    .bo-cat-title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0; color: var(--text); }
    .bo-cat-sub { font-size: 15px; color: var(--text-tertiary); margin-left: auto; font-family: 'Caveat', cursive; font-weight: 600; font-size: 19px; color: var(--hand-blue); transform: rotate(-1deg); }

    /* GRID polaroids */
    .bo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 24px; padding-top: 14px; }
    .bo-grid.single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
    .bo-grid.triple { grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 980px) { .bo-grid.triple { grid-template-columns: 1fr; } }

    /* CARD outil — style polaroid */
    .tool-card {
      background: var(--bg-window-solid);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 0;
      box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 8px 22px rgba(0,0,0,0.06);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
      position: relative;
      overflow: visible;
      display: flex;
      flex-direction: column;
    }
    .tool-card:nth-child(odd) { transform: rotate(-0.5deg); }
    .tool-card:nth-child(even) { transform: rotate(0.5deg); }
    .tool-card:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 16px 36px rgba(0,0,0,0.1); }

    /* Star pour outil principal */
    .tool-card.featured { border: 2px solid #FFB800; box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 12px 30px rgba(255,184,0,0.18); }
    .tool-card .featured-badge {
      position: absolute;
      top: -14px;
      right: 22px;
      background: linear-gradient(135deg, #FFB800, #FF9500);
      color: white;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(255,149,0,0.35);
      z-index: 3;
    }

    /* Header carte — logo + nom */
    .tool-head { padding: 24px 26px 8px; display: flex; align-items: center; gap: 16px; }
    .tool-logo {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      overflow: hidden;
      padding: 8px;
    }
    body[data-theme="dark"] .tool-logo { background: #F5F5F7; border-color: rgba(255,255,255,0.06); }
    .tool-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .tool-name-block { flex: 1; min-width: 0; }
    .tool-name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0; color: var(--text); }
    .tool-tagline { font-size: 13px; color: var(--text-tertiary); margin-top: 2px; font-family: 'JetBrains Mono', monospace; }

    /* Verdict (mini-review honnête) */
    .tool-body { padding: 14px 26px 8px; flex: 1; }
    .tool-verdict { font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); margin: 0; }
    .tool-verdict strong { color: var(--text); font-weight: 600; }

    /* Pros / cons mini */
    .tool-pros { display: flex; flex-direction: column; gap: 6px; margin: 14px 0 0; font-size: 13.5px; }
    .tool-pros li { list-style: none; display: flex; gap: 8px; align-items: flex-start; color: var(--text-secondary); }
    .tool-pros li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .tool-pros li.con::before { content: "—"; color: var(--orange); }

    /* Footer carte — CTA centré */
    .tool-foot { padding: 16px 26px 22px; margin-top: 14px; border-top: 1px solid var(--border); display: flex; justify-content: center; }
    .tool-cta {
      background: linear-gradient(180deg, #1A8AFF 0%, #006EE6 100%);
      color: white;
      text-decoration: none;
      padding: 10px 22px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 10px rgba(0,122,255,0.25);
      transition: transform 0.2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .tool-cta:hover { transform: translateY(-1px); }
    .tool-cta.secondary { background: var(--bg-elevated); color: var(--text); box-shadow: inset 0 0 0 1px var(--border); }
    body[data-theme="dark"] .tool-cta.secondary { background: var(--bg-elevated); }

    /* Code promo en sticker */
    .tool-promo {
      position: absolute;
      top: 18px; right: -10px;
      background: var(--postit-yellow);
      background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 40%);
      padding: 8px 13px 6px;
      transform: rotate(7deg);
      box-shadow: 0 1px 1px rgba(0,0,0,0.08), 0 6px 14px rgba(0,0,0,0.14);
      font-family: 'Shadows Into Light Two', cursive;
      font-size: 12.5px;
      color: #1D1D1F;
      line-height: 1.2;
      max-width: 130px;
      border-radius: 2px 4px 3px 4px;
      z-index: 4;
      pointer-events: none;
      text-align: center;
    }
    .tool-promo strong { font-family: 'JetBrains Mono', monospace; display: block; font-size: 14px; color: var(--hand-red); margin-top: 2px; letter-spacing: 0.02em; font-weight: 700; }

    /* Scotch décoratif sur certaines cards */
    .tool-tape { position: absolute; top: -10px; left: 24px; width: 60px; height: 19px; background: rgba(255, 240, 90, 0.62); background-image: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 50%); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 4px rgba(0,0,0,0.08); transform: rotate(-9deg); pointer-events: none; }
    body[data-theme="dark"] .tool-tape { background: rgba(255, 240, 90, 0.3); }

    /* OUTRO — CTA discovery */
    .bo-outro { max-width: 880px; margin: 40px auto 110px; padding: 60px 28px 20px; position: relative; text-align: center; }
    .outro-handarrow { font-family: 'Caveat', cursive; font-size: 24px; color: var(--hand-blue); transform: rotate(-2deg); display: inline-block; margin-bottom: 28px; font-weight: 600; }
    .outro-card {
      display: inline-block;
      position: relative;
      background: #FFFEF4;
      background-image: linear-gradient(180deg, rgba(0,0,0,0.012) 0%, transparent 100%), radial-gradient(ellipse at 85% 95%, rgba(0,0,0,0.05), transparent 65%);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 4px 6px 3px 5px;
      padding: 34px 42px 30px;
      transform: rotate(-1deg);
      box-shadow: 0 1px 1px rgba(0,0,0,0.06), 0 10px 22px rgba(0,0,0,0.1), 0 24px 50px rgba(0,0,0,0.06);
      max-width: 520px;
    }
    body[data-theme="dark"] .outro-card { background: #F2EFE0; color: #1D1D1F; }
    .outro-tape-l { position: absolute; top: -11px; left: 18%; width: 72px; height: 20px; background: rgba(255, 240, 90, 0.7); background-image: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 50%); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 4px rgba(0,0,0,0.08); transform: rotate(-12deg); pointer-events: none; }
    .outro-tape-r { position: absolute; top: -11px; right: 16%; width: 66px; height: 19px; background: rgba(255, 200, 220, 0.7); background-image: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 50%); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 4px rgba(0,0,0,0.08); transform: rotate(9deg); pointer-events: none; }
    .outro-title { font-family: 'Shadows Into Light Two', cursive; font-size: 30px; color: #1D1D1F; line-height: 1.2; margin: 0 0 14px; }
    .outro-title em { font-family: 'Caveat', cursive; font-style: normal; color: var(--hand-red); font-weight: 700; }
    .outro-body { font-family: 'Caveat', cursive; font-size: 19px; color: #2C2C2E; line-height: 1.4; margin: 0 0 20px; font-weight: 500; }
    .outro-cta { display: inline-flex; align-items: center; gap: 8px; font-family: 'Caveat', cursive; font-size: 22px; font-weight: 700; color: var(--hand-blue); text-decoration: none; border-bottom: 2px solid var(--hand-blue); padding-bottom: 2px; transition: transform 0.3s; }
    .outro-cta:hover { transform: translateX(4px); }
    .outro-sign { display: block; font-family: 'Caveat', cursive; font-size: 22px; color: #1D1D1F; margin-top: 16px; font-weight: 700; letter-spacing: 0.02em; }

    /* FOOTER */
    .legal-footer { background: var(--bg-window-solid); border-top: 1px solid var(--border); padding: 48px 24px 32px; }
    .legal-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
    .legal-footer-brand { font-weight: 700; margin-bottom: 8px; }
    .legal-footer-tagline { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
    .legal-footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-tertiary); margin: 0 0 12px; }
    .legal-footer ul { list-style: none; padding: 0; margin: 0; }
    .legal-footer li { margin-bottom: 6px; }
    .legal-footer a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
    .legal-footer a:hover { color: var(--text); }
    .legal-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-tertiary); display: flex; justify-content: space-between; }

    @media (max-width: 900px) {
      .bo-hero h1 { font-size: 36px; }
      .bo-grid { grid-template-columns: 1fr; }
      .bo-cat-header { flex-wrap: wrap; }
      .bo-cat-sub { margin-left: 0; width: 100%; }
      .legal-footer-inner { grid-template-columns: 1fr 1fr; }
      .nav-links a:not(.nav-cta) { display: none; }
    }