/* NoorQuran — Tableau de bord « Mon Coran ». Premium, minimaliste, skinné aux tokens du site. */

.serif-title { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.01em; }
.mc-hide { display: none !important; }

.mc-wrap { max-width: 1140px; margin: 0 auto; padding: clamp(18px, 3.5vw, 40px) var(--space-page) 80px; }

/* Entrées animées (respecte prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  @keyframes mcUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
  [data-mc="dash"] > * { animation: mcUp .34s cubic-bezier(.2, .7, .3, 1) both; }
  [data-mc="dash"] > *:nth-child(2) { animation-delay: .04s; }
  [data-mc="dash"] > *:nth-child(3) { animation-delay: .08s; }
  [data-mc="dash"] > *:nth-child(4) { animation-delay: .12s; }
  [data-mc="dash"] > *:nth-child(5) { animation-delay: .16s; }
  [data-mc="dash"] > *:nth-child(n+6) { animation-delay: .2s; }
}

/* Chargement / gated */
.mc-loading { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 46vh; color: var(--text-muted); font-size: .95rem; }
.mc-spin { width: 20px; height: 20px; border: 2px solid color-mix(in srgb, var(--accent) 32%, transparent); border-top-color: var(--accent); border-radius: 50%; animation: mc-spin .7s linear infinite; }
@keyframes mc-spin { to { transform: rotate(360deg); } }
.mc-gated { max-width: 460px; margin: 8vh auto 0; text-align: center; }
.mc-gated-icon { font-size: 3rem; line-height: 1; margin-bottom: 12px; }
.mc-gated h1 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin: 0 0 10px; color: var(--text); }
.mc-gated p { color: var(--text-muted); line-height: 1.6; margin: 0 0 24px; }

/* Carte générique */
.mc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(18px, 2.6vw, 26px); box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 20px 48px -30px rgba(0, 0, 0, .34); }
.mc-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.mc-card-head h2 { font-size: 1.02rem; margin: 0; color: var(--text); display: inline-flex; align-items: center; gap: 9px; }
.mc-card-head h2 svg { width: 17px; height: 17px; color: var(--accent); }

/* Boutons */
.mc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 22px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font: inherit; font-weight: 700; border-radius: 12px; cursor: pointer; text-decoration: none; transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease; }
.mc-btn:hover { transform: translateY(-1px); }
.mc-btn svg { width: 18px; height: 18px; }
.mc-btn-primary { background: var(--accent); color: #04211f; border-color: transparent; box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--accent) 70%, transparent); }
.mc-btn-primary:hover { filter: brightness(1.05); }

/* Profil + salutation */
.mc-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.mc-avatar { width: 58px; height: 58px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: #04211f; background: linear-gradient(140deg, var(--accent), var(--accent-hover)); overflow: hidden; box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--accent) 60%, transparent); }
.mc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mc-profile-body { min-width: 0; }
.mc-profile-body h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 3px; color: var(--text); font-family: Georgia, serif; }
.mc-profile-body h1 span { color: var(--accent); }
.mc-profile-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--text-muted); font-size: .9rem; }
.mc-level { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--border)); border-radius: 999px; padding: 3px 11px; font-size: .82rem; }

/* Recherche */
.mc-search { position: relative; z-index: 50; isolation: isolate; margin-bottom: 22px; }
.mc-search-ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-soft); pointer-events: none; }
.mc-search-ico svg { width: 18px; height: 18px; }
.mc-search-input { width: 100%; box-sizing: border-box; height: 52px; padding: 0 18px 0 46px; border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: 14px; font: inherit; font-size: 1rem; transition: border-color .18s ease, box-shadow .18s ease; }
.mc-search-input::placeholder { color: var(--text-soft); }
.mc-search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3.5px color-mix(in srgb, var(--accent) 16%, transparent); }
.mc-search-results { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 8px); background: var(--card); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; max-height: 340px; overflow-y: auto; }
.mc-sr-item { display: flex; align-items: center; gap: 12px; width: 100%; text-align: start; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--text); border: 0; background: transparent; font: inherit; cursor: pointer; }
.mc-sr-item:hover, .mc-sr-item.on { background: var(--surface-soft); }
.mc-sr-num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; background: var(--surface-soft); display: grid; place-items: center; font-weight: 800; font-size: .82rem; color: var(--accent); }
.mc-sr-main { min-width: 0; display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.mc-sr-name { font-weight: 700; font-size: .94rem; color: var(--text); }
.mc-sr-sub { font-size: .8rem; color: var(--text-muted); }
.mc-sr-ar { margin-inline-start: auto; font-family: var(--font-arabic); font-size: 1.1rem; color: var(--text-muted); }
.mc-sr-empty { padding: 16px; color: var(--text-soft); font-size: .9rem; text-align: center; }

/* ── HÉROS : continuer la lecture ── */
.mc-hero { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(24px, 3.6vw, 40px); margin-bottom: 22px; color: #fff; border: 1px solid rgba(255, 255, 255, .1);
  background: radial-gradient(130% 150% at 88% 8%, rgba(127, 240, 214, .16), transparent 55%), linear-gradient(140deg, #0a463f 0%, #12706a 52%, #1f8d80 100%);
  box-shadow: 0 30px 60px -34px rgba(6, 40, 36, .7); }
.mc-hero-ill { position: absolute; inset-inline-end: -20px; bottom: -30px; width: min(300px, 42%); height: auto; color: #fff; opacity: .1; pointer-events: none; }
.mc-hero-label { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .82); margin: 0 0 12px; display: inline-flex; align-items: center; gap: 8px; }
.mc-hero-label svg { width: 15px; height: 15px; }
.mc-hero-main { position: relative; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mc-hero-num { font-size: .9rem; font-weight: 700; color: rgba(255, 255, 255, .7); }
.mc-hero-title { font-family: Georgia, serif; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin: 0; line-height: 1.1; }
.mc-hero-ar { font-family: var(--font-arabic); font-size: clamp(1.5rem, 3.4vw, 2.1rem); color: rgba(255, 255, 255, .92); }
.mc-hero-sub { position: relative; margin: 8px 0 0; font-size: .95rem; color: rgba(255, 255, 255, .82); display: flex; gap: 16px; flex-wrap: wrap; }
.mc-hero-sub span { display: inline-flex; align-items: center; gap: 6px; }
.mc-hero-msg { position: relative; margin: 14px 0 0; font-size: 1rem; line-height: 1.5; color: rgba(255, 255, 255, .95); font-weight: 500; max-width: 500px; }
.mc-hero-msg strong { font-weight: 750; }
.mc-hero-prog { position: relative; margin: 18px 0 22px; max-width: 460px; }
.mc-hero-prog-top { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255, 255, 255, .82); margin-bottom: 7px; }
.mc-hero-bar { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.mc-hero-fill { height: 100%; border-radius: 999px; background: rgba(255, 255, 255, .92); transition: width .6s cubic-bezier(.2, .7, .3, 1); }
.mc-hero .mc-btn { position: relative; background: #fff; color: #0a463f; border-color: transparent; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.mc-hero .mc-btn:hover { filter: brightness(1.02); }

/* Rangée 3 cartes */
.mc-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; align-items: stretch; }

/* Objectif du jour */
.mc-goal-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.mc-ring { --pct: 0; position: relative; width: 104px; height: 104px; flex: 0 0 auto; border-radius: 50%; background: conic-gradient(var(--accent) calc(var(--pct) * 1%), var(--surface-soft) 0); transition: background .5s ease; }
.mc-ring-center { position: absolute; inset: 10px; border-radius: 50%; background: var(--card); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mc-ring-num { font-size: 1.7rem; font-weight: 800; color: var(--text); line-height: 1; }
.mc-ring-den { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }
.mc-goal-body { flex: 1 1 150px; min-width: 140px; }
.mc-goal-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.mc-goal-head h2 { font-size: 1.02rem; margin: 0; display: inline-flex; align-items: center; gap: 8px; color: var(--text); }
.mc-goal-head h2 svg { width: 17px; height: 17px; color: var(--accent); }
.mc-streak { font-size: .82rem; font-weight: 700; color: #ff8a3d; background: color-mix(in srgb, #ff8a3d 14%, var(--surface)); border: 1px solid color-mix(in srgb, #ff8a3d 40%, var(--border)); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.mc-goal-msg { margin: 0 0 6px; color: var(--text-muted); font-size: .9rem; line-height: 1.45; }
.mc-goal-msg.mc-goal-done { color: var(--accent); font-weight: 650; }
.mc-goal-eta { margin: 0 0 12px; font-size: .8rem; color: var(--text-soft); }
.mc-goal-presets { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.mc-preset { min-width: 40px; height: 34px; padding: 0 11px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); font: inherit; font-weight: 700; font-size: .88rem; border-radius: 9px; cursor: pointer; transition: background .16s ease, color .16s ease, border-color .16s ease; }
.mc-preset:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); color: var(--text); }
.mc-preset.on { background: var(--accent); color: #04211f; border-color: transparent; }

/* Khatm */
.mc-khatm-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.mc-khatm-top h2 { font-size: 1.02rem; margin: 0; color: var(--text); display: inline-flex; align-items: center; gap: 8px; }
.mc-khatm-top h2 svg { width: 17px; height: 17px; color: var(--accent); }
.mc-khatm-pct { font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.mc-bar { height: 11px; border-radius: 999px; background: var(--surface-soft); overflow: hidden; border: 1px solid var(--border); }
.mc-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-hover)); transition: width .7s cubic-bezier(.2, .7, .3, 1); }
.mc-khatm-rows { margin-top: 14px; display: grid; gap: 8px; }
.mc-khatm-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-muted); }
.mc-khatm-row strong { color: var(--text); font-weight: 700; }

/* Verset du jour */
.mc-verse { display: flex; flex-direction: column; }
.mc-verse-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; display: inline-flex; align-items: center; gap: 8px; }
.mc-verse-label svg { width: 15px; height: 15px; }
.mc-verse-ar { font-family: var(--font-arabic); font-size: 1.4rem; line-height: 2; color: var(--text); direction: rtl; text-align: right; margin: 0 0 10px; }
.mc-verse-tr { font-size: .9rem; color: var(--text-muted); line-height: 1.55; margin: 0 0 12px; font-style: italic; }
.mc-verse-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mc-verse-ref { font-size: .82rem; font-weight: 700; color: var(--text-soft); }

/* Statistiques — mini-cartes */
.mc-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 26px; }
.mc-stat { --sc: var(--accent); display: flex; flex-direction: column; gap: 9px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 15px 15px 14px; text-align: left; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.mc-stat:hover { border-color: color-mix(in srgb, var(--sc) 42%, var(--border)); transform: translateY(-3px); box-shadow: 0 18px 32px -22px rgba(0, 0, 0, .45); }
.mc-stat-chip { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-size: 1.1rem; background: color-mix(in srgb, var(--sc) 15%, var(--surface)); border: 1px solid color-mix(in srgb, var(--sc) 32%, var(--border)); }
.mc-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.mc-stat-val.soon { font-size: .95rem; color: var(--text-soft); font-weight: 700; }
.mc-stat-lbl { font-size: .78rem; color: var(--text-muted); font-weight: 650; line-height: 1.2; }
.mc-stat-desc { font-size: .7rem; color: var(--text-soft); margin-top: -3px; }

/* Accès rapide */
.mc-shortcuts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 26px; }
.mc-shortcut { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 16px 8px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; color: var(--text-muted); font-size: .82rem; font-weight: 650; transition: border-color .18s ease, color .18s ease, transform .18s ease, background .18s ease; }
.mc-shortcut:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); color: var(--text); transform: translateY(-2px); background: var(--surface-soft); }
.mc-sc-ico { color: var(--accent); }
.mc-sc-ico svg { width: 22px; height: 22px; }

/* Colonnes principales */
.mc-cols { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; margin-bottom: 22px; align-items: start; }
.mc-col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.mc-section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.mc-section-head h2 { font-size: 1.05rem; margin: 0; color: var(--text); display: inline-flex; align-items: center; gap: 9px; }
.mc-section-head h2 svg { width: 17px; height: 17px; color: var(--accent); }
.mc-count { font-size: .78rem; font-weight: 700; color: var(--text-soft); background: var(--surface-soft); border: 1px solid var(--border); border-radius: 999px; padding: 2px 9px; }
.mc-link { color: var(--accent); font-weight: 650; font-size: .88rem; text-decoration: none; }
.mc-link:hover { text-decoration: underline; }

/* Grille versets (favoris / marque-pages) */
.mc-vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.mc-vcard { display: block; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 15px; text-decoration: none; color: inherit; transition: border-color .18s ease, transform .18s ease, background .18s ease; }
.mc-vcard:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); transform: translateY(-2px); background: var(--surface-soft); }
.mc-vcard-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.mc-vcard-name { font-size: .82rem; font-weight: 700; color: var(--accent); }
.mc-vcard-time { font-size: .72rem; color: var(--text-soft); }
.mc-vcard-ar { font-family: var(--font-arabic); font-size: 1.15rem; line-height: 1.85; color: var(--text); direction: rtl; text-align: right; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Empty state */
.mc-empty { grid-column: 1 / -1; text-align: center; padding: 30px 20px; border: 1px dashed var(--border); border-radius: var(--radius-md); background: color-mix(in srgb, var(--surface-soft) 50%, transparent); }
.mc-empty-ico { font-size: 2rem; opacity: .8; margin-bottom: 8px; }
.mc-empty p { color: var(--text-muted); font-size: .92rem; margin: 0 0 14px; }
.mc-empty .mc-btn { min-height: 42px; padding: 10px 18px; }

/* Recommandations */
.mc-reco-list { display: grid; gap: 10px; }
.mc-reco-item { display: flex; align-items: center; gap: 13px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: border-color .18s ease, background .18s ease; }
.mc-reco-item:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); background: var(--surface-soft); }
.mc-reco-badge { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; background: color-mix(in srgb, var(--accent) 14%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border)); }
.mc-reco-main { min-width: 0; flex: 1; }
.mc-reco-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.mc-reco-title { font-size: .95rem; font-weight: 700; color: var(--text); }
.mc-reco-sub { font-size: .8rem; color: var(--text-muted); }
.mc-reco-go { color: var(--text-soft); }
.mc-reco-go svg { width: 18px; height: 18px; }

/* Timeline activité */
.mc-timeline { position: relative; display: grid; gap: 2px; }
.mc-tl-item { position: relative; display: flex; gap: 13px; padding: 8px 0; }
.mc-tl-dot { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-soft); border: 1px solid var(--border); color: var(--accent); position: relative; z-index: 1; }
.mc-tl-dot svg { width: 15px; height: 15px; }
.mc-tl-item:not(:last-child) .mc-tl-dot::after { content: ""; position: absolute; top: 30px; left: 50%; transform: translateX(-50%); width: 2px; height: calc(100% + 4px); background: var(--border); z-index: 0; }
.mc-tl-body { min-width: 0; padding-top: 4px; }
.mc-tl-title { font-size: .9rem; color: var(--text); }
.mc-tl-title strong { font-weight: 700; }
.mc-tl-time { font-size: .76rem; color: var(--text-soft); margin-top: 1px; }
.mc-tl-empty { color: var(--text-soft); font-size: .9rem; padding: 8px 0; }

/* Heatmap assiduité */
.mc-heat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.mc-heat-head h2 { font-size: 1.05rem; margin: 0; color: var(--text); display: inline-flex; align-items: center; gap: 9px; }
.mc-heat-head h2 svg { width: 17px; height: 17px; color: var(--accent); }
.mc-heat-legend { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--text-soft); }
.mc-heat-grid { display: grid; grid-template-columns: repeat(15, 1fr); gap: 6px; }
.mc-heat-cell { aspect-ratio: 1; border-radius: 5px; border: 1px solid color-mix(in srgb, var(--border) 60%, transparent); }
.mc-heat-swatch { width: 11px; height: 11px; border-radius: 3px; border: 1px solid color-mix(in srgb, var(--border) 60%, transparent); }
.mc-heat [data-lvl="0"] { background: var(--surface-soft); }
.mc-heat [data-lvl="1"] { background: color-mix(in srgb, var(--accent) 28%, var(--surface-soft)); }
.mc-heat [data-lvl="2"] { background: color-mix(in srgb, var(--accent) 52%, var(--surface-soft)); }
.mc-heat [data-lvl="3"] { background: color-mix(in srgb, var(--accent) 76%, var(--surface-soft)); }
.mc-heat [data-lvl="4"] { background: var(--accent); }

/* Focus clavier */
.mc-btn:focus-visible, .mc-vcard:focus-visible, .mc-shortcut:focus-visible, .mc-reco-item:focus-visible, .mc-preset:focus-visible, .mc-sr-item:focus-visible, .mc-link:focus-visible, .mc-search-input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Bannière dynamique du jour */
.mc-banner { display: flex; align-items: center; gap: 12px; padding: 13px 18px; margin-bottom: 22px; border-radius: 14px; font-size: .92rem; line-height: 1.4; color: var(--text); background: linear-gradient(100deg, color-mix(in srgb, var(--accent) 13%, var(--surface)), color-mix(in srgb, var(--accent) 5%, var(--surface))); border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border)); }
.mc-banner-ico { flex: 0 0 auto; font-size: 1.15rem; line-height: 1; }
.mc-banner strong { color: var(--accent); font-weight: 750; }

/* Motif girih du héros (identité) */
.mc-hero-pat { position: absolute; inset: 0; width: 100%; height: 100%; color: #fff; opacity: .06; pointer-events: none; }

/* Actions du verset du jour */
.mc-verse-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.mc-vaction { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); font: inherit; font-size: .82rem; font-weight: 650; border-radius: 999px; cursor: pointer; text-decoration: none; transition: border-color .18s ease, color .18s ease, background .18s ease; }
.mc-vaction:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); color: var(--text); background: var(--surface-soft); }
.mc-vaction svg { width: 15px; height: 15px; }
.mc-vaction.on { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); background: color-mix(in srgb, var(--accent) 12%, var(--surface)); }

/* Empty state — illustration SVG */
.mc-empty-ill { width: 64px; height: 64px; margin: 0 auto 12px; color: color-mix(in srgb, var(--accent) 66%, var(--text-soft)); opacity: .9; }
.mc-empty-ill svg { width: 100%; height: 100%; }

/* Recommandations — raison */
.mc-reco-why { font-size: .72rem; color: var(--text-soft); font-style: italic; margin-top: 3px; }

/* Hiérarchie : cartes primaires (Objectif, Khatm) légèrement rehaussées */
.mc-goal, .mc-khatm { box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 22px 50px -30px rgba(0, 0, 0, .42); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .mc-row3 { grid-template-columns: 1fr 1fr; }
  .mc-row3 .mc-verse { grid-column: 1 / -1; }
  .mc-cols { grid-template-columns: 1fr; }
  .mc-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .mc-row3 { grid-template-columns: 1fr; }
  .mc-stats { grid-template-columns: repeat(2, 1fr); }
  .mc-shortcuts { grid-template-columns: repeat(3, 1fr); }
  .mc-heat-grid { grid-template-columns: repeat(10, 1fr); }
  .mc-hero-ill { opacity: .07; }
}
