: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;
    }
    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 */
    .bl-hero { max-width: 920px; margin: 60px auto 28px; padding: 0 28px; text-align: center; position: relative; }
    .bl-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text-tertiary); letter-spacing: 0.04em; margin-bottom: 18px; display: inline-block; }
    .bl-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); }
    .bl-hero-sub { font-size: 19px; color: var(--text-secondary); line-height: 1.5; margin: 0 auto 14px; max-width: 660px; }
    .bl-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; }

    /* FILTRES catégories */
    .bl-filters { max-width: 920px; margin: 20px auto 50px; padding: 0 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .bl-filter {
      padding: 8px 16px;
      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;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .bl-filter:hover { color: var(--text); border-color: var(--accent); transform: translateY(-1px); }
    .bl-filter.active { background: var(--text); color: var(--bg); border-color: var(--text); }
    .bl-filter .bl-count { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; opacity: 0.65; }

    /* FEATURED article — grande card horizontale */
    .bl-featured-wrap { max-width: 1180px; margin: 0 auto 72px; padding: 0 28px; }
    .bl-featured {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 0;
      background: var(--bg-window-solid);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: visible;
      position: relative;
      box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 16px 36px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .bl-featured:hover { transform: translateY(-3px); box-shadow: 0 1px 1px rgba(0,0,0,0.04), 0 22px 48px rgba(0,0,0,0.1); }
    .bl-featured-img {
      position: relative;
      min-height: 360px;
      border-radius: 18px 0 0 18px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #6E5BFF 0%, #3D2BBF 100%);
    }
    .bl-featured-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%), radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15), transparent 60%);
    }
    .bl-featured-img .bl-img-glyph { position: relative; font-size: 120px; line-height: 1; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2)); }
    .bl-featured-img .bl-img-label {
      position: absolute;
      bottom: 24px; left: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    /* Scotch jaune sur featured */
    .bl-featured-tape {
      position: absolute;
      top: -14px; left: 32%;
      width: 88px; height: 22px;
      background: rgba(255, 240, 90, 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 3px 6px rgba(0,0,0,0.1);
      transform: rotate(-7deg);
      pointer-events: none;
      z-index: 3;
    }
    /* Post-it "à lire" */
    .bl-featured-postit {
      position: absolute;
      top: 22px; right: -16px;
      background: var(--postit-yellow);
      background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 40%);
      padding: 10px 14px 8px;
      transform: rotate(9deg);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 18px rgba(0,0,0,0.14);
      font-family: 'Shadows Into Light Two', cursive;
      font-size: 14px;
      color: #1D1D1F;
      line-height: 1.2;
      max-width: 130px;
      border-radius: 2px 4px 3px 4px;
      z-index: 4;
      pointer-events: none;
      text-align: center;
    }
    .bl-featured-postit strong { display: block; font-family: 'Caveat', cursive; font-weight: 700; color: var(--hand-red); font-size: 18px; margin-top: 2px; }

    .bl-featured-body { padding: 36px 42px 32px; display: flex; flex-direction: column; justify-content: center; }
    .bl-featured-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-tertiary); margin-bottom: 14px; flex-wrap: wrap; }
    .bl-cat-chip { padding: 4px 10px; border-radius: 6px; background: rgba(0,122,255,0.1); color: var(--accent); font-weight: 600; font-size: 11.5px; letter-spacing: 0.02em; text-transform: uppercase; }
    .bl-cat-chip.cat-redaction { background: rgba(110,91,255,0.12); color: #5A47E0; }
    body[data-theme="dark"] .bl-cat-chip.cat-redaction { background: rgba(110,91,255,0.22); color: #B3A5FF; }
    .bl-cat-chip.cat-audit { background: rgba(52,199,89,0.12); color: #1F8A3F; }
    body[data-theme="dark"] .bl-cat-chip.cat-audit { background: rgba(52,199,89,0.22); color: #5BD874; }
    .bl-cat-chip.cat-avis { background: rgba(255,149,0,0.12); color: #C46900; }
    body[data-theme="dark"] .bl-cat-chip.cat-avis { background: rgba(255,149,0,0.22); color: #FFB84D; }
    .bl-cat-chip.cat-strategie { background: rgba(175,82,222,0.12); color: #8B3FBA; }
    body[data-theme="dark"] .bl-cat-chip.cat-strategie { background: rgba(175,82,222,0.22); color: #D7A4FF; }
    .bl-cat-chip.cat-tuto { background: rgba(255,59,48,0.12); color: #C5301D; }
    body[data-theme="dark"] .bl-cat-chip.cat-tuto { background: rgba(255,59,48,0.22); color: #FF8585; }

    .bl-featured-body h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 14px; color: var(--text); }
    .bl-featured-body h2 a { color: inherit; text-decoration: none; }
    .bl-featured-excerpt { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 22px; }
    .bl-featured-footer { display: flex; align-items: center; gap: 14px; }
    .bl-author { display: flex; align-items: center; gap: 10px; }
    .bl-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #1A8AFF, #006EE6); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 13px; flex-shrink: 0; }
    .bl-author-name { font-size: 13.5px; color: var(--text); font-weight: 600; }
    .bl-author-date { font-size: 12.5px; color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; }
    .bl-read-cta {
      margin-left: auto;
      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: 1px;
      transition: transform 0.2s;
      transform: rotate(-1deg);
      display: inline-block;
    }
    .bl-read-cta:hover { transform: rotate(-1deg) translateX(4px); }

    /* GRID articles */
    .bl-grid-wrap { max-width: 1180px; margin: 0 auto 80px; padding: 0 28px; }
    .bl-grid-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text-tertiary); letter-spacing: 0.04em; margin-bottom: 16px; display: block; }
    .bl-grid-title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 32px; color: var(--text); display: flex; align-items: baseline; gap: 14px; }
    .bl-grid-title .bl-grid-sub-handnote { font-family: 'Caveat', cursive; font-weight: 600; font-size: 20px; color: var(--hand-blue); transform: rotate(-1deg); margin-left: auto; }
    .bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 26px; }

    /* CARD article */
    .bl-card {
      background: var(--bg-window-solid);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 1px 1px rgba(0,0,0,0.03), 0 6px 18px rgba(0,0,0,0.05);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
      position: relative;
    }
    .bl-card:nth-child(3n+1) { transform: rotate(-0.4deg); }
    .bl-card:nth-child(3n+2) { transform: rotate(0.3deg); }
    .bl-card:nth-child(3n) { transform: rotate(0.5deg); }
    .bl-card:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 0 1px 1px rgba(0,0,0,0.03), 0 14px 32px rgba(0,0,0,0.1); }

    .bl-card-img {
      position: relative;
      aspect-ratio: 16 / 9;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .bl-card-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 50%), radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15), transparent 60%);
    }
    .bl-card-img .bl-img-glyph { position: relative; font-size: 64px; line-height: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18)); }
    .bl-card-img.img-redaction { background: linear-gradient(135deg, #6E5BFF, #3D2BBF); }
    .bl-card-img.img-audit { background: linear-gradient(135deg, #34C759, #1F8A3F); }
    .bl-card-img.img-avis { background: linear-gradient(135deg, #FF9500, #C46900); }
    .bl-card-img.img-strategie { background: linear-gradient(135deg, #AF52DE, #6B2BA0); }
    .bl-card-img.img-tuto { background: linear-gradient(135deg, #FF3B30, #C5301D); }

    .bl-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
    .bl-card-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: 12px; color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; }
    .bl-card-meta .bl-cat-chip { font-family: 'Inter', sans-serif; }
    .bl-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 10px; color: var(--text); }
    .bl-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 18px; flex: 1; }
    .bl-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-tertiary); }
    .bl-card-foot .bl-card-date { font-family: 'JetBrains Mono', monospace; }
    .bl-card-foot .bl-card-arrow { font-size: 16px; color: var(--accent); transition: transform 0.2s; }
    .bl-card:hover .bl-card-arrow { transform: translateX(3px); }

    /* PAGINATION / "load more" */
    .bl-load { text-align: center; margin: 40px 0 80px; }
    .bl-load-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 22px;
      background: var(--bg-window-solid);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
    }
    .bl-load-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
    .bl-load-note { font-family: 'Caveat', cursive; font-size: 18px; color: var(--text-tertiary); margin-top: 14px; transform: rotate(-1deg); display: inline-block; }

    /* NEWSLETTER capture */
    .bl-news {
      max-width: 920px; margin: 0 auto 80px; padding: 0 28px;
    }
    .bl-news-card {
      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.04), transparent 65%);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 4px 6px 3px 5px;
      padding: 40px 50px 36px;
      position: relative;
      box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 12px 28px rgba(0,0,0,0.08);
      transform: rotate(-0.6deg);
    }
    body[data-theme="dark"] .bl-news-card { background: #F2EFE0; color: #1D1D1F; }
    .bl-news-tape-l { position: absolute; top: -12px; left: 12%; width: 80px; height: 21px; 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; }
    .bl-news-tape-r { position: absolute; top: -12px; right: 14%; 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(11deg); pointer-events: none; }
    .bl-news-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(0,0,0,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
    .bl-news h3 { font-family: 'Shadows Into Light Two', cursive; font-size: 32px; color: #1D1D1F; line-height: 1.15; margin: 0 0 14px; }
    .bl-news h3 em { font-family: 'Caveat', cursive; font-style: normal; color: var(--hand-red); font-weight: 700; }
    .bl-news p { font-family: 'Caveat', cursive; font-size: 19px; line-height: 1.45; color: #2C2C2E; margin: 0 0 22px; max-width: 640px; }
    .bl-news-form { display: flex; gap: 10px; max-width: 520px; flex-wrap: wrap; }
    .bl-news-form input[type="email"] {
      flex: 1;
      min-width: 240px;
      padding: 12px 16px;
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 10px;
      background: rgba(255,255,255,0.7);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: #1D1D1F;
    }
    .bl-news-form input[type="email"]:focus { outline: none; border-color: var(--hand-blue); }
    .bl-news-form button {
      background: linear-gradient(180deg, #1A8AFF 0%, #006EE6 100%);
      color: white;
      border: none;
      padding: 12px 22px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      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;
    }
    .bl-news-form button:hover { transform: translateY(-1px); }
    .bl-news-mini { font-family: 'Caveat', cursive; font-size: 16px; color: rgba(0,0,0,0.6); margin-top: 14px; }

    /* 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: 980px) {
      .bl-hero h1 { font-size: 36px; }
      .bl-featured { grid-template-columns: 1fr; }
      .bl-featured-img { border-radius: 18px 18px 0 0; min-height: 240px; }
      .bl-grid { grid-template-columns: 1fr; }
      .legal-footer-inner { grid-template-columns: 1fr 1fr; }
      .nav-links a:not(.nav-cta) { display: none; }
    }