/* Caution Fighter : identite "fantaisiste mais serieux" : creme, bleu nuit, corail, jaune solaire */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,900&family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
  --paper: #faf5e9;
  --paper-card: #fffdf6;
  --ink: #1d2440;
  --ink-soft: #5a5f75;
  --accent: #e6543d;
  --accent-dark: #c43e29;
  --sun: #f5b83d;
  --sun-deep: #b47d13;
  --ok: #2e7d4f;
  --line: #eadfc4;
  --line-strong: #d5c9a8;
  --display: "Fraunces", Georgia, serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --body: "Archivo", -apple-system, Arial, sans-serif;
  --radius: 16px;
  --shadow-soft: 0 2px 4px rgba(29, 36, 64, 0.05), 0 12px 32px rgba(29, 36, 64, 0.1);
  --shadow-card: 0 1px 2px rgba(29, 36, 64, 0.05), 0 6px 16px rgba(29, 36, 64, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Bande signature : trois filets empiles (nuit, corail, soleil) */
.airmail {
  height: 6px;
  background: linear-gradient(to bottom,
    var(--ink) 0 2px,
    var(--accent) 2px 4px,
    var(--sun) 4px 6px);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

a { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 233, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.25rem; color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.logo:hover { color: var(--ink); text-decoration: none; }
.logo svg { flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  color: var(--ink); font-weight: 600; font-size: 0.92rem;
  font-family: var(--body); text-decoration: none;
}
.main-nav a:hover { color: var(--accent-dark); }
@media (max-width: 760px) {
  .main-nav a:not(.btn) { display: none; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fffdf6;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); color: #fffdf6; text-decoration: none; transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.btn-secondary { background: var(--paper-card); color: var(--ink); }
.btn-secondary:hover { background: var(--paper); color: var(--ink); }
.btn-big { font-size: 1.08rem; padding: 17px 34px; }
.btn-light { background: var(--sun); color: var(--ink); }
.btn-light:hover { background: #e9a92c; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 52px; }
.hero .container {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 52px; align-items: center;
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-leon { order: -1; margin: 0 auto; }
  .hero-badges { justify-content: center; }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .sub {
  font-size: 1.16rem; color: var(--ink-soft);
  max-width: 560px; margin-bottom: 30px;
}
.hero .sub strong { color: var(--ink); }
.hero-leon { position: relative; width: min(330px, 76vw); }
.hero-leon svg { width: 100%; height: auto; display: block; }
.leon-tag {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--paper-card); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 8px 20px; white-space: nowrap; text-transform: uppercase;
  box-shadow: 0 3px 0 var(--ink);
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.hero-badges span {
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  color: var(--ink);
  padding: 7px 15px;
  border: 2px solid var(--line-strong); border-radius: 999px;
  background: var(--paper-card);
}

/* ---------- Sections ---------- */
section { padding: 60px 0; }
.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 12px; text-align: center;
}
.section-sub {
  text-align: center; color: var(--ink-soft); max-width: 660px;
  margin: 0 auto 40px; font-size: 1.05rem;
}

/* ---------- Formulaires ---------- */
.calc-card {
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 rgba(29, 36, 64, 0.12), var(--shadow-card);
  padding: 0;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.calc-card .airmail { display: block; }
.calc-card-inner { padding: 34px 38px 38px; }
@media (max-width: 560px) { .calc-card-inner { padding: 26px 20px 28px; } }
.calc-card h3 {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 2px dashed var(--line-strong); padding-bottom: 10px;
}
.form-ref {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--mono); font-size: 0.62rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.field { margin-bottom: 19px; }
.field label {
  display: block; font-family: var(--body); font-weight: 700;
  font-size: 0.9rem; color: var(--ink);
  margin-bottom: 7px;
}
.field .hint { font-size: 0.83rem; color: var(--ink-soft); margin-top: 5px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 1.02rem;
  font-family: var(--mono);
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(245, 184, 61, 0.4);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-error {
  color: var(--accent-dark); font-weight: 700; font-size: 0.9rem;
  margin-top: 12px; display: none;
}

/* ---------- L'ecran du Moment ---------- */
.moment {
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0;
  text-align: center;
  max-width: 680px;
  margin: 32px auto 0;
  position: relative;
  overflow: hidden;
}
.moment .airmail { background: linear-gradient(to bottom, var(--sun) 0 2px, var(--accent) 2px 4px, var(--sun) 4px 6px); }
.moment-inner { padding: 44px 32px 34px; position: relative; }
.moment .kicker {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.74rem; font-weight: 600; color: var(--sun);
  margin-bottom: 4px;
}
.moment .amount {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 9vw, 5rem);
  line-height: 1.02; margin: 10px 0 16px;
  color: #fffdf6;
  letter-spacing: -0.01em;
}
.moment .breakdown { font-size: 1.05rem; color: rgba(250, 245, 233, 0.85); margin-bottom: 6px; }
.moment .breakdown strong { color: var(--sun); font-weight: 700; }
.moment .law {
  font-family: var(--mono); font-size: 0.66rem; color: rgba(250, 245, 233, 0.45);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.moment .deadline-note { font-size: 0.95rem; color: rgba(250, 245, 233, 0.68); margin-bottom: 26px; }
.moment-stamp {
  position: absolute; top: 28px; right: -12px;
  transform: rotate(7deg);
  font-family: var(--mono); font-weight: 600; font-size: 0.84rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #ff7c63;
  border: 2px double #ff7c63;
  border-radius: 6px;
  padding: 7px 28px 7px 16px;
  opacity: 0.95;
  pointer-events: none;
}
.moment-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.moment .brand-mark {
  margin-top: 28px; font-family: var(--mono); font-size: 0.66rem; font-weight: 600;
  color: rgba(250, 245, 233, 0.35); letter-spacing: 0.16em; text-transform: uppercase;
}

/* ---------- Etapes ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 5px 0 rgba(29, 36, 64, 0.1);
  padding: 30px 28px;
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sun); border: 2px solid var(--ink);
  font-family: var(--display); font-weight: 900; font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.16rem; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Bloc loi ---------- */
.law-block {
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 5px 0 rgba(29, 36, 64, 0.1);
  padding: 34px 38px; max-width: 780px; margin: 0 auto;
  position: relative;
}
.law-block::before {
  content: "LE TEXTE EXACT";
  position: absolute; top: -14px; left: 26px;
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; background: var(--sun); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 14px;
}
.law-block blockquote {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 1.2rem; line-height: 1.5; margin-bottom: 14px;
}
.law-block cite { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-soft); font-style: normal; }

/* ---------- Leon ---------- */
.leon-bio {
  display: grid; grid-template-columns: auto 1fr; gap: 36px;
  align-items: center;
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 rgba(29, 36, 64, 0.12);
  padding: 38px 42px; max-width: 860px; margin: 0 auto;
}
@media (max-width: 640px) { .leon-bio { grid-template-columns: 1fr; text-align: center; } .leon-bio svg { margin: 0 auto; } }
.leon-bio svg { width: 160px; height: auto; }
.leon-bio h3 { font-family: var(--display); font-weight: 900; font-size: 1.5rem; margin-bottom: 10px; }
.leon-bio p { color: var(--ink-soft); margin-bottom: 10px; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0; max-width: 500px; margin: 0 auto; text-align: center;
  overflow: hidden;
}
.pricing-card .airmail { background: linear-gradient(to bottom, var(--sun) 0 2px, var(--accent) 2px 4px, var(--sun) 4px 6px); }
.pricing-inner { padding: 40px 36px; }
.pricing-card .price {
  font-family: var(--display); font-weight: 900; font-size: 3.4rem; line-height: 1.05;
  color: #fffdf6;
}
.pricing-card .price small {
  display: block; font-family: var(--mono); font-size: 0.7rem;
  font-weight: 600; color: var(--sun); text-transform: uppercase; letter-spacing: 0.16em;
  margin-top: 8px;
}
.pricing-card ul { list-style: none; margin: 24px 0 28px; text-align: left; }
.pricing-card li {
  padding: 9px 0 9px 32px; position: relative; color: rgba(250, 245, 233, 0.88);
  font-size: 0.97rem;
}
.pricing-card li::before {
  content: "✓"; position: absolute; left: 4px;
  color: var(--sun); font-weight: 800;
}
.pricing-anchor { margin-top: 18px; font-size: 0.84rem; color: rgba(250, 245, 233, 0.5); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: 14px;
  margin-bottom: 14px; padding: 0 24px;
  box-shadow: 0 3px 0 rgba(29, 36, 64, 0.1);
}
.faq summary {
  font-family: var(--display); font-weight: 700; font-size: 1.06rem;
  padding: 19px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::after {
  content: "+"; font-family: var(--mono); font-size: 1.3rem;
  color: var(--accent); font-weight: 600; flex-shrink: 0;
}
.faq details[open] summary::after { content: "×"; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }

/* ---------- Lettre ---------- */
.letter-preview {
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  padding: 54px 58px; max-width: 780px;
  margin: 32px auto; font-size: 0.99rem; line-height: 1.8;
  white-space: pre-wrap; position: relative; overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
}
@media (max-width: 640px) { .letter-preview { padding: 32px 24px; } }
.letter-preview.locked .letter-body-lower {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}
.paywall-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 54px 32px 38px;
  background: linear-gradient(to bottom, rgba(255, 253, 246, 0) 0%, rgba(255, 253, 246, 0.97) 26%, #fffdf6 100%);
  text-align: center;
}
.paywall-overlay h3 { font-family: var(--display); font-weight: 900; font-size: 1.45rem; margin-bottom: 10px; }
.paywall-overlay p { font-family: var(--body); color: var(--ink-soft); margin-bottom: 20px; font-size: 0.95rem; }
.paywall-note { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-soft); margin-top: 15px; letter-spacing: 0.04em; }
.letter-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 26px 0 10px; }

/* ---------- Pages de contenu ---------- */
.content-page { max-width: 780px; margin: 0 auto; padding: 54px 24px 78px; }
.content-page h1 { font-family: var(--display); font-weight: 900; font-size: 2.1rem; letter-spacing: -0.01em; margin-bottom: 10px; }
.content-page .updated { font-family: var(--mono); color: var(--ink-soft); font-size: 0.68rem; margin-bottom: 36px; text-transform: uppercase; letter-spacing: 0.12em; }
.content-page h2 { font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin: 36px 0 14px; }
.content-page h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin: 26px 0 10px; }
.content-page p, .content-page li { color: var(--ink-soft); margin-bottom: 12px; }
.content-page ul, .content-page ol { padding-left: 24px; margin-bottom: 16px; }
.content-page strong { color: var(--ink); }
.breadcrumb { font-family: var(--mono); font-size: 0.66rem; color: var(--ink-soft); margin-bottom: 26px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Auteur ---------- */
.author-card {
  display: flex; gap: 30px; align-items: flex-start;
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 5px 0 rgba(29, 36, 64, 0.1);
  padding: 36px;
  margin-bottom: 36px;
}
@media (max-width: 560px) { .author-card { flex-direction: column; } }
.author-card img {
  width: 120px; height: 120px; border-radius: 14px; object-fit: cover;
  border: 2px solid var(--ink);
}
.author-card h2 { margin: 0 0 4px; font-family: var(--display); font-weight: 900; font-size: 1.45rem; }
.author-card .role { font-family: var(--mono); color: var(--accent-dark); font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 13px; }
.author-links { display: flex; gap: 17px; flex-wrap: wrap; margin-top: 12px; }
.author-links a { font-weight: 600; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(250, 245, 233, 0.78);
  margin-top: 70px; padding: 0 0 30px;
}
.site-footer > .airmail {
  background: linear-gradient(to bottom, var(--sun) 0 2px, var(--accent) 2px 4px, var(--sun) 4px 6px);
  margin-bottom: 54px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px;
  padding-bottom: 42px; border-bottom: 1px solid rgba(250, 245, 233, 0.15);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: var(--paper); margin-bottom: 13px; }
.footer-brand p { font-size: 0.9rem; color: rgba(250, 245, 233, 0.55); max-width: 280px; }
.site-footer h4 {
  color: var(--sun); font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 15px; font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(250, 245, 233, 0.82); font-size: 0.92rem; text-decoration: none; }
.site-footer a:hover { color: #fffdf6; text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 25px; font-family: var(--mono); font-size: 0.66rem;
  color: rgba(250, 245, 233, 0.42);
  flex-wrap: wrap; gap: 10px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- Outils ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
@media (max-width: 700px) { .tools-grid { grid-template-columns: 1fr; } }
.tool-card {
  display: block; background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 0 4px 0 rgba(29, 36, 64, 0.1);
  padding: 25px 27px;
  text-decoration: none; color: var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.tool-card:hover { color: var(--ink); text-decoration: none; transform: translateY(-3px); box-shadow: 0 7px 0 rgba(29, 36, 64, 0.12); }
.tool-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.07rem; margin-bottom: 7px; display: flex; align-items: center; }
.tool-card h3 span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; border-radius: 50%;
  background: var(--sun); border: 2px solid var(--ink);
  font-family: var(--mono); font-weight: 600; font-size: 0.68rem; color: var(--ink);
  margin-right: 12px; flex-shrink: 0;
}
.tool-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.related-tools {
  max-width: 780px; margin: 46px auto 0; background: var(--paper-card);
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 0 4px 0 rgba(29, 36, 64, 0.1); padding: 28px 34px;
}
.related-tools h2 {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-dark); margin-bottom: 15px;
}
.related-tools ul { list-style: none; padding: 0; margin: 0; }
.related-tools li { padding: 8px 0 8px 26px; position: relative; margin: 0; }
.related-tools li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--accent); font-family: var(--mono); font-weight: 600;
}
.tool-cta {
  max-width: 780px; margin: 46px auto 0; background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 38px 34px; text-align: center;
}
.tool-cta h2 { font-family: var(--display); font-weight: 900; font-size: 1.55rem; margin-bottom: 10px; color: #fffdf6; }
.tool-cta p { color: rgba(250, 245, 233, 0.72); margin-bottom: 22px; }
.tool-result {
  max-width: 780px; margin: 30px auto 0; background: var(--paper-card);
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 0 6px 0 rgba(29, 36, 64, 0.12);
  padding: 34px 36px; text-align: center;
}
.tool-result .big {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  margin: 10px 0; line-height: 1.12; letter-spacing: -0.01em;
}
.tool-result .verdict-ok { color: var(--ok); }
.tool-result .verdict-ko { color: var(--accent-dark); }
.tool-result .detail { color: var(--ink-soft); font-size: 0.98rem; }
.checklist-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 2px dashed var(--line);
}
.checklist-item input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--accent); margin-top: 3px; }
.progress-track { background: var(--paper-card); border: 2px solid var(--ink); height: 24px; position: relative; border-radius: 999px; overflow: hidden; }
.progress-fill { background: var(--sun); height: 100%; transition: width 0.2s ease; }

/* ---------- Divers ---------- */
.disclaimer {
  max-width: 780px; margin: 32px auto 0; padding: 17px 22px;
  background: var(--paper-card); border: 2px dashed var(--line-strong); border-radius: 12px;
  font-size: 0.85rem; color: var(--ink-soft);
}
.hidden { display: none !important; }

/* ---------- Impression de la lettre ---------- */
@media print {
  body * { visibility: hidden; }
  .letter-preview, .letter-preview * { visibility: visible; }
  .letter-preview {
    position: absolute; left: 0; top: 0; width: 100%;
    border: none; box-shadow: none; padding: 20mm;
  }
  .paywall-overlay, .no-print { display: none !important; }
}
