/**
 * LSRI HOME — couche visuelle (ex-inline Claude).
 * Chargée uniquement depuis pages/index.html après home-institutional.css.
 *
 * Sélecteurs préfixés body.lsri-home : évite les fuites si la feuille est liée ailleurs.
 */

body.lsri-home {
  --lsri-cyan: #38bdf8;
  --lsri-cyan-dim: rgba(56,189,248,0.12);
  --lsri-cyan-border: rgba(56,189,248,0.22);
  --lsri-green: #22c55e;
  --lsri-amber: #f59e0b;
  --lsri-orange: #f97316;
  --lsri-red: #ef4444;
  --lsri-bg2: #0d1520;
  --lsri-bg3: #111d2c;
  --lsri-border: rgba(148,163,184,0.12);
  --lsri-mono: 'JetBrains Mono', monospace;
}

body.lsri-home .inst-ribbon {
  background: rgba(15,23,42,0.95);
  border-bottom: 1px solid var(--lsri-cyan-border);
  font-family: var(--lsri-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(148,163,184,0.8);
  text-align: center;
  padding: 7px 1rem;
}

body.lsri-home .hero-cinematic-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}

body.lsri-home .hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

body.lsri-home .hero-orbit-glow {
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.07) 0%, transparent 68%);
}

body.lsri-home .hero.hero-wow {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 90px 1.5rem 56px;
  text-align: center;
  overflow: hidden;
}

body.lsri-home .status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--lsri-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #4ade80;
  margin-bottom: 2.5rem;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.08), 0 8px 28px rgba(0,0,0,0.25);
}

body.lsri-home .status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lsri-green);
  animation: pulse-live 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

body.lsri-home .hero-title-stack {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

body.lsri-home .hero-title-line1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: #f1f5f9;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

body.lsri-home .hero-title-accent {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
}

body.lsri-home .hero-highlight {
  color: var(--lsri-cyan);
}

body.lsri-home .hero-lead {
  position: relative; z-index: 1;
  font-size: 17px; font-weight: 300;
  color: rgba(148,163,184,0.9);
  max-width: 580px; line-height: 1.75;
  margin: 0 auto 0.75rem;
}

body.lsri-home .hero-one-liner {
  position: relative; z-index: 1;
  font-family: var(--lsri-mono);
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(100,116,139,0.85);
  margin-bottom: 2.5rem;
}

body.lsri-home .hero-live-panel {
  position: relative; z-index: 1;
  background: rgba(13,21,32,0.85);
  border: 1px solid var(--lsri-cyan-border);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  max-width: 600px; width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 0 60px rgba(56,189,248,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

body.lsri-home .hero-score-card {
  display: flex; gap: 1.5rem; align-items: flex-start;
  flex-wrap: wrap;
}

body.lsri-home .hero-score-primary { flex: 1; min-width: 160px; }

body.lsri-home .hero-score-label {
  font-family: var(--lsri-mono);
  font-size: 10px; letter-spacing: 0.12em;
  color: rgba(100,116,139,0.8);
  text-transform: uppercase; margin-bottom: 10px;
}

body.lsri-home .hero-score-row-main {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px;
}

body.lsri-home .hero-score-num-block {
  display: flex; align-items: baseline; gap: 6px;
}

body.lsri-home .hero-score-big-num {
  font-family: var(--lsri-mono);
  font-size: 3.2rem; font-weight: 700;
  color: var(--lsri-cyan); line-height: 1;
}

body.lsri-home .hero-score-denom {
  font-family: var(--lsri-mono);
  font-size: 1.1rem; color: rgba(100,116,139,0.7);
}

body.lsri-home .hero-score-divider {
  width: 1px; background: rgba(148,163,184,0.12);
  align-self: stretch; flex-shrink: 0;
}

body.lsri-home .hero-score-meta {
  display: flex; flex-direction: column; gap: 9px;
  justify-content: center; min-width: 150px;
}

body.lsri-home .hero-score-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(148,163,184,0.7); gap: 12px;
}

body.lsri-home .hero-score-meta-row strong {
  font-family: var(--lsri-mono);
  font-size: 11px; color: var(--lsri-cyan);
}

body.lsri-home .regime-signature {
  margin-top: 1.5rem;
  position: relative;
}

body.lsri-home .regime-sig-rail {
  height: 3px;
  background: linear-gradient(90deg,
    var(--lsri-green) 0%, var(--lsri-green) 25%,
    var(--lsri-amber) 25%, var(--lsri-amber) 50%,
    var(--lsri-orange) 50%, var(--lsri-orange) 75%,
    var(--lsri-red) 75%, var(--lsri-red) 100%
  );
  border-radius: 2px;
  margin-bottom: 14px;
  opacity: 0.7;
}

body.lsri-home .regime-sig-nodes {
  display: flex; justify-content: space-between;
}

body.lsri-home .regime-sig-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none;
  transition: transform 0.2s;
}

body.lsri-home .regime-sig-node:hover { transform: translateY(-2px); }

body.lsri-home .regime-sig-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

body.lsri-home .dot-normal { background: var(--lsri-green); }

body.lsri-home .dot-vigilance { background: var(--lsri-amber); }

body.lsri-home .dot-stress { background: var(--lsri-orange); }

body.lsri-home .dot-critical { background: var(--lsri-red); }

body.lsri-home .regime-sig-label {
  font-family: var(--lsri-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: rgba(148,163,184,0.7);
}

body.lsri-home .regime-sig-events {
  position: relative; height: 20px; margin-top: 10px;
}

body.lsri-home .regime-sig-event {
  position: absolute;
  font-family: var(--lsri-mono);
  font-size: 9px; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 100px;
  text-decoration: none; transform: translateX(-50%);
  border: 1px solid; transition: opacity 0.2s;
}

body.lsri-home .ev-luna { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #ef4444; }

body.lsri-home .ev-ftx { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #ef4444; }

body.lsri-home .ev-btc { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #f59e0b; }

body.lsri-home .regime-sig-glow { display: none; }

body.lsri-home .hero-action-line {
  font-family: var(--lsri-mono);
  font-size: 11px; color: rgba(100,116,139,0.7);
  letter-spacing: 0.06em; margin-top: 1rem; text-align: center;
}

body.lsri-home .hero-cta-row {
  position: relative; z-index: 1;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

body.lsri-home .cta-button {
  font-family: var(--lsri-mono) !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  border-radius: 6px !important;
  padding: 13px 26px !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}

body.lsri-home .cta-button:not(.cta-secondary):not(.cta-inst) {
  background: var(--lsri-cyan) !important;
  color: #000 !important; border: none !important;
}

body.lsri-home .cta-button:not(.cta-secondary):not(.cta-inst):hover {
  background: #7dd3fc !important; transform: translateY(-2px) !important;
}

body.lsri-home .cta-button.cta-secondary {
  background: transparent !important;
  border: 1px solid var(--lsri-cyan-border) !important;
  color: var(--lsri-cyan) !important;
}

body.lsri-home .cta-button.cta-secondary:hover {
  background: var(--lsri-cyan-dim) !important;
  transform: translateY(-2px) !important;
}

body.lsri-home .cta-button.cta-inst {
  background: transparent !important;
  border: 1px solid rgba(148,163,184,0.2) !important;
  color: rgba(148,163,184,0.7) !important;
}

body.lsri-home .cta-button.cta-inst:hover {
  border-color: rgba(148,163,184,0.4) !important;
  color: #e2e8f0 !important; transform: translateY(-2px) !important;
}

/* CTA primaires avec IDs (gradient bleu — au-dessus du bloc cyan plat) */
body.lsri-home #hero-cta-proof:not(.cta-secondary),
body.lsri-home #hero-cta-pricing:not(.cta-secondary) {
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 62%, #7dd3fc 100%) !important;
  color: #f8fafc !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.38) !important;
}

body.lsri-home #hero-cta-proof:not(.cta-secondary):hover,
body.lsri-home #hero-cta-pricing:not(.cta-secondary):hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.48) !important;
}

body.lsri-home .home-stats-strip {
  display: flex; justify-content: center;
  background: rgba(13,21,32,0.9);
  border-top: 1px solid var(--lsri-border);
  border-bottom: 1px solid var(--lsri-border);
  padding: 1.5rem 1rem;
  gap: 0;
}

body.lsri-home .home-stat {
  flex: 1; max-width: 200px;
  text-align: center; padding: 0 2rem;
  border-right: 1px solid var(--lsri-border);
}

body.lsri-home .home-stat:last-child { border-right: none; }

body.lsri-home .home-stat-num {
  display: block;
  font-family: var(--lsri-mono);
  font-size: 1.8rem; font-weight: 700;
  color: var(--lsri-cyan);
}

body.lsri-home .home-stat-lbl {
  display: block;
  font-size: 11px; color: rgba(100,116,139,0.85);
  margin-top: 4px; letter-spacing: 0.04em;
}

body.lsri-home .inst-trust {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 0;
  border-bottom: 1px solid var(--lsri-border);
  background: rgba(8,13,20,0.95);
}

body.lsri-home .inst-trust a {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(100,116,139,0.75);
  text-decoration: none;
  padding: 14px 22px;
  border-right: 1px solid var(--lsri-border);
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}

body.lsri-home .inst-trust a:last-child { border-right: none; }

body.lsri-home .inst-trust a:hover { color: var(--lsri-cyan); background: var(--lsri-cyan-dim); }

body.lsri-home .compact-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

body.lsri-home .section-eyebrow {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--lsri-cyan); text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}

body.lsri-home .section-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--lsri-cyan);
}

body.lsri-home .why-title, body.lsri-home .proof-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; line-height: 1.2;
  color: #f1f5f9; margin-bottom: 1rem;
}

body.lsri-home .home-diff-section { padding-top: 5rem; padding-bottom: 3rem; }

body.lsri-home .home-diff-table-wrap {
  margin-top: 2rem;
  border: 1px solid var(--lsri-border);
  border-radius: 14px; overflow: hidden;
}

body.lsri-home .home-diff-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}

body.lsri-home .home-diff-table thead tr {
  background: rgba(13,21,32,0.95);
}

body.lsri-home .home-diff-table th {
  padding: 14px 20px;
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(100,116,139,0.75); font-weight: 400;
  text-transform: uppercase; text-align: left;
  border-bottom: 1px solid var(--lsri-border);
}

body.lsri-home .home-diff-table th:last-child { color: var(--lsri-cyan); }

body.lsri-home .home-diff-table tbody tr {
  border-bottom: 1px solid var(--lsri-border);
  transition: background 0.15s;
}

body.lsri-home .home-diff-table tbody tr:last-child { border-bottom: none; }

body.lsri-home .home-diff-table tbody tr:hover { background: rgba(56,189,248,0.03); }

body.lsri-home .home-diff-table td {
  padding: 14px 20px; color: rgba(148,163,184,0.8);
}

body.lsri-home .home-diff-table td:last-child {
  color: #e2e8f0; font-weight: 500;
  border-left: 1px solid var(--lsri-border);
}

body.lsri-home .home-terminal-section { padding-top: 2rem; padding-bottom: 5rem; }

body.lsri-home .proof-eyebrow {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--lsri-cyan); text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}

body.lsri-home .proof-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--lsri-cyan);
}

body.lsri-home .terminal-mockup {
  margin-top: 2rem;
  border: 1px solid var(--lsri-cyan-border);
  border-radius: 14px;
  background: linear-gradient(145deg, #0b1326, #111d35);
  padding: 0; overflow: hidden;
}

body.lsri-home .terminal-mockup-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: rgba(9,16,31,0.9);
  border-bottom: 1px solid rgba(56,189,248,0.12);
  font-family: var(--lsri-mono);
  font-size: 12px; letter-spacing: 0.06em;
  color: #dbeafe;
}

body.lsri-home .live-status-update {
  font-size: 10px; color: rgba(100,116,139,0.7);
}

body.lsri-home .terminal-mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: rgba(56,189,248,0.06);
}

body.lsri-home .terminal-cell {
  background: rgba(9,16,31,0.95);
  padding: 16px 20px;
  color: rgba(148,163,184,0.85);
  font-size: 13px; line-height: 1.6;
}

body.lsri-home .terminal-cell strong { color: #f8fafc; }

body.lsri-home .terminal-foot {
  text-align: center; padding: 14px;
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.08em;
  background: rgba(9,16,31,0.9);
  border-top: 1px solid rgba(56,189,248,0.08);
}

body.lsri-home .terminal-foot a {
  color: rgba(56,189,248,0.7); text-decoration: none;
  transition: color 0.2s;
}

body.lsri-home .terminal-foot a:hover { color: var(--lsri-cyan); }

body.lsri-home .chart-section {
  max-width: 960px; margin: 0 auto; padding: 0 1.5rem 5rem;
}

body.lsri-home .chart-eyebrow {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--lsri-cyan); text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}

body.lsri-home .chart-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--lsri-cyan);
}

body.lsri-home .chart-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: #f1f5f9;
  margin-bottom: 0.75rem; line-height: 1.2;
}

body.lsri-home .chart-section-desc {
  font-size: 14px; color: rgba(100,116,139,0.85);
  max-width: 600px; line-height: 1.7; margin-bottom: 1.5rem;
}

body.lsri-home .chart-proof-shell { }

body.lsri-home .chart-proof-window {
  border: 1px solid var(--lsri-cyan-border);
  border-radius: 14px; overflow: hidden;
}

body.lsri-home .chart-window-header {
  background: rgba(9,16,31,0.95);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--lsri-border);
}

body.lsri-home .chart-window-dots { display: flex; gap: 6px; }

body.lsri-home .chart-window-dots span {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
}

body.lsri-home .chart-window-dots span:nth-child(1) { background: #ff5f57; }

body.lsri-home .chart-window-dots span:nth-child(2) { background: #ffbd2e; }

body.lsri-home .chart-window-dots span:nth-child(3) { background: #28c840; }

body.lsri-home .chart-window-title {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(100,116,139,0.75);
}

body.lsri-home .chart-wrap {
  background: #080d14; padding: 1rem 1rem 0;
}

body.lsri-home .chart-regime-timeline {
  display: flex; height: 18px; gap: 2px;
  padding: 0 1rem 1rem; background: #080d14;
}

body.lsri-home .chart-regime-timeline span { border-radius: 2px; }

body.lsri-home .chart-regime-timeline span[title="Normal"] { background: var(--lsri-green); opacity: 0.8; }

body.lsri-home .chart-regime-timeline span[title="Vigilance"] { background: var(--lsri-amber); opacity: 0.8; }

body.lsri-home .chart-regime-timeline span[title="Stress"] { background: var(--lsri-orange); opacity: 0.8; }

body.lsri-home .chart-regime-timeline span[title="Critical band"] { background: var(--lsri-red); opacity: 0.8; }

body.lsri-home .chart-methodology {
  font-size: 12px; color: rgba(100,116,139,0.7);
  text-align: center; margin-top: 1rem; line-height: 1.6;
}

body.lsri-home .chart-disclaimer {
  font-size: 11px; color: rgba(100,116,139,0.55);
  text-align: center; margin-top: 6px; font-style: italic;
}

body.lsri-home .chart-links { margin-top: 10px; }

body.lsri-home .chart-links a {
  color: rgba(56,189,248,0.65); text-decoration: none;
  transition: color 0.2s; font-family: var(--lsri-mono); font-size: 11px;
}

body.lsri-home .chart-links a:hover { color: var(--lsri-cyan); }

body.lsri-home .proof-teaser-section { padding-top: 0; }

body.lsri-home .proof-teaser-lead {
  font-size: 14px; color: rgba(100,116,139,0.8);
  margin-bottom: 1.5rem; line-height: 1.7;
}

body.lsri-home .proof-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

body.lsri-home .proof-teaser-card {
  background: rgba(13,21,32,0.85);
  border: 1px solid var(--lsri-border);
  border-radius: 12px; padding: 1.25rem;
  text-decoration: none; display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

body.lsri-home .proof-teaser-card:hover {
  border-color: var(--lsri-cyan-border);
  transform: translateY(-2px);
}

body.lsri-home .proof-teaser-tag {
  font-family: var(--lsri-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lsri-cyan);
  background: var(--lsri-cyan-dim);
  padding: 3px 10px; border-radius: 100px; align-self: flex-start;
}

body.lsri-home .proof-teaser-card strong { color: #f1f5f9; font-size: 14px; }

body.lsri-home .proof-teaser-card span { color: rgba(100,116,139,0.75); font-size: 12px; }

body.lsri-home .home-regimes-section { padding-top: 0; }

body.lsri-home .regimes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-top: 2rem;
}

body.lsri-home .regime-card {
  border: 1px solid var(--lsri-border);
  border-radius: 12px; padding: 1.25rem;
  background: rgba(13,21,32,0.75);
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

body.lsri-home .regime-card:hover { transform: translateY(-2px); }

body.lsri-home .regime-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}

body.lsri-home .rc-normal::before { background: var(--lsri-green); }

body.lsri-home .rc-vigilance::before { background: var(--lsri-amber); }

body.lsri-home .rc-stress::before { background: var(--lsri-orange); }

body.lsri-home .rc-critical::before { background: var(--lsri-red); }

body.lsri-home .rc-normal:hover { border-color: rgba(34,197,94,0.3); }

body.lsri-home .rc-vigilance:hover { border-color: rgba(245,158,11,0.3); }

body.lsri-home .rc-stress:hover { border-color: rgba(249,115,22,0.3); }

body.lsri-home .rc-critical:hover { border-color: rgba(239,68,68,0.3); }

body.lsri-home .regime-name {
  font-family: var(--lsri-mono);
  font-size: 13px; font-weight: 700;
  margin: 0 0 8px; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}

body.lsri-home .regime-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
}

body.lsri-home .regime-desc { font-size: 13px; color: rgba(100,116,139,0.85); line-height: 1.55; }

body.lsri-home .regimes-foot {
  margin-top: 1.25rem;
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.08em; text-align: center;
}

body.lsri-home .regimes-foot a { color: rgba(56,189,248,0.65); text-decoration: none; }

body.lsri-home .regimes-foot a:hover { color: var(--lsri-cyan); }

body.lsri-home .inst-actions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.75rem 6rem;
}

body.lsri-home .inst-actions-heading {
  margin-bottom: 2.75rem !important;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: #f1f5f9 !important;
}

body.lsri-home .inst-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 28px;
}

body.lsri-home .inst-action-card {
  background: rgba(13,21,32,0.88);
  border: 1px solid var(--lsri-border);
  border-radius: 16px;
  padding: 2.35rem 2.1rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

body.lsri-home .inst-action-card:hover {
  border-color: var(--lsri-cyan-border);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

body.lsri-home .inst-action-card h3 {
  font-family: var(--lsri-mono);
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  font-weight: 700 !important;
  color: var(--lsri-cyan) !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

body.lsri-home .inst-action-card p {
  font-size: 15px !important;
  color: rgba(203, 213, 225, 0.9) !important;
  line-height: 1.68 !important;
  margin-bottom: 1.75rem !important;
  flex: 1;
}

body.lsri-home .inst-action-card .cta-button {
  align-self: flex-start;
  margin-top: auto;
}

body.lsri-home .mega-cta {
  background: linear-gradient(180deg, transparent 0%, rgba(56,189,248,0.04) 100%);
  border-top: 1px solid var(--lsri-border);
  padding: 6rem 1.5rem;
  text-align: center;
}

body.lsri-home .mega-cta-inner { max-width: 700px; margin: 0 auto; }

body.lsri-home .mega-cta-kicker {
  font-family: var(--lsri-mono);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(100,116,139,0.7); margin-bottom: 1.25rem;
}

body.lsri-home .mega-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1rem;
  color: #f1f5f9;
}

body.lsri-home .mega-cta-line1 { display: block; }

body.lsri-home .mega-cta-accent { display: block; font-weight: 600; color: var(--lsri-cyan); }

body.lsri-home .mega-cta-sub {
  font-size: 14px; color: rgba(100,116,139,0.8);
  line-height: 1.75; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto;
}

body.lsri-home .mega-cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

body.lsri-home .mega-cta-note {
  margin-top: 1.5rem;
  font-family: var(--lsri-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: rgba(100,116,139,0.5); text-transform: uppercase;
}

/* Pied site (4 col.) : styles dans main.css — body footer.lsri-footer-site (aligné accueil) */

body.lsri-home .reveal-on-scroll {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.lsri-home .reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

body.lsri-home .lsri-index-regime {
  font-family: var(--lsri-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; padding: 5px 14px;
  border-radius: 4px; align-self: flex-end;
  border: 1px solid;
}

body.lsri-home .lsri-index-regime.is-pending {
  background: rgba(100,116,139,0.1);
  border-color: rgba(100,116,139,0.2);
  color: rgba(100,116,139,0.6);
}

@media (max-width: 640px) {
  body.lsri-home .home-stat {
    padding: 0 1rem;
  }

  body.lsri-home .inst-trust a {
    padding: 10px 12px;
    font-size: 10px;
  }

  body.lsri-home .hero-score-divider {
    display: none;
  }

  body.lsri-home .hero-score-meta {
    display: none;
  }
}