:root {
  --ink: #f8ead8;
  --night: #090611;
  --deep: #14091f;
  --violet: #2b1439;
  --violet-soft: #51305f;
  --plum: #3b1831;
  --gold: #d9b47a;
  --gold-strong: #f1cf91;
  --copper: #b06f4f;
  --jade: #62b7a4;
  --paper: #f4dfbd;
  --smoke: rgba(248, 234, 216, 0.76);
  --dim: rgba(248, 234, 216, 0.58);
  --line: rgba(217, 180, 122, 0.28);
  --line-strong: rgba(241, 207, 145, 0.62);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 10%, rgba(92, 55, 111, 0.34), transparent 34%),
    linear-gradient(120deg, #07040c, #1a0c28 46%, #0b0712);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.55;
  -webkit-overflow-scrolling: touch;
}

body,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

:where(a, button, .button, .feature-card, .knowledge-card, .tool-card, .tool-card-grid a, .article-grid article, .tool-cta-grid article, .report-shot, .panel, .price-box, .ritual-panel, .mini-result-card, .free-reading-form, .tool-result, .policy-page article, .intake-box) {
  min-width: 0;
}

:where(p, li, span, small, strong, h1, h2, h3, h4, label, summary, input, select, textarea) {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(217, 180, 122, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217, 180, 122, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(217, 180, 122, 0.12) 36.15% 36.35%, transparent 36.5%),
    linear-gradient(28deg, transparent 0 64%, rgba(98, 183, 164, 0.1) 64.15% 64.32%, transparent 64.5%);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(9, 6, 17, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-weight: 780;
  letter-spacing: 0;
  text-decoration: none;
}

.brand [data-brand] {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-label {
  padding: 4px 8px;
  border: 1px solid rgba(217, 180, 122, 0.28);
  color: rgba(248, 234, 216, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.seal {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(241, 207, 145, 0.72);
  background: linear-gradient(145deg, #4a1c58, #1f0c2d 56%, #9b5f45);
  color: #ffe7bc;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(217, 180, 122, 0.28);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: var(--dim);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.nav a:hover {
  color: var(--gold-strong);
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-select {
  min-height: 38px;
  width: min(240px, 42vw);
  max-width: 240px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 180, 122, 0.36);
  border-radius: 6px;
  background: rgba(12, 7, 18, 0.9);
  color: var(--paper);
  font: inherit;
  font-size: 13px;
  outline: none;
  text-overflow: ellipsis;
}

.language-select:focus {
  border-color: rgba(241, 207, 145, 0.84);
  box-shadow: 0 0 0 3px rgba(217, 180, 122, 0.12);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 230, 170, 0.7);
  border-radius: 6px;
  background: linear-gradient(135deg, #ffe1a0, #d6a458 48%, #8f4e37);
  color: #180c14;
  font-weight: 860;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  line-height: 1.18;
  overflow-wrap: anywhere;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.52);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button.secondary {
  background: rgba(248, 234, 216, 0.08);
  color: var(--paper);
  border-color: rgba(248, 234, 216, 0.28);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(241, 207, 145, 0.72);
}

.button-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(37, 17, 26, 0.32);
  color: #4d1a2f;
  font-weight: 900;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  contain: paint;
  position: relative;
  background:
    linear-gradient(90deg, rgba(9, 6, 17, 0.94), rgba(15, 8, 25, 0.68) 44%, rgba(30, 13, 38, 0.26)),
    url("./hero-purple-luopan.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(241, 207, 145, 0.16), transparent 28%),
    linear-gradient(180deg, transparent 0 72%, var(--night));
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    conic-gradient(from 12deg at 68% 42%, transparent, rgba(217, 180, 122, 0.12), transparent 28%),
    repeating-radial-gradient(circle at 67% 44%, rgba(241, 207, 145, 0.08) 0 1px, transparent 1px 56px);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1210px, calc(100% - 36px));
  min-height: 88vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: 78px 0 64px;
  overflow: clip;
}

.hero-copy-block {
  max-width: 750px;
}

.eyebrow {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.52);
}

.hero-copy {
  max-width: 620px;
  color: var(--smoke);
  font-size: clamp(17px, 1.7vw, 20px);
  overflow-wrap: anywhere;
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 207, 145, 0.42);
  background: rgba(9, 6, 17, 0.52);
  color: rgba(248, 234, 216, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.hero-price-pill strong {
  color: #ffe2a7;
  font-size: 18px;
}

.term-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #ffe4ad;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-weight: 800;
  white-space: nowrap;
}

.term-inline small {
  color: rgba(248, 234, 216, 0.64);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68em;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(217, 180, 122, 0.28);
  background: rgba(9, 6, 17, 0.48);
  color: rgba(248, 234, 216, 0.75);
  font-size: 13px;
}

.oracle-stage {
  position: relative;
  display: grid;
  gap: 30px;
  justify-items: center;
  perspective: 1100px;
  overflow: visible;
  isolation: isolate;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  z-index: 1;
  min-height: 520px;
  padding: 18px;
}

.oracle-stage:active {
  cursor: grabbing;
}

.oracle-stage:focus-visible {
  outline: 2px solid rgba(241, 207, 145, 0.82);
  outline-offset: 8px;
}

.luopan-tooltip {
  position: absolute;
  z-index: 8;
  top: -12px;
  right: 12px;
  width: min(310px, 76vw);
  padding: 16px 18px;
  border: 1px solid rgba(241, 207, 145, 0.48);
  border-radius: 8px;
  background: rgba(12, 7, 18, 0.9);
  color: var(--smoke);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(16px);
}

.luopan-tooltip strong {
  display: block;
  color: var(--gold-strong);
  margin-bottom: 6px;
  font-family: "Noto Serif SC", Georgia, serif;
}

.luopan-tooltip span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.tooltip-facts {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
}

.tooltip-facts dt {
  color: rgba(241, 207, 145, 0.86);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tooltip-facts dd {
  margin: 0;
  color: rgba(248, 234, 216, 0.72);
  font-size: 12px;
  line-height: 1.42;
}

.oracle-stage:hover .luopan-tooltip,
.oracle-stage.tooltip-active .luopan-tooltip,
.show-luopan-tooltip .luopan-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.luopan {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 5;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(241, 207, 145, 0.38) 50%, transparent calc(50% + 1px)),
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(241, 207, 145, 0.32) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle, rgba(248, 234, 216, 0.09), transparent 62%),
    rgba(22, 9, 34, 0.68);
  box-shadow: 0 0 0 12px rgba(217, 180, 122, 0.04), 0 26px 90px rgba(0, 0, 0, 0.56);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(45deg);
  transform-style: preserve-3d;
  pointer-events: auto;
  touch-action: none;
  transition: transform 0.18s ease-out;
  animation: floatPlate 7s ease-in-out infinite;
}

.luopan::before,
.luopan::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(241, 207, 145, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.luopan::after {
  inset: 2%;
  border-color: rgba(176, 111, 79, 0.44);
}

.luopan-ring,
.luopan-dial,
.luopan-axis,
.trigram,
.element,
.luopan-core {
  position: absolute;
}

.luopan-ring {
  border: 1px solid rgba(241, 207, 145, 0.48);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
  pointer-events: none;
}

.ring-outer {
  inset: 15%;
}

.ring-mid {
  inset: 28%;
  border-color: rgba(98, 183, 164, 0.45);
  animation-duration: 18s;
  animation-direction: reverse;
}

.ring-inner {
  inset: 40%;
  border-color: rgba(248, 234, 216, 0.28);
  animation-duration: 12s;
}

.luopan-dial {
  inset: 20%;
  border: 1px solid rgba(241, 207, 145, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.dial-a {
  transform: rotate(18deg);
}

.dial-b {
  inset: 33%;
  transform: rotate(54deg);
}

.dial-c {
  inset: 7%;
  transform: rotate(87deg);
}

.luopan-axis {
  background: rgba(241, 207, 145, 0.52);
  box-shadow: 0 0 18px rgba(241, 207, 145, 0.28);
  pointer-events: none;
}

.axis-x {
  width: 72%;
  height: 1px;
  top: 50%;
  left: 14%;
}

.axis-y {
  width: 1px;
  height: 72%;
  top: 14%;
  left: 50%;
}

.trigram,
.element {
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  color: #ffe6b8;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(241, 207, 145, 0.52);
  cursor: help;
  pointer-events: auto;
  z-index: 4;
}

.trigram {
  width: 42px;
  height: 42px;
  font-size: 22px;
  border: 1px solid rgba(241, 207, 145, 0.26);
  background: rgba(9, 6, 17, 0.36);
}

.t-n { top: 7%; left: calc(50% - 21px); }
.t-e { right: 7%; top: calc(50% - 21px); }
.t-s { bottom: 7%; left: calc(50% - 21px); }
.t-w { left: 7%; top: calc(50% - 21px); }

.element {
  width: 28px;
  height: 28px;
  color: var(--gold-strong);
  font-size: 18px;
}

.e-wood { top: 22%; left: 28%; }
.e-fire { top: 22%; right: 28%; }
.e-earth { top: calc(50% - 14px); left: calc(50% - 14px); color: var(--jade); }
.e-metal { bottom: 22%; right: 28%; }
.e-water { bottom: 22%; left: 28%; }

.luopan-core {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  left: 50%;
  top: 50%;
  border: 2px solid rgba(241, 207, 145, 0.9);
  color: #ffe8bf;
  background: radial-gradient(circle, rgba(241, 207, 145, 0.22), rgba(63, 24, 69, 0.9));
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 42px rgba(217, 180, 122, 0.34);
  cursor: help;
  pointer-events: auto;
  z-index: 5;
}

.oracle-caption {
  position: relative;
  z-index: 1;
  width: min(340px, 78vw);
  margin-top: 56px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 180, 122, 0.42);
  background: linear-gradient(180deg, rgba(31, 14, 44, 0.86), rgba(15, 8, 25, 0.88));
  box-shadow: var(--shadow);
  text-align: center;
}

.oracle-caption span {
  display: block;
  color: var(--gold-strong);
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.oracle-caption strong {
  display: block;
  color: var(--paper);
}

.oracle-caption small {
  color: var(--dim);
}

.activity-band {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}

.activity-label,
.activity-ticker {
  min-height: 82px;
  background: rgba(12, 7, 18, 0.94);
}

.activity-label {
  display: grid;
  align-content: center;
  padding: 16px clamp(18px, 3vw, 42px);
}

.activity-label span {
  color: var(--gold-strong);
  font-weight: 850;
}

.activity-label small {
  color: var(--dim);
}

.activity-ticker {
  display: flex;
  align-items: center;
  padding: 12px;
  overflow: hidden;
}

.activity-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  animation: tickerMove 34s linear infinite;
}

.activity-ticker:hover .activity-track {
  animation-play-state: paused;
}

.activity-item {
  flex: 0 0 auto;
  width: min(320px, 86vw);
  min-width: min(260px, 76vw);
  padding: 12px 14px;
  border: 1px solid rgba(217, 180, 122, 0.24);
  background: rgba(248, 234, 216, 0.055);
  color: var(--smoke);
  animation: itemSlide 0.45s ease both;
}

.activity-item strong {
  display: block;
  color: var(--paper);
  font-size: 14px;
}

.activity-item span {
  display: block;
  color: var(--dim);
  font-size: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 6, 17, 0.96), rgba(35, 15, 48, 0.76)),
    url("./hero-purple-luopan.png") center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(241, 207, 145, 0.16), transparent 28%),
    linear-gradient(180deg, transparent 0 78%, rgba(9, 6, 17, 0.98));
  pointer-events: none;
}

.compact-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--smoke);
  font-size: 18px;
}

.ritual-panel {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(241, 207, 145, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(248, 234, 216, 0.09), rgba(98, 183, 164, 0.035)),
    rgba(9, 6, 17, 0.74);
  box-shadow: var(--shadow);
}

.ritual-panel strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 25px;
  line-height: 1.1;
}

.ritual-panel p {
  color: var(--dim);
  margin-bottom: 0;
}

.tool-gateway {
  background:
    linear-gradient(180deg, rgba(8, 4, 13, 0.98), rgba(34, 14, 46, 0.92)),
    radial-gradient(circle at 82% 12%, rgba(98, 183, 164, 0.12), transparent 30%);
}

.tool-card-grid,
.article-grid,
.tool-cta-grid {
  display: grid;
  gap: 14px;
}

.tool-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tool-card-grid a,
.article-grid article,
.tool-cta-grid article,
.tool-result,
.tool-card {
  border: 1px solid rgba(217, 180, 122, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(248, 234, 216, 0.075), rgba(98, 183, 164, 0.03)),
    rgba(16, 9, 24, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.tool-card-grid a {
  min-height: 260px;
  padding: 24px;
  text-decoration: none;
}

.tool-card-grid small,
.article-grid small {
  display: block;
  color: var(--jade);
  font-weight: 850;
}

.tool-card-grid strong,
.article-grid h3,
.tool-cta-grid h2 {
  display: block;
  margin: 14px 0 8px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 22px;
  line-height: 1.12;
}

.tool-card-grid p,
.article-grid p,
.tool-cta-grid p {
  color: var(--dim);
  margin-bottom: 0;
}

.tool-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(241, 207, 145, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(20, 9, 31, 0.98), rgba(8, 4, 13, 0.98));
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.wide-tool {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
}

.tool-result {
  min-height: 520px;
  overflow: visible;
}

.tool-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.daily-score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.daily-score-grid article,
.compat-score {
  padding: 16px;
  border: 1px solid rgba(217, 180, 122, 0.2);
  border-radius: 8px;
  background: rgba(248, 234, 216, 0.045);
  text-align: center;
}

.daily-score-grid strong,
.compat-score strong {
  display: block;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 34px;
  line-height: 1;
}

.daily-score-grid span,
.compat-score span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.compat-score strong {
  font-size: 72px;
}

.paired-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.paired-form fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  border-radius: 8px;
}

.paired-form legend {
  padding: 0 8px;
  color: var(--gold-strong);
  font-weight: 850;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid article {
  min-height: 310px;
  padding: 24px;
}

.roadmap-list {
  display: grid;
  gap: 10px;
}

.roadmap-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 180, 122, 0.24);
  border-radius: 8px;
  background: rgba(248, 234, 216, 0.05);
  text-decoration: none;
}

.roadmap-list strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 21px;
}

.roadmap-list span {
  color: var(--dim);
}

.tool-cta-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tool-cta-grid article {
  min-height: 280px;
  padding: 28px;
}

.free-reading-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 207, 145, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(20, 9, 31, 0.98), rgba(48, 20, 64, 0.48));
}

.free-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.free-reading-form,
.mini-result,
.method-grid article {
  border: 1px solid rgba(217, 180, 122, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(248, 234, 216, 0.08), rgba(98, 183, 164, 0.035)),
    rgba(16, 9, 24, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.free-reading-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.free-reading-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--smoke);
  font-size: 13px;
  font-weight: 760;
}

.paired-form label {
  min-width: 0;
}

.free-reading-form input,
.free-reading-form select,
.free-reading-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(217, 180, 122, 0.3);
  border-radius: 6px;
  background: rgba(7, 4, 11, 0.76);
  color: var(--paper);
  font: inherit;
  outline: none;
}

.free-reading-form input:focus,
.free-reading-form select:focus {
  border-color: rgba(241, 207, 145, 0.82);
  box-shadow: 0 0 0 3px rgba(217, 180, 122, 0.12);
}

.mini-result {
  min-height: 520px;
  overflow: hidden;
}

.mini-empty {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 34px;
  text-align: center;
}

.mini-empty h3,
.mini-result-card h3,
.mini-result-card h4 {
  color: var(--paper);
}

.mini-empty p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--dim);
}

.mini-result-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.mini-result-head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 180, 122, 0.2);
}

.mini-result-head h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.05;
}

.mini-result-head span {
  color: var(--dim);
}

.pillar-grid,
.insight-grid,
.method-grid {
  display: grid;
  gap: 12px;
}

.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-grid article,
.insight-grid article,
.focus-panel {
  padding: 14px;
  border: 1px solid rgba(217, 180, 122, 0.2);
  border-radius: 8px;
  background: rgba(248, 234, 216, 0.045);
}

.pillar-grid small,
.insight-grid small,
.focus-panel small {
  display: block;
  margin-bottom: 6px;
  color: var(--jade);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-grid strong,
.insight-grid strong {
  display: block;
  color: var(--gold-strong);
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 17px;
}

.pillar-grid span,
.insight-grid p,
.focus-panel p {
  color: var(--dim);
  font-size: 13px;
}

.mini-section h4 {
  margin-bottom: 10px;
  font-size: 19px;
}

.element-bars {
  display: grid;
  gap: 10px;
}

.element-bar {
  display: grid;
  gap: 5px;
}

.element-bar-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--smoke);
  font-size: 13px;
}

.element-bar-head strong {
  color: var(--paper);
}

.element-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 234, 216, 0.08);
  overflow: hidden;
}

.element-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jade), var(--gold-strong), var(--copper));
  box-shadow: 0 0 18px rgba(241, 207, 145, 0.28);
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid p,
.focus-panel p {
  margin: 8px 0 0;
}

.mini-upgrade {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(241, 207, 145, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 207, 145, 0.12), rgba(98, 183, 164, 0.06)),
    rgba(7, 4, 11, 0.56);
}

.mini-upgrade h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.mini-upgrade ul {
  margin: 0;
  padding-left: 18px;
  color: var(--smoke);
}

.mini-upgrade-actions {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.method-grid {
  grid-template-columns: repeat(5, 1fr);
}

.method-grid article {
  min-height: 158px;
  padding: 18px;
}

.method-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 20px;
}

.method-grid span {
  color: var(--dim);
  font-size: 14px;
}

.learn-section {
  background:
    linear-gradient(180deg, rgba(8, 4, 13, 0.98), rgba(28, 12, 41, 0.96)),
    radial-gradient(circle at 16% 24%, rgba(98, 183, 164, 0.12), transparent 30%);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.learn-grid article {
  min-height: 278px;
  padding: 24px;
  border: 1px solid rgba(217, 180, 122, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(248, 234, 216, 0.08), rgba(98, 183, 164, 0.035)),
    rgba(16, 9, 24, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.learn-grid .hanzi {
  margin-bottom: 10px;
}

.learn-grid small {
  color: var(--jade);
  font-weight: 850;
}

.learn-grid h3 {
  margin: 18px 0 10px;
  color: var(--paper);
  font-size: 21px;
}

.learn-grid p {
  margin-bottom: 0;
  color: var(--dim);
}

.use-case-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(217, 180, 122, 0.24);
  border-radius: 8px;
  background: rgba(217, 180, 122, 0.18);
  overflow: hidden;
}

.use-case-strip div {
  min-height: 118px;
  padding: 18px;
  background: rgba(9, 6, 17, 0.9);
}

.use-case-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 20px;
}

.use-case-strip span {
  color: var(--dim);
  font-size: 14px;
}

.safety-section {
  background:
    linear-gradient(180deg, rgba(18, 8, 25, 0.98), rgba(8, 4, 13, 0.98)),
    radial-gradient(circle at 80% 18%, rgba(217, 180, 122, 0.1), transparent 28%);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.safety-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(217, 180, 122, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(248, 234, 216, 0.075), rgba(98, 183, 164, 0.03)),
    rgba(16, 9, 24, 0.9);
}

.safety-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 21px;
}

.safety-grid p {
  margin-bottom: 0;
  color: var(--dim);
}

.boundary-box {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(241, 207, 145, 0.38);
  border-radius: 8px;
  background: rgba(7, 4, 11, 0.56);
}

.boundary-box h3 {
  color: var(--paper);
  font-size: 24px;
}

.boundary-box p {
  color: var(--dim);
}

.boundary-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-box li {
  padding: 12px 14px;
  border: 1px solid rgba(217, 180, 122, 0.2);
  background: rgba(248, 234, 216, 0.045);
  color: var(--smoke);
}

section {
  padding: 76px clamp(18px, 4vw, 54px);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.64fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head.clean {
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.54fr);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-head.compact {
  display: block;
}

.section-head.compact .eyebrow {
  margin-bottom: 12px;
}

.section-head.compact h2 {
  line-height: 1.12;
}

.section-head h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.05;
}

.section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--dim);
}

.knowledge-section {
  background:
    linear-gradient(180deg, rgba(48, 20, 64, 0.52), rgba(13, 7, 19, 0.94)),
    radial-gradient(circle at 80% 12%, rgba(98, 183, 164, 0.1), transparent 28%);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article,
.compare-card,
.sample-preview-card {
  border: 1px solid rgba(217, 180, 122, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(248, 234, 216, 0.08), rgba(98, 183, 164, 0.035)),
    rgba(16, 9, 24, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.value-grid article {
  min-height: 210px;
  padding: 24px;
}

.value-grid .hanzi {
  font-size: 38px;
  margin-bottom: 16px;
}

.value-grid h3,
.compare-card h3,
.sample-preview-card h3 {
  color: var(--paper);
  margin-bottom: 10px;
}

.value-grid p,
.compare-card li,
.sample-preview-card p,
.sample-preview-card li {
  color: var(--dim);
}

.trust-compare-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 207, 145, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(13, 7, 19, 0.96), rgba(35, 15, 48, 0.72));
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-card {
  padding: 26px;
}

.compare-card ul {
  margin: 0;
  padding-left: 20px;
}

.compare-card li {
  margin-bottom: 10px;
}

.premium-card {
  border-color: rgba(241, 207, 145, 0.56);
  background:
    linear-gradient(155deg, rgba(241, 207, 145, 0.13), rgba(98, 183, 164, 0.07)),
    rgba(16, 9, 24, 0.92);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.report-shot,
.review-card,
.faq-list details,
.admin-grid span {
  border-radius: 8px;
}

.feature-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(217, 180, 122, 0.24);
  background:
    linear-gradient(155deg, rgba(248, 234, 216, 0.08), rgba(98, 183, 164, 0.035)),
    rgba(16, 9, 24, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.feature-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 180, 122, 0.5);
  color: var(--gold-strong);
  font-weight: 850;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 19px;
}

.feature-card p {
  color: var(--dim);
  margin-bottom: 0;
}

.compact-grid .feature-card {
  min-height: 178px;
}

.knowledge-card,
.card,
.panel,
.step,
.policy-page article,
.intake-box {
  border-radius: 8px;
}

.knowledge-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(217, 180, 122, 0.28);
  background:
    linear-gradient(155deg, rgba(248, 234, 216, 0.09), rgba(98, 183, 164, 0.04)),
    rgba(16, 9, 24, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hanzi {
  display: block;
  color: #ffe2a7;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(241, 207, 145, 0.22);
}

.knowledge-card small {
  color: var(--jade);
  font-weight: 800;
}

.knowledge-card h3 {
  margin: 18px 0 10px;
  color: var(--paper);
  font-size: 20px;
}

.knowledge-card p,
.card p,
.card li {
  color: var(--dim);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.report-shot {
  min-height: 208px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(217, 180, 122, 0.28);
  background:
    linear-gradient(180deg, rgba(9, 6, 17, 0.12), rgba(9, 6, 17, 0.88)),
    repeating-linear-gradient(180deg, rgba(241, 207, 145, 0.08) 0 1px, transparent 1px 24px),
    rgba(33, 15, 44, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
}

.report-shot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(217, 180, 122, 0.18);
  pointer-events: none;
}

.report-shot.cover {
  background:
    linear-gradient(160deg, rgba(241, 207, 145, 0.18), transparent 42%),
    radial-gradient(circle at 72% 26%, rgba(98, 183, 164, 0.15), transparent 26%),
    rgba(33, 15, 44, 0.9);
}

.report-shot small {
  color: var(--gold-strong);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-shot strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 24px;
  line-height: 1.08;
}

.report-shot span {
  color: var(--dim);
  font-size: 13px;
}

.preview-actions {
  margin-top: 18px;
}

.slim-preview .report-shot {
  min-height: 190px;
}

.sample-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sample-preview-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.sample-page-thumb {
  min-height: 124px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 180, 122, 0.34);
  background:
    radial-gradient(circle at 68% 24%, rgba(241, 207, 145, 0.16), transparent 34%),
    repeating-linear-gradient(180deg, rgba(241, 207, 145, 0.08) 0 1px, transparent 1px 18px),
    rgba(33, 15, 44, 0.9);
  color: #ffe2a7;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 30px;
  font-weight: 900;
}

.sample-preview-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.price-box ul {
  padding-left: 20px;
}

.price-box li {
  margin-bottom: 6px;
}

.faq-list {
  max-width: 880px;
}

#faq {
  padding-bottom: 104px;
}

.intake-panel .button {
  width: 100%;
  margin-top: 12px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  background: rgba(248, 234, 216, 0.05);
  color: var(--smoke);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  padding: 24px;
  border: 1px solid rgba(217, 180, 122, 0.26);
  background: rgba(16, 9, 24, 0.86);
}

.review-card strong {
  display: block;
  color: var(--gold-strong);
  margin-bottom: 12px;
}

.review-card p {
  color: var(--smoke);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(217, 180, 122, 0.24);
  background: rgba(16, 9, 24, 0.86);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--paper);
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--dim);
  line-height: 1.65;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.admin-grid span {
  padding: 16px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  background: rgba(248, 234, 216, 0.05);
  color: var(--smoke);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(248, 234, 216, 0.08), rgba(80, 42, 93, 0.12)),
    #110918;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 180, 122, 0.16);
  pointer-events: none;
}

.card-sigil {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(217, 180, 122, 0.58);
  color: var(--gold-strong);
  font-weight: 850;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 21px;
}

.card h3 small {
  display: block;
  color: var(--dim);
  font-size: 13px;
  font-weight: 700;
}

.band {
  background:
    linear-gradient(90deg, rgba(98, 183, 164, 0.08), transparent 42%),
    #100817;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(18, 10, 27, 0.94);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  background: rgba(248, 234, 216, 0.05);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(176, 111, 79, 0.72);
  background: rgba(176, 111, 79, 0.16);
  color: #ffc985;
  font-weight: 900;
}

.step h3 {
  color: var(--paper);
  margin-bottom: 4px;
}

.step p {
  color: var(--dim);
  margin-bottom: 0;
}

.price-box {
  position: relative;
  background:
    linear-gradient(145deg, rgba(83, 42, 96, 0.34), transparent 44%),
    #0f0716;
  color: var(--paper);
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  pointer-events: none;
}

.price {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: #ffe097;
}

.price-box p,
.price-box li {
  color: var(--smoke);
}

.price-box .button {
  width: 100%;
  margin-top: 16px;
}

.price-box .button.secondary {
  color: var(--paper);
}

.fineprint {
  margin-top: 14px;
  color: var(--dim);
  font-size: 13px;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(217, 180, 122, 0.12);
  color: var(--smoke);
}

.footer {
  position: relative;
  z-index: 2;
  padding: 42px clamp(18px, 4vw, 54px);
  background: #07040b;
  color: rgba(248, 234, 216, 0.66);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--paper);
}

.policy-page {
  padding: 68px clamp(18px, 4vw, 54px);
}

.policy-page article {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(18, 10, 27, 0.96);
  box-shadow: var(--shadow);
}

.policy-page h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.policy-page h2 {
  color: var(--gold);
}

.intake-shell {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 48px clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(80, 42, 93, 0.34), transparent 42%),
    var(--night);
}

.intake-box {
  width: min(790px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(18, 10, 27, 0.96);
  box-shadow: var(--shadow);
}

.intake-box h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.field-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.field-list li {
  padding: 12px 14px;
  border: 1px solid rgba(217, 180, 122, 0.23);
  color: var(--smoke);
  background: rgba(248, 234, 216, 0.05);
}

.academy-hero {
  background:
    linear-gradient(90deg, rgba(9, 6, 17, 0.97), rgba(35, 15, 48, 0.76)),
    url("./hero-purple-luopan.png") center / cover no-repeat;
}

.academy-grid,
.category-grid,
.related-grid {
  display: grid;
  gap: 14px;
}

.academy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-card,
.article-card,
.article-cta,
.toc-box,
.insight-table,
.article-chart,
.breadcrumb-bar {
  border: 1px solid rgba(217, 180, 122, 0.24);
  border-radius: 8px;
  background: rgba(16, 9, 24, 0.88);
}

.academy-card,
.article-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  text-decoration: none;
}

.academy-card small,
.article-card small,
.breadcrumb-bar {
  color: var(--jade);
  font-weight: 800;
}

.academy-card strong,
.article-card strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 22px;
  line-height: 1.15;
}

.article-card p,
.academy-card p {
  color: var(--dim);
  margin-bottom: 0;
}

.article-shell {
  background:
    radial-gradient(circle at 86% 8%, rgba(98, 183, 164, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(9, 6, 17, 0.98), rgba(22, 9, 34, 0.96));
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: 34px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.article-body h3 {
  margin-top: 24px;
  color: var(--gold-strong);
  font-size: 21px;
}

.article-body p,
.article-body li {
  color: var(--smoke);
  font-size: 17px;
  line-height: 1.72;
}

.article-body a,
.breadcrumb-bar a {
  color: var(--gold-strong);
}

.breadcrumb-bar {
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13px;
}

.toc-box {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.toc-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
}

.toc-box a {
  display: block;
  padding: 8px 0;
  color: var(--dim);
  text-decoration: none;
  border-top: 1px solid rgba(217, 180, 122, 0.12);
}

.toc-box a:hover {
  color: var(--gold-strong);
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(241, 207, 145, 0.12), rgba(98, 183, 164, 0.06)),
    rgba(7, 4, 11, 0.68);
}

.article-cta h2,
.article-cta h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
}

.article-cta p {
  margin: 0;
  color: var(--smoke);
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.insight-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  overflow: hidden;
}

.insight-table th,
.insight-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(217, 180, 122, 0.18);
  color: var(--smoke);
  text-align: left;
  vertical-align: top;
}

.insight-table th {
  color: var(--gold-strong);
  background: rgba(248, 234, 216, 0.055);
}

.article-chart {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
}

.chart-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.chart-row strong {
  color: var(--paper);
}

.chart-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(248, 234, 216, 0.08);
  overflow: hidden;
}

.chart-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jade), var(--gold-strong), var(--copper));
}

.article-sidebar-card {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(217, 180, 122, 0.22);
  border-radius: 8px;
  background: rgba(248, 234, 216, 0.05);
}

.article-sidebar-card p {
  color: var(--dim);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.category-tabs a {
  padding: 9px 12px;
  border: 1px solid rgba(217, 180, 122, 0.26);
  border-radius: 6px;
  color: var(--paper);
  text-decoration: none;
  background: rgba(248, 234, 216, 0.055);
}

.category-tabs a:hover {
  border-color: rgba(241, 207, 145, 0.72);
}

@keyframes driftField {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.02); }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatPlate {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes itemSlide {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1020px) {
  .knowledge-grid,
  .feature-grid,
  .value-grid,
  .compare-grid,
  .admin-grid,
  .method-grid,
  .learn-grid,
  .use-case-strip,
  .academy-grid,
  .category-grid,
  .related-grid,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .free-reading-layout,
  .tool-layout,
  .wide-tool,
  .hero-page-grid,
  .article-layout,
  .article-cta,
  .mini-upgrade,
  .boundary-box {
    grid-template-columns: 1fr;
  }

  .toc-box {
    position: relative;
    top: auto;
  }

  .article-cta-actions {
    justify-content: flex-start;
  }

  .tool-card-grid,
  .article-grid,
  .daily-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    gap: 10px 14px;
    padding: 12px 16px;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 150px);
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .language-select {
    width: 140px;
    max-width: 38vw;
    font-size: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 0 56px;
  }

  .oracle-stage {
    justify-self: center;
    width: 100%;
  }

  .activity-band,
  .grid,
  .preview-grid,
  .sample-preview-grid,
  .review-grid,
  .two-col,
  .tool-cta-grid,
  .section-head.clean,
  .section-head {
    grid-template-columns: 1fr;
  }

  .form-row.three {
    grid-template-columns: 1fr;
  }

  .activity-label {
    min-height: 72px;
  }

  .card,
  .knowledge-card {
    min-height: auto;
  }

  .footer-inner {
    display: block;
  }

  .luopan-tooltip {
    top: -10px;
    right: auto;
    left: 0;
    max-width: calc(100vw - 36px);
  }
}

@media (max-width: 620px) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after,
  .hero-atmosphere {
    display: none;
  }

  .topbar {
    position: relative;
    top: auto;
    backdrop-filter: none;
    background: rgba(9, 6, 17, 0.96);
  }

  .hero,
  .page-hero {
    background:
      linear-gradient(180deg, rgba(9, 6, 17, 0.96), rgba(35, 15, 48, 0.74)),
      url("./hero.png") center / cover no-repeat;
  }

  .luopan,
  .luopan-ring,
  .hero-atmosphere,
  .activity-track {
    animation: none;
  }

  .button:hover {
    transform: none;
  }

  section {
    padding: 64px 18px;
  }

  .hero-actions .button,
  .price-box .button {
    width: 100%;
  }

  .hero-inner {
    width: min(100% - 28px, 1210px);
    gap: 34px;
    padding: 50px 0 46px;
  }

  .oracle-stage {
    min-height: auto;
    gap: 18px;
    padding: 8px 0 0;
    touch-action: pan-y;
    overflow: hidden;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .luopan {
    width: min(240px, 68vw);
    touch-action: manipulation;
  }

  .luopan-tooltip {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: min(100%, 340px);
    opacity: 1;
    transform: none;
    order: 3;
  }

  .tooltip-facts {
    gap: 6px;
  }

  .tooltip-facts dd {
    font-size: 12px;
  }

  .oracle-caption {
    width: min(318px, 86vw);
    margin-top: 36px;
  }

  .oracle-caption span {
    font-size: 20px;
  }

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

  .feature-grid,
  .value-grid,
  .compare-grid,
  .admin-grid,
  .method-grid,
  .learn-grid,
  .academy-grid,
  .category-grid,
  .related-grid,
  .use-case-strip,
  .safety-grid,
  .insight-grid,
  .tool-card-grid,
  .article-grid,
  .daily-score-grid,
  .paired-form,
  .roadmap-list a,
  .form-row.two,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .sample-preview-card {
    grid-template-columns: 1fr;
  }

  .compact-hero {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .ritual-panel,
  .tool-card-grid a,
  .article-grid article,
  .tool-cta-grid article {
    min-height: auto;
  }

  .compat-score strong {
    font-size: 54px;
  }

  .free-reading-form,
  .mini-result-card {
    padding: 18px;
  }

  .mini-result,
  .mini-empty {
    min-height: 420px;
  }

  .activity-ticker {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .activity-track {
    gap: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
  }

  .section-head h2 {
    font-size: clamp(25px, 7.6vw, 34px);
    line-height: 1.12;
  }

  .section-head.clean {
    gap: 14px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .term-inline {
    display: inline;
    white-space: normal;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .chart-row {
    grid-template-columns: 1fr;
  }

  .insight-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 420px) {
  .topbar {
    align-items: flex-start;
  }

  .brand {
    flex-basis: 100%;
    max-width: 100%;
  }

  .language-switcher {
    flex-basis: 100%;
  }

  .language-select {
    width: 100%;
    max-width: 100%;
  }

  .luopan {
    width: min(220px, 64vw);
  }

  .luopan-tooltip {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .home-label {
    margin-left: auto;
  }
}
