/* ============================================================
   Lucia — тёмный премиальный эзотерик
   Палитра и шрифты — из бренд-гайда разбора (core/htmlreport.py)
   ============================================================ */

:root {
  --bg-0: #0a0f24;
  --bg-1: #1a1f30;
  --ink: #f1ece3;
  --ink-dim: rgba(241, 236, 227, 0.64);
  --ink-faint: rgba(241, 236, 227, 0.5);
  --gold: #e7be63;
  --gold-dim: rgba(231, 190, 99, 0.7);
  --copper: #d08a4a;
  --rose: #e58fa2;
  --teal: #6fd0bb;
  --line: rgba(231, 190, 99, 0.16);
  --line-soft: rgba(241, 236, 227, 0.08);
  --card: rgba(241, 236, 227, 0.03);
  --card-hover: rgba(241, 236, 227, 0.055);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --w-content: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* якоря не прячутся под липкой шапкой */
[id] { scroll-margin-top: 84px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%) fixed, var(--bg-0);
  min-height: 100dvh;
  overflow-x: hidden;
}

::selection { background: rgba(231, 190, 99, 0.28); color: var(--ink); }

img, svg { display: block; max-width: 100%; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: #f0cd7e; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- типографика ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 0.9rem;
  max-width: 22ch;
}

.section-lede {
  color: var(--ink-dim);
  max-width: 56ch;
  font-size: 1.02rem;
}

/* ---------- каркас ---------- */

.wrap {
  width: min(var(--w-content), 100% - 3rem);
  margin-inline: auto;
}

section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

.hairline {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

/* ---------- шапка ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 15, 36, 0.72);
  border-bottom: 1px solid var(--line-soft);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand:hover { color: var(--ink); }

.brand .age {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 0.1rem 0.3rem;
  transform: translateY(-2px);
}

.site-nav { display: flex; gap: 1.8rem; }

.site-nav a {
  font-size: 0.86rem;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--ink); }

.head-cta { flex-shrink: 0; display: flex; align-items: center; gap: 0.6rem; }

/* ---------- переключатель языка ---------- */

.lang { position: relative; flex-shrink: 0; }

.lang summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  padding: 0.45rem 0.7rem;
  min-height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.lang summary::-webkit-details-marker { display: none; }

.lang summary:hover { border-color: rgba(231, 190, 99, 0.45); color: var(--ink); }

.lang summary svg { width: 15px; height: 15px; flex-shrink: 0; }

.lang-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #10152c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.4rem;
  min-width: 160px;
  box-shadow: 0 18px 50px rgba(4, 7, 20, 0.6);
  z-index: 60;
}

.lang-panel a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 0.87rem;
  color: var(--ink-dim);
  border-radius: 8px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.lang-panel a:hover { background: rgba(231, 190, 99, 0.08); color: var(--ink); }

.lang-panel a[aria-current="true"] { color: var(--gold); }

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.78rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
    color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  white-space: nowrap;
  min-height: 47px;
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: #100c04;
  box-shadow: 0 0 0 rgba(231, 190, 99, 0);
}
.btn-gold:hover {
  background: #f0cd7e;
  color: #100c04;
  box-shadow: 0 4px 28px rgba(231, 190, 99, 0.28);
}

.btn-ghost {
  border-color: rgba(231, 190, 99, 0.35);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(231, 190, 99, 0.07);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.84rem; min-height: 44px; }

/* ---------- hero ---------- */

.hero {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  overflow: clip;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 5.4rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.hero-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-sub {
  color: var(--ink-dim);
  max-width: 46ch;
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.hero-note {
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* сцена: кольцо натальной карты + чат */

.hero-scene {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candle-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(231, 190, 99, 0.13) 0%,
    rgba(208, 138, 74, 0.05) 34%,
    transparent 62%
  );
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.045); }
}

.chart-ring {
  position: absolute;
  width: min(520px, 96%);
  aspect-ratio: 1;
  color: var(--gold);
  opacity: 0.7;
  animation: ringspin 160s linear infinite;
  pointer-events: none;
}

@keyframes ringspin {
  to { transform: rotate(360deg); }
}

.sparks { position: absolute; inset: 0; pointer-events: none; }

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: twinkle var(--dur, 5s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: var(--peak, 0.7); transform: scale(1); }
}

/* чат-мокап */

.chat {
  position: relative;
  z-index: 2;
  width: min(370px, 100%);
  background: rgba(16, 21, 44, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 24px 70px rgba(4, 7, 20, 0.55);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(111, 208, 187, 0.8);
}

.msg {
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  margin-bottom: 0.6rem;
  max-width: 88%;
}

.msg-lucia {
  background: rgba(231, 190, 99, 0.09);
  border: 1px solid rgba(231, 190, 99, 0.14);
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: rgba(241, 236, 227, 0.07);
  border: 1px solid var(--line-soft);
  border-bottom-right-radius: 4px;
  margin-left: auto;
}

.msg:last-child { margin-bottom: 0; }

/* ---------- как это работает ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.step { position: relative; padding-top: 1.4rem; }

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--gold-dim);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.step h3 { font-size: 1.45rem; margin-bottom: 0.55rem; }

.step p { color: var(--ink-dim); font-size: 0.95rem; }

/* ---------- четыре системы ---------- */

.systems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.system {
  --accent: var(--gold);
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.7rem 1.7rem 1.8rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.system:hover {
  background: var(--card-hover);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  transform: translateY(-3px);
}

.system.sys-copper { --accent: var(--copper); }
.system.sys-gold { --accent: var(--gold); }
.system.sys-rose { --accent: var(--rose); }
.system.sys-teal { --accent: var(--teal); }

.system-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.system h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.system p { color: var(--ink-dim); font-size: 0.93rem; }

.systems-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.systems-note svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-dim); }

/* ---------- глубокий разбор ---------- */

.report .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.report-preview {
  background: linear-gradient(160deg, #10152c 0%, #171c33 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 2.1rem 2.2rem;
  box-shadow: 0 24px 70px rgba(4, 7, 20, 0.5);
  position: relative;
  overflow: hidden;
}

.report-preview::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(231, 190, 99, 0.09), transparent 65%);
  pointer-events: none;
}

.rp-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.rp-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.rp-meta {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}

.rp-chapters { list-style: none; }

.rp-chapters li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.rp-chapters li:last-child { border-bottom: 0; }

.rp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rp-footer {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.report-copy .section-title { max-width: 18ch; }

.report-list { list-style: none; margin: 1.8rem 0 2.2rem; }

.report-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--ink-dim);
  font-size: 0.97rem;
}

.report-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.report-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.report-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-faint);
  margin-left: 0.5rem;
}

/* ---------- тарифы ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
  align-items: stretch;
}

.plan {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.6rem 1.25rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.plan:hover { background: var(--card-hover); }

.plan-featured {
  border-color: rgba(231, 190, 99, 0.45);
  background: rgba(231, 190, 99, 0.05);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #100c04;
  background: var(--gold);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }

.plan-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.plan-price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.plan-tag {
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}

.plan ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plan ul li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.87rem;
  color: var(--ink-dim);
  margin-bottom: 0.55rem;
}

.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.plan .btn { width: 100%; }

.plans-note {
  margin-top: 1.6rem;
  font-size: 0.83rem;
  color: var(--ink-faint);
  max-width: 68ch;
}

/* ---------- FAQ ---------- */

.faq-list { margin-top: 2.6rem; max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold); }

.faq-item summary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-dim);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary svg { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 62ch;
}

/* ---------- финальный CTA ---------- */

.cta-final { text-align: center; }

.cta-final .candle-glow { inset: 0; animation-duration: 9s; }

.cta-final .section-title { margin-inline: auto; }

.cta-final .section-lede { margin: 0 auto 2.4rem; }

.cta-final .hero-ctas { justify-content: center; margin-bottom: 1rem; }

.cta-final .hero-note { position: relative; }

/* ---------- футер ---------- */

.site-foot {
  border-top: 1px solid var(--line-soft);
  padding: 3rem 0 2.6rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
}

.foot-brand .brand { margin-bottom: 0.8rem; }

.foot-disclaimer { max-width: 40ch; font-size: 0.8rem; line-height: 1.6; }

.foot-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.9rem;
}

.foot-col ul { list-style: none; }

.foot-col li { margin-bottom: 0.5rem; }

.foot-col a { color: var(--ink-faint); transition: color 0.2s var(--ease); }
.foot-col a:hover { color: var(--gold); }

.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
}

/* ---------- страницы документов ---------- */

.doc-main {
  padding: clamp(3rem, 6vw, 5rem) 0 5rem;
}

.doc-main .doc {
  max-width: 76ch;
}

.doc h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.doc .doc-updated {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 2.5rem;
}

.doc h2 {
  font-size: 1.5rem;
  margin: 2.2rem 0 0.8rem;
}

.doc p, .doc li { color: var(--ink-dim); font-size: 0.97rem; }

.doc p { margin-bottom: 0.9rem; }

.doc ul, .doc ol { margin: 0 0 1rem 1.3rem; }

.doc li { margin-bottom: 0.4rem; }

.table-scroll {
  overflow-x: auto;
  margin: 1.4rem 0;
  -webkit-overflow-scrolling: touch;
}

.doc table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.doc th, .doc td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-dim);
}

.doc th {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc .placeholder {
  border: 1px dashed rgba(231, 190, 99, 0.4);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  color: var(--gold-dim);
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin-bottom: 2.2rem;
}

.doc-back:hover { color: var(--gold); }

.doc-back svg { width: 14px; height: 14px; }

/* ---------- появление при скролле ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- адаптив ---------- */

@media (max-width: 1180px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .site-nav { display: none; }

  .hero .wrap { grid-template-columns: 1fr; }

  .hero-scene { min-height: 400px; margin-top: 1rem; }

  .report .wrap { grid-template-columns: 1fr; }

  .report-preview { order: 2; }

  .steps { grid-template-columns: 1fr; gap: 2.2rem; }

  .systems { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .plans { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  /* длинные подписи (FR/VI) не должны распирать сетку */
  .btn { white-space: normal; text-align: center; }
}

@media (max-width: 470px) {
  /* язык важнее дублирующей CTA: кнопки есть в hero и секциях */
  .head-cta .btn { display: none; }
}

@media (max-width: 360px) {
  .site-head .wrap { gap: 0.75rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .candle-glow, .chart-ring, .spark { animation: none; }

  .spark { opacity: 0.35; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * { transition-duration: 0.01ms !important; }
}
