/* Общий canon-стиль для подразделов «Внутренний мир»
   (sun_ruler / dominant / feelings / feel_elem / moon_phase /
    moon_aspects / moon_ruler / destress / water_houses)
   Цвета градиента передаются через CSS-переменные --c1 / --c2 на root. */

.ic-group {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 10px;
  margin: 16px 0 8px;
  border-left: 4px solid var(--c1, #6b7280);
}
.ic-group__emoji { font-size: 1.6rem; line-height: 1; }
.ic-group__label { font-weight: 700; color: #1f2937; font-size: 0.95rem; }
.ic-group__hint { font-size: 0.82rem; color: #6b7280; }

.ic-hero {
  background: linear-gradient(180deg, var(--c1, #6b7280) 0%, var(--c2, #1f2937) 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  margin: 8px 0 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.ic-hero__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}
.ic-hero__sub { margin-top: 10px; font-size: 0.95rem; opacity: 0.92; }
.ic-hero__emoji { font-size: 5.2rem; line-height: 1; margin: 14px 0 6px; }
.ic-hero__name {
  font-size: 1.85rem; font-weight: 700;
  margin: 4px 0 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.ic-hero__planet { opacity: 0.88; font-style: italic; margin-bottom: 14px; }
.ic-hero__motto {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.ic-hero__traits { font-weight: 600; letter-spacing: 0.02em; margin-top: 8px; }
.ic-hero__strength {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.ic-meta { font-size: 0.85rem; color: #6b7280; margin: 6px 0; }

.ic-mission {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border: 1px solid #c4b5fd;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
  color: #4c1d95;
}
.ic-mission__title {
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 6px;
}
.ic-mission__text { font-size: 1.05rem; line-height: 1.5; font-weight: 500; }

.ic-section { margin: 18px 0; }
.ic-section h3 { margin: 0 0 10px; font-size: 1.05rem; color: #1f2937; }
.ic-essence {
  background: #f8fafc;
  border-left: 4px solid var(--c1, #6b7280);
  padding: 14px 16px;
  border-radius: 6px;
  margin: 0 0 18px;
  line-height: 1.55;
  color: #1f2937;
}

.ic-bw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
@media (max-width: 540px) { .ic-bw { grid-template-columns: 1fr; } }
.ic-bw__card {
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #374151;
  background: #fff;
  line-height: 1.5;
}
.ic-bw__card--best { border-color: #16a34a; }
.ic-bw__card--worst { border-color: #b45309; }
.ic-bw__title { font-weight: 700; margin-bottom: 6px; font-size: 0.95rem; }
.ic-bw__title--best { color: #16a34a; }
.ic-bw__title--worst { color: #b45309; }

/* Цветные плашки */
.ic-plate {
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
}
.ic-plate__title { font-weight: 700; margin-bottom: 6px; }
.ic-plate__label {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: 6px;
}

.ic-plate--cyan {
  background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
  border: 1px solid #22d3ee; color: #155e75;
}
.ic-plate--yellow {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b; color: #78350f;
}
.ic-plate--pink {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  border: 1px solid #f472b6; color: #831843;
}
.ic-plate--purple {
  background: linear-gradient(135deg, #f5d0fe 0%, #e9d5ff 100%);
  border: 1px solid #c084fc; color: #581c87;
}
.ic-plate--gray {
  background: #f9fafb;
  border-left: 4px solid var(--c1, #6b7280);
  border-radius: 8px;
  padding: 14px 18px;
  font-style: italic;
}
.ic-plate--gray .ic-plate__title { font-style: normal; }
/* 📖 Определение — светлая канон-карточка под hero (что это) */
.ic-define {
  background: #f8fafc; border: 1px solid #e5e7eb;
  border-left: 4px solid var(--c1, #94a3b8);
  border-radius: 10px; padding: 14px 18px; margin: 14px 0; color: #1f2937;
}
.ic-define__title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: #64748b; margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}
.ic-define__text { font-size: 0.96rem; line-height: 1.6; }
.ic-define__text i { font-style: normal; }
.ic-define__motiv { margin-top: 11px; }
.ic-ind__intro { font-size: 0.88rem; color: #6b7280; line-height: 1.5; margin: -3px 0 10px; }
.ic-ind__intro i { font-style: normal; }

/* 📊 Общий балл — карточка с прогресс-баром, % , звёздами и уровнем */
.ic-score {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0;
}
.ic-score__head { display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 9px; }
.ic-score__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; }
.ic-score__stars { font-size: 1rem; letter-spacing: 1px; color: #f59e0b; white-space: nowrap; }
.ic-score__bar { height: 10px; border-radius: 999px; background: #eef2f7; overflow: hidden; }
.ic-score__fill { height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #a78bfa 0%, #7c6cc4 100%); transition: width .4s ease; }
.ic-score__foot { display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 9px; }
.ic-score__pct { font-weight: 700; font-size: 1.05rem; color: #4c1d95; }
.ic-score__level { font-size: 0.85rem; color: #475569; background: #f3f4f6;
  border-radius: 999px; padding: 3px 11px; }
/* раскрытие в Профиль (native <details>) */
.ic-score__sum { list-style: none; cursor: pointer; display: block; margin: 0; }
.ic-score__sum::-webkit-details-marker { display: none; }
.ic-score[data-static] > .ic-score__sum { cursor: default; pointer-events: none; }
.ic-score__right { display: inline-flex; align-items: center; gap: 8px; }
.ic-score__chev { color: #94a3b8; font-size: 0.8rem; transition: transform .15s; }
.ic-score[open] .ic-score__chev { transform: rotate(180deg); }
.ic-score:not([data-static]) > .ic-score__sum:hover .ic-score__title { color: #4c1d95; }
.ic-score__body { margin-top: 12px; padding-top: 12px; border-top: 1px dashed #e5e7eb;
  font-size: 0.93rem; line-height: 1.6; color: #1f2937; }
.ic-score__body b { color: #111827; }
.ic-score__body i { font-style: normal; color: #374151; }

/* 🎯 Режимы — куда уходит энергия (мини-бары по каналам + доминанта) */
.ic-modes {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0;
}
.ic-modes__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 11px; }
.ic-modes__intro { margin: -4px 0 12px; font-size: 0.84rem; line-height: 1.45; color: #6b7280; }
/* 🔄 Ретроградные планеты */
.ic-retro { border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px 16px; background: #fbfaff; }
.ic-retro__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 6px; }
.ic-retro__intro { font-size: 0.84rem; line-height: 1.45; color: #6b7280; margin-bottom: 12px; }
.ic-retro__row { display: flex; gap: 12px; align-items: baseline; padding: 9px 0;
  border-top: 1px solid #ede9fe; }
.ic-retro__row:first-of-type { border-top: none; padding-top: 0; }
.ic-retro__glyph { font-size: 1.2rem; color: #7c3aed; flex: 0 0 auto; min-width: 36px;
  font-weight: 600; }
.ic-retro__body { font-size: 0.9rem; line-height: 1.45; color: #374151; }
.ic-retro__body b { color: #1f2937; }
.ic-modes__rows { display: grid; gap: 11px; }
.ic-modes__row { display: block; }
.ic-modes__line { display: grid; grid-template-columns: minmax(96px, 1.1fr) 2fr auto;
  align-items: center; gap: 10px; }
.ic-modes__desc { margin: 4px 0 0 2px; font-size: 0.8rem; line-height: 1.4; color: #94a3b8; }
.ic-modes__row.is-dom .ic-modes__desc { color: #b45309; }
.ic-modes__name { font-size: 0.88rem; color: #374151; }
.ic-modes__bar { height: 9px; border-radius: 999px; background: #eef2f7; overflow: hidden; }
.ic-modes__fill { display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #fbbf6f 0%, #f59e0b 100%); transition: width .4s ease; }
.ic-modes__val { font-weight: 700; font-size: 0.9rem; color: #475569;
  min-width: 30px; text-align: right; white-space: nowrap; }
.ic-modes__row.is-dom .ic-modes__name { color: #9a3412; font-weight: 700; }
.ic-modes__row.is-dom .ic-modes__fill { background: linear-gradient(90deg, #fb923c 0%, #ea580c 100%); }
.ic-modes__dom { color: #ea580c; }
.ic-modes__avg { margin-top: 11px; font-size: 0.88rem; color: #64748b; }
.ic-modes__exp { margin-top: 10px; }
.ic-modes__exp > summary { cursor: pointer; list-style: none; font-size: 0.85rem;
  color: #6a4fb0; font-weight: 600; }
.ic-modes__exp > summary::-webkit-details-marker { display: none; }
.ic-modes__note { margin-top: 8px; font-size: 0.88rem; line-height: 1.55; color: #475569; }
.ic-modes__note i { font-style: normal; }
.ic-modes__note b { color: #1f2937; }

/* 🧮 Активаторы и контроль — из чего сложился балл */
.ic-balance {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0;
}
.ic-balance__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 10px; }
.ic-balance__rows { display: grid; gap: 7px; }
.ic-balance__row { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: #374151; }
.ic-balance__lbl { flex: 1; }
.ic-balance__num { font-weight: 700; min-width: 34px; text-align: right; }
.ic-balance__num--pos { color: #16a34a; }
.ic-balance__num--neg { color: #dc2626; }
.ic-balance__row--total { margin-top: 4px; padding-top: 8px; border-top: 1px dashed #e5e7eb;
  color: #1f2937; font-weight: 600; }
.ic-balance__row--total .ic-balance__num { color: #4c1d95; font-size: 1.05rem; }
.ic-balance__exp { margin-top: 10px; }
.ic-balance__exp > summary { cursor: pointer; list-style: none; font-size: 0.85rem;
  color: #6a4fb0; font-weight: 600; }
.ic-balance__exp > summary::-webkit-details-marker { display: none; }
.ic-balance__note { margin-top: 8px; font-size: 0.88rem; line-height: 1.55; color: #475569; }
.ic-balance__note b { color: #1f2937; }

/* 💬 Вывод — итоговая мысль (мягкий индиго) */
.ic-conclusion {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe; border-radius: 12px; padding: 14px 16px;
  margin: 14px 0; color: #312e81;
}
.ic-conclusion__title { font-weight: 700; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 6px; color: #4338ca; }
.ic-conclusion__text { font-size: 0.96rem; line-height: 1.6; }

/* 🎚 Индикаторы (что усиливает/сдерживает) — ✅ сработавшие + ❌ в раскрывашке */
.ic-ind { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0; }
.ic-ind__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 10px; }
.ic-ind__list { display: grid; gap: 8px; }
.ic-ind__item { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.ic-ind__item--on { border-color: #bbf7d0; background: #f0fdf4; }
.ic-ind__item--off { border-color: #e5e7eb; background: #fafafa; }
.ic-ind__sum { list-style: none; cursor: pointer; display: flex; align-items: center;
  gap: 9px; padding: 10px 13px; font-size: 0.92rem; }
.ic-ind__sum::-webkit-details-marker { display: none; }
.ic-ind__sum::after { content: '▾'; color: #9ca3af; font-size: 0.75rem; transition: transform .15s; }
.ic-ind__item[open] .ic-ind__sum::after { transform: rotate(180deg); }
.ic-ind__mark { flex: none; }
.ic-ind__name { flex: 1; color: #1f2937; font-weight: 500; }
.ic-ind__item--off .ic-ind__name { color: #6b7280; font-weight: 400; }
.ic-ind__score { flex: none; font-weight: 700; color: #16a34a; background: #dcfce7;
  border-radius: 999px; padding: 2px 9px; font-size: 0.82rem; }
/* нейтральный вклад-фактор (маркер «•», без зелёного «галочка»-смысла) */
.ic-ind__item--plain { border-color: #e5e7eb; background: #fbfbfc; }
.ic-ind__item--plain .ic-ind__mark { color: #94a3b8; }
.ic-ind__item--plain .ic-ind__score { color: #475569; background: #eef2f7; }
/* Плоский пункт без описания (golden-template ✅+балл) — без стрелки-раскрытия */
.ic-ind__item--flat .ic-ind__sum { cursor: default; }
.ic-ind__item--flat .ic-ind__sum::after { content: none; }
.ic-ind__body { padding: 4px 14px 13px; border-top: 1px dashed #e5e7eb;
  font-size: 0.9rem; line-height: 1.55; color: #374151; }
.ic-ind__body i { color: #475569; }
.ic-ind__body b { color: #1f2937; }
.ic-ind__empty { font-size: 0.88rem; color: #9ca3af; padding: 4px 2px; }
.ic-ind__more { margin-top: 9px; }
.ic-ind__more-sum { list-style: none; cursor: pointer; font-size: 0.85rem; color: #6b7280;
  font-weight: 600; padding: 6px 0; }
.ic-ind__more-sum::-webkit-details-marker { display: none; }
.ic-ind__more[open] .ic-ind__more-sum { color: #4b5563; }
.ic-ind__list--off { margin-top: 6px; }
.ic-ind-total { display: flex; justify-content: space-between; align-items: center;
  background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 11px 16px; margin: 10px 0 14px; font-size: 0.92rem; color: #374151; }
.ic-ind-total b { color: #16a34a; font-size: 1.05rem; }

/* 🎛 Детальная карточка режима — цветная левая полоса + бар + раскрытие */
.ic-mode { background: #fff; border: 1px solid #e5e7eb; border-left: 4px solid var(--mc, #cbd5e1);
  border-radius: 10px; padding: 13px 16px; margin: 10px 0; }
.ic-mode--dom { background: color-mix(in srgb, var(--mc) 7%, #fff);
  box-shadow: 0 1px 8px rgba(0,0,0,.05); }
.ic-mode__head { display: flex; align-items: center; gap: 9px; }
.ic-mode__emoji { font-size: 1.15rem; flex: none; }
.ic-mode__name { font-weight: 700; font-size: 0.95rem; color: #1f2937; flex: 1; }
.ic-mode__dom { flex: none; font-size: 0.72rem; font-weight: 700; color: #fff;
  background: var(--mc, #f59e0b); border-radius: 999px; padding: 2px 9px; white-space: nowrap; }
.ic-mode__val { flex: none; font-weight: 700; color: var(--mc, #475569);
  min-width: 22px; text-align: right; }
.ic-mode__bar { height: 8px; border-radius: 999px; background: #eef2f7; overflow: hidden; margin-top: 9px; }
.ic-mode__fill { display: block; height: 100%; border-radius: 999px; background: var(--mc, #94a3b8);
  transition: width .4s ease; }
.ic-mode__tag { margin-top: 9px; font-size: 0.9rem; color: #475569; font-style: italic; }
.ic-mode__more { margin-top: 9px; }
.ic-mode__more > summary { list-style: none; cursor: pointer; font-size: 0.85rem;
  color: #6a4fb0; font-weight: 600; }
.ic-mode__more > summary::-webkit-details-marker { display: none; }
.ic-mode__body { margin-top: 8px; padding-top: 9px; border-top: 1px dashed #e5e7eb;
  font-size: 0.9rem; line-height: 1.55; color: #374151; }
.ic-mode__body b { color: #1f2937; }
.ic-mode-sum { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 11px 16px; margin: 10px 0 14px; font-size: 0.9rem; color: #374151; line-height: 1.6; }
.ic-mode-sum b { color: #1f2937; }

/* 🧩 Универсальная секция-карточка для блоков с заголовком (Формула/Флаги/Ретро…) */
.ic-sec { background: #fff; border: 1px solid #e5e7eb; border-left: 4px solid #94a3b8;
  border-radius: 10px; padding: 13px 16px; margin: 10px 0;
  font-size: 0.93rem; line-height: 1.62; color: #374151; }
.ic-sec > b:first-child { display: block; color: #1f2937; font-size: 0.98rem;
  margin-bottom: 7px; }
.ic-sec i { font-style: normal; color: #6b7280; }
.ic-sec b { color: #1f2937; }

/* 🏷 Карточка уровня (🟢 Осторожный + описание) */
.ic-level { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac; border-radius: 12px; padding: 15px 18px; margin: 14px 0; }
.ic-level__head { display: flex; align-items: center; gap: 10px; }
.ic-level__emoji { font-size: 1.5rem; }
.ic-level__name { font-weight: 800; font-size: 1.15rem; color: #166534; }
.ic-level__desc { margin-top: 8px; font-size: 0.94rem; line-height: 1.6; color: #14532d; }

/* 📊 Списки мини-баров (расчёт балла, типы…) */
.ic-bars { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0; }
.ic-bars__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 10px; }
.ic-bars__rows { display: grid; gap: 8px; }
.ic-bars__row { display: grid; grid-template-columns: minmax(96px, 1.2fr) 2fr auto;
  align-items: center; gap: 10px; }
.ic-bars__name { font-size: 0.89rem; color: #374151; }
.ic-bars__bar { height: 9px; border-radius: 999px; background: #eef2f7; overflow: hidden; }
.ic-bars__fill { display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #a78bfa 0%, #7c6cc4 100%); transition: width .4s ease; }
.ic-bars__val { font-weight: 700; font-size: 0.88rem; color: #4c1d95;
  min-width: 24px; text-align: right; }
.ic-bars__exp { margin-top: 10px; }
.ic-bars__exp > summary { cursor: pointer; list-style: none; font-size: 0.85rem;
  color: #6a4fb0; font-weight: 600; }
.ic-bars__exp > summary::-webkit-details-marker { display: none; }
.ic-bars__note { margin-top: 8px; font-size: 0.88rem; line-height: 1.55; color: #475569; }

/* ⚠️ Дисклеймер — приглушённая плашка */
.ic-disclaimer { font-size: 0.84rem; color: #94a3b8; line-height: 1.5; text-align: center;
  background: #f9fafb; border: 1px solid #f1f3f5; border-radius: 10px;
  padding: 11px 16px; margin: 16px 0 6px; }
.ic-disclaimer i { font-style: normal; }

/* 🚩 Флаги — сигнальные лампочки (Да/Нет + раскрытие) */
.ic-flags { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; margin: 14px 0; }
.ic-flags__title { font-weight: 700; font-size: 0.95rem; color: #1f2937; margin-bottom: 8px; }
.ic-flags__intro { font-size: 0.88rem; color: #6b7280; line-height: 1.5; margin-bottom: 11px; }
.ic-flags__list { display: grid; gap: 8px; }
.ic-flags__item { border: 1px solid #e5e7eb; border-radius: 10px; background: #fafafa; }
.ic-flags__item.is-on { border-color: #fca5a5; background: #fef2f2; }
.ic-flags__sum { list-style: none; cursor: pointer; display: flex; align-items: center;
  gap: 10px; padding: 11px 13px; }
.ic-flags__sum::-webkit-details-marker { display: none; }
.ic-flags__sum::after { content: '▾'; color: #9ca3af; font-size: 0.75rem; transition: transform .15s; }
.ic-flags__item[open] .ic-flags__sum::after { transform: rotate(180deg); }
.ic-flags__item[data-nodesc] .ic-flags__sum { cursor: default; }
.ic-flags__item[data-nodesc] .ic-flags__sum::after { display: none; }
.ic-flags__lamp { font-size: 1.15rem; flex: none; }
.ic-flags__lamp.is-off { filter: grayscale(1); opacity: 0.42; }
.ic-flags__name { flex: 1; font-weight: 600; font-size: 0.92rem; color: #374151; }
.ic-flags__item.is-on .ic-flags__name { color: #991b1b; }
.ic-flags__status { flex: none; font-size: 0.8rem; font-weight: 700; color: #6b7280;
  background: #eef2f7; border-radius: 999px; padding: 3px 12px; }
.ic-flags__status.is-yes { color: #fff; background: #dc2626; }
.ic-flags__desc { padding: 2px 14px 13px; font-size: 0.88rem; line-height: 1.55; color: #475569; }

/* ⚖️ Баланс — мятная плашка (здоровая норма, не развитие) */
.ic-plate--mint {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #34d399; color: #065f46;
}

/* 🧭 Как проявляется — нейтральный блок с поведенческими маркерами */
.ic-manifest {
  background: #f8fafc; border: 1px solid #e5e7eb; border-left: 4px solid #94a3b8;
  border-radius: 10px; padding: 14px 16px; margin: 18px 0; color: #1f2937;
}
.ic-manifest__title { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; color: #334155; }
.ic-manifest__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.ic-manifest__list li { display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.93rem; line-height: 1.45; }
.ic-manifest__list li::before { content: '•'; color: #94a3b8; font-weight: 700; }

/* 🔗 Связанные сущности — нейтральные чипы-ссылки */
.ic-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 12px 0; }
.ic-links__lbl { font-size: 0.82rem; color: #6b7280; font-weight: 600; }
.ic-links__chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px;
  border-radius: 999px; background: #f3f4f6; border: 1px solid #e5e7eb; color: #374151;
  font-size: 0.85rem; text-decoration: none; }
.ic-links__chip:hover { background: #e5e7eb; }

/* Аккордеон-канон .ic-acc — единый паттерн раскрытия */
.ic-acc { border: 1px solid #e5e7eb; border-radius: 10px; background: #fff; margin: 8px 0; }
.ic-acc__summary { list-style: none; cursor: pointer; padding: 12px 16px; font-weight: 600;
  color: #1f2937; display: flex; align-items: center; gap: 8px; }
.ic-acc__summary::-webkit-details-marker { display: none; }
.ic-acc__summary::after { content: '▶'; margin-left: auto; opacity: .5; font-size: .8rem;
  transition: transform .15s; }
.ic-acc[open] .ic-acc__summary::after { transform: rotate(90deg); }
.ic-acc__body { padding: 4px 16px 14px; border-top: 1px dashed #e5e7eb; color: #1f2937;
  font-size: 0.93rem; line-height: 1.5; }

/* Аспекты */
.ic-aspects {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 18px 0;
}
@media (max-width: 720px) { .ic-aspects { grid-template-columns: 1fr; } }
.ic-asp-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 2px solid #e5e7eb;
}
.ic-asp-box--support { border-color: #16a34a; background: #f0fdf4; }
.ic-asp-box--tension { border-color: #b45309; background: #fff7ed; }
.ic-asp-box__title { font-weight: 700; margin-bottom: 12px; font-size: 1rem; }
.ic-asp-box--support .ic-asp-box__title { color: #166534; }
.ic-asp-box--tension .ic-asp-box__title { color: #9a3412; }
.ic-asp-row {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.ic-asp-row:last-child { border-bottom: none; padding-bottom: 0; }
.ic-asp-row:first-child { padding-top: 0; }
.ic-asp-row__head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: #1f2937; margin-bottom: 6px;
}
.ic-asp-row__symbol { font-size: 1.4rem; }
.ic-asp-row__name { color: #6b7280; font-weight: 500; font-size: 0.92rem; }
.ic-asp-row__interp { color: #374151; font-size: 0.93rem; line-height: 1.5; }

/* Subs nav (chips) */
.ic-subs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 12px 0 18px;
}
.ic-sub {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.ic-sub:hover { background: #e5e7eb; }
.ic-sub.is-active { background: var(--c1, #6b7280); color: #fff; }


/* 📅 Помесячные профекции — строки-месяцы */
.ic-months { display: flex; flex-direction: column; gap: 7px; margin: 14px 0; }
.ic-month { display: flex; gap: 12px; align-items: stretch; background: #fff;
  border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px 13px; }
.ic-month--cur { border-color: #7c6cc4; box-shadow: 0 0 0 1px #7c6cc4;
  background: #f6f4fc; }
.ic-month__dates { flex: 0 0 auto; font-size: .82rem; font-weight: 700;
  color: #4c3a75; display: flex; flex-direction: column; align-items: center;
  justify-content: center; line-height: 1.25; font-variant-numeric: tabular-nums; }
.ic-month__dates span { opacity: .5; font-weight: 400; }
.ic-month__body { flex: 1 1 auto; min-width: 0; }
.ic-month__sign { font-size: .98rem; display: flex; align-items: center;
  flex-wrap: wrap; gap: 7px; }
.ic-month__ruler { font-size: .85rem; color: #6b7280; }
.ic-month__now { font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: #fff; background: #7c6cc4; border-radius: 999px;
  padding: 2px 9px; }
.ic-month__focus { font-size: .88rem; color: #4b5563; margin-top: 3px;
  line-height: 1.4; }


/* 🗓 Профекции — обзор: таблица лет + следующий год */
.ic-years { display: flex; flex-direction: column; gap: 6px; margin: 14px 0; }
.ic-year { display: flex; gap: 12px; align-items: center; background: #fff;
  border: 1px solid #e5e7eb; border-radius: 11px; padding: 8px 13px; }
.ic-year--cur { border-color: #7c6cc4; box-shadow: 0 0 0 1px #7c6cc4; background: #f6f4fc; }
.ic-year__age { flex: 0 0 46px; text-align: center; font-weight: 800;
  font-size: 1.15rem; color: #4c3a75; line-height: 1; font-variant-numeric: tabular-nums; }
.ic-year__age span { display: block; font-size: .6rem; font-weight: 600;
  opacity: .6; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.ic-year__body { flex: 1 1 auto; min-width: 0; }
.ic-year__sign { font-size: .96rem; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.ic-year__ruler { font-size: .84rem; color: #6b7280; }
.ic-year__now { font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: #fff; background: #7c6cc4; border-radius: 999px; padding: 2px 9px; }
.ic-year__house { font-size: .84rem; color: #6b7280; margin-top: 1px; }
.ic-next { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe; border-radius: 12px; padding: 14px 16px; margin: 14px 0; color: #312e81; }
.ic-next__title { font-weight: 700; font-size: .95rem; color: #4338ca; margin-bottom: 8px; }
.ic-next__head { font-size: 1.02rem; margin-bottom: 6px; }
.ic-next__house { font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.ic-next__text { font-size: .92rem; line-height: 1.55; margin-bottom: 6px; }
.ic-next__natal { font-size: .85rem; color: #4c3a75; }


/* ⏳ Прогностика — универсальный таймлайн периодов (release / dasha /
   деценниалы / фирдары / дирекции / затмения / ингрессии …) */
.ic-tl { display: flex; flex-direction: column; gap: 6px; margin: 10px 0; }
.ic-tl__row { display: flex; gap: 10px; align-items: baseline; background: #fff;
  border: 1px solid #e5e7eb; border-radius: 10px; padding: 9px 12px; }
.ic-tl__row--now { border-color: var(--c1, #7c6cc4);
  box-shadow: 0 0 0 1px var(--c1, #7c6cc4); background: #f6f4fc; }
.ic-tl__marker { flex: 0 0 auto; min-width: 1.5em; text-align: center;
  font-size: 1.1rem; line-height: 1.3; color: #4c3a75; }
.ic-tl__body { flex: 1 1 auto; min-width: 0; }
.ic-tl__name { font-size: .95rem; color: #1f2937; font-weight: 600; line-height: 1.35; }
.ic-tl__name b { font-weight: 700; }
.ic-tl__name i { font-style: normal; color: #6b7280; }
.ic-tl__meta { font-size: .84rem; color: #6b7280; margin-top: 1px;
  font-variant-numeric: tabular-nums; }
.ic-tl__note { font-size: .84rem; color: #64748b; line-height: 1.45; margin-top: 4px; }
.ic-tl__note i { font-style: normal; }
.ic-tl__hot { color: #b45309; font-weight: 600; }
.ic-tl__now { flex: 0 0 auto; align-self: center; font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: #fff;
  background: var(--c1, #7c6cc4); border-radius: 999px; padding: 2px 9px;
  white-space: nowrap; }
.ic-tl__now--hot { background: #d97706; }

/* 📍 Текущий период — акцентная карточка */
.ic-hl { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe; border-radius: 12px; padding: 14px 16px;
  margin: 14px 0 8px; color: #312e81; }
.ic-hl__title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: #3730a3; }
.ic-hl__title b { font-weight: 800; }
.ic-hl__text { font-size: .94rem; line-height: 1.55; }
.ic-hl__text i { font-style: normal; }

/* 🧩 Прогностика — блок-карточка с заголовком + абзацами/таймлайном */
.ic-blk { background: #fff; border: 1px solid #e5e7eb;
  border-left: 4px solid var(--c1, #94a3b8); border-radius: 10px;
  padding: 13px 16px; margin: 12px 0; }
.ic-blk__title { font-weight: 700; color: #1f2937; font-size: .98rem;
  margin-bottom: 9px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.ic-blk__title b { font-weight: 700; }
.ic-blk__p { font-size: .93rem; line-height: 1.62; color: #374151; margin: 0 0 8px; }
.ic-blk__p:last-child { margin-bottom: 0; }
.ic-blk__p i { font-style: normal; color: #6b7280; }
.ic-blk .ic-tl { margin-bottom: 0; }


/* ── Звёзды богатства (finance p6): раскрывающиеся плашки ── */
.ic-stars { margin: 8px 0; }
.ic-stars__head { font-size: 1.05rem; font-weight: 700; color: #1f2937; margin: 4px 0 2px; }
.ic-stars__head b { font-weight: 700; }
.ic-stars__sub { display: block; font-weight: 400; font-style: italic;
  color: #6b7280; font-size: 0.85rem; margin-top: 2px; }
.ic-stars__intro { font-size: 0.9rem; color: #475569; line-height: 1.55; margin: 6px 0 12px; }
.ic-stars__found { font-size: 0.92rem; color: #1f2937; margin: 10px 0; }
.ic-stars__found b { color: #b45309; }
.ic-stars__list { display: flex; flex-direction: column; gap: 8px; }
.ic-star { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.ic-star.is-active { border-color: #e2b93b; background: #fffdf5;
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.12); }
.ic-star__sum { list-style: none; cursor: pointer; display: flex; align-items: center;
  gap: 10px; padding: 12px 14px; font-size: 0.95rem; }
.ic-star__sum::-webkit-details-marker { display: none; }
.ic-star__sum:hover { background: rgba(0, 0, 0, 0.02); }
.ic-star__name { font-weight: 700; color: #1f2937; }
.ic-star__badge { font-size: 0.72rem; font-weight: 600; color: #b45309;
  background: #fef3c7; border-radius: 999px; padding: 2px 8px; white-space: nowrap; }
.ic-star__pos { margin-left: auto; font-size: 0.82rem; color: #6b7280;
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.ic-star__chev { font-size: 0.75rem; color: #9ca3af; transition: transform .2s; }
.ic-star[open] .ic-star__chev { transform: rotate(180deg); }
.ic-star__body { padding: 10px 14px 13px; border-top: 1px dashed #e5e7eb;
  font-size: 0.9rem; line-height: 1.55; color: #374151; }
.ic-star__body b { color: #1f2937; }
.ic-star__conj { margin-top: 8px; font-size: 0.86rem; color: #b45309; font-weight: 600; }
