/* ============================================================
   奇门遁甲 · 独立站设计系统
   高级中式极简：宣纸米白 / 墨黑 / 朱砂 / 铜棕 / 青绿 / 金
   ============================================================ */
:root {
  --paper:    #f7f3ea;
  --paper-2:  #f0ebdd;
  --paper-3:  #e9e2d0;
  --card:     #fcfaf4;
  --ink:      #23211b;
  --ink-2:    #4f4c42;
  --ink-3:    #8b8678;
  --line:     #ded5c0;
  --line-2:   #cfc4a9;
  --cinnabar: #b23a2f;
  --cinnabar-deep: #8e2a21;
  --bronze:   #8c6239;
  --jade:     #3d6b5e;
  --gold:     #a8853c;
  --gold-soft:#c8b27a;
  --wx-mu:    #4a7c59;
  --wx-huo:   #b23a2f;
  --wx-tu:    #8c6239;
  --wx-jin:   #a8853c;
  --wx-shui:  #34547f;
  --radius:   14px;
  --shadow:   0 2px 18px rgba(60, 50, 30, .08);
  --shadow-lg:0 10px 40px rgba(60, 50, 30, .13);
  --serif:    "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --kai:      "ZCOOL XiaoWei", "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif SC", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  /* 宣纸质感 */
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(168, 133, 60, .06), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(61, 107, 94, .05), transparent 60%);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(178, 58, 47, .18); }

h1, h2, h3 { font-weight: 600; letter-spacing: .04em; }
.kai { font-family: var(--kai); }

/* ---------- 通用元件 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .72em 1.9em; border-radius: 999px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); font-size: 1rem; letter-spacing: .18em;
  transition: all .25s ease;
}
.btn:hover { background: var(--cinnabar); border-color: var(--cinnabar); transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: wait; transform: none; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.cinnabar { background: var(--cinnabar); border-color: var(--cinnabar); }
.btn.cinnabar:hover { background: var(--cinnabar-deep); border-color: var(--cinnabar-deep); }
.btn.sm { padding: .42em 1.2em; font-size: .88rem; letter-spacing: .12em; }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem;
}

.seal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4em; height: 2.4em; border-radius: 6px;
  background: var(--cinnabar); color: #f7efe2;
  font-family: var(--kai); font-size: 1em; line-height: 1.1;
  letter-spacing: 0; box-shadow: inset 0 0 0 2px rgba(247, 239, 226, .35);
}

.tag {
  display: inline-block; padding: .14em .8em; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper-2);
  font-size: .85rem; color: var(--ink-2); margin: .18em;
}
.tag.red  { border-color: rgba(178,58,47,.4);  color: var(--cinnabar); background: rgba(178,58,47,.06); }
.tag.jade { border-color: rgba(61,107,94,.4);  color: var(--jade);     background: rgba(61,107,94,.07); }
.tag.gold { border-color: rgba(168,133,60,.45); color: var(--gold);    background: rgba(168,133,60,.08); }

.divider-cn {
  display: flex; align-items: center; gap: 1rem; color: var(--ink-3);
  margin: 2.2rem 0 1.4rem; font-size: .9rem; letter-spacing: .5em; text-indent: .5em;
}
.divider-cn::before, .divider-cn::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }

.muted { color: var(--ink-3); font-size: .9rem; }
.section-label { color: var(--cinnabar); letter-spacing: .42em; text-indent: .42em; font-size: .86rem; margin-bottom: .6rem; }
.section-label::before { content: "◆ "; font-size: .7em; vertical-align: .2em; }

/* ---------- 表单 ---------- */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.05rem; }
.field label { font-size: .88rem; color: var(--ink-2); letter-spacing: .2em; }
.field input, .field select, .field textarea {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px;
  padding: .65em .9em; font-size: 1rem; color: var(--ink); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(140, 98, 57, .12);
}
.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; background: var(--paper); }
.seg button {
  border: none; background: transparent; padding: .5em 1.5em; font-size: .95rem;
  color: var(--ink-2); letter-spacing: .15em; transition: all .2s ease;
  position: relative; cursor: pointer;
}
.seg button:hover { background: var(--paper-2); color: var(--ink); }
.seg button.on { background: var(--ink); color: var(--paper); }
.seg button.on:hover { background: var(--ink); color: var(--paper); }
.seg button .vip-mark {
  font-size: .62rem; color: var(--gold); border: 1px solid var(--gold-soft);
  border-radius: 4px; padding: 0 .35em; margin-left: .45em; letter-spacing: .08em;
  vertical-align: .15em;
}
.seg button.on .vip-mark { color: var(--gold-soft); }

/* ---------- 应用外壳：左侧边栏 ---------- */
.app { display: flex; min-height: 100vh; }
.sidebar {
  width: 218px; flex-shrink: 0; position: sticky; top: 0; height: 100vh;
  border-right: 1px solid var(--line); background: rgba(252, 250, 244, .75);
  backdrop-filter: blur(6px); display: flex; flex-direction: column;
  padding: 1.4rem 1rem;
}
.sidebar .brand { display: flex; align-items: center; gap: .7rem; padding: 0 .4rem 1.3rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.sidebar .brand .word { font-family: var(--kai); font-size: 1.22rem; letter-spacing: .26em; }
.sidebar .brand .sub { font-size: .68rem; color: var(--ink-3); letter-spacing: .34em; }
.nav-item {
  display: flex; align-items: center; gap: .8rem; padding: .62rem .8rem;
  border-radius: 10px; color: var(--ink-2); font-size: .98rem; letter-spacing: .22em;
  transition: all .18s ease; margin-bottom: .15rem; border: 1px solid transparent;
}
.nav-item svg { width: 19px; height: 19px; flex-shrink: 0; opacity: .75; }
.nav-item:hover { background: var(--paper-2); color: var(--ink); }
.nav-item.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-item.active svg { opacity: 1; }
.sidebar .foot { margin-top: auto; font-size: .74rem; color: var(--ink-3); padding: .6rem .4rem 0; border-top: 1px solid var(--line); letter-spacing: .1em; }

.main { flex: 1; min-width: 0; padding: 2.4rem clamp(1.2rem, 4vw, 3.5rem) 4rem; }
.page-head { margin-bottom: 1.8rem; }
.page-head h1 { font-family: var(--kai); font-size: 1.85rem; letter-spacing: .3em; }
.page-head .desc { color: var(--ink-3); font-size: .92rem; margin-top: .3rem; letter-spacing: .08em; }

@media (max-width: 860px) {
  .app { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: .2rem; padding: .8rem; }
  .sidebar .brand { border: none; padding: 0 .8rem 0 0; margin: 0; }
  .sidebar .brand .sub, .sidebar .foot { display: none; }
  .nav-item { padding: .4rem .7rem; letter-spacing: .1em; font-size: .88rem; }
  .nav-item svg { display: none; }
  .main { padding: 1.4rem 1rem 3rem; }
}

/* ---------- 罗盘 ---------- */
.luopan { position: relative; display: inline-block; }
.luopan svg { display: block; overflow: visible; }
.lp-ring { transform-origin: 50% 50%; }
.lp-ring.r1 { animation: lp-cw 90s linear infinite; }
.lp-ring.r2 { animation: lp-ccw 140s linear infinite; }
.lp-ring.r3 { animation: lp-cw 60s linear infinite; }
.luopan.spinning .lp-ring.r1 { animation: lp-cw 1.6s cubic-bezier(.3,.6,.4,1) infinite; }
.luopan.spinning .lp-ring.r2 { animation: lp-ccw 2.1s cubic-bezier(.3,.6,.4,1) infinite; }
.luopan.spinning .lp-ring.r3 { animation: lp-cw 1.1s cubic-bezier(.3,.6,.4,1) infinite; }
.luopan.clickable { cursor: pointer; transition: transform .3s ease, filter .3s ease; }
.luopan.clickable:hover { transform: scale(1.025); filter: drop-shadow(0 6px 24px rgba(168, 133, 60, .35)); }
@keyframes lp-cw  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes lp-ccw { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

/* ---------- 九宫格盘 ---------- */
.pan-meta { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin-bottom: 1.1rem; }
.pan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: 720px;
}
.palace {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: .85rem .8rem .7rem; min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transform: rotateY(70deg) scale(.92); transform-origin: center;
}
.palace.flip-in { animation: palace-in .55s cubic-bezier(.2,.8,.3,1.1) forwards; }
@keyframes palace-in { to { opacity: 1; transform: rotateY(0) scale(1); } }
.palace .gong-name { position: absolute; top: .5rem; right: .65rem; font-size: .68rem; color: var(--ink-3); letter-spacing: .12em; }
.palace .shen { font-size: .82rem; color: var(--bronze); letter-spacing: .15em; }
.palace .star-gan { font-family: var(--kai); font-size: 1.28rem; letter-spacing: .1em; margin: .15rem 0; }
.palace .star-gan .gan { color: var(--cinnabar); margin-left: .3em; }
.palace .foot-row { display: flex; align-items: baseline; justify-content: space-between; }
.palace .men { font-size: .95rem; color: var(--jade); letter-spacing: .12em; }
.palace .digan { font-size: .85rem; color: var(--ink-3); }
.palace .sihai { position: absolute; left: .65rem; top: .45rem; display: flex; gap: 4px; }
.palace .sihai i {
  font-style: normal; font-size: .68rem; width: 1.45em; height: 1.45em; line-height: 1.45em;
  text-align: center; border-radius: 50%; background: rgba(178,58,47,.1); color: var(--cinnabar);
  border: 1px solid rgba(178,58,47,.35);
}
.palace.center { align-items: center; justify-content: center; text-align: center; background: var(--paper-2); }
.palace.center .ju-name { font-family: var(--kai); font-size: 1.15rem; letter-spacing: .2em; color: var(--ink); }

/* ---------- 五行条 ---------- */
.wx-row { display: flex; align-items: center; gap: .8rem; margin: .45rem 0; }
.wx-row .wx-name { width: 2.2em; font-family: var(--kai); font-size: 1.05rem; }
.wx-row .bar { flex: 1; height: 10px; background: var(--paper-2); border-radius: 99px; overflow: hidden; }
.wx-row .bar i { display: block; height: 100%; border-radius: 99px; width: 0; transition: width 1s cubic-bezier(.2,.7,.3,1); }
.wx-row .num { width: 2em; text-align: right; color: var(--ink-2); font-size: .9rem; }
.wx-mu i { background: var(--wx-mu); } .wx-huo i { background: var(--wx-huo); }
.wx-tu i { background: var(--wx-tu); } .wx-jin i { background: var(--wx-jin); }
.wx-shui i { background: var(--wx-shui); }
.c-mu { color: var(--wx-mu); } .c-huo { color: var(--wx-huo); } .c-tu { color: var(--wx-tu); }
.c-jin { color: var(--wx-jin); } .c-shui { color: var(--wx-shui); }

/* ---------- 四柱表 ---------- */
.bazi-table { width: 100%; border-collapse: collapse; }
.bazi-table th, .bazi-table td { padding: .55rem .4rem; text-align: center; border-bottom: 1px dashed var(--line); }
.bazi-table th { font-weight: 400; color: var(--ink-3); font-size: .82rem; letter-spacing: .2em; }
.bazi-table .row-label { color: var(--ink-3); font-size: .82rem; letter-spacing: .25em; white-space: nowrap; }
.bazi-table .big { font-family: var(--kai); font-size: 1.7rem; }
.bazi-table .ss { color: var(--bronze); font-size: .88rem; }
.bazi-table .hide { font-size: .82rem; color: var(--ink-2); }
.bazi-table .ny { font-size: .85rem; color: var(--ink-3); }

/* ---------- 章节 / 付费锁 ---------- */
.chapter { margin-bottom: 1.6rem; }
.chapter h3 { font-family: var(--kai); font-size: 1.2rem; letter-spacing: .25em; margin-bottom: .6rem; display: flex; align-items: center; gap: .6rem; }
.chapter h3::before { content: ""; width: 5px; height: 1.15em; background: var(--cinnabar); border-radius: 3px; }
.chapter .body { color: var(--ink-2); white-space: pre-wrap; }
.locked-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.locked-blur { filter: blur(7px); user-select: none; pointer-events: none; opacity: .75; }
.locked-cover {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .8rem; text-align: center;
  background: linear-gradient(180deg, rgba(247,243,234,.45), rgba(247,243,234,.92));
}
.locked-cover .lock-seal { font-family: var(--kai); color: var(--cinnabar); border: 2px solid var(--cinnabar); border-radius: 8px; padding: .2em .9em; letter-spacing: .35em; text-indent: .35em; transform: rotate(-4deg); background: rgba(252,250,244,.8); }

/* ---------- 宜忌 ---------- */
.yiji { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.yiji .col { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; background: var(--card); }
.yiji .col h4 { font-family: var(--kai); font-size: 1.5rem; width: 2.1em; height: 2.1em; line-height: 2.1em; text-align: center; border-radius: 50%; margin: 0 auto .8rem; color: #f7efe2; }
.yiji .yi h4 { background: var(--jade); }
.yiji .ji h4 { background: var(--ink); }
.yiji .tags { text-align: center; }

/* ---------- 月度走势 ---------- */
.month-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; }
.month-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: .95rem 1rem; }
.month-card .m-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .35rem; }
.month-card .m-head b { font-family: var(--kai); font-size: 1.08rem; letter-spacing: .1em; }
.month-card .m-head span { color: var(--gold); font-size: .85rem; }
.month-card p { font-size: .88rem; color: var(--ink-2); }

/* ---------- AI 报告 ---------- */
.report { white-space: pre-wrap; color: var(--ink-2); }
.report .hl { color: var(--cinnabar); font-weight: 600; }
.chart-bars { display: flex; flex-direction: column; gap: .7rem; margin: .8rem 0 1rem; }
.cb-row { display: flex; align-items: center; gap: .8rem; }
.cb-row .lb { width: 3.6em; font-size: .9rem; color: var(--ink-2); letter-spacing: .2em; }
.cb-row .bar { flex: 1; height: 12px; border-radius: 99px; background: var(--paper-2); overflow: hidden; }
.cb-row .bar i { display: block; height: 100%; width: 0; border-radius: 99px; transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.cb-row.ok i { background: var(--jade); } .cb-row.mid i { background: var(--gold); } .cb-row.bad i { background: var(--cinnabar); }
.cb-row .pct { width: 3.2em; text-align: right; font-size: .92rem; }
.risk-note { border-left: 3px solid var(--cinnabar); background: rgba(178,58,47,.05); padding: .7rem 1rem; border-radius: 0 10px 10px 0; color: var(--ink-2); font-size: .94rem; }
.caret::after { content: "▍"; color: var(--cinnabar); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- 加载遮罩 ---------- */
.veil {
  position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  background: rgba(20, 18, 14, .88); backdrop-filter: blur(4px); color: #e9dfc8;
}
.veil.show { display: flex; }
.veil .phrase { font-family: var(--kai); letter-spacing: .5em; text-indent: .5em; font-size: 1.05rem; min-height: 1.8em; }

/* ---------- 提示条 ---------- */
.toast {
  position: fixed; left: 50%; bottom: 2.4rem; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper); padding: .65em 1.6em; border-radius: 999px;
  font-size: .92rem; letter-spacing: .1em; opacity: 0; pointer-events: none;
  transition: all .35s ease; z-index: 99; box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 滚动渐显 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: all .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   落地页（index.html）
   ============================================================ */
.topnav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center;
  justify-content: space-between; padding: .9rem clamp(1.2rem, 5vw, 4rem);
  background: rgba(247, 243, 234, .82); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topnav .brand { display: flex; align-items: center; gap: .7rem; font-family: var(--kai); font-size: 1.18rem; letter-spacing: .3em; }
.topnav nav { display: flex; gap: 1.6rem; align-items: center; font-size: .94rem; color: var(--ink-2); letter-spacing: .15em; }
.topnav nav a:hover { color: var(--cinnabar); }
@media (max-width: 760px) { .topnav nav a:not(.btn) { display: none; } }

.hero {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  max-width: 1280px; margin: 0 auto;
}
.hero .copy { max-width: 560px; }
.hero .title {
  font-family: var(--kai); font-size: clamp(3rem, 7.5vw, 5.2rem);
  letter-spacing: .18em; line-height: 1.25; color: var(--ink);
}
.hero .title .char { display: inline-block; opacity: 0; transform: translateY(.5em); animation: char-in .9s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes char-in { to { opacity: 1; transform: none; } }
.hero .subtitle { margin: 1.2rem 0 .5rem; font-size: 1.12rem; color: var(--ink-2); letter-spacing: .1em; }
.hero .seo-desc { color: var(--ink-3); font-size: .95rem; margin-bottom: 2rem; }
.hero .cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero .stage { flex-shrink: 0; }
@media (max-width: 920px) { .hero { flex-direction: column; text-align: center; } .hero .cta { justify-content: center; } }

.land-section { max-width: 1180px; margin: 0 auto; padding: 3.6rem clamp(1.2rem, 5vw, 3rem); }
.land-section h2 { font-family: var(--kai); font-size: 1.7rem; letter-spacing: .3em; margin-bottom: .5rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.1rem; margin-top: 1.8rem; }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: all .3s ease; position: relative; overflow: hidden;
}
.feature-card::after {
  content: attr(data-glyph); position: absolute; right: -.15em; bottom: -.35em;
  font-family: var(--kai); font-size: 5.4rem; color: rgba(140, 98, 57, .07); line-height: 1;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.feature-card h3 { font-family: var(--kai); font-size: 1.22rem; letter-spacing: .25em; margin-bottom: .5rem; }
.feature-card p { color: var(--ink-2); font-size: .92rem; min-height: 3.2em; }
.feature-card .go { color: var(--cinnabar); font-size: .88rem; letter-spacing: .2em; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.step { text-align: center; padding: 1.6rem 1.2rem; }
.step .no {
  font-family: var(--kai); width: 3em; height: 3em; line-height: 2.9em; margin: 0 auto 1rem;
  border: 1px solid var(--line-2); border-radius: 50%; font-size: 1.1rem; color: var(--bronze);
  position: relative;
}
.step .no::after { content: ""; position: absolute; inset: 5px; border: 1px dashed var(--line-2); border-radius: 50%; }
.step h3 { font-family: var(--kai); letter-spacing: .3em; font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--ink-2); font-size: .9rem; }

.banner-cta {
  text-align: center; padding: 4.2rem 1.4rem; margin: 2rem auto 0; max-width: 1180px;
  border-top: 1px solid var(--line);
}
.banner-cta h2 { font-family: var(--kai); font-size: 1.9rem; letter-spacing: .35em; margin-bottom: 1rem; }
.banner-cta p { color: var(--ink-2); margin-bottom: 1.8rem; }

footer.land-foot {
  border-top: 1px solid var(--line); background: var(--paper-2);
  padding: 2.4rem clamp(1.2rem, 5vw, 4rem); text-align: center; color: var(--ink-3); font-size: .85rem;
}
footer.land-foot .kw { max-width: 760px; margin: .6rem auto 0; letter-spacing: .05em; }

/* ---------- 命书封面 ---------- */
.book-cover {
  position: relative; max-width: 560px; margin: 1.5rem auto; padding: 4.2rem 2rem 3.6rem;
  text-align: center; background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.book-cover::before {
  content: ""; position: absolute; inset: 12px; border: 1px solid var(--line-2);
  border-radius: 9px; pointer-events: none;
}
.book-cover .book-title { font-family: var(--kai); font-size: 3rem; letter-spacing: .55em; text-indent: .55em; margin-bottom: .6rem; }
.book-cover .owner { color: var(--ink-2); letter-spacing: .2em; margin-bottom: 2rem; }
.book-cover .cloud { position: absolute; left: 0; right: 0; bottom: 0; height: 70px; opacity: .5; pointer-events: none; }

/* ---------- 大运时间轴 ---------- */
.dayun-strip { display: flex; gap: .7rem; overflow-x: auto; padding: .4rem 0 .8rem; }
.dayun-card {
  flex: 0 0 auto; min-width: 118px; text-align: center; padding: .8rem .9rem;
  border: 1px solid var(--line); border-radius: 12px; background: var(--card);
}
.dayun-card.now { border-color: var(--cinnabar); box-shadow: 0 0 0 3px rgba(178,58,47,.1); }
.dayun-card .gz { font-family: var(--kai); font-size: 1.3rem; letter-spacing: .15em; }
.dayun-card .rng { font-size: .78rem; color: var(--ink-3); margin-top: .25rem; }
.dayun-card.now .gz { color: var(--cinnabar); }

/* ---------- 商城 ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }
.plan { position: relative; padding: 1.8rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); display: flex; flex-direction: column; }
.plan.hot { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,133,60,.12); }
.plan .hot-badge { position: absolute; top: -0.9em; left: 1.2rem; background: var(--gold); color: #fff; font-size: .76rem; padding: .15em .9em; border-radius: 999px; letter-spacing: .2em; }
.plan h3 { font-family: var(--kai); letter-spacing: .25em; font-size: 1.15rem; }
.plan .price { font-size: 1.9rem; color: var(--cinnabar); margin: .5rem 0; font-weight: 600; }
.plan .price small { font-size: .85rem; color: var(--ink-3); font-weight: 400; }
.plan ul { list-style: none; margin: .4rem 0 1.4rem; flex: 1; }
.plan ul li { font-size: .9rem; color: var(--ink-2); padding: .28rem 0; }
.plan ul li::before { content: "・"; color: var(--gold); }

/* ---------- 档案卡 ---------- */
.profile-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.profile-card { position: relative; padding: 1.2rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.profile-card.current { border-color: var(--cinnabar); }
.profile-card .cur-seal { position: absolute; top: .9rem; right: .9rem; font-size: .72rem; color: var(--cinnabar); border: 1px solid var(--cinnabar); border-radius: 4px; padding: .05em .5em; letter-spacing: .2em; transform: rotate(3deg); }
.profile-card h3 { font-family: var(--kai); font-size: 1.25rem; letter-spacing: .15em; }
.profile-card .meta { color: var(--ink-2); font-size: .88rem; margin: .35rem 0 .9rem; }
.profile-card .ops { display: flex; gap: .5rem; }

/* ---------- 今日卡 ---------- */
.daily-hero { display: flex; gap: 2rem; align-items: stretch; flex-wrap: wrap; }
.daily-date {
  flex: 0 0 240px; text-align: center; padding: 2rem 1.4rem; border: 1px solid var(--line-2);
  border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow);
}
.daily-date .dn { font-family: var(--kai); font-size: 4.6rem; line-height: 1.1; color: var(--cinnabar); }
.daily-date .lun { letter-spacing: .15em; color: var(--ink-2); margin-top: .4rem; }
.daily-date .gz4 { margin-top: .8rem; }
.compass-chips { display: flex; gap: .8rem; flex-wrap: wrap; }
.compass-chip { flex: 1; min-width: 110px; text-align: center; border: 1px solid var(--line); border-radius: 12px; padding: .9rem .6rem; background: var(--card); }
.compass-chip .nm { font-size: .82rem; color: var(--ink-3); letter-spacing: .25em; }
.compass-chip .dir { font-family: var(--kai); font-size: 1.35rem; color: var(--bronze); margin-top: .2rem; }

/* ============================================================
   起局仪式过渡动效（rite）
   ============================================================ */
.rite {
  position: fixed; inset: 0; z-index: 95; display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  background: radial-gradient(820px 520px at 50% 42%, #232019, #14110c 75%);
  color: #e9dfc8;
}
.rite.show { display: flex; }
.rite .rite-lp {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  opacity: .16; pointer-events: none;
}
.rite .rite-grid {
  position: relative; display: grid; grid-template-columns: repeat(3, 86px);
  grid-template-rows: repeat(3, 86px); gap: 7px;
}
.rite-cell {
  border: 1px solid rgba(233, 223, 200, .22); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: rite-cell-in 1.9s ease-in-out infinite;
  background: rgba(233, 223, 200, .03);
}
@keyframes rite-cell-in {
  0% { opacity: 0; box-shadow: none; }
  28% { opacity: 1; box-shadow: 0 0 22px rgba(200, 178, 122, .25), inset 0 0 14px rgba(200, 178, 122, .1); border-color: rgba(200, 178, 122, .6); }
  62% { opacity: .82; box-shadow: 0 0 8px rgba(200, 178, 122, .12); }
  100% { opacity: .82; }
}
.rite-door {
  font-family: var(--kai); font-size: 1.7rem; color: #d8c79b;
  opacity: 0; animation: rite-door-in 1.9s ease forwards;
  text-shadow: 0 0 14px rgba(200, 178, 122, .4);
}
@keyframes rite-door-in { to { opacity: 1; } }
.rite-core {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cinnabar); box-shadow: 0 0 22px rgba(178, 58, 47, .8);
  animation: rite-core-pulse 1.6s ease-in-out infinite;
}
@keyframes rite-core-pulse { 50% { transform: scale(1.45); box-shadow: 0 0 34px rgba(178, 58, 47, 1); } }
.rite-phase {
  font-family: var(--kai); font-size: 1.12rem; letter-spacing: .55em; text-indent: .55em;
  color: #e9dfc8; min-height: 1.8em; z-index: 1;
}

/* ============================================================
   页面氛围背景（低透明、不影响阅读）
   ============================================================ */
.page-aura { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.page-aura::before {
  content: ""; position: absolute; width: 60vmax; height: 60vmax; left: -18vmax; top: -22vmax;
  border-radius: 50%; border: 1px dashed rgba(140, 98, 57, .14);
  animation: lp-cw 160s linear infinite;
}
.page-aura::after {
  content: ""; position: absolute; width: 46vmax; height: 46vmax; right: -16vmax; bottom: -20vmax;
  border-radius: 50%; border: 1px solid rgba(61, 107, 94, .1);
  outline: 1px dashed rgba(168, 133, 60, .1); outline-offset: -3.5vmax;
  animation: lp-ccw 200s linear infinite;
}
.page-aura .mist {
  position: absolute; width: 56vmax; height: 24vmax; border-radius: 50%;
  filter: blur(70px); opacity: .5;
  background: radial-gradient(closest-side, rgba(168, 133, 60, .1), transparent);
  animation: mist-drift 26s ease-in-out infinite alternate;
}
.page-aura .mist.m2 {
  background: radial-gradient(closest-side, rgba(61, 107, 94, .09), transparent);
  animation-duration: 34s; animation-delay: -12s;
}
@keyframes mist-drift {
  from { transform: translate(-6vmax, 2vmax) scale(1); }
  to   { transform: translate(8vmax, -4vmax) scale(1.18); }
}

/* ============================================================
   档案页右侧 · 玄境动效区（mystic-stage）
   ============================================================ */
.mystic-stage {
  position: relative; min-height: 480px; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(560px 360px at 70% 20%, rgba(168, 133, 60, .07), transparent 70%),
    radial-gradient(480px 320px at 20% 90%, rgba(61, 107, 94, .07), transparent 70%),
    linear-gradient(180deg, #f3eee1, #ece5d2);
}
.mystic-stage .ms-luopan {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: .35;
}
.mystic-stage .ms-grid {
  position: absolute; top: 50%; left: 50%; width: 235px; height: 235px;
  transform: translate(-50%, -50%) rotate(45deg);
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 4px; opacity: .5;
}
.mystic-stage .ms-grid i {
  border: 1px solid rgba(140, 98, 57, .2); border-radius: 4px;
  animation: ms-cell 7s ease-in-out infinite;
}
.mystic-stage .ms-grid i:nth-child(2n) { animation-delay: -2.4s; }
.mystic-stage .ms-grid i:nth-child(3n) { animation-delay: -4.6s; }
@keyframes ms-cell { 0%, 100% { opacity: .15; } 50% { opacity: .8; } }
.mystic-stage .ms-seal {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-3deg);
  width: 64px; height: 64px; border-radius: 10px; background: var(--cinnabar);
  color: #f7efe2; font-family: var(--kai); font-size: 2rem; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(178, 58, 47, .35), inset 0 0 0 3px rgba(247, 239, 226, .3);
  animation: ms-seal-breathe 5s ease-in-out infinite;
}
@keyframes ms-seal-breathe { 50% { transform: translate(-50%, -50%) rotate(-3deg) scale(1.05); } }
.mystic-stage .ms-char {
  position: absolute; font-family: var(--kai); color: rgba(79, 76, 66, .3);
  animation: ms-float ease-in-out infinite alternate; user-select: none;
}
@keyframes ms-float {
  from { transform: translateY(0) rotate(-2deg); opacity: .18; }
  to   { transform: translateY(-26px) rotate(3deg); opacity: .5; }
}
.mystic-stage .ms-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  opacity: .55; animation: ms-dot-drift ease-in-out infinite alternate;
}
@keyframes ms-dot-drift {
  from { transform: translate(0, 0) scale(.85); }
  to   { transform: translate(20px, -34px) scale(1.15); }
}
.mystic-stage .ms-cloud {
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px; opacity: .55; pointer-events: none;
}
.mystic-stage .ms-cap {
  position: absolute; left: 0; right: 0; bottom: 1rem; text-align: center;
  font-family: var(--kai); font-size: .85rem; letter-spacing: .5em; text-indent: .5em;
  color: var(--ink-3);
}

/* ============================================================
   首次引导（onboarding）
   ============================================================ */
.ob-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.ob-step {
  flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1.4rem 4.5rem; position: relative;
}
.ob-step.show { display: flex; animation: ob-in .7s cubic-bezier(.2,.7,.3,1); }
@keyframes ob-in { from { opacity: 0; transform: translateY(26px); } }
.ob-title {
  font-family: var(--kai); font-size: clamp(3.2rem, 10vw, 6rem);
  letter-spacing: .3em; text-indent: .3em; line-height: 1.3;
}
.ob-title .char { display: inline-block; opacity: 0; transform: translateY(.5em); animation: char-in 1s cubic-bezier(.2,.7,.2,1) forwards; }
.ob-sub { color: var(--ink-2); letter-spacing: .3em; margin: 1.4rem 0 2.6rem; }
.ob-lp-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: .14; pointer-events: none; }
.ob-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; max-width: 860px; width: 100%; margin-bottom: 2.6rem; }
.ob-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.4rem; opacity: 0; transform: translateY(20px); animation: ob-card-in .8s ease forwards; }
.ob-card:nth-child(2) { animation-delay: .18s; } .ob-card:nth-child(3) { animation-delay: .36s; }
@keyframes ob-card-in { to { opacity: 1; transform: none; } }
.ob-card .glyph { font-family: var(--kai); font-size: 2.2rem; color: var(--cinnabar); }
.ob-card h3 { font-family: var(--kai); letter-spacing: .3em; margin: .6rem 0 .4rem; }
.ob-card p { color: var(--ink-2); font-size: .9rem; }
.ob-form { width: 100%; max-width: 380px; text-align: left; }
.ob-dots { position: fixed; bottom: 1.6rem; left: 50%; transform: translateX(-50%); display: flex; gap: .55rem; }
.ob-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: all .3s; }
.ob-dots i.on { background: var(--cinnabar); transform: scale(1.25); }
.ob-skip { position: fixed; top: 1.4rem; right: 1.8rem; color: var(--ink-3); font-size: .85rem; letter-spacing: .15em; }
.ob-skip:hover { color: var(--cinnabar); }

/* ============================================================
   当前局保存条（qimen / ask）
   ============================================================ */
.pan-saved-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  border: 1px solid rgba(61, 107, 94, .35); background: rgba(61, 107, 94, .06);
  border-radius: var(--radius); padding: .85rem 1.2rem; margin-bottom: 1.4rem;
}
.pan-saved-bar .info { display: flex; align-items: center; gap: .7rem; color: var(--ink-2); font-size: .95rem; }
.pan-saved-bar .info .ok-seal {
  font-family: var(--kai); color: var(--jade); border: 1px solid var(--jade);
  border-radius: 5px; padding: .02em .5em; font-size: .8rem; letter-spacing: .2em;
}
.pan-saved-bar .ops { display: flex; gap: .6rem; }

/* ============================================================
   v2 · 星轨氛围 / 全站动效 / 系统设置 / 交互细化
   ============================================================ */

/* ---- 星轨氛围画布（aura.js） ---- */
.sky-aura { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.sky-aura canvas { display: block; width: 100%; height: 100%; }

/* ---- 按钮与表单统一触感 ---- */
.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.btn.cinnabar:hover { box-shadow: 0 6px 20px rgba(178, 58, 47, .26); }
.btn.cinnabar:active { box-shadow: 0 2px 8px rgba(178, 58, 47, .3); }
.field input:focus, .field select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168, 133, 60, .13), 0 1px 12px rgba(168, 133, 60, .08);
}
.field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168, 133, 60, .13), 0 0 22px rgba(168, 133, 60, .12);
}

/* ---- seg 滑块药丸（api.js segPill 定位） ---- */
.seg { position: relative; }
.seg .seg-pill {
  position: absolute; top: 0; bottom: 0; left: 0; width: 0; border-radius: 999px;
  background: var(--ink); pointer-events: none;
  transition: left .32s cubic-bezier(.3, .8, .3, 1), width .32s cubic-bezier(.3, .8, .3, 1);
}
.seg.pilled button { background: transparent !important; position: relative; z-index: 1; }
.seg.pilled button.on { color: var(--paper); }

/* ---- 段落渐入（长报告替代逐字打字） ---- */
.p-reveal p { opacity: 0; transform: translateY(10px); animation: p-in .7s cubic-bezier(.2, .7, .3, 1) forwards; margin: 0 0 .9em; }
@keyframes p-in { to { opacity: 1; transform: none; } }

/* ---- 通用升起进入 ---- */
@keyframes rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---- 今日宜忌：晨钟开历 ---- */
.daily-date { animation: scroll-unfold .8s cubic-bezier(.2, .7, .3, 1); }
@keyframes scroll-unfold { from { opacity: 0; clip-path: inset(0 0 76% 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
.daily-date .dn { animation: ink-appear 1.1s ease .15s both; }
@keyframes ink-appear { from { opacity: 0; filter: blur(9px); } to { opacity: 1; filter: blur(0); } }
.yiji .yi { animation: breath-jade 7s ease-in-out infinite; }
.yiji .ji { animation: breath-ink 8.5s ease-in-out infinite; }
@keyframes breath-jade { 50% { box-shadow: 0 0 24px rgba(61, 107, 94, .13); border-color: rgba(61, 107, 94, .32); } }
@keyframes breath-ink { 50% { box-shadow: 0 0 18px rgba(35, 33, 27, .1); } }
.compass-chip { position: relative; overflow: hidden; animation: rise-in .6s ease both; }
.compass-chip:nth-child(2) { animation-delay: .12s; }
.compass-chip:nth-child(3) { animation-delay: .24s; }
.compass-chip::after {
  content: ""; position: absolute; left: 50%; bottom: 0; height: 2px; width: 0; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  animation: line-grow 1.2s ease .55s forwards;
}
@keyframes line-grow { to { width: 78%; } }

/* ---- 奇门排盘：阵盘成形扫光 / 用局玉青脉冲 ---- */
.pan-grid { position: relative; }
.pan-grid.sweep::after {
  content: ""; position: absolute; inset: -4px; border-radius: 14px; pointer-events: none; z-index: 3;
  background: linear-gradient(105deg, transparent 30%, rgba(200, 178, 122, .3) 50%, transparent 70%);
  transform: translateX(-105%); animation: grid-sweep 1.05s cubic-bezier(.4, .2, .2, 1) forwards;
}
@keyframes grid-sweep { to { transform: translateX(105%); } }
.pan-saved-bar .ok-seal { animation: jade-pulse 3.4s ease-in-out infinite; }
@keyframes jade-pulse { 50% { box-shadow: 0 0 12px rgba(61, 107, 94, .32); } }

/* ---- 折叠卷轴（details 展开） ---- */
details.mini-pan > *:not(summary) { animation: scroll-open .5s cubic-bezier(.2, .7, .3, 1); }
@keyframes scroll-open {
  from { opacity: 0; transform: translateY(-8px); clip-path: inset(0 0 30% 0); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}

/* ---- 命书：古籍章节展开 / 墨迹按钮反馈 ---- */
.chapter, .locked-wrap { animation: chap-in .75s cubic-bezier(.2, .7, .3, 1) both; }
.locked-wrap .chapter { animation: none; }
@keyframes chap-in {
  from { opacity: 0; transform: translateY(18px); clip-path: inset(0 0 22% 0); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}
.chapter h3::before { border-radius: 2px; box-shadow: inset 0 0 0 1.5px rgba(247, 239, 226, .4); }
.ink-burst { position: relative; }
.ink-burst::after {
  content: ""; position: absolute; inset: -6px; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(35, 33, 27, .28); animation: ink-out .7s ease forwards;
}
@keyframes ink-out { to { box-shadow: 0 0 0 16px rgba(35, 33, 27, 0); } }

/* ---- 流年：岁运流转 ---- */
.year-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(200, 178, 122, .15) 50%, transparent 58%);
  transform: translateX(-130%); animation: hero-shine 6.5s ease-in-out 1.2s infinite;
}
@keyframes hero-shine { 0% { transform: translateX(-130%); } 38%, 100% { transform: translateX(130%); } }
.month-card { animation: rise-in .55s ease both; }

/* ---- 系统设置 ---- */
.locale-list { display: grid; gap: .7rem; max-width: 460px; }
.locale-opt {
  display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.2rem;
  border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); cursor: pointer;
  font-size: 1rem; letter-spacing: .1em; transition: all .25s ease; font-family: inherit; text-align: left;
}
.locale-opt:hover { border-color: var(--bronze); transform: translateY(-1px); }
.locale-opt.on { border-color: var(--gold); background: rgba(168, 133, 60, .07); box-shadow: 0 0 0 3px rgba(168, 133, 60, .1); }
.locale-opt .mark {
  width: 1.5em; height: 1.5em; border-radius: 50%; border: 1px solid var(--line-2); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; font-size: .8rem;
  color: transparent; transition: all .25s ease; font-style: normal;
}
.locale-opt.on .mark { background: var(--cinnabar); border-color: var(--cinnabar); color: #f7efe2; }
.qr-box { display: flex; gap: 1.8rem; align-items: center; flex-wrap: wrap; }
.qr-box img { width: 172px; height: 172px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; padding: 6px; box-shadow: var(--shadow); }
.qr-box .lines p { margin: .15rem 0; }
.danger-zone { border: 1px solid rgba(178, 58, 47, .35); background: rgba(178, 58, 47, .04); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-top: 1.1rem; }
.danger-zone h4 { color: var(--cinnabar); font-family: var(--kai); letter-spacing: .3em; margin-bottom: .5rem; font-size: 1rem; }
.danger-zone .ops { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .9rem; }
.btn.danger { border: 1px solid rgba(178, 58, 47, .55); color: var(--cinnabar); background: transparent; }
.btn.danger:hover { background: var(--cinnabar); border-color: var(--cinnabar); color: #f7efe2; }
.btn.danger.armed { background: var(--cinnabar-deep); border-color: var(--cinnabar-deep); color: #f7efe2; animation: armed-pulse 1.2s ease-in-out infinite; }
@keyframes armed-pulse { 50% { box-shadow: 0 0 16px rgba(178, 58, 47, .45); } }
.about-rows .row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.about-rows .row:last-child { border-bottom: none; }
.about-rows .row .k { color: var(--ink-3); letter-spacing: .2em; flex-shrink: 0; }

/* ---- 页脚 FAQ / 免责声明（SEO·GEO，低调折叠） ---- */
.page-faq { margin-top: 2.8rem; max-width: 760px; }
.page-faq details { border-top: 1px dashed var(--line); padding: .65rem .2rem; }
.page-faq details:last-of-type { border-bottom: 1px dashed var(--line); }
.page-faq summary { cursor: pointer; font-size: .92rem; color: var(--ink-2); letter-spacing: .06em; list-style: none; }
.page-faq summary::-webkit-details-marker { display: none; }
.page-faq summary::before { content: "問　"; color: var(--bronze); font-family: var(--kai); }
.page-faq p { font-size: .88rem; color: var(--ink-3); margin: .4rem 0 .2rem; padding-left: 1.8em; }
.page-disclaimer { margin-top: 1.6rem; font-size: .8rem; color: var(--ink-3); letter-spacing: .04em; border-top: 1px solid var(--line); padding-top: .9rem; max-width: 760px; }

/* ---- 减少动画偏好：动效整体降级 ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .palace, .reveal, .p-reveal p, .chapter, .locked-wrap, .month-card, .compass-chip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .compass-chip::after { width: 78%; }
}
