:root {
  --primary: #1e3a5f;
  --primary-dark: #0f2d4f;
  --secondary: #00b4d8;
  --bg: #f8fafc;
  --bg-alt: #eef2f6;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --border-radius: 12px;
}

* { box-sizing: border-box; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
h1, h2, h3 { color: var(--primary); line-height: 1.25; }
a { color: var(--secondary); }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.site-nav { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.site-nav-inner { max-width: 1120px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-weight: 700; font-size: 17px; }
.brand img { border-radius: 8px; }
.site-nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
.site-nav-links a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 15px; }
.site-nav-links a:hover { color: var(--secondary); }
.btn-nav { padding: 10px 22px !important; font-size: 14px !important; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; }
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav-links { display: none; flex-direction: column; width: 100%; gap: 4px; padding: 12px 0 4px; order: 3; }
  .site-nav-links.is-open { display: flex; }
}

/* ─── Buttons / pills ────────────────────────────────────────────────── */
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: var(--border-radius); padding: 14px 28px; border: none; cursor: pointer; transition: transform .15s; }
.btn:hover { transform: scale(1.02); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), #0090ad); color: white; }
.btn-lg { font-size: 18px; padding: 18px 40px; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: inherit; border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.pill-outline { background: rgba(0,180,216,.1); color: var(--secondary); }
.tag-pill { background: rgba(0,180,216,.12); color: var(--secondary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 12px; border-radius: 999px; }
.tag-pill-inverse { background: rgba(255,255,255,.15); color: white; }

/* ─── Layout helpers ─────────────────────────────────────────────────── */
.section { padding: 72px 20px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.section-dark { background: var(--primary); color: white; }
.section-dark h2 { color: white; }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.section-lead { color: var(--muted); font-size: 18px; max-width: 640px; margin: 12px auto 0; }


/* ─── Stats bar ──────────────────────────────────────────────────────── */
.stats-bar { background: white; padding: 48px 20px; }
.stats-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; text-align: center; }
@media (min-width: 700px) { .stats-inner { grid-template-columns: repeat(3, 1fr); } }
.stat-emoji { font-size: 32px; margin-bottom: 8px; }
.stat-value { font-size: 30px; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--muted); font-weight: 500; }
.stat-source { font-size: 11px; color: #94a3b8; margin-top: 2px; }

/* ─── Card grids ─────────────────────────────────────────────────────── */
.cards-3, .cards-2 { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
@media (min-width: 700px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-2 { grid-template-columns: 1fr 1fr; } }
.card { background: white; border-radius: var(--border-radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.step { position: relative; padding-top: 8px; }
.step h3 { color: white; }
.step-num { font-size: 44px; font-weight: 900; color: rgba(255,255,255,.25); position: absolute; top: -20px; left: 0; }
.step p { color: rgba(255,255,255,.85); }

/* ─── Author block ───────────────────────────────────────────────────── */
.author-block { display: flex; gap: 20px; background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.author-avatar { font-size: 36px; flex-shrink: 0; }
.author-avatar-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-weight: 700; margin: 0; }
.author-title { color: var(--muted); font-size: 13px; margin: 0 0 10px; }

.disclaimer-block { background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05); margin-top: 24px; }
.disclaimer-block p { color: var(--muted); font-size: 14px; margin: 0; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-item { background: white; border-radius: var(--border-radius); padding: 4px 24px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.faq-item summary { padding: 18px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--secondary); font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); padding-bottom: 18px; margin: 0; }
.cta-emoji { font-size: 48px; margin-bottom: 12px; }

/* ─── Blog ───────────────────────────────────────────────────────────── */
.blog-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .blog-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }
.blog-list .blog-card { display: flex; flex-direction: column; }
.blog-card { background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); text-decoration: none; color: inherit; display: block; overflow: hidden; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.blog-card-image { width: calc(100% + 48px); margin: -24px -24px 20px; max-width: none; height: 220px; object-fit: cover; display: block; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-card h2, .blog-card h3 { margin: 0 0 8px; }
.blog-card p { color: var(--muted); margin: 0; }
.blog-card-link { display: inline-block; margin-top: 12px; color: var(--secondary); font-weight: 600; font-size: 14px; }
.article-hero-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--border-radius); margin-bottom: 28px; }
.article-excerpt { font-size: 18px; color: var(--muted); border-left: 4px solid var(--secondary); padding-left: 18px; font-style: italic; margin-bottom: 32px; }
.article-source { font-size: 12px; color: #94a3b8; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 32px; }
.prose-blog h2 { font-size: 24px; margin-top: 36px; }
.prose-blog h3 { font-size: 19px; margin-top: 28px; }
.prose-blog p { color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.prose-blog ul, .prose-blog ol { padding-left: 22px; margin-bottom: 20px; }
.prose-blog li { margin-bottom: 8px; }
.prose-blog strong { color: var(--primary); }
.prose-blog blockquote { border-left: 4px solid var(--secondary); padding-left: 16px; font-style: italic; color: var(--muted); margin: 24px 0; }
.prose-blog img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); margin: 24px 0; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-alt); padding: 48px 24px; margin-top: 40px; }
.site-footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .site-footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand { color: var(--primary); font-weight: 700; text-decoration: none; display: block; margin-bottom: 8px; }
.site-footer p { color: var(--muted); font-size: 13px; margin: 4px 0; }
.footer-note { max-width: 420px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 700px) { .footer-links { align-items: flex-end; } }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }

/* ─── Pages statiques (contact, mentions, etc.) ──────────────────────── */
.page-wrap { max-width: 720px; margin: 0 auto; padding: 48px 20px; }

.contact-form { display: flex; flex-direction: column; gap: 6px; margin: 24px 0; }
.contact-form label { font-weight: 600; font-size: 14px; margin-top: 10px; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--border-radius);
  font-family: inherit; font-size: 15px; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--secondary); }
.contact-form button { align-self: flex-start; margin-top: 8px; }
.form-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; border-radius: var(--border-radius); padding: 16px 20px; }
.form-error { color: #dc2626; font-size: 14px; margin: 4px 0 0; }

/* ─── CTA capture email (fin d'article, cta_variants.py type="email_capture") ────────── */
.cta-email-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px auto 0; max-width: 480px; }
.cta-email-form input[type="email"] {
  flex: 1 1 220px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--border-radius);
  font-family: inherit; font-size: 15px;
}
.cta-email-form input[type="email"]:focus { outline: none; border-color: var(--secondary); }

/* === BEGIN thème généré (Codex, --apply-theme) === */
.hero {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 56px 28px 72px;
  background:
    radial-gradient(circle at 12% 24%, color-mix(in srgb, var(--secondary) 18%, white) 0, transparent 18%),
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--secondary) 14%, white) 0, transparent 12%),
    radial-gradient(circle at 91% 88%, color-mix(in srgb, var(--primary) 16%, white) 0, transparent 14%),
    linear-gradient(180deg, color-mix(in srgb, var(--secondary) 8%, white) 0%, #fffaf7 18%, #ffffff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0 auto auto 0;
  width: 190px;
  height: 420px;
  border-radius: 0 220px 220px 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 34%, white), color-mix(in srgb, var(--secondary) 18%, white));
  opacity: 0.42;
  transform: translateX(-48%);
}

.hero::after {
  right: 108px;
  bottom: -78px;
  width: 300px;
  height: 168px;
  border-radius: 180px 180px 0 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 92%, white), var(--primary));
  opacity: 0.98;
}

.hero-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  padding: 18px 0 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid color-mix(in srgb, var(--secondary) 24%, white);
  color: color-mix(in srgb, var(--primary) 92%, black);
  box-shadow: 0 14px 32px rgba(70, 18, 32, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--secondary) 20%, transparent);
}

.hero-copy h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(3rem, 5.4vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: color-mix(in srgb, var(--primary) 52%, #3d3d46);
  font-size: clamp(1.08rem, 1.5vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
}

.hero .btn.btn-secondary.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 34px;
  border-radius: calc(var(--border-radius) + 4px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, black), var(--primary));
  color: #fff;
  box-shadow: 0 18px 34px rgba(70, 18, 32, 0.22);
}

.hero .btn.btn-secondary.btn-lg::after {
  content: "→";
  font-size: 1.25em;
  line-height: 1;
  transition: transform 0.18s ease;
}

.hero .btn.btn-secondary.btn-lg:hover::after {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 24px 0 8px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-left {
  left: -36px;
  top: 274px;
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(70, 18, 32, 0.12);
}

.hero-orb-right {
  right: 62px;
  top: -6px;
  width: 218px;
  height: 218px;
  background: color-mix(in srgb, var(--secondary) 26%, white);
  opacity: 0.78;
}

.hero-dots,
.hero-dots-bottom {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 12px;
  pointer-events: none;
}

.hero-dots {
  top: 8px;
  right: 18px;
}

.hero-dots-bottom {
  bottom: 36px;
  right: 150px;
  opacity: 0.62;
}

.hero-dots span,
.hero-dots-bottom span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 72%, white);
}

.hero-window {
  position: relative;
  width: min(100%, 760px);
  margin-left: auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(70, 18, 32, 0.14);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.hero-window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 24px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 95%, black), var(--primary));
}

.hero-window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 68%, white);
}

.hero-window-dot:nth-child(2) {
  background: color-mix(in srgb, var(--secondary) 48%, white);
}

.hero-window-dot:nth-child(3) {
  background: color-mix(in srgb, var(--secondary) 28%, white);
}

.hero-window-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 22px;
  padding: 36px 28px 26px;
}

.hero-window-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-line,
.hero-line-sm,
.hero-side-line {
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--secondary) 18%, white), rgba(255, 255, 255, 0.92));
}

.hero-line {
  width: 46%;
  height: 16px;
}

.hero-line-sm {
  width: 82%;
  height: 12px;
}

.hero-side-line {
  width: 100%;
  height: 12px;
}

.hero-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 0.95fr;
  gap: 18px;
  align-items: start;
}

.hero-image-card {
  min-height: 188px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--secondary) 62%, white) 0 12%, transparent 13%),
    linear-gradient(135deg, color-mix(in srgb, var(--secondary) 44%, white), color-mix(in srgb, var(--secondary) 72%, white));
  position: relative;
  overflow: hidden;
}

.hero-image-card::before,
.hero-image-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 44%, white), color-mix(in srgb, var(--secondary) 20%, var(--primary)));
}

.hero-image-card::before {
  left: 18px;
  width: 58%;
  height: 46%;
  clip-path: polygon(0 100%, 36% 42%, 64% 72%, 100% 0, 100% 100%);
  border-radius: 12px;
}

.hero-image-card::after {
  right: 16px;
  width: 34%;
  height: 34%;
  clip-path: polygon(0 100%, 55% 26%, 100% 100%);
  border-radius: 10px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
}

.hero-button-chip {
  width: 116px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, black), var(--primary));
  margin-top: 8px;
}

.hero-window-footer {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--secondary) 16%, white);
  display: grid;
  gap: 14px;
}

.hero-window-footer .hero-line-sm:nth-child(1) { width: 92%; }
.hero-window-footer .hero-line-sm:nth-child(2) { width: 86%; }
.hero-window-footer .hero-line-sm:nth-child(3) { width: 74%; }

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(70, 18, 32, 0.12);
  backdrop-filter: blur(10px);
}

.hero-float-card.stats {
  top: 114px;
  right: -18px;
  width: 240px;
  padding: 22px 20px;
}

.hero-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  height: 88px;
  margin-top: 14px;
}

.hero-chart span {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 54%, white), color-mix(in srgb, var(--primary) 72%, white));
}

.hero-chart span:nth-child(1) { height: 18px; }
.hero-chart span:nth-child(2) { height: 40px; }
.hero-chart span:nth-child(3) { height: 58px; }
.hero-chart span:nth-child(4) { height: 78px; background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 75%, white), var(--primary)); }

.hero-chart-line {
  width: 100%;
  height: 56px;
  margin-top: 10px;
  border-top: 3px solid color-mix(in srgb, var(--primary) 36%, white);
  border-right: 3px solid transparent;
  transform: skewY(-18deg) translateY(-10px);
  transform-origin: left bottom;
  opacity: 0.72;
}

.hero-float-card.checklist {
  left: -62px;
  bottom: 136px;
  width: 214px;
  padding: 20px 18px;
}

.hero-checklist {
  display: grid;
  gap: 12px;
}

.hero-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
}

.hero-check::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, black), var(--primary));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hero-check span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--secondary) 18%, white), rgba(255, 255, 255, 0.96));
}

.hero-float-card.donut {
  right: 26px;
  bottom: 28px;
  width: 246px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
}

.hero-donut {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    conic-gradient(var(--primary) 0 67%, color-mix(in srgb, var(--secondary) 72%, white) 67% 100%);
  position: relative;
}

.hero-donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #fff;
}

.hero-donut-lines {
  display: grid;
  gap: 12px;
}

.hero-donut-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--secondary) 18%, white), rgba(255, 255, 255, 0.98));
}

.hero-donut-lines span:nth-child(1) { width: 88%; }
.hero-donut-lines span:nth-child(2) { width: 74%; }
.hero-donut-lines span:nth-child(3) { width: 82%; }

@media (max-width: 1100px) {
  .hero {
    padding: 48px 22px 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-float-card.checklist {
    left: 8px;
  }

  .hero-float-card.stats {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 16px 38px;
    background:
      radial-gradient(circle at 10% 12%, color-mix(in srgb, var(--secondary) 16%, white) 0, transparent 22%),
      linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  }

  .hero::before {
    width: 112px;
    height: 232px;
    transform: translateX(-58%);
    opacity: 0.36;
  }

  .hero::after {
    right: -24px;
    bottom: -42px;
    width: 146px;
    height: 82px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .hero-kicker {
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11.3vw, 3.35rem);
    letter-spacing: -0.045em;
    max-width: none;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero .btn.btn-secondary.btn-lg {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 1rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 0 26px;
  }

  .hero-window {
    width: 100%;
    border-radius: 22px;
  }

  .hero-window-bar {
    height: 34px;
    padding: 0 16px;
    border-radius: 22px 22px 0 0;
  }

  .hero-window-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px 18px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: 146px;
  }

  .hero-line {
    width: 58%;
    height: 14px;
  }

  .hero-line-sm,
  .hero-side-line {
    height: 10px;
  }

  .hero-side {
    gap: 10px;
    padding-top: 0;
  }

  .hero-button-chip {
    width: 96px;
    height: 24px;
  }

  .hero-float-card {
    position: relative;
    inset: auto;
    width: auto !important;
    margin-top: 14px;
  }

  .hero-float-card.stats,
  .hero-float-card.checklist,
  .hero-float-card.donut {
    right: auto;
    left: auto;
    bottom: auto;
    top: auto;
  }

  .hero-float-card.stats {
    padding: 18px 16px;
  }

  .hero-float-card.checklist {
    padding: 16px;
  }

  .hero-float-card.donut {
    grid-template-columns: 76px 1fr;
    padding: 18px 16px;
  }

  .hero-donut {
    width: 76px;
    height: 76px;
  }

  .hero-donut::after {
    inset: 14px;
  }

  .hero-dots {
    top: -4px;
    right: 8px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .hero-dots-bottom,
  .hero-orb-left,
  .hero-orb-right {
    display: none;
  }
}
/* === END thème généré (Codex) === */

/* === BEGIN hero compact blog (garde-fou --apply-theme) === */
.hero-compact { padding: 40px 24px 44px; }

.hero-compact .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  max-width: 1120px; /* aligné sur .site-nav-inner / .section-inner */
}

.hero-compact .hero-copy {
  max-width: 860px;
  padding: 0;
}

/* Décors en position absolue calés sur la hero d'accueil (hauteur ~470px) : hors sujet et souvent
   débordants sur une hero compacte. */
.hero-compact .hero-copy::before,
.hero-compact .hero-copy::after { display: none; }

.hero-compact .hero-copy h1 {
  max-width: none;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.breadcrumb a { color: inherit; font-size: 14px; font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.hero-compact .hero-meta,
.hero-compact .hero-lead { color: inherit; opacity: .75; }

/* Pills du template pensées pour une hero sombre (texte blanc sur voile blanc) : en currentColor
   elles restent lisibles quelle que soit la couleur de fond du thème. */
.hero-compact .tag-pill-inverse,
.hero-compact .pill {
  background: color-mix(in srgb, currentColor 14%, transparent);
  color: inherit;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hero-compact { padding: 28px 16px 32px; }
  .hero-compact .hero-copy h1 { font-size: clamp(1.75rem, 7vw, 2.3rem); }
}
/* === END hero compact blog === */
