/* ═════════════════════════════════════════════════════════════════
   FOOTPASS · COFFRE-FORT · LABO
   Deux tons (encre #0F0F10 / blanc cassé #EAEAEA) qui s'inversent,
   vert #00A37E = signal uniquement, or laiton #C9A24B = sceau premium.
   ═════════════════════════════════════════════════════════════════ */

/* ── Scène labo (fond, chrome, colonnes) ── */
.cfl-stage { min-height: 100vh; background: #0A0A0B; padding: 26px 30px 60px; box-sizing: border-box; font-family: 'Inter', sans-serif; }
.cfl-chrome { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.cfl-wordmark { font: 800 15px/1 'Orbitron', sans-serif; color: #FAFAFA; letter-spacing: 0.04em; }
.cfl-wordmark sup { font-size: 8px; }
.cfl-meta { font: 600 10px/1 'Inter', sans-serif; color: #C9A24B; letter-spacing: 0.22em; }
.cfl-cols { display: flex; gap: 46px; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.cfl-phonecol { position: relative; flex-shrink: 0; }

/* ── Tokens du coffre ── */
.cf { --acc: #00A37E; --accB: #00C49A; --gold: #C9A24B;
  --amber: #E2B248; --orange: #E08A3C; --danger: #F26D6D;
  position: absolute; inset: 0; display: flex; flex-direction: column; overflow: hidden;
  font-family: 'Inter', sans-serif; transition: background 220ms, color 220ms;
}
.cf.dark { --bg: #0F0F10; --card: #17171A; --card2: #1D1D21;
  --hair: rgba(255,255,255,0.08); --hair2: rgba(255,255,255,0.13);
  --t1: #FAFAFA; --t2: #C9C9CF; --t3: #8E8E96; --t4: #6B6B73;
  --accT: #00C49A; --goldT: #D6B569; --press: rgba(255,255,255,0.05);
  background: var(--bg); color: var(--t1);
}
.cf.light { --bg: #F2F2EF; --card: #FFFFFF; --card2: #FAFAF8;
  --hair: rgba(15,15,16,0.08); --hair2: rgba(15,15,16,0.14);
  --t1: #0F0F10; --t2: #3D3D42; --t3: #6B6B73; --t4: #9A9AA2;
  --accT: #00A37E; --goldT: #A8823A; --press: rgba(15,15,16,0.05);
  background: var(--bg); color: var(--t1);
}

/* ── En-tête ── */
.cf-head { display: flex; align-items: center; gap: 8px; padding: 8px 12px 10px; }
.cf-back { width: 36px; height: 36px; margin-left: 0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--hair); color: var(--t1); cursor: pointer; border-radius: 50%; }
.cf-back svg { width: 10px; height: auto; }
.cf-h1 { flex: 1; font: 800 19px/1.1 'Inter', sans-serif; letter-spacing: -0.02em; padding-left: 4px; }
.cf-hbtn { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--hair); color: var(--t1); cursor: pointer; border-radius: 50%; }
.cf-back:active, .cf-hbtn:active { background: var(--press); }
.cf-back:focus-visible, .cf-hbtn:focus-visible, .cf button:focus-visible { outline: 2px solid var(--accT); outline-offset: 2px; }

/* Ligne de confiance sous le titre : or discret, jamais en aplat */
.cf-trustline { display: flex; align-items: center; gap: 7px; padding: 0 20px 12px; font: 600 10px/1 'Inter', sans-serif; letter-spacing: 0.09em; text-transform: uppercase; color: var(--t4); }
.cf-trustline .g { color: var(--goldT); display: inline-flex; align-items: center; gap: 5px; }
.cf-trustline i { width: 3px; height: 3px; border-radius: 50%; background: var(--hair2); }

.cf-scroll { flex: 1; overflow-y: auto; padding: 2px 14px 26px; scrollbar-width: none; }
.cf-scroll::-webkit-scrollbar { display: none; }

/* ═══ MOMENT COFFRE · état verrouillé ═══ */
.cf-seal { position: relative; width: 92px; height: 92px; margin: 22px auto 0; display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--card2), var(--card));
  border: 1px solid var(--hair2); color: var(--t2);
}
.cf-seal::before { content: ''; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent); }
.cf-seal::after { content: ''; position: absolute; inset: 11px; border-radius: 50%;
  background: repeating-conic-gradient(color-mix(in srgb, var(--gold) 14%, transparent) 0deg 1.6deg, transparent 1.6deg 9deg);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%); mask: radial-gradient(circle, transparent 58%, #000 60%);
}
.cf-locktitle { text-align: center; font: 700 16.5px/1.25 'Inter', sans-serif; letter-spacing: -0.01em; margin: 14px 0 4px; }
.cf-locksub { text-align: center; font: 400 12px/1.5 'Inter', sans-serif; color: var(--t3); margin: 0 26px 18px; text-wrap: pretty; }
.cf-unlockbtn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 50px;
  border: none; border-radius: 16px; cursor: pointer; background: var(--t1); color: var(--bg);
  font: 650 14px/1 'Inter', sans-serif; letter-spacing: -0.01em;
}
.cf-unlockbtn:active { transform: scale(0.985); }
.cf-lockhint { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font: 500 10.5px/1 'Inter', sans-serif; color: var(--t4); }

/* Rangées expurgées : rien d'illisible ne fuit tant que le coffre est fermé */
.cf-redacted { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.cf-redrow { display: flex; align-items: center; gap: 11px; padding: 13px 14px; border-radius: 16px; background: var(--card); border: 1px solid var(--hair); }
.cf-redrow > i { width: 34px; height: 34px; border-radius: 11px; background: var(--press); display: flex; align-items: center; justify-content: center; color: var(--t4); flex-shrink: 0; }
.cf-redbar { height: 9px; border-radius: 5px; background: var(--press); }
.cf-redbar.b { height: 7px; opacity: 0.6; margin-top: 6px; }

/* ═══ Valeur accumulée (compteurs réels, jamais gonflés) ═══ */
.cf-value { display: flex; align-items: stretch; gap: 8px; margin: 4px 0 12px; }
.cf-val { flex: 1; display: flex; flex-direction: column; gap: 3px; padding: 11px 12px; border-radius: 15px; background: var(--card); border: 1px solid var(--hair); }
.cf-val b { font: 800 17px/1 'Inter', sans-serif; letter-spacing: -0.02em; }
.cf-val em { font: 500 9.5px/1.25 'Inter', sans-serif; font-style: normal; color: var(--t3); }
.cf-val.gold { border-color: color-mix(in srgb, var(--gold) 34%, transparent); }
.cf-val.gold b { color: var(--goldT); }

/* ═══ À traiter · déclencheur légitime, toujours actionnable ═══ */
.cf-sechead { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 4px 7px; }
.cf-sechead span { font: 700 10.5px/1 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t4); }
.cf-sechead b { font: 650 11px/1 'Inter', sans-serif; color: var(--accT); cursor: pointer; }
.cf-todo { display: flex; flex-direction: column; gap: 8px; }
.cf-todorow { display: flex; align-items: center; gap: 11px; width: 100%; min-height: 56px; padding: 11px 12px; border-radius: 16px; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--hair2); color: inherit;
}
.cf-todorow:active { background: var(--card2); }
.cf-todorow > i { width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cf-todorow.sign > i { background: color-mix(in srgb, var(--orange) 15%, transparent); color: var(--orange); }
.cf-todorow.review > i { background: color-mix(in srgb, var(--amber) 15%, transparent); color: var(--amber); }
.cf-todorow.request > i { background: color-mix(in srgb, var(--accT) 13%, transparent); color: var(--accT); }
.cf-todo-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cf-todo-txt b { font: 650 12.5px/1.25 'Inter', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-todo-txt em { font: 400 11px/1.3 'Inter', sans-serif; font-style: normal; color: var(--t3); }
.cf-todo-act { flex-shrink: 0; font: 650 11.5px/1 'Inter', sans-serif; color: var(--accT); display: flex; align-items: center; gap: 3px; }

/* ═══ Recherche + filtres (mêmes patrons que Messages) ═══ */
.cf-search { display: flex; align-items: center; gap: 8px; margin: 14px 0 8px; padding: 0 13px; height: 42px; border-radius: 14px; background: var(--card); border: 1px solid var(--hair); color: var(--t4); }
.cf-search input { flex: 1; min-width: 0; background: none; border: none; outline: none; font: 400 12.5px/1 'Inter', sans-serif; color: var(--t1); }
.cf-search input::placeholder { color: var(--t4); }
.cf-search button { background: none; border: none; color: var(--t4); font-size: 15px; cursor: pointer; padding: 0 2px; }
.cf-chips { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.cf-chips::-webkit-scrollbar { display: none; }
.cf-chip { flex-shrink: 0; height: 30px; padding: 0 12px; border-radius: 99px; cursor: pointer;
  background: var(--card); border: 1px solid var(--hair); color: var(--t3);
  font: 600 11.5px/1 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 6px;
}
.cf-chip.on { background: var(--t1); border-color: var(--t1); color: var(--bg); }
.cf-chip .n { font-weight: 500; opacity: 0.65; }
/* Puces entité · ultra-compactes, comme les familles ailleurs dans l'app */
.cf-ents { display: flex; gap: 4px; margin: 7px 2px 0; }
.cf-ent { height: 24px; padding: 0 9px; border-radius: 99px; cursor: pointer; background: none; border: 1px solid transparent; color: var(--t4); font: 600 10.5px/1 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 5px; }
.cf-ent i { width: 5px; height: 5px; border-radius: 50%; background: var(--hair2); }
.cf-ent.on { border-color: var(--hair2); color: var(--t2); background: var(--card); }
.cf-ent.on i { background: var(--accT); }

/* ═══ Liste de documents ═══ */
.cf-list { display: flex; flex-direction: column; gap: 8px; }
.cf-doc { display: flex; align-items: center; gap: 11px; width: 100%; min-height: 60px; padding: 12px; border-radius: 16px; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--hair); color: inherit;
}
.cf-doc:active { background: var(--card2); transform: scale(0.99); }
.cf-doc-ic { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--press); color: var(--t3); }
.cf-doc-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2.5px; }
.cf-doc-txt b { font: 650 12.5px/1.3 'Inter', sans-serif; letter-spacing: -0.01em; }
.cf-doc-txt em { font: 400 10.5px/1.3 'Inter', sans-serif; font-style: normal; color: var(--t3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-doc-side { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.cf-avstack { display: flex; }
.cf-avstack .avatar, .cf-avstack .cf-avmini { margin-left: -6px; border: 1.5px solid var(--card); border-radius: 50%; }
.cf-avstack > :first-child { margin-left: 0; }
.cf-avmini { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; background: var(--press); color: var(--t3); font: 700 8px/1 'Inter', sans-serif; }

/* Pastilles de statut · vocabulaire réel */
.cf-pill { flex-shrink: 0; padding: 4px 9px; border-radius: 99px; font: 650 9.5px/1 'Inter', sans-serif; letter-spacing: 0.03em; white-space: nowrap; background: var(--press); color: var(--t3); }
.cf-pill.ok { background: color-mix(in srgb, var(--acc) 13%, transparent); color: var(--accT); }
.cf-pill.review { background: color-mix(in srgb, var(--amber) 15%, transparent); color: color-mix(in srgb, var(--amber) 78%, var(--t1)); }
.cf-pill.sign { background: color-mix(in srgb, var(--orange) 15%, transparent); color: color-mix(in srgb, var(--orange) 82%, var(--t1)); }

/* Révélation après déverrouillage */
@media (prefers-reduced-motion: no-preference) {
  .cf-reveal .cf-doc, .cf-reveal .cf-val, .cf-reveal .cf-todorow { animation: cfIn 320ms cubic-bezier(0.2, 0, 0, 1) both; }
  .cf-reveal .cf-doc:nth-child(2) { animation-delay: 40ms; }
  .cf-reveal .cf-doc:nth-child(3) { animation-delay: 80ms; }
  .cf-reveal .cf-doc:nth-child(4) { animation-delay: 120ms; }
  .cf-reveal .cf-doc:nth-child(5) { animation-delay: 155ms; }
  .cf-reveal .cf-doc:nth-child(n+6) { animation-delay: 185ms; }
  .cf-reveal .cf-val:nth-child(2) { animation-delay: 40ms; }
  .cf-reveal .cf-val:nth-child(3) { animation-delay: 80ms; }
}
@keyframes cfIn { from { opacity: 0; transform: translateY(9px); } }

/* Pied de confiance */
.cf-foot { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 18px 18px 6px; font: 500 10.5px/1.5 'Inter', sans-serif; color: var(--t4); text-align: center; text-wrap: pretty; }
.cf-foot svg { flex-shrink: 0; margin-top: 2px; color: var(--accT); }

/* ═══ État vide · premier usage ═══ */
.cf-empty { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 26px 22px 0; }
.cf-empty h2 { font: 750 17px/1.25 'Inter', sans-serif; letter-spacing: -0.01em; margin: 16px 0 6px; }
.cf-empty p { font: 400 12px/1.55 'Inter', sans-serif; color: var(--t3); margin: 0 0 18px; text-wrap: pretty; }
.cf-empty .cf-unlockbtn { max-width: 250px; }
.cf-ghostbtn { margin-top: 9px; min-height: 44px; padding: 0 18px; border-radius: 14px; background: none; border: 1px solid var(--hair2); color: var(--t2); font: 600 12.5px/1 'Inter', sans-serif; cursor: pointer; }

/* ═══ Face ID · superposition ═══ */
.cf-fid { position: absolute; inset: 0; z-index: 40; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--bg) 72%, transparent); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }
.cf-fid-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 26px 30px 22px; border-radius: 24px; background: var(--card); border: 1px solid var(--hair2); box-shadow: 0 24px 60px rgba(0,0,0,0.35); min-width: 190px; }
.cf-fid-glyph { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--t1); }
.cf-fid-glyph.ok { color: var(--accT); }
.cf-fid-glyph.fail { color: var(--danger); }
.cf-fid-scan { position: absolute; left: 8px; right: 8px; top: 10px; height: 2px; border-radius: 2px; background: var(--accT); opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .cf-fid-card { animation: cfPop 240ms cubic-bezier(0.2, 0, 0, 1) both; }
  .cf-fid-glyph.scan .cf-fid-scan { opacity: 0.9; animation: cfScan 900ms ease-in-out infinite; }
  .cf-fid-glyph.fail { animation: cfShake 340ms ease-in-out; }
}
@keyframes cfPop { from { opacity: 0; transform: scale(0.92); } }
@keyframes cfScan { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(42px); } }
@keyframes cfShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 60% { transform: translateX(5px); } 80% { transform: translateX(-3px); } }
.cf-fid-card b { font: 700 13.5px/1 'Inter', sans-serif; }
.cf-fid-card em { font: 400 11px/1.4 'Inter', sans-serif; font-style: normal; color: var(--t3); text-align: center; }
.cf-fid-acts { display: flex; flex-direction: column; gap: 7px; width: 100%; margin-top: 6px; }
.cf-fid-acts button { min-height: 42px; border-radius: 13px; cursor: pointer; font: 600 12.5px/1 'Inter', sans-serif; }
.cf-fid-retry { background: var(--t1); color: var(--bg); border: none; }
.cf-fid-code { background: none; border: 1px solid var(--hair2); color: var(--t2); }

/* ═══ Feuille document · délégations ═══ */
.cf-sheetwrap { position: absolute; inset: 0; z-index: 30; display: flex; flex-direction: column; justify-content: flex-end; }
.cf-dim { position: absolute; inset: 0; background: rgba(0,0,0,0.44); border: none; cursor: pointer; }
@media (prefers-reduced-motion: no-preference) { .cf-sheet { animation: cfUp 300ms cubic-bezier(0.2, 0, 0, 1) both; } }
@keyframes cfUp { from { transform: translateY(70px); opacity: 0; } }
.cf-sheet { position: relative; max-height: 86%; overflow-y: auto; scrollbar-width: none; border-radius: 26px 26px 0 0; padding: 8px 18px 26px; background: var(--card); border-top: 1px solid var(--hair2); }
.cf-sheet::-webkit-scrollbar { display: none; }
.cf-grab { display: block; width: 38px; height: 4px; border-radius: 99px; margin: 4px auto 14px; background: var(--hair2); }
.cf-sh-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.cf-sh-head .cf-doc-ic { width: 42px; height: 42px; }
.cf-sh-t { flex: 1; min-width: 0; }
.cf-sh-t b { display: block; font: 750 15.5px/1.25 'Inter', sans-serif; letter-spacing: -0.01em; }
.cf-sh-t em { display: block; margin-top: 3px; font: 500 11px/1.3 'Inter', sans-serif; font-style: normal; color: var(--t3); }
.cf-info { margin-top: 12px; border: 1px solid var(--hair); border-radius: 16px; background: var(--card2); padding: 2px 13px; }
.cf-irow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }
.cf-irow + .cf-irow { border-top: 1px solid var(--hair); }
.cf-irow span { font: 500 11.5px/1.3 'Inter', sans-serif; color: var(--t3); }
.cf-irow b { font: 600 11.5px/1.3 'Inter', sans-serif; text-align: right; }
.cf-irow b.mono { font-family: 'SF Mono', ui-monospace, monospace; font-size: 10.5px; letter-spacing: 0.04em; color: var(--goldT); }
.cf-irow b.ok { color: var(--accT); display: inline-flex; align-items: center; gap: 5px; }

/* Accès par personne · le panneau de contrôle */
.cf-acclist { margin-top: 6px; display: flex; flex-direction: column; gap: 7px; }
.cf-accrow { border: 1px solid var(--hair); border-radius: 16px; background: var(--card2); padding: 11px 12px; }
.cf-accrow.owner { border-style: dashed; }
.cf-acc-id { display: flex; align-items: center; gap: 10px; }
.cf-acc-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cf-acc-txt b { font: 650 12.5px/1.2 'Inter', sans-serif; }
.cf-acc-txt em { font: 500 10.5px/1.25 'Inter', sans-serif; font-style: normal; color: var(--t3); }
.cf-revoke { background: none; border: none; cursor: pointer; padding: 6px 2px 6px 8px; font: 650 11px/1 'Inter', sans-serif; color: var(--t4); }
.cf-revoke.arm { color: var(--danger); }
.cf-rights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-top: 10px; }
.cf-right { display: flex; flex-direction: column; align-items: center; gap: 4px; min-height: 44px; padding: 7px 2px 6px; border-radius: 11px; cursor: pointer;
  background: none; border: 1px solid var(--hair); color: var(--t4); font: 600 8.5px/1 'Inter', sans-serif; letter-spacing: 0.02em;
}
.cf-right.on { border-color: var(--accT); color: var(--accT); background: color-mix(in srgb, var(--acc) 9%, transparent); }
.cf-right.on.no { border-color: var(--danger); color: var(--danger); background: color-mix(in srgb, var(--danger) 9%, transparent); }
.cf-accnote { margin: 9px 2px 0; font: 400 10.5px/1.5 'Inter', sans-serif; color: var(--t4); text-wrap: pretty; }
.cf-accnote b { color: var(--t3); font-weight: 650; }

/* Demande d'accès en attente */
.cf-req { border: 1px solid color-mix(in srgb, var(--amber) 40%, transparent); background: color-mix(in srgb, var(--amber) 8%, transparent); border-radius: 16px; padding: 11px 12px; margin-top: 7px; }
.cf-req-acts { display: flex; gap: 7px; margin-top: 10px; }
.cf-req-acts button { flex: 1; min-height: 42px; border-radius: 12px; cursor: pointer; font: 650 12px/1 'Inter', sans-serif; }
.cf-req-ok { background: var(--t1); color: var(--bg); border: none; }
.cf-req-no { background: none; border: 1px solid var(--hair2); color: var(--t2); }

/* Actions de la feuille */
.cf-sh-acts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.cf-btn { min-height: 48px; border-radius: 15px; cursor: pointer; font: 650 13.5px/1 'Inter', sans-serif; background: var(--card2); border: 1px solid var(--hair2); color: var(--t1); display: flex; align-items: center; justify-content: center; gap: 8px; }
.cf-btn.primary { background: var(--t1); color: var(--bg); border-color: var(--t1); }
.cf-btn:active { transform: scale(0.985); }
.cf-wmnote { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 9px; font: 500 10px/1.4 'Inter', sans-serif; color: var(--t4); text-align: center; }
.cf-wmnote svg { color: var(--goldT); flex-shrink: 0; }

/* Toast */
.cf-toast { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 50; max-width: 82%;
  padding: 11px 16px; border-radius: 99px; background: color-mix(in srgb, var(--t1) 94%, transparent); color: var(--bg);
  font: 600 11.5px/1.3 'Inter', sans-serif; text-align: center; box-shadow: 0 12px 34px rgba(0,0,0,0.32); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (prefers-reduced-motion: no-preference) { .cf-toast { animation: cfPop 200ms cubic-bezier(0.2, 0, 0, 1) both; } }

/* Chargement (squelette) */
@media (prefers-reduced-motion: no-preference) {
  .cf-skel .cf-redbar { background: linear-gradient(90deg, var(--press) 25%, var(--hair2) 50%, var(--press) 75%); background-size: 220% 100%; animation: cfShimmer 1.3s linear infinite; }
}
@keyframes cfShimmer { from { background-position: 160% 0; } to { background-position: -60% 0; } }

/* ═══ Note de specs (colonne latérale du labo) ═══ */
.cfl-note { width: 400px; max-width: 92vw; color: #C9C9CF; padding-top: 6px; }
.cfl-kicker { font: 700 10px/1 'Inter', sans-serif; letter-spacing: 0.2em; color: #C9A24B; text-transform: uppercase; margin-bottom: 10px; }
.cfl-note h2 { font: 750 21px/1.2 'Inter', sans-serif; color: #FAFAFA; letter-spacing: -0.02em; margin: 0 0 8px; }
.cfl-lede { font: 400 12.5px/1.65 'Inter', sans-serif; color: #A6A6AE; margin: 0 0 18px; text-wrap: pretty; }
.cfl-sec { border-top: 1px solid rgba(255,255,255,0.09); padding: 13px 0 14px; }
.cfl-sec-h { font: 700 10.5px/1 'Inter', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: #8E8E96; margin-bottom: 10px; }
.cfl-swatches { display: flex; flex-wrap: wrap; gap: 7px; }
.cfl-sw { display: flex; align-items: center; gap: 7px; padding: 5px 10px 5px 6px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.1); font: 500 10.5px/1 'SF Mono', ui-monospace, monospace; color: #C9C9CF; }
.cfl-sw i { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); }
.cfl-row { display: flex; gap: 10px; font: 400 11.5px/1.6 'Inter', sans-serif; color: #A6A6AE; margin-bottom: 7px; }
.cfl-row b { color: #E8E8EC; font-weight: 650; white-space: nowrap; min-width: 118px; }
.cfl-lever { display: flex; gap: 9px; margin-bottom: 9px; font: 400 11.5px/1.6 'Inter', sans-serif; color: #A6A6AE; }
.cfl-lever i { flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px;
  background: rgba(0,163,126,0.14); color: #00C49A; font: 700 10px/1 'Inter', sans-serif; font-style: normal; }
.cfl-lever b { color: #E8E8EC; font-weight: 650; }
.cfl-ethic { margin-top: 4px; padding: 11px 13px; border-radius: 13px; border: 1px dashed rgba(201,162,75,0.4); font: 400 11px/1.6 'Inter', sans-serif; color: #B9A97F; }

@media (max-width: 980px) { .cfl-cols { gap: 30px; } .cfl-note { width: 100%; max-width: 460px; } }
